diff --git a/animedex/agg/__init__.py b/animedex/agg/__init__.py new file mode 100644 index 0000000..6e6e578 --- /dev/null +++ b/animedex/agg/__init__.py @@ -0,0 +1,24 @@ +"""Aggregate orchestration helpers and top-level multi-source APIs. + +The package owns backend fan-out and aggregate-specific coordination. +Backend adapters remain under :mod:`animedex.backends`; aggregate +modules compose those public Python APIs without reimplementing their +wire logic. +""" + +from animedex.agg.calendar import schedule, season +from animedex.agg._fanout import FanoutSource, run_fanout + +__all__ = ["FanoutSource", "run_fanout", "schedule", "season"] + + +def selftest() -> bool: + """Smoke-test the aggregate package exports. + + :return: ``True`` when the package-level public names are wired. + :rtype: bool + """ + assert callable(season) + assert callable(schedule) + assert callable(run_fanout) + return True diff --git a/animedex/agg/_fanout.py b/animedex/agg/_fanout.py new file mode 100644 index 0000000..abd312d --- /dev/null +++ b/animedex/agg/_fanout.py @@ -0,0 +1,186 @@ +"""Shared concurrent fan-out helper for aggregate commands. + +Callers provide named source callables. The helper runs them +independently, catches per-source failures, and returns a structured +:class:`~animedex.models.aggregate.AggregateResult` instead of +raising on the first failed backend. +""" + +from __future__ import annotations + +import re +import time +from concurrent.futures import ThreadPoolExecutor, as_completed +from dataclasses import dataclass +from typing import Callable, Dict, List, Optional, Sequence + +from animedex.models.aggregate import AggregateResult, AggregateSourceStatus +from animedex.models.common import ApiError + + +@dataclass(frozen=True) +class FanoutSource: + """One source participating in aggregate fan-out. + + :ivar name: Backend identifier. + :vartype name: str + :ivar call: Zero-argument callable that returns this source's rows. + :vartype call: callable + """ + + name: str + call: Callable[[], object] + + +_HTTP_STATUS_RE = re.compile( + r"\b(?:" + r"HTTP(?:[/ ]?[0-9.]+)?\s+" + r"|status(?:\s+code)?\s*[:=]?\s*" + r"|returned\s+" + r"|response\s+" + r"|AniList\s+|Jikan\s+|Kitsu\s+|MangaDex\s+|Shikimori\s+|Danbooru\s+|ANN\s+|Trace\.moe\s+" + r")" + r"([1-5][0-9]{2})\b", + re.IGNORECASE, +) + + +def _duration_ms(t_start: float) -> float: + return round((time.monotonic() - t_start) * 1000.0, 3) + + +def _normalise_items(value: object) -> List[object]: + """Return a list of successful rows from a source return value.""" + if value is None: + return [] + if isinstance(value, list): + return value + if isinstance(value, tuple): + return list(value) + if isinstance(value, dict): + for key in ("items", "data"): + rows = value.get(key) + if isinstance(rows, list): + return rows + if isinstance(rows, tuple): + return list(rows) + raise ApiError( + "aggregate source returned a dict without list-shaped items or data", + backend="aggregate", + reason="upstream-shape", + ) + rows = getattr(value, "rows", None) + if isinstance(rows, list): + return rows + raise ApiError( + f"aggregate source returned unsupported shape: {type(value).__name__}", + backend="aggregate", + reason="upstream-shape", + ) + + +def _http_status_from_message(message: str) -> Optional[int]: + match = _HTTP_STATUS_RE.search(message) + if match is None: + return None + return int(match.group(1)) + + +def _status_from_exception(name: str, exc: BaseException, duration_ms: float) -> AggregateSourceStatus: + reason = "upstream-error" + backend = name + if isinstance(exc, ApiError): + reason = exc.reason or reason + backend = exc.backend or backend + message = exc.message + else: + message = f"{type(exc).__name__}: {exc}" + return AggregateSourceStatus( + backend=backend, + status="failed", + items=0, + reason=reason, + message=message, + http_status=_http_status_from_message(str(exc)), + duration_ms=duration_ms, + ) + + +def _run_one(source: FanoutSource): + t_start = time.monotonic() + try: + items = _normalise_items(source.call()) + except Exception as exc: + return source.name, [], _status_from_exception(source.name, exc, _duration_ms(t_start)) + return ( + source.name, + items, + AggregateSourceStatus( + backend=source.name, + status="ok", + items=len(items), + duration_ms=_duration_ms(t_start), + ), + ) + + +def run_fanout(sources: Sequence[FanoutSource], *, max_workers: Optional[int] = None) -> AggregateResult: + """Run source calls and return one aggregate envelope. + + :param sources: Source call descriptors to run. + :type sources: sequence of FanoutSource + :param max_workers: Optional thread-pool size. ``None`` means one + worker per source. + :type max_workers: int or None + :return: Aggregate result with successful rows and per-source + statuses. + :rtype: AggregateResult + """ + if not sources: + return AggregateResult(items=[], sources={}) + workers = max_workers if max_workers is not None else len(sources) + workers = max(1, min(workers, len(sources))) + items_by_source: Dict[str, List[object]] = {} + statuses: Dict[str, AggregateSourceStatus] = {} + with ThreadPoolExecutor(max_workers=workers) as executor: + futures = {executor.submit(_run_one, source): source.name for source in sources} + for future in as_completed(futures): + name, source_items, status = future.result() + statuses[name] = status + items_by_source[name] = source_items + items: List[object] = [] + for source in sources: + items.extend(items_by_source.get(source.name, [])) + ordered_statuses = {source.name: statuses[source.name] for source in sources} + return AggregateResult(items=items, sources=ordered_statuses) + + +def selftest() -> bool: + """Smoke-test success, empty, and failed fan-out paths. + + :return: ``True`` on success. + :rtype: bool + """ + + def _ok(): + return [1, 2] + + def _empty(): + return [] + + def _fail(): + raise ApiError("upstream returned 500", backend="bad", reason="upstream-error") + + result = run_fanout( + [ + FanoutSource("ok", _ok), + FanoutSource("empty", _empty), + FanoutSource("bad", _fail), + ], + max_workers=1, + ) + assert result.sources["ok"].items == 2 + assert result.sources["empty"].status == "ok" + assert result.sources["bad"].http_status == 500 + assert len(result.items) == 2 + return True diff --git a/animedex/agg/calendar.py b/animedex/agg/calendar.py new file mode 100644 index 0000000..9ba76d4 --- /dev/null +++ b/animedex/agg/calendar.py @@ -0,0 +1,1460 @@ +"""Calendar aggregate commands over AniList and Jikan. + +This module composes the existing high-level backend APIs into +multi-source calendar results. It owns only selection, date/season +inference, and per-source fan-out; backend-specific request logic +stays under :mod:`animedex.backends`. +""" + +from __future__ import annotations + +import re +import unicodedata +import logging +from collections.abc import Iterable +from datetime import date, datetime, time, timedelta, timezone, tzinfo +from difflib import SequenceMatcher +from typing import Any, Callable, Dict, List, Optional, Sequence, Tuple + +import jaconv +from anyascii import anyascii +from unidecode import unidecode + +from animedex.agg._fanout import FanoutSource, run_fanout +from animedex.backends import anilist as _anilist +from animedex.backends import jikan as _jikan +from animedex.config import Config +from animedex.models.anime import AiringScheduleRow, Anime, AnimeTitle +from animedex.models.aggregate import AggregateResult, MergedAnime, ScheduleCalendarResult +from animedex.models.common import ApiError, SourceTag +from animedex.utils.timezone import now_local, parse_timezone + + +SEASONS: Tuple[str, ...] = ("winter", "spring", "summer", "fall") +SOURCES: Tuple[str, ...] = ("anilist", "jikan") +WEEKDAYS: Tuple[str, ...] = ("monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday") +DAYS: Tuple[str, ...] = (*WEEKDAYS, "today", "tomorrow", "all") +_TITLE_KEY_RE = re.compile(r"[^0-9a-z]+") +# Calibration notes: +# - _MERGE_THRESHOLD is the cumulative score at which a candidate pair is treated as the same anime. It is tuned +# against the 2010-2025 adjudicated baseline at test/fixtures/aggregate/season_matrix/expected_matches.json with +# a target of at least 95% recall on confirmed cross-source pairs while keeping precision at least 99% on confirmed +# distinct pairs. Lowering the value increases recall and decreases precision; the rule is biased toward precision +# because a wrong merge misleads the caller about which upstream said what. +# - SequenceMatcher ratio cutoffs of 0.96 and 0.92 are tuned against the same corpus; they add to the title score but +# are still gated by _MERGE_THRESHOLD, so they cannot cause a merge on their own. +# Re-run tools/merge_eval/evaluate_rule.py after any threshold change. +_MERGE_THRESHOLD = 70 +_WEAK_TITLE_KEYS = frozenset({"x", "ii", "iii", "iv", "v"}) +_TOKYO_TZ_ALIASES = frozenset({"asia/tokyo", "jst", "utc+9", "utc+09:00"}) +_LOGGER = logging.getLogger(__name__) + + +def _now_local() -> datetime: + return now_local() + + +def _jikan_source_timezone(name: Optional[str], *, target_tz: Optional[tzinfo] = None) -> Optional[tzinfo]: + if not isinstance(name, str): + return target_tz + normalized = name.strip().lower() + if not normalized: + return target_tz + if normalized in _TOKYO_TZ_ALIASES: + try: + return parse_timezone("Asia/Tokyo").tzinfo + except ValueError: + return timezone(timedelta(hours=9), name="JST") + try: + return parse_timezone(name).tzinfo + except ValueError: + return target_tz + + +def _resolve_timezone(value: Optional[str]) -> Tuple[tzinfo, str]: + try: + resolved = parse_timezone(value, local_now=_now_local()) + except ValueError as exc: + raise ApiError( + f"unknown timezone: {value!r}; expected local, UTC, an IANA name, a dateutil TZ string, or an offset like +08:00", + backend="aggregate", + reason="bad-args", + ) from exc + return resolved.tzinfo, resolved.label + + +def current_anime_season(today: Optional[date] = None) -> str: + """Return the local-month anime season. + + Anime calendar seasons follow the AniList/MAL quarterly convention: + winter is January-March, spring is April-June, summer is + July-September, and fall is October-December. + + :param today: Optional date override for callers that already have + one. + :type today: datetime.date or None + :return: Lowercase season name. + :rtype: str + """ + d = today if today is not None else _now_local().date() + return SEASONS[(d.month - 1) // 3] + + +def _normalise_season(value: Optional[str]) -> str: + out = current_anime_season() if value is None else value.lower() + if out not in SEASONS: + raise ApiError( + f"unknown season: {value!r}; expected one of {', '.join(SEASONS)}", + backend="aggregate", + reason="bad-args", + ) + return out + + +def _normalise_day(value: str) -> str: + out = value.lower() + if out not in DAYS: + raise ApiError( + f"unknown day: {value!r}; expected monday..sunday, today, tomorrow, or all", + backend="aggregate", + reason="bad-args", + ) + return out + + +def _select_sources(source: str) -> Tuple[str, ...]: + raw = [part.strip().lower() for part in source.split(",") if part.strip()] + if not raw or raw == ["all"]: + return SOURCES + if "all" in raw and len(raw) > 1: + raise ApiError("--source all cannot be combined with explicit sources", backend="aggregate", reason="bad-args") + unknown = sorted(set(raw) - set(SOURCES)) + if unknown: + raise ApiError( + f"unknown source(s): {', '.join(unknown)}; expected anilist, jikan, or all", + backend="aggregate", + reason="bad-args", + ) + selected = [] + for item in raw: + if item not in selected: + selected.append(item) + return tuple(selected) + + +def _date_window(day: str, *, today: Optional[date] = None) -> Tuple[date, date]: + base = today if today is not None else _now_local().date() + if day == "all": + return base, base + timedelta(days=7) + if day == "today": + return base, base + timedelta(days=1) + if day == "tomorrow": + start = base + timedelta(days=1) + return start, start + timedelta(days=1) + target = WEEKDAYS.index(day) + delta = (target - base.weekday()) % 7 + start = base + timedelta(days=delta) + return start, start + timedelta(days=1) + + +def _epoch_window(start: date, end: date, tz: Optional[tzinfo] = None) -> Tuple[int, int]: + tz = tz or _now_local().tzinfo or timezone.utc + start_dt = datetime.combine(start, time.min, tzinfo=tz) + end_dt = datetime.combine(end, time.min, tzinfo=tz) + return int(start_dt.timestamp()), int(end_dt.timestamp()) + + +def _jikan_filters_for_day(day: str, *, today: Optional[date] = None) -> Tuple[Optional[str], ...]: + if day == "all": + return (None,) + start, end = _date_window(day, today=today) + selected = [] + current = start - timedelta(days=1) + while current <= end: + weekday = WEEKDAYS[current.weekday()] + if weekday not in selected: + selected.append(weekday) + current += timedelta(days=1) + return tuple(selected) + + +def _parse_clock(value: object) -> Optional[time]: + if not isinstance(value, str): + return None + try: + hour, minute = [int(part) for part in value.split(":", 1)] + return time(hour, minute) + except (TypeError, ValueError): + return None + + +def _compact_dict(values: Dict[str, Any]) -> Dict[str, Any]: + out = {} + for key, value in values.items(): + if value is None: + continue + if isinstance(value, (list, tuple, dict)) and not value: + continue + out[key] = value + return out + + +def _model_payload(value: object) -> Dict[str, Any]: + if hasattr(value, "model_dump"): + return value.model_dump(mode="json", by_alias=True) + if isinstance(value, dict): + return dict(value) + return {} + + +def _append_unique(values: List[Any], value: Any) -> None: + if value is not None and value != "" and value not in values: + values.append(value) + + +def _entity_names(values: object) -> List[str]: + if not isinstance(values, Iterable) or isinstance(values, (str, bytes, dict)): + return [] + names = [] + for value in values: + name = getattr(value, "name", None) + if isinstance(name, str) and name and name not in names: + names.append(name) + return names + + +def _nested_image_url(row: object) -> Optional[str]: + images = getattr(row, "images", None) + jpg = getattr(images, "jpg", None) if images is not None else None + return getattr(jpg, "large_image_url", None) or getattr(jpg, "image_url", None) + + +def _contains_range(text: str, ranges: Sequence[Tuple[int, int]]) -> bool: + return any(start <= ord(char) <= end for char in text for start, end in ranges) + + +_KANA_RANGES = ((0x3040, 0x30FF), (0x31F0, 0x31FF)) +_HAN_RANGES = ((0x3400, 0x4DBF), (0x4E00, 0x9FFF), (0xF900, 0xFAFF), (0x20000, 0x2FA1F)) +_HANGUL_RANGES = ((0x1100, 0x11FF), (0x3130, 0x318F), (0xA960, 0xA97F), (0xAC00, 0xD7AF), (0xD7B0, 0xD7FF)) + + +def _classify_title_scripts(title: str) -> List[str]: + scripts = [] + if _contains_range(title, _KANA_RANGES): + scripts.append("kana") + if _contains_range(title, _HAN_RANGES): + scripts.append("han") + if _contains_range(title, _HANGUL_RANGES): + scripts.append("hangul") + return scripts + + +def _language_from_title_type(title_type: Optional[str]) -> Optional[str]: + value = (title_type or "").strip().casefold() + if not value: + return None + if value in ("english", "en"): + return "english" + if value in ("japanese", "ja", "native"): + return "japanese" + if value in ("chinese", "mandarin", "zh"): + return "chinese" + if value in ("korean", "ko"): + return "korean" + return None + + +def _add_title_variant( + variants: Dict[str, Any], + title: Optional[str], + *, + kind: Optional[str] = None, + language: Optional[str] = None, +) -> None: + if not isinstance(title, str) or not title.strip(): + return + text = title.strip() + _append_unique(variants["all"], text) + if kind: + typed = {"type": kind, "title": text} + if typed not in variants["typed"]: + variants["typed"].append(typed) + if language: + _append_unique(variants["by_language"].setdefault(language, []), text) + for script in _classify_title_scripts(text): + _append_unique(variants["by_script"].setdefault(script, []), text) + if script == "kana": + _append_unique(variants["by_language"].setdefault("japanese", []), text) + elif script == "han" and language is None and "kana" not in _classify_title_scripts(text): + _append_unique(variants["by_language"].setdefault("chinese", []), text) + elif script == "hangul": + _append_unique(variants["by_language"].setdefault("korean", []), text) + + +def _title_variants_from_parts( + primary: Optional[str], + *, + english: Optional[str] = None, + native: Optional[str] = None, + synonyms: Sequence[str] = (), + raw: object = None, +) -> Dict[str, Any]: + variants: Dict[str, Any] = { + "primary": primary, + "romaji": primary, + "english": english, + "native": native, + "synonyms": [], + "typed": [], + "all": [], + "by_language": {}, + "by_script": {}, + } + _add_title_variant(variants, primary, kind="romaji") + _add_title_variant(variants, english, kind="english", language="english") + _add_title_variant(variants, native, kind="native", language="japanese") + for synonym in synonyms or []: + _append_unique(variants["synonyms"], synonym) + _add_title_variant(variants, synonym, kind="synonym") + + rich_title = getattr(raw, "title", None) + for field, language in (("romaji", None), ("english", "english"), ("native", None)): + _add_title_variant(variants, getattr(rich_title, field, None), kind=field, language=language) + + for entry in getattr(raw, "titles", None) or []: + title_type = getattr(entry, "type", None) + _add_title_variant( + variants, + getattr(entry, "title", None), + kind=title_type, + language=_language_from_title_type(title_type), + ) + + for field, title_type, language in ( + ("title", "Default", None), + ("title_english", "English", "english"), + ("title_japanese", "Japanese", "japanese"), + ): + _add_title_variant(variants, getattr(raw, field, None), kind=title_type, language=language) + for synonym in getattr(raw, "title_synonyms", None) or []: + _append_unique(variants["synonyms"], synonym) + _add_title_variant(variants, synonym, kind="Synonym") + + variants["by_language"] = {language: titles for language, titles in variants["by_language"].items() if titles} + variants["by_script"] = {script: titles for script, titles in variants["by_script"].items() if titles} + return _compact_dict(variants) + + +def _title_variants(record: Anime, raw: object = None) -> Dict[str, Any]: + return _title_variants_from_parts( + record.title.romaji, + english=record.title.english, + native=record.title.native, + synonyms=record.title_synonyms or [], + raw=raw, + ) + + +def _raw_tag_details(raw: object) -> List[Dict[str, Any]]: + details = [] + for tag in getattr(raw, "tags", None) or []: + name = getattr(tag, "name", None) + if not name: + continue + detail = _compact_dict({"name": name, "rank": getattr(tag, "rank", None)}) + if detail not in details: + details.append(detail) + return details + + +def _raw_studio_names(raw: object) -> List[str]: + direct = _entity_names(getattr(raw, "studios", None)) + if direct: + return direct + connection = getattr(raw, "studios", None) + names = [] + for edge in getattr(connection, "edges", None) or []: + node = getattr(edge, "node", None) + name = getattr(node, "name", None) + if isinstance(name, str) and name and name not in names: + names.append(name) + return names + + +def _broadcast_detail(raw: object) -> Optional[Dict[str, Any]]: + broadcast = getattr(raw, "broadcast", None) + if broadcast is None: + return None + return _compact_dict( + { + "day": getattr(broadcast, "day", None), + "time": getattr(broadcast, "time", None), + "timezone": getattr(broadcast, "timezone", None), + "string": getattr(broadcast, "string", None), + } + ) + + +def _anime_type_tags(record: Anime, raw: object = None) -> List[str]: + tags = [] + for value in ( + record.format, + record.status, + record.season, + record.source_material, + record.age_rating, + getattr(raw, "type", None), + getattr(raw, "source", None), + getattr(raw, "rating", None), + ): + _append_unique(tags, value) + for values in ( + record.genres, + record.tags, + _entity_names(getattr(raw, "genres", None)), + _entity_names(getattr(raw, "explicit_genres", None)), + _entity_names(getattr(raw, "themes", None)), + _entity_names(getattr(raw, "demographics", None)), + ): + for value in values or []: + _append_unique(tags, value) + if record.is_adult: + _append_unique(tags, "adult") + return tags + + +def _jikan_row_type_tags(row: object) -> List[str]: + tags = [] + for value in ( + getattr(row, "type", None), + getattr(row, "status", None), + getattr(row, "source", None), + getattr(row, "rating", None), + getattr(row, "season", None), + ): + _append_unique(tags, value) + for values in ( + _entity_names(getattr(row, "genres", None)), + _entity_names(getattr(row, "explicit_genres", None)), + _entity_names(getattr(row, "themes", None)), + _entity_names(getattr(row, "demographics", None)), + ): + for value in values: + _append_unique(tags, value) + return tags + + +def _jikan_schedule_details(row: object, broadcast: object) -> Dict[str, Any]: + broadcast = broadcast if isinstance(broadcast, dict) else {} + return _compact_dict( + { + "backend": "jikan", + "mal_id": getattr(row, "mal_id", None), + "url": getattr(row, "url", None), + "titles": _title_variants_from_parts( + getattr(row, "title", None) or getattr(row, "name", None) or "Untitled", + english=getattr(row, "title_english", None), + native=getattr(row, "title_japanese", None), + synonyms=list(getattr(row, "title_synonyms", None) or []), + raw=row, + ), + "type": getattr(row, "type", None), + "status": getattr(row, "status", None), + "episodes": getattr(row, "episodes", None), + "source_material": getattr(row, "source", None), + "duration": getattr(row, "duration", None), + "rating": getattr(row, "rating", None), + "score": getattr(row, "score", None), + "scored_by": getattr(row, "scored_by", None), + "rank": getattr(row, "rank", None), + "popularity": getattr(row, "popularity", None), + "members": getattr(row, "members", None), + "favorites": getattr(row, "favorites", None), + "broadcast_day": broadcast.get("day"), + "broadcast_time": broadcast.get("time"), + "broadcast_timezone": broadcast.get("timezone"), + "broadcast_string": broadcast.get("string"), + "studios": _entity_names(getattr(row, "studios", None)), + "genres": _entity_names(getattr(row, "genres", None)), + "themes": _entity_names(getattr(row, "themes", None)), + "demographics": _entity_names(getattr(row, "demographics", None)), + "type_tags": _jikan_row_type_tags(row), + "image_url": _nested_image_url(row), + } + ) + + +def _source_tag_summary(source: SourceTag) -> Dict[str, Any]: + return _compact_dict( + { + "backend": source.backend, + "fetched_at": source.fetched_at, + "cached": source.cached, + "rate_limited": source.rate_limited, + } + ) + + +def _schedule_core( + *, + title: str, + source: SourceTag, + airing_at: Optional[datetime] = None, + episode: Optional[int] = None, + weekday: Optional[str] = None, + local_time: Optional[str] = None, + details: Optional[Dict[str, Any]] = None, +) -> Dict[str, Any]: + details = details or {} + return _compact_dict( + { + "title": title, + "airing_at": airing_at, + "episode": episode, + "weekday": weekday, + "local_time": local_time, + "source": _source_tag_summary(source), + "titles": details.get("titles"), + "type_tags": details.get("type_tags"), + "score": details.get("score"), + "status": details.get("status"), + "source_material": details.get("source_material"), + "rating": details.get("rating"), + "genres": details.get("genres"), + "themes": details.get("themes"), + "studios": details.get("studios"), + } + ) + + +def _media_studio_names(media: Dict[str, Any]) -> List[str]: + studios = media.get("studios") + names = [] + if isinstance(studios, dict): + for edge in studios.get("edges") or []: + node = edge.get("node") if isinstance(edge, dict) else None + name = node.get("name") if isinstance(node, dict) else None + if isinstance(name, str): + _append_unique(names, name) + return names + + +def _anilist_media_type_tags(media: Dict[str, Any]) -> List[str]: + tags = [] + for value in ( + media.get("type"), + media.get("format"), + media.get("status"), + media.get("season"), + media.get("source"), + ): + _append_unique(tags, value) + for value in media.get("genres") or []: + _append_unique(tags, value) + for tag in media.get("tags") or []: + if isinstance(tag, dict): + _append_unique(tags, tag.get("name")) + if media.get("isAdult"): + _append_unique(tags, "adult") + return tags + + +def _anilist_schedule_details_from_payload(payload: Dict[str, Any], details: Dict[str, Any]) -> Dict[str, Any]: + media = payload.get("media") if isinstance(payload, dict) else None + if not isinstance(media, dict): + return details + title = media.get("title") if isinstance(media.get("title"), dict) else {} + enriched = dict(details) + enriched.update( + _compact_dict( + { + "titles": _title_variants_from_parts( + title.get("romaji") or title.get("english") or title.get("native") or "Untitled", + english=title.get("english"), + native=title.get("native"), + synonyms=list(media.get("synonyms") or []), + ), + "mal_id": media.get("idMal"), + "type": media.get("type"), + "format": media.get("format"), + "status": media.get("status"), + "episodes": media.get("episodes"), + "source_material": media.get("source"), + "duration": media.get("duration"), + "score": media.get("averageScore"), + "mean_score": media.get("meanScore"), + "popularity": media.get("popularity"), + "favorites": media.get("favourites"), + "trending": media.get("trending"), + "season": media.get("season"), + "season_year": media.get("seasonYear"), + "studios": _media_studio_names(media), + "genres": list(media.get("genres") or []), + "tags": [ + tag.get("name") for tag in media.get("tags") or [] if isinstance(tag, dict) and tag.get("name") + ], + "tag_details": [ + _compact_dict({"name": tag.get("name"), "rank": tag.get("rank")}) + for tag in media.get("tags") or [] + if isinstance(tag, dict) and tag.get("name") + ], + "type_tags": _anilist_media_type_tags(media), + "country_of_origin": media.get("countryOfOrigin"), + "is_adult": media.get("isAdult"), + "cover_image": media.get("coverImage"), + "banner_image": media.get("bannerImage"), + "trailer": media.get("trailer"), + "next_airing_episode": media.get("nextAiringEpisode"), + } + ) + ) + return enriched + + +def _jikan_schedule_row( + row, + source_tag: SourceTag, + *, + start: Optional[date] = None, + target_tz: Optional[tzinfo] = None, +) -> AiringScheduleRow: + title = getattr(row, "title", None) or getattr(row, "name", None) or "Untitled" + broadcast = getattr(row, "broadcast", None) + weekday = None + local_time = None + airing_at = None + details = {} + if isinstance(broadcast, dict): + day = broadcast.get("day") + if isinstance(day, str): + weekday = day.lower().rstrip("s") + time_text = broadcast.get("time") + if isinstance(time_text, str): + local_time = time_text + source_tz_name = broadcast.get("timezone") + source_tz = _jikan_source_timezone(source_tz_name, target_tz=target_tz) + clock = _parse_clock(time_text) + if start is not None and target_tz is not None and weekday in WEEKDAYS and clock is not None: + source_tz = source_tz or target_tz + delta = (WEEKDAYS.index(weekday) - start.weekday()) % 7 + source_dt = datetime.combine(start + timedelta(days=delta), clock, tzinfo=source_tz) + target_dt = source_dt.astimezone(target_tz) + airing_at = target_dt + weekday = WEEKDAYS[target_dt.weekday()] + local_time = target_dt.strftime("%H:%M") + details = _jikan_schedule_details(row, broadcast) + return AiringScheduleRow( + title=title, + airing_at=airing_at, + weekday=weekday, + local_time=local_time, + source=source_tag, + core=_schedule_core( + title=title, + source=source_tag, + airing_at=airing_at, + weekday=weekday, + local_time=local_time, + details=details, + ), + details=details, + source_payload=_model_payload(row), + ) + + +def _jikan_schedule_rows(response, *, start: Optional[date] = None, target_tz: Optional[tzinfo] = None) -> list: + return [_jikan_schedule_row(row, response.source_tag, start=start, target_tz=target_tz) for row in response.rows] + + +def _item_datetime(item: object, *, start: date, tz: Optional[tzinfo] = None) -> Optional[datetime]: + direct = getattr(item, "airingAt", None) + if isinstance(direct, int): + return ( + datetime.fromtimestamp(direct, tz=timezone.utc).astimezone(tz) + if tz is not None + else datetime.fromtimestamp(direct, tz=timezone.utc) + ) + if isinstance(item, AiringScheduleRow): + if item.airing_at is not None: + return item.airing_at.astimezone(tz) if tz is not None else item.airing_at + if item.weekday in WEEKDAYS: + try: + hour, minute = [int(part) for part in str(item.local_time or "23:59").split(":", 1)] + except ValueError: + hour, minute = 23, 59 + delta = (WEEKDAYS.index(item.weekday) - start.weekday()) % 7 + return datetime.combine(start + timedelta(days=delta), time(hour, minute), tzinfo=tz) + return None + + +def _item_airing_key(item: object, *, start: date, tz: Optional[tzinfo] = None) -> Tuple[int, int, str]: + source_tag = getattr(item, "source", None) or getattr(item, "source_tag", None) + source = getattr(source_tag, "backend", "") + when = _item_datetime(item, start=start, tz=tz or _now_local().tzinfo or timezone.utc) + if when is not None: + return int(when.timestamp()), 0 if getattr(item, "airing_at", None) is not None else 1, source + title = getattr(item, "media_title_romaji", None) or getattr(item, "title", None) or "" + return 2**63 - 1, 2, str(title) + + +def _sort_schedule_items(result: AggregateResult, *, start: date, tz: Optional[tzinfo] = None) -> AggregateResult: + return result.model_copy( + update={"items": sorted(result.items, key=lambda item: _item_airing_key(item, start=start, tz=tz))} + ) + + +def _filter_schedule_window(result: AggregateResult, *, start: date, end: date, tz: tzinfo) -> AggregateResult: + kept_by_source: Dict[str, int] = {name: 0 for name in result.sources} + kept_items = [] + for item in result.items: + when = _item_datetime(item, start=start, tz=tz) + if when is None or not (start <= when.date() < end): + continue + kept_items.append(item) + source_tag = getattr(item, "source", None) or getattr(item, "source_tag", None) + source_name = getattr(source_tag, "backend", None) + if source_name in kept_by_source: + kept_by_source[source_name] += 1 + + sources = {} + for name, status in result.sources.items(): + if status.ok: + sources[name] = status.model_copy(update={"items": kept_by_source.get(name, 0)}) + else: + sources[name] = status + return result.model_copy(update={"items": kept_items, "sources": sources}) + + +def _source_fanout(selected: Sequence[str], source_factory: Callable[[str], FanoutSource]) -> AggregateResult: + return run_fanout([source_factory(name) for name in selected], max_workers=len(selected)) + + +def _to_common_schedule_row(item: object) -> Optional[AiringScheduleRow]: + if isinstance(item, AiringScheduleRow): + return item + if hasattr(item, "to_common"): + try: + common = item.to_common() + except Exception: + return None + if isinstance(common, AiringScheduleRow): + return common + return None + + +def _project_schedule_items(result: AggregateResult, *, target_tz: tzinfo) -> AggregateResult: + items = [] + for item in result.items: + row = _to_common_schedule_row(item) + if row is None: + items.append(item) + continue + update = {} + if row.airing_at is not None: + update["airing_at"] = row.airing_at.astimezone(target_tz) + details = row.details + if row.source.backend == "anilist": + details = _anilist_schedule_details_from_payload(row.source_payload, row.details) + if details != row.details: + update["details"] = details + if not row.core or details != row.details: + update["core"] = _schedule_core( + title=row.title, + source=row.source, + airing_at=update.get("airing_at", row.airing_at), + episode=row.episode, + weekday=row.weekday, + local_time=row.local_time, + details=details, + ) + if not row.source_payload: + update["source_payload"] = _model_payload(item) + if update: + row = row.model_copy(update=update) + items.append(row) + return result.model_copy(update={"items": items}) + + +def _to_common_anime(item: object) -> Optional[Anime]: + anime, _diagnostic = _to_common_anime_with_diagnostic(item) + return anime + + +def _merge_diagnostic_identity(item: object) -> Dict[str, Any]: + source_tag = getattr(item, "source_tag", None) or getattr(item, "source", None) + backend = getattr(source_tag, "backend", None) or getattr(item, "backend", None) + ident = getattr(item, "id", None) or getattr(item, "mal_id", None) or getattr(item, "media_id", None) + return _compact_dict({"backend": backend, "id": str(ident) if ident is not None else None}) + + +def _to_common_anime_with_diagnostic(item: object) -> Tuple[Optional[Anime], Optional[Dict[str, Any]]]: + if isinstance(item, Anime): + return item, None + if hasattr(item, "to_common"): + try: + common = item.to_common() + except (ValueError, AttributeError, KeyError) as exc: + identity = _merge_diagnostic_identity(item) + diagnostic = { + **identity, + "reason": "to-common-failed", + "message": f"{type(exc).__name__}: {exc}", + } + _LOGGER.debug( + "Skipping aggregate season merge candidate after to_common() failed: %s", + diagnostic, + exc_info=True, + ) + return None, diagnostic + if isinstance(common, Anime): + return common, None + return None, None + + +def _normalise_title_key(value: Optional[str]) -> Optional[str]: + if not value: + return None + lowered = value.casefold().replace("&", " and ").replace("\u00d7", " x ") + collapsed = _TITLE_KEY_RE.sub(" ", lowered).strip() + return " ".join(collapsed.split()) or None + + +def _title_key_variants(value: Optional[str]) -> List[str]: + """Return normalised title keys across kana, width, and ASCII variants. + + ``jaconv`` handles Japanese kana and NFKC-style width differences that the generic transliterators do not cover. + ``anyascii`` and ``unidecode`` are intentionally both used because they disagree on CJK/Hangul segmentation and + romanisation details: for example ``怪獣8号`` becomes compact ``GuaiShou8Hao`` via ``anyascii`` but spaced + ``Guai Swu 8Hao`` via ``unidecode``, while Hangul titles such as ``마녀와 야수`` produce different word-boundary + candidates. Keeping both variants increases recall before the calibrated context score decides whether to merge. + """ + candidates = [] + if value: + normalised = unicodedata.normalize("NFKC", value) + jaconv_normalised = jaconv.normalize(value) + kana_candidates = [ + jaconv.kata2hira(normalised), + jaconv.hira2kata(normalised), + jaconv.kata2hira(jaconv_normalised), + jaconv.hira2kata(jaconv_normalised), + ] + candidates.extend([value, normalised, jaconv_normalised, *kana_candidates]) + for candidate in list(candidates): + candidates.append(anyascii(candidate)) + candidates.append(unidecode(candidate)) + + keys = [] + for candidate in candidates: + key = _normalise_title_key(candidate) + if key and key not in keys: + keys.append(key) + return keys + + +def _anime_title_keys(anime: Anime) -> List[str]: + raw = [anime.title.romaji, anime.title.english, anime.title.native, *list(anime.title_synonyms or [])] + keys = [] + for value in raw: + for key in _title_key_variants(value): + if key not in keys: + keys.append(key) + return keys + + +def _is_strong_title_key(key: str) -> bool: + compact = key.replace(" ", "") + return len(compact) >= 3 and compact not in _WEAK_TITLE_KEYS + + +def _title_key_by_role(anime: Anime) -> Dict[str, List[str]]: + roles = { + "romaji": [anime.title.romaji], + "english": [anime.title.english], + "native": [anime.title.native], + "synonym": list(anime.title_synonyms or []), + } + out = {} + for role, values in roles.items(): + keys = [] + for value in values: + for key in _title_key_variants(value): + if key not in keys: + keys.append(key) + out[role] = keys + return out + + +def _shared_external_id(left: Anime, right: Anime) -> bool: + for key, value in (left.ids or {}).items(): + if value and (right.ids or {}).get(key) == value: + return True + return False + + +def _external_id_conflicts(left: Anime, right: Anime) -> List[Dict[str, str]]: + conflicts = [] + left_ids = left.ids or {} + right_ids = right.ids or {} + for key in sorted(set(left_ids) & set(right_ids)): + left_value = left_ids.get(key) + right_value = right_ids.get(key) + if left_value is None or right_value is None: + continue + left_text = str(left_value) + right_text = str(right_value) + if left_text and right_text and left_text != right_text: + conflicts.append( + { + "key": str(key), + "left_backend": left.source.backend, + "left_value": left_text, + "right_backend": right.source.backend, + "right_value": right_text, + } + ) + return conflicts + + +def _has_external_id_conflict(left: Anime, right: Anime) -> bool: + return bool(_external_id_conflicts(left, right)) + + +def _group_has_external_id_conflict(candidate: Anime, group: Dict[str, Anime]) -> bool: + return any(_has_external_id_conflict(candidate, record) for record in group.values()) + + +def _title_match_score(left: Anime, right: Anime) -> int: + left_roles = _title_key_by_role(left) + right_roles = _title_key_by_role(right) + left_all = set().union(*left_roles.values()) if left_roles else set() + right_all = set().union(*right_roles.values()) if right_roles else set() + overlap = {key for key in left_all & right_all if _is_strong_title_key(key)} + score = 0 + if overlap: + score = max(score, 45) + if {key for key in set(left_roles["romaji"]) & set(right_roles["romaji"]) if _is_strong_title_key(key)}: + score = max(score, 55) + if {key for key in set(left_roles["english"]) & set(right_roles["english"]) if _is_strong_title_key(key)}: + score = max(score, 50) + if {key for key in set(left_roles["native"]) & set(right_roles["native"]) if _is_strong_title_key(key)}: + score = max(score, 50) + synonym_overlap = (set(left_roles["synonym"]) & right_all) | (set(right_roles["synonym"]) & left_all) + if {key for key in synonym_overlap if _is_strong_title_key(key)}: + score = max(score, 35) + + comparable = [ + (left.title.romaji, right.title.romaji), + (left.title.english, right.title.english), + (left.title.romaji, right.title.english), + (left.title.english, right.title.romaji), + ] + for left_value, right_value in comparable: + left_key = _normalise_title_key(left_value) + right_key = _normalise_title_key(right_value) + if not left_key or not right_key: + continue + ratio = SequenceMatcher(None, left_key, right_key).ratio() + if ratio >= 0.96: + score = max(score, 45) + elif ratio >= 0.92: + score = max(score, 35) + return score + + +def _context_match_score(left: Anime, right: Anime) -> int: + score = 0 + if left.season_year is not None and right.season_year is not None: + score += 15 if left.season_year == right.season_year else -35 + if left.season is not None and right.season is not None: + score += 10 if left.season == right.season else -20 + if left.format is not None and right.format is not None: + score += 6 if left.format == right.format else -10 + if left.episodes is not None and right.episodes is not None: + if left.episodes == right.episodes: + score += 6 + elif abs(left.episodes - right.episodes) > 2: + score -= 4 + if left.aired_from is not None and right.aired_from is not None: + delta = abs((left.aired_from - right.aired_from).days) + if delta <= 14: + score += 8 + elif delta > 90: + score -= 8 + return score + + +def _anime_match_score(left: Anime, right: Anime) -> int: + if _has_external_id_conflict(left, right): + return 0 + if _shared_external_id(left, right): + return 1000 + title_score = _title_match_score(left, right) + if title_score < 35: + return 0 + score = title_score + _context_match_score(left, right) + return score if score >= _MERGE_THRESHOLD else 0 + + +def _choose_merged_title(records: Dict[str, Anime]) -> AnimeTitle: + """Choose the merged row's compact display title. + + AniList is preferred, then Jikan, because AniList's romaji/native/English title block is the most consistent title + schema across the 2010-2025 season corpus. Secondary sources still fill missing English/native slots, and every + source's full title set remains available under ``records`` and ``source_details`` for JSON consumers. + """ + ordered = [records[name] for name in ("anilist", "jikan") if name in records] + ordered.extend(record for backend, record in records.items() if backend not in ("anilist", "jikan")) + primary = ordered[0] + english = primary.title.english + native = primary.title.native + for record in ordered[1:]: + english = english or record.title.english + native = native or record.title.native + return AnimeTitle(romaji=primary.title.romaji, english=english, native=native) + + +def _score_detail(anime: Anime) -> Optional[Dict[str, Any]]: + if anime.score is None: + return None + return _compact_dict({"score": anime.score.score, "scale": anime.score.scale, "votes": anime.score.votes}) + + +def _next_airing_detail(anime: Anime) -> Optional[Dict[str, Any]]: + if anime.next_airing_episode is None: + return None + next_ep = anime.next_airing_episode + return { + "episode": next_ep.episode, + "airing_at": next_ep.airing_at, + "time_until_airing_seconds": next_ep.time_until_airing_seconds, + } + + +def _merged_title_details(title: AnimeTitle, source_details: Dict[str, Dict[str, Any]]) -> Dict[str, Any]: + merged = _title_variants_from_parts(title.romaji, english=title.english, native=title.native) + merged.setdefault("synonyms", []) + merged.setdefault("typed", []) + merged.setdefault("all", []) + merged.setdefault("by_language", {}) + merged.setdefault("by_script", {}) + for details in source_details.values(): + titles = details.get("titles") + if not isinstance(titles, dict): + continue + for field in ("primary", "romaji", "english", "native"): + _add_title_variant(merged, titles.get(field), kind=field) + for synonym in titles.get("synonyms") or []: + _append_unique(merged.setdefault("synonyms", []), synonym) + _add_title_variant(merged, synonym, kind="synonym") + typed = titles.get("typed") + if isinstance(typed, list): + for entry in typed: + if not isinstance(entry, dict): + continue + _add_title_variant( + merged, + entry.get("title"), + kind=entry.get("type"), + language=_language_from_title_type(entry.get("type")), + ) + by_language = titles.get("by_language") + if isinstance(by_language, dict): + for language, values in by_language.items(): + for value in values or []: + _add_title_variant(merged, value, language=language) + return _compact_dict(merged) + + +def _score_summary(source_details: Dict[str, Dict[str, Any]]) -> Dict[str, Any]: + scores = {} + normalised = {} + for backend, details in source_details.items(): + score = details.get("score") + if not isinstance(score, dict) or score.get("score") is None: + continue + scores[backend] = score + scale = score.get("scale") + if scale: + normalised[backend] = float(score["score"]) / float(scale) * 100.0 + return _compact_dict({"by_source": scores, "normalised_100": normalised}) + + +def _collect_unique_field( + source_details: Dict[str, Dict[str, Any]], field: str, *, limit: Optional[int] = None +) -> List[Any]: + out = [] + for details in source_details.values(): + values = details.get(field) + if not isinstance(values, list): + values = [values] if values is not None else [] + for value in values: + _append_unique(out, value) + if limit is not None and len(out) >= limit: + return out + return out + + +def _merged_airing_summary(records: Dict[str, Anime], source_details: Dict[str, Dict[str, Any]]) -> Dict[str, Any]: + primary = next(iter(records.values())) if records else None + by_source = {} + for backend, details in source_details.items(): + by_source[backend] = _compact_dict( + { + "season": details.get("season"), + "season_year": details.get("season_year"), + "aired_from": details.get("aired_from"), + "aired_to": details.get("aired_to"), + "status": details.get("status"), + "broadcast": details.get("broadcast"), + "next_airing_episode": details.get("next_airing_episode"), + } + ) + return _compact_dict( + { + "season": primary.season if primary else None, + "season_year": primary.season_year if primary else None, + "aired_from": primary.aired_from if primary else None, + "aired_to": primary.aired_to if primary else None, + "status": primary.status if primary else None, + "by_source": by_source, + } + ) + + +def _merged_core( + *, + title: AnimeTitle, + ids: Dict[str, str], + sources: List[SourceTag], + records: Dict[str, Anime], + source_details: Dict[str, Dict[str, Any]], +) -> Dict[str, Any]: + primary = next(iter(records.values())) if records else None + return _compact_dict( + { + "title": title.model_dump(mode="json"), + "titles": _merged_title_details(title, source_details), + "ids": dict(ids), + "sources": [_source_tag_summary(source) for source in sources], + "format": primary.format if primary else None, + "episodes": primary.episodes if primary else None, + "airing": _merged_airing_summary(records, source_details), + "scores": _score_summary(source_details), + "studios": _collect_unique_field(source_details, "studios", limit=8), + "genres": _collect_unique_field(source_details, "genres", limit=12), + "tags": _collect_unique_field(source_details, "tags", limit=12), + "type_tags": _collect_unique_field(source_details, "type_tags", limit=16), + "source_material": primary.source_material if primary else None, + "age_rating": primary.age_rating if primary else None, + "country_of_origin": primary.country_of_origin if primary else None, + "is_adult": primary.is_adult if primary else None, + } + ) + + +def _anime_source_details(record: Anime, raw: object = None) -> Dict[str, Any]: + raw = raw or record + return _compact_dict( + { + "backend": record.source.backend, + "id": record.id, + "ids": dict(record.ids or {}), + "title": record.title.romaji, + "english_title": record.title.english, + "native_title": record.title.native, + "title_synonyms": list(record.title_synonyms or []), + "titles": _title_variants(record, raw), + "score": _score_detail(record), + "mean_score": getattr(raw, "meanScore", None), + "scored_by": getattr(raw, "scored_by", None), + "rank": getattr(raw, "rank", None), + "members": getattr(raw, "members", None), + "format": record.format, + "raw_type": getattr(raw, "type", None), + "status": record.status, + "raw_status": getattr(raw, "status", None), + "airing": getattr(raw, "airing", None), + "episodes": record.episodes, + "season": record.season, + "season_year": record.season_year, + "aired_from": record.aired_from, + "aired_to": record.aired_to, + "duration_minutes": record.duration_minutes, + "studios": list(record.studios or []) or _raw_studio_names(raw), + "producers": _entity_names(getattr(raw, "producers", None)), + "licensors": _entity_names(getattr(raw, "licensors", None)), + "genres": list(record.genres or []), + "tags": list(record.tags or []), + "tag_details": _raw_tag_details(raw), + "explicit_genres": _entity_names(getattr(raw, "explicit_genres", None)), + "themes": _entity_names(getattr(raw, "themes", None)), + "demographics": _entity_names(getattr(raw, "demographics", None)), + "type_tags": _anime_type_tags(record, raw), + "popularity": record.popularity, + "favourites": record.favourites, + "trending": record.trending, + "age_rating": record.age_rating, + "source_material": record.source_material, + "country_of_origin": record.country_of_origin, + "is_adult": record.is_adult, + "cover_image_url": record.cover_image_url, + "banner_image_url": record.banner_image_url, + "trailer_url": record.trailer_url, + "url": getattr(raw, "url", None), + "broadcast": _broadcast_detail(raw), + "next_airing_episode": _next_airing_detail(record), + } + ) + + +def _merge_group(records: Dict[str, Anime], raw_records: Optional[Dict[str, object]] = None) -> MergedAnime: + ids = {} + id_conflicts = [] + sources = [] + source_details = {} + source_payloads = {} + raw_records = raw_records or {} + + def _set_id(key: str, value: object, *, backend: str, source: str) -> None: + if value is None: + return + text = str(value) + if not text: + return + if key in ids and str(ids[key]) != text: + id_conflicts.append( + { + "key": str(key), + "kept_value": str(ids[key]), + "conflicting_value": text, + "backend": backend, + "source": source, + } + ) + return + ids.setdefault(key, text) + + for backend, record in records.items(): + raw = raw_records.get(backend, record) + for key, value in (record.ids or {}).items(): + _set_id(key, value, backend=backend, source="record.ids") + sources.append(record.source) + source_details[backend] = _anime_source_details(record, raw) + source_payloads[backend] = _model_payload(raw) + if ":" in record.id: + source_name, source_id = record.id.split(":", 1) + _set_id(source_name, source_id, backend=backend, source="record.id") + else: + _set_id(backend, record.id, backend=backend, source="record.id") + title = _choose_merged_title(records) + core = _merged_core(title=title, ids=ids, sources=sources, records=records, source_details=source_details) + if id_conflicts: + core["id_conflicts"] = id_conflicts + return MergedAnime( + title=title, + ids=ids, + sources=sources, + records=records, + core=core, + source_details=source_details, + source_payloads=source_payloads, + id_conflicts=id_conflicts, + ) + + +def _merge_season_items(result: AggregateResult) -> AggregateResult: + groups: List[Dict[str, Anime]] = [] + raw_groups: List[Dict[str, object]] = [] + passthrough = [] + diagnostics = list(result.merge_diagnostics or []) + + for item in result.items: + anime, diagnostic = _to_common_anime_with_diagnostic(item) + if diagnostic is not None: + diagnostics.append(diagnostic) + if anime is None: + passthrough.append(item) + continue + backend = anime.source.backend + best_group = None + best_score = 0 + for idx, group in enumerate(groups): + if backend in group: + continue + if _group_has_external_id_conflict(anime, group): + continue + score = max((_anime_match_score(anime, candidate) for candidate in group.values()), default=0) + if score > best_score: + best_group = idx + best_score = score + if best_group is None or best_score <= 0: + best_group = len(groups) + groups.append({}) + raw_groups.append({}) + groups[best_group][backend] = anime + raw_groups[best_group][backend] = item + + merged = [] + for idx, group in enumerate(groups): + item = _merge_group(group, raw_groups[idx]) + merged.append(item) + for conflict in item.id_conflicts: + diagnostics.append( + { + "backend": conflict.get("backend"), + "id": next(iter(item.records.values())).id if item.records else None, + "reason": "external-id-conflict", + "message": ( + f"conflicting external id for {conflict.get('key')!r}: " + f"{conflict.get('kept_value')!r} != {conflict.get('conflicting_value')!r}" + ), + "conflicts": item.id_conflicts, + } + ) + return result.model_copy(update={"items": [*merged, *passthrough], "merge_diagnostics": diagnostics}) + + +def season( + year: Optional[int] = None, + season: Optional[str] = None, + *, + source: str = "all", + limit: int = 25, + config: Optional[Config] = None, + **kw, +) -> AggregateResult: + """Return anime airing in a season from AniList and Jikan. + + :param year: Calendar year. Defaults to the current local year. + :type year: int or None + :param season: One of ``winter``, ``spring``, ``summer``, or + ``fall``. Defaults to the local-month anime season. + :type season: str or None + :param source: Comma-separated source allowlist: ``all``, + ``anilist``, ``jikan``, or a comma list. + :type source: str + :param limit: Per-source row limit. + :type limit: int + :param config: Optional runtime config. + :type config: Config or None + :return: Aggregate envelope. + :rtype: AggregateResult + """ + if limit < 1: + raise ApiError("--limit must be >= 1", backend="aggregate", reason="bad-args") + selected = _select_sources(source) + resolved_year = _now_local().year if year is None else year + resolved_season = _normalise_season(season) + + def _factory(name: str) -> FanoutSource: + if name == "anilist": + return FanoutSource( + "anilist", + lambda: _anilist.schedule(resolved_year, resolved_season.upper(), per_page=limit, config=config, **kw), + ) + return FanoutSource( + "jikan", + lambda: _jikan.season(resolved_year, resolved_season, limit=limit, config=config, **kw), + ) + + return _merge_season_items(_source_fanout(selected, _factory)) + + +def schedule( + *, + day: str = "all", + source: str = "all", + limit: int = 25, + timezone_name: Optional[str] = None, + config: Optional[Config] = None, + **kw, +) -> AggregateResult: + """Return airing rows for a day or the upcoming seven-day window. + + :param day: ``monday`` through ``sunday``, ``today``, + ``tomorrow``, or ``all``. + :type day: str + :param source: Comma-separated source allowlist. + :type source: str + :param limit: Per-source row limit. + :type limit: int + :param timezone_name: Display/query timezone. Defaults to local. + :type timezone_name: str or None + :param config: Optional runtime config. + :type config: Config or None + :return: Aggregate envelope. + :rtype: ScheduleCalendarResult + """ + if limit < 1: + raise ApiError("--limit must be >= 1", backend="aggregate", reason="bad-args") + resolved_day = _normalise_day(day) + selected = _select_sources(source) + target_tz, tz_label = _resolve_timezone(timezone_name) + today = _now_local().astimezone(target_tz).date() + start, end = _date_window(resolved_day, today=today) + lower, upper = _epoch_window(start, end, target_tz) + jikan_filters = _jikan_filters_for_day(resolved_day, today=today) + + def _factory(name: str) -> FanoutSource: + if name == "anilist": + return FanoutSource( + "anilist", + lambda: _anilist.airing_schedule( + airing_at_greater=lower, + airing_at_lesser=upper, + per_page=limit, + config=config, + **kw, + ), + ) + + def _jikan_rows(): + rows = [] + seen = set() + source_tag = None + for jikan_filter in jikan_filters: + response = _jikan.schedules(filter=jikan_filter, limit=limit, config=config, **kw) + source_tag = response.source_tag + for row in _jikan_schedule_rows(response, start=start, target_tz=target_tz): + key = (row.title, row.airing_at, row.weekday, row.local_time) + if key in seen: + continue + seen.add(key) + rows.append(row) + if source_tag is None: + return [] + return rows + + return FanoutSource("jikan", _jikan_rows) + + projected_result = _project_schedule_items(_source_fanout(selected, _factory), target_tz=target_tz) + filtered_result = _filter_schedule_window(projected_result, start=start, end=end, tz=target_tz) + sorted_result = _sort_schedule_items(filtered_result, start=start, tz=target_tz) + return ScheduleCalendarResult( + items=sorted_result.items, + sources=sorted_result.sources, + timezone=tz_label, + window_start=start, + window_end=end, + ) + + +def selftest() -> bool: + """Smoke-test calendar helpers and title transliteration dependencies. + + :return: ``True`` on success. + :rtype: bool + """ + assert current_anime_season(date(2026, 1, 1)) == "winter" + assert current_anime_season(date(2026, 4, 1)) == "spring" + assert current_anime_season(date(2026, 7, 1)) == "summer" + assert current_anime_season(date(2026, 10, 1)) == "fall" + assert _select_sources("jikan,anilist,jikan") == ("jikan", "anilist") + assert _normalise_day("Today") == "today" + assert _jikan_filters_for_day("monday", today=date(2026, 5, 11)) == ("sunday", "monday", "tuesday") + assert _resolve_timezone("UTC")[1] == "UTC" + assert _resolve_timezone("+08:00")[1] == "+08:00" + assert _resolve_timezone("UTC+8")[1] == "+08:00" + assert _resolve_timezone("CST-8")[0].utcoffset(datetime(2026, 1, 1)).total_seconds() == 8 * 3600 + assert "pokemon" in _title_key_variants("Pok\u00e9mon") + return True diff --git a/animedex/backends/anilist/__init__.py b/animedex/backends/anilist/__init__.py index 00e7d6b..f6cbbbf 100644 --- a/animedex/backends/anilist/__init__.py +++ b/animedex/backends/anilist/__init__.py @@ -84,6 +84,12 @@ def _gql(query: str, variables: Optional[Dict[str, Any]] = None, *, config: Opti # GraphQL JSON would fall into the mapper and surface as a # misleading ``not-found`` ("Media not found" when the server is # actually 5xx-ing). + if raw.status == 429: + raise ApiError( + "AniList 429", + backend="anilist", + reason="rate-limited", + ) if raw.status >= 500: raise ApiError( f"AniList {raw.status}", @@ -266,14 +272,23 @@ def airing_schedule( *, media_id: Optional[int] = None, not_yet_aired: Optional[bool] = None, + airing_at_greater: Optional[int] = None, + airing_at_lesser: Optional[int] = None, per_page: int = 10, config: Optional[Config] = None, **kw, ) -> List[AnilistAiringSchedule]: """Upcoming-episode schedule, optionally filtered.""" + variables = { + "mediaId": media_id, + "notYetAired": not_yet_aired, + "airingAtGreater": airing_at_greater, + "airingAtLesser": airing_at_lesser, + "perPage": min(per_page, 50), + } payload, src = _gql( _q.Q_AIRING_SCHEDULE, - {"mediaId": media_id, "notYetAired": not_yet_aired, "perPage": min(per_page, 50)}, + {key: value for key, value in variables.items() if value is not None}, config=config, **kw, ) diff --git a/animedex/backends/anilist/_mapper.py b/animedex/backends/anilist/_mapper.py index 3d38351..e067638 100644 --- a/animedex/backends/anilist/_mapper.py +++ b/animedex/backends/anilist/_mapper.py @@ -203,6 +203,7 @@ def map_airing_schedule(payload: Dict[str, Any], src: SourceTag) -> List[Anilist timeUntilAiring=r.get("timeUntilAiring", 0), media_id=media.get("id"), media_title_romaji=title.get("romaji") or title.get("english"), + raw_payload=r, source_tag=src, ) ) diff --git a/animedex/backends/anilist/_queries.py b/animedex/backends/anilist/_queries.py index 227d565..48889d6 100644 --- a/animedex/backends/anilist/_queries.py +++ b/animedex/backends/anilist/_queries.py @@ -171,8 +171,15 @@ Page(page: 1, perPage: $perPage) { pageInfo { total } media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { - id title { romaji english } status format episodes season seasonYear - averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + id idMal title { romaji english native } synonyms type format status episodes duration + season seasonYear startDate { year month day } endDate { year month day } + genres tags { name rank } averageScore meanScore popularity favourites trending + isAdult countryOfOrigin source description(asHtml: false) + coverImage { extraLarge large medium color } bannerImage + trailer { id site thumbnail } + studios { edges { isMain node { id name isAnimationStudio } } } + nextAiringEpisode { airingAt episode timeUntilAiring } + externalLinks { id site type url language } streamingEpisodes { title thumbnail url site } } } } @@ -252,12 +259,28 @@ Q_AIRING_SCHEDULE = """ -query ($mediaId: Int, $notYetAired: Boolean, $perPage: Int) { +query ($mediaId: Int, $notYetAired: Boolean, $airingAtGreater: Int, $airingAtLesser: Int, $perPage: Int) { Page(page: 1, perPage: $perPage) { pageInfo { total hasNextPage } - airingSchedules(mediaId: $mediaId, notYetAired: $notYetAired, sort: TIME) { + airingSchedules( + mediaId: $mediaId, + notYetAired: $notYetAired, + airingAt_greater: $airingAtGreater, + airingAt_lesser: $airingAtLesser, + sort: TIME + ) { id airingAt episode timeUntilAiring - media { id title { romaji english } } + media { + id idMal title { romaji english native } synonyms type format status episodes duration + season seasonYear startDate { year month day } endDate { year month day } + genres tags { name rank } averageScore meanScore popularity favourites trending + isAdult countryOfOrigin source description(asHtml: false) + coverImage { extraLarge large medium color } bannerImage + trailer { id site thumbnail } + studios { edges { isMain node { id name isAnimationStudio } } } + nextAiringEpisode { airingAt episode timeUntilAiring } + externalLinks { id site type url language } streamingEpisodes { title thumbnail url site } + } } } } diff --git a/animedex/backends/anilist/models.py b/animedex/backends/anilist/models.py index 6a4a61e..5c18c3d 100644 --- a/animedex/backends/anilist/models.py +++ b/animedex/backends/anilist/models.py @@ -18,9 +18,10 @@ from __future__ import annotations from datetime import date, datetime, timezone -from typing import List, Optional +from typing import Any, Dict, List, Optional from animedex.models.anime import ( + AiringScheduleRow, Anime, AnimeRating, AnimeStreamingLink, @@ -28,6 +29,8 @@ NextAiringEpisode, ) from animedex.models.character import Character, Staff, Studio +from pydantic import Field + from animedex.models.common import BackendRichModel, PartialDate, SourceTag @@ -440,8 +443,34 @@ class AnilistAiringSchedule(BackendRichModel): timeUntilAiring: int media_id: Optional[int] = None media_title_romaji: Optional[str] = None + raw_payload: Dict[str, Any] = Field(default_factory=dict) source_tag: SourceTag + def to_common(self) -> AiringScheduleRow: + """Project onto the common airing schedule row.""" + title = self.media_title_romaji or f"AniList media {self.media_id or self.id}" + details = { + "backend": "anilist", + "schedule_id": self.id, + "media_id": self.media_id, + "time_until_airing_seconds": self.timeUntilAiring, + } + return AiringScheduleRow( + title=title, + airing_at=datetime.fromtimestamp(self.airingAt, tz=timezone.utc), + episode=self.episode, + source=self.source_tag, + core={ + "title": title, + "airing_at": datetime.fromtimestamp(self.airingAt, tz=timezone.utc), + "episode": self.episode, + "source": self.source_tag.model_dump(mode="json"), + "media_id": self.media_id, + }, + details=details, + source_payload=dict(self.raw_payload), + ) + class AnilistReview(BackendRichModel): """One row from :data:`Q_REVIEW`.""" diff --git a/animedex/backends/jikan/__init__.py b/animedex/backends/jikan/__init__.py index 615adf3..70b61bc 100644 --- a/animedex/backends/jikan/__init__.py +++ b/animedex/backends/jikan/__init__.py @@ -64,6 +64,8 @@ def _fetch(path: str, *, params: Optional[Dict[str, Any]] = None, config: Option raise ApiError("Jikan returned a non-text body", backend="jikan", reason="upstream-decode") if raw.status == 404: raise ApiError(f"Jikan 404 on {path}", backend="jikan", reason="not-found") + if raw.status == 429: + raise ApiError(f"Jikan 429 on {path}", backend="jikan", reason="rate-limited") if raw.status >= 500: raise ApiError(f"Jikan {raw.status} on {path}", backend="jikan", reason="upstream-error") payload = _json.loads(raw.body_text) diff --git a/animedex/diag/selftest.py b/animedex/diag/selftest.py index 4f87442..48cc106 100644 --- a/animedex/diag/selftest.py +++ b/animedex/diag/selftest.py @@ -73,10 +73,12 @@ "animedex.config.buildmeta", "animedex.config.profile", "animedex.entry", + "animedex.entry.aggregate", "animedex.entry.cli", "animedex.diag", "animedex.diag.selftest", "animedex.models", + "animedex.models.aggregate", "animedex.models.common", "animedex.models.anime", "animedex.models.manga", @@ -89,6 +91,8 @@ "animedex.transport.ratelimit", "animedex.transport.read_only", "animedex.transport.http", + "animedex.utils", + "animedex.utils.timezone", "animedex.cache", "animedex.cache.sqlite", "animedex.auth", @@ -106,6 +110,9 @@ "animedex.mcp", "animedex.mcp.tool_decorator", "animedex.mcp.register", + "animedex.agg", + "animedex.agg._fanout", + "animedex.agg.calendar", # the substrate API layer: animedex api raw passthrough. Each per-backend module # ships a selftest() that checks its signature; the dispatcher and # envelope have their own end-to-end smokes; the raw renderer's @@ -296,6 +303,159 @@ def _check_module_smoke() -> List[Tuple[str, bool, str]]: return results +def _smoke_click() -> None: + """Smoke-test Click command parsing and in-process invocation.""" + import click + from click.testing import CliRunner + + @click.command() + @click.option("--value", type=click.Choice(["a", "b"]), required=True) + def _probe(value: str) -> None: + click.echo(value) + + result = CliRunner().invoke(_probe, ["--value", "b"]) + assert result.exit_code == 0, result.output + assert result.output == "b\n" + + +def _smoke_requests() -> None: + """Smoke-test requests request preparation without network I/O.""" + import requests + + prepared = requests.Session().prepare_request(requests.Request("GET", "https://example.com")) + assert prepared.method == "GET" + assert prepared.url == "https://example.com/" + assert issubclass(requests.RequestException, Exception) + + +def _smoke_python_dateutil() -> None: + """Smoke-test python-dateutil timezone parsing.""" + from datetime import datetime + + from dateutil import tz + + shanghai = tz.gettz("Asia/Shanghai") + cst = tz.gettz("CST-8") + assert shanghai is not None + assert cst is not None + assert cst.utcoffset(datetime(2026, 1, 1)).total_seconds() == 8 * 3600 + + +def _smoke_hbutils() -> None: + """Smoke-test the hbutils package and config namespace.""" + import hbutils + import hbutils.config + + assert hbutils.__name__ == "hbutils" + assert hbutils.config.__name__ == "hbutils.config" + + +def _smoke_pydantic() -> None: + """Smoke-test Pydantic v2 model validation and dumping.""" + from pydantic import BaseModel, Field + + class _Probe(BaseModel): + value: int = Field(default=3, ge=1) + + assert _Probe().model_dump() == {"value": 3} + assert _Probe(value=5).model_dump() == {"value": 5} + + +def _smoke_platformdirs() -> None: + """Smoke-test platformdirs path resolution without creating paths.""" + from platformdirs import PlatformDirs, user_cache_dir + + cache_dir = user_cache_dir("animedex", appauthor=False) + assert cache_dir + assert PlatformDirs("animedex", appauthor=False).user_cache_dir == cache_dir + + +def _smoke_keyring() -> None: + """Smoke-test keyring import shape without touching the OS keyring.""" + import keyring + import keyring.errors + + assert callable(getattr(keyring, "set_password", None)) + assert callable(getattr(keyring, "get_password", None)) + assert callable(getattr(keyring, "delete_password", None)) + assert issubclass(keyring.errors.PasswordDeleteError, keyring.errors.KeyringError) + + +def _smoke_jq() -> None: + """Smoke-test the native jq binding with a small expression.""" + import jq + + assert jq.compile(". + 1").input(2).first() == 3 + assert jq.first(".name", {"name": "Frieren"}) == "Frieren" + + +def _smoke_anyascii() -> None: + """Smoke-test anyascii's resource-backed transliteration table.""" + from anyascii import anyascii + + assert anyascii("Pok\u00e9mon") == "Pokemon" + assert anyascii("\u602a\u7363\uff18\u53f7") == "GuaiShou8Hao" + + +def _smoke_jaconv() -> None: + """Smoke-test jaconv width and kana conversion tables.""" + import jaconv + + assert jaconv.normalize("\u602a\u7363\uff18\u53f7") == "\u602a\u73638\u53f7" + assert jaconv.kata2hira("\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8") == "\u305d\u30fc\u3069\u3042\u30fc\u3068" + assert jaconv.hira2kata("\u305d\u30fc\u3069\u3042\u30fc\u3068") == "\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8" + + +def _smoke_unidecode() -> None: + """Smoke-test Unidecode transliteration tables.""" + from unidecode import unidecode + + assert unidecode("Pok\u00e9mon") == "Pokemon" + assert unidecode("\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8") == "so-doa-to" + + +def _smoke_tzdata() -> None: + """Smoke-test the tzdata fallback used by zoneinfo on Windows.""" + from datetime import datetime + from zoneinfo import ZoneInfo + + assert ZoneInfo("Asia/Tokyo").utcoffset(datetime(2026, 5, 11)).total_seconds() == 9 * 3600 + + +_DEPENDENCY_SMOKE_TESTS: Tuple[Tuple[str, Callable[[], None]], ...] = ( + ("click", _smoke_click), + ("requests", _smoke_requests), + ("python_dateutil", _smoke_python_dateutil), + ("hbutils", _smoke_hbutils), + ("pydantic", _smoke_pydantic), + ("platformdirs", _smoke_platformdirs), + ("keyring", _smoke_keyring), + ("jq", _smoke_jq), + ("anyascii", _smoke_anyascii), + ("jaconv", _smoke_jaconv), + ("unidecode", _smoke_unidecode), + ("tzdata", _smoke_tzdata), +) + + +def _check_dependency_smoke() -> List[Tuple[str, bool, str]]: + """Smoke-test each direct runtime dependency with a focused probe. + + :return: A list of ``(label, ok, detail)`` triples. + :rtype: List[Tuple[str, bool, str]] + """ + results: List[Tuple[str, bool, str]] = [] + for package, smoke in _DEPENDENCY_SMOKE_TESTS: + label = f"testing {package} library" + try: + smoke() + except Exception: + results.append((label, False, traceback.format_exc().rstrip())) + else: + results.append((label, True, "")) + return results + + def _check_cli_subcommands() -> List[Tuple[str, bool, str]]: """Probe the registered Click subcommands with the in-process runner. @@ -450,6 +610,7 @@ def run_selftest(stream: io.TextIOBase = None) -> int: failed_total = 0 for title, fn, label in ( + ("Runtime dependency checks", _check_dependency_smoke, "dependency-smoke runner"), ("Module smoke tests", _check_module_smoke, "module-smoke runner"), ("CLI subcommands", _check_cli_subcommands, "cli-subcommand runner"), ): diff --git a/animedex/entry/_cli_factory.py b/animedex/entry/_cli_factory.py index 0fc00cc..ff87e9b 100644 --- a/animedex/entry/_cli_factory.py +++ b/animedex/entry/_cli_factory.py @@ -68,16 +68,16 @@ def _to_json_text(model_or_list, *, include_source: bool) -> str: return json.dumps(model_or_list, indent=2, ensure_ascii=False, default=str) -def _to_tty_text(model_or_list) -> str: +def _to_tty_text(model_or_list, *, stream=None) -> str: """Render a model (or list) as TTY text. Calls :func:`animedex.render.tty.render_tty` directly so the ``emit`` caller's ``use_json`` decision is honoured — going through ``render_for_stream`` would re-check isatty(stdout) and bounce list[Anime] into the JSON branch when stdout isn't a real TTY.""" if isinstance(model_or_list, list): - return "\n".join(_to_tty_text(item) for item in model_or_list) + return "\n".join(_to_tty_text(item, stream=stream) for item in model_or_list) if isinstance(model_or_list, AnimedexModel): - return render_tty(model_or_list) + return render_tty(model_or_list, stream=stream) return str(model_or_list) @@ -112,7 +112,7 @@ def emit( if jq_expr is not None: text = _apply_jq(text, jq_expr) else: - text = _to_tty_text(result) + text = _to_tty_text(result, stream=sys.stdout) click.echo(text.rstrip("\n")) diff --git a/animedex/entry/aggregate.py b/animedex/entry/aggregate.py new file mode 100644 index 0000000..69d2d4a --- /dev/null +++ b/animedex/entry/aggregate.py @@ -0,0 +1,249 @@ +"""Top-level aggregate calendar commands.""" + +from __future__ import annotations + +import sys +from typing import Optional + +import click + +from animedex.agg import calendar as _calendar +from animedex.config import Config +from animedex.models.aggregate import AggregateResult +from animedex.models.common import ApiError +from animedex.render.jq import apply_jq +from animedex.render.json_renderer import render_json +from animedex.render.tty import is_terminal as _is_terminal +from animedex.render.tty import render_tty + + +def _common_options(func): + func = click.option("--no-source", is_flag=True, default=False, help="Drop source attribution from JSON output.")( + func + ) + func = click.option("--rate", type=click.Choice(["normal", "slow"]), default="normal", help="Voluntary slowdown.")( + func + ) + func = click.option("--cache", "cache_ttl", type=int, default=None, help="Override cache TTL in seconds.")(func) + func = click.option("--no-cache", is_flag=True, default=False, help="Skip cache lookup and write.")(func) + func = click.option("--jq", "jq_expr", default=None, help="Filter JSON output through jq. Forces JSON mode.")(func) + func = click.option( + "--json", "json_flag", is_flag=True, default=False, help="Always emit JSON (default auto-switches by TTY)." + )(func) + return func + + +def _config(no_cache: bool, cache_ttl: Optional[int], rate: str, no_source: bool) -> Config: + return Config(no_cache=no_cache, cache_ttl_seconds=cache_ttl, rate=rate, source_attribution=not no_source) + + +def _apply_jq(json_text: str, jq_expr: str) -> str: + try: + return apply_jq(json_text, jq_expr) + except ApiError as exc: + raise click.ClickException(str(exc)) from exc + + +def _emit(result: AggregateResult, *, json_flag: bool, jq_expr: Optional[str], no_source: bool) -> None: + use_json = json_flag or jq_expr is not None or not _is_terminal(sys.stdout) + if use_json: + text = render_json(result, include_source=not no_source) + if jq_expr is not None: + text = _apply_jq(text, jq_expr) + else: + text = render_tty(result, stream=sys.stdout) + click.echo(text.rstrip("\n")) + + +def _report_failures(result: AggregateResult) -> None: + for name, status in result.failed_sources.items(): + detail = status.reason or status.message or "failed" + if status.http_status is not None and f"{status.http_status}" not in detail: + detail = f"{detail} (HTTP {status.http_status})" + click.echo(f"source {name!r} failed: {detail}; continuing with other sources", err=True) + + +def _report_merge_diagnostics(result: AggregateResult) -> None: + for diagnostic in result.merge_diagnostics or []: + backend = diagnostic.get("backend") or "?" + ident = diagnostic.get("id") or "?" + reason = diagnostic.get("reason") or "unknown" + message = diagnostic.get("message") or "" + if reason == "external-id-conflict": + click.echo( + f"merge diagnostic: {backend}:{ident} kept with external id conflict ({message})", + err=True, + ) + continue + click.echo( + f"merge diagnostic: {backend}:{ident} dropped from merge analysis " + f"({reason}: {message}); kept as passthrough row", + err=True, + ) + + +def _finish(ctx: click.Context, result: AggregateResult, *, json_flag: bool, jq_expr: Optional[str], no_source: bool): + _report_failures(result) + _report_merge_diagnostics(result) + _emit(result, json_flag=json_flag, jq_expr=jq_expr, no_source=no_source) + if result.all_failed: + ctx.exit(1) + + +@click.command(name="season") +@click.argument("year", required=False, type=int) +@click.argument( + "season", + required=False, + type=click.Choice(["winter", "spring", "summer", "fall"], case_sensitive=False), +) +@click.option("--source", default="all", show_default=True, help="Comma-separated allowlist: all, anilist, jikan.") +@click.option("--limit", default=25, type=int, show_default=True, help="Per-source row limit.") +@_common_options +@click.pass_context +def season_command( + ctx, + year, + season, + source, + limit, + json_flag, + jq_expr, + no_cache, + cache_ttl, + rate, + no_source, +): + """List anime airing in a season across AniList and Jikan. + + Uses the AniList/MAL quarterly anime convention for omitted + seasons: winter is January-March, spring is April-June, summer is + July-September, and fall is October-December. + + \b + Docs: + https://docs.anilist.co/ AniList GraphQL reference + https://docs.api.jikan.moe/ Jikan REST reference + + \b + Examples: + animedex season + animedex season 2024 winter --limit 5 + animedex season 2024 spring --source jikan --jq '.items[].title' + \f + + Backend: aggregate (AniList + Jikan season endpoints). + + Rate limit: bounded by the selected upstreams; AniList 30 req/min + anonymous, Jikan 60 req/min and 3 req/sec. + + --- LLM Agent Guidance --- + Use this command for a multi-source seasonal anime list. The + aggregate path merges likely identical AniList and Jikan records + using shared ids plus title and broadcast metadata; single-source + records remain visible with their source attribution. Partial + backend failure keeps successful rows on stdout, writes one + stderr line per failed source, and exits non-zero only when every + selected source failed. + --- End --- + """ + cfg = _config(no_cache, cache_ttl, rate, no_source) + try: + result = _calendar.season( + year, + season, + source=source, + limit=limit, + config=cfg, + no_cache=no_cache, + cache_ttl=cache_ttl, + rate=rate, + ) + except ApiError as exc: + raise click.ClickException(str(exc)) from exc + _finish(ctx, result, json_flag=json_flag, jq_expr=jq_expr, no_source=no_source) + + +@click.command(name="schedule") +@click.option( + "--day", + default="all", + type=click.Choice( + ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday", "today", "tomorrow", "all"], + case_sensitive=False, + ), + show_default=True, + help="Weekday, today, tomorrow, or all.", +) +@click.option("--source", default="all", show_default=True, help="Comma-separated allowlist: all, anilist, jikan.") +@click.option("--limit", default=25, type=int, show_default=True, help="Per-source row limit.") +@click.option( + "--timezone", + "timezone_name", + default="local", + show_default=True, + help="Display/query timezone: local, UTC, IANA name, dateutil TZ string, or offset like +08:00.", +) +@_common_options +@click.pass_context +def schedule_command(ctx, day, source, limit, timezone_name, json_flag, jq_expr, no_cache, cache_ttl, rate, no_source): + """List airing schedule rows across AniList and Jikan. + + ``--day all`` covers the selected timezone's seven-day window + starting today. Weekday names resolve to the next occurrence of + that day in the selected timezone. + + \b + Docs: + https://docs.anilist.co/ AniList GraphQL reference + https://docs.api.jikan.moe/ Jikan REST reference + + \b + Examples: + animedex schedule + animedex schedule --day monday --timezone Asia/Tokyo --source jikan + animedex schedule --day today --timezone UTC+8 + animedex schedule --day today --jq '.items[:3]' + \f + + Backend: aggregate (AniList AiringSchedule + Jikan schedules). + + Rate limit: bounded by the selected upstreams; AniList 30 req/min + anonymous, Jikan 60 req/min and 3 req/sec. + + --- LLM Agent Guidance --- + Use this command for currently airing schedule rows. The JSON path + preserves the structured aggregate envelope; the TTY path groups + successful rows into a calendar-style view using the selected + timezone. Empty days are successful results with ``items: []`` + when the selected sources answered. Partial failure reports failed + sources on stderr and exits non-zero only when all selected + sources failed. + --- End --- + """ + cfg = _config(no_cache, cache_ttl, rate, no_source) + try: + result = _calendar.schedule( + day=day, + source=source, + limit=limit, + timezone_name=timezone_name, + config=cfg, + no_cache=no_cache, + cache_ttl=cache_ttl, + rate=rate, + ) + except ApiError as exc: + raise click.ClickException(str(exc)) from exc + _finish(ctx, result, json_flag=json_flag, jq_expr=jq_expr, no_source=no_source) + + +def selftest() -> bool: + """Smoke-test aggregate command registration objects. + + :return: ``True`` when both commands are Click commands. + :rtype: bool + """ + assert isinstance(season_command, click.Command) + assert isinstance(schedule_command, click.Command) + return True diff --git a/animedex/entry/cli.py b/animedex/entry/cli.py index 48e4a41..05755e3 100644 --- a/animedex/entry/cli.py +++ b/animedex/entry/cli.py @@ -107,6 +107,8 @@ def cli() -> None: from animedex.entry.api import api_group as _api_group # noqa: E402 +from animedex.entry.aggregate import schedule_command as _schedule_command # noqa: E402 +from animedex.entry.aggregate import season_command as _season_command # noqa: E402 from animedex.entry.anilist import anilist_group as _anilist_group # noqa: E402 from animedex.entry.ann import ann_group as _ann_group # noqa: E402 from animedex.entry.danbooru import danbooru_group as _danbooru_group # noqa: E402 @@ -133,6 +135,8 @@ def cli() -> None: cli.add_command(_shikimori_group) cli.add_command(_trace_group) cli.add_command(_waifu_group) +cli.add_command(_season_command) +cli.add_command(_schedule_command) @cli.command(name="status") @@ -164,7 +168,7 @@ def status_command() -> None: """ click.echo(f"{__TITLE__} v{__VERSION__}") click.echo( - "Wired groups: anilist, ann, danbooru, ghibli, jikan, kitsu, mangadex, nekos, quote, shikimori, trace, waifu, api (raw passthrough)." + "Wired groups: season, schedule, anilist, ann, danbooru, ghibli, jikan, kitsu, mangadex, nekos, quote, shikimori, trace, waifu, api (raw passthrough)." ) click.echo("Run 'animedex --help' for the full command tree.") diff --git a/animedex/models/__init__.py b/animedex/models/__init__.py index de8b638..5ba4b5e 100644 --- a/animedex/models/__init__.py +++ b/animedex/models/__init__.py @@ -32,9 +32,11 @@ Waifu.im, NekosBest). * :mod:`animedex.models.trace` - Trace.moe screenshot-search hits. * :mod:`animedex.models.quote` - AnimeChan quotes. +* :mod:`animedex.models.aggregate` - multi-source aggregate envelopes. """ from animedex.models.anime import ( + AiringScheduleRow, Anime, AnimeFormat, AnimeRating, @@ -43,6 +45,7 @@ AnimeStreamingLink, AnimeTitle, ) +from animedex.models.aggregate import AggregateResult, AggregateSourceStatus, MergedAnime, ScheduleCalendarResult from animedex.models.art import ArtPost, ArtRating from animedex.models.character import Character, Staff, Studio from animedex.models.common import ( @@ -71,6 +74,9 @@ "AnimeStatus", "AnimeStreamingLink", "AnimeTitle", + "AiringScheduleRow", + "AggregateResult", + "AggregateSourceStatus", "ApiError", "ArtPost", "ArtRating", @@ -80,9 +86,11 @@ "Manga", "MangaFormat", "MangaStatus", + "MergedAnime", "Pagination", "Quote", "RateLimit", + "ScheduleCalendarResult", "SourceTag", "Staff", "Studio", diff --git a/animedex/models/aggregate.py b/animedex/models/aggregate.py new file mode 100644 index 0000000..e77e8f3 --- /dev/null +++ b/animedex/models/aggregate.py @@ -0,0 +1,239 @@ +"""Shared result envelope for multi-source aggregate commands. + +Aggregate commands such as ``animedex season`` and ``animedex +schedule`` fan out to multiple upstream backends and may receive a +mix of successful rows and per-source failures. This module provides +the stable envelope shape those commands return: ``items`` contains +only rows from successful sources, while ``sources`` records one +status row per selected backend. +""" + +from __future__ import annotations + +from datetime import date, datetime, timezone +from typing import Any, Dict, List, Optional + +from pydantic import Field + +from animedex.models.anime import Anime, AnimeTitle +from animedex.models.common import AnimedexModel, SourceTag + + +class AggregateSourceStatus(AnimedexModel): + """Status row for one backend inside an aggregate response. + + :ivar backend: Backend identifier, e.g. ``"anilist"``. + :vartype backend: str + :ivar status: ``"ok"`` for a successful source, ``"failed"`` for + a source that raised while the fan-out continued. + :vartype status: str + :ivar items: Number of successful rows contributed by this source. + :vartype items: int + :ivar reason: Stable error reason when the source failed. + :vartype reason: str or None + :ivar message: Human-readable source failure message. + :vartype message: str or None + :ivar http_status: HTTP status code when the failure exposed one. + :vartype http_status: int or None + :ivar duration_ms: Wall-clock time spent in this source call. + :vartype duration_ms: float + """ + + backend: str + status: str + items: int = 0 + reason: Optional[str] = None + message: Optional[str] = None + http_status: Optional[int] = None + duration_ms: float = 0.0 + + @property + def ok(self) -> bool: + """Return whether this source succeeded. + + :return: ``True`` when :attr:`status` is ``"ok"``. + :rtype: bool + """ + return self.status == "ok" + + +class AggregateResult(AnimedexModel): + """Envelope returned by multi-source aggregate commands. + + The ``items`` list preserves each backend's rich model. Failures + are deliberately not injected into ``items``; they live only in + ``sources`` so a caller iterating over successful records never + has to special-case failure sentinels. + + :ivar items: Successful rows from every healthy source. + :vartype items: list + :ivar sources: Per-backend status map. + :vartype sources: dict[str, AggregateSourceStatus] + :ivar merge_diagnostics: Per-row diagnostics for rows that could + not enter merge analysis. + :vartype merge_diagnostics: list of dict + """ + + items: List[Any] = Field(default_factory=list) + sources: Dict[str, AggregateSourceStatus] = Field(default_factory=dict) + merge_diagnostics: List[Dict[str, Any]] = Field(default_factory=list) + + @property + def failed_sources(self) -> Dict[str, AggregateSourceStatus]: + """Return the failed source statuses. + + :return: Mapping containing only failed sources. + :rtype: dict[str, AggregateSourceStatus] + """ + return {name: status for name, status in self.sources.items() if not status.ok} + + @property + def succeeded_count(self) -> int: + """Return how many selected sources succeeded. + + :return: Number of ``status == "ok"`` entries. + :rtype: int + """ + return sum(1 for status in self.sources.values() if status.ok) + + @property + def all_failed(self) -> bool: + """Return whether every selected source failed. + + :return: ``True`` when at least one source was selected and + none succeeded. + :rtype: bool + """ + return bool(self.sources) and self.succeeded_count == 0 + + +class ScheduleCalendarResult(AggregateResult): + """Aggregate schedule envelope with display-time metadata. + + The JSON renderer emits this as a normal structured aggregate + result. The TTY renderer uses the timezone and date window fields + to group schedule rows into a calendar-like view. + + :ivar timezone: IANA timezone name, ``"UTC"``, ``"local"``, or a + fixed-offset value such as ``"+08:00"``. + :vartype timezone: str + :ivar window_start: Inclusive local date for the schedule window. + :vartype window_start: datetime.date + :ivar window_end: Exclusive local date for the schedule window. + :vartype window_end: datetime.date + """ + + timezone: str + window_start: date + window_end: date + + +class MergedAnime(AnimedexModel): + """One anime entry merged across aggregate season sources. + + :ivar title: Canonical display title chosen from the contributing + records. + :vartype title: AnimeTitle + :ivar ids: Combined external id map. + :vartype ids: dict[str, str] + :ivar sources: Provenance tags for every contributing backend. + :vartype sources: list[SourceTag] + :ivar records: Per-backend common anime projections. + :vartype records: dict[str, Anime] + :ivar core: Compact merged summary. The JSON output keeps this + next to the full per-backend records so consumers can + read the resolved item without recomputing it. + :vartype core: dict + :ivar source_details: Per-backend source-specific fields promoted + from the contributing records. + :vartype source_details: dict[str, dict] + :ivar source_payloads: Full per-backend payloads for JSON + consumers that need the complete upstream + row shape. + :vartype source_payloads: dict[str, dict] + :ivar id_conflicts: External id conflicts found while building the + merged id map. + :vartype id_conflicts: list of dict + """ + + title: AnimeTitle + ids: Dict[str, str] = Field(default_factory=dict) + sources: List[SourceTag] = Field(default_factory=list) + records: Dict[str, Anime] = Field(default_factory=dict) + core: Dict[str, Any] = Field(default_factory=dict) + source_details: Dict[str, Dict[str, Any]] = Field(default_factory=dict) + source_payloads: Dict[str, Dict[str, Any]] = Field(default_factory=dict) + id_conflicts: List[Dict[str, Any]] = Field(default_factory=list) + + +def selftest() -> bool: + """Smoke-test the aggregate envelope model. + + The diagnostic runner invokes this to confirm that nested rich + models can be carried through the aggregate JSON path and that the + source-status helpers behave correctly. + + :return: ``True`` on success. + :rtype: bool + """ + src = SourceTag(backend="_selftest", fetched_at=datetime.now(timezone.utc)) + a = Anime(id="_selftest:1", title=AnimeTitle(romaji="x"), ids={"_selftest": "1"}, source=src) + merged = MergedAnime( + title=AnimeTitle(romaji="x"), + ids={"_selftest": "1"}, + sources=[src], + records={"_selftest": a}, + core={"title": {"romaji": "x"}, "sources": ["_selftest"]}, + source_details={"_selftest": {"score": "1.0/10.0"}}, + source_payloads={"_selftest": {"id": "_selftest:1"}}, + id_conflicts=[ + { + "key": "_selftest", + "kept_value": "1", + "conflicting_value": "2", + "backend": "_selftest", + "source": "record.id", + } + ], + ) + calendar = ScheduleCalendarResult( + items=[src], + sources={"ok": AggregateSourceStatus(backend="ok", status="ok", items=1)}, + timezone="UTC", + window_start=datetime.now(timezone.utc).date(), + window_end=datetime.now(timezone.utc).date(), + ) + result = AggregateResult( + items=[src], + sources={ + "ok": AggregateSourceStatus(backend="ok", status="ok", items=1), + "failed": AggregateSourceStatus( + backend="failed", + status="failed", + reason="upstream-error", + message="failed", + http_status=500, + ), + }, + merge_diagnostics=[ + { + "backend": "_selftest", + "id": "_selftest:broken", + "reason": "to-common-failed", + "message": "ValueError: broken", + } + ], + ) + decoded = result.model_dump(mode="json") + assert decoded["items"][0]["backend"] == "_selftest" + assert decoded["merge_diagnostics"][0]["reason"] == "to-common-failed" + assert merged.records["_selftest"].id == "_selftest:1" + assert merged.core["sources"] == ["_selftest"] + assert merged.source_details["_selftest"]["score"] == "1.0/10.0" + assert merged.source_payloads["_selftest"]["id"] == "_selftest:1" + assert merged.id_conflicts[0]["source"] == "record.id" + assert calendar.timezone == "UTC" + assert result.succeeded_count == 1 + assert list(result.failed_sources) == ["failed"] + assert not result.all_failed + return True diff --git a/animedex/models/anime.py b/animedex/models/anime.py index d45195c..4c4f82a 100644 --- a/animedex/models/anime.py +++ b/animedex/models/anime.py @@ -22,7 +22,9 @@ from __future__ import annotations from datetime import date, datetime -from typing import Dict, List, Literal, Optional +from typing import Any, Dict, List, Literal, Optional + +from pydantic import Field from animedex.models.common import AnimedexModel, SourceTag @@ -114,6 +116,45 @@ class NextAiringEpisode(AnimedexModel): episode: int +class AiringScheduleRow(AnimedexModel): + """Common projection for a single airing schedule row. + + :ivar title: Display title of the airing series. + :vartype title: str + :ivar airing_at: Exact UTC airing instant when available. + :vartype airing_at: datetime.datetime or None + :ivar episode: Episode number when reported. + :vartype episode: int or None + :ivar weekday: Lowercase weekday name when the upstream only + reports a weekly schedule. + :vartype weekday: str or None + :ivar local_time: Local clock time string from the upstream. + :vartype local_time: str or None + :ivar source: Provenance tag. + :vartype source: SourceTag + :ivar core: Compact aggregate-facing summary. JSON consumers can + read this first and then inspect ``details`` / + ``source_payload`` for the full source-specific row. + :vartype core: dict + :ivar details: Additional source-specific schedule fields kept in + a namespaced dictionary for aggregate consumers. + :vartype details: dict + :ivar source_payload: Full backend row payload when an aggregate + command can preserve it. + :vartype source_payload: dict + """ + + title: str + airing_at: Optional[datetime] = None + episode: Optional[int] = None + weekday: Optional[str] = None + local_time: Optional[str] = None + source: SourceTag + core: Dict[str, Any] = Field(default_factory=dict) + details: Dict[str, Any] = Field(default_factory=dict) + source_payload: Dict[str, Any] = Field(default_factory=dict) + + class Anime(AnimedexModel): """An anime record as returned by any single backend. @@ -290,4 +331,17 @@ def selftest() -> bool: source=src, ) Anime.model_validate_json(a.model_dump_json()) + AiringScheduleRow.model_validate_json( + AiringScheduleRow( + title="x", + airing_at=datetime.now(timezone.utc), + episode=1, + weekday="monday", + local_time="01:00", + source=src, + core={"title": "x"}, + details={"provider": "selftest"}, + source_payload={"provider": "selftest"}, + ).model_dump_json() + ) return True diff --git a/animedex/render/json_renderer.py b/animedex/render/json_renderer.py index 4871f5a..510faf5 100644 --- a/animedex/render/json_renderer.py +++ b/animedex/render/json_renderer.py @@ -67,6 +67,12 @@ def render_json(model: AnimedexModel, *, include_source: bool = True) -> str: for entry in srcs: if isinstance(entry, dict) and entry.get("backend"): sources.append(entry["backend"]) + elif isinstance(srcs, dict): + for backend, entry in srcs.items(): + if isinstance(entry, dict) and entry.get("backend"): + sources.append(entry["backend"]) + elif backend: + sources.append(backend) payload["_meta"] = {"sources_consulted": sources} return json.dumps(payload, ensure_ascii=False, separators=(",", ":")) diff --git a/animedex/render/tty.py b/animedex/render/tty.py index 4769f84..0a27b3d 100644 --- a/animedex/render/tty.py +++ b/animedex/render/tty.py @@ -12,13 +12,18 @@ from __future__ import annotations import io +from datetime import date, datetime, time, timedelta from typing import Any, Optional -from animedex.models.anime import Anime +from animedex.models.anime import AiringScheduleRow, Anime +from animedex.models.aggregate import AggregateResult, MergedAnime, ScheduleCalendarResult from animedex.models.character import Character, Staff, Studio from animedex.models.common import AnimedexModel from animedex.models.trace import TraceHit, TraceQuota from animedex.render.json_renderer import render_json +from animedex.utils.timezone import parse_timezone + +_SCHEDULE_TIMELINE = "\u2502" def is_terminal(stream: Any) -> bool: @@ -34,6 +39,21 @@ def is_terminal(stream: Any) -> bool: return bool(getattr(stream, "isatty", lambda: False)()) +def _stream_supports_text(stream: Any, text: str) -> bool: + encoding = getattr(stream, "encoding", None) + if stream is None or not encoding: + return True + try: + text.encode(encoding) + except (LookupError, UnicodeEncodeError): + return False + return True + + +def _schedule_timeline_char(stream: Any = None) -> str: + return _SCHEDULE_TIMELINE if _stream_supports_text(stream, _SCHEDULE_TIMELINE) else "|" + + def _truncate(text: Optional[str], n: int = 280) -> Optional[str]: """Trim multi-paragraph blobs (description / synopsis) so the TTY rendering stays scannable; ``--json`` always carries the full @@ -295,7 +315,566 @@ def _format_trace_quota_tty(q: TraceQuota) -> str: return out.getvalue() -def render_tty(model: AnimedexModel) -> str: +def _format_airing_schedule_tty(row: AiringScheduleRow) -> str: + src = f"[src: {row.source.backend}]" + out = io.StringIO() + print(f"{row.title} {src}", file=out) + if row.airing_at is not None: + print(f" Airing: {row.airing_at.isoformat()}", file=out) + detail = [] + if row.weekday: + detail.append(row.weekday) + if row.local_time: + detail.append(row.local_time) + if detail: + print(f" Schedule: {' · '.join(detail)}", file=out) + if row.episode is not None: + print(f" Episode: {row.episode}", file=out) + for label, value in _schedule_tty_sections(row).items(): + _render_tree(out, label, value, indent=2, limit=5) + return out.getvalue() + + +def _tzinfo_from_label(label: str): + try: + return parse_timezone(label).tzinfo + except ValueError: + return None + + +def _is_empty_tree_value(value: object) -> bool: + return value is None or value == "" or value == [] or value == {} + + +def _tree_label(key: object) -> str: + text = str(key).replace("_", " ").strip() + if not text: + return "Value" + return text[:1].upper() + text[1:] + + +def _tree_scalar(value: object) -> str: + if isinstance(value, (datetime, date, time)): + return value.isoformat() + if isinstance(value, bool): + return "true" if value else "false" + return _truncate(str(value), 220) or "" + + +def _render_tree(out: io.StringIO, label: str, value: object, *, indent: int = 2, limit: int = 8) -> None: + if _is_empty_tree_value(value): + return + prefix = " " * indent + if isinstance(value, dict): + print(f"{prefix}{label}:", file=out) + _render_tree_dict(out, value, indent=indent + 2, limit=limit) + elif isinstance(value, list): + print(f"{prefix}{label}:", file=out) + _render_tree_list(out, value, indent=indent + 2, limit=limit) + else: + print(f"{prefix}{label}: {_tree_scalar(value)}", file=out) + + +def _render_tree_dict(out: io.StringIO, values: dict, *, indent: int, limit: int) -> None: + printed = 0 + for key, value in values.items(): + if _is_empty_tree_value(value): + continue + _render_tree(out, _tree_label(key), value, indent=indent, limit=limit) + printed += 1 + if printed >= limit: + remaining = sum(1 for next_value in values.values() if not _is_empty_tree_value(next_value)) - printed + if remaining > 0: + print(f"{' ' * indent}(+{remaining} more)", file=out) + break + + +def _render_tree_list(out: io.StringIO, values: list, *, indent: int, limit: int) -> None: + prefix = " " * indent + printed = 0 + for value in values: + if _is_empty_tree_value(value): + continue + if isinstance(value, dict): + print(f"{prefix}-", file=out) + _render_tree_dict(out, value, indent=indent + 2, limit=limit) + elif isinstance(value, list): + print(f"{prefix}-", file=out) + _render_tree_list(out, value, indent=indent + 2, limit=limit) + else: + print(f"{prefix}- {_tree_scalar(value)}", file=out) + printed += 1 + if printed >= limit: + remaining = sum(1 for next_value in values if not _is_empty_tree_value(next_value)) - printed + if remaining > 0: + print(f"{prefix}- (+{remaining} more)", file=out) + break + + +def _render_schedule_timeline_tree(out: io.StringIO, sections: dict, *, timeline: str, limit: int = 5) -> None: + gutter = " " * 6 + rendered = io.StringIO() + for label, value in sections.items(): + _render_tree(rendered, label, value, indent=0, limit=limit) + for line in rendered.getvalue().splitlines(): + print(f"{gutter}{timeline} {line}", file=out) + + +def _compact_tree(values: dict) -> dict: + out = {} + for key, value in values.items(): + if _is_empty_tree_value(value): + continue + if isinstance(value, dict): + nested = _compact_tree(value) + if nested: + out[key] = nested + elif isinstance(value, list): + nested_list = [] + for item in value: + if isinstance(item, dict): + nested = _compact_tree(item) + if nested: + nested_list.append(nested) + elif not _is_empty_tree_value(item): + nested_list.append(item) + if nested_list: + out[key] = nested_list + else: + out[key] = value + return out + + +def _limited_unique(values: object, *, limit: int = 4) -> list: + out = [] + if not isinstance(values, list): + return out + for value in values: + if value and value not in out: + out.append(value) + if len(out) >= limit: + break + return out + + +def _first_text(value: object) -> Optional[str]: + if isinstance(value, str): + text = value.strip() + return text or None + if isinstance(value, list): + for item in value: + if isinstance(item, str): + text = item.strip() + if text: + return text + return None + + +def _normalise_tty_token(value: object) -> Optional[str]: + text = _first_text(value) + return " ".join(text.casefold().split()) if text else None + + +def _filtered_tags(values: object, *, excluded: tuple = (), limit: int = 3) -> object: + blocked = {_normalise_tty_token(value) for value in excluded} + blocked.update({"airing", "finished", "upcoming", "cancelled", "hiatus", "unknown"}) + blocked.update({"winter", "spring", "summer", "fall"}) + out = [] + if not isinstance(values, list): + return out + for value in values: + token = _normalise_tty_token(value) + if not token or token in blocked: + continue + if value not in out: + out.append(value) + if len(out) >= limit: + break + return out + + +def _join_summary(values: object, *, limit: int = 5, sep: str = ", ") -> Optional[str]: + if isinstance(values, str): + return values or None + if not isinstance(values, list): + return None + out = [] + for value in values: + if value and value not in out: + out.append(str(value)) + if len(out) >= limit: + break + return sep.join(out) if out else None + + +_ID_LABELS = { + "anilist": "AniList", + "mal": "MAL", + "jikan": "Jikan", + "kitsu": "Kitsu", + "shikimori": "Shikimori", + "ann": "ANN", + "mangadex": "MangaDex", + "ghibli": "Ghibli", +} +_ID_ORDER = {name: idx for idx, name in enumerate(_ID_LABELS)} + + +def _id_value(value: object) -> Optional[str]: + if value is None or value == "": + return None + return str(value) + + +def _ids_tty_view(ids: object) -> dict: + if not isinstance(ids, dict): + return {} + out = {} + for key, value in sorted(ids.items(), key=lambda item: (_ID_ORDER.get(str(item[0]).casefold(), 999), str(item[0]))): + text = _id_value(value) + if text: + out[_ID_LABELS.get(str(key).casefold(), _tree_label(key))] = text + return out + + +def _nested_mapping_value(values: object, *path: str) -> object: + current = values + for key in path: + if not isinstance(current, dict): + return None + current = current.get(key) + return current + + +def _schedule_ids_tty_view(row: AiringScheduleRow, *, core: dict, details: dict) -> dict: + out = {} + + def add(label: str, value: object) -> None: + text = _id_value(value) + if text: + out[label] = text + + for label, value in _ids_tty_view(core.get("ids") or details.get("ids")).items(): + add(label, value) + + payload = row.source_payload or {} + if row.source.backend == "anilist": + add("AniList airing", details.get("schedule_id") or core.get("schedule_id") or payload.get("id")) + add( + "AniList media", + details.get("media_id") or core.get("media_id") or _nested_mapping_value(payload, "media", "id"), + ) + add("MAL", details.get("mal_id") or core.get("mal_id") or _nested_mapping_value(payload, "media", "idMal")) + elif row.source.backend == "jikan": + add("Jikan/MAL", details.get("mal_id") or core.get("mal_id") or payload.get("mal_id")) + else: + backend_id = details.get("id") or core.get("id") or payload.get("id") + add(_ID_LABELS.get(row.source.backend, _tree_label(row.source.backend)), backend_id) + return _compact_tree(out) + + +def _merged_ids_tty_view(item: MergedAnime) -> dict: + ids = dict(item.ids or {}) + if not ids and isinstance(item.core.get("ids"), dict): + ids.update(item.core["ids"]) + for backend, record in item.records.items(): + record_ids = getattr(record, "ids", None) + if isinstance(record_ids, dict): + for key, value in record_ids.items(): + ids.setdefault(key, value) + record_id = getattr(record, "id", None) + if isinstance(record_id, str) and ":" in record_id: + source_name, source_id = record_id.split(":", 1) + ids.setdefault(source_name, source_id) + elif record_id: + ids.setdefault(backend, record_id) + for backend, details in item.source_details.items(): + if not isinstance(details, dict): + continue + for key, value in _ids_tty_view(details.get("ids")).items(): + ids.setdefault(key.casefold(), value) + detail_id = details.get("id") + if isinstance(detail_id, str) and ":" in detail_id: + source_name, source_id = detail_id.split(":", 1) + ids.setdefault(source_name, source_id) + elif detail_id: + ids.setdefault(backend, detail_id) + return _ids_tty_view(ids) + + +def _titles_tty_view(titles: object) -> dict: + if not isinstance(titles, dict): + return {} + languages = titles.get("by_language") if isinstance(titles.get("by_language"), dict) else {} + romaji = _first_text(titles.get("romaji") or titles.get("primary")) + seen = {_normalise_tty_token(romaji)} + out = {} + + def add(key: str, value: object) -> None: + text = _first_text(value) + token = _normalise_tty_token(text) + if not text or token in seen: + return + out[key] = text + seen.add(token) + + add("english", titles.get("english")) + add("japanese", languages.get("japanese") or titles.get("native")) + add("chinese", languages.get("chinese")) + add("korean", languages.get("korean")) + add("native", titles.get("native")) + return _compact_tree(out) + + +def _score_text(score: object) -> object: + if isinstance(score, dict) and score.get("score") is not None: + text = str(score["score"]) + if score.get("scale") is not None: + text = f"{text}/{score['scale']}" + return text + return score + + +def _score_map(source_details: dict) -> dict: + out = {} + for backend, details in source_details.items(): + if not isinstance(details, dict): + continue + score = _score_text(details.get("score")) + if score: + out[_tree_label(backend)] = score + return _compact_tree(out) + + +def _first_source_detail(source_details: dict, key: str) -> object: + for details in source_details.values(): + if isinstance(details, dict) and not _is_empty_tree_value(details.get(key)): + return details[key] + return None + + +def _first_source_details(source_details: dict) -> dict: + for details in source_details.values(): + if isinstance(details, dict): + return details + return {} + + +def _collect_source_detail_values(source_details: dict, key: str, *, limit: int = 5) -> list: + out = [] + for details in source_details.values(): + if not isinstance(details, dict): + continue + values = details.get(key) + if not isinstance(values, list): + values = [values] if values is not None else [] + for value in values: + if value and value not in out: + out.append(value) + if len(out) >= limit: + return out + return out + + +def _season_text(airing: object, details: Optional[dict] = None) -> Optional[str]: + details = details or {} + if isinstance(airing, dict): + season = airing.get("season") + year = airing.get("season_year") + if season and year: + return f"{season} {year}" + if season: + return str(season) + season = details.get("season") + year = details.get("season_year") + if season and year: + return f"{season} {year}" + if season: + return str(season) + return None + + +def _date_range_text(airing: object, details: Optional[dict] = None) -> Optional[str]: + details = details or {} + source = airing if isinstance(airing, dict) else details + start = source.get("aired_from") + end = source.get("aired_to") + if start and end: + return f"{start} to {end}" + if start: + return f"{start} to ongoing" + return None + + +def _schedule_tty_sections(row: AiringScheduleRow) -> dict: + core = dict(row.core or {}) + details = row.details or {} + if not core: + core = { + "title": row.title, + "airing_at": row.airing_at, + "episode": row.episode, + "weekday": row.weekday, + "local_time": row.local_time, + } + titles = _titles_tty_view(core.get("titles") or details.get("titles")) + status = core.get("status") or details.get("status") + source_material = core.get("source_material") or details.get("source_material") + rating = core.get("rating") or details.get("rating") + score = _score_text(core.get("score") or details.get("score")) + return _compact_tree( + { + "Names": titles, + "IDs": _schedule_ids_tty_view(row, core=core, details=details), + "Info": { + "status": status, + "source_material": source_material, + "rating": rating, + "score": score, + }, + "Tags": { + "type": _join_summary( + _filtered_tags( + core.get("type_tags") or details.get("type_tags") or [], + excluded=(status, source_material, rating), + limit=3, + ), + limit=3, + ), + "genres": _join_summary( + _limited_unique(core.get("genres") or details.get("genres") or [], limit=3), limit=3 + ), + }, + } + ) + + +def _merged_tty_sections(item: MergedAnime) -> dict: + core = item.core or {} + first_details = _first_source_details(item.source_details) + titles = _titles_tty_view(core.get("titles")) + if not titles: + merged_titles = {} + for details in item.source_details.values(): + if not isinstance(details, dict): + continue + source_titles = _titles_tty_view(details.get("titles")) + for key, value in source_titles.items(): + if key not in merged_titles: + merged_titles[key] = value + titles = _compact_tree(merged_titles) + format_text = core.get("format") or _first_source_detail(item.source_details, "format") + episodes = core.get("episodes") or _first_source_detail(item.source_details, "episodes") + season_text = _season_text(core.get("airing")) or _season_text({}, first_details) + source_text = core.get("source_material") or _first_source_detail(item.source_details, "source_material") + rating = core.get("age_rating") or _first_source_detail(item.source_details, "age_rating") + type_tags = _filtered_tags( + core.get("type_tags") or _collect_source_detail_values(item.source_details, "type_tags", limit=8), + excluded=( + (core.get("airing") or {}).get("status") if isinstance(core.get("airing"), dict) else None, + source_text, + rating, + *list(core.get("genres") or []), + ), + limit=3, + ) + genres = _limited_unique(core.get("genres") or [], limit=3) or _collect_source_detail_values( + item.source_details, "genres", limit=3 + ) + return _compact_tree( + { + "Names": titles, + "IDs": _merged_ids_tty_view(item), + "Info": { + "format": format_text, + "episodes": episodes, + "season": season_text, + "aired": _date_range_text(core.get("airing")) or _date_range_text({}, first_details), + "source_material": source_text, + "rating": rating, + }, + "Scores": _score_map(item.source_details), + "Tags": { + "type": _join_summary(type_tags, limit=3), + "genres": _join_summary(genres, limit=3), + }, + } + ) + + +def _schedule_datetime(row: AiringScheduleRow, *, window_start: date, timezone_label: str) -> Optional[datetime]: + target_tz = _tzinfo_from_label(timezone_label) + if row.airing_at is not None: + return row.airing_at.astimezone(target_tz) if target_tz is not None else row.airing_at + if row.weekday in ("monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday") and row.local_time: + try: + hour, minute = [int(part) for part in row.local_time.split(":", 1)] + except ValueError: + return None + weekdays = ("monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday") + delta = (weekdays.index(row.weekday) - window_start.weekday()) % 7 + tz = target_tz + return datetime.combine(window_start + timedelta(days=delta), time(hour, minute), tzinfo=tz) + return None + + +def _format_schedule_calendar_tty(result: ScheduleCalendarResult, *, stream: Any = None) -> str: + out = io.StringIO() + timeline = _schedule_timeline_char(stream) + print(f"Schedule ({result.timezone})", file=out) + print(f"Window: {result.window_start.isoformat()} to {result.window_end.isoformat()} (exclusive)", file=out) + if not result.items: + return out.getvalue() + + groups = {} + floating = [] + for item in result.items: + row = item if isinstance(item, AiringScheduleRow) else None + if row is None and hasattr(item, "to_common"): + try: + common = item.to_common() + except Exception: + common = None + row = common if isinstance(common, AiringScheduleRow) else None + if row is None: + floating.append(item) + continue + when = _schedule_datetime(row, window_start=result.window_start, timezone_label=result.timezone) + key = when.date() if when is not None else None + groups.setdefault(key, []).append((when, row)) + + for day in sorted(groups, key=lambda value: value or date.max): + label = day.strftime("%A, %Y-%m-%d") if day is not None else "Unscheduled" + print("", file=out) + print(label, file=out) + rows = sorted(groups[day], key=lambda pair: ((pair[0] or datetime.max).time(), pair[1].title)) + for index, (when, row) in enumerate(rows): + if index: + print(f"{' ' * 6}{timeline}", file=out) + clock = when.strftime("%H:%M") if when is not None else (row.local_time or "--:--") + bits = [row.title] + if row.episode is not None: + bits.append(f"ep {row.episode}") + bits.append(f"[src: {row.source.backend}]") + print(f"{clock:<5} {timeline} {' '.join(bits)}", file=out) + _render_schedule_timeline_tree(out, _schedule_tty_sections(row), timeline=timeline, limit=5) + + for item in floating: + print("", file=out) + print(render_tty(item, stream=stream) if isinstance(item, AnimedexModel) else str(item), file=out) + return out.getvalue() + + +def _format_merged_anime_tty(item: MergedAnime) -> str: + source_names = "+".join(source.backend for source in item.sources) or "?" + out = io.StringIO() + print(f"{item.title.romaji} [src: {source_names}]", file=out) + for label, value in _merged_tty_sections(item).items(): + _render_tree(out, label, value, indent=2, limit=6) + return out.getvalue() + + +def render_tty(model: AnimedexModel, *, stream: Any = None) -> str: """Render a model into the human-friendly TTY form. Dispatches on type: :class:`Anime`, :class:`Character`, @@ -306,9 +885,24 @@ def render_tty(model: AnimedexModel) -> str: :param model: The :class:`AnimedexModel` instance to render. :type model: AnimedexModel + :param stream: Optional destination stream used to pick terminal + glyphs that the stream can encode. + :type stream: Any :return: The TTY-friendly string. :rtype: str """ + if isinstance(model, ScheduleCalendarResult): + return _format_schedule_calendar_tty(model, stream=stream) + if isinstance(model, AggregateResult): + if not model.items: + return "" + return "\n\n".join( + render_tty(item, stream=stream) if isinstance(item, AnimedexModel) else str(item) for item in model.items + ) + if isinstance(model, MergedAnime): + return _format_merged_anime_tty(model) + if isinstance(model, AiringScheduleRow): + return _format_airing_schedule_tty(model) if isinstance(model, Anime): return _format_anime_tty(model) if isinstance(model, Character): @@ -334,8 +928,8 @@ def render_tty(model: AnimedexModel) -> str: common = model.to_common() except Exception: common = None - if isinstance(common, (Anime, Character, Staff, Studio)): - return render_tty(common) + if isinstance(common, (Anime, AiringScheduleRow, Character, Staff, Studio)): + return render_tty(common, stream=stream) # Generic fallback: dump JSON with whichever SourceTag we can find. # Rich dataclasses store the SourceTag on ``source_tag`` because # their ``source`` field is already taken by upstream metadata @@ -372,7 +966,7 @@ def render_for_stream(model: AnimedexModel, stream: Any) -> str: :rtype: str """ if is_terminal(stream): - return render_tty(model) + return render_tty(model, stream=stream) return render_json(model, include_source=True) diff --git a/animedex/utils/__init__.py b/animedex/utils/__init__.py new file mode 100644 index 0000000..fcb2e4f --- /dev/null +++ b/animedex/utils/__init__.py @@ -0,0 +1,5 @@ +"""Shared utility helpers for animedex internals.""" + +from animedex.utils.timezone import TimezoneResolution, now_local, parse_timezone, timezone_label + +__all__ = ["TimezoneResolution", "now_local", "parse_timezone", "timezone_label"] diff --git a/animedex/utils/timezone.py b/animedex/utils/timezone.py new file mode 100644 index 0000000..aa116a1 --- /dev/null +++ b/animedex/utils/timezone.py @@ -0,0 +1,152 @@ +"""Timezone parsing helpers shared by aggregate commands and renderers. + +The CLI accepts fixed offsets, IANA names, local time, and the broader +set of timezone strings supported by :mod:`dateutil.tz`. Keeping this +logic in one module avoids each command growing a slightly different +timezone parser. +""" + +from __future__ import annotations + +import re +from dataclasses import dataclass +from datetime import datetime, timedelta, timezone, tzinfo +from typing import Optional +from zoneinfo import ZoneInfo, ZoneInfoNotFoundError + +from dateutil import tz as dateutil_tz + +_OFFSET_RE = re.compile(r"^([+-])(\d{1,2})(?::?(\d{2}))?$") +_OFFSET_PREFIX_RE = re.compile(r"^(?:utc|gmt)\s*([+-])\s*(\d{1,2})(?::?(\d{2}))?$", re.IGNORECASE) +_UTC_ALIASES = frozenset({"utc", "z", "gmt"}) + + +@dataclass(frozen=True) +class TimezoneResolution: + """Resolved timezone value and display label. + + :ivar tzinfo: Concrete timezone object used for datetime math. + :vartype tzinfo: datetime.tzinfo + :ivar label: Stable human-readable label carried into rendered + aggregate results. + :vartype label: str + """ + + tzinfo: tzinfo + label: str + + +def now_local() -> datetime: + """Return the current local aware datetime. + + :return: Local aware datetime. + :rtype: datetime.datetime + """ + return datetime.now().astimezone() + + +def timezone_label(tz: tzinfo, *, sample: Optional[datetime] = None) -> str: + """Return a stable display label for a timezone object. + + :param tz: Timezone object. + :type tz: datetime.tzinfo + :param sample: Optional datetime used for offset/name sampling. + :type sample: datetime.datetime or None + :return: IANA key, ``"UTC"``, fixed offset, or timezone name. + :rtype: str + """ + key = getattr(tz, "key", None) + if isinstance(key, str) and key: + return key + if tz is timezone.utc: + return "UTC" + sample_dt = sample or now_local() + offset = tz.utcoffset(sample_dt) + if offset is not None: + total_seconds = int(offset.total_seconds()) + sign = "+" if total_seconds >= 0 else "-" + total_seconds = abs(total_seconds) + hours, remainder = divmod(total_seconds, 3600) + minutes = remainder // 60 + return f"{sign}{hours:02d}:{minutes:02d}" + name = tz.tzname(sample_dt) + return name or "local" + + +def _fixed_offset(sign: str, hours_text: str, minutes_text: Optional[str]) -> Optional[TimezoneResolution]: + hours = int(hours_text) + minutes = int(minutes_text or "0") + if hours > 23 or minutes > 59: + return None + delta = timedelta(hours=hours, minutes=minutes) + if sign == "-": + delta = -delta + label = f"{sign}{hours:02d}:{minutes:02d}" + return TimezoneResolution(timezone(delta, name=label), label) + + +def parse_timezone(value: Optional[str], *, local_now: Optional[datetime] = None) -> TimezoneResolution: + """Parse a user-facing timezone string. + + Accepted forms include ``local``, ``UTC``/``Z``/``GMT``, IANA + names such as ``Asia/Tokyo``, fixed offsets such as ``+08:00`` or + ``+8``, prefixed offsets such as ``UTC+8`` or ``GMT-05:00``, and + any additional timezone syntax understood by :func:`dateutil.tz.gettz`. + + :param value: User-provided timezone value. ``None`` means local. + :type value: str or None + :param local_now: Optional local datetime override for tests. + :type local_now: datetime.datetime or None + :return: Resolved timezone and display label. + :rtype: TimezoneResolution + :raises ValueError: If the value cannot be parsed. + """ + raw = (value or "local").strip() + if not raw or raw.lower() == "local": + local = local_now or now_local() + tz = local.tzinfo or timezone.utc + return TimezoneResolution(tz, timezone_label(tz, sample=local)) + + compact = re.sub(r"\s+", "", raw) + if compact.lower() in _UTC_ALIASES: + return TimezoneResolution(timezone.utc, "UTC") + + match = _OFFSET_RE.match(compact) + if match is not None: + resolved = _fixed_offset(match.group(1), match.group(2), match.group(3)) + if resolved is None: + raise ValueError(f"unknown timezone: {value!r}") + return resolved + + prefixed = _OFFSET_PREFIX_RE.match(compact) + if prefixed is not None: + resolved = _fixed_offset(prefixed.group(1), prefixed.group(2), prefixed.group(3)) + if resolved is None: + raise ValueError(f"unknown timezone: {value!r}") + return resolved + + try: + return TimezoneResolution(ZoneInfo(raw), raw) + except ZoneInfoNotFoundError: + pass + + dateutil_tzinfo = dateutil_tz.gettz(raw) + if dateutil_tzinfo is not None: + return TimezoneResolution(dateutil_tzinfo, raw) + + raise ValueError(f"unknown timezone: {value!r}") + + +def selftest() -> bool: + """Smoke-test broad timezone parsing. + + :return: ``True`` when local, IANA, fixed-offset, and dateutil TZ + string parsing all work. + :rtype: bool + """ + assert parse_timezone("UTC").label == "UTC" + assert parse_timezone("+8").label == "+08:00" + assert parse_timezone("UTC+8").label == "+08:00" + assert parse_timezone("Asia/Tokyo").label == "Asia/Tokyo" + assert parse_timezone("CST-8").tzinfo.utcoffset(datetime(2026, 1, 1)).total_seconds() == 8 * 3600 + return True diff --git a/docs/source/_static/gifs/README.md b/docs/source/_static/gifs/README.md index dc4a19d..96dca2c 100644 --- a/docs/source/_static/gifs/README.md +++ b/docs/source/_static/gifs/README.md @@ -22,6 +22,7 @@ source tapes so future contributors can regenerate them. | `trace.gif` | `docs/source/tutorials/backends/trace.rst` header | `trace.tape` | | `nekos.gif` | `docs/source/tutorials/backends/nekos.rst` header | `nekos.tape` | | `shikimori.gif` | `docs/source/tutorials/backends/shikimori.rst` header | `shikimori.tape` | +| `aggregate.gif` | `docs/source/tutorials/aggregate.rst` header | `aggregate.tape` | ## Regenerating @@ -47,6 +48,7 @@ vhs quote.tape # produces quote.gif vhs trace.tape # produces trace.gif vhs nekos.tape # produces nekos.gif vhs shikimori.tape # produces shikimori.gif +vhs aggregate.tape # produces aggregate.gif ``` vhs is available as a single-file binary at diff --git a/docs/source/_static/gifs/aggregate.gif b/docs/source/_static/gifs/aggregate.gif new file mode 100644 index 0000000..0791ac4 Binary files /dev/null and b/docs/source/_static/gifs/aggregate.gif differ diff --git a/docs/source/_static/gifs/aggregate.tape b/docs/source/_static/gifs/aggregate.tape new file mode 100644 index 0000000..d847db1 --- /dev/null +++ b/docs/source/_static/gifs/aggregate.tape @@ -0,0 +1,31 @@ +# vhs tape - animedex calendar aggregate demo (~18 s) +# +# A compact tour of the new top-level aggregate commands: +# 1. season as a merged multi-source JSON envelope, +# 2. schedule as a timezone-aware TTY calendar block. + +Output aggregate.gif + +Set Theme "Dracula" +Set FontSize 13 +Set Width 1040 +Set Height 560 +Set Padding 14 +Set Framerate 24 + +Type "python -m animedex season 2024 spring --limit 5 --json --no-cache --jq '{count: (.items | length), first: (.items[0] | {title: .title.romaji, sources: (.sources | map(.backend)), jikan_score: .source_details.jikan.score.score})}'" +Sleep 400ms +Enter +Sleep 3800ms + +Type "clear" +Enter +Sleep 200ms + +Type "python -m animedex schedule --day monday --source jikan --timezone +08:00 --limit 3 --no-cache" +Sleep 400ms +Enter +Sleep 3600ms + +# Hold the final frame so a viewer has time to read the last block. +Sleep 4s diff --git a/docs/source/api_doc/agg/_fanout.rst b/docs/source/api_doc/agg/_fanout.rst new file mode 100644 index 0000000..e79382e --- /dev/null +++ b/docs/source/api_doc/agg/_fanout.rst @@ -0,0 +1,27 @@ +animedex.agg.\_fanout +======================================================== + +.. currentmodule:: animedex.agg._fanout + +.. automodule:: animedex.agg._fanout + + +FanoutSource +----------------------------------------------------- + +.. autoclass:: FanoutSource + :members: name,call + + +run\_fanout +----------------------------------------------------- + +.. autofunction:: run_fanout + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/agg/calendar.rst b/docs/source/api_doc/agg/calendar.rst new file mode 100644 index 0000000..d45f5e9 --- /dev/null +++ b/docs/source/api_doc/agg/calendar.rst @@ -0,0 +1,56 @@ +animedex.agg.calendar +======================================================== + +.. currentmodule:: animedex.agg.calendar + +.. automodule:: animedex.agg.calendar + + +SEASONS +----------------------------------------------------- + +.. autodata:: SEASONS + + +SOURCES +----------------------------------------------------- + +.. autodata:: SOURCES + + +WEEKDAYS +----------------------------------------------------- + +.. autodata:: WEEKDAYS + + +DAYS +----------------------------------------------------- + +.. autodata:: DAYS + + +current\_anime\_season +----------------------------------------------------- + +.. autofunction:: current_anime_season + + +season +----------------------------------------------------- + +.. autofunction:: season + + +schedule +----------------------------------------------------- + +.. autofunction:: schedule + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/agg/index.rst b/docs/source/api_doc/agg/index.rst new file mode 100644 index 0000000..0a65fc8 --- /dev/null +++ b/docs/source/api_doc/agg/index.rst @@ -0,0 +1,26 @@ +animedex.agg +======================================================== + +.. currentmodule:: animedex.agg + +.. automodule:: animedex.agg + + +.. toctree:: + :maxdepth: 3 + + _fanout + calendar + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/backends/anilist/models.rst b/docs/source/api_doc/backends/anilist/models.rst index ec24428..bb32fc8 100644 --- a/docs/source/api_doc/backends/anilist/models.rst +++ b/docs/source/api_doc/backends/anilist/models.rst @@ -45,7 +45,7 @@ AnilistAiringSchedule ----------------------------------------------------- .. autoclass:: AnilistAiringSchedule - :members: id,airingAt,episode,timeUntilAiring,media_id,media_title_romaji,source_tag + :members: to_common,id,airingAt,episode,timeUntilAiring,media_id,media_title_romaji,raw_payload,source_tag AnilistReview diff --git a/docs/source/api_doc/entry/aggregate.rst b/docs/source/api_doc/entry/aggregate.rst new file mode 100644 index 0000000..5ec8c51 --- /dev/null +++ b/docs/source/api_doc/entry/aggregate.rst @@ -0,0 +1,26 @@ +animedex.entry.aggregate +======================================================== + +.. currentmodule:: animedex.entry.aggregate + +.. automodule:: animedex.entry.aggregate + + +season\_command +----------------------------------------------------- + +.. autofunction:: season_command + + +schedule\_command +----------------------------------------------------- + +.. autofunction:: schedule_command + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/models/aggregate.rst b/docs/source/api_doc/models/aggregate.rst new file mode 100644 index 0000000..672f249 --- /dev/null +++ b/docs/source/api_doc/models/aggregate.rst @@ -0,0 +1,42 @@ +animedex.models.aggregate +======================================================== + +.. currentmodule:: animedex.models.aggregate + +.. automodule:: animedex.models.aggregate + + +AggregateSourceStatus +----------------------------------------------------- + +.. autoclass:: AggregateSourceStatus + :members: ok,backend,status,items,reason,message,http_status,duration_ms + + +AggregateResult +----------------------------------------------------- + +.. autoclass:: AggregateResult + :members: failed_sources,succeeded_count,all_failed,items,sources,merge_diagnostics + + +ScheduleCalendarResult +----------------------------------------------------- + +.. autoclass:: ScheduleCalendarResult + :members: timezone,window_start,window_end + + +MergedAnime +----------------------------------------------------- + +.. autoclass:: MergedAnime + :members: title,ids,sources,records,core,source_details,source_payloads,id_conflicts + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest + + diff --git a/docs/source/api_doc/models/anime.rst b/docs/source/api_doc/models/anime.rst index 3545e7a..601651c 100644 --- a/docs/source/api_doc/models/anime.rst +++ b/docs/source/api_doc/models/anime.rst @@ -52,6 +52,13 @@ NextAiringEpisode :members: airing_at,time_until_airing_seconds,episode +AiringScheduleRow +----------------------------------------------------- + +.. autoclass:: AiringScheduleRow + :members: title,airing_at,episode,weekday,local_time,source,core,details,source_payload + + Anime ----------------------------------------------------- diff --git a/docs/source/api_doc/models/index.rst b/docs/source/api_doc/models/index.rst index c1bbd09..17e3064 100644 --- a/docs/source/api_doc/models/index.rst +++ b/docs/source/api_doc/models/index.rst @@ -9,6 +9,7 @@ animedex.models .. toctree:: :maxdepth: 3 + aggregate anime art character diff --git a/docs/source/api_doc/utils/index.rst b/docs/source/api_doc/utils/index.rst new file mode 100644 index 0000000..3fded6c --- /dev/null +++ b/docs/source/api_doc/utils/index.rst @@ -0,0 +1,17 @@ +animedex.utils +======================================================== + +.. currentmodule:: animedex.utils + +.. automodule:: animedex.utils + + +.. toctree:: + :maxdepth: 3 + + timezone + +\_\_all\_\_ +----------------------------------------------------- + +.. autodata:: __all__ diff --git a/docs/source/api_doc/utils/timezone.rst b/docs/source/api_doc/utils/timezone.rst new file mode 100644 index 0000000..1825663 --- /dev/null +++ b/docs/source/api_doc/utils/timezone.rst @@ -0,0 +1,37 @@ +animedex.utils.timezone +======================================================== + +.. currentmodule:: animedex.utils.timezone + +.. automodule:: animedex.utils.timezone + + +TimezoneResolution +----------------------------------------------------- + +.. autoclass:: TimezoneResolution + :members: tzinfo,label + + +now\_local +----------------------------------------------------- + +.. autofunction:: now_local + + +timezone\_label +----------------------------------------------------- + +.. autofunction:: timezone_label + + +parse\_timezone +----------------------------------------------------- + +.. autofunction:: parse_timezone + + +selftest +----------------------------------------------------- + +.. autofunction:: selftest diff --git a/docs/source/tutorials/aggregate.rst b/docs/source/tutorials/aggregate.rst new file mode 100644 index 0000000..5969100 --- /dev/null +++ b/docs/source/tutorials/aggregate.rst @@ -0,0 +1,66 @@ +:orphan: + +``animedex season`` and ``animedex schedule`` +============================================= + +The calendar aggregate commands fan out to AniList and Jikan, keep successful rows even when one source fails, and preserve source attribution in both JSON and TTY output. + +.. image:: /_static/gifs/aggregate.gif + :alt: animedex aggregate demo - season and schedule with fallback + :align: center + +Examples +-------- + +Seasonal listings +~~~~~~~~~~~~~~~~~ + +.. code-block:: bash + + animedex season 2024 spring --json --jq '.items[0] | {title: .title.romaji, sources: (.sources | map(.backend)), jikan_score: .source_details.jikan.score.score}' + # => {"title":"Kaijuu 8-gou","sources":["anilist","jikan"],"jikan_score":8.21} + + animedex season 2024 spring --source jikan --limit 3 --json --jq '[.items[].title.romaji]' + # => ["Kimetsu no Yaiba: Hashira Geiko-hen", "Kaijuu 8-gou", "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2"] + +Weekly schedule +~~~~~~~~~~~~~~~ + +.. code-block:: bash + + animedex schedule --day monday --source jikan --timezone Asia/Tokyo --json --jq '.items[0] | {title, weekday, time: .local_time, source: .details.source_material}' + # => {"title":"Shin Nippon History","weekday":"monday","time":"01:00","source":"Original"} + + animedex schedule --day monday --source jikan --timezone +08:00 --limit 3 + # Schedule (+08:00) + # Window: 2026-05-11 to 2026-05-12 (exclusive) + # + # Monday, 2026-05-11 + # 00:00 Shin Nippon History [src: jikan] + # Names: + # Japanese: 新ニッポンヒストリー + # Info: + # Status: Currently Airing + # Source material: Original + # Rating: G - All Ages + # Tags: + # - TV + # 17:25 Puzzle & Dragon [src: jikan] + +Partial failure +~~~~~~~~~~~~~~~ + +.. code-block:: bash + + animedex season 2024 spring --limit 3 --json + # source 'anilist' failed: rate-limited (HTTP 429); continuing with other sources + # {"items":[...],"sources":{"anilist":{"backend":"anilist","status":"failed"},"jikan":{"backend":"jikan","status":"ok"}},"_meta":{"sources_consulted":["jikan"]}} + +The failure line appears on stderr, while stdout stays a valid aggregate envelope. That is intentional: the command degrades visibly instead of refusing to return the healthy source's rows. + +Notes +----- + +* ``season`` defaults to the AniList/MAL quarterly convention: winter = January-March, spring = April-June, summer = July-September, fall = October-December, and the merge path now combines likely identical AniList/Jikan rows into one item with per-backend records. +* ``schedule`` uses ``--day all`` as the seven-day window starting today in the selected timezone, defaulting to local. ``--timezone`` accepts ``local``, ``UTC``/``Z``, IANA names, fixed offsets such as ``+08:00`` or ``UTC+8``, and dateutil timezone strings such as ``CST-8``. +* The JSON envelope keeps both successful rows and per-source status entries. diff --git a/docs/source/tutorials/index.rst b/docs/source/tutorials/index.rst index 2952c27..5af7a63 100644 --- a/docs/source/tutorials/index.rst +++ b/docs/source/tutorials/index.rst @@ -28,6 +28,7 @@ Per-backend tutorials backends/shikimori ghibli quote + aggregate Cross-cutting tutorials ----------------------- diff --git a/requirements.txt b/requirements.txt index d0c65cf..80fb563 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,12 @@ click>=8 requests>=2.28 +python-dateutil>=2.9 hbutils>=0.14.0 pydantic>=2,<3 platformdirs>=3 keyring>=24 jq>=1.11 +anyascii>=0.3.3 +jaconv>=0.5.0 +unidecode>=1.4.0 +tzdata>=2025.2 diff --git a/test/agg/__init__.py b/test/agg/__init__.py new file mode 100644 index 0000000..da335e3 --- /dev/null +++ b/test/agg/__init__.py @@ -0,0 +1 @@ +"""Tests for aggregate orchestration helpers.""" diff --git a/test/agg/test_calendar.py b/test/agg/test_calendar.py new file mode 100644 index 0000000..c2b5bb5 --- /dev/null +++ b/test/agg/test_calendar.py @@ -0,0 +1,557 @@ +"""Tests for :mod:`animedex.agg.calendar` merge helpers.""" + +from __future__ import annotations + +from datetime import date, datetime, timedelta, timezone +from typing import Optional + +import pytest + +from animedex.models.aggregate import AggregateResult, AggregateSourceStatus +from animedex.models.anime import AiringScheduleRow, Anime, AnimeRating, AnimeTitle, NextAiringEpisode +from animedex.models.common import SourceTag + +pytestmark = pytest.mark.unittest + + +def _source(name: str = "test") -> SourceTag: + return SourceTag(backend=name, fetched_at=datetime(2026, 5, 11, tzinfo=timezone.utc)) + + +def _anime( + backend: str, + ident: str, + title: str, + *, + english: Optional[str] = None, + native: Optional[str] = None, + ids: Optional[dict] = None, + season_year: Optional[int] = 2024, + season: Optional[str] = "SPRING", + format: Optional[str] = "TV", + episodes: Optional[int] = 12, + aired_from: Optional[date] = date(2024, 4, 1), +) -> Anime: + return Anime( + id=ident, + title=AnimeTitle(romaji=title, english=english, native=native), + ids=ids or {}, + source=_source(backend), + season_year=season_year, + season=season, + format=format, + episodes=episodes, + aired_from=aired_from, + ) + + +def test_title_key_variants_use_multiple_transliterators(): + from animedex.agg import calendar + + japanese_keys = calendar._title_key_variants( + "\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8\u30fb\u30aa\u30f3\u30e9\u30a4\u30f3" + ) + assert "so doa to onrain" in japanese_keys + assert "sodoato onrain" in japanese_keys + + accented_keys = calendar._title_key_variants("Pok\u00e9mon") + assert "pokemon" in accented_keys + + +def test_payload_and_title_language_helpers_cover_fallbacks(): + from animedex.agg import calendar + + payload = {"id": "raw:1"} + + assert calendar._model_payload(payload) == payload + assert calendar._model_payload(payload) is not payload + assert calendar._model_payload(object()) == {} + assert calendar._language_from_title_type("Mandarin") == "chinese" + assert calendar._language_from_title_type("KO") == "korean" + + +def test_short_transliteration_keys_are_not_strong(): + from animedex.agg import calendar + + assert "8" in calendar._title_key_variants("\u602a\u7363\uff18\u53f7") + assert not calendar._is_strong_title_key("8") + assert not calendar._is_strong_title_key("no") + + +def test_season_merge_rule_matches_adjudicated_2010_2025_baseline(): + from animedex.agg import calendar + from tools.merge_eval import evaluate_rule + + assert calendar.selftest() is True + assert evaluate_rule.main(["--limit-details", "5"]) == 0 + + +def test_timezone_helpers_cover_named_offset_and_errors(monkeypatch): + from animedex.agg import calendar + from animedex.models.common import ApiError + + local_tz = timezone(timedelta(hours=-5), name="fixed-local") + monkeypatch.setattr(calendar, "_now_local", lambda: datetime(2026, 5, 11, tzinfo=local_tz)) + + assert calendar._resolve_timezone(None)[1] == "-05:00" + assert calendar._resolve_timezone("-0230")[1] == "-02:30" + assert calendar._resolve_timezone("UTC+8")[1] == "+08:00" + assert calendar._resolve_timezone("CST-8")[0].utcoffset(datetime(2026, 1, 1)).total_seconds() == 8 * 3600 + assert calendar._jikan_source_timezone(None, target_tz=timezone.utc) is timezone.utc + assert calendar._jikan_source_timezone("", target_tz=timezone.utc) is timezone.utc + assert calendar._jikan_source_timezone("No/Such_Zone", target_tz=timezone.utc) is timezone.utc + assert isinstance(calendar._now_local(), datetime) + + with pytest.raises(ApiError): + calendar._resolve_timezone("+24:00") + with pytest.raises(ApiError): + calendar._resolve_timezone("No/Such_Zone") + + +def test_jikan_source_timezone_falls_back_when_zoneinfo_data_is_missing(monkeypatch): + from animedex.agg import calendar + + def missing_timezone(_name): + raise ValueError("missing") + + monkeypatch.setattr(calendar, "parse_timezone", missing_timezone) + + out = calendar._jikan_source_timezone("JST", target_tz=timezone.utc) + + assert out.utcoffset(datetime(2026, 5, 11)).total_seconds() == 9 * 3600 + + +def test_date_window_and_schedule_filters_cover_relative_days(): + from animedex.agg import calendar + + base = date(2026, 5, 11) + assert calendar._date_window("all", today=base) == (base, date(2026, 5, 18)) + assert calendar._date_window("today", today=base) == (base, date(2026, 5, 12)) + assert calendar._date_window("tomorrow", today=base) == (date(2026, 5, 12), date(2026, 5, 13)) + assert calendar._jikan_filters_for_day("all", today=base) == (None,) + + +def test_schedule_handles_empty_jikan_filter_set(monkeypatch): + from animedex.agg import calendar + + monkeypatch.setattr(calendar, "_jikan_filters_for_day", lambda _day, *, today: ()) + + out = calendar.schedule(day="today", source="jikan", timezone_name="UTC") + + assert out.items == [] + assert out.sources["jikan"].items == 0 + + +def test_argument_normalizers_reject_unknown_values(): + from animedex.agg import calendar + from animedex.models.common import ApiError + + with pytest.raises(ApiError): + calendar._normalise_season("monsoon") + with pytest.raises(ApiError): + calendar._normalise_day("noday") + with pytest.raises(ApiError): + calendar._select_sources("jikan,unknown") + + +def test_jikan_schedule_row_uses_jst_timezone_data(): + from animedex.agg import calendar + from animedex.backends.jikan.models import JikanGenericRow + + row = JikanGenericRow.model_validate( + { + "title": "Shin Nippon History", + "broadcast": {"day": "Mondays", "time": "01:00", "timezone": "Asia/Tokyo"}, + } + ) + + out = calendar._jikan_schedule_row(row, _source("jikan"), start=date(2026, 5, 11), target_tz=timezone.utc) + + assert out.weekday == "sunday" + assert out.local_time == "16:00" + assert out.airing_at == datetime(2026, 5, 10, 16, 0, tzinfo=timezone.utc) + assert out.details["backend"] == "jikan" + assert out.details["broadcast_timezone"] == "Asia/Tokyo" + + +def test_jikan_schedule_row_without_conversion_keeps_broadcast_fields(): + from animedex.agg import calendar + from animedex.backends.jikan.models import JikanGenericRow + + row = JikanGenericRow.model_validate({"name": "Fallback Name", "broadcast": {"day": "Mondays", "time": "01:00"}}) + + out = calendar._jikan_schedule_row(row, _source("jikan")) + + assert out.title == "Fallback Name" + assert out.weekday == "monday" + assert out.local_time == "01:00" + assert out.airing_at is None + assert out.details["backend"] == "jikan" + + +def test_parse_clock_rejects_non_clock_values(): + from animedex.agg import calendar + + assert calendar._parse_clock(None) is None + assert calendar._parse_clock("bad") is None + + +def test_raw_source_detail_helpers_cover_edge_and_empty_shapes(): + from animedex.agg import calendar + + class Named: + def __init__(self, name, rank=None): + self.name = name + self.rank = rank + + class Edge: + def __init__(self, node): + self.node = node + + class Connection: + edges = [Edge(Named("Edge Studio"))] + + class Raw: + tags = [Named("", 1), Named("Magic", 80)] + studios = [Named("Direct Studio")] + + class EdgeRaw: + studios = Connection() + + record = _anime( + "anilist", + "anilist:adult", + "Adult Title", + ids={"anilist": "adult"}, + ).model_copy( + update={ + "genres": ["Drama"], + "tags": ["Slow Burn"], + "is_adult": True, + "score": AnimeRating(score=81.0, scale=100.0), + "next_airing_episode": NextAiringEpisode( + episode=4, + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + time_until_airing_seconds=3600, + ), + } + ) + + details = calendar._anime_source_details(record, Raw()) + + assert calendar._raw_tag_details(Raw()) == [{"name": "Magic", "rank": 80}] + assert calendar._raw_studio_names(Raw()) == ["Direct Studio"] + assert calendar._raw_studio_names(EdgeRaw()) == ["Edge Studio"] + assert "adult" in details["type_tags"] + assert details["next_airing_episode"]["episode"] == 4 + + +def test_jikan_and_anilist_detail_helpers_keep_source_specific_tags(): + from animedex.agg import calendar + + class Named: + def __init__(self, name): + self.name = name + + class JikanRow: + type = "TV" + status = "Currently Airing" + source = "Manga" + rating = "PG-13" + season = "spring" + genres = [Named("Action")] + explicit_genres = [] + themes = [Named("School")] + demographics = [Named("Shounen")] + + media = { + "type": "ANIME", + "format": "TV", + "status": "RELEASING", + "season": "SPRING", + "source": "MANGA", + "genres": ["Action"], + "tags": [{"name": "School", "rank": 80}, "bad-tag"], + "isAdult": True, + "studios": {"edges": [{"node": {"name": "Studio A"}}, {"node": {}}]}, + } + + assert {"Action", "School", "Shounen"} <= set(calendar._jikan_row_type_tags(JikanRow())) + assert calendar._media_studio_names(media) == ["Studio A"] + assert {"Action", "School", "adult"} <= set(calendar._anilist_media_type_tags(media)) + + enriched = calendar._anilist_schedule_details_from_payload({"media": media}, {"media_id": 1}) + + assert enriched["studios"] == ["Studio A"] + assert "adult" in enriched["type_tags"] + + +def test_item_datetime_covers_epoch_weekday_and_bad_time(): + from animedex.agg import calendar + + class DirectEpoch: + airingAt = 1778457600 + + weekday_row = AiringScheduleRow(title="Weekday", weekday="monday", local_time="01:02", source=_source()) + bad_row = AiringScheduleRow(title="Bad", weekday="monday", local_time="bad", source=_source()) + + assert calendar._item_datetime(DirectEpoch(), start=date(2026, 5, 11), tz=timezone.utc) == datetime( + 2026, 5, 11, 0, 0, tzinfo=timezone.utc + ) + assert calendar._item_datetime(weekday_row, start=date(2026, 5, 11), tz=timezone.utc) == datetime( + 2026, 5, 11, 1, 2, tzinfo=timezone.utc + ) + assert calendar._item_datetime(bad_row, start=date(2026, 5, 11), tz=timezone.utc) == datetime( + 2026, 5, 11, 23, 59, tzinfo=timezone.utc + ) + assert calendar._item_airing_key(object(), start=date(2026, 5, 11), tz=timezone.utc)[0] == 2**63 - 1 + + +def test_filter_schedule_window_preserves_failed_source_status(): + from animedex.agg import calendar + + row = AiringScheduleRow( + title="Outside", + airing_at=datetime(2026, 5, 12, tzinfo=timezone.utc), + source=_source("jikan"), + ) + failed = AggregateSourceStatus(backend="anilist", status="failed", reason="upstream-error") + result = AggregateResult( + items=[row], + sources={"jikan": AggregateSourceStatus(backend="jikan", status="ok", items=1), "anilist": failed}, + ) + + filtered = calendar._filter_schedule_window( + result, + start=date(2026, 5, 11), + end=date(2026, 5, 12), + tz=timezone.utc, + ) + + assert filtered.items == [] + assert filtered.sources["jikan"].items == 0 + assert filtered.sources["anilist"] is failed + + +def test_to_common_anime_handles_failures_and_non_anime(): + from animedex.agg import calendar + + class BrokenRich: + id = "broken:1" + source_tag = _source("broken") + + def to_common(self): + raise ValueError("bad mapper") + + class NonAnimeRich: + def to_common(self): + return object() + + assert calendar._to_common_anime(_anime("anilist", "anilist:1", "Title")) is not None + assert calendar._to_common_anime(BrokenRich()) is None + assert calendar._to_common_anime(NonAnimeRich()) is None + + +def test_merge_season_items_reports_to_common_failures(): + from animedex.agg import calendar + + class BrokenRich: + id = "broken:1" + source_tag = _source("broken") + + def to_common(self): + raise KeyError("bad mapper") + + result = AggregateResult(items=[BrokenRich()]) + + merged = calendar._merge_season_items(result) + + assert len(merged.items) == 1 + assert len(merged.merge_diagnostics) == 1 + assert merged.merge_diagnostics[0]["backend"] == "broken" + assert merged.merge_diagnostics[0]["id"] == "broken:1" + assert merged.merge_diagnostics[0]["reason"] == "to-common-failed" + assert "KeyError" in merged.merge_diagnostics[0]["message"] + + +def test_schedule_projection_converts_rich_rows_to_common_rows(): + from animedex.agg import calendar + from animedex.backends.anilist.models import AnilistAiringSchedule + + rich = AnilistAiringSchedule( + id=99, + airingAt=1778457600, + episode=7, + timeUntilAiring=300, + media_id=123, + media_title_romaji="Projected", + source_tag=_source("anilist"), + ) + result = AggregateResult(items=[rich]) + + projected = calendar._project_schedule_items(result, target_tz=timezone(timedelta(hours=8))) + + row = projected.items[0] + assert isinstance(row, AiringScheduleRow) + assert row.title == "Projected" + assert row.airing_at == datetime(2026, 5, 11, 8, 0, tzinfo=timezone(timedelta(hours=8))) + assert row.details["backend"] == "anilist" + assert row.details["media_id"] == 123 + + +def test_schedule_projection_keeps_passthrough_items_and_drops_bad_common_rows(): + from animedex.agg import calendar + + class BrokenRich: + def to_common(self): + raise RuntimeError("bad mapper") + + class NonScheduleRich: + def to_common(self): + return object() + + passthrough = object() + result = AggregateResult(items=[BrokenRich(), NonScheduleRich(), passthrough]) + + assert calendar._to_common_schedule_row(BrokenRich()) is None + assert calendar._to_common_schedule_row(NonScheduleRich()) is None + + projected = calendar._project_schedule_items(result, target_tz=timezone.utc) + + assert projected.items == result.items + + +def test_title_and_context_scoring_cover_role_branches(): + from animedex.agg import calendar + + left = _anime("anilist", "anilist:1", "Romaji", english="Shared English", native="\u5171\u901a") + right = _anime("jikan", "jikan:1", "Different", english="Shared English", native="\u5171\u901a") + fuzzy = _anime("jikan", "jikan:2", "Romaji!") + old = _anime("jikan", "jikan:3", "Romaji", aired_from=date(2025, 1, 1)) + no_id = _anime("jikan", "plain-id", "Other", ids={"mal": "1"}) + with_id = _anime("anilist", "anilist:9", "Other", ids={"mal": "1"}) + conflicting_id = _anime("jikan", "jikan:10", "Other", ids={"mal": "2"}) + synonym = _anime("jikan", "jikan:11", "Shared Nickname") + synonym_source = _anime("anilist", "anilist:11", "Official Title").model_copy( + update={"title_synonyms": ["Shared Nickname"]} + ) + fuzzy_92 = _anime("jikan", "jikan:12", "abcdefghijklmnopqrsu") + fuzzy_92_source = _anime("anilist", "anilist:12", "abcdefghijklmnopqrst") + episode_mismatch = _anime("jikan", "jikan:13", "Romaji", episodes=20) + + assert calendar._anime_title_keys(left) + assert calendar._title_match_score(left, right) >= 50 + assert calendar._title_match_score(left, fuzzy) >= 45 + assert calendar._title_match_score(synonym_source, synonym) >= 35 + assert calendar._title_match_score(fuzzy_92_source, fuzzy_92) >= 35 + assert calendar._context_match_score(left, old) < calendar._context_match_score(left, fuzzy) + assert calendar._context_match_score(left, episode_mismatch) < calendar._context_match_score(left, fuzzy) + assert calendar._anime_match_score(with_id, no_id) == 1000 + assert calendar._anime_match_score(with_id, conflicting_id) == 0 + assert calendar._anime_match_score(left, fuzzy) >= 70 + assert ( + calendar._external_id_conflicts( + with_id.model_copy(update={"ids": {"mal": None}}), + no_id, + ) + == [] + ) + assert "jikan" in calendar._merge_group({"jikan": no_id}).ids + + +def test_merge_season_items_splits_external_id_conflicts(): + from animedex.agg import calendar + + anilist = _anime("anilist", "anilist:1", "Shared Title", ids={"mal": "1"}) + jikan = _anime("jikan", "jikan:2", "Shared Title", ids={"mal": "2"}) + result = AggregateResult(items=[anilist, jikan]) + + merged = calendar._merge_season_items(result) + + assert len(merged.items) == 2 + assert [item.ids["mal"] for item in merged.items] == ["1", "2"] + assert [{source.backend for source in item.sources} for item in merged.items] == [{"anilist"}, {"jikan"}] + + +def test_merge_season_items_reports_internal_id_conflicts_without_traceback(): + from animedex.agg import calendar + + inconsistent = _anime("anilist", "anilist:154587", "Inconsistent", ids={"anilist": "999"}) + result = AggregateResult(items=[inconsistent]) + + merged = calendar._merge_season_items(result) + + assert len(merged.items) == 1 + assert merged.items[0].ids["anilist"] == "999" + assert merged.items[0].id_conflicts == [ + { + "key": "anilist", + "kept_value": "999", + "conflicting_value": "154587", + "backend": "anilist", + "source": "record.id", + } + ] + assert merged.merge_diagnostics == [ + { + "backend": "anilist", + "id": "anilist:154587", + "reason": "external-id-conflict", + "message": "conflicting external id for 'anilist': '999' != '154587'", + "conflicts": merged.items[0].id_conflicts, + } + ] + + +def test_merge_season_items_keeps_passthrough_items(): + from animedex.agg import calendar + + anilist = _anime("anilist", "anilist:1", "Shared", ids={"mal": "1"}) + jikan = _anime("jikan", "jikan:1", "Shared", ids={"mal": "1"}) + passthrough = object() + result = AggregateResult(items=[anilist, jikan, passthrough]) + + merged = calendar._merge_season_items(result) + + assert len(merged.items) == 2 + assert merged.items[0].ids["mal"] == "1" + assert merged.items[0].source_details["anilist"]["title"] == "Shared" + assert merged.items[0].source_details["jikan"]["format"] == "TV" + assert merged.items[1] is passthrough + + +def test_merged_detail_helpers_keep_multilingual_and_conflict_guards(): + from animedex.agg import calendar + + title = AnimeTitle(romaji="Merged", english="Merged English", native="\u7d71\u5408") + details = { + "bad": {"titles": "not-a-dict"}, + "anilist": { + "titles": { + "typed": ["bad-entry", {"type": "Korean", "title": "\ud1b5\ud569"}], + "by_language": {"chinese": ["\u6574\u5408"]}, + }, + "genres": ["Action", "Fantasy"], + }, + "jikan": {"genres": ["Drama"]}, + } + sparse = _anime("anilist", "anilist:sparse", "Sparse").model_copy(update={"ids": {"mal": None, "empty": ""}}) + left = _anime("anilist", "anilist:1", "Conflict", ids={"mal": "1"}) + right = _anime("jikan", "jikan:2", "Conflict", ids={"mal": "2"}) + + titles = calendar._merged_title_details(title, details) + + assert titles["by_language"]["korean"] == ["\ud1b5\ud569"] + assert titles["by_language"]["chinese"] == ["\u6574\u5408"] + assert calendar._collect_unique_field(details, "genres", limit=2) == ["Action", "Fantasy"] + assert "mal" not in calendar._merge_group({"anilist": sparse}).ids + merged = calendar._merge_group({"anilist": left, "jikan": right}) + assert merged.id_conflicts == [ + { + "key": "mal", + "kept_value": "1", + "conflicting_value": "2", + "backend": "jikan", + "source": "record.ids", + } + ] diff --git a/test/agg/test_fanout.py b/test/agg/test_fanout.py new file mode 100644 index 0000000..87425c1 --- /dev/null +++ b/test/agg/test_fanout.py @@ -0,0 +1,65 @@ +"""Unit tests for aggregate fan-out helper branches.""" + +from __future__ import annotations + +import pytest + + +pytestmark = pytest.mark.unittest + + +class TestFanoutBranches: + def test_normalises_none_tuple_dict_and_rows_object(self): + from animedex.agg._fanout import _normalise_items + from animedex.models.common import ApiError + + class Rows: + rows = [1, 2] + + assert _normalise_items(None) == [] + assert _normalise_items((1, 2)) == [1, 2] + assert _normalise_items({"items": [3, 4]}) == [3, 4] + assert _normalise_items({"data": (5, 6)}) == [5, 6] + assert _normalise_items(Rows()) == [1, 2] + with pytest.raises(ApiError) as err: + _normalise_items({"meta": {"total": 2}}) + assert err.value.reason == "upstream-shape" + with pytest.raises(ApiError) as err: + _normalise_items("x") + assert err.value.reason == "upstream-shape" + assert "unsupported shape: str" in err.value.message + + def test_http_status_requires_status_context(self): + from animedex.agg._fanout import _http_status_from_message + + assert _http_status_from_message("boom") is None + assert _http_status_from_message("limit=200 reached") is None + assert _http_status_from_message("per_page=400 rejected") is None + assert _http_status_from_message("season 2024 spring") is None + assert _http_status_from_message("mangadex auth returned 401: Invalid") == 401 + assert _http_status_from_message("HTTP 429 too many requests") == 429 + assert _http_status_from_message("HTTP/1.1 503 Service Unavailable") == 503 + assert _http_status_from_message("AniList 429") == 429 + assert _http_status_from_message("Jikan 404 on /v4/anime/99999999") == 404 + assert _http_status_from_message("status code=500") == 500 + assert _http_status_from_message("response 403 from upstream") == 403 + + def test_plain_exception_becomes_failed_status(self): + from animedex.agg._fanout import _status_from_exception + + status = _status_from_exception("jikan", RuntimeError("boom"), 1.0) + assert status.backend == "jikan" + assert status.reason == "upstream-error" + assert "RuntimeError" in status.message + + def test_empty_source_list_returns_empty_result(self): + from animedex.agg._fanout import run_fanout + + result = run_fanout([]) + assert result.items == [] + assert result.sources == {} + + def test_selftest_runs(self): + import animedex.agg._fanout as fanout + + assert fanout.selftest() is True diff --git a/test/backends/anilist/test_python_api.py b/test/backends/anilist/test_python_api.py index 76bbd91..1a77645 100644 --- a/test/backends/anilist/test_python_api.py +++ b/test/backends/anilist/test_python_api.py @@ -9,6 +9,7 @@ from __future__ import annotations +import json from datetime import datetime, timezone from pathlib import Path from typing import Any, Callable, List, Tuple @@ -19,6 +20,7 @@ from animedex.backends import anilist as anilist_api from animedex.backends.anilist.models import ( + AnilistAiringSchedule, AnilistAnime, AnilistCharacter, AnilistGenreCollection, @@ -27,6 +29,7 @@ AnilistStudio, AnilistUser, ) +from animedex.models.common import SourceTag pytestmark = pytest.mark.unittest @@ -245,6 +248,44 @@ def test_anilist_api_round_trip(fixture_rel, fn, args, kwargs, expected, fake_cl assert isinstance(result, expected) +class TestAiringScheduleProjection: + def test_omits_unset_optional_filters_from_graphql_variables(self, fake_clock): + fixture = _load_fixture("longtail/03-airing-schedule-not-yet-aired.yaml") + with responses.RequestsMock() as rsps: + _register(rsps, fixture) + result = anilist_api.airing_schedule( + airing_at_greater=1778515200, + airing_at_lesser=1779120000, + per_page=5, + no_cache=True, + ) + sent = json.loads(rsps.calls[0].request.body.decode("utf-8")) + + assert isinstance(result, list) + assert sent["variables"] == { + "airingAtGreater": 1778515200, + "airingAtLesser": 1779120000, + "perPage": 5, + } + + def test_to_common_projects_to_airing_schedule_row(self): + row = AnilistAiringSchedule( + id=1, + airingAt=1778457600, + episode=3, + timeUntilAiring=0, + media_id=154587, + media_title_romaji="Sousou no Frieren", + source_tag=SourceTag(backend="anilist", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + + common = row.to_common() + + assert common.title == "Sousou no Frieren" + assert common.episode == 3 + assert common.source.backend == "anilist" + + # ---------- Auth-required stubs ---------- diff --git a/test/backends/jikan/test_python_api.py b/test/backends/jikan/test_python_api.py index f630bca..ea0f2cf 100644 --- a/test/backends/jikan/test_python_api.py +++ b/test/backends/jikan/test_python_api.py @@ -270,6 +270,20 @@ def test_404_raises_not_found(self, fake_clock): jikan_api.show(999999999, no_cache=True) assert exc_info.value.reason == "not-found" + def test_429_raises_rate_limited(self, fake_clock): + from animedex.models.common import ApiError + + with responses.RequestsMock() as rsps: + rsps.add( + responses.GET, + "https://api.jikan.moe/v4/anime/52991/full", + json={"status": 429, "type": "RateLimitException", "message": "Too many requests"}, + status=429, + ) + with pytest.raises(ApiError) as exc_info: + jikan_api.show(52991, no_cache=True) + assert exc_info.value.reason == "rate-limited" + def test_5xx_raises_upstream_error(self, fake_clock): from animedex.models.common import ApiError diff --git a/test/diag/test_selftest.py b/test/diag/test_selftest.py index c759aa7..0838e54 100644 --- a/test/diag/test_selftest.py +++ b/test/diag/test_selftest.py @@ -22,6 +22,7 @@ def test_report_has_expected_sections(self): assert "Environment" in report assert "Package" in report assert "Build info" in report + assert "Runtime dependency checks" in report assert "Module smoke tests" in report assert "CLI subcommands" in report assert "Summary" in report @@ -348,7 +349,7 @@ def test_pre_existing_path_is_removed(self, tmp_path, monkeypatch): @pytest.mark.unittest class TestSelftestRegistryCompleteness: - """Per review M4 + AGENTS §9.3: every module that defines a + """Per review M4 + AGENTS section 9.3: every module that defines a top-level :func:`selftest` callable must be registered in :data:`animedex.diag.selftest._SELFTEST_TARGETS`. Otherwise the runner never executes the smoke test, defeating the entire point @@ -390,5 +391,53 @@ def test_every_selftest_bearing_module_is_registered(self): assert not unregistered, ( "These modules expose a top-level selftest() but are not in " f"animedex.diag.selftest._SELFTEST_TARGETS: {sorted(unregistered)}. " - "Add each one to the tuple per AGENTS §9.3." + "Add each one to the tuple per AGENTS section 9.3." ) + + def test_every_runtime_requirement_has_dependency_check_row(self): + """Every direct runtime dependency must have its own selftest row.""" + import re + from pathlib import Path + + from animedex.diag import selftest as diag + + repo_root = Path(__file__).resolve().parents[2] + requirements = repo_root / "requirements.txt" + missing = [] + + actual_packages = [name for name, smoke in diag._DEPENDENCY_SMOKE_TESTS] + assert all(callable(smoke) for _name, smoke in diag._DEPENDENCY_SMOKE_TESTS) + + expected_packages = [] + for line in requirements.read_text(encoding="utf-8").splitlines(): + text = line.strip() + if not text or text.startswith("#"): + continue + match = re.match(r"([A-Za-z0-9_.-]+)", text) + if match is None: + continue + package = match.group(1).replace("-", "_").replace(".", "_") + expected_packages.append(package) + + assert actual_packages == expected_packages + + labels = {label for label, _ok, _detail in diag._check_dependency_smoke()} + for package in expected_packages: + label = f"testing {package} library" + if label not in labels: + missing.append(label) + + assert not missing, f"runtime dependencies without dedicated selftest rows: {missing}" + + def test_dependency_smoke_reports_individual_failures(self, monkeypatch): + from animedex.diag import selftest as diag + + def broken_smoke(): + raise RuntimeError("dependency unavailable") + + monkeypatch.setattr(diag, "_DEPENDENCY_SMOKE_TESTS", (("brokenlib", broken_smoke),)) + + label, ok, detail = diag._check_dependency_smoke()[0] + assert label == "testing brokenlib library" + assert ok is False + assert "dependency unavailable" in detail diff --git a/test/entry/test_aggregate_calendar.py b/test/entry/test_aggregate_calendar.py new file mode 100644 index 0000000..c1e4e4d --- /dev/null +++ b/test/entry/test_aggregate_calendar.py @@ -0,0 +1,617 @@ +"""Fixture-driven tests for top-level calendar aggregate commands.""" + +from __future__ import annotations + +import json +from datetime import datetime, timezone +from pathlib import Path + +import pytest +import responses +import yaml +import click +from click.testing import CliRunner + +from animedex.backends.anilist._queries import Q_AIRING_SCHEDULE, Q_SCHEDULE +from test.api._fixture_replay import register_fixture_with_responses + + +pytestmark = pytest.mark.unittest + +FIXTURES = Path("test/fixtures") + + +@pytest.fixture +def cli(): + from animedex.entry import animedex_cli + + return animedex_cli + + +@pytest.fixture +def runner(): + return CliRunner() + + +@pytest.fixture +def fake_clock(monkeypatch): + state = {"rl_now": 0.0, "cache_now": datetime(2026, 5, 7, tzinfo=timezone.utc)} + monkeypatch.setattr("animedex.transport.ratelimit._monotonic", lambda: state["rl_now"]) + monkeypatch.setattr("animedex.transport.ratelimit._sleep", lambda s: state.update({"rl_now": state["rl_now"] + s})) + monkeypatch.setattr("animedex.cache.sqlite._utcnow", lambda: state["cache_now"]) + return state + + +@pytest.fixture +def force_tty(monkeypatch): + import animedex.entry.aggregate as aggregate_entry + + monkeypatch.setattr(aggregate_entry, "_is_terminal", lambda stream: True) + + +def _load(rel_path: str) -> dict: + return yaml.safe_load((FIXTURES / rel_path).read_text(encoding="utf-8")) + + +def _fixture_with_request(rel_path: str, *, variables: dict | None = None, url: str | None = None) -> dict: + fixture = _load(rel_path) + if variables is not None: + fixture["request"]["json_body"]["variables"] = variables + if url is not None: + fixture["request"]["url"] = url + return fixture + + +def _stdout(result) -> str: + return result.stdout if hasattr(result, "stdout") else result.output + + +def _stderr(result) -> str: + try: + stderr = result.stderr + except (AttributeError, ValueError): + return result.output + return stderr or result.output + + +def _json_payload(result) -> dict: + """Parse the JSON envelope even when older Click mixes stderr into output.""" + for line in reversed(_stdout(result).splitlines()): + if line.startswith("{"): + return json.loads(line) + raise AssertionError(f"no JSON object found in output: {_stdout(result)!r}") + + +def _request_json_body(request) -> dict: + body = request.body + if isinstance(body, bytes): + body = body.decode("utf-8") + if body is None: + raise AssertionError(f"request has no JSON body: {request.method} {request.url}") + return json.loads(body) + + +def _anilist_graphql_requests(rsps) -> list[dict]: + return [ + _request_json_body(call.request) + for call in rsps.calls + if call.request.method == "POST" and call.request.url == "https://graphql.anilist.co/" + ] + + +def _register(rsps, *fixtures): + for fixture in fixtures: + register_fixture_with_responses(rsps, fixture) + + +def _anilist_season(limit: int = 3) -> dict: + fixture = _fixture_with_request( + "anilist/season_matrix/58-2024-spring.yaml", + variables={"year": 2024, "season": "SPRING", "perPage": limit}, + ) + fixture["request"]["json_body"]["query"] = Q_SCHEDULE + fixture["response"]["body_json"]["data"]["Page"]["media"] = fixture["response"]["body_json"]["data"]["Page"][ + "media" + ][:limit] + return fixture + + +def _jikan_season(limit: int = 3) -> dict: + fixture = _fixture_with_request( + "jikan/season_matrix/58-2024-spring.yaml", + url=f"https://api.jikan.moe/v4/seasons/2024/spring?limit={limit}", + ) + fixture["response"]["body_json"]["data"] = fixture["response"]["body_json"]["data"][:limit] + items = fixture["response"]["body_json"].get("pagination", {}).get("items") + if isinstance(items, dict): + items["count"] = limit + items["per_page"] = limit + return fixture + + +def _anilist_schedule( + limit: int = 5, + *, + airing_at_greater: int = 1778457600, + airing_at_lesser: int = 1778544000, +) -> dict: + fixture = _load("anilist/longtail/03-airing-schedule-not-yet-aired.yaml") + fixture["request"]["json_body"] = { + "query": Q_AIRING_SCHEDULE, + "variables": { + "airingAtGreater": airing_at_greater, + "airingAtLesser": airing_at_lesser, + "perPage": limit, + }, + } + for row in fixture["response"]["body_json"]["data"]["Page"]["airingSchedules"]: + row.setdefault("timeUntilAiring", 0) + return fixture + + +def _jikan_schedule(limit: int = 5) -> dict: + return _fixture_with_request( + "jikan/schedules/01-schedule-monday.yaml", + url=f"https://api.jikan.moe/v4/schedules?filter=monday&limit={limit}", + ) + + +def _jikan_schedule_day(day: str, limit: int = 5) -> dict: + fixtures = { + "sunday": "jikan/schedules/03-schedule-sunday.yaml", + "monday": "jikan/schedules/01-schedule-monday.yaml", + "tuesday": "jikan/schedules/04-schedule-tuesday.yaml", + "wednesday": "jikan/schedules/05-schedule-wednesday.yaml", + "thursday": "jikan/schedules/06-schedule-thursday.yaml", + "friday": "jikan/schedules/02-schedule-friday.yaml", + } + return _fixture_with_request( + fixtures[day], + url=f"https://api.jikan.moe/v4/schedules?filter={day}&limit={limit}", + ) + + +def _synthetic_failure(fixture: dict, *, status: int, body: dict, label: str) -> dict: + out = json.loads(json.dumps(fixture)) + out["metadata"]["label"] = label + out["response"]["status"] = status + out["response"]["captured_from"] = f"synthetic-{status}" + out["response"]["headers"] = {"Content-Type": "application/json"} + out["response"]["body_json"] = body + out["response"]["body_text"] = None + out["response"]["body_b64"] = None + return out + + +def _augment_anilist_season_fixture(fixture: dict) -> dict: + media = fixture["response"]["body_json"]["data"]["Page"]["media"] + if media: + media[0].update( + { + "synonyms": ["Monster #8", "8Kaijuu", "KAIJU No. EIGHT", "Kaiju N°8", "괴수 8호"], + "type": "TV", + "duration": 23, + "genres": ["Action", "Sci-Fi"], + "tags": [{"name": "Military", "rank": 90}, {"name": "Monsters", "rank": 75}], + "popularity": 321, + "favourites": 6638, + "trending": 2, + "isAdult": False, + "countryOfOrigin": "JP", + "source": "Manga", + "description": "After the destruction of their hometown...", + "coverImage": {"large": "https://example.invalid/kaiju.jpg"}, + "bannerImage": "https://example.invalid/banner.jpg", + "trailer": {"id": "abc123", "site": "youtube", "thumbnail": "https://example.invalid/thumb.jpg"}, + "studios": {"edges": [{"node": {"name": "Production I.G", "isAnimationStudio": True}, "isMain": True}]}, + "externalLinks": [{"site": "Crunchyroll", "type": "STREAMING", "url": "https://crunchyroll.com/kaiju"}], + "streamingEpisodes": [{"site": "Crunchyroll", "title": "Ep 1", "url": "https://crunchyroll.com/ep1"}], + } + ) + return fixture + + +def test_season_json_aggregates_two_sources(runner, cli, fake_clock): + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, _augment_anilist_season_fixture(_anilist_season(limit=25)), _jikan_season(limit=25)) + result = runner.invoke(cli, ["season", "2024", "spring", "--limit", "25", "--json", "--no-cache"]) + + assert result.exit_code == 0, result.output + payload = _json_payload(result) + assert set(payload["sources"]) == {"anilist", "jikan"} + assert payload["sources"]["anilist"]["status"] == "ok" + assert payload["sources"]["jikan"]["items"] == 25 + assert len(payload["items"]) == 26 + merged = [item for item in payload["items"] if set(item.get("records", {})) == {"anilist", "jikan"}] + assert len(merged) == 24 + assert payload["items"][0]["title"]["romaji"] == "Kaijuu 8-gou" + assert payload["items"][0]["ids"]["mal"] == "52588" + assert payload["items"][0]["source_details"]["anilist"]["titles"]["by_language"]["korean"] == ["괴수 8호"] + assert payload["items"][0]["source_details"]["anilist"]["type_tags"][0] == "TV" + assert payload["items"][0]["source_details"]["anilist"]["score"]["score"] == 81.0 + assert payload["items"][0]["source_details"]["jikan"]["score"]["score"] == 8.21 + assert payload["items"][0]["source_details"]["jikan"]["studios"] == ["Production I.G"] + assert payload["items"][0]["source_details"]["jikan"]["titles"]["by_language"]["japanese"] == ["怪獣8号"] + assert "Manga" in payload["items"][0]["source_details"]["jikan"]["type_tags"] + assert payload["items"][0]["source_payloads"]["jikan"]["title_japanese"] == "怪獣8号" + assert payload["items"][0]["source_payloads"]["anilist"]["synonyms"][-1] == "괴수 8호" + assert payload["items"][0]["core"]["titles"]["by_language"]["korean"] == ["괴수 8호"] + assert payload["items"][0]["core"]["scores"]["by_source"]["anilist"]["score"] == 81.0 + assert payload["_meta"]["sources_consulted"] == ["anilist", "jikan"] + + +def test_season_tty_renders_merged_sources(runner, cli, fake_clock, force_tty): + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, _augment_anilist_season_fixture(_anilist_season()), _jikan_season()) + result = runner.invoke(cli, ["season", "2024", "spring", "--limit", "3", "--no-cache"]) + + assert result.exit_code == 0, result.output + assert "Kaijuu 8-gou [src: anilist+jikan]" in result.output + assert "Names:" in result.output + assert "English: Kaiju No. 8" in result.output + assert "Japanese:" in result.output + assert "Korean:" in result.output + assert "IDs:" in result.output + assert "AniList: 153288" in result.output + assert "MAL: 52588" in result.output + assert "Jikan: 52588" in result.output + assert "Scores:" in result.output + assert "Anilist:" in result.output + assert "81.0/100.0" in result.output + assert "Jikan:" in result.output + assert "8.21/10.0" in result.output + assert "Genres:" in result.output + assert not result.output.lstrip().startswith("{") + + +def test_season_source_allowlist_only_calls_jikan(runner, cli, fake_clock): + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, _jikan_season()) + result = runner.invoke( + cli, ["season", "2024", "spring", "--source", "jikan", "--limit", "3", "--json", "--no-cache"] + ) + + assert result.exit_code == 0, result.output + payload = _json_payload(result) + assert set(payload["sources"]) == {"jikan"} + assert payload["sources"]["jikan"]["items"] == 3 + + +def test_schedule_json_aggregates_and_projects_rows(runner, cli, fake_clock, monkeypatch): + import animedex.agg.calendar as calendar + + monkeypatch.setattr(calendar, "_now_local", lambda: datetime(2026, 5, 7, tzinfo=timezone.utc)) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register( + rsps, + _anilist_schedule(airing_at_greater=1778112000, airing_at_lesser=1778198400), + _jikan_schedule_day("wednesday"), + _jikan_schedule_day("thursday"), + _jikan_schedule_day("friday"), + ) + result = runner.invoke(cli, ["schedule", "--day", "thursday", "--limit", "5", "--json", "--no-cache"]) + anilist_requests = _anilist_graphql_requests(rsps) + + assert result.exit_code == 0, result.output + assert len(anilist_requests) == 1 + anilist_request = anilist_requests[0] + payload = _json_payload(result) + assert set(payload["sources"]) == {"anilist", "jikan"} + assert payload["sources"]["anilist"]["items"] == 5 + assert payload["sources"]["jikan"]["items"] == 3 + assert anilist_request["variables"] == { + "airingAtGreater": 1778112000, + "airingAtLesser": 1778198400, + "perPage": 5, + } + assert payload["timezone"] == "UTC" + assert payload["window_start"] == "2026-05-07" + assert payload["window_end"] == "2026-05-08" + anilist_row = next(item for item in payload["items"] if item["source"]["backend"] == "anilist") + assert anilist_row["title"] == "Kirio Fanclub" + assert anilist_row["details"]["backend"] == "anilist" + assert anilist_row["details"]["media_id"] == 181284 + assert anilist_row["core"]["title"] == "Kirio Fanclub" + assert anilist_row["source_payload"]["media"]["id"] == 181284 + + +def test_schedule_timezone_converts_jikan_rows(runner, cli, fake_clock, monkeypatch): + import animedex.agg.calendar as calendar + + monkeypatch.setattr(calendar, "_now_local", lambda: datetime(2026, 5, 11, tzinfo=timezone.utc)) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register( + rsps, + _jikan_schedule_day("sunday"), + _jikan_schedule_day("monday"), + _jikan_schedule_day("tuesday"), + ) + result = runner.invoke( + cli, + [ + "schedule", + "--day", + "monday", + "--source", + "jikan", + "--timezone", + "+08:00", + "--limit", + "5", + "--json", + "--no-cache", + ], + ) + + assert result.exit_code == 0, result.output + payload = _json_payload(result) + first = next(item for item in payload["items"] if item["title"] == "Shin Nippon History") + assert payload["timezone"] == "+08:00" + assert payload["sources"]["jikan"]["items"] == 4 + assert "Ghost Concert: Missing Songs" not in {item["title"] for item in payload["items"]} + assert first["weekday"] == "monday" + assert first["local_time"] == "00:00" + assert first["airing_at"] == "2026-05-11T00:00:00+08:00" + assert first["details"]["backend"] == "jikan" + assert first["details"]["source_material"] == "Original" + assert first["details"]["broadcast_timezone"] == "Asia/Tokyo" + assert first["details"]["titles"]["by_language"]["japanese"] == ["新ニッポンヒストリー"] + assert first["source_payload"]["title_japanese"] == "新ニッポンヒストリー" + + +def test_schedule_tty_renders_source_markers(runner, cli, fake_clock, force_tty, monkeypatch): + import animedex.agg.calendar as calendar + + monkeypatch.setattr(calendar, "_now_local", lambda: datetime(2026, 5, 11, tzinfo=timezone.utc)) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register( + rsps, + _jikan_schedule_day("sunday"), + _jikan_schedule_day("monday"), + _jikan_schedule_day("tuesday"), + ) + result = runner.invoke( + cli, + [ + "schedule", + "--day", + "monday", + "--source", + "jikan", + "--timezone", + "+08:00", + "--limit", + "5", + "--no-cache", + ], + ) + + assert result.exit_code == 0, result.output + assert "Schedule (+08:00)" in result.output + assert "Monday, 2026-05-11" in result.output + assert "00:00 \u2502 Shin Nippon History" in result.output + assert "Info:" in result.output + assert "IDs:" in result.output + assert "Jikan/MAL: 54871" in result.output + assert "Source material: Original" in result.output + assert "Rating: G - All Ages" in result.output + assert "Names:" in result.output + assert "Japanese:" in result.output + assert "Sunday, 2026-05-10" not in result.output + assert "Ghost Concert: Missing Songs" not in result.output + assert "Shin Nippon History" in result.output + assert "[src: jikan]" in result.output + assert not result.output.lstrip().startswith("{") + + +def test_schedule_tty_renders_anilist_ids(runner, cli, fake_clock, force_tty, monkeypatch): + import animedex.agg.calendar as calendar + + monkeypatch.setattr(calendar, "_now_local", lambda: datetime(2026, 5, 7, tzinfo=timezone.utc)) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, _anilist_schedule(limit=1, airing_at_greater=1778112000, airing_at_lesser=1778198400)) + result = runner.invoke( + cli, + [ + "schedule", + "--day", + "thursday", + "--source", + "anilist", + "--limit", + "1", + "--no-cache", + ], + ) + + assert result.exit_code == 0, result.output + assert "IDs:" in result.output + assert "AniList airing:" in result.output + assert "AniList media: 181284" in result.output + + +def test_partial_failure_returns_success_with_stderr(runner, cli, fake_clock): + anilist_fail = _synthetic_failure( + _anilist_season(), + status=429, + body={"errors": [{"message": "rate limited"}], "data": None}, + label="aggregate-season-anilist-synthetic-429", + ) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, anilist_fail, _jikan_season()) + result = runner.invoke(cli, ["season", "2024", "spring", "--limit", "3", "--json", "--no-cache"]) + + assert result.exit_code == 0, result.output + payload = _json_payload(result) + assert payload["sources"]["anilist"]["status"] == "failed" + assert payload["sources"]["anilist"]["reason"] == "rate-limited" + assert payload["sources"]["jikan"]["status"] == "ok" + assert "source 'anilist' failed: rate-limited (HTTP 429)" in _stderr(result) + + +def test_merge_diagnostics_are_reported_to_stderr(runner): + from animedex.entry import aggregate as aggregate_entry + from animedex.models.aggregate import AggregateResult + + result = AggregateResult( + items=[], + merge_diagnostics=[ + { + "backend": "anilist", + "id": "154587", + "reason": "to-common-failed", + "message": "ValueError: broken mapper", + } + ], + ) + + @click.command() + def probe(): + aggregate_entry._finish( + click.Context(click.Command("probe")), + result, + json_flag=True, + jq_expr=None, + no_source=False, + ) + + invoked = runner.invoke(probe) + + assert invoked.exit_code == 0, invoked.output + payload = _json_payload(invoked) + assert payload["merge_diagnostics"][0]["reason"] == "to-common-failed" + assert ( + "merge diagnostic: anilist:154587 dropped from merge analysis " + "(to-common-failed: ValueError: broken mapper); kept as passthrough row" + ) in _stderr(invoked) + + +def test_external_id_conflict_diagnostics_are_reported_to_stderr(runner): + from animedex.entry import aggregate as aggregate_entry + from animedex.models.aggregate import AggregateResult + + result = AggregateResult( + items=[], + merge_diagnostics=[ + { + "backend": "anilist", + "id": "anilist:154587", + "reason": "external-id-conflict", + "message": "conflicting external id for 'anilist': '999' != '154587'", + } + ], + ) + + @click.command() + def probe(): + aggregate_entry._finish( + click.Context(click.Command("probe")), + result, + json_flag=True, + jq_expr=None, + no_source=False, + ) + + invoked = runner.invoke(probe) + + assert invoked.exit_code == 0, invoked.output + assert ( + "merge diagnostic: anilist:anilist:154587 kept with external id conflict " + "(conflicting external id for 'anilist': '999' != '154587')" + ) in _stderr(invoked) + + +def test_total_failure_exits_nonzero_with_empty_envelope(runner, cli, fake_clock): + anilist_fail = _synthetic_failure( + _anilist_season(), + status=500, + body={"error": "boom"}, + label="aggregate-season-anilist-synthetic-500", + ) + jikan_fail = _synthetic_failure( + _jikan_season(), + status=503, + body={"status": 503, "type": "ServiceUnavailable", "message": "boom", "error": "boom"}, + label="aggregate-season-jikan-synthetic-503", + ) + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, anilist_fail, jikan_fail) + result = runner.invoke(cli, ["season", "2024", "spring", "--limit", "3", "--json", "--no-cache"]) + + assert result.exit_code == 1 + payload = _json_payload(result) + assert payload["items"] == [] + assert payload["sources"]["anilist"]["status"] == "failed" + assert payload["sources"]["jikan"]["status"] == "failed" + assert "source 'anilist' failed" in _stderr(result) + assert "source 'jikan' failed" in _stderr(result) + + +def test_top_level_help_lists_aggregate_commands_without_policy_blocks(runner, cli): + result = runner.invoke(cli, ["season", "--help"]) + + assert result.exit_code == 0, result.output + assert "List anime airing in a season across AniList and Jikan." in result.output + assert "Examples:" in result.output + assert "LLM Agent Guidance" not in result.output + + result = runner.invoke(cli, ["schedule", "--help"]) + + assert result.exit_code == 0, result.output + assert "List airing schedule rows across AniList and Jikan." in result.output + assert "Examples:" in result.output + assert "LLM Agent Guidance" not in result.output + + +def test_invalid_aggregate_options_surface_click_errors(runner, cli): + result = runner.invoke(cli, ["season", "2024", "spring", "--source", "all,jikan"]) + assert result.exit_code != 0 + assert "--source all cannot be combined" in result.output + + result = runner.invoke(cli, ["schedule", "--day", "noday"]) + assert result.exit_code != 0 + assert "Invalid value for '--day'" in result.output + + result = runner.invoke(cli, ["season", "2024", "spring", "--limit", "0"]) + assert result.exit_code != 0 + assert "--limit must be >= 1" in result.output + + +def test_jq_errors_are_wrapped(runner, cli, fake_clock): + with responses.RequestsMock(assert_all_requests_are_fired=True) as rsps: + _register(rsps, _jikan_season()) + result = runner.invoke( + cli, + [ + "season", + "2024", + "spring", + "--source", + "jikan", + "--limit", + "3", + "--json", + "--no-cache", + "--jq", + "{[broken", + ], + ) + + assert result.exit_code != 0 + assert "jq" in result.output.lower() + + +def test_schedule_bad_args_surface_click_error(runner, cli): + result = runner.invoke(cli, ["schedule", "--limit", "0"]) + assert result.exit_code != 0 + assert "--limit must be >= 1" in result.output + + result = runner.invoke(cli, ["schedule", "--timezone", "Mars/Base"]) + assert result.exit_code != 0 + assert "unknown timezone" in result.output + + +def test_entry_selftest_runs(): + import animedex.entry.aggregate as aggregate_entry + + assert aggregate_entry.selftest() is True diff --git a/test/fixtures/aggregate/season_matrix/README.md b/test/fixtures/aggregate/season_matrix/README.md new file mode 100644 index 0000000..54115e9 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/README.md @@ -0,0 +1,39 @@ +# Season Matrix Calibration Fixtures + +This directory is the adjudicated calibration corpus for aggregate season merging. It covers every anime season from 2010 through 2025 against captured AniList and Jikan season fixtures, then records which cross-source rows are the same anime in `expected_matches.json`. + +## Contents + +- `candidates/*.json` are compact per-season candidate files generated from the captured upstream fixtures. +- `adjudication_inputs/*.json` are sharded, compact inputs for parallel human or model-assisted adjudication. +- `expected_matches.json` is the reviewed ground truth consumed by `tools/merge_eval/evaluate_rule.py`. + +## Regenerating + +Regenerate the upstream season fixtures first under `test/fixtures/anilist/season_matrix/` and `test/fixtures/jikan/season_matrix/`. Use the existing fixture capture tooling with conservative pacing, because this matrix makes 64 season requests per backend. If a proxy is needed to avoid upstream throttling, keep proxy credentials in the shell environment only and never commit them. + +After the upstream fixtures are present, rebuild candidates: + +```bash +PATH="$PWD/venv/bin:$PATH" python tools/merge_eval/build_candidates.py --start-year 2010 --end-year 2025 +``` + +Build adjudication shards: + +```bash +PATH="$PWD/venv/bin:$PATH" python tools/merge_eval/build_adjudication_inputs.py --shards 8 +``` + +Review each shard and write shard outputs with `seasons[].matches[]` entries containing `anilist_index` and `jikan_index` pairs. Combine the reviewed shard outputs: + +```bash +PATH="$PWD/venv/bin:$PATH" python tools/merge_eval/combine_adjudication.py path/to/shard-*.json --output test/fixtures/aggregate/season_matrix/expected_matches.json +``` + +Validate the deterministic merge rule against the corpus: + +```bash +PATH="$PWD/venv/bin:$PATH" python tools/merge_eval/evaluate_rule.py --limit-details 40 +``` + +The current rule expects zero false positives and zero false negatives against this checked-in corpus. If regenerated upstream data changes enough that perfect parity is no longer realistic, document the exact misses in the PR and bias threshold changes toward precision: a missed merge leaves two attributed rows visible, while a wrong merge can mislead callers about which upstream said what. diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-00.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-00.json new file mode 100644 index 0000000..c61aa4b --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-00.json @@ -0,0 +1 @@ +{"shard":0,"seasons":[{"year":2010,"season":"fall","anilist":[{"index":0,"id":8769,"mal_id":8769,"title":"Ore no Imouto ga Konna ni Kawaii Wake ga Nai","english":"Oreimo","native":"俺の妹がこんなに可愛いわけがない","synonyms":["My Little Sister Can't Be This Cute","我的妹妹哪有这么可爱!","น้องสาวของผมไม่น่ารักขนาดนั้นหรอก"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":3},"status":"FINISHED"},{"index":1,"id":8525,"mal_id":8525,"title":"Kami nomi zo Shiru Sekai","english":"The World God Only Knows","native":"神のみぞ知るセカイ","synonyms":["Kaminomi","Que sa volonté soit faite"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":7},"status":"FINISHED"},{"index":2,"id":7674,"mal_id":7674,"title":"Bakuman.","english":"Bakuman.","native":"バクマン。","synonyms":["Бакуман."],"format":"TV","episodes":25,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":2},"status":"FINISHED"},{"index":3,"id":8795,"mal_id":8795,"title":"Panty & Stocking with Garterbelt","english":"Panty & Stocking with Garterbelt","native":"パンティ&ストッキングwithガーターベルト","synonyms":["PanSto","PSG","P&SWG"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":2},"status":"FINISHED"},{"index":4,"id":8937,"mal_id":8937,"title":"Toaru Majutsu no Index II","english":"A Certain Magical Index II","native":"とある魔術の禁書目録II","synonyms":["Toaru Majutsu no Index 2","Toaru Majutsu no Kinsho Mokuroku 2","魔法禁书目录第二季","魔法禁书目录 2","อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2","Cấm thư ma thuật Index II","Daftar Sihir Terlarang II"],"format":"TV","episodes":24,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":8},"status":"FINISHED"},{"index":5,"id":8861,"mal_id":8861,"title":"Yosuga no Sora","english":"Yosuga no Sora: In Solitude Where We are Least Alone","native":"ヨスガノソラ","synonyms":["Sky of Connection","缘之空"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":4},"status":"FINISHED"},{"index":6,"id":9181,"mal_id":9181,"title":"Motto To LOVE-Ru","english":"Motto To Love Ru","native":"もっと To LOVEる -とらぶる-","synonyms":["Motto To-Love-Ru","More Trouble","More ToLoveRu"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":6},"status":"FINISHED"},{"index":7,"id":8129,"mal_id":8129,"title":"Kuragehime","english":"Princess Jellyfish","native":"海月姫","synonyms":["Princesa Água Viva"],"format":"TV","episodes":11,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":15},"status":"FINISHED"},{"index":8,"id":9062,"mal_id":9062,"title":"Angel Beats! Specials","english":"Angel Beats! Specials","native":"エンジェルビーツ 特別篇","synonyms":["Angel Beats!: Stairway to Heaven","Angel Beats!: Hell's Kitchen"],"format":"SPECIAL","episodes":2,"season":"FALL","year":2010,"start_date":{"year":2010,"month":12,"day":22},"status":"FINISHED"},{"index":9,"id":8407,"mal_id":8407,"title":"Sora no Otoshimono: Forte","english":"Heaven's Lost Property: Forte","native":"そらのおとしものf(フォルテ)","synonyms":["Sora no Otoshimono: f","Lost Property of the Sky 2","Misplaced by Heaven 2","Heaven's Lost Property 2"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":2},"status":"FINISHED"},{"index":10,"id":10067,"mal_id":10067,"title":"Angel Beats!: Another Epilogue","english":null,"native":"エンジェルビーツ! アナザーエピローグ","synonyms":[],"format":"SPECIAL","episodes":1,"season":"FALL","year":2010,"start_date":{"year":2010,"month":12,"day":22},"status":"FINISHED"},{"index":11,"id":8557,"mal_id":8557,"title":"Shinryaku! Ika Musume","english":"Squid Girl","native":"侵略!イカ娘","synonyms":["The Invader Comes From the Bottom of the Sea!"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":5},"status":"FINISHED"},{"index":12,"id":8460,"mal_id":8460,"title":"Mirai Nikki OVA","english":null,"native":"未来日記","synonyms":["The Future Diary OVA","The Future Diary Pilot"],"format":"OVA","episodes":1,"season":"FALL","year":2010,"start_date":{"year":2010,"month":12,"day":9},"status":"FINISHED"},{"index":13,"id":8424,"mal_id":8424,"title":"MM!","english":"MM!","native":"えむえむっ!","synonyms":["MM! Group","Emu Emu!"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":2},"status":"FINISHED"},{"index":14,"id":8247,"mal_id":8247,"title":"BLEACH: Jigoku-hen","english":"Bleach the Movie: Hell Verse","native":"BLEACH 地獄篇","synonyms":["Bleach Movie 4","Bleach: The Hell Chapter","بليتش: قصيدة الجحيم"],"format":"MOVIE","episodes":1,"season":"FALL","year":2010,"start_date":{"year":2010,"month":12,"day":4},"status":"FINISHED"},{"index":15,"id":8277,"mal_id":8277,"title":"Hyakka Ryouran: Samurai Girls","english":"Samurai Girls","native":"百花繚乱 サムライガールズ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":9,"day":4},"status":"FINISHED"},{"index":16,"id":9074,"mal_id":9074,"title":"Arakawa Under the Bridge x Bridge","english":"Arakawa Under the Bridge x Bridge","native":"荒川アンダー ザ ブリッジ×ブリッジ","synonyms":["Arakawa Under the Bridge*2","Arakawa Under the Bridge x2","Arakawa Under the Bridge 2nd Season"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":4},"status":"FINISHED"},{"index":17,"id":9107,"mal_id":9107,"title":"Pocket Monsters Best Wishes!","english":"Pokémon: Black & White","native":"ポケットモンスターベストウイッシュ","synonyms":["Pokemon: Best Wishes!","Black & White","Pokemon: Black & White","Pokemon: Bianco e Nero"],"format":"TV","episodes":84,"season":"FALL","year":2010,"start_date":{"year":2010,"month":9,"day":23},"status":"FINISHED"},{"index":18,"id":8934,"mal_id":8934,"title":"STAR DRIVER: Kagayaki no Takuto","english":"Star Driver","native":"STAR DRIVER 輝きのタクト","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":3},"status":"FINISHED"},{"index":19,"id":8726,"mal_id":8726,"title":"Soredemo Machi wa Mawatteiru","english":"And Yet The Town Moves","native":"それでも町は廻っている","synonyms":["SoreMachi","それ町"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":8},"status":"FINISHED"},{"index":20,"id":7662,"mal_id":7662,"title":"Shinrei Tantei Yakumo","english":"Psychic Detective Yakumo","native":"心霊探偵 八雲","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":3},"status":"FINISHED"},{"index":21,"id":9136,"mal_id":9136,"title":"Kuroshitsuji II OVA","english":"Black Butler II OVA","native":"黒執事II OVA","synonyms":["Welcome to the Phantomhive Family","Ciel in Wonderland","คนลึกไขปริศนาลับ ภาค 2 OVA","คนลึกไขปริศนาลับ II OVA"],"format":"OVA","episodes":6,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":27},"status":"FINISHED"},{"index":22,"id":8876,"mal_id":8876,"title":"Koe de Oshigoto!: The ANIMATION","english":"Koe de Oshigoto","native":"こえでおしごと! The ANIMATION","synonyms":["Koe de Oshigoto! The Animation"],"format":"OVA","episodes":2,"season":"FALL","year":2010,"start_date":{"year":2010,"month":11,"day":17},"status":"FINISHED"},{"index":23,"id":8476,"mal_id":8476,"title":"Otome Youkai Zakuro","english":"Zakuro","native":"おとめ妖怪 ざくろ","synonyms":["Otome Yokai Zakuro","Girl Demon Zakuro"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"year":2010,"month":10,"day":5},"status":"FINISHED"},{"index":24,"id":7858,"mal_id":7858,"title":"Sora no Otoshimono OVA","english":"Heaven's Lost Property OVA","native":"そらのおとしもの","synonyms":["Sora no Otoshimono: Project Pink","Sora no Otoshimono Special","Lost Property of the Sky OVA","Misplaced by Heaven OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2010,"start_date":{"year":2010,"month":9,"day":9},"status":"FINISHED"}],"jikan":[{"index":0,"id":8769,"mal_id":8769,"title":"Ore no Imouto ga Konnani Kawaii Wake ga Nai","english":"OreImo","native":"俺の妹がこんなに可愛いわけがない","synonyms":["My Little Sister Can't Be This Cute"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":3,"month":10,"year":2010},"status":"Finished Airing"},{"index":1,"id":8525,"mal_id":8525,"title":"Kami nomi zo Shiru Sekai","english":"The World God Only Knows","native":"神のみぞ知るセカイ","synonyms":["Kaminomi"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":7,"month":10,"year":2010},"status":"Finished Airing"},{"index":2,"id":7674,"mal_id":7674,"title":"Bakuman.","english":"Bakuman.","native":"バクマン。","synonyms":["Bakuman Season 1"],"format":"TV","episodes":25,"season":"FALL","year":2010,"start_date":{"day":2,"month":10,"year":2010},"status":"Finished Airing"},{"index":3,"id":8861,"mal_id":8861,"title":"Yosuga no Sora","english":"Yosuga no Sora: In Solitude, Where We Are Least Alone","native":"ヨスガノソラ","synonyms":["Sky of Connection"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":4,"month":10,"year":2010},"status":"Finished Airing"},{"index":4,"id":8937,"mal_id":8937,"title":"Toaru Majutsu no Index II","english":"A Certain Magical Index II","native":"とある魔術の禁書目録Ⅱ","synonyms":["Toaru Majutsu no Index 2","Toaru Majutsu no Kinsho Mokuroku 2"],"format":"TV","episodes":24,"season":"FALL","year":2010,"start_date":{"day":8,"month":10,"year":2010},"status":"Finished Airing"},{"index":5,"id":8795,"mal_id":8795,"title":"Panty & Stocking with Garterbelt","english":"Panty & Stocking with Garterbelt","native":"パンティ&ストッキングwithガーターベルト","synonyms":["PanSto","PSG"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"day":2,"month":10,"year":2010},"status":"Finished Airing"},{"index":6,"id":9181,"mal_id":9181,"title":"Motto To LOVE-Ru","english":"Motto To LOVE Ru","native":"もっと To LOVEる -とらぶる-","synonyms":["Motto To-Love-Ru","More Trouble","More ToLoveRu"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":6,"month":10,"year":2010},"status":"Finished Airing"},{"index":7,"id":8407,"mal_id":8407,"title":"Sora no Otoshimono Forte","english":"Heaven's Lost Property Forte","native":"そらのおとしものf(フォルテ)","synonyms":["Sora no Otoshimono: f","Lost Property of the Sky 2","Misplaced by Heaven 2","Heaven's Lost Property 2"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":2,"month":10,"year":2010},"status":"Finished Airing"},{"index":8,"id":9062,"mal_id":9062,"title":"Angel Beats! Specials","english":null,"native":"エンジェルビーツ","synonyms":["Angel Beats!: Stairway to Heaven","Angel Beats!: Hell's Kitchen"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":22,"month":12,"year":2010},"status":"Finished Airing"},{"index":9,"id":8129,"mal_id":8129,"title":"Kuragehime","english":"Princess Jellyfish","native":"海月姫","synonyms":["Kuragehime"],"format":"TV","episodes":11,"season":"FALL","year":2010,"start_date":{"day":15,"month":10,"year":2010},"status":"Finished Airing"},{"index":10,"id":8460,"mal_id":8460,"title":"Mirai Nikki","english":"The Future Diary OVA","native":"未来日記","synonyms":["Mirai Nikki OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":12,"year":2010},"status":"Finished Airing"},{"index":11,"id":10067,"mal_id":10067,"title":"Angel Beats! Another Epilogue","english":null,"native":"エンジェルビーツ! アナザーエピローグ","synonyms":[],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":12,"year":2010},"status":"Finished Airing"},{"index":12,"id":8424,"mal_id":8424,"title":"MM!","english":"MM!","native":"えむえむっ!","synonyms":["MM! Group","Emu Emu!"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":2,"month":10,"year":2010},"status":"Finished Airing"},{"index":13,"id":8247,"mal_id":8247,"title":"Bleach Movie 4: Jigoku-hen","english":"Bleach the Movie: Hell Verse","native":"劇場版 BLEACH 地獄篇","synonyms":["Bleach: The Hell Chapter"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":12,"year":2010},"status":"Finished Airing"},{"index":14,"id":8557,"mal_id":8557,"title":"Shinryaku! Ika Musume","english":"The Squid Girl","native":"侵略!イカ娘","synonyms":["The Invader Comes From the Bottom of the Sea!"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":5,"month":10,"year":2010},"status":"Finished Airing"},{"index":15,"id":8277,"mal_id":8277,"title":"Hyakka Ryouran: Samurai Girls","english":"Samurai Girls","native":"百花繚乱 サムライガールズ","synonyms":["Hyakka Ryouran: Samurai Girls"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":4,"month":9,"year":2010},"status":"Finished Airing"},{"index":16,"id":9074,"mal_id":9074,"title":"Arakawa Under the Bridge x Bridge","english":"Arakawa Under the Bridge x Bridge","native":"荒川アンダー ザブリッジ×ブリッジ","synonyms":["Arakawa Under the Bridge*2","Arakawa Under the Bridge x2","Arakawa Under the Bridge 2nd season"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"day":4,"month":10,"year":2010},"status":"Finished Airing"},{"index":17,"id":7662,"mal_id":7662,"title":"Shinrei Tantei Yakumo","english":"Psychic Detective Yakumo","native":"心霊探偵 八雲","synonyms":["Shinrei Tantei Yakumo"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"day":3,"month":10,"year":2010},"status":"Finished Airing"},{"index":18,"id":9136,"mal_id":9136,"title":"Kuroshitsuji II Specials","english":"Black Butler II Specials","native":"黒執事II: シエル・イン・ワンダーランド","synonyms":["Ciel in Wonderland","Welcome to the Phantomhive Family"],"format":"Special","episodes":6,"season":null,"year":null,"start_date":{"day":27,"month":10,"year":2010},"status":"Finished Airing"},{"index":19,"id":8476,"mal_id":8476,"title":"Otome Youkai Zakuro","english":"Zakuro","native":"おとめ妖怪 ざくろ","synonyms":["Girl Demon Zakuro"],"format":"TV","episodes":13,"season":"FALL","year":2010,"start_date":{"day":5,"month":10,"year":2010},"status":"Finished Airing"},{"index":20,"id":8536,"mal_id":8536,"title":"Fortune Arterial: Akai Yakusoku","english":null,"native":"FORTUNE ARTERIAL 赤い約束","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":9,"month":10,"year":2010},"status":"Finished Airing"},{"index":21,"id":8934,"mal_id":8934,"title":"Star Driver: Kagayaki no Takuto","english":"Star Driver","native":"STAR DRIVER 輝きのタクト","synonyms":["STAR DRIVER: Shining Takuto"],"format":"TV","episodes":25,"season":"FALL","year":2010,"start_date":{"day":3,"month":10,"year":2010},"status":"Finished Airing"},{"index":22,"id":9107,"mal_id":9107,"title":"Pokemon Best Wishes!","english":"Pokémon: Black & White","native":"ポケットモンスターベストウイッシュ","synonyms":["Pocket Monsters: Best Wishes!","Black & White","BW: Rival Destinies"],"format":"TV","episodes":84,"season":"FALL","year":2010,"start_date":{"day":23,"month":9,"year":2010},"status":"Finished Airing"},{"index":23,"id":8876,"mal_id":8876,"title":"Koe de Oshigoto! The Animation","english":"Koe de Oshigoto!","native":"こえでおしごと! The ANIMATION","synonyms":["Working with Voice!"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":17,"month":11,"year":2010},"status":"Finished Airing"},{"index":24,"id":8449,"mal_id":8449,"title":"Togainu no Chi","english":"Togainu no Chi","native":"咎狗の血","synonyms":["Blood of the Reprimanded Dog"],"format":"TV","episodes":12,"season":"FALL","year":2010,"start_date":{"day":8,"month":10,"year":2010},"status":"Finished Airing"}]},{"year":2012,"season":"fall","anilist":[{"index":0,"id":14719,"mal_id":14719,"title":"JoJo no Kimyou na Bouken (TV)","english":"JoJo's Bizarre Adventure (TV)","native":"ジョジョの奇妙な冒険 (TV)","synonyms":["JoJo no Kimyou na Bouken (2012)","JoJo no Kimyou na Bouken: Sentou Chouryuu","JoJo's Bizarre Adventure: Phantom Blood","JoJo's Bizarre Adventure: Battle Tendency","مغامرات جوجو العجيبة","مغامرات جوجو العجيبة:الدماء الوهمية","مغامرات جوجو العجيبة:حمى القتال","Le bizzarre avventure di JoJo (2012)","Le bizzarre avventure di JoJo: Phantom Blood","Le bizzarre avventure di JoJo: Battle Tendency","Химерні пригоди ДжоДжо: Тяжіння до бою","Химерні пригоди ДжоДжо: Примарна кров","JJBA","Невероятные приключения ДжоДжо: Призрачная кровь","Невероятные приключения ДжоДжо: Стремление к бою"],"format":"TV","episodes":26,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":6},"status":"FINISHED"},{"index":1,"id":13601,"mal_id":13601,"title":"PSYCHO-PASS","english":"PSYCHO-PASS","native":"PSYCHO-PASS サイコパス","synonyms":["Психопаспорт"],"format":"TV","episodes":22,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":12},"status":"FINISHED"},{"index":2,"id":14741,"mal_id":14741,"title":"Chuunibyou demo Koi ga Shitai!","english":"Love, Chunibyo & Other Delusions","native":"中二病でも恋がしたい!","synonyms":["Chu-2 Byo demo Koi ga Shitai!","Regardless of My Adolescent Delusions of Grandeur, I Want a Date!","Miłość, gimbaza i kosmiczna faza","中二病也要谈恋爱!"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":4},"status":"FINISHED"},{"index":3,"id":13759,"mal_id":13759,"title":"Sakurasou no Pet na Kanojo","english":"The Pet Girl of Sakurasou","native":"さくら荘のペットな彼女","synonyms":["Sakura-sou no Pet na Kanojo","樱花庄的宠物女孩"],"format":"TV","episodes":24,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":9},"status":"FINISHED"},{"index":4,"id":14227,"mal_id":14227,"title":"Tonari no Kaibutsu-kun","english":"My Little Monster","native":"となりの怪物くん","synonyms":["Tonari no Kaibutsukun","The Monster Next Door","My Neighbor Monster-kun","Le Garçon d'à coté","Bestia z ławki obok"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":2},"status":"FINISHED"},{"index":5,"id":14513,"mal_id":14513,"title":"Magi: The labyrinth of magic","english":"Magi: The Labyrinth of Magic","native":"マギ The labyrinth of magic","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":7},"status":"FINISHED"},{"index":6,"id":13125,"mal_id":13125,"title":"Shinsekai yori","english":"From the New World","native":"新世界より","synonyms":["Shin Sekai Yori","Del nuevo mundo"],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"year":2012,"month":9,"day":29},"status":"FINISHED"},{"index":7,"id":14467,"mal_id":14467,"title":"K","english":"K","native":"K","synonyms":["K-Project (K-プロジェクト)","K -eine weitere Geschichte-"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":5},"status":"FINISHED"},{"index":8,"id":14713,"mal_id":14713,"title":"Kamisama Hajimemashita","english":"Kamisama Kiss","native":"神様はじめました","synonyms":["Kami-sama Hajimemashita","Kami-sama Kiss","Soy Una Diosa ¿Y ahora qué?","Приємно познайомитись, Бог","Очень приятно, Бог","The Girl In The World Of Spirit","Jak zostałam bóstwem!?"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":2},"status":"FINISHED"},{"index":9,"id":14345,"mal_id":14345,"title":"BTOOOM!","english":"BTOOOM!","native":"BTOOOM!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":4},"status":"FINISHED"},{"index":10,"id":14289,"mal_id":14289,"title":"Sukitte Ii na yo.","english":"Say \"I love you\".","native":"好きっていいなよ。","synonyms":["Sukinayo"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":7},"status":"FINISHED"},{"index":11,"id":15689,"mal_id":15689,"title":"Nekomonogatari (Kuro)","english":"Nekomonogatari Black","native":"猫物語(黒)","synonyms":[],"format":"TV","episodes":4,"season":"FALL","year":2012,"start_date":{"year":2012,"month":12,"day":31},"status":"FINISHED"},{"index":12,"id":3785,"mal_id":3785,"title":"Evangelion Shin Movie: Kyuu","english":"Evangelion: 3.0 You Can (Not) Redo","native":"ヱヴァンゲリヲン新劇場版:Q","synonyms":["Rebuild of Evangelion 3.33","Rebuild of Evangelion 3.0 Q Quickening","EVANGELION:3.33 VOCÊ (NÃO) PODE REFAZER","EVANGELION: 3.33 TÚ (NO) LO PUEDES REHACER","Evangelion 3.33 (Nie) możesz powtórzyć"],"format":"MOVIE","episodes":1,"season":"FALL","year":2012,"start_date":{"year":2012,"month":11,"day":17},"status":"FINISHED"},{"index":13,"id":14075,"mal_id":14075,"title":"Zetsuen no Tempest","english":"Blast of Tempest","native":"絶園のテンペスト","synonyms":["Zetsuen no Tempest: The Civilization Blaster","絶園のテンペスト ~THE CIVILIZATION BLASTER~","Penghancuran Peradaban"],"format":"TV","episodes":24,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":5},"status":"FINISHED"},{"index":14,"id":14131,"mal_id":14131,"title":"Girls und Panzer","english":"Girls und Panzer","native":"ガールズ&パンツァー","synonyms":["Garupan","少女与战车","GuP","Девушки и танки"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":9},"status":"FINISHED"},{"index":15,"id":15417,"mal_id":15417,"title":"Gintama': Enchousen","english":"Gintama Season 2 Part 2","native":"銀魂’延長戦","synonyms":["Gintama' (2012)","Gintama' Overdrive","Kintama"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":4},"status":"FINISHED"},{"index":16,"id":13663,"mal_id":13663,"title":"To LOVE-Ru Darkness","english":"To Love Ru Darkness","native":"To LOVEる -とらぶる- ダークネス","synonyms":["To LOVE-Ru Trouble Darkness","To-Love-Ru Darkness","ToLoveRu Darkness"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":6},"status":"FINISHED"},{"index":17,"id":14199,"mal_id":14199,"title":"Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne!","english":"OniAi","native":"お兄ちゃんだけど愛さえあれば関係ないよねっ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":5},"status":"FINISHED"},{"index":18,"id":13655,"mal_id":13655,"title":"Little Busters!","english":"Little Busters!","native":"リトルバスターズ!","synonyms":["LB!"],"format":"TV","episodes":26,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":6},"status":"FINISHED"},{"index":19,"id":11703,"mal_id":11703,"title":"CØDE:BREAKER","english":"Code:Breaker","native":"CØDE:BREAKER","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":7},"status":"FINISHED"},{"index":20,"id":12859,"mal_id":12859,"title":"ONE PIECE FILM: Z","english":"One Piece Film: Z","native":"ONE PIECE FILM Z","synonyms":["One Piece Film 12: Z","海贼王剧场版Z","One Piece Gold - Il film"],"format":"MOVIE","episodes":1,"season":"FALL","year":2012,"start_date":{"year":2012,"month":12,"day":15},"status":"FINISHED"},{"index":21,"id":16001,"mal_id":16001,"title":"Kokoro Connect: Michi Random","english":"Kokoro Connect ~ The OVAs","native":"ココロコネクト ミチランダム","synonyms":["Kokoro Connect Episodes 14, 15, 16 and 17","Kokoroco: Michi Random"],"format":"OVA","episodes":4,"season":"FALL","year":2012,"start_date":{"year":2012,"month":11,"day":19},"status":"FINISHED"},{"index":22,"id":12365,"mal_id":12365,"title":"Bakuman. 3","english":null,"native":"バクマン。3","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":6},"status":"FINISHED"},{"index":23,"id":11737,"mal_id":11737,"title":"Ao no Exorcist Movie","english":"Blue Exorcist: The Movie","native":"青の祓魔師 -劇場版-","synonyms":["Ao no Exorcist Gekijouban","Ao no Futsumashi Movie"],"format":"MOVIE","episodes":1,"season":"FALL","year":2012,"start_date":{"year":2012,"month":12,"day":28},"status":"FINISHED"},{"index":24,"id":11977,"mal_id":11977,"title":"Mahou Shoujo Madoka☆Magica: Hajimari no Monogatari","english":"Puella Magi Madoka Magica the Movie Part 1: Beginnings","native":"劇場版 魔法少女まどか☆マギカ 始まりの物語","synonyms":["Mahou Shoujo Madoka Magika Movie 1","Magical Girl Madoka Magica Movie 1","Puella Magi Madoka Magica the Movie Part I: Beginnings"],"format":"MOVIE","episodes":1,"season":"FALL","year":2012,"start_date":{"year":2012,"month":10,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":14719,"mal_id":14719,"title":"JoJo no Kimyou na Bouken (TV)","english":"JoJo's Bizarre Adventure (2012)","native":"ジョジョの奇妙な冒険","synonyms":["JoJo no Kimyou na Bouken (2012)","Battle Tendency","Phantom Blood","Sentou Chouryuu","JoJo's Bizarre Adventure The Animation"],"format":"TV","episodes":26,"season":"FALL","year":2012,"start_date":{"day":6,"month":10,"year":2012},"status":"Finished Airing"},{"index":1,"id":13601,"mal_id":13601,"title":"Psycho-Pass","english":"Psycho-Pass","native":"サイコパス","synonyms":["Psychopath"],"format":"TV","episodes":22,"season":"FALL","year":2012,"start_date":{"day":12,"month":10,"year":2012},"status":"Finished Airing"},{"index":2,"id":14741,"mal_id":14741,"title":"Chuunibyou demo Koi ga Shitai!","english":"Love, Chunibyo & Other Delusions!","native":"中二病でも恋がしたい!","synonyms":["Chu-2 Byo demo Koi ga Shitai!","Regardless of My Adolescent Delusions of Grandeur","I Want a Date!"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"day":4,"month":10,"year":2012},"status":"Finished Airing"},{"index":3,"id":13759,"mal_id":13759,"title":"Sakura-sou no Pet na Kanojo","english":"The Pet Girl of Sakurasou","native":"さくら荘のペットな彼女","synonyms":["Sakurasou no Pet na Kanojo"],"format":"TV","episodes":24,"season":"FALL","year":2012,"start_date":{"day":9,"month":10,"year":2012},"status":"Finished Airing"},{"index":4,"id":14227,"mal_id":14227,"title":"Tonari no Kaibutsu-kun","english":"My Little Monster","native":"となりの怪物くん","synonyms":["Tonari no Kaibutsukun","The Monster Next Door","My Neighbor Monster-kun"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":2,"month":10,"year":2012},"status":"Finished Airing"},{"index":5,"id":14513,"mal_id":14513,"title":"Magi: The Labyrinth of Magic","english":"Magi: The Labyrinth of Magic","native":"マギ The labyrinth of magic","synonyms":["Magi Season 1"],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"day":7,"month":10,"year":2012},"status":"Finished Airing"},{"index":6,"id":14345,"mal_id":14345,"title":"Btooom!","english":"BTOOOM!","native":"BTOOOM!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"day":4,"month":10,"year":2012},"status":"Finished Airing"},{"index":7,"id":13125,"mal_id":13125,"title":"Shinsekai yori","english":"From the New World","native":"新世界より","synonyms":["Shin Sekai Yori"],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"day":29,"month":9,"year":2012},"status":"Finished Airing"},{"index":8,"id":14467,"mal_id":14467,"title":"K","english":"K","native":"K","synonyms":["K-Project","K -eine weitere Geschichte-"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":5,"month":10,"year":2012},"status":"Finished Airing"},{"index":9,"id":14713,"mal_id":14713,"title":"Kamisama Hajimemashita","english":"Kamisama Kiss","native":"神様はじめました","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":2,"month":10,"year":2012},"status":"Finished Airing"},{"index":10,"id":14289,"mal_id":14289,"title":"Suki tte Ii na yo.","english":"Say \"I Love You.\"","native":"好きっていいなよ。","synonyms":["Suki-tte Ii na yo.","Sukinayo"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":7,"month":10,"year":2012},"status":"Finished Airing"},{"index":11,"id":14075,"mal_id":14075,"title":"Zetsuen no Tempest","english":"Blast of Tempest","native":"絶園のテンペスト","synonyms":["Zetsuen no Tempest: The Civilization Blaster"],"format":"TV","episodes":24,"season":"FALL","year":2012,"start_date":{"day":5,"month":10,"year":2012},"status":"Finished Airing"},{"index":12,"id":15689,"mal_id":15689,"title":"Nekomonogatari: Kuro","english":"Nekomonogatari Black","native":"猫物語(黒)","synonyms":["Nekomonogatari Black: Tsubasa Family"],"format":"TV Special","episodes":4,"season":null,"year":null,"start_date":{"day":31,"month":12,"year":2012},"status":"Finished Airing"},{"index":13,"id":3785,"mal_id":3785,"title":"Evangelion Movie 3: Q","english":"Evangelion: 3.0 You Can (Not) Redo","native":"ヱヴァンゲリヲン新劇場版:Q","synonyms":["Evangelion Shin Gekijouban: Kyuu","Rebuild of Evangelion: 3.0","Evangelion: 3.0 Q Quickening","Evangelion 3.33"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":11,"year":2012},"status":"Finished Airing"},{"index":14,"id":13663,"mal_id":13663,"title":"To LOVE-Ru Darkness","english":"To LOVE Ru Darkness","native":"To LOVEる -とらぶる- ダークネス","synonyms":["To LOVE-Ru Trouble Darkness","To-Love-Ru Darkness","ToLoveRu Darkness"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"day":6,"month":10,"year":2012},"status":"Finished Airing"},{"index":15,"id":15417,"mal_id":15417,"title":"Gintama': Enchousen","english":"Gintama: Enchousen","native":"銀魂' 延長戦","synonyms":["Gintama' (2012)","Gintama' Overdrive","Kintama","Gintama Season 3"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":4,"month":10,"year":2012},"status":"Finished Airing"},{"index":16,"id":11703,"mal_id":11703,"title":"Code:Breaker","english":"Code:Breaker","native":"CØDE:BREAKER","synonyms":["Code Breaker"],"format":"TV","episodes":13,"season":"FALL","year":2012,"start_date":{"day":7,"month":10,"year":2012},"status":"Finished Airing"},{"index":17,"id":12365,"mal_id":12365,"title":"Bakuman. 3rd Season","english":"Bakuman. Season 3","native":"バクマン。","synonyms":["Bakuman Season 3"],"format":"TV","episodes":25,"season":"FALL","year":2012,"start_date":{"day":6,"month":10,"year":2012},"status":"Finished Airing"},{"index":18,"id":14131,"mal_id":14131,"title":"Girls & Panzer","english":"Girls und Panzer","native":"ガールズ&パンツァー","synonyms":["Garupan","Girls und Panzer"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"day":9,"month":10,"year":2012},"status":"Finished Airing"},{"index":19,"id":14199,"mal_id":14199,"title":"Oniichan dakedo Ai sae Areba Kankeinai yo ne!","english":"OniAi","native":"お兄ちゃんだけど愛さえあれば関係ないよねっ","synonyms":["As Long as There's Love","It Doesn't Matter If He Is My Brother","Right?"],"format":"TV","episodes":12,"season":"FALL","year":2012,"start_date":{"day":5,"month":10,"year":2012},"status":"Finished Airing"},{"index":20,"id":12859,"mal_id":12859,"title":"One Piece Film: Z","english":"One Piece Film: Z","native":"ワンピース フィルム Z","synonyms":["One Piece Movie 12"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":12,"year":2012},"status":"Finished Airing"},{"index":21,"id":13655,"mal_id":13655,"title":"Little Busters!","english":"Little Busters!","native":"リトルバスターズ!","synonyms":["LB!"],"format":"TV","episodes":26,"season":"FALL","year":2012,"start_date":{"day":6,"month":10,"year":2012},"status":"Finished Airing"},{"index":22,"id":11737,"mal_id":11737,"title":"Ao no Exorcist Movie","english":"Blue Exorcist: The Movie","native":"劇場版 青の祓魔師(エクソシスト)","synonyms":["Ao no Exorcist Gekijouban","Ao no Futsumashi Movie","Blue Exorcist Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":28,"month":12,"year":2012},"status":"Finished Airing"},{"index":23,"id":16001,"mal_id":16001,"title":"Kokoro Connect: Michi Random","english":"Kokoro Connect OVA","native":"ココロコネクト ミチランダム","synonyms":["Kokoro Connect Episodes 14","15","16","and 17","Kokoroco: Michi Random"],"format":"Special","episodes":4,"season":null,"year":null,"start_date":{"day":19,"month":11,"year":2012},"status":"Finished Airing"},{"index":24,"id":11979,"mal_id":11979,"title":"Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari","english":"Puella Magi Madoka Magica the Movie Part 2: Eternal","native":"劇場版 魔法少女まどか☆マギカ 永遠の物語","synonyms":["Mahou Shoujo Madoka Magika Movie 2","Magical Girl Madoka Magica Movie 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":13,"month":10,"year":2012},"status":"Finished Airing"}]},{"year":2014,"season":"fall","anilist":[{"index":0,"id":20665,"mal_id":23273,"title":"Shigatsu wa Kimi no Uso","english":"Your lie in April","native":"四月は君の嘘","synonyms":["KimiUso","השקר שלך באפריל","Bugie d'aprile","四月是你的谎言","YLIA","Sekunden in Moll","Твоя апрельская ложь"],"format":"TV","episodes":22,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":10},"status":"FINISHED"},{"index":1,"id":20789,"mal_id":23755,"title":"Nanatsu no Taizai","english":"The Seven Deadly Sins","native":"七つの大罪","synonyms":["七大罪","ศึกตำนาน 7 อัศวิน","7DS","Семь смертных грехов"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":2,"id":20623,"mal_id":22535,"title":"Kiseijuu: Sei no Kakuritsu","english":"Parasyte -the maxim-","native":"寄生獣 セイの格率","synonyms":["Kiseiju - L'ospite indesiderato","Parasite : La Maxime","Паразит: Учение о жизни","Pasożyt"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":9},"status":"FINISHED"},{"index":3,"id":19603,"mal_id":22297,"title":"Fate/stay night: Unlimited Blade Works","english":"Fate/stay night: Unlimited Blade Works","native":"Fate/stay night [Unlimited Blade Works]","synonyms":["フェイト/ステイナイト Unlimited Blade Works","Fate/UBW","פייט/סטיי נייט: מלאכת חרבות אינסופית","Судьба/Ночь схватки: Бесконечный мир клинков"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":4,"id":20770,"mal_id":25013,"title":"Akatsuki no Yona","english":"Yona of the Dawn","native":"暁のヨナ","synonyms":["AkaYona","Йона на заре","Ёна на заре","Рассвет Йоны","Yona, princesse de l'aube"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":7},"status":"FINISHED"},{"index":5,"id":20631,"mal_id":25157,"title":"Trinity Seven","english":"TRINITY SEVEN","native":"トリニティセブン","synonyms":["Trinity Seven: 7-nin no Mahoutsukai","Trinity Seven: Shichinin no Mahoutsukai"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":8},"status":"FINISHED"},{"index":6,"id":20602,"mal_id":22147,"title":"Amagi Brilliant Park","english":"Amagi Brilliant Park","native":"甘城ブリリアントパーク","synonyms":["Amaburi","甘ブリ","Cudowny park Amagi"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":7},"status":"FINISHED"},{"index":7,"id":17729,"mal_id":17729,"title":"Grisaia no Kajitsu","english":"The Fruit of Grisaia","native":"グリザイアの果実","synonyms":["Le Fruit De La Grisaia"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":8,"id":16870,"mal_id":16870,"title":"THE LAST: NARUTO THE MOVIE","english":"The Last: Naruto the Movie","native":"THE LAST -NARUTO THE MOVIE-","synonyms":["Naruto Movie 10","Naruto Shippuden Movie 07: The Last"],"format":"MOVIE","episodes":1,"season":"FALL","year":2014,"start_date":{"year":2014,"month":12,"day":6},"status":"FINISHED"},{"index":9,"id":20513,"mal_id":23281,"title":"PSYCHO-PASS 2","english":"PSYCHO-PASS 2","native":"PSYCHO-PASS サイコパス2","synonyms":[],"format":"TV","episodes":11,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":10},"status":"FINISHED"},{"index":10,"id":20671,"mal_id":23321,"title":"Log Horizon 2","english":"Log Horizon 2","native":"ログ・ホライズン 2","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":4},"status":"FINISHED"},{"index":11,"id":20918,"mal_id":28025,"title":"Tsukimonogatari","english":"Tsukimonogatari","native":"憑物語","synonyms":["Possession Tale"],"format":"TV","episodes":4,"season":"FALL","year":2014,"start_date":{"year":2014,"month":12,"day":31},"status":"FINISHED"},{"index":12,"id":20729,"mal_id":24405,"title":"World Trigger","english":"World Trigger","native":"ワールドトリガー","synonyms":[],"format":"TV","episodes":73,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":13,"id":20812,"mal_id":25835,"title":"SHIROBAKO","english":"SHIROBAKO","native":"SHIROBAKO","synonyms":["White Box"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":9},"status":"FINISHED"},{"index":14,"id":20646,"mal_id":25159,"title":"Inou-Battle wa Nichijou-kei no Naka de","english":"When Supernatural Battles Became Commonplace","native":"異能バトルは日常系のなかで","synonyms":["InoBato","Inou-Battle in the Usually Daze.","Inou Battle Within Everyday Life","พลังป่วนก๊วนเหนือธรรมชาติ"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":7},"status":"FINISHED"},{"index":15,"id":20701,"mal_id":23673,"title":"Ookami Shoujo to Kuro Ouji","english":"Wolf Girl and Black Prince","native":"オオカミ少女と黒王子","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":16,"id":20590,"mal_id":21843,"title":"Shingeki no Bahamut: GENESIS","english":"Rage of Bahamut: Genesis","native":"神撃のバハムート GENESIS","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":6},"status":"FINISHED"},{"index":17,"id":20735,"mal_id":26349,"title":"Danna ga Nani wo Itteiru ka Wakaranai Ken","english":"I Can't Understand What My Husband Is Saying","native":"旦那が何を言っているかわからない件","synonyms":["Danna ga Nani o Itte Iruka Wakaranai Ken"],"format":"TV_SHORT","episodes":13,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":3},"status":"FINISHED"},{"index":18,"id":20809,"mal_id":24455,"title":"Madan no Ou to Vanadis","english":"Lord Marksman and Vanadis","native":"魔弾の王と戦姫 (ヴァナディース)","synonyms":["The King of the Magic Bullet and Vanadis"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":4},"status":"FINISHED"},{"index":19,"id":20751,"mal_id":24701,"title":"Mushishi Zoku Shou 2","english":"MUSHI-SHI The Next Passage 2","native":"蟲師 続章 2","synonyms":[],"format":"TV","episodes":10,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":19},"status":"FINISHED"},{"index":20,"id":20806,"mal_id":25731,"title":"Cross Ange: Tenshi to Ryuu no Rondo","english":"Cross Ange: Rondo of Angel and Dragon","native":"クロスアンジュ 天使と竜の輪舞","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":5},"status":"FINISHED"},{"index":21,"id":20767,"mal_id":22961,"title":"Date A Live II: Kurumi Star Festival","english":null,"native":"デート・ア・ライブ II 狂三スターフェスティバル","synonyms":[" Date A Live II Episode 11"," Date A Live II OVA","Date A Live: Encore"],"format":"OVA","episodes":1,"season":"FALL","year":2014,"start_date":{"year":2014,"month":12,"day":9},"status":"FINISHED"},{"index":22,"id":20800,"mal_id":25519,"title":"Yuuki Yuuna wa Yuusha de Aru","english":"Yuki Yuna is a Hero","native":"結城友奈は勇者である","synonyms":[" YuYuYu","สาวน้อยชมรมผู้กล้า"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":17},"status":"FINISHED"},{"index":23,"id":20670,"mal_id":23317,"title":"Kuroshitsuji: Book of Murder","english":"Black Butler: Book of Murder","native":"黒執事 Book of Murder","synonyms":["Phantomhive Manor Murder Case","คนลึกไขปริศนาลับ: Book of Murder"],"format":"OVA","episodes":2,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":25},"status":"FINISHED"},{"index":24,"id":20719,"mal_id":24231,"title":"Hitsugi no Chaika: AVENGING BATTLE","english":"Chaika -The Coffin Princess- AVENGING BATTLE","native":"棺姫のチャイカ AVENGING BATTLE","synonyms":[],"format":"TV","episodes":10,"season":"FALL","year":2014,"start_date":{"year":2014,"month":10,"day":9},"status":"FINISHED"}],"jikan":[{"index":0,"id":23273,"mal_id":23273,"title":"Shigatsu wa Kimi no Uso","english":"Your Lie in April","native":"四月は君の嘘","synonyms":["Kimiuso"],"format":"TV","episodes":22,"season":"FALL","year":2014,"start_date":{"day":10,"month":10,"year":2014},"status":"Finished Airing"},{"index":1,"id":23755,"mal_id":23755,"title":"Nanatsu no Taizai","english":"The Seven Deadly Sins","native":"七つの大罪","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":2,"id":22535,"mal_id":22535,"title":"Kiseijuu: Sei no Kakuritsu","english":"Parasyte: The Maxim","native":"寄生獣 セイの格率","synonyms":["Parasite","Parasitic Beasts","Parasyte"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"day":9,"month":10,"year":2014},"status":"Finished Airing"},{"index":3,"id":22297,"mal_id":22297,"title":"Fate/stay night: Unlimited Blade Works","english":"Fate/stay night [Unlimited Blade Works]","native":"Fate/stay night [Unlimited Blade Works]","synonyms":["Fate/stay night (2014)","Fate - Stay Night"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"day":12,"month":10,"year":2014},"status":"Finished Airing"},{"index":4,"id":25013,"mal_id":25013,"title":"Akatsuki no Yona","english":"Yona of the Dawn","native":"暁のヨナ","synonyms":["Yona: The girl standing in the blush of dawn"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"day":7,"month":10,"year":2014},"status":"Finished Airing"},{"index":5,"id":25157,"mal_id":25157,"title":"Trinity Seven","english":"Trinity Seven","native":"トリニティセブン","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"day":8,"month":10,"year":2014},"status":"Finished Airing"},{"index":6,"id":22147,"mal_id":22147,"title":"Amagi Brilliant Park","english":"Amagi Brilliant Park","native":"甘城ブリリアントパーク","synonyms":["Amaburi"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"day":7,"month":10,"year":2014},"status":"Finished Airing"},{"index":7,"id":23281,"mal_id":23281,"title":"Psycho-Pass 2","english":"Psycho-Pass 2","native":"PSYCHO-PASS サイコパス 2","synonyms":["Psycho-Pass Second Season","Psychopath 2nd Season"],"format":"TV","episodes":11,"season":"FALL","year":2014,"start_date":{"day":10,"month":10,"year":2014},"status":"Finished Airing"},{"index":8,"id":16870,"mal_id":16870,"title":"The Last: Naruto the Movie","english":"Naruto Shippuden the Movie 7: The Last","native":"THE LAST NARUTO THE MOVIE","synonyms":["Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":12,"year":2014},"status":"Finished Airing"},{"index":9,"id":17729,"mal_id":17729,"title":"Grisaia no Kajitsu","english":"The Fruit of Grisaia","native":"グリザイアの果実","synonyms":["Le Fruit de la Grisaia"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":10,"id":23321,"mal_id":23321,"title":"Log Horizon 2nd Season","english":"Log Horizon 2","native":"ログ・ホライズン 第2シリーズ","synonyms":["Log Horizon Second Season","Log Horizon Dai 2 Series"],"format":"TV","episodes":25,"season":"FALL","year":2014,"start_date":{"day":4,"month":10,"year":2014},"status":"Finished Airing"},{"index":11,"id":25781,"mal_id":25781,"title":"Shingeki no Kyojin: Kuinaki Sentaku","english":"Attack on Titan: No Regrets","native":"進撃の巨人 悔いなき選択","synonyms":["Shingeki no Kyojin: Birth of Levi"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":9,"month":12,"year":2014},"status":"Finished Airing"},{"index":12,"id":23673,"mal_id":23673,"title":"Ookami Shoujo to Kuro Ouji","english":"Wolf Girl & Black Prince","native":"オオカミ少女と黒王子","synonyms":["Ookami Shoujo to Kuroouji","Wolf Girl & Black Prince"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":13,"id":25835,"mal_id":25835,"title":"Shirobako","english":"Shirobako","native":"SHIROBAKO","synonyms":["White Box"],"format":"TV","episodes":24,"season":"FALL","year":2014,"start_date":{"day":9,"month":10,"year":2014},"status":"Finished Airing"},{"index":14,"id":24405,"mal_id":24405,"title":"World Trigger","english":"World Trigger","native":"ワールドトリガー","synonyms":[],"format":"TV","episodes":73,"season":"FALL","year":2014,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":15,"id":25159,"mal_id":25159,"title":"Inou-Battle wa Nichijou-kei no Naka de","english":"When Supernatural Battles Became Commonplace","native":"異能バトルは日常系のなかで","synonyms":["InoBato","Inou-Battle in the Usually Daze.","Inou Battle Within Everyday Life"],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"day":7,"month":10,"year":2014},"status":"Finished Airing"},{"index":16,"id":28025,"mal_id":28025,"title":"Tsukimonogatari","english":"Tsukimonogatari","native":"憑物語","synonyms":["Tsukimonogatari: Yotsugi Doll","Monogatari Final Season"],"format":"TV Special","episodes":4,"season":null,"year":null,"start_date":{"day":31,"month":12,"year":2014},"status":"Finished Airing"},{"index":17,"id":21843,"mal_id":21843,"title":"Shingeki no Bahamut: Genesis","english":"Rage of Bahamut: Genesis","native":"神撃のバハムート GENESIS","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2014,"start_date":{"day":6,"month":10,"year":2014},"status":"Finished Airing"},{"index":18,"id":24455,"mal_id":24455,"title":"Madan no Ou to Vanadis","english":"Lord Marksman and Vanadis","native":"魔弾の王と戦姫 (ヴァナディース)","synonyms":["Madan no Ou to Senki","The King of the Magic Bullet and Vanadis"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"day":4,"month":10,"year":2014},"status":"Finished Airing"},{"index":19,"id":26349,"mal_id":26349,"title":"Danna ga Nani wo Itteiru ka Wakaranai Ken","english":"I Can't Understand What My Husband Is Saying","native":"旦那が何を言っているかわからない件","synonyms":["Danna ga Nani wo Itteiru ka Wakaranai Ken"],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"day":3,"month":10,"year":2014},"status":"Finished Airing"},{"index":20,"id":27821,"mal_id":27821,"title":"Fate/stay night: Unlimited Blade Works Prologue","english":"Fate/stay night [Unlimited Blade Works] - Prologue","native":"Fate/stay night [Unlimited Blade Works] プロローグ","synonyms":["Fate/stay night (2014) Episode 00"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":21,"id":24701,"mal_id":24701,"title":"Mushishi Zoku Shou 2nd Season","english":"Mushi-shi: Next Passage Part 2","native":"蟲師 続章","synonyms":["Mushishi Zoku Shou 2nd Season"],"format":"TV","episodes":10,"season":"FALL","year":2014,"start_date":{"day":19,"month":10,"year":2014},"status":"Finished Airing"},{"index":22,"id":22687,"mal_id":22687,"title":"Terra Formars","english":null,"native":"TERRA FORMARS [テラフォーマーズ]","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2014,"start_date":{"day":27,"month":9,"year":2014},"status":"Finished Airing"},{"index":23,"id":25731,"mal_id":25731,"title":"Cross Ange: Tenshi to Ryuu no Rondo","english":"Cross Ange: Rondo of Angel and Dragon","native":"クロスアンジュ 天使と竜の輪舞〈ロンド〉","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2014,"start_date":{"day":5,"month":10,"year":2014},"status":"Finished Airing"},{"index":24,"id":24231,"mal_id":24231,"title":"Hitsugi no Chaika: Avenging Battle","english":"Chaika -The Coffin Princess- Avenging Battle","native":"棺姫のチャイカ AVENGING BATTLE","synonyms":["Hitsugi no Chaika 2nd Season","Hitsugi no Chaika Second Season"],"format":"TV","episodes":10,"season":"FALL","year":2014,"start_date":{"day":9,"month":10,"year":2014},"status":"Finished Airing"}]},{"year":2016,"season":"fall","anilist":[{"index":0,"id":21698,"mal_id":32935,"title":"Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou","english":"HAIKYU!! 3rd Season","native":"ハイキュー!! 烏野高校 VS 白鳥沢学園高校","synonyms":["Haikyu!! Karasuno High vs Shiratorizawa Academy","Haikyuu!! 3","ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3"],"format":"TV","episodes":10,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":8},"status":"FINISHED"},{"index":1,"id":21679,"mal_id":32867,"title":"Bungou Stray Dogs 2nd Season","english":"Bungo Stray Dogs 2","native":"文豪ストレイドッグス 第2シーズン","synonyms":["Bungou Stray Dogs (2016)","คณะประพันธกรจรจัด ภาค 2"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":6},"status":"FINISHED"},{"index":2,"id":21709,"mal_id":32995,"title":"Yuuri!!! on ICE","english":"Yuri!!! on ICE","native":"ユーリ!!! on ICE","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":6},"status":"FINISHED"},{"index":3,"id":21366,"mal_id":31646,"title":"3-gatsu no Lion","english":"March comes in like a lion","native":"3月のライオン","synonyms":["Sangatsu no Lion","Un marzo da leoni","מרץ מגיע כאריה","أسد آذار"],"format":"TV","episodes":22,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":8},"status":"FINISHED"},{"index":4,"id":21123,"mal_id":31339,"title":"DRIFTERS","english":"DRIFTERS","native":"DRIFTERS","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":7},"status":"FINISHED"},{"index":5,"id":21639,"mal_id":32686,"title":"Keijo!!!!!!!!","english":"Keijo!!!!!!!!","native":"競女!!!!!!!!","synonyms":["Hip Whip Girl"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":6},"status":"FINISHED"},{"index":6,"id":21686,"mal_id":32899,"title":"Watashi ga Motete Dousunda","english":"Kiss Him, Not Me","native":"私がモテてどうすんだ","synonyms":["私モテ","WatashiMote","WataMote","Bésalo a él, no a mí","Aku Jadi Populer, Gimana Sih?"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":7},"status":"FINISHED"},{"index":7,"id":21051,"mal_id":30016,"title":"Nanbaka","english":"NANBAKA","native":"ナンバカ","synonyms":["Nambaka","The Numbers"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":5},"status":"FINISHED"},{"index":8,"id":21460,"mal_id":31988,"title":"Hibike! Euphonium 2","english":"Sound! Euphonium 2","native":"響け!ユーフォニアム 2","synonyms":["Résonne ! Euphonium 2"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":6},"status":"FINISHED"},{"index":9,"id":21769,"mal_id":33161,"title":"Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku: Kitto, Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru","english":"My Teen Romantic Comedy SNAFU TOO! OVA","native":"やはり俺の青春ラブコメはまちがっている。 続 「きっと、女の子はお砂糖とスパイスと素敵な何かでできている。」","synonyms":["Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA","やはり俺の青春ラブコメはまちがっている。 続 OVA ","Oregairu Zoku OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":27},"status":"FINISHED"},{"index":10,"id":97815,"mal_id":34321,"title":"Fate/Grand Order: First Order","english":"Fate/Grand Order: First Order","native":"Fate/Grand Order -First Order-","synonyms":["פייט/המסדר העליון: הפקודה הראשונה","Судьба/Великий приказ: Первый приказ"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":12,"day":31},"status":"FINISHED"},{"index":11,"id":21714,"mal_id":32979,"title":"Flip Flappers","english":"FLIP FLAPPERS","native":"フリップフラッパーズ","synonyms":["轻拍翻转小魔女","Flip Flappers: Fantazja kontra świat"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":6},"status":"FINISHED"},{"index":12,"id":15227,"mal_id":15227,"title":"Kono Sekai no Katasumi ni","english":"In This Corner of the World","native":"この世界の片隅に","synonyms":["To All the Corners of the World","En Este Rincón del Mundo","Dans un recoin de ce monde","Ở một góc nhân gian","W tym zakątku świata","In questo angolo di mondo"],"format":"MOVIE","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":11,"day":12},"status":"FINISHED"},{"index":13,"id":21799,"mal_id":33253,"title":"Ajin 2","english":"AJIN: Demi-Human 2","native":"亜人 2","synonyms":["AJIN: Semihumano 2","อาจิน สายพันธุ์อมนุษย์ ภาค 2"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":8},"status":"FINISHED"},{"index":14,"id":97672,"mal_id":34103,"title":"Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen","english":"Danganronpa 3: The End of Hope's Peak High School - Hope Arc","native":"ダンガンロンパ3-The End of 希望ヶ峰学園-希望編","synonyms":[],"format":"SPECIAL","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":9,"day":29},"status":"FINISHED"},{"index":15,"id":21660,"mal_id":32801,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?","native":"ダンジョンに出会いを求めるのは間違っているだろうか ダンジョンに温泉を求めるのは 間違っているだろうか","synonyms":["Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA","Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA","ダンまち OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":12,"day":7},"status":"FINISHED"},{"index":16,"id":21815,"mal_id":33286,"title":"Strike the Blood II","english":"Strike the Blood Second","native":"ストライク・ザ・ブラッド II","synonyms":["ราชันย์โลหิตรัตติกาล ภาค 2"],"format":"OVA","episodes":8,"season":"FALL","year":2016,"start_date":{"year":2016,"month":11,"day":23},"status":"FINISHED"},{"index":17,"id":97716,"mal_id":34213,"title":"Getsuyoubi no Tawawa","english":"Tawawa on Monday","native":"月曜日のたわわ","synonyms":["วันจันทร์คือวันดึ๋งดึ๋ง"],"format":"ONA","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":10},"status":"FINISHED"},{"index":18,"id":21708,"mal_id":32962,"title":"Occultic;Nine","english":"Occultic;Nine","native":"Occultic;Nine -オカルティック・ナイン-","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":9},"status":"FINISHED"},{"index":19,"id":21838,"mal_id":33433,"title":"Shuumatsu no Izetta","english":"Izetta: The Last Witch","native":"終末のイゼッタ","synonyms":["Izetta, die letzte Hexe"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":1},"status":"FINISHED"},{"index":20,"id":21340,"mal_id":33003,"title":"Mahou Shoujo Ikusei Keikaku","english":"Magical Girl Raising Project","native":"魔法少女育成計画","synonyms":["まほいく","MahoIku"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":2},"status":"FINISHED"},{"index":21,"id":21803,"mal_id":33263,"title":"Kubikiri Cycle: Aoiro Savant to Zaregotozukai","english":"Kubikiri Cycle: The Blue Savant and the Nonsense User","native":"クビキリサイクル 青色サヴァンと戯言遣い","synonyms":["Zaregoto Series","Decapitation Cycle","Kubikiri Cycle: Aoiro Savant to Zaregoto Tsukai"],"format":"OVA","episodes":8,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":26},"status":"FINISHED"},{"index":22,"id":97669,"mal_id":34136,"title":"orange: Mirai","english":"Orange: Future","native":"orange -未来-","synonyms":["オレンジ -未来-"],"format":"MOVIE","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":11,"day":18},"status":"FINISHED"},{"index":23,"id":21710,"mal_id":32983,"title":"Natsume Yuujinchou Go","english":"Natsume's Book of Friends Season 5","native":"夏目友人帳 伍","synonyms":["Natsume's Book of Friends Five"],"format":"TV","episodes":11,"season":"FALL","year":2016,"start_date":{"year":2016,"month":10,"day":5},"status":"FINISHED"},{"index":24,"id":101102,"mal_id":33513,"title":"Ansatsu Kyoushitsu Movie: 365-Nichi no Jikan","english":"Assassination Classroom the Movie: 365 Days‘ Time","native":"劇場版 暗殺教室 365日の時間","synonyms":["Assassination Classroom the Movie: 365 Days"],"format":"MOVIE","episodes":1,"season":"FALL","year":2016,"start_date":{"year":2016,"month":11,"day":19},"status":"FINISHED"}],"jikan":[{"index":0,"id":32935,"mal_id":32935,"title":"Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou","english":"Haikyu!! 3rd Season","native":"ハイキュー!! 烏野高校 VS 白鳥沢学園高校","synonyms":["Haikyuu!! Third Season","Haikyuu!! Karasuno High VS Shiratorizawa Academy"],"format":"TV","episodes":10,"season":"FALL","year":2016,"start_date":{"day":8,"month":10,"year":2016},"status":"Finished Airing"},{"index":1,"id":32995,"mal_id":32995,"title":"Yuri!!! on Ice","english":"Yuri!!! On Ice","native":"ユーリ!!! on ICE","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":6,"month":10,"year":2016},"status":"Finished Airing"},{"index":2,"id":32867,"mal_id":32867,"title":"Bungou Stray Dogs 2nd Season","english":"Bungo Stray Dogs 2","native":"文豪ストレイドッグス","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":6,"month":10,"year":2016},"status":"Finished Airing"},{"index":3,"id":31646,"mal_id":31646,"title":"3-gatsu no Lion","english":"March Comes In Like a Lion","native":"3月のライオン","synonyms":["Sangatsu no Lion"],"format":"TV","episodes":22,"season":"FALL","year":2016,"start_date":{"day":8,"month":10,"year":2016},"status":"Finished Airing"},{"index":4,"id":31339,"mal_id":31339,"title":"Drifters","english":"Drifters","native":"DRIFTERS","synonyms":["Drifters: Battle in a Brand-new World War"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":7,"month":10,"year":2016},"status":"Finished Airing"},{"index":5,"id":32899,"mal_id":32899,"title":"Watashi ga Motete Dousunda","english":"Kiss Him, Not Me!","native":"私がモテてどうすんだ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":7,"month":10,"year":2016},"status":"Finished Airing"},{"index":6,"id":32686,"mal_id":32686,"title":"Keijo!!!!!!!!","english":"Keijo!!!!!!!!","native":"競女!!!!!!!!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":6,"month":10,"year":2016},"status":"Finished Airing"},{"index":7,"id":30016,"mal_id":30016,"title":"Nanbaka","english":"Nanbaka","native":"ナンバカ","synonyms":["Nambaka","Numbaka","The Numbers"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"day":5,"month":10,"year":2016},"status":"Finished Airing"},{"index":8,"id":34240,"mal_id":34240,"title":"Shelter (Music)","english":"Shelter","native":"シェルター","synonyms":[],"format":"Music","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":10,"year":2016},"status":"Finished Airing"},{"index":9,"id":33253,"mal_id":33253,"title":"Ajin Part 2","english":"Ajin: Demi-Human 2nd Season","native":"亜人 第2クール","synonyms":["Ajin 2nd Season,"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"day":8,"month":10,"year":2016},"status":"Finished Airing"},{"index":10,"id":33161,"mal_id":33161,"title":"Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA","english":"My Teen Romantic Comedy SNAFU TOO! OVA","native":"やはり俺の青春ラブコメはまちがっている. 続 きっと, 女の子はお砂糖とスパイスと素敵な何かでできている。","synonyms":["Oregairu 2 OVA","Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku: Kitto","Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":27,"month":10,"year":2016},"status":"Finished Airing"},{"index":11,"id":31988,"mal_id":31988,"title":"Hibike! Euphonium 2","english":"Sound! Euphonium 2","native":"響け!ユーフォニアム2","synonyms":["Hibike! Euphonium Second Season"],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"day":6,"month":10,"year":2016},"status":"Finished Airing"},{"index":12,"id":34321,"mal_id":34321,"title":"Fate/Grand Order: First Order","english":"Fate/Grand Order -First Order-","native":"Fate/Grand Order -First Order-","synonyms":[],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":12,"year":2016},"status":"Finished Airing"},{"index":13,"id":15227,"mal_id":15227,"title":"Kono Sekai no Katasumi ni","english":"In This Corner of the World","native":"この世界の片隅に","synonyms":["To All the Corners of the World"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":11,"year":2016},"status":"Finished Airing"},{"index":14,"id":33286,"mal_id":33286,"title":"Strike the Blood II","english":"Strike the Blood Second","native":"ストライク・ザ・ブラッドⅡ","synonyms":[],"format":"OVA","episodes":8,"season":null,"year":null,"start_date":{"day":23,"month":11,"year":2016},"status":"Finished Airing"},{"index":15,"id":32983,"mal_id":32983,"title":"Natsume Yuujinchou Go","english":"Natsume's Book of Friends Season 5","native":"夏目友人帳 伍","synonyms":["Natsume Yuujinchou Season 5","Natsume's Book of Friends Five"],"format":"TV","episodes":11,"season":"FALL","year":2016,"start_date":{"day":5,"month":10,"year":2016},"status":"Finished Airing"},{"index":16,"id":32962,"mal_id":32962,"title":"Occultic;Nine","english":"Occultic;Nine","native":"Occultic;Nine -オカルティック・ナイン-","synonyms":["Occultic9","Occultic Nine"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":9,"month":10,"year":2016},"status":"Finished Airing"},{"index":17,"id":32979,"mal_id":32979,"title":"Flip Flappers","english":"Flip Flappers","native":"フリップフラッパーズ","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"day":6,"month":10,"year":2016},"status":"Finished Airing"},{"index":18,"id":33433,"mal_id":33433,"title":"Shuumatsu no Izetta","english":"Izetta: The Last Witch","native":"終末のイゼッタ","synonyms":["Izetta","Die Letzte Hexe"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":1,"month":10,"year":2016},"status":"Finished Airing"},{"index":19,"id":32801,"mal_id":32801,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?","native":"ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」","synonyms":["DanMachi OVA","Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":7,"month":12,"year":2016},"status":"Finished Airing"},{"index":20,"id":32603,"mal_id":32603,"title":"Okusama ga Seitokaichou!+!","english":"My Wife is the Student Council President!+","native":"おくさまが生徒会長!+!","synonyms":["My Wife is the Student Council President 2nd Season","Oku-sama ga Seito Kaichou! 2nd Season","Okusama ga Seitokaichou! Plus"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":2,"month":10,"year":2016},"status":"Finished Airing"},{"index":21,"id":33003,"mal_id":33003,"title":"Mahou Shoujo Ikusei Keikaku","english":"Magical Girl Raising Project","native":"魔法少女育成計画","synonyms":["MahouIku"],"format":"TV","episodes":12,"season":"FALL","year":2016,"start_date":{"day":2,"month":10,"year":2016},"status":"Finished Airing"},{"index":22,"id":34213,"mal_id":34213,"title":"Getsuyoubi no Tawawa","english":"Tawawa on Monday","native":"月曜日のたわわ","synonyms":["Tawawa on Monday"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":10,"month":10,"year":2016},"status":"Finished Airing"},{"index":23,"id":33094,"mal_id":33094,"title":"WWW.Working!!","english":"WWW.WAGNARIA!!","native":"WWW.WORKING!!","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2016,"start_date":{"day":1,"month":10,"year":2016},"status":"Finished Airing"},{"index":24,"id":33051,"mal_id":33051,"title":"Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season","english":"Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season","native":"機動戦士ガンダム 鉄血のオルフェンズ 第2期","synonyms":["G-Tekketsu 2nd Season"],"format":"TV","episodes":25,"season":"FALL","year":2016,"start_date":{"day":2,"month":10,"year":2016},"status":"Finished Airing"}]},{"year":2018,"season":"fall","anilist":[{"index":0,"id":101291,"mal_id":37450,"title":"Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai","english":"Rascal Does Not Dream of Bunny Girl Senpai","native":"青春ブタ野郎はバニーガール先輩の夢を見ない","synonyms":["AoButa","青春猪头少年不会梦到兔女郎学姐","Негодник, которому не снилась девушка-кролик","Этот глупый свин не понимает мечту девочки-зайки","青ブタ"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":4},"status":"FINISHED"},{"index":1,"id":101280,"mal_id":37430,"title":"Tensei Shitara Slime Datta Ken","english":"That Time I Got Reincarnated as a Slime","native":"転生したらスライムだった件","synonyms":["転スラ","TenSura","Vita da Slime","Moi, quand je me réincarne en Slime","关于我转生变成史莱姆这档事","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว","Meine Wiedergeburt als Schleim in einer anderen Welt","О моём перерождении в слизь","TTIGRAAS","Lúc đó tôi đã chuyển sinh thành Slime"],"format":"TV","episodes":24,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":2},"status":"FINISHED"},{"index":2,"id":101165,"mal_id":37349,"title":"Goblin Slayer","english":"GOBLIN SLAYER","native":"ゴブリンスレイヤー","synonyms":["ก็อบลิน สเลเยอร์"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":7},"status":"FINISHED"},{"index":3,"id":102883,"mal_id":37991,"title":"JoJo no Kimyou na Bouken: Ougon no Kaze","english":"JoJo's Bizarre Adventure: Golden Wind","native":"ジョジョの奇妙な冒険 黄金の風","synonyms":["JoJo's Bizarre Adventure Part 5","JoJo's Bizarre Adventure: Vento Aureo","Le Bizzarre Avventure Di GioGio: Vento Aureo","مغامرات جوجو العجيبة: الرياح الذهبية","Невероятные приключения ДжоДжо: Золотой ветер"],"format":"TV","episodes":39,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":4,"id":100182,"mal_id":36474,"title":"Sword Art Online: Alicization","english":"Sword Art Online: Alicization","native":"ソードアート・オンライン アリシゼーション","synonyms":["SAOIII","SAO3","Alicization","Sword Art Online III","ซอร์ดอาร์ตออนไลน์: Alicization","ซอร์ดอาร์ตออนไลน์ ภาค 3"],"format":"TV","episodes":24,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":7},"status":"FINISHED"},{"index":5,"id":102351,"mal_id":37799,"title":"Tokyo Ghoul:re 2","english":"Tokyo Ghoul:re 2","native":"東京喰種-トーキョーグール-:re 2","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":9},"status":"FINISHED"},{"index":6,"id":103871,"mal_id":37976,"title":"Zombie Land Saga","english":"ZOMBIE LAND SAGA","native":"ゾンビランドサガ","synonyms":["Zombieland Saga","佐贺偶像是传奇","Зомбилэнд-Сага"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":4},"status":"FINISHED"},{"index":7,"id":99749,"mal_id":35972,"title":"FAIRY TAIL (2018)","english":"Fairy Tail Final Season","native":"FAIRY TAIL (2018)","synonyms":["Fairy Tail 3","Fairy Tail Series 3","フェアリーテイル (2018)"],"format":"TV","episodes":51,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":7},"status":"FINISHED"},{"index":8,"id":101573,"mal_id":37786,"title":"Yagate Kimi ni Naru","english":"Bloom Into You","native":"やがて君になる","synonyms":["YagaKimi","สุดท้ายก็คือเธอ"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":5},"status":"FINISHED"},{"index":9,"id":101302,"mal_id":36946,"title":"Dragon Ball Super: Broly","english":"Dragon Ball Super: Broly","native":"ドラゴンボール超 ブロリー","synonyms":["Драконий жемчуг: Супер — Броли"],"format":"MOVIE","episodes":1,"season":"FALL","year":2018,"start_date":{"year":2018,"month":12,"day":14},"status":"FINISHED"},{"index":10,"id":101310,"mal_id":37475,"title":"Kishuku Gakkou no Juliet","english":"Boarding School Juliet","native":"寄宿学校のジュリエット","synonyms":["To LOVE, or not to LOVE","JULIET NO INTERNATO","รักลับๆ ข้ามหอของนายหมากับน้องแมว","Juliet en el internado"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":11,"id":100049,"mal_id":36286,"title":"Re:Zero kara Hajimeru Isekai Seikatsu OVAs","english":"Re:ZERO -Starting Life in Another World- OVAs","native":"Re:ゼロから始める異世界生活 OVAs","synonyms":["Re:ZERO -Starting Life in Another World- Memory Snow","Re:ZERO -Starting Life in Another World- The Frozen Bond","Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow","Re:Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna","Re:ゼロから始める異世界生活 Memory Snow","Re:ゼロから始める異世界生活 氷結の絆","Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก Memory Snow","Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก The Frozen Bond","Re:Zero — жизнь с нуля в другом мире OVA. Ледяные узы"],"format":"OVA","episodes":2,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":12,"id":99424,"mal_id":35847,"title":"SSSS.GRIDMAN","english":"SSSS.GRIDMAN","native":"SSSS.GRIDMAN","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":7},"status":"FINISHED"},{"index":13,"id":101316,"mal_id":37497,"title":"Irozuku Sekai no Ashita kara","english":"IRODUKU: The World in Colors","native":"色づく世界の明日から","synonyms":["So Many Colors In The Future What A Wonderful World","Iroduku","IRODUKU: O Mundo em Cores","IRODUKU: Le Monde en couleur","IRODUKU: El mundo en colores"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":14,"id":101903,"mal_id":37965,"title":"Kaze ga Tsuyoku Fuiteiru","english":"Run with the Wind","native":"風が強く吹いている","synonyms":["KazeTsuyo","В ногу с ветром"],"format":"TV","episodes":23,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":3},"status":"FINISHED"},{"index":15,"id":104580,"mal_id":38249,"title":"Saiki Kusuo no Ψ-nan: Kanketsu-hen","english":"The Disastrous Life of Saiki K. Season 3","native":"斉木楠雄のΨ難 完結編","synonyms":["Saiki Kusuo no Psi Nan 3"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2018,"start_date":{"year":2018,"month":12,"day":28},"status":"FINISHED"},{"index":16,"id":100185,"mal_id":36432,"title":"Toaru Majutsu no Index III","english":"A Certain Magical Index III","native":"とある魔術の禁書目録III","synonyms":["Toaru Majutsu no Index 3","魔法禁书目录第三季","魔法禁书目录 3","อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3","Cấm thư ma thuật Index III"],"format":"TV","episodes":26,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":5},"status":"FINISHED"},{"index":17,"id":101024,"mal_id":37202,"title":"Radiant","english":"RADIANT","native":"ラディアン","synonyms":[],"format":"TV","episodes":21,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":18,"id":102977,"mal_id":37989,"title":"Golden Kamuy 2nd Season","english":"Golden Kamuy Season 2","native":"ゴールデンカムイ 第二期","synonyms":["Golden Kamui 2"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":8},"status":"FINISHED"},{"index":19,"id":100402,"mal_id":36653,"title":"Tsurune: Kazemai Koukou Kyuudou-bu","english":"Tsurune","native":"ツルネ ―風舞高校弓道部―","synonyms":["Tsurune - Il tiro che unisce"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":22},"status":"FINISHED"},{"index":20,"id":101381,"mal_id":37597,"title":"Dakaretai Otoko 1-i ni Odosarete Imasu.","english":"DAKAICHI -I'm being harassed by the sexiest man of the year-","native":"抱かれたい男1位に脅されています。","synonyms":["我让最想被拥抱的男人给威胁了"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":6},"status":"FINISHED"},{"index":21,"id":100382,"mal_id":36632,"title":"Ore ga Suki nano wa Imouto dakedo Imouto ja Nai","english":"My Sister, My Writer","native":"俺が好きなのは妹だけど妹じゃない","synonyms":["ImoImo"],"format":"TV","episodes":10,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":10},"status":"FINISHED"},{"index":22,"id":100093,"mal_id":36317,"title":"Gaikotsu Shotenin Honda-san","english":"Skull-face Bookseller Honda-san","native":"ガイコツ書店員本田さん","synonyms":["Gaikotsu Shotenin Honda san","Gaikotsu Syotenin Honda san"],"format":"TV_SHORT","episodes":12,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":8},"status":"FINISHED"},{"index":23,"id":104243,"mal_id":null,"title":"Satsuriku no Tenshi (ONA)","english":"Angels of Death (ONA)","native":"殺戮の天使 (ONA)","synonyms":[],"format":"ONA","episodes":4,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":5},"status":"FINISHED"},{"index":24,"id":101336,"mal_id":37447,"title":"Karakuri Circus","english":"Karakuri Circus","native":"からくりサーカス","synonyms":["Le Cirque de Karakuri"],"format":"TV","episodes":36,"season":"FALL","year":2018,"start_date":{"year":2018,"month":10,"day":11},"status":"FINISHED"}],"jikan":[{"index":0,"id":37450,"mal_id":37450,"title":"Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai","english":"Rascal Does Not Dream of Bunny Girl Senpai","native":"青春ブタ野郎はバニーガール先輩の夢を見ない","synonyms":["AoButa"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"day":4,"month":10,"year":2018},"status":"Finished Airing"},{"index":1,"id":37430,"mal_id":37430,"title":"Tensei shitara Slime Datta Ken","english":"That Time I Got Reincarnated as a Slime","native":"転生したらスライムだった件","synonyms":["TenSura"],"format":"TV","episodes":24,"season":"FALL","year":2018,"start_date":{"day":2,"month":10,"year":2018},"status":"Finished Airing"},{"index":2,"id":37349,"mal_id":37349,"title":"Goblin Slayer","english":"Goblin Slayer","native":"ゴブリンスレイヤー","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":7,"month":10,"year":2018},"status":"Finished Airing"},{"index":3,"id":37991,"mal_id":37991,"title":"JoJo no Kimyou na Bouken Part 5: Ougon no Kaze","english":"JoJo's Bizarre Adventure: Golden Wind","native":"ジョジョの奇妙な冒険 黄金の風","synonyms":["JoJo's Bizarre Adventure Part 5: Golden Wind","JoJo no Kimyou na Bouken Part 5: Ougon no Kaze","Le Bizzarre Avventure Di GioGio Parte 5: Vento Aureo"],"format":"TV","episodes":39,"season":"FALL","year":2018,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":4,"id":36474,"mal_id":36474,"title":"Sword Art Online: Alicization","english":"Sword Art Online: Alicization","native":"ソードアート・オンライン アリシゼーション","synonyms":["Sword Art Online III","SAO Alicization","Sword Art Online 3","SAO 3"],"format":"TV","episodes":24,"season":"FALL","year":2018,"start_date":{"day":7,"month":10,"year":2018},"status":"Finished Airing"},{"index":5,"id":37799,"mal_id":37799,"title":"Tokyo Ghoul:re 2nd Season","english":"Tokyo Ghoul:re 2nd Season","native":"東京喰種トーキョーグール:re 第2期","synonyms":["Tokyo Kushu:re","Toukyou Kuushu:re"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":9,"month":10,"year":2018},"status":"Finished Airing"},{"index":6,"id":35972,"mal_id":35972,"title":"Fairy Tail: Final Series","english":"Fairy Tail Final Series","native":"FAIRY TAIL ファイナルシリーズ","synonyms":["Fairy Tail Season 3","Fairy Tail (2018)"],"format":"TV","episodes":51,"season":"FALL","year":2018,"start_date":{"day":7,"month":10,"year":2018},"status":"Finished Airing"},{"index":7,"id":37976,"mal_id":37976,"title":"Zombieland Saga","english":"Zombie Land Saga","native":"ゾンビランドサガ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":4,"month":10,"year":2018},"status":"Finished Airing"},{"index":8,"id":36946,"mal_id":36946,"title":"Dragon Ball Super: Broly","english":"Dragon Ball Super: Broly","native":"ドラゴンボール超(スーパー) ブロリー","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":14,"month":12,"year":2018},"status":"Finished Airing"},{"index":9,"id":37475,"mal_id":37475,"title":"Kishuku Gakkou no Juliet","english":"Boarding School Juliet","native":"寄宿学校のジュリエット","synonyms":["Kishukugakkou no Juliet"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":10,"id":37786,"mal_id":37786,"title":"Yagate Kimi ni Naru","english":"Bloom Into You","native":"やがて君になる","synonyms":["YagaKimi","Eventually","I Will Become You"],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"day":5,"month":10,"year":2018},"status":"Finished Airing"},{"index":11,"id":37497,"mal_id":37497,"title":"Irozuku Sekai no Ashita kara","english":"Iroduku: The World in Colors","native":"色づく世界の明日から","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":12,"id":37965,"mal_id":37965,"title":"Kaze ga Tsuyoku Fuiteiru","english":"Run with the Wind","native":"風が強く吹いている","synonyms":["Kaze ga Tsuyoku Fuite Iru","Kazetsuyo"],"format":"TV","episodes":23,"season":"FALL","year":2018,"start_date":{"day":3,"month":10,"year":2018},"status":"Finished Airing"},{"index":13,"id":36286,"mal_id":36286,"title":"Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow","english":"Re:ZERO -Starting Life in Another World- Memory Snow","native":"Re:ゼロから始める異世界生活 Memory Snow","synonyms":["Re: Life in a different world from zero","ReZero","Re:Zero kara Hajimeru Isekai Seikatsu OVA"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":14,"id":35847,"mal_id":35847,"title":"SSSS.Gridman","english":"SSSS.Gridman","native":"SSSS.GRIDMAN","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":7,"month":10,"year":2018},"status":"Finished Airing"},{"index":15,"id":36432,"mal_id":36432,"title":"Toaru Majutsu no Index III","english":"A Certain Magical Index III","native":"とある魔術の禁書目録Ⅲ","synonyms":["Toaru Majutsu no Index 3","Toaru Majutsu no Kinsho Mokuroku 3"],"format":"TV","episodes":26,"season":"FALL","year":2018,"start_date":{"day":5,"month":10,"year":2018},"status":"Finished Airing"},{"index":16,"id":38249,"mal_id":38249,"title":"Saiki Kusuo no Ψ-nan: Kanketsu-hen","english":"The Disastrous Life of Saiki K. Final Arc","native":"斉木楠雄のΨ難 完結編","synonyms":["Saiki Kusuo no Psi Nan 3"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":28,"month":12,"year":2018},"status":"Finished Airing"},{"index":17,"id":37989,"mal_id":37989,"title":"Golden Kamuy 2nd Season","english":"Golden Kamuy Season 2","native":"ゴールデンカムイ","synonyms":["Golden Kamuy Second Season"],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":8,"month":10,"year":2018},"status":"Finished Airing"},{"index":18,"id":37202,"mal_id":37202,"title":"Radiant","english":"Radiant","native":"ラディアン","synonyms":[],"format":"TV","episodes":21,"season":"FALL","year":2018,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":19,"id":36653,"mal_id":36653,"title":"Tsurune: Kazemai Koukou Kyuudou-bu","english":"Tsurune: Kazemai High School Kyudo Club","native":"ツルネ ―風舞高校弓道部―","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"day":22,"month":10,"year":2018},"status":"Finished Airing"},{"index":20,"id":37597,"mal_id":37597,"title":"Dakaretai Otoko 1-i ni Odosarete Imasu.","english":"Dakaichi: I'm Being Harassed By the Sexiest Man of the Year","native":"抱かれたい男1位に脅されています。","synonyms":["Dakaretai Otoko Ichii ni Odosarete Imasu.","Dakaretai Otoko No.1 ni Odosareteimasu."],"format":"TV","episodes":13,"season":"FALL","year":2018,"start_date":{"day":6,"month":10,"year":2018},"status":"Finished Airing"},{"index":21,"id":36632,"mal_id":36632,"title":"Ore ga Suki nano wa Imouto dakedo Imouto ja Nai","english":"My Sister, My Writer","native":"俺が好きなのは妹だけど妹じゃない","synonyms":["The One I Love Is a Little Sister","but She's Not My Little Sister"],"format":"TV","episodes":10,"season":"FALL","year":2018,"start_date":{"day":10,"month":10,"year":2018},"status":"Finished Airing"},{"index":22,"id":37447,"mal_id":37447,"title":"Karakuri Circus","english":"Karakuri Circus","native":"からくりサーカス","synonyms":[],"format":"TV","episodes":36,"season":"FALL","year":2018,"start_date":{"day":11,"month":10,"year":2018},"status":"Finished Airing"},{"index":23,"id":37823,"mal_id":37823,"title":"Conception","english":null,"native":"CONCEPTION(コンセプション)","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2018,"start_date":{"day":10,"month":10,"year":2018},"status":"Finished Airing"},{"index":24,"id":37449,"mal_id":37449,"title":"Strike the Blood III","english":null,"native":"ストライク・ザ・ブラッドⅢ","synonyms":["Strike the Blood Third"],"format":"OVA","episodes":10,"season":null,"year":null,"start_date":{"day":19,"month":12,"year":2018},"status":"Finished Airing"}]},{"year":2020,"season":"fall","anilist":[{"index":0,"id":113415,"mal_id":40748,"title":"Jujutsu Kaisen","english":"JUJUTSU KAISEN","native":"呪術廻戦","synonyms":["JJK","Sorcery Fight","咒术回战","주술회전","มหาเวทย์ผนึกมาร","جوجوتسو كايسن","Магическая битва","咒術迴戰"],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":3},"status":"FINISHED"},{"index":1,"id":112151,"mal_id":40456,"title":"Kimetsu no Yaiba: Mugen Ressha-hen","english":"Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train","native":"鬼滅の刃 無限列車編","synonyms":["KnY Movie","Els Guardians de la Nit: El Tren Infinit","Guardianes de la Noche: Tren Infinito","Demon Slayer: Mugen Treni","Demon Slayer: Il Treno Mugen","鬼灭之刃:无限列车篇","قاتل الشياطين الفيلم: قطار اللانهاية","ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์","Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l'Infini","ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ","극장판 귀멸의 칼날: 무한열차편","Клинок, Рассекающий Демонов: Бесконечный Поезд"],"format":"MOVIE","episodes":1,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":16},"status":"FINISHED"},{"index":2,"id":113538,"mal_id":40776,"title":"Haikyuu!! TO THE TOP 2","english":"HAIKYU!! TO THE TOP Part 2","native":"ハイキュー!! TO THE TOP 2","synonyms":["ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2","Haikyu!! Season 4 Part 2","排球少年!! 第四季"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":3},"status":"FINISHED"},{"index":3,"id":116267,"mal_id":41389,"title":"Tonikaku Kawaii","english":"TONIKAWA: Over The Moon For You","native":"トニカクカワイイ","synonyms":["Fly Me to the Moon","Tonikaku Cawaii","Generally Cute","总之就是非常可爱","จะยังไงภรรยาของผมก็น่ารัก","Красавица: Унеси меня на Луну"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":3},"status":"FINISHED"},{"index":4,"id":112124,"mal_id":40454,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? III","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅢ","synonyms":["ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III","Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III","Danmachi III","มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3","ダンまちⅢ"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":3},"status":"FINISHED"},{"index":5,"id":113596,"mal_id":40787,"title":"Josee to Tora to Sakanatachi","english":"Josee, the Tiger and the Fish","native":"ジョゼと虎と魚たち","synonyms":["Josee to Tora to Sakana-tachi","乔西的虎与鱼","Josee, el Tigre y los Peces","Josee, El Tigre i Els Peixos","โจเซ่ กับเสือและหมู่ปลา","Josie, der Tiger und die Fische.","Josée, le tigre et les poissons","Её заветное желание","Жозе, тигр и рыба"," Josée, la Tigre e i Pesci"],"format":"MOVIE","episodes":1,"season":"FALL","year":2020,"start_date":{"year":2020,"month":12,"day":25},"status":"FINISHED"},{"index":6,"id":116566,"mal_id":41433,"title":"Akudama Drive","english":"Akudama Drive","native":"アクダマドライブ","synonyms":["아쿠다마 드라이브","Акудама Драйв"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":8},"status":"FINISHED"},{"index":7,"id":114124,"mal_id":40911,"title":"Yuukoku no Moriarty","english":"Moriarty the Patriot","native":"憂国のモリアーティ","synonyms":["มอริอาร์ตี้ผู้รักชาติ"],"format":"TV","episodes":11,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":11},"status":"FINISHED"},{"index":8,"id":112609,"mal_id":40571,"title":"Majo no Tabitabi","english":"Wandering Witch: The Journey of Elaina","native":"魔女の旅々","synonyms":["MajoTabi","마녀의 여행","魔女之旅","Elainas Reise","การเดินทางของคุณแม่มด","Странствующая ведьма"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":2},"status":"FINISHED"},{"index":9,"id":117343,"mal_id":41619,"title":"Munou na Nana","english":"Talentless Nana","native":"無能なナナ","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":4},"status":"FINISHED"},{"index":10,"id":112300,"mal_id":40497,"title":"Mahouka Koukou no Rettousei: Raihousha-hen","english":"The Irregular at Magic High School: Visitor Arc","native":"魔法科高校の劣等生 来訪者編","synonyms":["The Irregular at Magic High School Season 2","พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2","พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน","Непутёвый ученик в школе магии: Гость"],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":4},"status":"FINISHED"},{"index":11,"id":112667,"mal_id":40595,"title":"Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen","english":"Our Last Crusade or the Rise of a New World","native":"キミと僕の最後の戦場、あるいは世界が始まる聖戦","synonyms":["Kimisen"," ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่","Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":7},"status":"FINISHED"},{"index":12,"id":116673,"mal_id":41468,"title":"BURN THE WITCH","english":"BURN THE WITCH","native":"BURN THE WITCH","synonyms":[],"format":"ONA","episodes":3,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":2},"status":"FINISHED"},{"index":13,"id":116242,"mal_id":41380,"title":"100-man no Inochi no Ue ni Ore wa Tatteiru","english":"I'm Standing on a Million Lives","native":"100万の命の上に俺は立っている","synonyms":["I'm standing on 1,000,000 lives.","ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":2},"status":"FINISHED"},{"index":14,"id":116005,"mal_id":41345,"title":"NOBLESSE","english":"Noblesse","native":"NOBLESSE -ノブレス-","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":8},"status":"FINISHED"},{"index":15,"id":118419,"mal_id":41930,"title":"Kamisama ni Natta Hi","english":"The Day I Became a God","native":"神様になった日","synonyms":["День, когда я стала Богом"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":11},"status":"FINISHED"},{"index":16,"id":114446,"mal_id":41006,"title":"Higurashi no Naku Koro ni Gou","english":"Higurashi: When They Cry - GOU","native":"ひぐらしのなく頃に業","synonyms":["When the Cicadas Cry ","Higurashi: When They Cry - NEW","Higurashi no Naku Koro ni (2020)","ひぐらしのなく頃に (2020)","HIGURASHI: Когда плачут цикады — GOU"],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":1},"status":"FINISHED"},{"index":17,"id":109287,"mal_id":39790,"title":"Adachi to Shimamura","english":"Adachi and Shimamura","native":"安達としまむら","synonyms":["AdaShima","Адати и Симамура"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":9},"status":"FINISHED"},{"index":18,"id":111428,"mal_id":40397,"title":"Maou-jou de Oyasumi","english":"Sleepy Princess in the Demon Castle","native":"魔王城でおやすみ","synonyms":["Maou Jou de Oyasumi","Maoujou de Oyasumi","MaouYasu","在魔王城说晚安"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":6},"status":"FINISHED"},{"index":19,"id":115740,"mal_id":41312,"title":"Kamitachi ni Hirowareta Otoko","english":"By the Grace of the Gods","native":"神達に拾われた男","synonyms":["The man picked up by the gods","Kamihiro","Kami-tachi ni Hirowareta Otoko","เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":4},"status":"FINISHED"},{"index":20,"id":114340,"mal_id":40974,"title":"Kuma Kuma Kuma Bear","english":"Kuma Kuma Kuma Bear","native":"くまクマ熊ベアー","synonyms":["The Bears Bear a Bare Kuma","熊熊勇闯异世界","Ми-ми-ми-мишка"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":7},"status":"FINISHED"},{"index":21,"id":110355,"mal_id":40059,"title":"Golden Kamuy 3rd Season","english":"Golden Kamuy Season 3","native":"ゴールデンカムイ 第三期","synonyms":["Golden Kamui 3"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":5},"status":"FINISHED"},{"index":22,"id":111324,"mal_id":40359,"title":"Ikebukuro West Gate Park","english":"Ikebukuro West Gate Park","native":"池袋ウエストゲートパーク","synonyms":["IWGP"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":6},"status":"FINISHED"},{"index":23,"id":103276,"mal_id":38085,"title":"Fate/Grand Order: Shinsei Entaku Ryouiki Camelot - Wandering; Agateram","english":"Fate/Grand Order Divine Realm of the Round Table: Camelot - Wandering; Agateram","native":"劇場版 Fate/Grand Order -神聖円卓領域キャメロット- 前編 Wandering; Agateram","synonyms":["Судьба/Великий приказ: Камелот — Странствие"],"format":"MOVIE","episodes":1,"season":"FALL","year":2020,"start_date":{"year":2020,"month":12,"day":5},"status":"FINISHED"},{"index":24,"id":118399,"mal_id":41911,"title":"Hanyou no Yashahime","english":"Yashahime: Princess Half-Demon","native":"半妖の夜叉姫","synonyms":["ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร"],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"year":2020,"month":10,"day":3},"status":"FINISHED"}],"jikan":[{"index":0,"id":40748,"mal_id":40748,"title":"Jujutsu Kaisen","english":"Jujutsu Kaisen","native":"呪術廻戦","synonyms":["Sorcery Fight","JJK"],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"day":3,"month":10,"year":2020},"status":"Finished Airing"},{"index":1,"id":40456,"mal_id":40456,"title":"Kimetsu no Yaiba Movie: Mugen Ressha-hen","english":"Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train","native":"劇場版 鬼滅の刃 無限列車編","synonyms":["Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen","Kimetsu no Yaiba: Infinity Train","Demon Slayer Movie: Infinity Train"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":10,"year":2020},"status":"Finished Airing"},{"index":2,"id":40776,"mal_id":40776,"title":"Haikyuu!! To the Top Part 2","english":"Haikyu!! To the Top 2nd-cour","native":"ハイキュー TO THE TOP 第2クール","synonyms":["Haikyu!! TO THE TOP 2nd-cour","Haikyu!! TO THE TOP Part 2"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":3,"month":10,"year":2020},"status":"Finished Airing"},{"index":3,"id":41389,"mal_id":41389,"title":"Tonikaku Kawaii","english":"Tonikawa: Over The Moon For You","native":"トニカクカワイイ","synonyms":["Generally Cute","Fly Me to the Moon"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":3,"month":10,"year":2020},"status":"Finished Airing"},{"index":4,"id":40454,"mal_id":40454,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? III","native":"ダンジョンに出会いを求めるのは間違っているだろうかIII","synonyms":["DanMachi 3rd Season","Is It Wrong That I Want to Meet You in a Dungeon 3rd Season"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":3,"month":10,"year":2020},"status":"Finished Airing"},{"index":5,"id":40787,"mal_id":40787,"title":"Josee to Tora to Sakana-tachi","english":"Josee, the Tiger and the Fish","native":"ジョゼと虎と魚たち","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":12,"year":2020},"status":"Finished Airing"},{"index":6,"id":40911,"mal_id":40911,"title":"Yuukoku no Moriarty","english":"Moriarty the Patriot","native":"憂国のモリアーティ","synonyms":["Moriarty's Patriotism"],"format":"TV","episodes":11,"season":"FALL","year":2020,"start_date":{"day":11,"month":10,"year":2020},"status":"Finished Airing"},{"index":7,"id":41433,"mal_id":41433,"title":"Akudama Drive","english":"Akudama Drive","native":"アクダマドライブ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":8,"month":10,"year":2020},"status":"Finished Airing"},{"index":8,"id":40571,"mal_id":40571,"title":"Majo no Tabitabi","english":"Wandering Witch: The Journey of Elaina","native":"魔女の旅々","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":2,"month":10,"year":2020},"status":"Finished Airing"},{"index":9,"id":40497,"mal_id":40497,"title":"Mahouka Koukou no Rettousei: Raihousha-hen","english":"The Irregular at Magic High School: Visitor Arc","native":"魔法科高校の劣等生 来訪者編","synonyms":["Mahouka Koukou no Rettousei 2nd Season","The Irregular at Magic High School Season 2"],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"day":4,"month":10,"year":2020},"status":"Finished Airing"},{"index":10,"id":41619,"mal_id":41619,"title":"Munou na Nana","english":"Talentless Nana","native":"無能なナナ","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"day":4,"month":10,"year":2020},"status":"Finished Airing"},{"index":11,"id":40595,"mal_id":40595,"title":"Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen","english":"Our Last Crusade or the Rise of a New World","native":"キミと僕の最後の戦場、あるいは世界が始まる聖戦","synonyms":["The Last Battlefield Between You and I","or Perhaps the Beginning of the World's Holy War","Kimisen"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":7,"month":10,"year":2020},"status":"Finished Airing"},{"index":12,"id":41380,"mal_id":41380,"title":"100-man no Inochi no Ue ni Ore wa Tatteiru","english":"I'm Standing on a Million Lives","native":"100万の命の上に俺は立っている","synonyms":["I'm standing on 1,000,000 lives."],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":2,"month":10,"year":2020},"status":"Finished Airing"},{"index":13,"id":41345,"mal_id":41345,"title":"Noblesse","english":"Noblesse","native":"NOBLESSE -ノブレス-","synonyms":["노블레스"],"format":"TV","episodes":13,"season":"FALL","year":2020,"start_date":{"day":8,"month":10,"year":2020},"status":"Finished Airing"},{"index":14,"id":41006,"mal_id":41006,"title":"Higurashi no Naku Koro ni Gou","english":"Higurashi: When They Cry – Gou","native":"ひぐらしのなく頃に業","synonyms":["When They Cry","Higurashi: When They Cry - New","Higurashi no Naku Koro ni (2020)","When the Cicadas Cry","The Moment the Cicadas Cry"],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"day":1,"month":10,"year":2020},"status":"Finished Airing"},{"index":15,"id":41468,"mal_id":41468,"title":"Burn the Witch","english":null,"native":"BURN THE WITCH","synonyms":[],"format":"ONA","episodes":3,"season":null,"year":null,"start_date":{"day":2,"month":10,"year":2020},"status":"Finished Airing"},{"index":16,"id":41930,"mal_id":41930,"title":"Kamisama ni Natta Hi","english":"The Day I Became a God","native":"神様になった日","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":11,"month":10,"year":2020},"status":"Finished Airing"},{"index":17,"id":41312,"mal_id":41312,"title":"Kami-tachi ni Hirowareta Otoko","english":"By the Grace of the Gods","native":"神達に拾われた男","synonyms":["The man picked up by the gods","Kamihiro","Kamitachi ni Hirowareta Otoko"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":4,"month":10,"year":2020},"status":"Finished Airing"},{"index":18,"id":40397,"mal_id":40397,"title":"Maoujou de Oyasumi","english":"Sleepy Princess in the Demon Castle","native":"魔王城でおやすみ","synonyms":["Sleeping in Devil's Castle"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":6,"month":10,"year":2020},"status":"Finished Airing"},{"index":19,"id":39790,"mal_id":39790,"title":"Adachi to Shimamura","english":"Adachi and Shimamura","native":"安達としまむら","synonyms":["Adashima"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":9,"month":10,"year":2020},"status":"Finished Airing"},{"index":20,"id":40059,"mal_id":40059,"title":"Golden Kamuy 3rd Season","english":"Golden Kamuy Season 3","native":"ゴールデンカムイ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":5,"month":10,"year":2020},"status":"Finished Airing"},{"index":21,"id":40974,"mal_id":40974,"title":"Kuma Kuma Kuma Bear","english":"Kuma Kuma Kuma Bear","native":"くま クマ 熊 ベアー","synonyms":["The Bears Bear a Bare Kuma"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":7,"month":10,"year":2020},"status":"Finished Airing"},{"index":22,"id":40730,"mal_id":40730,"title":"Tian Guan Cifu","english":"Heaven Official's Blessing","native":"天官賜福","synonyms":["TGCF","Tian Guan Ci Fu"],"format":"ONA","episodes":11,"season":null,"year":null,"start_date":{"day":31,"month":10,"year":2020},"status":"Finished Airing"},{"index":23,"id":41911,"mal_id":41911,"title":"Hanyou no Yashahime: Sengoku Otogizoushi","english":"Yashahime: Princess Half-Demon","native":"半妖の夜叉姫 -戦国御伽草子-","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2020,"start_date":{"day":3,"month":10,"year":2020},"status":"Finished Airing"},{"index":24,"id":40359,"mal_id":40359,"title":"Ikebukuro West Gate Park","english":"Ikebukuro West Gate Park","native":"池袋ウエストゲートパーク","synonyms":["IWGP"],"format":"TV","episodes":12,"season":"FALL","year":2020,"start_date":{"day":6,"month":10,"year":2020},"status":"Finished Airing"}]},{"year":2022,"season":"fall","anilist":[{"index":0,"id":127230,"mal_id":44511,"title":"Chainsaw Man","english":"Chainsaw Man","native":"チェンソーマン","synonyms":["CSM","رجل المنشار","链锯人","Человек-бензопила","체인소 맨"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":12},"status":"FINISHED"},{"index":1,"id":142838,"mal_id":50602,"title":"SPY×FAMILY Part 2","english":"SPY x FAMILY Cour 2","native":"SPY×FAMILY 第2クール","synonyms":["SxF","스파이 패밀리","间谍过家家","スパイファミリー 2クール"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":1},"status":"FINISHED"},{"index":2,"id":137822,"mal_id":49596,"title":"Blue Lock","english":"BLUE LOCK","native":"ブルーロック","synonyms":["BLUE LOCK ขังดวลแข้ง"," بلو لوك"],"format":"TV","episodes":24,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":9},"status":"FINISHED"},{"index":3,"id":130298,"mal_id":48316,"title":"Kage no Jitsuryokusha ni Naritakute!","english":"The Eminence in Shadow","native":"陰の実力者になりたくて!","synonyms":["To Be a Power in the Shadows!","ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา","Un giorno sarò l'eminenza grigia","TEIS","Кардинал теней"],"format":"TV","episodes":20,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":5},"status":"FINISHED"},{"index":4,"id":139630,"mal_id":49918,"title":"Boku no Hero Academia 6","english":"My Hero Academia Season 6","native":"僕のヒーローアカデミア6","synonyms":["BNHA 6","MHA 6","我的英雄学院 6","我的英雄学院第六季","มายฮีโร่ อคาเดเมีย ภาค 6","أكاديميتي للأبطال ","Моя геройская академия 6"],"format":"TV","episodes":25,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":1},"status":"FINISHED"},{"index":5,"id":140439,"mal_id":50172,"title":"Mob Psycho 100 III","english":"Mob Psycho 100 III","native":"モブサイコ100 Ⅲ","synonyms":["モブサイコ100 III","ม็อบไซโค 100 คนพลังจิต ภาค 3","Моб Психо 100 III"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":6},"status":"FINISHED"},{"index":6,"id":130003,"mal_id":47917,"title":"Bocchi the Rock!","english":"BOCCHI THE ROCK!","native":"ぼっち・ざ・ろっく!","synonyms":["РОК-ТИХОНЯ!","บจจิเดอะร็อก!","孤獨搖滾!","孤独摇滚!","외톨이 THE ROCK!","봇치 더 록!","BTR"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":9},"status":"FINISHED"},{"index":7,"id":116674,"mal_id":41467,"title":"BLEACH: Sennen Kessen-hen","english":"BLEACH: Thousand-Year Blood War","native":"BLEACH 千年血戦篇","synonyms":["بليتش: حرب الألف سنة الدموية","Bleach: La guerre sanglante de mille ans","BLEACH TYBW"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":11},"status":"FINISHED"},{"index":8,"id":142770,"mal_id":50594,"title":"Suzume no Tojimari","english":"Suzume","native":"すずめの戸締まり","synonyms":["铃芽之旅","Khóa Chặt Cửa Nào Suzume","การผนึกประตูของซุซุเมะ","Судзуме зачиняє двері","Судзумэ"],"format":"MOVIE","episodes":1,"season":"FALL","year":2022,"start_date":{"year":2022,"month":11,"day":11},"status":"FINISHED"},{"index":9,"id":141949,"mal_id":50425,"title":"Fuufu Ijou, Koibito Miman.","english":"More than a Married Couple, but Not Lovers.","native":"夫婦以上、恋人未満。","synonyms":["More than a Couple, Less than Lovers.","แผนสมรสไม่สมเลิฟ","Presque mariés, loin d'être amoureux.","Больше чем пара, меньше чем любовники","Fuukoi","ふうこい"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":9},"status":"FINISHED"},{"index":10,"id":139587,"mal_id":49891,"title":"Tensei Shitara Ken Deshita","english":"Reincarnated as a Sword","native":"転生したら剣でした","synonyms":["I Became the Sword by Transmigrating","TenKen","ซวยเหลือหลาย เกิดใหม่กลายเป็นดาบ","TENKEN - Reincarnato in una spada","轉生就是劍"],"format":"ONA","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":9,"day":28},"status":"FINISHED"},{"index":11,"id":138565,"mal_id":49709,"title":"Fumetsu no Anata e Season 2","english":"To Your Eternity Season 2","native":"不滅のあなたへ Season 2","synonyms":["不滅のあなたへ 第2シリーズ","Uma vida imortal 2","แด่เธอผู้เป็นนิรันดร์ ภาค 2"],"format":"TV","episodes":20,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":23},"status":"FINISHED"},{"index":12,"id":153930,"mal_id":52865,"title":"Romantic Killer","english":"Romantic Killer","native":"ロマンティック・キラー","synonyms":["La asesina del romance","Романтичний убивця","Убийца-романтик"],"format":"ONA","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":27},"status":"FINISHED"},{"index":13,"id":139498,"mal_id":49877,"title":"Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen","english":"That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond","native":"劇場版 転生したらスライムだった件 紅蓮の絆編","synonyms":["That Time I Got Reincarnated as a Slime Movie","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว เดอะมูฟวี่","Lúc đó tôi đã chuyển sinh thành Slime: Mối Liên Kết Đỏ Thẫm","О моём перерождении в слизь: Алые узы","Tensura Movie","That Time I Got Reincarnated as a Slime: El Vínculo Escarlata","That Time I Got Reincarnated as a Slime - Laços Escarlates"],"format":"MOVIE","episodes":1,"season":"FALL","year":2022,"start_date":{"year":2022,"month":11,"day":25},"status":"FINISHED"},{"index":14,"id":143277,"mal_id":50710,"title":"Urusei Yatsura (2022)","english":"Urusei Yatsura (2022)","native":"うる星やつら (2022)","synonyms":["Urusei Yatsura: All Stars","Lum, the Invader Girl","Lamù e i casinisti planetari","Turma do Barulho","Urusei Yatsura (2022) Season 2","Urusei Yatsura: Kosmiczni natręci"],"format":"TV","episodes":23,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":14},"status":"FINISHED"},{"index":15,"id":150695,"mal_id":52046,"title":"Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau","english":"Beast Tamer","native":"勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う","synonyms":["เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง","Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat","被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":1},"status":"FINISHED"},{"index":16,"id":139274,"mal_id":49828,"title":"Kidou Senshi Gundam: Suisei no Majo","english":"Mobile Suit Gundam: The Witch from Mercury","native":"機動戦士ガンダム 水星の魔女","synonyms":["G-Witch","Mobile Suit Gundam: Penyihir dari Mercury","機動戰士鋼彈 水星的魔女","Мобильный воин Гандам: Ведьма с Меркурия"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":2},"status":"FINISHED"},{"index":17,"id":151379,"mal_id":52193,"title":"Akiba Meido Sensou","english":"Akiba Maid War","native":"アキバ冥途戦争","synonyms":["Akiba Maid Sensou","Война горничных Акибы"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":7},"status":"FINISHED"},{"index":18,"id":139092,"mal_id":49784,"title":"Mairimashita! Iruma-kun 3","english":"Welcome to Demon School! Iruma-kun Season 3","native":"魔入りました!入間くん 第3シリーズ","synonyms":["อิรุมะคุง พจญในแดนปีศาจ! ภาค 3"],"format":"TV","episodes":21,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":8},"status":"FINISHED"},{"index":19,"id":139820,"mal_id":49979,"title":"Akuyaku Reijou nano de Last Boss wo Kattemimashita","english":"I'm the Villainess, So I'm Taming the Final Boss","native":"悪役令嬢なのでラスボスを飼ってみました","synonyms":["作为恶役大小姐就该养魔王","悪ラス","AkuLast","AkuRasu"],"format":"ONA","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":9,"day":24},"status":"FINISHED"},{"index":20,"id":124395,"mal_id":42962,"title":"Uzaki-chan wa Asobitai! ω","english":"Uzaki-chan Wants to Hang Out! Season 2","native":"宇崎ちゃんは遊びたい!ω(だぶる)","synonyms":["Uzaki-chan Wants to Hang Out! ω","Uzaki-chan Wants to Hang Out! Double","Uzaki-chan wa Asobitai! 2nd Season","รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":1},"status":"FINISHED"},{"index":21,"id":146676,"mal_id":51403,"title":"Renai Flops","english":"LOVE FLOPS","native":"恋愛フロップス","synonyms":["Renai Furoppusu"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":12},"status":"FINISHED"},{"index":22,"id":145604,"mal_id":51098,"title":"Shinobi no Ittoki","english":"Shinobi no Ittoki","native":"忍の一時","synonyms":["Синоби Иттоки"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":4},"status":"FINISHED"},{"index":23,"id":140999,"mal_id":50275,"title":"Sword Art Online: Progressive - Kuraki Yuuyami no Scherzo","english":"Sword Art Online the Movie -Progressive- Scherzo of Deep Night","native":"劇場版 ソードアート・オンライン プログレッシブ 冥き夕闇のスケルツォ","synonyms":["Sword Art Online: Progressive - Scherzo of Dark Night","SAO Progressive","SAOP","Sword Art Online : Progressive - สแกรโซแห่งสนธยาโศก","Sword Art Online: Progressive - Scherzo de una profunda oscuridad","Sword Art Online Progressive: Scherzo do Crepúsculo Sombrio "],"format":"MOVIE","episodes":1,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":22},"status":"FINISHED"},{"index":24,"id":139310,"mal_id":49834,"title":"Boku ga Aishita Subete no Kimi e","english":"To Every You I’ve Loved Before","native":"僕が愛したすべての君へ","synonyms":["Nhắn gửi tất cả các em, những người tôi đã yêu","BokuAi"],"format":"MOVIE","episodes":1,"season":"FALL","year":2022,"start_date":{"year":2022,"month":10,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":44511,"mal_id":44511,"title":"Chainsaw Man","english":"Chainsaw Man","native":"チェンソーマン","synonyms":["CSM"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":12,"month":10,"year":2022},"status":"Finished Airing"},{"index":1,"id":50602,"mal_id":50602,"title":"Spy x Family Part 2","english":null,"native":"SPY×FAMILY","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"day":1,"month":10,"year":2022},"status":"Finished Airing"},{"index":2,"id":49596,"mal_id":49596,"title":"Blue Lock","english":"Blue Lock","native":"ブルーロック","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2022,"start_date":{"day":9,"month":10,"year":2022},"status":"Finished Airing"},{"index":3,"id":48316,"mal_id":48316,"title":"Kage no Jitsuryokusha ni Naritakute!","english":"The Eminence in Shadow","native":"陰の実力者になりたくて!","synonyms":["Shadow Garden"],"format":"TV","episodes":20,"season":"FALL","year":2022,"start_date":{"day":5,"month":10,"year":2022},"status":"Finished Airing"},{"index":4,"id":50172,"mal_id":50172,"title":"Mob Psycho 100 III","english":"Mob Psycho 100 III","native":"モブサイコ100 III","synonyms":["Mob Psycho 100 3rd Season","Mob Psycho Hyaku","Mob Psycho One Hundred"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":6,"month":10,"year":2022},"status":"Finished Airing"},{"index":5,"id":49918,"mal_id":49918,"title":"Boku no Hero Academia 6th Season","english":"My Hero Academia Season 6","native":"僕のヒーローアカデミア","synonyms":["My Hero Academia 6"],"format":"TV","episodes":25,"season":"FALL","year":2022,"start_date":{"day":1,"month":10,"year":2022},"status":"Finished Airing"},{"index":6,"id":47917,"mal_id":47917,"title":"Bocchi the Rock!","english":"Bocchi the Rock!","native":"ぼっち・ざ・ろっく!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":9,"month":10,"year":2022},"status":"Finished Airing"},{"index":7,"id":41467,"mal_id":41467,"title":"Bleach: Sennen Kessen-hen","english":"Bleach: Thousand-Year Blood War","native":"BLEACH 千年血戦篇","synonyms":["Bleach: Thousand-Year Blood War Arc"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"day":11,"month":10,"year":2022},"status":"Finished Airing"},{"index":8,"id":50594,"mal_id":50594,"title":"Suzume no Tojimari","english":"Suzume","native":"すずめの戸締まり","synonyms":["Suzume's Door-Locking"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":11,"month":11,"year":2022},"status":"Finished Airing"},{"index":9,"id":50425,"mal_id":50425,"title":"Fuufu Ijou, Koibito Miman.","english":"More than a Married Couple, but Not Lovers.","native":"夫婦以上、恋人未満。","synonyms":["More than a Couple","Less than Lovers.","Fuukoi"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":9,"month":10,"year":2022},"status":"Finished Airing"},{"index":10,"id":52198,"mal_id":52198,"title":"Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai","english":"Kaguya-sama: Love is War -The First Kiss That Never Ends-","native":"かぐや様は告らせたい -ファーストキッスは終わらない-","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":12,"year":2022},"status":"Finished Airing"},{"index":11,"id":49709,"mal_id":49709,"title":"Fumetsu no Anata e Season 2","english":"To Your Eternity Season 2","native":"不滅のあなたへ Season2","synonyms":["To Your Eternity 2nd Season","To You","the Immortal 2nd Season"],"format":"TV","episodes":20,"season":"FALL","year":2022,"start_date":{"day":23,"month":10,"year":2022},"status":"Finished Airing"},{"index":12,"id":49891,"mal_id":49891,"title":"Tensei shitara Ken deshita","english":"Reincarnated as a Sword","native":"転生したら剣でした","synonyms":["I became the sword by transmigrating","TenKen"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":5,"month":10,"year":2022},"status":"Finished Airing"},{"index":13,"id":53273,"mal_id":53273,"title":"JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3","english":"JoJo's Bizarre Adventure: Stone Ocean Part 3","native":"ジョジョの奇妙な冒険 ストーンオーシャン","synonyms":[],"format":"ONA","episodes":14,"season":null,"year":null,"start_date":{"day":1,"month":12,"year":2022},"status":"Finished Airing"},{"index":14,"id":52865,"mal_id":52865,"title":"Romantic Killer","english":"Romantic Killer","native":"ロマンティック・キラー","synonyms":[],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":27,"month":10,"year":2022},"status":"Finished Airing"},{"index":15,"id":42962,"mal_id":42962,"title":"Uzaki-chan wa Asobitai! Double","english":"Uzaki-chan Wants to Hang Out! Season 2","native":"宇崎ちゃんは遊びたい!ω(だぶる)","synonyms":["Uzaki-chan wa Asobitai! 2nd Season","Uzaki-chan wa Asobitai! ω","Uzaki-chan Wants to Hang Out! 2nd Season","Uzaki-chan Wants to Hang Out! ω"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"day":1,"month":10,"year":2022},"status":"Finished Airing"},{"index":16,"id":49784,"mal_id":49784,"title":"Mairimashita! Iruma-kun 3rd Season","english":"Welcome to Demon School! Iruma-kun Season 3","native":"魔入りました!入間くん","synonyms":["Welcome to Demon School! Iruma-kun 3rd Season"],"format":"TV","episodes":21,"season":"FALL","year":2022,"start_date":{"day":8,"month":10,"year":2022},"status":"Finished Airing"},{"index":17,"id":49877,"mal_id":49877,"title":"Tensei shitara Slime Datta Ken Movie: Guren no Kizuna-hen","english":"That Time I Got Reincarnated as a Slime: The Movie - Scarlet Bond","native":"劇場版 転生したらスライムだった件 紅蓮の絆編","synonyms":["TenSura","That Time I Got Reincarnated as a Slime Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":11,"year":2022},"status":"Finished Airing"},{"index":18,"id":52046,"mal_id":52046,"title":"Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau","english":"Beast Tamer","native":"勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う","synonyms":["The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race"],"format":"TV","episodes":13,"season":"FALL","year":2022,"start_date":{"day":2,"month":10,"year":2022},"status":"Finished Airing"},{"index":19,"id":49979,"mal_id":49979,"title":"Akuyaku Reijou nanode Last Boss wo Kattemimashita","english":"I'm the Villainess, So I'm Taming the Final Boss","native":"悪役令嬢なのでラスボスを飼ってみました","synonyms":["Akulas"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":1,"month":10,"year":2022},"status":"Finished Airing"},{"index":20,"id":50710,"mal_id":50710,"title":"Urusei Yatsura (2022)","english":"Urusei Yatsura","native":"うる星やつら","synonyms":["Those Obnoxious Aliens","The Return of Lum","Lum","the Invader Girl"],"format":"TV","episodes":23,"season":"FALL","year":2022,"start_date":{"day":14,"month":10,"year":2022},"status":"Finished Airing"},{"index":21,"id":52193,"mal_id":52193,"title":"Akiba Meido Sensou","english":"Akiba Maid War","native":"アキバ冥途戦争","synonyms":["Akiba Maid Sensou"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":7,"month":10,"year":2022},"status":"Finished Airing"},{"index":22,"id":51098,"mal_id":51098,"title":"Shinobi no Ittoki","english":"Shinobi no Ittoki","native":"忍の一時","synonyms":["Ittoki the Ninja"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":4,"month":10,"year":2022},"status":"Finished Airing"},{"index":23,"id":49828,"mal_id":49828,"title":"Kidou Senshi Gundam: Suisei no Majo","english":"Mobile Suit Gundam: The Witch from Mercury","native":"機動戦士ガンダム 水星の魔女","synonyms":["G-Witch"],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":2,"month":10,"year":2022},"status":"Finished Airing"},{"index":24,"id":51403,"mal_id":51403,"title":"Renai Flops","english":"Love Flops","native":"恋愛フロップス","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2022,"start_date":{"day":12,"month":10,"year":2022},"status":"Finished Airing"}]},{"year":2024,"season":"fall","anilist":[{"index":0,"id":171018,"mal_id":57334,"title":"Dandadan","english":"DAN DA DAN","native":"ダンダダン","synonyms":["ดันดาดัน","膽大黨","DAN DA DAN: FIRST ENCOUNTER","Дандадан"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":4},"status":"FINISHED"},{"index":1,"id":163134,"mal_id":54857,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season","english":"Re:ZERO -Starting Life in Another World- Season 3","native":"Re:ゼロから始める異世界生活 3rd season","synonyms":["Re:ZERO – Жизнь с нуля в альтернативном мире 3"],"format":"TV","episodes":16,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":2},"status":"FINISHED"},{"index":2,"id":170942,"mal_id":57181,"title":"Ao no Hako","english":"Blue Box","native":"アオのハコ","synonyms":["الصندوق الأزرق","青之箱","푸른 상자","La caja azul","กล่องรักวัยใส","Niebieskie pudełko"],"format":"ONA","episodes":25,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":3},"status":"FINISHED"},{"index":3,"id":163146,"mal_id":54865,"title":"Blue Lock VS. U-20 JAPAN","english":"BLUE LOCK Season 2","native":"ブルーロック VS. U-20 JAPAN","synonyms":["ブルーロック第2期","Blue Lock 2nd Season"],"format":"TV","episodes":14,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":5},"status":"FINISHED"},{"index":4,"id":151514,"mal_id":52215,"title":"Chi. Chikyuu no Undou ni Tsuite","english":"Orb: On the Movements of the Earth","native":"チ。-地球の運動について-","synonyms":["Chi: About the Movement of the Earth","สุริยะปราชญ์ ทฤษฎีสีเลือด","O ruchach Ziemi","Du mouvement de la Terre","Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra","Ketzer - Tödliches Wissen über die Bewegung der Erde","על תנועת כדור הארץ","Il movimento della Terra","Про рух Землі"],"format":"TV","episodes":25,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":5},"status":"FINISHED"},{"index":5,"id":169755,"mal_id":56784,"title":"BLEACH: Sennen Kessen-hen - Soukoku-tan","english":"BLEACH: Thousand-Year Blood War - The Conflict","native":"BLEACH 千年血戦篇-相剋譚-","synonyms":["BLEACH: Thousand Year Blood War Part 3","BLEACH 千年血戦篇 第3クール","BLEACH TYBW"],"format":"TV","episodes":14,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":5},"status":"FINISHED"},{"index":6,"id":176508,"mal_id":58572,"title":"Shangri-La Frontier 2nd Season","english":"Shangri-La Frontier Season 2","native":"シャングリラ・フロンティア 2nd season","synonyms":["シャンフロ2","シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season","Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season","Рубеж Шангри-Ла 2","Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2"],"format":"TV","episodes":25,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":13},"status":"FINISHED"},{"index":7,"id":111314,"mal_id":40333,"title":"Uzumaki","english":"Uzumaki","native":"うずまき","synonyms":["The Spiral"," ก้นหอยมรณะ","أوزوماكي","Uzumaki. Spirala","UZUMAKI: Animated TV Series"],"format":"TV","episodes":4,"season":"FALL","year":2024,"start_date":{"year":2024,"month":9,"day":29},"status":"FINISHED"},{"index":8,"id":170732,"mal_id":57066,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen","english":"Is It Wrong To Try To Pick Up Girls in a Dungeon? V","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇","synonyms":["DanMachi V","Familia Myth V","ダンまちⅤ","Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season","Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc","Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc"],"format":"ONA","episodes":15,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":3},"status":"FINISHED"},{"index":9,"id":154473,"mal_id":52995,"title":"Arifureta Shokugyou de Sekai Saikyou 3rd season","english":"Arifureta: From Commonplace to World's Strongest Season 3","native":"ありふれた職業で世界最強 3rd season","synonyms":["อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3"],"format":"TV","episodes":16,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":14},"status":"FINISHED"},{"index":10,"id":141182,"mal_id":50306,"title":"Seirei Gensouki 2","english":"Seirei Gensouki: Spirit Chronicles Season 2","native":"精霊幻想記2","synonyms":["ตำนานวิญญาณแฟนซี ภาค 2","精灵幻想记吧2"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":8},"status":"FINISHED"},{"index":11,"id":175019,"mal_id":58172,"title":"Nageki no Bourei wa Intai Shitai","english":"Let This Grieving Soul Retire","native":"嘆きの亡霊は引退したい ","synonyms":["Arwah Berduka yang Ingin Pensiun"],"format":"TV","episodes":13,"season":"FALL","year":2024,"start_date":{"year":2024,"month":9,"day":29},"status":"FINISHED"},{"index":12,"id":178533,"mal_id":59145,"title":"Ranma 1/2 (2024)","english":"Ranma1/2 (2024)","native":"らんま1/2 (2024)","synonyms":["Ranma 1/2 (New Anime)","Ranma 1/2 (Shinsaku Anime)","らんま1/2 (新作アニメ)","乱马 1/2","란마1/2"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":6},"status":"FINISHED"},{"index":13,"id":173693,"mal_id":57891,"title":"Hitoribocchi no Isekai Kouryaku","english":"Loner Life in Another World","native":"ひとりぼっちの異世界攻略","synonyms":[],"format":"ONA","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":9,"day":27},"status":"FINISHED"},{"index":14,"id":170083,"mal_id":56894,"title":"Dragon Ball DAIMA","english":"Dragon Ball DAIMA","native":"ドラゴンボールDAIMA","synonyms":["ドラゴンボール ダイマ","Драконий жемчуг Дайма"],"format":"TV","episodes":20,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":11},"status":"FINISHED"},{"index":15,"id":170468,"mal_id":56964,"title":"Raise wa Tanin ga Ii","english":"Yakuza Fiancé: Raise wa Tanin ga Ii","native":"来世は他人がいい","synonyms":["Yakuza Fiancé: Raise wa Tanin ga Ii","รักอันตรายของเจ้าสาวยากูซ่า"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":7},"status":"FINISHED"},{"index":16,"id":163135,"mal_id":54853,"title":"Maou 2099","english":"DEMON LORD 2099","native":"魔王2099","synonyms":["魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099","Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":13},"status":"FINISHED"},{"index":17,"id":172190,"mal_id":57611,"title":"Kimi wa Meido-sama.","english":"You are Ms. Servant","native":"君は冥土様。","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":6},"status":"FINISHED"},{"index":18,"id":182469,"mal_id":60022,"title":"ONE PIECE FAN LETTER","english":"ONE PIECE FAN LETTER","native":"ONE PIECE FAN LETTER","synonyms":[],"format":"SPECIAL","episodes":1,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":20},"status":"FINISHED"},{"index":19,"id":177104,"mal_id":58714,"title":"Saikyou no Shien-shoku [Wajutsushi] Dearu Ore wa Sekai Saikyou Clan wo Shitagaeru","english":"The Most Notorious \"Talker\" Runs the World's Greatest Clan","native":"最凶の支援職【話術士】である俺は世界最強クランを従える","synonyms":["Wajutsushi"],"format":"ONA","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":1},"status":"FINISHED"},{"index":20,"id":168139,"mal_id":56228,"title":"Rekishi ni Nokoru Akujo ni Naruzo","english":"I’ll Become a Villainess Who Goes Down in History","native":"歴史に残る悪女になるぞ","synonyms":["I'll Become a Villainess That Will Go Down in History","I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me","Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!","歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!"],"format":"TV","episodes":13,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":1},"status":"FINISHED"},{"index":21,"id":164172,"mal_id":55071,"title":"Amagami-san Chi no Enmusubi","english":"Tying the Knot with an Amagami Sister","native":"甘神さんちの縁結び","synonyms":["Matchmaking of the Amagami Household","ด้ายแดงผูกรักบ้านอามากามิ","結緣甘神神社","甘神家的连理枝","ربط العقد مع أخوات أماغامي"],"format":"TV","episodes":24,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":2},"status":"FINISHED"},{"index":22,"id":165790,"mal_id":55887,"title":"Kekkon Suru tte, Hontou desu ka","english":"365 Days to the Wedding","native":"結婚するって、本当ですか","synonyms":["Are You Really Getting Married?"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":3},"status":"FINISHED"},{"index":23,"id":178434,"mal_id":59131,"title":"Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season","english":"As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2","native":"転生貴族、鑑定スキルで成り上がる 第2期","synonyms":["KanteiSkill 2"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":9,"day":29},"status":"FINISHED"},{"index":24,"id":174043,"mal_id":57944,"title":"Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki","english":"The Healer Who Was Banished From His Party, Is, in Fact, the Strongest","native":"パーティーから追放されたその治癒師、実は最強につき","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"year":2024,"month":10,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":57334,"mal_id":57334,"title":"Dandadan","english":"Dan Da Dan","native":"ダンダダン","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":4,"month":10,"year":2024},"status":"Finished Airing"},{"index":1,"id":54857,"mal_id":54857,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season","english":"Re:ZERO -Starting Life in Another World- Season 3","native":"Re:ゼロから始める異世界生活 3rd season","synonyms":["Re: Life in a different world from zero 3rd Season","ReZero 3rd Season","Re:Zero - Starting Life in Another World 3"],"format":"TV","episodes":16,"season":"FALL","year":2024,"start_date":{"day":2,"month":10,"year":2024},"status":"Finished Airing"},{"index":2,"id":54865,"mal_id":54865,"title":"Blue Lock vs. U-20 Japan","english":"Blue Lock Season 2","native":"ブルーロック VS. U-20 JAPAN","synonyms":["Blue Lock 2nd Season"],"format":"TV","episodes":14,"season":"FALL","year":2024,"start_date":{"day":6,"month":10,"year":2024},"status":"Finished Airing"},{"index":3,"id":57181,"mal_id":57181,"title":"Ao no Hako","english":"Blue Box","native":"アオのハコ","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2024,"start_date":{"day":3,"month":10,"year":2024},"status":"Finished Airing"},{"index":4,"id":56784,"mal_id":56784,"title":"Bleach: Sennen Kessen-hen - Soukoku-tan","english":"Bleach: Thousand-Year Blood War - The Conflict","native":"BLEACH 千年血戦篇-相剋譚-","synonyms":["Bleach: Thousand-Year Blood War Arc Part 3"],"format":"TV","episodes":14,"season":"FALL","year":2024,"start_date":{"day":5,"month":10,"year":2024},"status":"Finished Airing"},{"index":5,"id":52215,"mal_id":52215,"title":"Chi. Chikyuu no Undou ni Tsuite","english":"Orb: On the Movements of the Earth","native":"チ。―地球の運動について―","synonyms":["About the Movement of the Earth"],"format":"TV","episodes":25,"season":"FALL","year":2024,"start_date":{"day":5,"month":10,"year":2024},"status":"Finished Airing"},{"index":6,"id":58572,"mal_id":58572,"title":"Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season","english":"Shangri-La Frontier Season 2","native":"シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season","synonyms":["Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game","Shanfro"],"format":"TV","episodes":25,"season":"FALL","year":2024,"start_date":{"day":13,"month":10,"year":2024},"status":"Finished Airing"},{"index":7,"id":40333,"mal_id":40333,"title":"Uzumaki","english":"Uzumaki: Spiral Into Horror","native":"うずまき","synonyms":["The Spiral"],"format":"TV","episodes":4,"season":"FALL","year":2024,"start_date":{"day":28,"month":9,"year":2024},"status":"Finished Airing"},{"index":8,"id":57066,"mal_id":57066,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? V","native":"ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇","synonyms":["DanMachi 5th Season","Is It Wrong That I Want to Meet You in a Dungeon 5th Season"],"format":"TV","episodes":15,"season":"FALL","year":2024,"start_date":{"day":5,"month":10,"year":2024},"status":"Finished Airing"},{"index":9,"id":52995,"mal_id":52995,"title":"Arifureta Shokugyou de Sekai Saikyou Season 3","english":"Arifureta: From Commonplace to World's Strongest Season 3","native":"ありふれた職業で世界最強 season 3","synonyms":["From Common Job Class to the Strongest in the World Season 3"],"format":"TV","episodes":16,"season":"FALL","year":2024,"start_date":{"day":14,"month":10,"year":2024},"status":"Finished Airing"},{"index":10,"id":50306,"mal_id":50306,"title":"Seirei Gensouki 2","english":"Seirei Gensouki: Spirit Chronicles Season 2","native":"精霊幻想記2","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":8,"month":10,"year":2024},"status":"Finished Airing"},{"index":11,"id":59145,"mal_id":59145,"title":"Ranma ½ (2024)","english":"Ranma ½ (2024)","native":"らんま1/2","synonyms":["Ranma 1/2 (2024)"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":6,"month":10,"year":2024},"status":"Finished Airing"},{"index":12,"id":58172,"mal_id":58172,"title":"Nageki no Bourei wa Intai shitai","english":"Let This Grieving Soul Retire","native":"嘆きの亡霊は引退したい","synonyms":["Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party"],"format":"TV","episodes":13,"season":"FALL","year":2024,"start_date":{"day":1,"month":10,"year":2024},"status":"Finished Airing"},{"index":13,"id":60022,"mal_id":60022,"title":"One Piece Fan Letter","english":null,"native":"ONE PIECE FAN LETTER","synonyms":[],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":10,"year":2024},"status":"Finished Airing"},{"index":14,"id":56964,"mal_id":56964,"title":"Raise wa Tanin ga Ii","english":"Yakuza Fiancé: Raise wa Tanin ga Ii","native":"来世は他人がいい","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":7,"month":10,"year":2024},"status":"Finished Airing"},{"index":15,"id":57891,"mal_id":57891,"title":"Hitoribocchi no Isekai Kouryaku","english":"Loner Life in Another World","native":"ひとりぼっちの異世界攻略","synonyms":["Lonely Attack on the Different World"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":4,"month":10,"year":2024},"status":"Finished Airing"},{"index":16,"id":58714,"mal_id":58714,"title":"Saikyou no Shienshoku \"Wajutsushi\" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru","english":"The Most Notorious \"Talker\" Runs the World's Greatest Clan","native":"最凶の支援職【話術士】である俺は世界最強クランを従える","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":7,"month":10,"year":2024},"status":"Finished Airing"},{"index":17,"id":57611,"mal_id":57611,"title":"Kimi wa Meido-sama.","english":"You are Ms. Servant.","native":"君は冥土様。","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":6,"month":10,"year":2024},"status":"Finished Airing"},{"index":18,"id":59989,"mal_id":59989,"title":"Kami no Tou: Koubou-sen","english":"Tower of God Season 2: Workshop Battle","native":"神之塔 -Tower of God- 工房戦","synonyms":["Sin-ui Tap","신의 탑","Kami no Tou 2nd Season","Tower of God: Workshop Battle"],"format":"TV","episodes":13,"season":"FALL","year":2024,"start_date":{"day":6,"month":10,"year":2024},"status":"Finished Airing"},{"index":19,"id":54853,"mal_id":54853,"title":"Maou 2099","english":"Demon Lord 2099","native":"魔王2099","synonyms":["Ken to Maou no Cyberpunk","The Lord Of Immortals Blooming in The Abyss F.E. 2099"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":13,"month":10,"year":2024},"status":"Finished Airing"},{"index":20,"id":56894,"mal_id":56894,"title":"Dragon Ball Daima","english":"Dragon Ball Daima","native":"ドラゴンボール ダイマ","synonyms":[],"format":"TV","episodes":20,"season":"FALL","year":2024,"start_date":{"day":11,"month":10,"year":2024},"status":"Finished Airing"},{"index":21,"id":56228,"mal_id":56228,"title":"Rekishi ni Nokoru Akujo ni Naru zo","english":"I'll Become a Villainess Who Goes Down in History","native":"歴史に残る悪女になるぞ","synonyms":["Rekiaku","I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become","the More the Prince will Dote on Me"],"format":"TV","episodes":13,"season":"FALL","year":2024,"start_date":{"day":2,"month":10,"year":2024},"status":"Finished Airing"},{"index":22,"id":59131,"mal_id":59131,"title":"Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season","english":"As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2","native":"転生貴族、鑑定スキルで成り上がる 第2期","synonyms":["Reincarnated as an Aristocrat with an Appraisal Skill Season 2"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":29,"month":9,"year":2024},"status":"Finished Airing"},{"index":23,"id":55887,"mal_id":55887,"title":"Kekkon suru tte, Hontou desu ka","english":"365 Days to the Wedding","native":"結婚するって、本当ですか 365 Days To The Wedding","synonyms":["Are You Really Getting Married?"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":3,"month":10,"year":2024},"status":"Finished Airing"},{"index":24,"id":55994,"mal_id":55994,"title":"Sword Art Online Alternative: Gun Gale Online II","english":"Sword Art Online Alternative: Gun Gale Online II","native":"ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ","synonyms":["SAO Alternative Gun Gale Online II"],"format":"TV","episodes":12,"season":"FALL","year":2024,"start_date":{"day":5,"month":10,"year":2024},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-01.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-01.json new file mode 100644 index 0000000..0a8531f --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-01.json @@ -0,0 +1 @@ +{"shard":1,"seasons":[{"year":2010,"season":"spring","anilist":[{"index":0,"id":6547,"mal_id":6547,"title":"Angel Beats!","english":"Angel Beats!","native":"Angel Beats!","synonyms":["エンジェルビーツ","פעימות מלאך","الملاك الوحش","Ангельские ритмы"],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":3},"status":"FINISHED"},{"index":1,"id":7054,"mal_id":7054,"title":"Kaichou wa Maid-sama!","english":"Maid-Sama!","native":"会長はメイド様!","synonyms":["Kaicho wa Maidsama","Kaichou wa Meido Sama","Class President is a Maid!"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":2},"status":"FINISHED"},{"index":2,"id":7791,"mal_id":7791,"title":"K-ON!!","english":"K-ON! Season 2","native":"けいおん!!","synonyms":["Keion 2","K-On!! 2nd Season","K on 2","케이온!!"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":7},"status":"FINISHED"},{"index":3,"id":7785,"mal_id":7785,"title":"Yojouhan Shinwa Taikei","english":"The Tatami Galaxy","native":"四畳半神話大系","synonyms":["Yojo-Han Shinwa Taikei","Yojou-Han Shinwa Taikei","Yojohan Shinwa Taikei","四叠半神话大系","4½ Tatami Mythological Chronicles"],"format":"TV","episodes":11,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":23},"status":"FINISHED"},{"index":4,"id":7593,"mal_id":7593,"title":"kiss×sis (TV)","english":null,"native":"kiss×sis (TV)","synonyms":["キスシス","kiss x sis"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":5},"status":"FINISHED"},{"index":5,"id":7088,"mal_id":7088,"title":"Ichiban Ushiro no Daimaou","english":"Demon King Daimao","native":"いちばんうしろの大魔王","synonyms":["Ichiban Ushiro no Dai Mao","Rei Demônio Daimao","El Gran Rey Demonio"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":3},"status":"FINISHED"},{"index":6,"id":6956,"mal_id":6956,"title":"WORKING!!","english":"Wagnaria!!","native":"WORKING!!","synonyms":["ワーキング!!","워킹!!"],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":4},"status":"FINISHED"},{"index":7,"id":6114,"mal_id":6114,"title":"RAINBOW: Nisha Rokubou no Shichinin","english":"Rainbow","native":"RAINBOW -二舎六房の七人-","synonyms":["Rainbow: The Seven From Compound Two, Cell Six","Rainbow, os sete do bloco 2, cela 6"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":2},"status":"FINISHED"},{"index":8,"id":7647,"mal_id":7647,"title":"Arakawa Under the Bridge","english":"Arakawa Under the Bridge","native":"荒川アンダー ザ ブリッジ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":5},"status":"FINISHED"},{"index":9,"id":7817,"mal_id":7817,"title":"B Gata H Kei","english":"Yamada's First Time: B Gata H Kei","native":"B型H系","synonyms":["Yamada ma première fois"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":2},"status":"FINISHED"},{"index":10,"id":7472,"mal_id":7472,"title":"Gintama: Shinyaku Benizakura-hen","english":"Gintama - The Movie","native":"銀魂 新訳紅桜篇","synonyms":["Gintama: Benizakura Arc - A New Retelling","Gintama Movie: Crimson Sakura Chapter New Edition","Gintama: Shin-yaku Benizakura-hen"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":24},"status":"FINISHED"},{"index":11,"id":4106,"mal_id":4106,"title":"TRIGUN: Badlands Rumble","english":"Trigun: Badlands Rumble","native":"TRIGUN Badlands Rumble","synonyms":["劇場版トライガン","Trigun Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":2},"status":"FINISHED"},{"index":12,"id":7465,"mal_id":7465,"title":"Eve no Jikan Movie","english":"Time of Eve: The Movie","native":"イヴの時間 劇場版","synonyms":["Eve no Jikan - Are you enjoying the time of EVE ? Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":3,"day":6},"status":"FINISHED"},{"index":13,"id":6637,"mal_id":6637,"title":"Higashi no Eden Movie II: Paradise Lost","english":"Eden of the East the Movie II: Paradise Lost","native":"東のエデン 劇場版II Paradise Lost","synonyms":["Higashi no Eden: Gekijouban II Paradise Lost"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":3,"day":13},"status":"FINISHED"},{"index":14,"id":7590,"mal_id":7590,"title":"Mayoi Neko Overrun!","english":null,"native":"迷い猫オーバーラン!","synonyms":["Stray Cats Overrun!"],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":6},"status":"FINISHED"},{"index":15,"id":7588,"mal_id":7588,"title":"Saraiya Goyou","english":"House of Five Leaves","native":"さらい屋 五葉","synonyms":["Sarai-ya Goyou"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":16},"status":"FINISHED"},{"index":16,"id":6895,"mal_id":6895,"title":"Hakuouki","english":"Hakuoki ~Demon of the Fleeting Blossom~","native":"薄桜鬼","synonyms":["Hakuoki","Hakuouki Shinsengumi Kitan"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":4},"status":"FINISHED"},{"index":17,"id":8410,"mal_id":8410,"title":"Metal Fight Beyblade: Baku","english":"Beyblade: Metal Masters","native":"メタルファイト ベイブレード~爆~","synonyms":["Metal Fight Beyblade: Explosion","Metal Fight Beyblade 2","Beyblade: Metal Fusion 2"],"format":"TV","episodes":51,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":4},"status":"FINISHED"},{"index":18,"id":8740,"mal_id":8740,"title":"ONE PIECE FILM: STRONG WORLD - EPISODE:0","english":null,"native":"ONE PIECE FILM STRONG WORLD EPISODE:0","synonyms":[],"format":"OVA","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":16},"status":"FINISHED"},{"index":19,"id":8479,"mal_id":8479,"title":"Hetalia World Series","english":"Hetalia World Series","native":"ヘタリア World Series","synonyms":[],"format":"ONA","episodes":48,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":3,"day":26},"status":"FINISHED"},{"index":20,"id":8310,"mal_id":8310,"title":"Magic Kaito","english":null,"native":"まじっく快斗","synonyms":["Kaito Kid","Majikku Kaito","Kaitou Kid","Magic Kaitou"],"format":"SPECIAL","episodes":12,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":17},"status":"FINISHED"},{"index":21,"id":6772,"mal_id":6772,"title":"Break Blade 1: Kakusei no Toki","english":"Broken Blade","native":"ブレイク ブレイド 覚醒ノ刻","synonyms":["Breaker Blade","Break Blade 1: The Time of Awakening"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":5,"day":29},"status":"FINISHED"},{"index":22,"id":7058,"mal_id":7058,"title":"Uragiri wa Boku no Namae wo Shitteiru","english":"The Betrayal Knows My Name","native":"裏切りは僕の名前を知っている","synonyms":["Uraboku"],"format":"TV","episodes":24,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":12},"status":"FINISHED"},{"index":23,"id":6408,"mal_id":6408,"title":"Bungaku Shoujo","english":null,"native":"文学少女","synonyms":["Book Girl","Literature Girl","Book Girl: La chica de los libros","Book Girl, La Chica que Devoraba Libros","Bungaku Shoujo - O Filme","Garota dos Livros: O Filme","Буквоежка"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":5,"day":1},"status":"FINISHED"},{"index":24,"id":7661,"mal_id":7661,"title":"GIANT KILLING","english":"Giant Killing","native":"GIANT KILLING","synonyms":["ジャイアントキリング"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"year":2010,"month":4,"day":4},"status":"FINISHED"}],"jikan":[{"index":0,"id":6547,"mal_id":6547,"title":"Angel Beats!","english":"Angel Beats!","native":"Angel Beats!(エンジェルビーツ!)","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"day":3,"month":4,"year":2010},"status":"Finished Airing"},{"index":1,"id":7054,"mal_id":7054,"title":"Kaichou wa Maid-sama!","english":"Maid Sama!","native":"会長はメイド様!","synonyms":["Class President is a Maid!"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"day":2,"month":4,"year":2010},"status":"Finished Airing"},{"index":2,"id":7791,"mal_id":7791,"title":"K-On!!","english":"K-ON! Season 2","native":"けいおん!!","synonyms":["Keion 2","K-On!! 2nd Season"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"day":7,"month":4,"year":2010},"status":"Finished Airing"},{"index":3,"id":7593,"mal_id":7593,"title":"Kiss x Sis (TV)","english":null,"native":"キスシス","synonyms":["Kiss x Sis (2010)","Kissxsis"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"day":5,"month":4,"year":2010},"status":"Finished Airing"},{"index":4,"id":7088,"mal_id":7088,"title":"Ichiban Ushiro no Daimaou","english":"Demon King Daimao","native":"いちばんうしろの大魔王","synonyms":["Ichiban Ushiro no Dai Mao"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"day":3,"month":4,"year":2010},"status":"Finished Airing"},{"index":5,"id":7785,"mal_id":7785,"title":"Yojouhan Shinwa Taikei","english":"The Tatami Galaxy","native":"四畳半神話大系","synonyms":["Yojo-Han Shinwa Taikei","Yojou-Han Shinwa Taikei","Yojohan Shinwa Taikei"],"format":"TV","episodes":11,"season":"SPRING","year":2010,"start_date":{"day":23,"month":4,"year":2010},"status":"Finished Airing"},{"index":6,"id":6956,"mal_id":6956,"title":"Working!!","english":"Wagnaria!!","native":"WORKING [ワーキング]!!","synonyms":["Working!!"],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"day":4,"month":4,"year":2010},"status":"Finished Airing"},{"index":7,"id":6114,"mal_id":6114,"title":"Rainbow: Nisha Rokubou no Shichinin","english":"Rainbow","native":"RAINBOW 二舎六房の七人","synonyms":["Rainbow: Criminal Seven of Compound Two Cell Six"],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"day":7,"month":4,"year":2010},"status":"Finished Airing"},{"index":8,"id":7817,"mal_id":7817,"title":"B-gata H-kei","english":"Yamada's First Time: B Gata H Kei","native":"B型H系","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"day":2,"month":4,"year":2010},"status":"Finished Airing"},{"index":9,"id":7647,"mal_id":7647,"title":"Arakawa Under the Bridge","english":"Arakawa Under the Bridge","native":"荒川アンダー ザ ブリッジ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"day":5,"month":4,"year":2010},"status":"Finished Airing"},{"index":10,"id":4901,"mal_id":4901,"title":"Black Lagoon: Roberta's Blood Trail","english":"Black Lagoon: Roberta's Blood Trail","native":"BLACK LAGOON Roberta's Blood Trail","synonyms":["Black Lagoon 3"],"format":"OVA","episodes":5,"season":null,"year":null,"start_date":{"day":27,"month":6,"year":2010},"status":"Finished Airing"},{"index":11,"id":7472,"mal_id":7472,"title":"Gintama Movie 1: Shinyaku Benizakura-hen","english":"Gintama: The Movie","native":"劇場版 銀魂 新訳紅桜篇","synonyms":["Gintama: Benizakura Arc - A New Retelling","Gintama Movie: Crimson Sakura Chapter New Edition","Gintama: Shin-yaku Benizakura-hen"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":4,"year":2010},"status":"Finished Airing"},{"index":12,"id":6895,"mal_id":6895,"title":"Hakuouki","english":"Hakuoki ~Demon of the Fleeting Blossom~","native":"薄桜鬼","synonyms":["Hakuoki,Hakuouki: Shinsengumi Kitan"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"day":4,"month":4,"year":2010},"status":"Finished Airing"},{"index":13,"id":4106,"mal_id":4106,"title":"Trigun: Badlands Rumble","english":"Trigun: Badlands Rumble","native":"トライガン","synonyms":["Trigun the Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":4,"year":2010},"status":"Finished Airing"},{"index":14,"id":7590,"mal_id":7590,"title":"Mayoi Neko Overrun!","english":"Stray Cats Overrun!","native":"迷い猫オーバーラン!","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2010,"start_date":{"day":6,"month":4,"year":2010},"status":"Finished Airing"},{"index":15,"id":7058,"mal_id":7058,"title":"Uragiri wa Boku no Namae wo Shitteiru","english":"The Betrayal Knows My Name","native":"裏切りは僕の名前を知っている","synonyms":["Uraboku"],"format":"TV","episodes":24,"season":"SPRING","year":2010,"start_date":{"day":12,"month":4,"year":2010},"status":"Finished Airing"},{"index":16,"id":7588,"mal_id":7588,"title":"Saraiya Goyou","english":"House of Five Leaves","native":"さらい屋 五葉","synonyms":["Sarai-ya Goyou"],"format":"TV","episodes":12,"season":"SPRING","year":2010,"start_date":{"day":16,"month":4,"year":2010},"status":"Finished Airing"},{"index":17,"id":8740,"mal_id":8740,"title":"One Piece Film: Strong World Episode 0","english":null,"native":"ワンピース フィルム ストロングワールド エピソードゼロ","synonyms":[],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":4,"year":2010},"status":"Finished Airing"},{"index":18,"id":6772,"mal_id":6772,"title":"Break Blade Movie 1: Kakusei no Toki","english":"Broken Blade","native":"ブレイク ブレイド 覚醒ノ刻","synonyms":["Breaker Blade","Break Blade 1: The Time of Awakening"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":29,"month":5,"year":2010},"status":"Finished Airing"},{"index":19,"id":6864,"mal_id":6864,"title":"xxxHOLiC Rou","english":null,"native":"xxxHOLiC 籠","synonyms":["xxxHOLiC Rou: Adayume"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":23,"month":4,"year":2010},"status":"Finished Airing"},{"index":20,"id":8310,"mal_id":8310,"title":"Magic Kaito","english":null,"native":"まじっく快斗","synonyms":["Kaito Kid","Majikku Kaito","Kaitou Kid","Magic Kaitou","Detective Conan Special: Secret Birth of Kaito Kid","Kaitou Kid Tanjou no Himitsu"],"format":"TV Special","episodes":12,"season":null,"year":null,"start_date":{"day":17,"month":4,"year":2010},"status":"Finished Airing"},{"index":21,"id":7661,"mal_id":7661,"title":"Giant Killing","english":"Giant Killing","native":"ジャイアントキリング","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2010,"start_date":{"day":4,"month":4,"year":2010},"status":"Finished Airing"},{"index":22,"id":5337,"mal_id":5337,"title":"Bakugan Battle Brawlers: New Vestroia","english":"Bakugan: New Vestroia","native":"爆丸バトルブローラーズ New Vestroia","synonyms":[],"format":"TV","episodes":52,"season":"SPRING","year":2010,"start_date":{"day":2,"month":3,"year":2010},"status":"Finished Airing"},{"index":23,"id":8634,"mal_id":8634,"title":"Koisuru Boukun","english":"The Tyrant Falls In Love","native":"恋する暴君","synonyms":["Koi Suru Boukun","Koisuru Bokun"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":25,"month":6,"year":2010},"status":"Finished Airing"},{"index":24,"id":6408,"mal_id":6408,"title":"\"Bungaku Shoujo\" Movie","english":null,"native":"劇場版“文学少女”","synonyms":["Book Girl","Literature Girl"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":1,"month":5,"year":2010},"status":"Finished Airing"}]},{"year":2012,"season":"spring","anilist":[{"index":0,"id":12189,"mal_id":12189,"title":"Hyouka","english":"Hyouka","native":"氷菓","synonyms":["Hyouka: Forbidden Secrets","เฮียวกะปริศนาความทรงจำ","Хёка","빙과","冰菓"],"format":"TV","episodes":22,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":23},"status":"FINISHED"},{"index":1,"id":11771,"mal_id":11771,"title":"Kuroko no Basket","english":"Kuroko's Basketball","native":"黒子のバスケ","synonyms":["Kuroko no Basuke","The Basketball Which Kuroko Plays","הכדורסל של קורוקו","Баскетбол Куроко","Το Μπάσκετ του Κουρόκο"],"format":"TV","episodes":25,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":8},"status":"FINISHED"},{"index":2,"id":11741,"mal_id":11741,"title":"Fate/Zero 2nd Season","english":"Fate/Zero Season 2","native":"Fate/Zero 2ndシーズン","synonyms":["フェイト/ゼロ 2ndシーズン","F/Z","Судьба/Начало 2"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":8},"status":"FINISHED"},{"index":3,"id":12355,"mal_id":12355,"title":"Ookami Kodomo no Ame to Yuki","english":"Wolf Children","native":"おおかみこどもの雨と雪","synonyms":["The Wolf Children Ame and Yuki","Los Niños Lobo","Les Enfants loups, Ame & Yuki","Wilcze Dzieci","Ame e Yuki i bambini lupo","Crianças Lobo","Vargbarnen"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":6,"day":25},"status":"FINISHED"},{"index":4,"id":11759,"mal_id":11759,"title":"Accel World","english":"Accel World","native":"アクセル・ワールド","synonyms":["Accelerated World"],"format":"TV","episodes":24,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":7},"status":"FINISHED"},{"index":5,"id":11499,"mal_id":11499,"title":"Sankarea","english":"Sankarea: Undying Love","native":"さんかれあ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":6},"status":"FINISHED"},{"index":6,"id":12531,"mal_id":12531,"title":"Sakamichi no Apollon","english":"Kids on the Slope","native":"坂道のアポロン","synonyms":["Sakamichi no Aporon","Apollo on the Slope"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":13},"status":"FINISHED"},{"index":7,"id":12445,"mal_id":12445,"title":"Tasogare Otome x Amnesia","english":"Dusk Maiden of Amnesia","native":"黄昏乙女×アムネジア","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":9},"status":"FINISHED"},{"index":8,"id":12413,"mal_id":12413,"title":"Jormungand","english":"Jormungand","native":"ヨルムンガンド","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":11},"status":"FINISHED"},{"index":9,"id":11785,"mal_id":11785,"title":"Haiyore! Nyaruko-san","english":"Nyaruko: Crawling with Love!","native":"這いよれ!ニャル子さん","synonyms":["Haiyoru! Nyaruko-san","Nyarko-san: Another Crawling Chaos"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":10},"status":"FINISHED"},{"index":10,"id":12467,"mal_id":12467,"title":"Nazo no Kanojo X","english":"Mysterious Girlfriend X","native":"謎の彼女X","synonyms":["MGX","NazoKanoX"],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":8},"status":"FINISHED"},{"index":11,"id":12291,"mal_id":12291,"title":"Acchi Kocchi","english":"Place to Place","native":"あっちこっち","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":6},"status":"FINISHED"},{"index":12,"id":10790,"mal_id":10790,"title":"Kore wa Zombie desu ka? of the Dead","english":"Is this A Zombie? of the Dead","native":"これはゾンビですか?オブ・ザ・デッド","synonyms":["Kore wa Zombie Desu ka? Jigoku-hen"],"format":"TV","episodes":10,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":5},"status":"FINISHED"},{"index":13,"id":11761,"mal_id":11761,"title":"Medaka Box","english":"Medaka Box","native":"めだかボックス","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":5},"status":"FINISHED"},{"index":14,"id":12431,"mal_id":12431,"title":"Uchuu Kyoudai","english":"Space Brothers","native":"宇宙兄弟","synonyms":["Uchu Kyodai","Space Bros"],"format":"TV","episodes":99,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":1},"status":"FINISHED"},{"index":15,"id":13357,"mal_id":13357,"title":"High School DxD Specials","english":"High School DxD: Fantasy Jiggles Unleashed","native":"ハイスクールD×Dスペシャル","synonyms":["Highschool DxD Specials"],"format":"SPECIAL","episodes":6,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":3,"day":21},"status":"FINISHED"},{"index":16,"id":11701,"mal_id":11701,"title":"Another: The Other - Inga","english":"Another: The Other","native":"アナザー The Other -因果-","synonyms":["Another 00","Another: The Other -Inga-","Another OAD","Another OVA"],"format":"OVA","episodes":1,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":5,"day":26},"status":"FINISHED"},{"index":17,"id":12883,"mal_id":12883,"title":"Tsuritama","english":"Tsuritama","native":"つり球","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":13},"status":"FINISHED"},{"index":18,"id":12893,"mal_id":12893,"title":"Danshi Koukousei no Nichijou Specials","english":"Daily Lives of High School Boys Specials","native":"男子高校生の日常","synonyms":[],"format":"SPECIAL","episodes":6,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":3},"status":"FINISHED"},{"index":19,"id":12029,"mal_id":12029,"title":"Uchuu Senkan Yamato 2199","english":"Star Blazers: Space Battleship Yamato 2199","native":"宇宙戦艦ヤマト2199","synonyms":[],"format":"OVA","episodes":26,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":6},"status":"FINISHED"},{"index":20,"id":10681,"mal_id":10681,"title":"BLOOD-C: The Last Dark","english":"BLOOD-C: The Last Dark","native":"劇場版 BLOOD-C The Last Dark","synonyms":["Blood-C Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":6,"day":2},"status":"FINISHED"},{"index":21,"id":11837,"mal_id":11837,"title":"Zetman","english":"Zetman","native":"ゼットマン","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":3},"status":"FINISHED"},{"index":22,"id":13203,"mal_id":13203,"title":"LUPIN the Third: Mine Fujiko to Iu Onna","english":"Lupin the Third: The Woman Called Fujiko Mine","native":"LUPIN the Third ~峰不二子という女~","synonyms":["Lupin III","Lupin III~Mine Fujiko to Iu Onna~","Lupin the Third: La donna chiamata Fujiko Mine"],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":5},"status":"FINISHED"},{"index":23,"id":12815,"mal_id":12815,"title":"Shirokuma Cafe","english":"Polar Bear's Café","native":"しろくまカフェ","synonyms":["Polar Bear Cafe","Shirokuma Café"],"format":"TV","episodes":50,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":5},"status":"FINISHED"},{"index":24,"id":12979,"mal_id":12979,"title":"NARUTO SD Rock Lee no Seishun Full-Power Ninden","english":"NARUTO Spin-Off: Rock Lee & His Ninja Pals","native":"NARUTOナルトSD ロック・リーの青春フルパワー忍伝","synonyms":["Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe"],"format":"TV","episodes":51,"season":"SPRING","year":2012,"start_date":{"year":2012,"month":4,"day":3},"status":"FINISHED"}],"jikan":[{"index":0,"id":12189,"mal_id":12189,"title":"Hyouka","english":"Hyouka","native":"氷菓","synonyms":["Hyou-ka","Hyouka: You can't escape","Hyou-ka: You can't escape","Hyoka"],"format":"TV","episodes":22,"season":"SPRING","year":2012,"start_date":{"day":23,"month":4,"year":2012},"status":"Finished Airing"},{"index":1,"id":11771,"mal_id":11771,"title":"Kuroko no Basket","english":"Kuroko's Basketball","native":"黒子のバスケ","synonyms":["Kuroko no Basuke","KuroBas","The Basketball Which Kuroko Plays"],"format":"TV","episodes":25,"season":"SPRING","year":2012,"start_date":{"day":8,"month":4,"year":2012},"status":"Finished Airing"},{"index":2,"id":11741,"mal_id":11741,"title":"Fate/Zero 2nd Season","english":"Fate/Zero Season 2","native":"フェイト/ゼロ 2ndシーズン","synonyms":["Fate/Zero Second Season"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":8,"month":4,"year":2012},"status":"Finished Airing"},{"index":3,"id":11759,"mal_id":11759,"title":"Accel World","english":"Accel World","native":"アクセル・ワールド","synonyms":["Accelerated World"],"format":"TV","episodes":24,"season":"SPRING","year":2012,"start_date":{"day":7,"month":4,"year":2012},"status":"Finished Airing"},{"index":4,"id":11499,"mal_id":11499,"title":"Sankarea","english":"Sankarea: Undying Love","native":"さんかれあ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":6,"month":4,"year":2012},"status":"Finished Airing"},{"index":5,"id":12445,"mal_id":12445,"title":"Tasogare Otome x Amnesia","english":"Dusk Maiden of Amnesia","native":"黄昏乙女×アムネジア","synonyms":["Tasogare Otome x Amnesia"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":9,"month":4,"year":2012},"status":"Finished Airing"},{"index":6,"id":12531,"mal_id":12531,"title":"Sakamichi no Apollon","english":"Kids on the Slope","native":"坂道のアポロン","synonyms":["Sakamichi no Aporon","Apollo on the Slope"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":13,"month":4,"year":2012},"status":"Finished Airing"},{"index":7,"id":12413,"mal_id":12413,"title":"Jormungand","english":"Jormungand","native":"ヨルムンガンド","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":11,"month":4,"year":2012},"status":"Finished Airing"},{"index":8,"id":10790,"mal_id":10790,"title":"Kore wa Zombie desu ka? of the Dead","english":"Is This a Zombie? of the Dead","native":"これはゾンビですか? OF THE DEAD","synonyms":["Kore wa Zombie Desu ka? 2","Koreha Zombie Desu ka? Jigokuhen","Kore ha Zombie Desu ka? Jigokuhen","Kore wa Zombie Desu ka? Jigokuhen","Kore wa Zombie Desuka? of the Dead"],"format":"TV","episodes":10,"season":"SPRING","year":2012,"start_date":{"day":5,"month":4,"year":2012},"status":"Finished Airing"},{"index":9,"id":11785,"mal_id":11785,"title":"Haiyore! Nyaruko-san","english":"Nyaruko: Crawling With Love!","native":"這いよれ!ニャル子さん","synonyms":["Nyarko-san: Another Crawling Chaos","Haiyoru! Nyaruko-san"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":10,"month":4,"year":2012},"status":"Finished Airing"},{"index":10,"id":12467,"mal_id":12467,"title":"Nazo no Kanojo X","english":"Mysterious Girlfriend X","native":"謎の彼女X","synonyms":["MGX","NazoKano"],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"day":8,"month":4,"year":2012},"status":"Finished Airing"},{"index":11,"id":12291,"mal_id":12291,"title":"Acchi Kocchi","english":"Place to Place","native":"あっちこっち","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":6,"month":4,"year":2012},"status":"Finished Airing"},{"index":12,"id":11761,"mal_id":11761,"title":"Medaka Box","english":"Medaka Box","native":"めだかボックス","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":5,"month":4,"year":2012},"status":"Finished Airing"},{"index":13,"id":12113,"mal_id":12113,"title":"Berserk: Ougon Jidai-hen II - Doldrey Kouryaku","english":"Berserk: The Golden Age Arc II - The Battle for Doldrey","native":"ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略","synonyms":["Berserk Movie","Berserk Saga"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":6,"year":2012},"status":"Finished Airing"},{"index":14,"id":12431,"mal_id":12431,"title":"Uchuu Kyoudai","english":"Space Brothers","native":"宇宙兄弟","synonyms":["Uchuu Kyodai"],"format":"TV","episodes":99,"season":"SPRING","year":2012,"start_date":{"day":1,"month":4,"year":2012},"status":"Finished Airing"},{"index":15,"id":11701,"mal_id":11701,"title":"Another: The Other - Inga","english":"Another: The Other","native":"アナザー The Other -因果-","synonyms":["Another 00","Another: The Other -Inga-","Another OAD","Another OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":5,"year":2012},"status":"Finished Airing"},{"index":16,"id":12883,"mal_id":12883,"title":"Tsuritama","english":"Tsuritama","native":"つり球","synonyms":["Fishing Ball"],"format":"TV","episodes":12,"season":"SPRING","year":2012,"start_date":{"day":13,"month":4,"year":2012},"status":"Finished Airing"},{"index":17,"id":12893,"mal_id":12893,"title":"Danshi Koukousei no Nichijou Specials","english":"Daily Lives of High School Boys Specials","native":"男子高校生の日常","synonyms":[],"format":"Special","episodes":6,"season":null,"year":null,"start_date":{"day":3,"month":4,"year":2012},"status":"Finished Airing"},{"index":18,"id":11837,"mal_id":11837,"title":"Zetman","english":"Zetman","native":"ゼットマン","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"day":3,"month":4,"year":2012},"status":"Finished Airing"},{"index":19,"id":12029,"mal_id":12029,"title":"Uchuu Senkan Yamato 2199","english":"Star Blazers: Space Battleship Yamato 2199","native":"宇宙戦艦ヤマト2199","synonyms":[],"format":"OVA","episodes":26,"season":null,"year":null,"start_date":{"day":25,"month":5,"year":2012},"status":"Finished Airing"},{"index":20,"id":12461,"mal_id":12461,"title":"Hiiro no Kakera","english":"Hiiro no Kakera: The Tamayori Princess Saga","native":"緋色の欠片","synonyms":["Scarlet Fragment","Hiiro no Kakera: Tamayori Hime Kitan"],"format":"TV","episodes":13,"season":"SPRING","year":2012,"start_date":{"day":1,"month":4,"year":2012},"status":"Finished Airing"},{"index":21,"id":13055,"mal_id":13055,"title":"Sankarea OVA","english":null,"native":"さんかれあ","synonyms":["Sankarea Episodes 00 & 14"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":8,"month":6,"year":2012},"status":"Finished Airing"},{"index":22,"id":10681,"mal_id":10681,"title":"Blood-C: The Last Dark","english":"Blood-C: The Last Dark","native":"劇場版 ブラッドシー ザ ラスト ダーク","synonyms":["Blood-C Movie","Gekijouban Blood-C"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":6,"year":2012},"status":"Finished Airing"},{"index":23,"id":12979,"mal_id":12979,"title":"Naruto SD: Rock Lee no Seishun Full-Power Ninden","english":"Naruto Spin-Off: Rock Lee & His Ninja Pals","native":"ナルトSD ロック・リーの青春フルパワー忍伝","synonyms":[],"format":"TV","episodes":51,"season":"SPRING","year":2012,"start_date":{"day":3,"month":4,"year":2012},"status":"Finished Airing"},{"index":24,"id":12815,"mal_id":12815,"title":"Shirokuma Cafe","english":"Polar Bear Cafe","native":"しろくまカフェ","synonyms":["Polar Bear Café","Shirokuma Café"],"format":"TV","episodes":50,"season":"SPRING","year":2012,"start_date":{"day":5,"month":4,"year":2012},"status":"Finished Airing"}]},{"year":2014,"season":"spring","anilist":[{"index":0,"id":20464,"mal_id":20583,"title":"Haikyuu!!","english":"HAIKYU!!","native":"ハイキュー!!","synonyms":["High Kyuu!!","HAIKYÛ !!","排球少年!!","Haikyu!! L'asso del volley","ไฮคิว!! คู่ตบฟ้าประทาน"],"format":"TV","episodes":25,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":1,"id":19815,"mal_id":19815,"title":"No Game No Life","english":"No Game, No Life","native":"ノーゲーム・ノーライフ","synonyms":["NGNL","NO GAME NO LIFE游戏人生","游戏人生","โนเกม โนไลฟ์","遊戲人生","NO GAME NO LIFE 遊戲人生","nogenora ","ノゲノラ"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":9},"status":"FINISHED"},{"index":2,"id":20474,"mal_id":20899,"title":"JoJo no Kimyou na Bouken: Stardust Crusaders","english":"JoJo's Bizarre Adventure: Stardust Crusaders","native":"ジョジョの奇妙な冒険 スターダストクルセイダース","synonyms":["Dai San Bu Kujo Jotaro: Mirai e no Isan","JoJo no Kimyou na Bouken Part 3: Stardust Crusaders","JoJo's Bizarre Adventure Part 3: Stardust Crusaders","ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ","مغامرات جوجو العجيبة : فرسان غبار النجم","Le bizzarre avventure di JoJo: Stardust Crusaders","Невероятные приключения ДжоДжо: Крестоносцы звездной пыли"],"format":"TV","episodes":24,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":5},"status":"FINISHED"},{"index":3,"id":20458,"mal_id":20785,"title":"Mahouka Koukou no Rettousei","english":"The Irregular at Magic High School","native":"魔法科高校の劣等生","synonyms":["พี่น้องปริศนาโรงเรียนมหาเวท","Непутёвый ученик в школе магии"],"format":"TV","episodes":26,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":4,"id":20457,"mal_id":20787,"title":"Black Bullet","english":"Black Bullet","native":"ブラック・ブレット","synonyms":["แบล็ค บุลเลท ","黑色子彈"],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":8},"status":"FINISHED"},{"index":5,"id":20626,"mal_id":22043,"title":"FAIRY TAIL (2014)","english":"Fairy Tail Series 2","native":"FAIRY TAIL (2014)","synonyms":["Fairy Tail 2","Fairy Tail Season 2","フェアリーテイル (2014)"],"format":"TV","episodes":102,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":5},"status":"FINISHED"},{"index":6,"id":19163,"mal_id":19163,"title":"Date A Live II","english":"Date A Live II","native":"デート・ア・ライブⅡ","synonyms":["Date A Live 2","พิชิตรัก พิทักษ์โลก ภาค 2","Рандеву с жизнью"],"format":"TV","episodes":10,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":12},"status":"FINISHED"},{"index":7,"id":20607,"mal_id":22135,"title":"Ping Pong THE ANIMATION","english":"Ping Pong the Animation","native":"ピンポン THE ANIMATION","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":11},"status":"FINISHED"},{"index":8,"id":20519,"mal_id":21647,"title":"Tamako Love Story","english":"Tamako -love story-","native":"たまこラブストーリー","synonyms":["Miłosna opowieść Tamako"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":26},"status":"FINISHED"},{"index":9,"id":20541,"mal_id":21603,"title":"Mekakucity Actors","english":null,"native":"メカクシティアクターズ","synonyms":["Kagerou Days","Heat-Haze Days","Mekaku City Actors","Kagerou Project"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":13},"status":"FINISHED"},{"index":10,"id":20462,"mal_id":20853,"title":"Hitsugi no Chaika","english":"Chaika -The Coffin Princess-","native":"棺姫のチャイカ","synonyms":["Hitsugi Hime no Chaika"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":10},"status":"FINISHED"},{"index":11,"id":20529,"mal_id":21405,"title":"Bokura wa Minna Kawaisou","english":"The Kawai Complex Guide to Manors and Hostel Behavior","native":"僕らはみんな河合荘","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":4},"status":"FINISHED"},{"index":12,"id":20527,"mal_id":21327,"title":"Isshuukan Friends.","english":"One Week Friends","native":"一週間フレンズ。","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":7},"status":"FINISHED"},{"index":13,"id":20534,"mal_id":21431,"title":"Gokukoku no Brynhildr","english":"Brynhildr in the Darkness","native":"極黒のブリュンヒルデ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":14,"id":20517,"mal_id":21273,"title":"Gochuumon wa Usagi desu ka?","english":"Is the Order a Rabbit?","native":"ご注文はうさぎですか?","synonyms":["Gochiusa","ごちうさ"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":10},"status":"FINISHED"},{"index":15,"id":20599,"mal_id":22101,"title":"Soredemo Sekai wa Utsukushii","english":"The World is Still Beautiful","native":"それでも世界は美しい","synonyms":["Sore demo Sekai wa Utsukushii","Even so, the World is Beautiful","Still, the World is Beautiful","O Mundo Ainda é Belo"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":16,"id":20595,"mal_id":21939,"title":"Mushishi Zoku Shou","english":"MUSHI-SHI The Next Passage","native":"蟲師 続章","synonyms":["Mushi-shi Zoku Shou","Mushishi Zokushou","Mushishi: The Next Chapter"],"format":"TV","episodes":10,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":5},"status":"FINISHED"},{"index":17,"id":19111,"mal_id":19111,"title":"Love Live! School idol project 2nd Season","english":"Love Live! School Idol Project 2nd Season","native":"ラブライブ! School idol project 2期","synonyms":["Живая любовь: проект \"Школьный идол\". 2 сезон"],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":18,"id":19429,"mal_id":19429,"title":"Akuma no Riddle","english":"Riddle Story of Devil","native":"悪魔のリドル","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":4},"status":"FINISHED"},{"index":19,"id":20537,"mal_id":21863,"title":"Mangaka-san to Assistant-san to THE ANIMATION","english":"The Comic Artist & His Assistants","native":"マンガ家さんとアシスタントさんと THE ANIMATION","synonyms":["The Comic Artist and His Assistants","The Manga Creator and the Assistant and","Mangaka-san and Assistant-san and..."],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":8},"status":"FINISHED"},{"index":20,"id":20556,"mal_id":21561,"title":"Ryuugajou Nanana no Maizoukin","english":"Nanana's Buried Treasure","native":"龍ヶ嬢七々々の埋蔵金","synonyms":["ล่าขุมสมบัติปริศนา นานานะ"],"format":"TV","episodes":11,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":11},"status":"FINISHED"},{"index":21,"id":20635,"mal_id":22777,"title":"Dragon Ball Kai (2014)","english":"Dragon Ball Z Kai: The Final Chapters","native":"ドラゴンボール改 (2014)","synonyms":["Dragon Ball Kai","DBK","DB Kai","DBZ Kai","Драконий жемчуг Кай (2014)"],"format":"TV","episodes":69,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":6},"status":"FINISHED"},{"index":22,"id":20592,"mal_id":21033,"title":"Seikoku no Dragonar","english":"Dragonar Academy","native":"星刻の竜騎士","synonyms":["อัศวินมือใหม่มังกรป้ายแดง"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":5},"status":"FINISHED"},{"index":23,"id":19775,"mal_id":19775,"title":"Sidonia no Kishi","english":"Knights of Sidonia","native":"シドニアの騎士","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":11},"status":"FINISHED"},{"index":24,"id":19685,"mal_id":19685,"title":"Kanojo ga Flag wo Oraretara","english":"If Her Flag Breaks","native":"彼女がフラグをおられたら","synonyms":["がをられ","Gaworare"],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"year":2014,"month":4,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":19815,"mal_id":19815,"title":"No Game No Life","english":"No Game, No Life","native":"ノーゲーム・ノーライフ","synonyms":["NGNL"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":9,"month":4,"year":2014},"status":"Finished Airing"},{"index":1,"id":20583,"mal_id":20583,"title":"Haikyuu!!","english":"Haikyu!!","native":"ハイキュー!!","synonyms":["High Kyuu!!","HQ!!"],"format":"TV","episodes":25,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"},{"index":2,"id":20899,"mal_id":20899,"title":"JoJo no Kimyou na Bouken Part 3: Stardust Crusaders","english":"JoJo's Bizarre Adventure: Stardust Crusaders","native":"ジョジョの奇妙な冒険 スターダストクルセイダース","synonyms":["Dai San Bu Kuujou Joutarou: Mirai e no Isan","JoJo's Bizarre Adventure Part 3"],"format":"TV","episodes":24,"season":"SPRING","year":2014,"start_date":{"day":5,"month":4,"year":2014},"status":"Finished Airing"},{"index":3,"id":20785,"mal_id":20785,"title":"Mahouka Koukou no Rettousei","english":"The Irregular at Magic High School","native":"魔法科高校の劣等生","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"},{"index":4,"id":22043,"mal_id":22043,"title":"Fairy Tail (2014)","english":"Fairy Tail Series 2","native":"FAIRY TAIL(フェアリーテイル)","synonyms":["Fairy Tail Season 2"],"format":"TV","episodes":102,"season":"SPRING","year":2014,"start_date":{"day":5,"month":4,"year":2014},"status":"Finished Airing"},{"index":5,"id":20787,"mal_id":20787,"title":"Black Bullet","english":"Black Bullet","native":"ブラック・ブレット BLACK BULLET [黒の銃弾]","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"day":8,"month":4,"year":2014},"status":"Finished Airing"},{"index":6,"id":19163,"mal_id":19163,"title":"Date A Live II","english":"Date A Live II","native":"デート・ア・ライブⅡ","synonyms":["Date A Live 2"],"format":"TV","episodes":10,"season":"SPRING","year":2014,"start_date":{"day":12,"month":4,"year":2014},"status":"Finished Airing"},{"index":7,"id":21603,"mal_id":21603,"title":"Mekakucity Actors","english":"Mekakucity Actors","native":"メカクシティアクターズ","synonyms":["Mekaku City Actors","Kagerou Project"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":13,"month":4,"year":2014},"status":"Finished Airing"},{"index":8,"id":22135,"mal_id":22135,"title":"Ping Pong the Animation","english":"Ping Pong the Animation","native":"ピンポン THE ANIMATION","synonyms":["PPTA"],"format":"TV","episodes":11,"season":"SPRING","year":2014,"start_date":{"day":11,"month":4,"year":2014},"status":"Finished Airing"},{"index":9,"id":21647,"mal_id":21647,"title":"Tamako Love Story","english":null,"native":"たまこラブストーリー","synonyms":["Tamako Market Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":4,"year":2014},"status":"Finished Airing"},{"index":10,"id":21405,"mal_id":21405,"title":"Bokura wa Minna Kawai-sou","english":"The Kawai Complex Guide to Manors and Hostel Behavior","native":"僕らはみんな河合荘","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":4,"month":4,"year":2014},"status":"Finished Airing"},{"index":11,"id":20853,"mal_id":20853,"title":"Hitsugi no Chaika","english":"Chaika: The Coffin Princess","native":"棺姫のチャイカ","synonyms":["Hitsugi Hime no Chaika"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":10,"month":4,"year":2014},"status":"Finished Airing"},{"index":12,"id":21431,"mal_id":21431,"title":"Gokukoku no Brynhildr","english":"Brynhildr in the Darkness","native":"極黒のブリュンヒルデ","synonyms":["Gokukoku no Brynhildr"],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"},{"index":13,"id":22101,"mal_id":22101,"title":"Soredemo Sekai wa Utsukushii","english":"The World is Still Beautiful","native":"それでも世界は美しい","synonyms":["Still world is Beautiful"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"},{"index":14,"id":21327,"mal_id":21327,"title":"Isshuukan Friends.","english":"One Week Friends","native":"一週間フレンズ。","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":7,"month":4,"year":2014},"status":"Finished Airing"},{"index":15,"id":21939,"mal_id":21939,"title":"Mushishi Zoku Shou","english":"Mushi-shi: Next Passage Part 1","native":"蟲師 続章","synonyms":["Mushi-shi Zoku Shou","Mushishi: The Next Chapter"],"format":"TV","episodes":10,"season":"SPRING","year":2014,"start_date":{"day":5,"month":4,"year":2014},"status":"Finished Airing"},{"index":16,"id":21863,"mal_id":21863,"title":"Mangaka-san to Assistant-san to The Animation","english":"The Comic Artist and His Assistants","native":"マンガ家さんとアシスタントさんと THE ANIMATION","synonyms":["Mangaka-san to Assistant-san to","ManAshi"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":8,"month":4,"year":2014},"status":"Finished Airing"},{"index":17,"id":19429,"mal_id":19429,"title":"Akuma no Riddle","english":"Riddle Story of Devil","native":"悪魔のリドル","synonyms":["Akuma no Riddle"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":4,"month":4,"year":2014},"status":"Finished Airing"},{"index":18,"id":19111,"mal_id":19111,"title":"Love Live! School Idol Project 2nd Season","english":"Love Live! School Idol Project 2","native":"ラブライブ! School idol project 2期","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"},{"index":19,"id":21273,"mal_id":21273,"title":"Gochuumon wa Usagi desu ka?","english":"Is the Order a Rabbit?","native":"ご注文はうさぎですか?","synonyms":["GochiUsa"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":10,"month":4,"year":2014},"status":"Finished Airing"},{"index":20,"id":21561,"mal_id":21561,"title":"Ryuugajou Nanana no Maizoukin","english":"Nanana's Buried Treasure","native":"龍ヶ嬢七々々の埋蔵金","synonyms":["Ryuugajou Nanana no Maizoukin"],"format":"TV","episodes":11,"season":"SPRING","year":2014,"start_date":{"day":11,"month":4,"year":2014},"status":"Finished Airing"},{"index":21,"id":19775,"mal_id":19775,"title":"Sidonia no Kishi","english":"Knights of Sidonia","native":"シドニアの騎士","synonyms":["Sidonia no Kishi"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":11,"month":4,"year":2014},"status":"Finished Airing"},{"index":22,"id":21033,"mal_id":21033,"title":"Seikoku no Dragonar","english":"Dragonar Academy","native":"星刻の竜騎士","synonyms":["Seikoku no Ryuukishi"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":5,"month":4,"year":2014},"status":"Finished Airing"},{"index":23,"id":21507,"mal_id":21507,"title":"Soul Eater NOT!","english":null,"native":"ソウルイーターノット!","synonyms":["SEN!"],"format":"TV","episodes":12,"season":"SPRING","year":2014,"start_date":{"day":9,"month":4,"year":2014},"status":"Finished Airing"},{"index":24,"id":22777,"mal_id":22777,"title":"Dragon Ball Kai (2014)","english":"Dragon Ball Z Kai: The Final Chapters","native":"ドラゴンボール改","synonyms":["Dragonball Kai","DBK","DB Kai","DBZ Kai"],"format":"TV","episodes":61,"season":"SPRING","year":2014,"start_date":{"day":6,"month":4,"year":2014},"status":"Finished Airing"}]},{"year":2016,"season":"spring","anilist":[{"index":0,"id":21459,"mal_id":31964,"title":"Boku no Hero Academia","english":"My Hero Academia","native":"僕のヒーローアカデミア","synonyms":["BNHA","MHA","나의 히어로 아카데미아 1기","나히아 1기","אקדמיית הגיבורים שלי","我的英雄学院","มายฮีโร่ อคาเดเมีย","أكاديميتي للأبطال","Η Δική Μου Ακαδημία Ηρώων","Akademia bohaterów","Моя геройская академия","Hősakadémia"],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":3},"status":"FINISHED"},{"index":1,"id":21355,"mal_id":31240,"title":"Re:Zero kara Hajimeru Isekai Seikatsu","english":"Re:ZERO -Starting Life in Another World-","native":"Re:ゼロから始める異世界生活","synonyms":["Re: Life in a different world from zero","ReZero","Re Zero","Re:从零开始的异世界生活","Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก","Re:Zero — жизнь с нуля в другом мире","Re:Zero Empezar de cero en un mundo diferente"],"format":"TV","episodes":25,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":4},"status":"FINISHED"},{"index":2,"id":21311,"mal_id":31478,"title":"Bungou Stray Dogs","english":"Bungo Stray Dogs","native":"文豪ストレイドッグス","synonyms":["כלבי ספרות נודדים","Văn hào lưu lạc","คณะประพันธกรจรจัด"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":7},"status":"FINISHED"},{"index":3,"id":21450,"mal_id":31933,"title":"JoJo no Kimyou na Bouken: Diamond wa Kudakenai","english":"JoJo's Bizarre Adventure: Diamond is Unbreakable","native":"ジョジョの奇妙な冒険 ダイヤモンドは砕けない","synonyms":["JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai","JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable","مغامرات جوجو العجيبة: الألماس غير قابل للكسر","Le bizzarre avventure di JoJo: Diamond is Unbreakable","Невероятные приключения ДжоДжо: Diamond is Unbreakable"],"format":"TV","episodes":39,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":2},"status":"FINISHED"},{"index":4,"id":21421,"mal_id":31798,"title":"Kiznaiver","english":"Kiznaiver","native":"キズナイーバー","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":9},"status":"FINISHED"},{"index":5,"id":21196,"mal_id":28623,"title":"Koutetsujou no Kabaneri","english":"Kabaneri of the Iron Fortress","native":"甲鉄城のカバネリ","synonyms":["Kabaneri de la Fortaleza de Hierro"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":8},"status":"FINISHED"},{"index":6,"id":21595,"mal_id":32542,"title":"Sakamoto desu ga?","english":"Haven't You Heard? I'm Sakamoto","native":"坂本ですが?","synonyms":["Sakamoto, pour vous servir !","เทพศาสตร์ซากาโมโต้","Gak Pernah Dengar Nama Aku Sakamoto?","Soy Sakamoto, ¿por?"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":8},"status":"FINISHED"},{"index":7,"id":21290,"mal_id":31404,"title":"Netoge no Yome wa Onnanoko ja Nai to Omotta?","english":"And you thought there is never a girl online?","native":"ネトゲの嫁は女の子じゃないと思った?","synonyms":["ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า?"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":7},"status":"FINISHED"},{"index":8,"id":21574,"mal_id":32380,"title":"Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!","english":"KONOSUBA -God's blessing on this wonderful world!: God's Blessings On This Wonderful Choker!","native":"この素晴らしい世界に祝福を! この素晴らしいチョーカーに祝福を!","synonyms":["Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso: As Bençãos de Deus Nesta Maravilhosa Gargantilha!","Konosuba ¡Bendito sea este mundo maravilloso!: ¡Bendita sea esta gargantilla maravillosa!","Konosuba OVA"],"format":"OVA","episodes":1,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":6,"day":24},"status":"FINISHED"},{"index":9,"id":21495,"mal_id":32093,"title":"Tanaka-kun wa Itsumo Kedaruge","english":"Tanaka-kun is Always Listless","native":"田中くんはいつもけだるげ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":9},"status":"FINISHED"},{"index":10,"id":21499,"mal_id":32105,"title":"Sousei no Onmyouji","english":"Twin Star Exorcists","native":"双星の陰陽師","synonyms":["ทวิดารา มหาองเมียวจิ"],"format":"TV","episodes":50,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":6},"status":"FINISHED"},{"index":11,"id":21394,"mal_id":31741,"title":"Magi: Sinbad no Bouken","english":"Magi: Adventure of Sinbad","native":"マギ シンドバッドの冒険","synonyms":["מאגי: הרפתקאותיו של סינבד"],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":16},"status":"FINISHED"},{"index":12,"id":21390,"mal_id":31737,"title":"Gakusen Toshi Asterisk 2","english":"The Asterisk War 2","native":"学戦都市アスタリスク 2","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":2},"status":"FINISHED"},{"index":13,"id":21362,"mal_id":31338,"title":"Hundred","english":"Hundred","native":"ハンドレッド","synonyms":["ฮันเดรด"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":5},"status":"FINISHED"},{"index":14,"id":21284,"mal_id":31376,"title":"Flying Witch","english":"Flying Witch","native":"ふらいんぐうぃっち","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":10},"status":"FINISHED"},{"index":15,"id":21296,"mal_id":31245,"title":"Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai","english":"I've Always Liked You","native":"ずっと前から好きでした。~告白実行委員会~","synonyms":["Kokuhaku Jikkou Iinkai: Renai Series"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":23},"status":"FINISHED"},{"index":16,"id":21445,"mal_id":31904,"title":"Big Order","english":"Big Order","native":"ビッグオーダー","synonyms":[],"format":"TV","episodes":10,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":16},"status":"FINISHED"},{"index":17,"id":21637,"mal_id":32681,"title":"Uchuu Patrol Luluco","english":"Space Patrol Luluco","native":"宇宙パトロールルル子","synonyms":[],"format":"TV_SHORT","episodes":13,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":1},"status":"FINISHED"},{"index":18,"id":21567,"mal_id":32438,"title":"Mayoiga","english":"The Lost Village","native":"迷家-マヨイガ-","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":1},"status":"FINISHED"},{"index":19,"id":21291,"mal_id":31405,"title":"Joker Game","english":"Joker Game","native":"ジョーカー・ゲーム","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":5},"status":"FINISHED"},{"index":20,"id":21360,"mal_id":31630,"title":"Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!","english":"Ace Attorney","native":"逆転裁判 その『真実』、異議あり!","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":2},"status":"FINISHED"},{"index":21,"id":21586,"mal_id":31378,"title":"Owari no Seraph: Kyuuketsuki Shahal","english":"Seraph of the End: Kyuuketsuki Shahal","native":"終わりのセラフ 吸血鬼シャハル","synonyms":["Owari no Seraph: Jump Festa 2015 Special","Owari no Seraph: Vampire Shahar","Owari no Seraph OVA","終わりのセラフ ジャンプフェスタ2015","เทวทูตแห่งโลกมืด OVA"],"format":"OVA","episodes":1,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":5,"day":2},"status":"FINISHED"},{"index":22,"id":21691,"mal_id":31327,"title":"Shokugeki no Souma OVA","english":"Food Wars! Shokugeki no Soma OVA","native":"食戟のソーマ OVA","synonyms":["Food Wars! Shokugeki no Soma: Takumi's Downtown Competition","Food Wars! Shokugeki no Soma: Erina's Summer Vacation"],"format":"OVA","episodes":2,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":5,"day":2},"status":"FINISHED"},{"index":23,"id":21516,"mal_id":32245,"title":"Kuromukuro","english":"Kuromukuro","native":"クロムクロ","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":7},"status":"FINISHED"},{"index":24,"id":21316,"mal_id":31500,"title":"High School Fleet","english":"High School Fleet","native":"ハイスクール・フリート","synonyms":["Haifuri"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"year":2016,"month":4,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":31964,"mal_id":31964,"title":"Boku no Hero Academia","english":"My Hero Academia","native":"僕のヒーローアカデミア","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"day":3,"month":4,"year":2016},"status":"Finished Airing"},{"index":1,"id":31240,"mal_id":31240,"title":"Re:Zero kara Hajimeru Isekai Seikatsu","english":"Re:ZERO -Starting Life in Another World-","native":"Re:ゼロから始める異世界生活","synonyms":["Re: Life in a different world from zero","ReZero"],"format":"TV","episodes":25,"season":"SPRING","year":2016,"start_date":{"day":4,"month":4,"year":2016},"status":"Finished Airing"},{"index":2,"id":31478,"mal_id":31478,"title":"Bungou Stray Dogs","english":"Bungo Stray Dogs","native":"文豪ストレイドッグス","synonyms":["Literary Stray Dogs","BSD"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":7,"month":4,"year":2016},"status":"Finished Airing"},{"index":3,"id":31933,"mal_id":31933,"title":"JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai","english":"JoJo's Bizarre Adventure: Diamond Is Unbreakable","native":"ジョジョの奇妙な冒険 ダイヤモンドは砕けない","synonyms":["JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai","Diamond is not Crash"],"format":"TV","episodes":39,"season":"SPRING","year":2016,"start_date":{"day":2,"month":4,"year":2016},"status":"Finished Airing"},{"index":4,"id":28623,"mal_id":28623,"title":"Koutetsujou no Kabaneri","english":"Kabaneri of the Iron Fortress","native":"甲鉄城のカバネリ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":8,"month":4,"year":2016},"status":"Finished Airing"},{"index":5,"id":32542,"mal_id":32542,"title":"Sakamoto desu ga?","english":"Haven't You Heard? I'm Sakamoto","native":"坂本ですが?","synonyms":["Sakamoto desu ga?"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":8,"month":4,"year":2016},"status":"Finished Airing"},{"index":6,"id":31798,"mal_id":31798,"title":"Kiznaiver","english":"Kiznaiver","native":"キズナイーバー","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":9,"month":4,"year":2016},"status":"Finished Airing"},{"index":7,"id":31404,"mal_id":31404,"title":"Netoge no Yome wa Onnanoko ja Nai to Omotta?","english":"And you thought there is never a girl online?","native":"ネトゲの嫁は女の子じゃないと思った?","synonyms":["Net Game no Yome wa Onna no Ko ja Nai to Omotta?","NetoYome"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":7,"month":4,"year":2016},"status":"Finished Airing"},{"index":8,"id":32105,"mal_id":32105,"title":"Sousei no Onmyouji","english":"Twin Star Exorcists","native":"双星の陰陽師","synonyms":[],"format":"TV","episodes":50,"season":"SPRING","year":2016,"start_date":{"day":6,"month":4,"year":2016},"status":"Finished Airing"},{"index":9,"id":31741,"mal_id":31741,"title":"Magi: Sinbad no Bouken (TV)","english":"Magi: Adventure of Sinbad","native":"マギ シンドバッドの冒険","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"day":16,"month":4,"year":2016},"status":"Finished Airing"},{"index":10,"id":32093,"mal_id":32093,"title":"Tanaka-kun wa Itsumo Kedaruge","english":"Tanaka-kun is Always Listless","native":"田中くんはいつもけだるげ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":9,"month":4,"year":2016},"status":"Finished Airing"},{"index":11,"id":31737,"mal_id":31737,"title":"Gakusen Toshi Asterisk 2nd Season","english":"The Asterisk War Season 2","native":"学戦都市アスタリスク","synonyms":["Academy Battle City Asterisk"],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":2,"month":4,"year":2016},"status":"Finished Airing"},{"index":12,"id":32380,"mal_id":32380,"title":"Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!","english":"KonoSuba: God's Blessing on This Wonderful World! - God's Blessing on This Wonderful Choker!","native":"この素晴らしい世界に祝福を! 第11話 この素晴らしいチヨーカーに祝福を!","synonyms":["KonoSuba OVA","A Blessing to this Wonderful Choker!"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":6,"year":2016},"status":"Finished Airing"},{"index":13,"id":31338,"mal_id":31338,"title":"Hundred","english":"Hundred","native":"ハンドレッド","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":5,"month":4,"year":2016},"status":"Finished Airing"},{"index":14,"id":31376,"mal_id":31376,"title":"Flying Witch","english":"Flying Witch","native":"ふらいんぐうぃっち","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":10,"month":4,"year":2016},"status":"Finished Airing"},{"index":15,"id":31245,"mal_id":31245,"title":"Zutto Mae kara Suki deshita. Kokuhaku Jikkou Iinkai","english":"I've Always Liked You","native":"ずっと前から好きでした。~告白実行委員会~","synonyms":["HoneyWorks: I've Liked You Since Long Ago","I've liked you for a long time.: Confession Committee","I've had feelings for you since a long time ago.: Executive Confession Committee"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":4,"year":2016},"status":"Finished Airing"},{"index":16,"id":31904,"mal_id":31904,"title":"Big Order (TV)","english":null,"native":"ビッグオーダー","synonyms":["Big Order"],"format":"TV","episodes":10,"season":"SPRING","year":2016,"start_date":{"day":16,"month":4,"year":2016},"status":"Finished Airing"},{"index":17,"id":32438,"mal_id":32438,"title":"Mayoiga","english":"The Lost Village","native":"迷家-マヨイガ-","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":1,"month":4,"year":2016},"status":"Finished Airing"},{"index":18,"id":31405,"mal_id":31405,"title":"Joker Game","english":"Joker Game","native":"ジョーカー・ゲーム","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2016,"start_date":{"day":5,"month":4,"year":2016},"status":"Finished Airing"},{"index":19,"id":32681,"mal_id":32681,"title":"Uchuu Patrol Luluco","english":"Space Patrol Luluco","native":"宇宙パトロールルル子","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"day":1,"month":4,"year":2016},"status":"Finished Airing"},{"index":20,"id":31680,"mal_id":31680,"title":"Super Lovers","english":"Super Lovers","native":"SUPER LOVERS(スーパーラヴァーズ)","synonyms":[],"format":"TV","episodes":10,"season":"SPRING","year":2016,"start_date":{"day":6,"month":4,"year":2016},"status":"Finished Airing"},{"index":21,"id":32245,"mal_id":32245,"title":"Kuromukuro","english":"Kuromukuro","native":"クロムクロ","synonyms":["Black Corpse","Black Relic"],"format":"TV","episodes":26,"season":"SPRING","year":2016,"start_date":{"day":7,"month":4,"year":2016},"status":"Finished Airing"},{"index":22,"id":31630,"mal_id":31630,"title":"Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!","english":"Ace Attorney","native":"逆転裁判 ~その「真実」、異議あり!~","synonyms":["Phoenix Wright: Ace Attorney"],"format":"TV","episodes":24,"season":"SPRING","year":2016,"start_date":{"day":2,"month":4,"year":2016},"status":"Finished Airing"},{"index":23,"id":31098,"mal_id":31098,"title":"Ushio to Tora (TV) 2nd Season","english":"Ushio & Tora (2016)","native":"うしおととら","synonyms":["Ushio and Tora"],"format":"TV","episodes":13,"season":"SPRING","year":2016,"start_date":{"day":1,"month":4,"year":2016},"status":"Finished Airing"},{"index":24,"id":31327,"mal_id":31327,"title":"Shokugeki no Souma OVA","english":"Food Wars! OVA","native":"食戟のソーマ","synonyms":["Shokugeki no Souma: Jump Festa 2015 Special","Food Wars! Shokugeki no Soma OVA"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":2,"month":5,"year":2016},"status":"Finished Airing"}]},{"year":2018,"season":"spring","anilist":[{"index":0,"id":100166,"mal_id":36456,"title":"Boku no Hero Academia 3","english":"My Hero Academia Season 3","native":"僕のヒーローアカデミア3","synonyms":["BNHA 3","MHA 3","我的英雄学院 3","我的英雄学院第三季","มายฮีโร่ อคาเดเมีย ภาค 3","3أكاديميتي للأبطال","Моя геройская академия 3"],"format":"TV","episodes":25,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":7},"status":"FINISHED"},{"index":1,"id":99578,"mal_id":35968,"title":"Wotaku ni Koi wa Muzukashii","english":"Wotakoi: Love is Hard for Otaku","native":"ヲタクに恋は難しい","synonyms":["Otaku ni Koi wa Muzukashii","WotaKoi","It’s Difficult to Love an Otaku","Love is Hard for an Otaku","Love is Hard for Nerds","ווטקוי: האהבה קשה לאוטאקו","阿宅的恋爱真难","ยากแท้จริงหนอรักของโอตาคุ","الحب صعب على الأوتاكو","Wotakoi: Keine Cheats für die Liebe","Уотаку: Непроста любовь для отаку","Wotakoi: O Amor é Difícil para Otaku","Wotakoi: El Amor es Duro para los Otakus"],"format":"TV","episodes":11,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":13},"status":"FINISHED"},{"index":2,"id":100240,"mal_id":36511,"title":"Tokyo Ghoul:re","english":"Tokyo Ghoul:re","native":"東京喰種-トーキョーグール-:re","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":3},"status":"FINISHED"},{"index":3,"id":21127,"mal_id":30484,"title":"Steins;Gate 0","english":"Steins;Gate 0","native":"シュタインズ・ゲート ゼロ","synonyms":["s;g0","命运石之门0"],"format":"TV","episodes":23,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":12},"status":"FINISHED"},{"index":4,"id":100773,"mal_id":36949,"title":"Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen","english":"Food Wars! The Third Plate: Totsuki Train Arc","native":"『食戟のソーマ 餐ノ皿』 遠月列車篇","synonyms":["食戟之灵 餐之皿 远月列车篇","ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":9},"status":"FINISHED"},{"index":5,"id":100183,"mal_id":36475,"title":"Sword Art Online Alternative: Gun Gale Online","english":"Sword Art Online Alternative: Gun Gale Online","native":"ソードアート・オンライン オルタナティブ ガンゲイル・オンライン","synonyms":["SAO Alternative: Gun Gale Online","SAO GGO"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":8},"status":"FINISHED"},{"index":6,"id":100077,"mal_id":36296,"title":"Hinamatsuri","english":"HINAMATSURI","native":"ヒナまつり","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":6},"status":"FINISHED"},{"index":7,"id":100298,"mal_id":36563,"title":"Megalo Box","english":"Megalobox","native":"メガロボクス","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":6},"status":"FINISHED"},{"index":8,"id":99699,"mal_id":36028,"title":"Golden Kamuy","english":"Golden Kamuy","native":"ゴールデンカムイ","synonyms":["Golden Kamui","黄金神威"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":9},"status":"FINISHED"},{"index":9,"id":97767,"mal_id":34281,"title":"High School DxD HERO","english":null,"native":"ハイスクールD×D HERO","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":10},"status":"FINISHED"},{"index":10,"id":100526,"mal_id":36793,"title":"3D Kanojo: Real Girl","english":"Real Girl","native":"3D彼女 リアルガール","synonyms":["3D Girlfriend","Three D Kanojo Real Girl"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":4},"status":"FINISHED"},{"index":11,"id":100179,"mal_id":36470,"title":"Tada-kun wa Koi wo Shinai","english":"Tada Never Falls In Love","native":"多田くんは恋をしない","synonyms":["Tadakun wa Koi wo Shinai","Tadakoi","Tada-kun Never Falls In Love","ทาดะคุงไม่ตกหลุมรัก"],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":5},"status":"FINISHED"},{"index":12,"id":98514,"mal_id":35249,"title":"Uma Musume: Pretty Derby","english":"Umamusume: Pretty Derby","native":"ウマ娘 プリティーダービー","synonyms":["สาวม้าโมเอะ"],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":2},"status":"FINISHED"},{"index":13,"id":99531,"mal_id":35928,"title":"Devils' Line","english":"Devils' Line","native":"デビルズライン","synonyms":["Devil's Line"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":7},"status":"FINISHED"},{"index":14,"id":99693,"mal_id":36023,"title":"PERSONA5 the Animation","english":"PERSONA5 the Animation","native":"PERSONA5 the Animation","synonyms":["P5A","ペルソナ5アニメーション"],"format":"TV","episodes":26,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":8},"status":"FINISHED"},{"index":15,"id":100010,"mal_id":36266,"title":"Mahou Shoujo Site","english":"MAGICAL GIRL SITE","native":"魔法少女サイト","synonyms":["Garota Mágica .Com"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":7},"status":"FINISHED"},{"index":16,"id":100178,"mal_id":35677,"title":"Liz to Aoi Tori","english":"Liz and the Blue Bird","native":"リズと青い鳥","synonyms":["Liz und ein Blauer Vogel"," Liz et l'Oiseau bleu","莉茲與青鳥","Liz und der Blaue Vogel","ליז והציפור הכחולה"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":21},"status":"FINISHED"},{"index":17,"id":101571,"mal_id":36904,"title":"Aggressive Retsuko","english":"Aggretsuko","native":"アグレッシブ烈子","synonyms":["Η Ρέτσουκο Έξω Φρενών"],"format":"ONA","episodes":10,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":20},"status":"FINISHED"},{"index":18,"id":99916,"mal_id":36214,"title":"Asagao to Kase-san.","english":"Kase-san and Morning Glories","native":"あさがおと加瀬さん。","synonyms":["คุณคาเซะกับดอกบานเช้า"],"format":"OVA","episodes":1,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":6,"day":9},"status":"FINISHED"},{"index":19,"id":100645,"mal_id":36864,"title":"Akkun to Kanojo","english":"My Sweet Tyrant","native":"あっくんとカノジョ","synonyms":["Akkun and His Girlfriend"],"format":"TV_SHORT","episodes":25,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":6},"status":"FINISHED"},{"index":20,"id":100500,"mal_id":36754,"title":"Kakuriyo no Yadomeshi","english":"Kakuriyo -Bed & Breakfast for Spirits-","native":"かくりよの宿飯","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":2},"status":"FINISHED"},{"index":21,"id":99131,"mal_id":35756,"title":"Comic Girls","english":"Comic Girls","native":"こみっくがーるず","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":5},"status":"FINISHED"},{"index":22,"id":21746,"mal_id":33010,"title":"FLCL Progressive","english":"FLCL Progressive","native":"フリクリ プログレ","synonyms":["FLCL 2","Furi Kuri Progressive","Fooly Cooly Progressive"],"format":"TV","episodes":6,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":6,"day":3},"status":"FINISHED"},{"index":23,"id":100401,"mal_id":36652,"title":"Piano no Mori (TV)","english":"Forest of Piano","native":"ピアノの森 (TV)","synonyms":["Piano Forest","The Perfect World of Kai","El Bosque del Piano","יער הפסנתר","بيانو","Το Πιάνο στο Δάσος","Il piano nella foresta"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":9},"status":"FINISHED"},{"index":24,"id":100673,"mal_id":36884,"title":"Hisone to Maso-tan","english":"Dragon Pilot: Hisone & Masotan","native":"ひそねとまそたん","synonyms":["HisoMaso","Hisone y Masotan: A Lomos del Dragón","Pilotos de Dragão - Hisone to Masotan","هيسونا والتنين","Smocza pilotka: Hisone i Masotan","Drachenflieger"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"year":2018,"month":4,"day":13},"status":"FINISHED"}],"jikan":[{"index":0,"id":36456,"mal_id":36456,"title":"Boku no Hero Academia 3rd Season","english":"My Hero Academia Season 3","native":"僕のヒーローアカデミア","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2018,"start_date":{"day":7,"month":4,"year":2018},"status":"Finished Airing"},{"index":1,"id":36511,"mal_id":36511,"title":"Tokyo Ghoul:re","english":"Tokyo Ghoul:re","native":"東京喰種トーキョーグール:re","synonyms":["Tokyo Kushu:re","Toukyou Kuushu:re"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":3,"month":4,"year":2018},"status":"Finished Airing"},{"index":2,"id":35968,"mal_id":35968,"title":"Wotaku ni Koi wa Muzukashii","english":"Wotakoi: Love is Hard for Otaku","native":"ヲタクに恋は難しい","synonyms":["It's Difficult to Love an Otaku"],"format":"TV","episodes":11,"season":"SPRING","year":2018,"start_date":{"day":13,"month":4,"year":2018},"status":"Finished Airing"},{"index":3,"id":30484,"mal_id":30484,"title":"Steins;Gate 0","english":"Steins;Gate 0","native":"シュタインズ・ゲート ゼロ","synonyms":["Steins,Gate Zero"],"format":"TV","episodes":23,"season":"SPRING","year":2018,"start_date":{"day":12,"month":4,"year":2018},"status":"Finished Airing"},{"index":4,"id":36949,"mal_id":36949,"title":"Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen","english":"Food Wars! The Third Plate: Totsuki Train Arc","native":"食戟のソーマ 餐ノ皿 遠月列車篇","synonyms":["Shokugeki no Soma 4th Season","Food Wars! The Third Plate 2nd cour","Shokugeki no Souma: San no Sara (2018)"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":9,"month":4,"year":2018},"status":"Finished Airing"},{"index":5,"id":36475,"mal_id":36475,"title":"Sword Art Online Alternative: Gun Gale Online","english":null,"native":"ソードアート・オンライン オルタナティブ ガンゲイル・オンライン","synonyms":["SAO Alternative Gun Gale Online"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":8,"month":4,"year":2018},"status":"Finished Airing"},{"index":6,"id":34281,"mal_id":34281,"title":"High School DxD Hero","english":"High School DxD Hero","native":"ハイスクールDxD HERO","synonyms":["High School DxD Season 4"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":17,"month":4,"year":2018},"status":"Finished Airing"},{"index":7,"id":36296,"mal_id":36296,"title":"Hinamatsuri","english":"Hinamatsuri","native":"ヒナまつり","synonyms":["Hina Festival"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":6,"month":4,"year":2018},"status":"Finished Airing"},{"index":8,"id":36563,"mal_id":36563,"title":"Megalo Box","english":"Megalobox","native":"メガロボクス","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"day":6,"month":4,"year":2018},"status":"Finished Airing"},{"index":9,"id":34443,"mal_id":34443,"title":"Baki","english":null,"native":"バキ","synonyms":[],"format":"ONA","episodes":26,"season":null,"year":null,"start_date":{"day":25,"month":6,"year":2018},"status":"Finished Airing"},{"index":10,"id":36028,"mal_id":36028,"title":"Golden Kamuy","english":"Golden Kamuy","native":"ゴールデンカムイ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":9,"month":4,"year":2018},"status":"Finished Airing"},{"index":11,"id":36793,"mal_id":36793,"title":"3D Kanojo: Real Girl","english":"Real Girl","native":"3D彼女 リアルガール","synonyms":["3D Girlfriend"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":4,"month":4,"year":2018},"status":"Finished Airing"},{"index":12,"id":36470,"mal_id":36470,"title":"Tada-kun wa Koi wo Shinai","english":"Tada Never Falls in Love","native":"多田くんは恋をしない","synonyms":["Tada Doesn't Fall in Love","TadaKoi"],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"day":5,"month":4,"year":2018},"status":"Finished Airing"},{"index":13,"id":35928,"mal_id":35928,"title":"Devils Line","english":"Devils' Line","native":"デビルズライン","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":7,"month":4,"year":2018},"status":"Finished Airing"},{"index":14,"id":36023,"mal_id":36023,"title":"Persona 5 the Animation","english":"Persona 5 the Animation","native":"TVアニメ「ペルソナ5」","synonyms":["P5A","Persona 5 the Anime"],"format":"TV","episodes":26,"season":"SPRING","year":2018,"start_date":{"day":8,"month":4,"year":2018},"status":"Finished Airing"},{"index":15,"id":36266,"mal_id":36266,"title":"Mahou Shoujo Site","english":"Magical Girl Site","native":"魔法少女サイト","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":7,"month":4,"year":2018},"status":"Finished Airing"},{"index":16,"id":35249,"mal_id":35249,"title":"Uma Musume: Pretty Derby","english":"Umamusume: Pretty Derby","native":"ウマ娘 プリティーダービー","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2018,"start_date":{"day":2,"month":4,"year":2018},"status":"Finished Airing"},{"index":17,"id":36754,"mal_id":36754,"title":"Kakuriyo no Yadomeshi","english":"Kakuriyo -Bed & Breakfast for Spirits-","native":"かくりよの宿飯","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2018,"start_date":{"day":2,"month":4,"year":2018},"status":"Finished Airing"},{"index":18,"id":36864,"mal_id":36864,"title":"Akkun to Kanojo","english":"My Sweet Tyrant","native":"あっくんとカノジョ","synonyms":["Akkun and His Girlfriend"],"format":"TV","episodes":25,"season":"SPRING","year":2018,"start_date":{"day":6,"month":4,"year":2018},"status":"Finished Airing"},{"index":19,"id":36904,"mal_id":36904,"title":"Aggressive Retsuko (ONA)","english":"Aggretsuko (ONA)","native":"アグレッシブ烈子","synonyms":[],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":20,"month":4,"year":2018},"status":"Finished Airing"},{"index":20,"id":35677,"mal_id":35677,"title":"Liz to Aoi Tori","english":"Liz and the Blue Bird","native":"リズと青い鳥","synonyms":["Gekijouban Hibike! Euphonium: Mizore to Nozomi no Monogatari","Hibike! Euphonium: The Story of Mizore and Nozomi","Hibike! Euphonium Movie: Mizore to Nozomi no Monogatari"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":4,"year":2018},"status":"Finished Airing"},{"index":21,"id":35756,"mal_id":35756,"title":"Comic Girls","english":null,"native":"こみっくがーるず","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":5,"month":4,"year":2018},"status":"Finished Airing"},{"index":22,"id":38409,"mal_id":38409,"title":"Cike Wu Liuqi","english":"Scissor Seven","native":"刺客伍六七","synonyms":["伍六七","Wu Liuqi","Cike Wuliuqi","Ci Ke Wu Liu Qi","Assassin Seven","Killer Seven"],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":25,"month":4,"year":2018},"status":"Finished Airing"},{"index":23,"id":36652,"mal_id":36652,"title":"Piano no Mori (TV)","english":"Forest of Piano","native":"ピアノの森","synonyms":["Piano Forest","The Perfect World of Kai"],"format":"TV","episodes":12,"season":"SPRING","year":2018,"start_date":{"day":9,"month":4,"year":2018},"status":"Finished Airing"},{"index":24,"id":36214,"mal_id":36214,"title":"Asagao to Kase-san.","english":"Kase-san and Morning Glories","native":"あさがおと加瀬さん。","synonyms":["Morning Glory and Kase-san"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":6,"year":2018},"status":"Finished Airing"}]},{"year":2020,"season":"spring","anilist":[{"index":0,"id":112641,"mal_id":40591,"title":"Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen","english":"Kaguya-sama: Love is War?","native":"かぐや様は告らせたい?~天才たちの恋愛頭脳戦~","synonyms":["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2","Kaguya-sama: Love is War Season 2","辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季","辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2","Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen","สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2","Госпожа Кагуя: в любви как на войне. 2 сезон"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":11},"status":"FINISHED"},{"index":1,"id":115230,"mal_id":40221,"title":"Kami no Tou: Tower of God","english":"Tower of God","native":"神之塔 -Tower of God-","synonyms":["タワーオブ・ゴッド","신의 탑","Sinui Tap","Kami no Tou","TOG","Башня Бога"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":2},"status":"FINISHED"},{"index":2,"id":110349,"mal_id":40052,"title":"GREAT PRETENDER","english":"Great Pretender","native":"GREAT PRETENDER","synonyms":["大欺诈师","הנוכל","المحتال العظيم","El timador timado","Великий притворщик","Ο Μεγάλος Υποκριτής","EL GRAN FARSANTE","GrePre","グレプリ"],"format":"ONA","episodes":23,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":6,"day":2},"status":"FINISHED"},{"index":3,"id":114963,"mal_id":41168,"title":"Nakitai Watashi wa Neko wo Kaburu","english":"A Whisker Away","native":"泣きたい私は猫をかぶる","synonyms":["Nakineko","Amor de Gata","Loin de moi, près de toi","Olhos de Gato","Um ein Schnurrhaar","Miyo - Un amore felino","Для тебя я стану кошкой"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":6,"day":18},"status":"FINISHED"},{"index":4,"id":111762,"mal_id":40417,"title":"Fruits Basket: 2nd Season","english":"Fruits Basket Season 2","native":"フルーツバスケット 2nd Season","synonyms":["Furuba","Fruba","フルバ","水果篮子 第二季","เสน่ห์สาวข้าวปั้น ภาค 2","Fruits Basket (2019) 2","Корзинка фруктов 2"],"format":"TV","episodes":25,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":7},"status":"FINISHED"},{"index":5,"id":114888,"mal_id":41120,"title":"Fugou Keiji: Balance:UNLIMITED","english":"The Millionaire Detective - Balance: UNLIMITED","native":"富豪刑事 Balance:UNLIMITED","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":10},"status":"FINISHED"},{"index":6,"id":108241,"mal_id":39463,"title":"Gleipnir","english":"Gleipnir","native":"グレイプニル","synonyms":["格莱普尼尔"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":5},"status":"FINISHED"},{"index":7,"id":114043,"mal_id":40902,"title":"Shokugeki no Souma: Gou no Sara","english":"Food Wars! The Fifth Plate","native":"食戟のソーマ 豪ノ皿","synonyms":["食戟之灵:豪之皿","ยอดนักปรุงโซมะ ภาค 5"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":11},"status":"FINISHED"},{"index":8,"id":104647,"mal_id":38555,"title":"Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…","english":"My Next Life as a Villainess: All Routes Lead to Doom!","native":"乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…","synonyms":["I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..","Hamefura","Hamehura","Bakarina","转生成为了只有乙女游戏破灭Flag的邪恶大小姐…","เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":5},"status":"FINISHED"},{"index":9,"id":110354,"mal_id":40060,"title":"BNA","english":"BNA","native":"BNA ビー・エヌ・エー","synonyms":["Brand New Animal","BNA: Brand New Animal","יש חיה כזאת"],"format":"ONA","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":3,"day":21},"status":"FINISHED"},{"index":10,"id":113311,"mal_id":40716,"title":"Kakushigoto","english":"Kakushigoto","native":"かくしごと","synonyms":["ความลับของคุณพ่อเลี้ยงเดี่ยว","Тайная работа Какуси Гото"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":2},"status":"FINISHED"},{"index":11,"id":109020,"mal_id":39710,"title":"Yesterday wo Utatte","english":"SING \"YESTERDAY\" FOR ME","native":"イエスタデイをうたって","synonyms":["Sing Yesterday for Me","Спой мне \"Yesterday\""],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":5},"status":"FINISHED"},{"index":12,"id":107871,"mal_id":39292,"title":"Princess Connect! Re:Dive","english":"Princess Connect! Re:Dive","native":"プリンセスコネクト!Re:Dive","synonyms":["Priconne","ปรินเซส คอนเนค รี: ไดฟ์"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":7},"status":"FINISHED"},{"index":13,"id":106319,"mal_id":38830,"title":"Hachi-nan tte, Sore wa Nai deshou!","english":"The 8th Son? Are You Kidding Me?","native":"八男って、それはないでしょう!","synonyms":["ผมเนี่ยนะ...ชายแปด!"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":2},"status":"FINISHED"},{"index":14,"id":113693,"mal_id":40815,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season","english":"Ascendance of a Bookworm Part 2","native":"本好きの下剋上 司書になるためには手段を選んでいられません 第2期","synonyms":["Ascendance of a Bookworm Season 2","爱书的下克上:为了成为图书管理员不择手段!2","หนอนหนังสือยึดอำนาจ ภาค 2"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":5},"status":"FINISHED"},{"index":15,"id":108522,"mal_id":39555,"title":"Baki: Dai Raitaisai-hen","english":"Baki: The Great Raitai Tournament Saga","native":"バキ 大擂台賽編","synonyms":["Baki 2nd Season","Баки: Великий турнир Райтай","BAKI: La saga del gran torneo de Raitai","Baki. Saga Wielkiego Turnieju Raitai"],"format":"ONA","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":6,"day":4},"status":"FINISHED"},{"index":16,"id":112444,"mal_id":40532,"title":"Appare-Ranman!","english":"APPARE-RANMAN!","native":"天晴爛漫!","synonyms":["Appare Ranman!"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":10},"status":"FINISHED"},{"index":17,"id":110547,"mal_id":40128,"title":"Arte","english":"Arte","native":"アルテ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":4},"status":"FINISHED"},{"index":18,"id":113917,"mal_id":40858,"title":"PSYCHO-PASS 3: FIRST INSPECTOR","english":"PSYCHO-PASS 3: First Inspector","native":"PSYCHO-PASS サイコパス 3 FIRST INSPECTOR","synonyms":["PSYCHO-PASS 3: PRIMEIRO INSPETOR"],"format":"ONA","episodes":3,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":3,"day":27},"status":"FINISHED"},{"index":19,"id":110458,"mal_id":38843,"title":"Shironeko Project: ZERO CHRONICLE","english":"Shironeko Project ZERO CHRONICLE","native":"白猫プロジェクトZERO CHRONICLE","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":6},"status":"FINISHED"},{"index":20,"id":108266,"mal_id":39469,"title":"Tsugu Tsugumomo","english":"Tsugumomo2","native":"継つぐもも","synonyms":["สึกุโมโมะ ภูตสาวแสบดุ ภาค 2"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":5},"status":"FINISHED"},{"index":21,"id":112353,"mal_id":40513,"title":"Nami yo Kiitekure","english":"Wave, Listen to Me!","native":"波よ聞いてくれ","synonyms":["Born to Be On Air!"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":4},"status":"FINISHED"},{"index":22,"id":112296,"mal_id":40485,"title":"Strike the Blood IV","english":null,"native":"ストライク・ザ・ブラッド IV","synonyms":["Strike the Blood Fourth","ราชันย์โลหิตรัตติกาล ภาค 4"],"format":"OVA","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":8},"status":"FINISHED"},{"index":23,"id":109019,"mal_id":39730,"title":"Houkago Teibou Nisshi","english":"Diary of Our Days at the Breakwater","native":"放課後ていぼう日誌","synonyms":["Afterschool Embankment Journal"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":7},"status":"FINISHED"},{"index":24,"id":113108,"mal_id":40682,"title":"Kingdom 3rd Season","english":"Kingdom Season 3","native":"キングダム 第3シリーズ","synonyms":["สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3","Царство 3"],"format":"TV","episodes":26,"season":"SPRING","year":2020,"start_date":{"year":2020,"month":4,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":40591,"mal_id":40591,"title":"Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen","english":"Kaguya-sama: Love is War?","native":"かぐや様は告らせたい?~天才たちの恋愛頭脳戦~","synonyms":["Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season","Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season","Kaguya-sama: Love is War 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":11,"month":4,"year":2020},"status":"Finished Airing"},{"index":1,"id":40221,"mal_id":40221,"title":"Kami no Tou","english":"Tower of God","native":"神之塔 -Tower of God-","synonyms":["Sin-ui Tap","신의 탑"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"day":2,"month":4,"year":2020},"status":"Finished Airing"},{"index":2,"id":40902,"mal_id":40902,"title":"Shokugeki no Souma: Gou no Sara","english":"Food Wars! The Fifth Plate","native":"食戟のソーマ 豪ノ皿","synonyms":["Shokugeki no Soma 5th Season"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"day":11,"month":4,"year":2020},"status":"Finished Airing"},{"index":3,"id":40417,"mal_id":40417,"title":"Fruits Basket 2nd Season","english":"Fruits Basket 2nd Season","native":"フルーツバスケット 2nd season","synonyms":["Fruits Basket (2019) 2nd Season","Furuba","Fruits Basket (Kouhen)"],"format":"TV","episodes":25,"season":"SPRING","year":2020,"start_date":{"day":7,"month":4,"year":2020},"status":"Finished Airing"},{"index":4,"id":39463,"mal_id":39463,"title":"Gleipnir","english":"Gleipnir","native":"グレイプニル","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"day":5,"month":4,"year":2020},"status":"Finished Airing"},{"index":5,"id":38555,"mal_id":38555,"title":"Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...","english":"My Next Life as a Villainess: All Routes Lead to Doom!","native":"乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…","synonyms":["Hamefura","I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…","Destruction Flag Otome"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":5,"month":4,"year":2020},"status":"Finished Airing"},{"index":6,"id":41168,"mal_id":41168,"title":"Nakitai Watashi wa Neko wo Kaburu","english":"A Whisker Away","native":"泣きたい私は猫をかぶる","synonyms":["Nakineko"],"format":"ONA","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":6,"year":2020},"status":"Finished Airing"},{"index":7,"id":41120,"mal_id":41120,"title":"Fugou Keiji: Balance:Unlimited","english":"The Millionaire Detective – Balance: Unlimited","native":"富豪刑事 Balance:UNLIMITED","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2020,"start_date":{"day":10,"month":4,"year":2020},"status":"Finished Airing"},{"index":8,"id":40060,"mal_id":40060,"title":"BNA","english":"BNA: Brand New Animal","native":"BNA ビー・エヌ・エー","synonyms":["Brand New Animal"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":9,"month":4,"year":2020},"status":"Finished Airing"},{"index":9,"id":40716,"mal_id":40716,"title":"Kakushigoto","english":"Kakushigoto","native":"かくしごと","synonyms":["Hidden Things","Kakushigoto: My Dad's Secret Ambition"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":2,"month":4,"year":2020},"status":"Finished Airing"},{"index":10,"id":39710,"mal_id":39710,"title":"Yesterday wo Utatte","english":"Sing \"Yesterday\" for Me","native":"イエスタデイをうたって","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":5,"month":4,"year":2020},"status":"Finished Airing"},{"index":11,"id":39292,"mal_id":39292,"title":"Princess Connect! Re:Dive","english":null,"native":"プリンセスコネクト!Re:Dive","synonyms":["Priconne"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"day":7,"month":4,"year":2020},"status":"Finished Airing"},{"index":12,"id":38830,"mal_id":38830,"title":"Hachi-nan tte, Sore wa Nai deshou!","english":"The 8th Son? Are You Kidding Me?","native":"八男って、それはないでしょう!","synonyms":["Hachinan tte","Sore wa Nai deshou!"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":2,"month":4,"year":2020},"status":"Finished Airing"},{"index":13,"id":40815,"mal_id":40815,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season","english":"Ascendance of a Bookworm Season 2","native":"本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期","synonyms":["Ascendance of a Bookworm 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":5,"month":4,"year":2020},"status":"Finished Airing"},{"index":14,"id":39555,"mal_id":39555,"title":"Baki: Dai Raitaisai-hen","english":"Baki: The Great Raitai Tournament Saga","native":"バキ","synonyms":["Baki (2020)"],"format":"ONA","episodes":13,"season":null,"year":null,"start_date":{"day":4,"month":6,"year":2020},"status":"Finished Airing"},{"index":15,"id":40128,"mal_id":40128,"title":"Arte","english":"Arte","native":"アルテ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":4,"month":4,"year":2020},"status":"Finished Airing"},{"index":16,"id":40532,"mal_id":40532,"title":"Appare-Ranman!","english":"Appare-Ranman!","native":"天晴爛漫!","synonyms":["Appare Ranman!"],"format":"TV","episodes":13,"season":"SPRING","year":2020,"start_date":{"day":10,"month":4,"year":2020},"status":"Finished Airing"},{"index":17,"id":40682,"mal_id":40682,"title":"Kingdom 3rd Season","english":"Kingdom Season 3","native":"キングダム 第3シリーズ","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2020,"start_date":{"day":6,"month":4,"year":2020},"status":"Finished Airing"},{"index":18,"id":39469,"mal_id":39469,"title":"Tsugu Tsugumomo","english":null,"native":"継つぐもも","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":5,"month":4,"year":2020},"status":"Finished Airing"},{"index":19,"id":38843,"mal_id":38843,"title":"Shironeko Project: Zero Chronicle","english":"Shironeko Project ZERO CHRONICLE","native":"白猫プロジェクトZERO CHRONICLE","synonyms":["White Cat Project","Rune Story"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":6,"month":4,"year":2020},"status":"Finished Airing"},{"index":20,"id":40485,"mal_id":40485,"title":"Strike the Blood IV","english":null,"native":"ストライク・ザ・ブラッド IV","synonyms":["Strike the Blood Fourth"],"format":"OVA","episodes":12,"season":null,"year":null,"start_date":{"day":8,"month":4,"year":2020},"status":"Finished Airing"},{"index":21,"id":40513,"mal_id":40513,"title":"Nami yo Kiitekure","english":"Wave, Listen to Me!","native":"波よ聞いてくれ","synonyms":["Nami yo Kiite Kure"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":4,"month":4,"year":2020},"status":"Finished Airing"},{"index":22,"id":39730,"mal_id":39730,"title":"Houkago Teibou Nisshi","english":"Diary of Our Days at the Breakwater","native":"放課後ていぼう日誌","synonyms":["Hokago Teibo Nisshi","Afterschool Embankment Journal"],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":7,"month":4,"year":2020},"status":"Finished Airing"},{"index":23,"id":40165,"mal_id":40165,"title":"Listeners","english":"Listeners","native":"LISTENERS リスナーズ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2020,"start_date":{"day":4,"month":4,"year":2020},"status":"Finished Airing"},{"index":24,"id":41053,"mal_id":41053,"title":"Dorohedoro: Ma no Omake","english":"Dorohedoro: Bonus Curse or Extra Evil","native":"ドロヘドロ 魔のおまけ","synonyms":["Dorohedoro OVA"],"format":"Special","episodes":6,"season":null,"year":null,"start_date":{"day":17,"month":6,"year":2020},"status":"Finished Airing"}]},{"year":2022,"season":"spring","anilist":[{"index":0,"id":140960,"mal_id":50265,"title":"SPY×FAMILY","english":"SPY x FAMILY","native":"SPY×FAMILY","synonyms":["SxF","스파이 패밀리","间谍过家家","Семья шпиона","سباي إكس فاميلي"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":9},"status":"FINISHED"},{"index":1,"id":125367,"mal_id":43608,"title":"Kaguya-sama wa Kokurasetai: Ultra Romantic","english":"Kaguya-sama: Love is War -Ultra Romantic-","native":"かぐや様は告らせたい-ウルトラロマンティック-","synonyms":["Kaguya-sama: Love is War Season 3","辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3","辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季","Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3","สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3","สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-","Kaguya-sama wa Kokurasetai 3rd Season","Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic","Госпожа Кагуя: в любви как на войне. Ультраромантика","Nona Kaguya Ingin Ditembak: Ultra Romantic"],"format":"TV","episodes":13,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":9},"status":"FINISHED"},{"index":2,"id":111321,"mal_id":40356,"title":"Tate no Yuusha no Nariagari Season 2","english":"The Rising of the Shield Hero Season 2","native":"盾の勇者の成り上がり Season 2","synonyms":["ผู้กล้าโล่ผงาด ภาค 2","Восхождение героя щита 2"],"format":"TV","episodes":13,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":6},"status":"FINISHED"},{"index":3,"id":129201,"mal_id":47194,"title":"Summer Time Render","english":"Summer Time Rendering","native":"サマータイムレンダ","synonyms":["Summertime Render","ปริศนาบ้านเก่า เงามรณะ","A Ilha das Sombras","夏日重现","La Isla de las Sombras","Tajemnica wyspy ","לעבור את הקיץ","Bright Sun – Dark Shadows"],"format":"TV","episodes":25,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":15},"status":"FINISHED"},{"index":4,"id":127911,"mal_id":45613,"title":"Kawaii dake ja Nai Shikimori-san","english":"Shikimori's Not Just a Cutie","native":"可愛いだけじゃない式守さん","synonyms":["คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ","Shikimori n'est pas juste mignonne","Shikimori Không Chỉ Dễ Thương Thôi Đâu","SHIKIMORI Tidak Hanya Manis","Моя девушка не просто милашка"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":10},"status":"FINISHED"},{"index":5,"id":142984,"mal_id":50631,"title":"Komi-san wa, Komyushou desu. 2","english":"Komi Can't Communicate Part 2","native":"古見さんは、コミュ症です。2","synonyms":["Komi Can't Communicate Season 2","โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2","كومي لا تستطيع التواصل","У Коми проблемы с общением 2","Комі не вміє спілкуватися 2","המשאלה של קומי"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":7},"status":"FINISHED"},{"index":6,"id":141014,"mal_id":50273,"title":"Tomodachi Game","english":"Tomodachi Game","native":"トモダチゲーム","synonyms":["Friend Game","친구게임","โทโมดาจิ เกมมิตรภาพ","لعبة الأصدقاء","Tomodachi Game: Los juegos de la amistad"],"format":"ONA","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":6},"status":"FINISHED"},{"index":7,"id":137281,"mal_id":49520,"title":"Aharen-san wa Hakarenai","english":"Aharen-san wa Hakarenai","native":"阿波連さんははかれない","synonyms":["Aharen Is Indecipherable","Aharen Is Unfathomable"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":2},"status":"FINISHED"},{"index":8,"id":142074,"mal_id":50461,"title":"Otomege Sekai wa Mob ni Kibishii Sekai desu","english":"Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs","native":"乙女ゲー世界はモブに厳しい世界です","synonyms":["mobseka","ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม","Otome Game Sekai wa Mob ni Kibishii Sekai desu "],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":3},"status":"FINISHED"},{"index":9,"id":131520,"mal_id":48548,"title":"Go-toubun no Hanayome Movie","english":"The Quintessential Quintuplets Movie","native":"映画 五等分の花嫁","synonyms":["5-toubun no Hanayome Movie","Eiga Go-toubun no Hanayome","เจ้าสาวผมเป็นแฝดห้า The Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":5,"day":20},"status":"FINISHED"},{"index":10,"id":132052,"mal_id":48675,"title":"Kakkou no Iinazuke","english":"A Couple of Cuckoos","native":"カッコウの許嫁","synonyms":["รักอลวนคนสลับบ้าน","Обручённые кукушками","Kakkou no Iinazuke"],"format":"TV","episodes":24,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":24},"status":"FINISHED"},{"index":11,"id":132474,"mal_id":48760,"title":"Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu","english":"Skeleton Knight in Another World","native":"骸骨騎士様、只今異世界へお出掛け中","synonyms":["บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก","Kesatria Tengkorak Berkelana di Dunia Lain","Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":7},"status":"FINISHED"},{"index":12,"id":130586,"mal_id":48415,"title":"Shijou Saikyou no Daimaou, Murabito A ni Tensei suru","english":"The Greatest Demon Lord Is Reborn as a Typical Nobody","native":"史上最強の大魔王、村人Aに転生する","synonyms":["ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา","Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran","Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":6},"status":"FINISHED"},{"index":13,"id":140457,"mal_id":50175,"title":"Yuusha, Yamemasu","english":"I'm Quitting Heroing","native":"勇者、辞めます","synonyms":["Yamemasu Tsugi No Shokuba Ha Mao Jo","yuuyame","I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle","ผมน่ะเลิกเป็นผู้กล้าแล้วครับ","勇者、辭職不幹了"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":5},"status":"FINISHED"},{"index":14,"id":141774,"mal_id":50380,"title":"Paripi Koumei","english":"Ya Boy Kongming!","native":"パリピ孔明","synonyms":["Party People Kongming","Paripi Kongming","ขงเบ้งเจาะเวลามาปั้นดาว","派對咖孔明"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":3,"day":31},"status":"FINISHED"},{"index":15,"id":142455,"mal_id":50549,"title":"Bubble","english":"Bubble","native":"バブル","synonyms":["บับเบิ้ล","Burbujas","فقاعة"],"format":"ONA","episodes":1,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":28},"status":"FINISHED"},{"index":16,"id":134732,"mal_id":49052,"title":"Aoashi","english":"Aoashi","native":"アオアシ","synonyms":["AOASHI แข็งเด็กหัวใจนักสู้","أواشي","Ao Ashi - Playmaker"],"format":"TV","episodes":24,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":9},"status":"FINISHED"},{"index":17,"id":132010,"mal_id":48643,"title":"Koi wa Sekai Seifuku no Ato de","english":"Love After World Domination","native":"恋は世界征服のあとで","synonyms":["รักเรานั้นไว้หลังครองโลก","รักหลังครองโลก","Koiseka"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":8},"status":"FINISHED"},{"index":18,"id":116605,"mal_id":41461,"title":"Date A Live IV","english":"Date A Live IV","native":"デート・ア・ライブIV","synonyms":["Date A Live Season 4","พิชิตรัก พิทักษ์โลก ภาค 4","Рандеву с Жизнью 4"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":8},"status":"FINISHED"},{"index":19,"id":129193,"mal_id":47162,"title":"Shokei Shoujo no Virgin Road","english":"The Executioner and Her Way of Life","native":"処刑少女の生きる道(バージンロード)","synonyms":["เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์","處刑少女的生存之道"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":2},"status":"FINISHED"},{"index":20,"id":121176,"mal_id":42429,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season","english":"Ascendance of a Bookworm Season 3","native":"本好きの下剋上 司書になるためには手段を選んでいられません 第3期","synonyms":["爱书的下克上:为了成为图书管理员不择手段!3","หนอนหนังสือยึดอำนาจ ภาค 3","การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3","Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3","Власть книжного червя"],"format":"TV","episodes":10,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":12},"status":"FINISHED"},{"index":21,"id":133175,"mal_id":48842,"title":"Mahoutsukai Reimeiki","english":"The Dawn of the Witch","native":"魔法使い黎明期","synonyms":["魔法使黎明期","จอมเวทแห่งรุ่งอรุณ","Bình Minh Của Phù Thủy","Purwa Fajar Si Penyihir","Рассвет ведьмы"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":8},"status":"FINISHED"},{"index":22,"id":133898,"mal_id":48903,"title":"Dragon Ball Super: Super Hero","english":"Dragon Ball Super: SUPER HERO","native":"ドラゴンボール超 スーパーヒーロー","synonyms":["دراغون بول سوبر: البطل الخارق","Dragon Ball Super - Szuperhős","Драконий жемчуг: Супер — Супергерой"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":6,"day":11},"status":"FINISHED"},{"index":23,"id":125124,"mal_id":43470,"title":"Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)","english":"Science Fell in Love, So I Tried to Prove It r=1-sinθ","native":"理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)","synonyms":["พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2","Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season","พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":2},"status":"FINISHED"},{"index":24,"id":132532,"mal_id":48779,"title":"Deaimon","english":"Deaimon: Recipe for Happiness","native":"であいもん","synonyms":["Kyoto & Wagashi & Family","相合之物"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"year":2022,"month":4,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":50265,"mal_id":50265,"title":"Spy x Family","english":null,"native":"SPY×FAMILY","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":9,"month":4,"year":2022},"status":"Finished Airing"},{"index":1,"id":43608,"mal_id":43608,"title":"Kaguya-sama wa Kokurasetai: Ultra Romantic","english":"Kaguya-sama: Love is War -Ultra Romantic-","native":"かぐや様は告らせたい-ウルトラロマンティック-","synonyms":["Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season","Kaguya-sama: Love is War Season 3rd Season"],"format":"TV","episodes":13,"season":"SPRING","year":2022,"start_date":{"day":9,"month":4,"year":2022},"status":"Finished Airing"},{"index":2,"id":40356,"mal_id":40356,"title":"Tate no Yuusha no Nariagari Season 2","english":"The Rising of the Shield Hero Season 2","native":"盾の勇者の成り上がり Season2","synonyms":["Tate no Yuusha no Nariagari 2nd Season"],"format":"TV","episodes":13,"season":"SPRING","year":2022,"start_date":{"day":6,"month":4,"year":2022},"status":"Finished Airing"},{"index":3,"id":47194,"mal_id":47194,"title":"Summertime Render","english":"Summer Time Rendering","native":"サマータイムレンダ","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2022,"start_date":{"day":15,"month":4,"year":2022},"status":"Finished Airing"},{"index":4,"id":45613,"mal_id":45613,"title":"Kawaii dake ja Nai Shikimori-san","english":"Shikimori's Not Just a Cutie","native":"可愛いだけじゃない式守さん","synonyms":["Shikimori's Not Just a Cutie","Miss Shikimori is not just cute","That Girl Is Not Just Cute"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":10,"month":4,"year":2022},"status":"Finished Airing"},{"index":5,"id":50631,"mal_id":50631,"title":"Komi-san wa, Comyushou desu. 2nd Season","english":"Komi Can't Communicate Season 2","native":"古見さんは、コミュ症です。 2","synonyms":["Komi-san wa","Communication Shougai desu. 2"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":7,"month":4,"year":2022},"status":"Finished Airing"},{"index":6,"id":50273,"mal_id":50273,"title":"Tomodachi Game","english":"Tomodachi Game","native":"トモダチゲーム","synonyms":["Friends Game"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":6,"month":4,"year":2022},"status":"Finished Airing"},{"index":7,"id":49520,"mal_id":49520,"title":"Aharen-san wa Hakarenai","english":"Aharen-san wa Hakarenai","native":"阿波連さんははかれない","synonyms":["Aharen Is Indecipherable"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":2,"month":4,"year":2022},"status":"Finished Airing"},{"index":8,"id":50461,"mal_id":50461,"title":"Otome Game Sekai wa Mob ni Kibishii Sekai desu","english":"Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs","native":"乙女ゲー世界はモブに厳しい世界です","synonyms":["Otomege Sekai wa Mob ni Kibishii Sekai desu","Mobseka","Mobuseka"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":3,"month":4,"year":2022},"status":"Finished Airing"},{"index":9,"id":48760,"mal_id":48760,"title":"Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu","english":"Skeleton Knight in Another World","native":"骸骨騎士様、只今異世界へお出掛け中","synonyms":["Skeleton Knight going out to the parallel universe"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":7,"month":4,"year":2022},"status":"Finished Airing"},{"index":10,"id":50175,"mal_id":50175,"title":"Yuusha, Yamemasu","english":"I'm Quitting Heroing","native":"勇者、辞めます","synonyms":["Yuuyame"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":5,"month":4,"year":2022},"status":"Finished Airing"},{"index":11,"id":48415,"mal_id":48415,"title":"Shijou Saikyou no Daimaou, Murabito A ni Tensei suru","english":"The Greatest Demon Lord Is Reborn as a Typical Nobody","native":"史上最強の大魔王、村人Aに転生する","synonyms":["The Greatest Maou is Reborned to Get Friends"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":6,"month":4,"year":2022},"status":"Finished Airing"},{"index":12,"id":48675,"mal_id":48675,"title":"Kakkou no Iinazuke","english":"A Couple of Cuckoos","native":"カッコウの許嫁","synonyms":["Cuckoo's Fiancee"],"format":"TV","episodes":24,"season":"SPRING","year":2022,"start_date":{"day":24,"month":4,"year":2022},"status":"Finished Airing"},{"index":13,"id":50380,"mal_id":50380,"title":"Paripi Koumei","english":"Ya Boy Kongming!","native":"パリピ孔明","synonyms":["Party People Koumei"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":5,"month":4,"year":2022},"status":"Finished Airing"},{"index":14,"id":48548,"mal_id":48548,"title":"5-toubun no Hanayome Movie","english":"The Quintessential Quintuplets Movie","native":"映画 五等分の花嫁","synonyms":["Gotoubun no Hanayome","The Five Wedded Brides","The Quintessential Quintuplets"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":5,"year":2022},"status":"Finished Airing"},{"index":15,"id":41461,"mal_id":41461,"title":"Date A Live IV","english":"Date A Live IV","native":"デート・ア・ライブⅣ","synonyms":["Date A Live 4","Date A Live Fourth Season","DAL 4"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":8,"month":4,"year":2022},"status":"Finished Airing"},{"index":16,"id":48643,"mal_id":48643,"title":"Koi wa Sekai Seifuku no Ato de","english":"Love After World Domination","native":"恋は世界征服のあとで","synonyms":["Koiseka"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":8,"month":4,"year":2022},"status":"Finished Airing"},{"index":17,"id":49052,"mal_id":49052,"title":"Ao Ashi","english":"Aoashi","native":"アオアシ","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2022,"start_date":{"day":9,"month":4,"year":2022},"status":"Finished Airing"},{"index":18,"id":50549,"mal_id":50549,"title":"Bubble","english":"Bubble","native":"バブル","synonyms":[],"format":"ONA","episodes":1,"season":null,"year":null,"start_date":{"day":28,"month":4,"year":2022},"status":"Finished Airing"},{"index":19,"id":42429,"mal_id":42429,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season","english":"Ascendance of a Bookworm Season 3","native":"本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期","synonyms":["Ascendance of a Bookworm 3rd Season"],"format":"TV","episodes":10,"season":"SPRING","year":2022,"start_date":{"day":12,"month":4,"year":2022},"status":"Finished Airing"},{"index":20,"id":47162,"mal_id":47162,"title":"Shokei Shoujo no Virgin Road","english":"The Executioner and Her Way of Life","native":"処刑少女の生きる道〈バージンロード〉","synonyms":["Shokei Shoujo no Ikiru Michi"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":2,"month":4,"year":2022},"status":"Finished Airing"},{"index":21,"id":48842,"mal_id":48842,"title":"Mahoutsukai Reimeiki","english":"The Dawn of the Witch","native":"魔法使い黎明期","synonyms":["Mahou Tsukai Reimeiki"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":8,"month":4,"year":2022},"status":"Finished Airing"},{"index":22,"id":43470,"mal_id":43470,"title":"Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart","english":"Science Fell in Love, So I Tried to Prove It r=1-sinθ","native":"理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)","synonyms":["Science Fell in Love","So I Tried to Prove It 2nd Season","Rikekoi","Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ"],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":2,"month":4,"year":2022},"status":"Finished Airing"},{"index":23,"id":48903,"mal_id":48903,"title":"Dragon Ball Super: Super Hero","english":"Dragon Ball Super: Super Hero","native":"ドラゴンボール超スーパーヒーロー","synonyms":["Dragon Ball Super Movie 2: Superhero"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":11,"month":6,"year":2022},"status":"Finished Airing"},{"index":24,"id":48779,"mal_id":48779,"title":"Deaimon","english":"Deaimon: Recipe for Happiness","native":"であいもん","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2022,"start_date":{"day":6,"month":4,"year":2022},"status":"Finished Airing"}]},{"year":2024,"season":"spring","anilist":[{"index":0,"id":153288,"mal_id":52588,"title":"Kaijuu 8-gou","english":"Kaiju No. 8","native":"怪獣8号","synonyms":["Monster #8","8Kaijuu","KAIJU No. EIGHT","Kaiju N°8","괴수 8호"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":13},"status":"FINISHED"},{"index":1,"id":166240,"mal_id":55701,"title":"Kimetsu no Yaiba: Hashira Geiko-hen","english":"Demon Slayer: Kimetsu no Yaiba Hashira Training Arc","native":"鬼滅の刃 柱稽古編","synonyms":["KnY 4","Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers","Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów","Клинок, рассекающий демонов: Тренировка столпов"],"format":"TV","episodes":8,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":5,"day":12},"status":"FINISHED"},{"index":2,"id":166873,"mal_id":55888,"title":"Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2","english":"Mushoku Tensei: Jobless Reincarnation Season 2 Part 2","native":"無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール","synonyms":["Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2","เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง","Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2","Mushoku Tensei II: Jobless Reincarnation Part 2","Mushoku Tensei II: Reencarnación desde cero","无职转生~到了异世界就拿出真本事~第2季"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":8},"status":"FINISHED"},{"index":3,"id":163270,"mal_id":54900,"title":"WIND BREAKER","english":"WIND BREAKER","native":"WIND BREAKER","synonyms":["WB","ウィンブレ","WBK","ウィンドブレイカー"],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":5},"status":"FINISHED"},{"index":4,"id":136804,"mal_id":49458,"title":"Kono Subarashii Sekai ni Shukufuku wo! 3","english":"KONOSUBA -God's blessing on this wonderful world! 3","native":"この素晴らしい世界に祝福を!3","synonyms":["Konosuba 3","ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3","為美好的世界獻上祝福!3","Да благословят боги сей расчудесный мир! 3","Konosuba! Un mundo maravilloso 3"],"format":"TV","episodes":11,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":10},"status":"FINISHED"},{"index":5,"id":163139,"mal_id":54789,"title":"Boku no Hero Academia 7","english":"My Hero Academia Season 7","native":"僕のヒーローアカデミア 7","synonyms":["BNHA 7","MHA 7","Моя геройская академия 7"],"format":"TV","episodes":21,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":5,"day":4},"status":"FINISHED"},{"index":6,"id":156822,"mal_id":53580,"title":"Tensei Shitara Slime Datta Ken 3rd Season","english":"That Time I Got Reincarnated as a Slime Season 3","native":"転生したらスライムだった件 第3期","synonyms":["Tensura 3","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3","Moi, quand je me réincarne en Slime Saison 3","転スラ 3"],"format":"TV","episodes":24,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":5},"status":"FINISHED"},{"index":7,"id":174788,"mal_id":58125,"title":"Look Back","english":"LOOK BACK","native":"ルックバック","synonyms":[],"format":"MOVIE","episodes":1,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":6,"day":28},"status":"FINISHED"},{"index":8,"id":145728,"mal_id":51122,"title":"Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF","english":"Spice and Wolf: MERCHANT MEETS THE WISE WOLF","native":"狼と香辛料 MERCHANT MEETS THE WISE WOLF","synonyms":["Spice and Wolf (2024)","Ookami to Koushinryou (2024)","สาวหมาป่ากับนายเครื่องเทศ "],"format":"TV","episodes":25,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":2},"status":"FINISHED"},{"index":9,"id":156415,"mal_id":53516,"title":"Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu","english":"I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability","native":"転生したら第七王子だったので、気ままに魔術を極めます","synonyms":["พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก","Dainanaoji","轉生為第七王子,隨心所欲的魔法學習之路","Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу","Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":2},"status":"FINISHED"},{"index":10,"id":170130,"mal_id":56923,"title":"Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life","english":"Chillin' in Another World with Level 2 Super Cheat Powers","native":"Lv2からチートだった元勇者候補のまったり異世界ライフ","synonyms":["Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2","Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai","Беззаботная жизнь в ином мире с читерскими способностями со второго уровня"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":8},"status":"FINISHED"},{"index":11,"id":158417,"mal_id":53770,"title":"Sentai Daishikkaku","english":"Go! Go! Loser Ranger!","native":"戦隊大失格","synonyms":["Ranger Reject","ขบวนการกำมะลอ","No Longer Rangers"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":7},"status":"FINISHED"},{"index":12,"id":156023,"mal_id":53434,"title":"Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?","english":"An Archdemon's Dilemma: How to Love Your Elf Bride","native":"魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?","synonyms":["Madome","まどめ","จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":5},"status":"FINISHED"},{"index":13,"id":164702,"mal_id":55265,"title":"Tensei Kizoku, Kantei Skill de Nariagaru","english":"As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World","native":"転生貴族、鑑定スキルで成り上がる","synonyms":["KanteiSkill"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":7},"status":"FINISHED"},{"index":14,"id":158898,"mal_id":53865,"title":"Yozakura-san Chi no Daisakusen","english":"Mission: Yozakura Family","native":"夜桜さんちの大作戦","synonyms":["Missão: Família Yozakura","Misión: Familia Yozakura","ปฏิบัติการลับบ้านโยซากุระ","La misión de la familia Yozakura","Миссия семьи Ёдзакура","Misja: Rodzina Yozakura"],"format":"TV","episodes":27,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":7},"status":"FINISHED"},{"index":15,"id":130590,"mal_id":48418,"title":"Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2","english":"The Misfit of Demon King Academy II (Cour 2)","native":"魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール","synonyms":["The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2","ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2","Непригодный для Академии владыки тьмы II"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":12},"status":"FINISHED"},{"index":16,"id":169417,"mal_id":56690,"title":"Re:Monster","english":"Re:Monster","native":"Re:Monster","synonyms":["リ・モンスター"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":2},"status":"FINISHED"},{"index":17,"id":164212,"mal_id":55102,"title":"GIRLS BAND CRY","english":"Girls Band Cry","native":"ガールズバンドクライ","synonyms":["Garukura","ガルクラ","GBC","Крик дівочого гурту"],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":6},"status":"FINISHED"},{"index":18,"id":163078,"mal_id":54839,"title":"Yoru no Kurage wa Oyogenai","english":"Jellyfish Can’t Swim in the Night","native":"夜のクラゲは泳げない","synonyms":["YoruKura","ヨルクラ","Meduzy nie pływają same"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":7},"status":"FINISHED"},{"index":19,"id":158709,"mal_id":53835,"title":"Unnamed Memory","english":"Unnamed Memory","native":"Unnamed Memory","synonyms":["アンネームドメモリー","อันเนมด์ เมโมรี"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":9},"status":"FINISHED"},{"index":20,"id":170890,"mal_id":57100,"title":"THE NEW GATE","english":"THE NEW GATE","native":"THE NEW GATE","synonyms":["ザ・ニュー・ゲート","TNG"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":14},"status":"FINISHED"},{"index":21,"id":143271,"mal_id":50713,"title":"Mahouka Koukou no Rettousei 3rd Season","english":"The Irregular at Magic High School Season 3","native":"魔法科高校の劣等生 第3シーズン","synonyms":["พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3","Непутёвый ученик в школе магии 3"],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":5},"status":"FINISHED"},{"index":22,"id":165855,"mal_id":55597,"title":"Hananoi-kun to Koi no Yamai","english":"A Condition Called Love","native":"花野井くんと恋の病","synonyms":[" I'm addicted to you","A tes côtés","Ein Gefühl namens Liebe","Adicto a ti","รักติดหนึบของฮานาโนอิคุง","Una enfermedad llamada amor","花野井同學與戀愛病"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":4},"status":"FINISHED"},{"index":23,"id":155890,"mal_id":53407,"title":"Bartender: Kami no Glass","english":"BARTENDER Glass of God","native":"バーテンダー 神のグラス","synonyms":["Bartender (New Anime)","Бармен: божественный стакан"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":4},"status":"FINISHED"},{"index":24,"id":168138,"mal_id":56230,"title":"Jii-san Baa-san Wakagaeru","english":"Grandpa and Grandma Turn Young Again","native":"じいさんばあさん若返る","synonyms":["A Story About a Grandpa and Grandma Who Returned Back to Their Youth","おじいさんとおばあさんが若返った話。","Ojiisan to Obaasan ga Wakagaetta Hanashi."],"format":"TV","episodes":11,"season":"SPRING","year":2024,"start_date":{"year":2024,"month":4,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":55701,"mal_id":55701,"title":"Kimetsu no Yaiba: Hashira Geiko-hen","english":"Demon Slayer: Kimetsu no Yaiba Hashira Training Arc","native":"鬼滅の刃 柱稽古編","synonyms":[],"format":"TV","episodes":8,"season":"SPRING","year":2024,"start_date":{"day":12,"month":5,"year":2024},"status":"Finished Airing"},{"index":1,"id":52588,"mal_id":52588,"title":"Kaijuu 8-gou","english":"Kaiju No. 8","native":"怪獣8号","synonyms":["8Kaijuu","Monster #8","Kaiju No. Eight","Kaiju #8"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":13,"month":4,"year":2024},"status":"Finished Airing"},{"index":2,"id":55888,"mal_id":55888,"title":"Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2","english":"Mushoku Tensei: Jobless Reincarnation Season 2 Part 2","native":"無職転生 II ~異世界行ったら本気だす~ (第2クール)","synonyms":["Jobless Reincarnation: I Will Seriously Try If I Go To Another World","Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":8,"month":4,"year":2024},"status":"Finished Airing"},{"index":3,"id":49458,"mal_id":49458,"title":"Kono Subarashii Sekai ni Shukufuku wo! 3","english":"KonoSuba: God's Blessing on This Wonderful World! 3","native":"この素晴らしい世界に祝福を!3","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2024,"start_date":{"day":10,"month":4,"year":2024},"status":"Finished Airing"},{"index":4,"id":54789,"mal_id":54789,"title":"Boku no Hero Academia 7th Season","english":"My Hero Academia Season 7","native":"僕のヒーローアカデミア 第7期","synonyms":["My Hero Academia 7"],"format":"TV","episodes":21,"season":"SPRING","year":2024,"start_date":{"day":4,"month":5,"year":2024},"status":"Finished Airing"},{"index":5,"id":53580,"mal_id":53580,"title":"Tensei shitara Slime Datta Ken 3rd Season","english":"That Time I Got Reincarnated as a Slime Season 3","native":"転生したらスライムだった件 第3期","synonyms":["Tensura 3"],"format":"TV","episodes":24,"season":"SPRING","year":2024,"start_date":{"day":5,"month":4,"year":2024},"status":"Finished Airing"},{"index":6,"id":54900,"mal_id":54900,"title":"Wind Breaker","english":"Wind Breaker","native":"WIND BREAKER","synonyms":["Winbre","WBK"],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"day":5,"month":4,"year":2024},"status":"Finished Airing"},{"index":7,"id":53516,"mal_id":53516,"title":"Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu","english":"I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability","native":"転生したら第七王子だったので、気ままに魔術を極めます","synonyms":["Dainanaoji","I Was Reincarnated as the 7th Prince","so I Will Perfect My Magic as I Please"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":2,"month":4,"year":2024},"status":"Finished Airing"},{"index":8,"id":51122,"mal_id":51122,"title":"Ookami to Koushinryou: Merchant Meets the Wise Wolf","english":"Spice and Wolf: Merchant Meets the Wise Wolf","native":"狼と香辛料 MERCHANT MEETS THE WISE WOLF","synonyms":["Spice and Wolf"],"format":"TV","episodes":25,"season":"SPRING","year":2024,"start_date":{"day":2,"month":4,"year":2024},"status":"Finished Airing"},{"index":9,"id":56923,"mal_id":56923,"title":"Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life","english":"Chillin' in Another World with Level 2 Super Cheat Powers","native":"Lv2からチートだった元勇者候補のまったり異世界ライフ","synonyms":["The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2","Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":8,"month":4,"year":2024},"status":"Finished Airing"},{"index":10,"id":58125,"mal_id":58125,"title":"Look Back","english":null,"native":"ルックバック","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":28,"month":6,"year":2024},"status":"Finished Airing"},{"index":11,"id":53434,"mal_id":53434,"title":"Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?","english":"An Archdemon's Dilemma: How to Love Your Elf Bride","native":"魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?","synonyms":["I","the Demon Lord","Took a Slave Elf as My Wife","but How Do I Love Her?","Madome"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":5,"month":4,"year":2024},"status":"Finished Airing"},{"index":12,"id":48418,"mal_id":48418,"title":"Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2","english":"The Misfit of Demon King Academy II Part 2","native":"魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール","synonyms":["Maou Gakuin no Futekigousha 2nd Season","The Misfit of Demon King Academy 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":12,"month":4,"year":2024},"status":"Finished Airing"},{"index":13,"id":53770,"mal_id":53770,"title":"Sentai Daishikkaku","english":"Go! Go! Loser Ranger!","native":"戦隊大失格","synonyms":["Ranger Reject"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":7,"month":4,"year":2024},"status":"Finished Airing"},{"index":14,"id":55265,"mal_id":55265,"title":"Tensei Kizoku, Kantei Skill de Nariagaru","english":"As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World","native":"転生貴族、鑑定スキルで成り上がる","synonyms":["Reincarnated as an Aristocrat with an Appraisal Skill"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":7,"month":4,"year":2024},"status":"Finished Airing"},{"index":15,"id":56690,"mal_id":56690,"title":"Re:Monster","english":"Re:Monster","native":"Re:Monster","synonyms":["ReMonster"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":5,"month":4,"year":2024},"status":"Finished Airing"},{"index":16,"id":53865,"mal_id":53865,"title":"Yozakura-san Chi no Daisakusen","english":"Mission: Yozakura Family","native":"夜桜さんちの大作戦","synonyms":["Mission of Yozakura Family"],"format":"TV","episodes":27,"season":"SPRING","year":2024,"start_date":{"day":7,"month":4,"year":2024},"status":"Finished Airing"},{"index":17,"id":50713,"mal_id":50713,"title":"Mahouka Koukou no Rettousei 3rd Season","english":"The Irregular at Magic High School Season 3","native":"魔法科高校の劣等生 第3シーズン","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"day":5,"month":4,"year":2024},"status":"Finished Airing"},{"index":18,"id":53835,"mal_id":53835,"title":"Unnamed Memory","english":"Unnamed Memory","native":"Unnamed Memory","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":9,"month":4,"year":2024},"status":"Finished Airing"},{"index":19,"id":57100,"mal_id":57100,"title":"The New Gate","english":"The New Gate","native":"THE NEW GATE","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":14,"month":4,"year":2024},"status":"Finished Airing"},{"index":20,"id":56230,"mal_id":56230,"title":"Jiisan Baasan Wakagaeru","english":"Grandpa and Grandma Turn Young Again","native":"じいさんばあさん若返る","synonyms":["Ojiisan to Obaasan ga Wakagaetta Hanashi","A Story About a Grandpa and Grandma Who Returned Back to Their Youth"],"format":"TV","episodes":11,"season":"SPRING","year":2024,"start_date":{"day":7,"month":4,"year":2024},"status":"Finished Airing"},{"index":21,"id":52196,"mal_id":52196,"title":"Date A Live V","english":"Date A Live V","native":"デート・ア・ライブⅤ","synonyms":["Date A Live 5","Date A Live Fifth Season","DAL 5"],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":10,"month":4,"year":2024},"status":"Finished Airing"},{"index":22,"id":55597,"mal_id":55597,"title":"Hananoi-kun to Koi no Yamai","english":"A Condition Called Love","native":"花野井くんと恋の病","synonyms":["I'm Addicted to You."],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":4,"month":4,"year":2024},"status":"Finished Airing"},{"index":23,"id":55102,"mal_id":55102,"title":"Girls Band Cry","english":null,"native":"ガールズバンドクライ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2024,"start_date":{"day":6,"month":4,"year":2024},"status":"Finished Airing"},{"index":24,"id":53407,"mal_id":53407,"title":"Bartender: Kami no Glass","english":"Bartender Glass of God","native":"バーテンダー 神のグラス","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2024,"start_date":{"day":4,"month":4,"year":2024},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-02.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-02.json new file mode 100644 index 0000000..02b483d --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-02.json @@ -0,0 +1 @@ +{"shard":2,"seasons":[{"year":2010,"season":"summer","anilist":[{"index":0,"id":8074,"mal_id":8074,"title":"Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD","english":"High School of the Dead","native":"学園黙示録HIGHSCHOOL OF THE DEAD","synonyms":["HOTD","HSOTD","High School of the Dead: Apocalipsis en el Instituto"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":5},"status":"FINISHED"},{"index":1,"id":7724,"mal_id":7724,"title":"Shiki","english":"Shiki","native":"屍鬼","synonyms":["Corpse Demon"],"format":"TV","episodes":22,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":9},"status":"FINISHED"},{"index":2,"id":8675,"mal_id":8675,"title":"Seitokai Yakuindomo","english":"Seitokai Yakuindomo","native":"生徒会役員共","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":4},"status":"FINISHED"},{"index":3,"id":7711,"mal_id":7711,"title":"Karigurashi no Arrietty","english":"The Secret World of Arrietty","native":"借りぐらしのアリエッティ","synonyms":["Karigurashi no Arrietti","The Borrower Arrietty","Arrietty: Le Petit Monde des Chapardeurs","Arrietty y el Mundo de los Diminutos","O Mundo dos Pequeninos","Arrietty","Tajemniczy świat Arrietty","العالم السري لآريتي","Arrietty - Die wundersame Welt der Borger","Arriettas hemmelige verden","Arrietty - Il mondo segreto sotto il pavimento","Lånaren Arrietty"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":17},"status":"FINISHED"},{"index":4,"id":6707,"mal_id":6707,"title":"Kuroshitsuji II","english":"Black Butler II","native":"黒執事II","synonyms":["Kuroshitsuji 2","Black Butler 2","คนลึกไขปริศนาลับ ภาค 2","คนลึกไขปริศนาลับ II","Hắc quản gia 2","黑执事 第2季","黑執事 第2季","Hắc Quản Gia – Phần 2","흑집사 2기","Diácono Negro temporada 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":2},"status":"FINISHED"},{"index":5,"id":8676,"mal_id":8676,"title":"Amagami SS","english":"Amagami SS","native":"アマガミSS","synonyms":["圣诞之吻SS","아마가미 SS","Амагами СС"],"format":"TV","episodes":25,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":2},"status":"FINISHED"},{"index":6,"id":4901,"mal_id":4901,"title":"BLACK LAGOON: Roberta's Blood Trail","english":"Black Lagoon: Roberta's Blood Trail","native":"BLACK LAGOON Roberta's Blood Trail","synonyms":["Black Lagoon 3"],"format":"OVA","episodes":5,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":6,"day":27},"status":"FINISHED"},{"index":7,"id":8086,"mal_id":8086,"title":"Densetsu no Yuusha no Densetsu","english":"The Legend of the Legendary Heroes","native":"伝説の勇者の伝説","synonyms":["DenYuDen","DenYuuDen","Densetsu no Yusha no Densetsu","LOLH","传说的勇者的传说"],"format":"TV","episodes":24,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":2},"status":"FINISHED"},{"index":8,"id":8142,"mal_id":8142,"title":"Colorful","english":"Colorful ~ The Motion Picture","native":"カラフル","synonyms":[],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":8,"day":21},"status":"FINISHED"},{"index":9,"id":8246,"mal_id":8246,"title":"NARUTO: Shippuuden - The Lost Tower","english":"Naruto Shippuden the Movie: The Lost Tower","native":"劇場版 NARUTO -ナルト- 疾風伝 ザ・ロストタワー","synonyms":["Naruto Movie 7","Gekijouban Naruto Shippuuden: The Lost Tower","Naruto Shippūden la película: La torre perdida","Naruto Shippuden Movie 04: La torre perduta"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":31},"status":"FINISHED"},{"index":10,"id":7769,"mal_id":7769,"title":"Ookami-san to Shichinin no Nakama-tachi","english":"Okami-san and Her Seven Companions","native":"オオカミさんと七人の仲間たち","synonyms":["Ookami-san to Shichinin no Nakamatachi","Okamisan and Seven Companions"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":1},"status":"FINISHED"},{"index":11,"id":7592,"mal_id":7592,"title":"Nurarihyon no Mago","english":"Nura: Rise of the Yokai Clan","native":"ぬらりひょんの孫","synonyms":["The Grandson of Nurarihyon","Grandchild of Nurarihyon"],"format":"TV","episodes":24,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":6},"status":"FINISHED"},{"index":12,"id":5277,"mal_id":5277,"title":"Sekirei: Pure Engagement","english":null,"native":"セキレイ~Pure Engagement~","synonyms":["Sekirei 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":6,"day":13},"status":"FINISHED"},{"index":13,"id":6166,"mal_id":6166,"title":"Asobi ni Iku yo!","english":"Cat Planet Cuties","native":"あそびにいくヨ!","synonyms":["Asobi ni Ikuyo!","Let's Go Play!","Asobi ni Ikuyo: Bombshells from the Sky"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":11},"status":"FINISHED"},{"index":14,"id":8408,"mal_id":8408,"title":"Durarara!! Specials","english":null,"native":"デュラララ!!","synonyms":["Durarara!! Episode 12.5","Durarara!! Episode 25","Dhurarara!!","Dyurarara!!"],"format":"SPECIAL","episodes":2,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":8,"day":25},"status":"FINISHED"},{"index":15,"id":7059,"mal_id":7059,"title":"Black★Rock Shooter (OVA)","english":null,"native":"ブラック★ロックシューター (OVA)","synonyms":["BRS OVA"],"format":"OVA","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":24},"status":"FINISHED"},{"index":16,"id":7627,"mal_id":7627,"title":"Mitsudomoe","english":null,"native":"みつどもえ","synonyms":["Three Way Struggle"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":3},"status":"FINISHED"},{"index":17,"id":7695,"mal_id":7695,"title":"Pocket Monsters Diamond & Pearl: Genei no Hasha Zoroark","english":"Pokémon: Zoroark—Master of Illusions","native":"ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク","synonyms":["Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark","Pokemon Movie 13","Pokémon: Zoroark, Illusjonens mester","Pokémon: Zoroark, el maestro de ilusiones","Pokémon: Zoroark – Illuusioiden mestari","Pokémon: Zoroark, mistrz iluzji","Pokémon 13: Zoroark - Meester der Illusie","Pokémon Zororark: illusionernas mästare"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":10},"status":"FINISHED"},{"index":18,"id":10298,"mal_id":10298,"title":"Kaichou wa Maid-sama!: Goshujin-sama to Asonjao♥","english":"Maid-Sama! LaLa Special","native":"会長はメイド様! ご主人様と遊んじゃお♥","synonyms":["Kaichou wa Maid-sama LaLa Special","Kaicho wa Maidsama LaLa Special","Kaichou wa Meido Sama LaLa Special","Class President is a Maid! LaLa Special"],"format":"SPECIAL","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":24},"status":"FINISHED"},{"index":19,"id":6974,"mal_id":6974,"title":"Seikimatsu Occult Gakuin","english":"Occult Academy","native":"世紀末オカルト学院","synonyms":["Zaidanhoujin Occult Designer Gakuin","Seikimatsu Occult Academy"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":6},"status":"FINISHED"},{"index":20,"id":6381,"mal_id":6381,"title":"Strike Witches 2","english":"Strike Witches 2","native":"ストライクウィッチーズ 2","synonyms":["强袭魔女2"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":8},"status":"FINISHED"},{"index":21,"id":8577,"mal_id":8577,"title":"Aki-Sora: Yume no Naka","english":"Aki Sora","native":"あきそら~夢の中~","synonyms":["Akisora: Yume no Naka","Aki-Sora: In a Dream"],"format":"OVA","episodes":2,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":30},"status":"FINISHED"},{"index":22,"id":8768,"mal_id":8768,"title":"Hiyokoi","english":null,"native":"ひよ恋","synonyms":[],"format":"SPECIAL","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":30},"status":"FINISHED"},{"index":23,"id":10659,"mal_id":10659,"title":"NARUTO: Soyokazeden - Naruto to Mashin to Mitsu no Onegai Dattebayo!!","english":null,"native":"劇場版 NARUTO -ナルト- そよかぜ伝 ナルトと魔神と3つのお願いだってばよ!!","synonyms":["Gekijouban Naruto Soyokazeden: Naruto to Mashin to Mitsu no Onegai Dattebayo!!","Naruto: Gentle Breeze Chronicles the Film: Naruto","the Genie","and the Three Wishes Dattebayo!!"],"format":"SPECIAL","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":31},"status":"FINISHED"},{"index":24,"id":9063,"mal_id":9063,"title":"Toaru Kagaku no Railgun: Entenka no Satsuei Model mo Raku ja Arimasen wa ne.","english":null,"native":"とある科学の超電磁砲 炎天下の撮影モデルも楽じゃありませんわね.","synonyms":["Toaru Beach no Tokuten Eizo","Toaru Kagaku no Railgun Episode 13","A Certain Scientific Railgun Episode 13","A Certain Scientific Railgun: Being a Photo Shoot Model Under the Blazing Sun Isn't Easy, Is It?"],"format":"OVA","episodes":1,"season":"SUMMER","year":2010,"start_date":{"year":2010,"month":7,"day":24},"status":"FINISHED"}],"jikan":[{"index":0,"id":8074,"mal_id":8074,"title":"Highschool of the Dead","english":"High School of the Dead","native":"学園黙示録 HIGHSCHOOL OF THE DEAD","synonyms":["Gakuen Mokushiroku: Highschool of the Dead","HOTD","HSOTD"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":5,"month":7,"year":2010},"status":"Finished Airing"},{"index":1,"id":7724,"mal_id":7724,"title":"Shiki","english":"Shiki","native":"屍鬼","synonyms":["Corpse Demon"],"format":"TV","episodes":22,"season":"SUMMER","year":2010,"start_date":{"day":9,"month":7,"year":2010},"status":"Finished Airing"},{"index":2,"id":6707,"mal_id":6707,"title":"Kuroshitsuji II","english":"Black Butler II","native":"黒執事II","synonyms":["Kuroshitsuji 2","Black Butler 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":2,"month":7,"year":2010},"status":"Finished Airing"},{"index":3,"id":8675,"mal_id":8675,"title":"Seitokai Yakuindomo","english":"Student Council Staff Members","native":"生徒会役員共","synonyms":["SYD"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"day":4,"month":7,"year":2010},"status":"Finished Airing"},{"index":4,"id":8676,"mal_id":8676,"title":"Amagami SS","english":"Amagami SS","native":"アマガミSS","synonyms":[],"format":"TV","episodes":25,"season":"SUMMER","year":2010,"start_date":{"day":2,"month":7,"year":2010},"status":"Finished Airing"},{"index":5,"id":7711,"mal_id":7711,"title":"Karigurashi no Arrietty","english":"The Secret World of Arrietty","native":"借りぐらしのアリエッティ","synonyms":["Karigurashi no Arrietti","The Borrower Arrietty"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":7,"year":2010},"status":"Finished Airing"},{"index":6,"id":8086,"mal_id":8086,"title":"Densetsu no Yuusha no Densetsu","english":"The Legend of the Legendary Heroes","native":"伝説の勇者の伝説","synonyms":["DenYuDen","DenYuuDen","Densetsu no Yusha no Densetsu","LOLH"],"format":"TV","episodes":24,"season":"SUMMER","year":2010,"start_date":{"day":2,"month":7,"year":2010},"status":"Finished Airing"},{"index":7,"id":7769,"mal_id":7769,"title":"Ookami-san to Shichinin no Nakama-tachi","english":"Okami-San and Her Seven Companions","native":"オオカミさんと七人の仲間たち","synonyms":["Ookami-san to Shichinin no Nakamatachi","Okamisan and Seven Companions"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":1,"month":7,"year":2010},"status":"Finished Airing"},{"index":8,"id":7592,"mal_id":7592,"title":"Nurarihyon no Mago","english":"Nura: Rise of the Yokai Clan","native":"ぬらりひょんの孫","synonyms":["The Grandson of Nurarihyon","Grandchild of Nurarihyon"],"format":"TV","episodes":24,"season":"SUMMER","year":2010,"start_date":{"day":6,"month":7,"year":2010},"status":"Finished Airing"},{"index":9,"id":8246,"mal_id":8246,"title":"Naruto: Shippuuden Movie 4 - The Lost Tower","english":"Naruto Shippuden the Movie 4: The Lost Tower","native":"劇場版 NARUTO-ナルト-疾風伝 ザ・ロストタワー","synonyms":["Naruto Movie 7","Gekijouban Naruto Shippuuden: The Lost Tower"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":7,"year":2010},"status":"Finished Airing"},{"index":10,"id":5277,"mal_id":5277,"title":"Sekirei: Pure Engagement","english":"Sekirei: Pure Engagement","native":"セキレイ~Pure Engagement~","synonyms":["Sekirei 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"day":4,"month":7,"year":2010},"status":"Finished Airing"},{"index":11,"id":8142,"mal_id":8142,"title":"Colorful (Movie)","english":"Colorful: The Motion Picture","native":"カラフル","synonyms":["Colourful"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":8,"year":2010},"status":"Finished Airing"},{"index":12,"id":6166,"mal_id":6166,"title":"Asobi ni Iku yo!","english":"Cat Planet Cuties","native":"あそびにいくヨ!","synonyms":["Asobi ni Ikuyo!","Let's Go Play!","Asobi ni Ikuyo: Bombshells from the Sky"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":11,"month":7,"year":2010},"status":"Finished Airing"},{"index":13,"id":7059,"mal_id":7059,"title":"Black★Rock Shooter (OVA)","english":null,"native":"ブラック★ロックシューター","synonyms":["BRS OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":7,"year":2010},"status":"Finished Airing"},{"index":14,"id":8408,"mal_id":8408,"title":"Durarara!! Specials","english":"Durarara!! Specials","native":"デュラララ!!","synonyms":["Durarara!! Episode 12.5","Durarara!! Episode 25","Dhurarara!!","Dyurarara!!","Dulalala!!","Dullalala!!","DRRR!! OVA"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":25,"month":8,"year":2010},"status":"Finished Airing"},{"index":15,"id":7627,"mal_id":7627,"title":"Mitsudomoe","english":"Mitsudomoe","native":"みつどもえ","synonyms":["Three Way Struggle"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"day":3,"month":7,"year":2010},"status":"Finished Airing"},{"index":16,"id":7858,"mal_id":7858,"title":"Sora no Otoshimono: Project Pink","english":"Heaven's Lost Property OVA","native":"そらのおとしもの プロジェクト桃源郷[ピンク]","synonyms":["Sora no Otoshimono OVA","Sora no Otoshimono Special","Lost Property of the Sky OVA","Misplaced by Heaven OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":9,"year":2010},"status":"Finished Airing"},{"index":17,"id":6974,"mal_id":6974,"title":"Seikimatsu Occult Gakuin","english":"Occult Academy","native":"世紀末オカルト学院","synonyms":["Zaidanhoujin Occult Designer Gakuin","Seikimatsu Occult Academy"],"format":"TV","episodes":13,"season":"SUMMER","year":2010,"start_date":{"day":6,"month":7,"year":2010},"status":"Finished Airing"},{"index":18,"id":10298,"mal_id":10298,"title":"Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥","english":"Maid Sama! Play with Your Husband ♥","native":"会長はメイド様! ご主人様と遊んじゃお♥","synonyms":["Kaichou wa Maid-sama LaLa Special","Kaicho wa Maidsama LaLa Special","Kaichou wa Meido Sama LaLa Special","Class President is a Maid! LaLa Special"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":7,"year":2010},"status":"Finished Airing"},{"index":19,"id":8768,"mal_id":8768,"title":"Hiyokoi","english":null,"native":"ひよ恋","synonyms":[],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":7,"year":2010},"status":"Finished Airing"},{"index":20,"id":6381,"mal_id":6381,"title":"Strike Witches 2","english":"Strike Witches 2","native":"ストライクウィッチーズ 2","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":8,"month":7,"year":2010},"status":"Finished Airing"},{"index":21,"id":8577,"mal_id":8577,"title":"Aki-Sora: Yume no Naka","english":"Aki-Sora: In a Dream","native":"あきそら~夢の中~","synonyms":["Aki-Sora: Yume no Naka"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":30,"month":7,"year":2010},"status":"Finished Airing"},{"index":22,"id":7695,"mal_id":7695,"title":"Pokemon Movie 13: Genei no Hasha Zoroark","english":"Pokémon: Zoroark: Master of Illusions","native":"ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク","synonyms":["Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark","Pokemon Diamond & Pearl: Genei no Hasha Zoroark"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":10,"month":7,"year":2010},"status":"Finished Airing"},{"index":23,"id":6634,"mal_id":6634,"title":"Sengoku Basara Ni","english":"Sengoku Basara: Samurai Kings 2","native":"戦国BASARA 弐","synonyms":["Sengoku Basara Two","Sengoku Basara 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2010,"start_date":{"day":11,"month":7,"year":2010},"status":"Finished Airing"},{"index":24,"id":9047,"mal_id":9047,"title":"Toaru Kagaku no Railgun: Misaka-san wa Ima Chuumoku no Mato desu kara","english":"A Certain Scientific Railgun OVA: Since Misaka-san is the Center of Attention Right Now...","native":"とある科学の超電磁砲 御坂さんはいま注目の的ですから","synonyms":["Toaru Kagaku no Railgun OVA","Toaru Kagaku no Choudenjihou OVA","A Certain Scientific Railgun OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":9,"year":2010},"status":"Finished Airing"}]},{"year":2012,"season":"summer","anilist":[{"index":0,"id":11757,"mal_id":11757,"title":"Sword Art Online","english":"Sword Art Online","native":"ソードアート・オンライン","synonyms":["S.A.O","SAO","אומנות החרב אונליין","刀剑神域","ซอร์ดอาร์ตออนไลน์","Мастера меча онлайн"],"format":"TV","episodes":25,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":8},"status":"FINISHED"},{"index":1,"id":11887,"mal_id":11887,"title":"Kokoro Connect","english":"Kokoro Connect","native":"ココロコネクト","synonyms":["Kokoroco"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":8},"status":"FINISHED"},{"index":2,"id":13161,"mal_id":13161,"title":"Hagure Yuusha no Estetica","english":"Aesthetica of a Rogue Hero","native":"はぐれ勇者の鬼畜美学 (エステティカ)","synonyms":["Hagure Yuusha no Aesthetica","ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":3,"id":12549,"mal_id":12549,"title":"Dakara Boku wa, H ga Dekinai.","english":"So, I Can't Play H!","native":"だから僕は、Hができない。","synonyms":["Dakara boku-ha H ga Dekinai."],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":4,"id":12293,"mal_id":12293,"title":"Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou","english":"Campione!","native":"カンピオーネ! ~まつろわぬ神々と神殺しの魔王~","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":5,"id":13667,"mal_id":13667,"title":"ROAD TO NINJA: NARUTO THE MOVIE","english":"Road to Ninja: Naruto the Movie","native":"ROAD TO NINJA -NARUTO THE MOVIE-","synonyms":["Naruto Movie 9","Naruto Shippūden la película: El camino Ninja","Naruto Shippuden Movie 06: La via del Ninja","Naruto Shippuden the Movie 6: Road to Ninja","Naruto Shippuden O Filme: Caminho do Ninja","Naruto Shippuden 6: O Caminho Ninja"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":28},"status":"FINISHED"},{"index":6,"id":12729,"mal_id":12729,"title":"High School DxD OVA","english":null,"native":"ハイスクールD×D OVA","synonyms":["High School DxD Episodes 13, 14 and 15","Highschool DxD OVA"],"format":"OVA","episodes":2,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":9,"day":6},"status":"FINISHED"},{"index":7,"id":12679,"mal_id":12679,"title":"Joshiraku","english":"Joshiraku","native":"じょしらく","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":8,"id":11933,"mal_id":11933,"title":"Oda Nobuna no Yabou","english":"The Ambition of Oda Nobuna","native":"織田信奈の野望","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":9},"status":"FINISHED"},{"index":9,"id":10357,"mal_id":10357,"title":"Jinrui wa Suitai Shimashita","english":"Humanity Has Declined","native":"人類は衰退しました","synonyms":["Jintai","ตัวฉันกับวันสิ้นโลก"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":2},"status":"FINISHED"},{"index":10,"id":12031,"mal_id":12031,"title":"Kingdom","english":"Kingdom","native":"キングダム","synonyms":["Царство"],"format":"TV","episodes":38,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":6,"day":4},"status":"FINISHED"},{"index":11,"id":12175,"mal_id":12175,"title":"Koi to Senkyo to Chocolate","english":"Love, Election and Chocolate","native":"恋と選挙とチョコレート","synonyms":["Koichoco"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":12,"id":13469,"mal_id":13469,"title":"Hyouka: Motsubeki Mono wa","english":"Hyouka: What Should Be Had","native":"氷菓 持つべきものは","synonyms":["Hyouka Episode 11.5","Hyouka OVA","Hyou-ka OVA","Hyouka: You can't escape OVA"],"format":"OVA","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":8},"status":"FINISHED"},{"index":13,"id":13535,"mal_id":13535,"title":"Binbougami ga!","english":"Good Luck Girl!","native":"貧乏神が!","synonyms":["Binbou Gami ga!","Binboukami ga!","Binbou Kami ga!","The God Of Poverty is!"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":5},"status":"FINISHED"},{"index":14,"id":12113,"mal_id":12113,"title":"Berserk: Ougon Jidai-hen II - Doldrey Kouryaku","english":"Berserk: The Golden Age Arc II - The Battle for Doldrey","native":"ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略","synonyms":["Berserk Movie","Berserk Saga","Berserk: La Edad de Oro II - La Batalla por Doldrey"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":6,"day":23},"status":"FINISHED"},{"index":15,"id":12403,"mal_id":12403,"title":"Yuru Yuri♪♪","english":"YuruYuri Season 2","native":"ゆるゆり♪♪","synonyms":["YRYR 2","ゆるゆり 第2期"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":3},"status":"FINISHED"},{"index":16,"id":12049,"mal_id":12049,"title":"FAIRY TAIL: Houou no Miko","english":"Fairy Tail: Phoenix Priestess","native":"劇場版 FAIRY TAIL 鳳凰の巫女","synonyms":["Fairy Tail - 1er Film - La prêtresse du Phoenix"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":8,"day":18},"status":"FINISHED"},{"index":17,"id":13367,"mal_id":13367,"title":"Kono Naka ni Hitori, Imouto ga Iru!","english":"NAKAIMO - My Little Sister Is Among Them!","native":"この中に1人, 妹がいる!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":6},"status":"FINISHED"},{"index":18,"id":14753,"mal_id":14753,"title":"Hori-san to Miyamura-kun","english":null,"native":"堀さんと宮村くん","synonyms":["Horimiya"],"format":"OVA","episodes":6,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":9,"day":26},"status":"FINISHED"},{"index":19,"id":13333,"mal_id":13333,"title":"TARI TARI","english":"Tari Tari","native":"TARI TARI","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":1},"status":"FINISHED"},{"index":20,"id":8888,"mal_id":8888,"title":"Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita","english":"Code Geass: Akito the Exiled - The Wyvern Arrives","native":"コードギアス 亡国のアキト 第1章 翼竜は舞い降りた","synonyms":["Code Geass: Akito the Exiled – Przybycie Wiwerny"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":8,"day":4},"status":"FINISHED"},{"index":21,"id":12967,"mal_id":12967,"title":"Arcana Famiglia: La storia della Arcana Famiglia","english":"La Storia Della Arcana Famiglia","native":"アルカナ・ファミリア -La storia della Arcana Famiglia-","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":7,"day":1},"status":"FINISHED"},{"index":22,"id":13807,"mal_id":13807,"title":"Corpse Party: Missing Footage","english":null,"native":"コープスパーティー Missing Footage","synonyms":["Corpse Party OVA"],"format":"OVA","episodes":1,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":8,"day":2},"status":"FINISHED"},{"index":23,"id":13851,"mal_id":13851,"title":"To LOVE-Ru Darkness OVA","english":null,"native":"To LOVEる -とらぶる- ダークネス","synonyms":["To LOVE-Ru Trouble Darkness OVA","To-Love-Ru Darkness OVA","ToLoveRu Darkness OVA","To Love Ru Darkness OVA"],"format":"OVA","episodes":6,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":8,"day":17},"status":"FINISHED"},{"index":24,"id":13055,"mal_id":13055,"title":"Sankarea (OVA)","english":null,"native":"さんかれあ (OVA)","synonyms":["Sankarea Episode 0","Sankarea Episode 14"],"format":"OVA","episodes":2,"season":"SUMMER","year":2012,"start_date":{"year":2012,"month":6,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":11757,"mal_id":11757,"title":"Sword Art Online","english":"Sword Art Online","native":"ソードアート・オンライン","synonyms":["S.A.O","SAO"],"format":"TV","episodes":25,"season":"SUMMER","year":2012,"start_date":{"day":8,"month":7,"year":2012},"status":"Finished Airing"},{"index":1,"id":11887,"mal_id":11887,"title":"Kokoro Connect","english":"Kokoro Connect","native":"ココロコネクト","synonyms":["Kokoroco"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"day":8,"month":7,"year":2012},"status":"Finished Airing"},{"index":2,"id":12355,"mal_id":12355,"title":"Ookami Kodomo no Ame to Yuki","english":"Wolf Children","native":"おおかみこどもの雨と雪","synonyms":["The Wolf Children Ame and Yuki"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":7,"year":2012},"status":"Finished Airing"},{"index":3,"id":13161,"mal_id":13161,"title":"Hagure Yuusha no Aesthetica","english":"Aesthetica of a Rogue Hero","native":"はぐれ勇者の鬼畜美学〈エステティカ〉","synonyms":["Hagure Yuusha no Estetica"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":4,"id":12549,"mal_id":12549,"title":"Dakara Boku wa, H ga Dekinai.","english":"So, I Can't Play H!","native":"だから僕は、Hができない。","synonyms":["Dakara boku-ha H ga Dekinai.","Dakara Boku wa","Ecchi ga Dekinai."],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":5,"id":12293,"mal_id":12293,"title":"Campione! Matsurowanu Kamigami to Kamigoroshi no Maou","english":"Campione!","native":"カンピオーネ! ~まつろわぬ神々と神殺しの魔王~","synonyms":["Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":6,"id":13667,"mal_id":13667,"title":"Naruto: Shippuuden Movie 6 - Road to Ninja","english":"Naruto Shippuden the Movie 6: Road to Ninja","native":"ROAD TO NINJA NARUTO THE MOVIE","synonyms":["Naruto Movie 9"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":28,"month":7,"year":2012},"status":"Finished Airing"},{"index":7,"id":11933,"mal_id":11933,"title":"Oda Nobuna no Yabou","english":"The Ambition of Oda Nobuna","native":"織田信奈の野望","synonyms":["Oda Nobuna no Yabou"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":9,"month":7,"year":2012},"status":"Finished Airing"},{"index":8,"id":12729,"mal_id":12729,"title":"High School DxD OVA","english":null,"native":"ハイスクールD×D OVA","synonyms":["High School DxD Episodes 13 and 14","Highschool DxD OVA"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":6,"month":9,"year":2012},"status":"Finished Airing"},{"index":9,"id":12175,"mal_id":12175,"title":"Koi to Senkyo to Chocolate","english":"Love, Election and Chocolate","native":"恋と選挙とチョコレート","synonyms":["Koichoco"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":10,"id":12031,"mal_id":12031,"title":"Kingdom","english":"Kingdom","native":"キングダム","synonyms":[],"format":"TV","episodes":38,"season":"SUMMER","year":2012,"start_date":{"day":4,"month":6,"year":2012},"status":"Finished Airing"},{"index":11,"id":13535,"mal_id":13535,"title":"Binbougami ga!","english":"Good Luck Girl!","native":"貧乏神が!","synonyms":["Binbou Gami ga!","Binboukami ga!","Binbogami ga!","Binbou Kami ga!","The God Of Poverty is!"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"day":5,"month":7,"year":2012},"status":"Finished Airing"},{"index":12,"id":12049,"mal_id":12049,"title":"Fairy Tail Movie 1: Houou no Miko","english":"Fairy Tail the Movie: The Phoenix Priestess","native":"劇場版 FAIRY TAIL 鳳凰の巫女","synonyms":["Gekijouban Fairy Tail: Houou no Miko","Priestess of the Phoenix","Fairy Tail: The Phoenix Priestess"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":8,"year":2012},"status":"Finished Airing"},{"index":13,"id":13367,"mal_id":13367,"title":"Kono Naka ni Hitori, Imouto ga Iru!","english":"NAKAIMO - My Little Sister Is Among Them!","native":"この中に1人、妹がいる!","synonyms":["NakaImo","One of Them is My Younger Sister!","Who is Imouto?"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":14,"id":12967,"mal_id":12967,"title":"Arcana Famiglia","english":"La storia della Arcana Famiglia","native":"アルカナ・ファミリア -La storia della Arcana Famiglia-","synonyms":["Arcana Famiglia: La Storia Della Arcana Famiglia"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":1,"month":7,"year":2012},"status":"Finished Airing"},{"index":15,"id":12403,"mal_id":12403,"title":"Yuru Yuri♪♪","english":"YuruYuri: Happy Go Lily ♪♪","native":"ゆるゆり♪♪","synonyms":["Yuru Yuri S2"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":3,"month":7,"year":2012},"status":"Finished Airing"},{"index":16,"id":10357,"mal_id":10357,"title":"Jinrui wa Suitai Shimashita","english":"Humanity Has Declined","native":"人類は衰退しました","synonyms":["Jintai"],"format":"TV","episodes":12,"season":"SUMMER","year":2012,"start_date":{"day":2,"month":7,"year":2012},"status":"Finished Airing"},{"index":17,"id":13469,"mal_id":13469,"title":"Hyouka: Motsubeki Mono wa","english":"Hyouka: What Should Be Had","native":"氷菓 持つべきものは","synonyms":["Hyouka Episode 11.5","Hyouka OVA","Hyou-ka OVA","Hyouka: You can't escape OVA","Hyou-ka: You can't escape OVA","Hyoka OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":7,"year":2012},"status":"Finished Airing"},{"index":18,"id":8888,"mal_id":8888,"title":"Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita","english":"Code Geass: Akito the Exiled - The Wyvern Arrives","native":"コードギアス 亡国のアキト 第1章「翼竜は舞い降りた」","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":7,"year":2012},"status":"Finished Airing"},{"index":19,"id":12679,"mal_id":12679,"title":"Joshiraku","english":"Joshiraku","native":"じょしらく","synonyms":["Rakugo Girls"],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"day":6,"month":7,"year":2012},"status":"Finished Airing"},{"index":20,"id":13333,"mal_id":13333,"title":"Tari Tari","english":"Tari Tari","native":"TARI TARI","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2012,"start_date":{"day":1,"month":7,"year":2012},"status":"Finished Airing"},{"index":21,"id":15687,"mal_id":15687,"title":"Chuunibyou demo Koi ga Shitai! Lite","english":"Love, Chunibyo & Other Delusions!: Chuni-Shorts","native":"中二病でも恋がしたい!Lite","synonyms":["Regardless of My Adolescent Delusions of Grandeur","I Want a Date! Lite","Chu-2 Byo demo Koi ga Shitai! Lite","Love","Chunibyo & Other Delusions Lite"],"format":"ONA","episodes":6,"season":null,"year":null,"start_date":{"day":27,"month":9,"year":2012},"status":"Finished Airing"},{"index":22,"id":13807,"mal_id":13807,"title":"Corpse Party: Missing Footage","english":null,"native":"コープスパーティー Missing Footage","synonyms":["Corpse Party OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":8,"year":2012},"status":"Finished Airing"},{"index":23,"id":13851,"mal_id":13851,"title":"To LOVE-Ru Darkness OVA","english":null,"native":"To LOVEる -とらぶる- ダークネス","synonyms":["To LOVE-Ru Trouble Darkness OVA","To-Love-Ru Darkness OVA","ToLoveRu Darkness OVA"],"format":"OVA","episodes":6,"season":null,"year":null,"start_date":{"day":17,"month":8,"year":2012},"status":"Finished Airing"},{"index":24,"id":14753,"mal_id":14753,"title":"Hori-san to Miyamura-kun","english":"Hori and Miyamura","native":"堀さんと宮村くん","synonyms":["Horimiya"],"format":"OVA","episodes":6,"season":null,"year":null,"start_date":{"day":26,"month":9,"year":2012},"status":"Finished Airing"}]},{"year":2014,"season":"summer","anilist":[{"index":0,"id":20605,"mal_id":22319,"title":"Tokyo Ghoul","english":"Tokyo Ghoul","native":"東京喰種 トーキョーグール","synonyms":["Tokyo Kushu","שדי טוקיו","东京食种","طوكيو غول","Токийский гуль"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":4},"status":"FINISHED"},{"index":1,"id":20613,"mal_id":22199,"title":"Akame ga Kill!","english":"Akame ga Kill!","native":"アカメが斬る!","synonyms":["Akame ga Kiru!","أكامي: قاتلة بالإكراه!","Red Eyes Sword","斬!赤紅之瞳"],"format":"TV","episodes":24,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":7},"status":"FINISHED"},{"index":2,"id":20594,"mal_id":21881,"title":"Sword Art Online II","english":"Sword Art Online II","native":"ソードアート・オンライン II","synonyms":["SAO2","GGO","ซอร์ดอาร์ตออนไลน์ ภาค 2"],"format":"TV","episodes":24,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":5},"status":"FINISHED"},{"index":3,"id":20661,"mal_id":23283,"title":"Zankyou no Terror","english":"Terror in Resonance","native":"残響のテロル","synonyms":["Terror in Tokyo","Эхо террора","Zagadkowi terroryści"],"format":"TV","episodes":11,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":11},"status":"FINISHED"},{"index":4,"id":20596,"mal_id":21995,"title":"Ao Haru Ride","english":"Blue Spring Ride","native":"アオハライド","synonyms":["Aoharaido"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":8},"status":"FINISHED"},{"index":5,"id":20668,"mal_id":23289,"title":"Gekkan Shoujo Nozaki-kun","english":"Monthly Girls' Nozaki-kun","native":"月刊少女野崎くん","synonyms":["Revista mensual para chicas Nozaki","月刊少女野崎君"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":7},"status":"FINISHED"},{"index":6,"id":20722,"mal_id":22789,"title":"Barakamon","english":"Barakamon","native":"ばらかもん","synonyms":["元气囝仔","บารากะมอน เกาะมีฮา คนมีเฮ "],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":6},"status":"FINISHED"},{"index":7,"id":20593,"mal_id":21855,"title":"Hanamonogatari","english":"Hanamonogatari","native":"花物語","synonyms":["Monogatari Series Second Season +α","ปกรณัมแห่งบุปผา"],"format":"TV","episodes":5,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":8,"day":16},"status":"FINISHED"},{"index":8,"id":20632,"mal_id":22729,"title":"Aldnoah.Zero","english":"ALDNOAH.ZERO","native":"アルドノア・ゼロ","synonyms":["A/Z","ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall."],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":6},"status":"FINISHED"},{"index":9,"id":20614,"mal_id":22265,"title":"Free!: Eternal Summer","english":"Free! -Eternal Summer-","native":"Free!-Eternal Summer-","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":3},"status":"FINISHED"},{"index":10,"id":20555,"mal_id":21557,"title":"Omoide no Marnie","english":"When Marnie Was There","native":"思い出のマーニー","synonyms":["Souvenirs de Marnie","Quando c'era Marnie","Erinnerungen an Marnie","El Recuerdo de Marnie","Marnie - min hemmelige venninne","När Marnie var där","Marnie. Przyjaciółka ze snów","As memórias de Marnie"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":19},"status":"FINISHED"},{"index":11,"id":20606,"mal_id":22145,"title":"Kuroshitsuji: Book of Circus","english":"Black Butler: Book of Circus","native":"黒執事 Book of Circus","synonyms":["Black Butler 3","Kuroshitsuji Circus Hen","Kuroshitsuji Shin Series","คนลึกไขปริศนาลับ ภาค 3","คนลึกไขปริศนาลับ: Book of Circus","Hắc quản gia: Chương đoàn xiếc","黑执事 Book of Circus 第3季","黑執事 Book of Circus 第3季","Black Butler Book of Circus S3","Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú","흑집사 Book of Circus","Diácono Negro: Libro de circo temporada 3"],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":11},"status":"FINISHED"},{"index":12,"id":20663,"mal_id":22877,"title":"Seirei Tsukai no Blade Dance","english":"Blade Dance of the Elementalers","native":"精霊使いの剣舞【ブレイドダンス】","synonyms":["Seirei Tsukai no Kenbu: Blade Dance"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":14},"status":"FINISHED"},{"index":13,"id":20572,"mal_id":21659,"title":"Kill la Kill Tokubetsu-hen","english":"Kill la Kill: GOODBYE AGAIN","native":"キルラキル 特別編","synonyms":["Kill la Kill Episode 25","Kill la Kill Special","KLK"],"format":"OVA","episodes":1,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":9,"day":3},"status":"FINISHED"},{"index":14,"id":16904,"mal_id":16904,"title":"K: MISSING KINGS","english":null,"native":"K MISSING KINGS","synonyms":["K-Project Movie"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":5},"status":"FINISHED"},{"index":15,"id":20520,"mal_id":21105,"title":"LOVE STAGE!!","english":null,"native":"LOVE STAGE!!","synonyms":["ラブステージ"],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":10},"status":"FINISHED"},{"index":16,"id":20583,"mal_id":23309,"title":"Rail Wars!","english":"Rail Wars!","native":"レールウォーズ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":4},"status":"FINISHED"},{"index":17,"id":20769,"mal_id":24991,"title":"No Game No Life Specials","english":"No Game No Life Specials","native":"ノーゲーム・ノーライフ ミニ","synonyms":["NGNL Specials"],"format":"SPECIAL","episodes":6,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":6,"day":25},"status":"FINISHED"},{"index":18,"id":20467,"mal_id":20509,"title":"Fate/kaleid liner Prisma☆Illya 2wei!","english":"Fate/kaleid liner Prisma☆Illya 2wei!","native":"Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!","synonyms":["Fate/kaleid liner Prisma☆Illya Zwei!","Судьба: Девочка-волшебница Иллия 2"],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":10},"status":"FINISHED"},{"index":19,"id":20666,"mal_id":23327,"title":"Space☆Dandy 2","english":"Space Dandy 2","native":"スペース☆ダンディ 2","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":6},"status":"FINISHED"},{"index":20,"id":20889,"mal_id":27601,"title":"Chuunibyou demo Koi ga Shitai! Ren: Saisei no... Jaou Shingan Mokushiroku","english":"Love, Chunibyo & Other Delusions - Heart Throb -: The Rikka Wars/ Apocalypse of the Wicked Lord Shingan Reborn","native":"中二病でも恋がしたい!戀 再生の・・・邪王真眼黙示録","synonyms":[],"format":"OVA","episodes":1,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":9,"day":16},"status":"FINISHED"},{"index":21,"id":20475,"mal_id":20709,"title":"Sabagebu!","english":"Sabagebu! - Survival Game Club!","native":"さばげぶっ!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":6},"status":"FINISHED"},{"index":22,"id":20638,"mal_id":22865,"title":"Rokujouma no Shinryakusha!?","english":"Invaders of the Rokujoma!?","native":"六畳間の侵略者!?","synonyms":["ห้องเช่าป่วนก๊วนคนแปลก"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":12},"status":"FINISHED"},{"index":23,"id":20779,"mal_id":23385,"title":"Kyoukai no Kanata #0 Shinonome","english":"Beyond the Boundary: Daybreak","native":"境界の彼方#0 東雲","synonyms":["Beyond the Boundary OVA","Beyond the Boundary: Daybreak","Kyokai no Kanat Episode 0: Shinonome"],"format":"OVA","episodes":1,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":2},"status":"FINISHED"},{"index":24,"id":20711,"mal_id":23421,"title":"Re:_HAMATORA","english":"Re: Hamatora","native":"Re:␣ハマトラ","synonyms":["Hamatora The Animation Season 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"year":2014,"month":7,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":22319,"mal_id":22319,"title":"Tokyo Ghoul","english":"Tokyo Ghoul","native":"東京喰種-トーキョーグール-","synonyms":["Tokyo Kushu","Toukyou Kushu","Toukyou Ghoul"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":4,"month":7,"year":2014},"status":"Finished Airing"},{"index":1,"id":22199,"mal_id":22199,"title":"Akame ga Kill!","english":"Akame ga Kill!","native":"アカメが斬る!","synonyms":["Akame ga Kiru!"],"format":"TV","episodes":24,"season":"SUMMER","year":2014,"start_date":{"day":7,"month":7,"year":2014},"status":"Finished Airing"},{"index":2,"id":21881,"mal_id":21881,"title":"Sword Art Online II","english":"Sword Art Online II","native":"ソードアート・オンライン II","synonyms":["Phantom Bullet","SAO II","Sword Art Online 2","SAO 2"],"format":"TV","episodes":24,"season":"SUMMER","year":2014,"start_date":{"day":5,"month":7,"year":2014},"status":"Finished Airing"},{"index":3,"id":23283,"mal_id":23283,"title":"Zankyou no Terror","english":"Terror in Resonance","native":"残響のテロル","synonyms":["Terror in Tokyo","Terror of Resonance"],"format":"TV","episodes":11,"season":"SUMMER","year":2014,"start_date":{"day":11,"month":7,"year":2014},"status":"Finished Airing"},{"index":4,"id":21995,"mal_id":21995,"title":"Ao Haru Ride","english":"Blue Spring Ride","native":"アオハライド","synonyms":["Aoharaido"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":8,"month":7,"year":2014},"status":"Finished Airing"},{"index":5,"id":23289,"mal_id":23289,"title":"Gekkan Shoujo Nozaki-kun","english":"Monthly Girls' Nozaki-kun","native":"月刊少女野崎くん","synonyms":["Gekkan Shoujo Nozaki-kun"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":7,"month":7,"year":2014},"status":"Finished Airing"},{"index":6,"id":22789,"mal_id":22789,"title":"Barakamon","english":"Barakamon","native":"ばらかもん","synonyms":["Barakamon"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":6,"month":7,"year":2014},"status":"Finished Airing"},{"index":7,"id":22729,"mal_id":22729,"title":"Aldnoah.Zero","english":"Aldnoah.Zero","native":"アルドノア・ゼロ","synonyms":["AZ"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":6,"month":7,"year":2014},"status":"Finished Airing"},{"index":8,"id":21855,"mal_id":21855,"title":"Hanamonogatari","english":"Hanamonogatari","native":"花物語","synonyms":["Monogatari Series: Second Season +α"],"format":"TV Special","episodes":5,"season":null,"year":null,"start_date":{"day":16,"month":8,"year":2014},"status":"Finished Airing"},{"index":9,"id":22145,"mal_id":22145,"title":"Kuroshitsuji: Book of Circus","english":"Black Butler: Book of Circus","native":"黒執事 Book of Circus","synonyms":["Kuroshitsuji Circus Hen","Kuroshitsuji Shin Series","Black Butler 3","Kuroshitsuji III"],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"day":11,"month":7,"year":2014},"status":"Finished Airing"},{"index":10,"id":22265,"mal_id":22265,"title":"Free! Eternal Summer","english":null,"native":"Free!-Eternal Summer-","synonyms":["Free! - Iwatobi Swim Club 2","Free! 2nd Season"],"format":"TV","episodes":13,"season":"SUMMER","year":2014,"start_date":{"day":3,"month":7,"year":2014},"status":"Finished Airing"},{"index":11,"id":22877,"mal_id":22877,"title":"Seireitsukai no Blade Dance","english":"Blade Dance of the Elementalers","native":"精霊使いの剣舞〈ブレイドダンス〉","synonyms":["Seirei Tsukai no Kenbu","Bladedance of Elementalers"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":14,"month":7,"year":2014},"status":"Finished Airing"},{"index":12,"id":21557,"mal_id":21557,"title":"Omoide no Marnie","english":"When Marnie Was There","native":"思い出のマーニー","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":7,"year":2014},"status":"Finished Airing"},{"index":13,"id":21105,"mal_id":21105,"title":"Love Stage!!","english":"Love Stage!!","native":"LOVE STAGE!!","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"day":10,"month":7,"year":2014},"status":"Finished Airing"},{"index":14,"id":16904,"mal_id":16904,"title":"K: Missing Kings","english":"K: Missing Kings","native":"K MISSING KINGS","synonyms":["K (Movie)","K-Project Movie","K-Project Sequel"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":7,"year":2014},"status":"Finished Airing"},{"index":15,"id":23309,"mal_id":23309,"title":"Rail Wars!","english":"Rail Wars!","native":"RAIL WARS! [レールウォーズ]","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":4,"month":7,"year":2014},"status":"Finished Airing"},{"index":16,"id":21659,"mal_id":21659,"title":"Kill la Kill Specials","english":"Kill la Kill Specials","native":"キルラキル 特別編","synonyms":["Kill la Kill Tokubetsu-hen","Sayonara wo Mou Ichido","Kill la Kill Digest: Naked Memories","KILL la KILL Digest –Naked Memories by Aikuro Mikisugi–"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":3,"month":9,"year":2014},"status":"Finished Airing"},{"index":17,"id":22865,"mal_id":22865,"title":"Rokujouma no Shinryakusha!?","english":"Invaders of the Rokujyoma!?","native":"六畳間の侵略者!?","synonyms":["Rokujouma no Shinryakusha!?"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":12,"month":7,"year":2014},"status":"Finished Airing"},{"index":18,"id":23327,"mal_id":23327,"title":"Space☆Dandy 2nd Season","english":"Space Dandy 2nd Season","native":"スペース☆ダンディ 第2シリーズ","synonyms":["Space☆Dandy Second Season"],"format":"TV","episodes":13,"season":"SUMMER","year":2014,"start_date":{"day":6,"month":7,"year":2014},"status":"Finished Airing"},{"index":19,"id":23421,"mal_id":23421,"title":"Re:␣Hamatora","english":"Re: Hamatora: Season 2","native":"Re:␣ ハマトラ","synonyms":["Hamatora The Animation 2nd Season","Reply Hamatora"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":8,"month":7,"year":2014},"status":"Finished Airing"},{"index":20,"id":23333,"mal_id":23333,"title":"DRAMAtical Murder","english":"DRAMAtical Murder","native":"ドラマティカル マーダー","synonyms":["DMMd"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":7,"month":7,"year":2014},"status":"Finished Airing"},{"index":21,"id":20509,"mal_id":20509,"title":"Fate/kaleid liner Prisma☆Illya 2wei!","english":"Fate/Kaleid Liner Prisma Illya 2Wei!","native":"Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!","synonyms":["Prisma Illya 2wei!","Prisma☆Illya 2nd Season"],"format":"TV","episodes":10,"season":"SUMMER","year":2014,"start_date":{"day":10,"month":7,"year":2014},"status":"Finished Airing"},{"index":22,"id":21353,"mal_id":21353,"title":"Tokyo ESP","english":"Tokyo ESP","native":"東京ESP","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":12,"month":7,"year":2014},"status":"Finished Airing"},{"index":23,"id":23079,"mal_id":23079,"title":"Glasslip","english":"Glasslip","native":"グラスリップ","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2014,"start_date":{"day":3,"month":7,"year":2014},"status":"Finished Airing"},{"index":24,"id":20709,"mal_id":20709,"title":"Sabage-bu!","english":"Sabagebu! -Survival Game Club!-","native":"さばげぶっ!","synonyms":["Survival Game Club!"],"format":"TV","episodes":12,"season":"SUMMER","year":2014,"start_date":{"day":6,"month":7,"year":2014},"status":"Finished Airing"}]},{"year":2016,"season":"summer","anilist":[{"index":0,"id":21519,"mal_id":32281,"title":"Kimi no Na wa.","english":"Your Name.","native":"君の名は。","synonyms":["Your Name. - Gestern, heute und für immer ","Mi a Neved? ","你的名字。","너의 이름은.","Tu nombre","Твоё имя","หลับตาฝันถึงชื่อเธอ","Il tuo nome","השם שלך.","Twoje imię"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":8,"day":26},"status":"FINISHED"},{"index":1,"id":20954,"mal_id":28851,"title":"Koe no Katachi","english":"A Silent Voice","native":"聲の形","synonyms":["The Shape of Voice","A Voz do Silêncio","A Forma da Voz","La Forma della Voce","צורתו של קול","声之形","الحزن الصامت","Una voz silenciosa","La Forme de la voix","Форма голоса","Форма голосу","Tylus balsas","Balss forma","Дауыс пішіні","Sakit səs","รักไร้เสียง"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":9,"day":17},"status":"FINISHED"},{"index":2,"id":21507,"mal_id":32182,"title":"Mob Psycho 100","english":"Mob Psycho 100","native":"モブサイコ100","synonyms":["מוב פסיכו 100","ม็อบไซโค 100 คนพลังจิต","Моб Психо 100"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":12},"status":"FINISHED"},{"index":3,"id":21804,"mal_id":33255,"title":"Saiki Kusuo no Ψ-nan","english":"The Disastrous Life of Saiki K.","native":"斉木楠雄のΨ難","synonyms":["חייו הרי-האסון של סאיקי ק","Η Καταστροφική Ζωή του Σάικι Κ","Ох уж этот экстрасенс Сайки Кусуо!"],"format":"TV_SHORT","episodes":120,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":4},"status":"FINISHED"},{"index":4,"id":21518,"mal_id":32282,"title":"Shokugeki no Souma: Ni no Sara","english":"Food Wars! The Second Plate","native":"食戟のソーマ 弍ノ皿","synonyms":["食戟之灵 贰之皿","ยอดนักปรุงโซมะ ภาค 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":2},"status":"FINISHED"},{"index":5,"id":21049,"mal_id":30015,"title":"ReLIFE","english":"ReLIFE","native":"ReLIFE","synonyms":["リライフ","Повторная жизнь"],"format":"ONA","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":6,"day":24},"status":"FINISHED"},{"index":6,"id":21647,"mal_id":32729,"title":"orange","english":"Orange","native":"orange","synonyms":["オレンジ"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":4},"status":"FINISHED"},{"index":7,"id":21711,"mal_id":32998,"title":"91Days","english":"91 Days","native":"91Days","synonyms":["91デイズ"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":9},"status":"FINISHED"},{"index":8,"id":21385,"mal_id":31722,"title":"Nanatsu no Taizai: Seisen no Shirushi","english":"The Seven Deadly Sins: Signs of A Holy War","native":"七つの大罪 聖戦の予兆","synonyms":["The Seven Deadly Sins: Signs of Holy War","The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs","ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์","The Seven Deadly Sins: Ślady Świętej Wojny","Семь смертных грехов: Знамение священной войны"],"format":"TV","episodes":4,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":8,"day":28},"status":"FINISHED"},{"index":9,"id":21399,"mal_id":31757,"title":"Kizumonogatari II: Nekketsu-hen","english":"Kizumonogatari Part 2: Nekketsu","native":"傷物語〈Ⅱ熱血篇〉","synonyms":["Wound Tale 2: Hot Blood"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":8,"day":19},"status":"FINISHED"},{"index":10,"id":21455,"mal_id":31953,"title":"NEW GAME!","english":"NEW GAME!","native":"NEW GAME!","synonyms":["Новая игра!"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":4},"status":"FINISHED"},{"index":11,"id":21509,"mal_id":32189,"title":"Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen","english":"Danganronpa 3: The End of Hope’s Peak High School - Future Arc","native":"ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":11},"status":"FINISHED"},{"index":12,"id":21825,"mal_id":33028,"title":"Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen","english":"Danganronpa 3: The End of Hope’s Peak High School - Despair Arc","native":"ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":14},"status":"FINISHED"},{"index":13,"id":21659,"mal_id":32828,"title":"Amaama to Inazuma","english":"Sweetness & Lightning","native":"甘々と稲妻","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":5},"status":"FINISHED"},{"index":14,"id":21457,"mal_id":31952,"title":"Kono Bijutsu-bu ni wa Mondai ga Aru!","english":"This Art Club Has a Problem!","native":"この美術部には問題がある!","synonyms":["Konobi"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":8},"status":"FINISHED"},{"index":15,"id":21626,"mal_id":32648,"title":"Handa-kun","english":"Handa-kun","native":"はんだくん","synonyms":["ฮันดะคุง"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":8},"status":"FINISHED"},{"index":16,"id":21410,"mal_id":31764,"title":"Nejimaki Seirei Senki: Tenkyou no Alderamin","english":"Alderamin on the Sky","native":"ねじ巻き精霊戦記 天鏡のアルデラミン","synonyms":["สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":9},"status":"FINISHED"},{"index":17,"id":21560,"mal_id":32379,"title":"Berserk","english":"Berserk (2016)","native":"ベルセルク","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":1},"status":"FINISHED"},{"index":18,"id":21221,"mal_id":30911,"title":"Tales of Zestiria the Cross","english":"Tales of Zestiria the X","native":"テイルズ オブ ゼスティリア ザ クロス","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":3},"status":"FINISHED"},{"index":19,"id":21688,"mal_id":32902,"title":"Mahoutsukai no Yome: Hoshi Matsu Hito","english":"The Ancient Magus' Bride: Those Awaiting a Star","native":"魔法使いの嫁 星待つひと","synonyms":["Mahou Tsukai no Yome: Hoshi Matsu Hito","The Ancient Magus Bride","The Ancient Magus' Bride"],"format":"OVA","episodes":3,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":8,"day":13},"status":"FINISHED"},{"index":20,"id":21378,"mal_id":31845,"title":"Masou Gakuen HxH","english":"Hybrid x Heart Magias Academy Ataraxia","native":"魔装学園H×H","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":6},"status":"FINISHED"},{"index":21,"id":21269,"mal_id":31229,"title":"SERVAMP","english":"SERVAMP","native":"SERVAMP","synonyms":["サーヴァンプ"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":5},"status":"FINISHED"},{"index":22,"id":21031,"mal_id":29758,"title":"Taboo Tattoo","english":null,"native":"タブー・タトゥー","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":5},"status":"FINISHED"},{"index":23,"id":21584,"mal_id":32526,"title":"Love Live! Sunshine!!","english":"Love Live! Sunshine!!","native":"ラブライブ!サンシャイン!!","synonyms":["Love Live! School Idol Project Sunshine!!"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":2},"status":"FINISHED"},{"index":24,"id":21335,"mal_id":31490,"title":"ONE PIECE FILM: GOLD","english":"One Piece Film: Gold","native":"ONE PIECE FILM GOLD","synonyms":["One Piece Film 13","航海王之黄金城"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2016,"start_date":{"year":2016,"month":7,"day":23},"status":"FINISHED"}],"jikan":[{"index":0,"id":32281,"mal_id":32281,"title":"Kimi no Na wa.","english":"Your Name.","native":"君の名は。","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":8,"year":2016},"status":"Finished Airing"},{"index":1,"id":28851,"mal_id":28851,"title":"Koe no Katachi","english":"A Silent Voice","native":"聲の形","synonyms":["The Shape of Voice"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":9,"year":2016},"status":"Finished Airing"},{"index":2,"id":32182,"mal_id":32182,"title":"Mob Psycho 100","english":"Mob Psycho 100","native":"モブサイコ100","synonyms":["Mob Psycho Hyaku","Mob Psycho One Hundred"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":11,"month":7,"year":2016},"status":"Finished Airing"},{"index":3,"id":33255,"mal_id":33255,"title":"Saiki Kusuo no Ψ-nan","english":"The Disastrous Life of Saiki K.","native":"斉木楠雄のΨ難","synonyms":["Saiki Kusuo no Psi Nan","Saiki Kusuo no Sainan"],"format":"TV","episodes":120,"season":"SUMMER","year":2016,"start_date":{"day":4,"month":7,"year":2016},"status":"Finished Airing"},{"index":4,"id":32282,"mal_id":32282,"title":"Shokugeki no Souma: Ni no Sara","english":"Food Wars! The Second Plate","native":"食戟のソーマ 弍ノ皿","synonyms":["Shokugeki no Souma 2nd Season","Shokugeki no Soma 2","Food Wars: Shokugeki no Soma 2","Shokugeki no Soma: The Second Plate"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"day":2,"month":7,"year":2016},"status":"Finished Airing"},{"index":5,"id":30015,"mal_id":30015,"title":"ReLIFE","english":"ReLIFE","native":"ReLIFE","synonyms":["Re LIFE"],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"day":2,"month":7,"year":2016},"status":"Finished Airing"},{"index":6,"id":32729,"mal_id":32729,"title":"Orange","english":"Orange","native":"orange(オレンジ)","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"day":4,"month":7,"year":2016},"status":"Finished Airing"},{"index":7,"id":32998,"mal_id":32998,"title":"91 Days","english":"91 Days","native":"91Days","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":9,"month":7,"year":2016},"status":"Finished Airing"},{"index":8,"id":31722,"mal_id":31722,"title":"Nanatsu no Taizai: Seisen no Shirushi","english":"The Seven Deadly Sins: Signs of Holy War","native":"七つの大罪 聖戦の予兆","synonyms":[],"format":"TV","episodes":4,"season":"SUMMER","year":2016,"start_date":{"day":28,"month":8,"year":2016},"status":"Finished Airing"},{"index":9,"id":31757,"mal_id":31757,"title":"Kizumonogatari II: Nekketsu-hen","english":"Kizumonogatari Part 2: Hot-Blooded","native":"傷物語〈Ⅱ熱血篇〉","synonyms":["Koyomi Vamp","Kizumonogatari Part 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":8,"year":2016},"status":"Finished Airing"},{"index":10,"id":31953,"mal_id":31953,"title":"New Game!","english":"New Game!","native":"NEW GAME!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":4,"month":7,"year":2016},"status":"Finished Airing"},{"index":11,"id":32379,"mal_id":32379,"title":"Berserk","english":"Berserk (2016)","native":"ベルセルク","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":1,"month":7,"year":2016},"status":"Finished Airing"},{"index":12,"id":32189,"mal_id":32189,"title":"Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen","english":"Danganronpa 3: The End of Hope's Peak High School - Future Arc","native":"ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編","synonyms":["Danganronpa 3: The End of Hope's Peak Academy - Future Volume"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":11,"month":7,"year":2016},"status":"Finished Airing"},{"index":13,"id":33028,"mal_id":33028,"title":"Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen","english":"Danganronpa 3: The End of Hope's Peak High School - Despair Arc","native":"ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編","synonyms":["Danganronpa 3: The End of Hope's Peak Academy - Despair Volume"],"format":"TV","episodes":11,"season":"SUMMER","year":2016,"start_date":{"day":14,"month":7,"year":2016},"status":"Finished Airing"},{"index":14,"id":31764,"mal_id":31764,"title":"Nejimaki Seirei Senki: Tenkyou no Alderamin","english":"Alderamin on the Sky","native":"ねじ巻き精霊戦記 天鏡のアルデラミン","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2016,"start_date":{"day":9,"month":7,"year":2016},"status":"Finished Airing"},{"index":15,"id":30911,"mal_id":30911,"title":"Tales of Zestiria the Cross","english":"Tales of Zestiria the X","native":"テイルズ オブ ゼスティリア ザ クロス","synonyms":["Tales of Zestiria the X"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":10,"month":7,"year":2016},"status":"Finished Airing"},{"index":16,"id":32828,"mal_id":32828,"title":"Amaama to Inazuma","english":"Sweetness & Lightning","native":"甘々と稲妻","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":5,"month":7,"year":2016},"status":"Finished Airing"},{"index":17,"id":32648,"mal_id":32648,"title":"Handa-kun","english":"Handa-kun","native":"はんだくん","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":8,"month":7,"year":2016},"status":"Finished Airing"},{"index":18,"id":31952,"mal_id":31952,"title":"Kono Bijutsu-bu ni wa Mondai ga Aru!","english":"This Art Club Has a Problem!","native":"この美術部には問題がある!","synonyms":["Konobi"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":8,"month":7,"year":2016},"status":"Finished Airing"},{"index":19,"id":31845,"mal_id":31845,"title":"Masou Gakuen HxH","english":"Hybrid x Heart Magias Academy Ataraxia","native":"魔装学園H×H","synonyms":["Masou Gakuen Hybrid x Heart"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":6,"month":7,"year":2016},"status":"Finished Airing"},{"index":20,"id":31229,"mal_id":31229,"title":"Servamp","english":"Servamp","native":"SERVAMP(サーヴァンプ)","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":5,"month":7,"year":2016},"status":"Finished Airing"},{"index":21,"id":29758,"mal_id":29758,"title":"Taboo Tattoo","english":"Taboo Tattoo","native":"タブー・タトゥー","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":5,"month":7,"year":2016},"status":"Finished Airing"},{"index":22,"id":32902,"mal_id":32902,"title":"Mahoutsukai no Yome: Hoshi Matsu Hito","english":"The Ancient Magus' Bride: Those Awaiting a Star","native":"魔法使いの嫁 星待つひと","synonyms":["The Magician's Bride","Mahoyome"],"format":"OVA","episodes":3,"season":null,"year":null,"start_date":{"day":10,"month":9,"year":2016},"status":"Finished Airing"},{"index":23,"id":31490,"mal_id":31490,"title":"One Piece Film: Gold","english":null,"native":"ONE PIECE FILM GOLD","synonyms":["One Piece Movie 13"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":7,"year":2016},"status":"Finished Airing"},{"index":24,"id":33421,"mal_id":33421,"title":"Yi Ren Zhi Xia","english":"The Outcast Season 1","native":"一人之下 THE OUTCAST","synonyms":["Hitori no Shita - The Outcast"],"format":"TV","episodes":12,"season":"SUMMER","year":2016,"start_date":{"day":8,"month":7,"year":2016},"status":"Finished Airing"}]},{"year":2018,"season":"summer","anilist":[{"index":0,"id":99147,"mal_id":35760,"title":"Shingeki no Kyojin Season 3","english":"Attack on Titan Season 3","native":"進撃の巨人 Season3","synonyms":["SnK 3","AoT 3","Shingeki no Kyojin Season 3","מתקפת הטיטאנים עונה 3","L'Attacco dei Giganti 3","L'Attacco dei Giganti - Terza Stagione","ผ่าพิภพไททัน ภาค 3","حمله به تایتان فصل 3","ผ่าพิภพไททัน ภาค 3 Part 1","Атака титанов 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":23},"status":"FINISHED"},{"index":1,"id":99750,"mal_id":36098,"title":"Kimi no Suizou wo Tabetai","english":"I Want to Eat Your Pancreas","native":"君の膵臓をたべたい","synonyms":["Quiero Comerme tu Páncreas","Voglio mangiare il tuo pancreas","Je veux manger ton pancréas","Vull menjar-me el teu pàncrees","Kimisui","Eu Quero Comer Seu Pâncreas","Хочу съесть твою поджелудочную железу","ตับอ่อนเธอนั้นขอฉันเถอะนะ"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":9,"day":1},"status":"FINISHED"},{"index":2,"id":100388,"mal_id":36649,"title":"BANANA FISH","english":"BANANA FISH","native":"BANANA FISH","synonyms":["バナナフィッシュ","香蕉鱼","Банановая рыба"],"format":"TV","episodes":24,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":6},"status":"FINISHED"},{"index":3,"id":101474,"mal_id":37675,"title":"Overlord III","english":"Overlord III","native":"オーバーロードⅢ","synonyms":["Over Lord 3","โอเวอร์ลอร์ด ภาค 3","โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3"],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":10},"status":"FINISHED"},{"index":4,"id":100922,"mal_id":37105,"title":"Grand Blue","english":"Grand Blue Dreaming","native":"ぐらんぶる","synonyms":["ก๊วนป่วนชวนบุ๋งบุ๋ง"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":14},"status":"FINISHED"},{"index":5,"id":100723,"mal_id":36896,"title":"Boku no Hero Academia THE MOVIE: Futari no Hero","english":"My Hero Academia: Two Heroes","native":"僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜","synonyms":["My Hero Academia the Movie","我的英雄学院 ~两位英雄~","มายฮีโร่ อคาเดเมีย กำเนิดใหม่ 2 วีรบุรุษ"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":8,"day":3},"status":"FINISHED"},{"index":6,"id":99629,"mal_id":35994,"title":"Satsuriku no Tenshi","english":"Angels of Death","native":"殺戮の天使","synonyms":["Angel of Massacre","Angel Slaughter","ทูตสวรรค์ทัณฑ์อำมหิต"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":6},"status":"FINISHED"},{"index":7,"id":100977,"mal_id":37141,"title":"Hataraku Saibou","english":"Cells at Work!","native":"はたらく細胞","synonyms":["Les brigades immunitaires","เซลล์ขยัน พันธุ์เดือด","Lavori in corpo","Клетки за работой!"],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":8},"status":"FINISHED"},{"index":8,"id":101004,"mal_id":37210,"title":"Isekai Maou to Shoukan Shoujo no Dorei Majutsu","english":"How NOT to Summon a Demon Lord","native":"異世界魔王と召喚少女の奴隷魔術","synonyms":["The King of Darkness Another World Story","异世界魔王与召唤少女的奴隶魔术","จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ","異世界魔王與召喚少女的奴隸魔術"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":5},"status":"FINISHED"},{"index":9,"id":101001,"mal_id":37171,"title":"Asobi Asobase","english":"Asobi Asobase - workshop of fun -","native":"あそびあそばせ","synonyms":["Asobi Asobase: Workshop of Fun","游戏3人娘","来玩游戏吧","ชมรมสาวรักสนุก"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":8},"status":"FINISHED"},{"index":10,"id":97888,"mal_id":34443,"title":"Baki","english":"BAKI","native":"バキ","synonyms":["Baki - O Campeão","Баки","Μπάκι"],"format":"ONA","episodes":26,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":6,"day":25},"status":"FINISHED"},{"index":11,"id":101432,"mal_id":37095,"title":"Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou","english":"Violet Evergarden: Special","native":"ヴァイオレット・エヴァーガーデン きっと\"愛\"を知る日が来るのだろう","synonyms":["فيوليت: رسالة"],"format":"OVA","episodes":1,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":4},"status":"FINISHED"},{"index":12,"id":101351,"mal_id":37517,"title":"Happy Sugar Life","english":"Happy Sugar Life","native":"ハッピーシュガーライフ","synonyms":["White Sugar Garden, Black Salt Cage","幸福甜蜜生活"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":14},"status":"FINISHED"},{"index":13,"id":99540,"mal_id":35946,"title":"Nanatsu no Taizai Movie: Tenkuu no Torawarebito","english":"The Seven Deadly Sins the Movie: Prisoners of the Sky","native":"劇場版 七つの大罪 天空の囚われ人","synonyms":["ศึกตำนาน 7 อัศวิน: นักโทษแห่งท้องนภา ","Семь смертных грехов: Узники небес"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":8,"day":18},"status":"FINISHED"},{"index":14,"id":100483,"mal_id":36726,"title":"Yuragi-sou no Yuuna-san","english":"Yuuna and the Haunted Hot Springs","native":"ゆらぎ荘の幽奈さん","synonyms":["Yuragisou no Yuuna-san","Yuuna of Yuragi Manor","Yunas Geisterhaus","Yûna de la pension Yuragi","ยูรากิโซ ที่นี่ผีน่ารักนะ "],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":14},"status":"FINISHED"},{"index":15,"id":20574,"mal_id":21877,"title":"Hi Score Girl","english":"Hi Score Girl","native":"ハイスコアガール","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":14},"status":"FINISHED"},{"index":16,"id":101361,"mal_id":37569,"title":"Tenrou: Sirius the Jaeger","english":"Sirius the Jaeger","native":"天狼 Sirius the Jaeger","synonyms":["Sirius"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":12},"status":"FINISHED"},{"index":17,"id":101231,"mal_id":37396,"title":"Shikioriori","english":"Flavors of Youth","native":"詩季織々","synonyms":["肆式青春","Si Shi Qing Chun","Shiki Oriori: O Sabor da Juventude"],"format":"MOVIE","episodes":3,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":8,"day":4},"status":"FINISHED"},{"index":18,"id":101117,"mal_id":36704,"title":"Free!: Dive to the Future","english":"Free! -Dive to the Future-","native":"Free!-Dive to the Future-","synonyms":["Free! 3rd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":12},"status":"FINISHED"},{"index":19,"id":101925,"mal_id":37491,"title":"Gintama.: Shirogane no Tamashii-hen - Kouhan-sen","english":"Gintama.: Silver Soul Arc - Second Half War","native":"銀魂. 銀ノ魂篇2","synonyms":["Gintama.: Silver Soul Arc 2","Gintama. Silver Soul Arc Season 2","Gintama.: Shirogane no Tamashii-hen Season 2"],"format":"TV","episodes":14,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":9},"status":"FINISHED"},{"index":20,"id":101289,"mal_id":37446,"title":"Hyakuren no Haou to Seiyaku no Valkyria","english":"The Master of Ragnarök & Blesser of Einherjar","native":"百錬の覇王と聖約の戦乙女","synonyms":["The Master of Ragnarok & Blesser of Einherjar","ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":8},"status":"FINISHED"},{"index":21,"id":100749,"mal_id":36936,"title":"Mirai no Mirai","english":"Mirai","native":"未来のミライ","synonyms":["Mirai of the Future","Miraï, ma petite sœur","未来的未来","Mirai: Mi pequeña hermana","Μιράι, η μικρή μου αδελφή","Мірай","Мирай из будущего","Mano mažoji sesutė Mirai","Болашақтан келген Мирай","Mirai tulevikust","Gələcəkdən olan Miray","Miraï, min lillasyster","Mirai, min lillasyster"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":20},"status":"FINISHED"},{"index":22,"id":98658,"mal_id":35503,"title":"Shoujo☆Kageki Revue Starlight","english":"Revue Starlight","native":"少女☆歌劇 レヴュー・スタァライト","synonyms":["Girls' Musical Revue Starlight","少女☆歌剧 Revue Starlight"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":13},"status":"FINISHED"},{"index":23,"id":101045,"mal_id":37259,"title":"Hanebado!","english":"HANEBADO!","native":"はねバド!","synonyms":["Hanebado! - The Badminton Play of Ayano Hanesaki!","Hanebad!","ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม"],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":2},"status":"FINISHED"},{"index":24,"id":100556,"mal_id":36817,"title":"Sunoharasou no Kanrinin-san","english":"Miss Caretaker of Sunohara-sou","native":"すのはら荘の管理人さん","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"year":2018,"month":7,"day":5},"status":"FINISHED"}],"jikan":[{"index":0,"id":35760,"mal_id":35760,"title":"Shingeki no Kyojin Season 3","english":"Attack on Titan Season 3","native":"進撃の巨人 Season3","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":23,"month":7,"year":2018},"status":"Finished Airing"},{"index":1,"id":36098,"mal_id":36098,"title":"Kimi no Suizou wo Tabetai","english":"I Want To Eat Your Pancreas","native":"君の膵臓をたべたい","synonyms":["KimiSui","Let Me Eat Your Pancreas"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":1,"month":9,"year":2018},"status":"Finished Airing"},{"index":2,"id":37675,"mal_id":37675,"title":"Overlord III","english":"Overlord III","native":"オーバーロードⅢ","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"day":10,"month":7,"year":2018},"status":"Finished Airing"},{"index":3,"id":36649,"mal_id":36649,"title":"Banana Fish","english":"Banana Fish","native":"BANANA FISH","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2018,"start_date":{"day":6,"month":7,"year":2018},"status":"Finished Airing"},{"index":4,"id":37105,"mal_id":37105,"title":"Grand Blue","english":"Grand Blue Dreaming","native":"ぐらんぶる","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":14,"month":7,"year":2018},"status":"Finished Airing"},{"index":5,"id":36896,"mal_id":36896,"title":"Boku no Hero Academia the Movie 1: Futari no Hero","english":"My Hero Academia: Two Heroes","native":"僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~","synonyms":["My Hero Academia the Movie: The Two Heroes"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":3,"month":8,"year":2018},"status":"Finished Airing"},{"index":6,"id":37210,"mal_id":37210,"title":"Isekai Maou to Shoukan Shoujo no Dorei Majutsu","english":"How Not to Summon a Demon Lord","native":"異世界魔王と召喚少女の奴隷魔術","synonyms":["The Otherworldly Demon King and the Summoner Girls' Slave Magic"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":5,"month":7,"year":2018},"status":"Finished Airing"},{"index":7,"id":35994,"mal_id":35994,"title":"Satsuriku no Tenshi","english":"Angels of Death","native":"殺戮の天使","synonyms":["Angel of Massacre","Angel of Slaughter"],"format":"TV","episodes":16,"season":"SUMMER","year":2018,"start_date":{"day":6,"month":7,"year":2018},"status":"Finished Airing"},{"index":8,"id":37141,"mal_id":37141,"title":"Hataraku Saibou","english":"Cells at Work!","native":"はたらく細胞","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"day":8,"month":7,"year":2018},"status":"Finished Airing"},{"index":9,"id":37171,"mal_id":37171,"title":"Asobi Asobase","english":"Asobi Asobase: Workshop of Fun","native":"あそびあそばせ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":8,"month":7,"year":2018},"status":"Finished Airing"},{"index":10,"id":37095,"mal_id":37095,"title":"Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou","english":"Violet Evergarden: The Day You Understand \"I Love You\" Will Surely Come","native":"ヴァイオレット・エヴァーガーデンきっと\"愛\"を知る日が来るのだろう","synonyms":["Violet Evergarden Extra Episode","Violet Evergarden Episode 14","Violet Evergarden Special","The day you understand \"I love you\" will surely come"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":7,"year":2018},"status":"Finished Airing"},{"index":11,"id":37517,"mal_id":37517,"title":"Happy Sugar Life","english":"Happy Sugar Life","native":"ハッピーシュガーライフ","synonyms":["White Sugar Garden","Black Salt Cage"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":14,"month":7,"year":2018},"status":"Finished Airing"},{"index":12,"id":36726,"mal_id":36726,"title":"Yuragi-sou no Yuuna-san","english":"Yuuna and the Haunted Hot Springs","native":"ゆらぎ荘の幽奈さん","synonyms":["Yuuna of Yuragi Manor"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":14,"month":7,"year":2018},"status":"Finished Airing"},{"index":13,"id":35946,"mal_id":35946,"title":"Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito","english":"The Seven Deadly Sins the Movie: Prisoners of the Sky","native":"劇場版 七つの大罪 天空の囚われ人","synonyms":["The Seven Deadly Sins: Prisoners of the Sky"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":8,"year":2018},"status":"Finished Airing"},{"index":14,"id":21877,"mal_id":21877,"title":"High Score Girl","english":"Hi Score Girl","native":"ハイスコアガール","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":14,"month":7,"year":2018},"status":"Finished Airing"},{"index":15,"id":37569,"mal_id":37569,"title":"Sirius","english":"Sirius the Jaeger","native":"天狼〈シリウス〉 Sirius the Jaeger","synonyms":["Tenrou"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":12,"month":7,"year":2018},"status":"Finished Airing"},{"index":16,"id":37208,"mal_id":37208,"title":"Mo Dao Zu Shi","english":"The Master of Diabolism","native":"魔道祖师","synonyms":["Modao Zushi","Grandmaster of Demonic Cultivation","The Founder of Diabolism","Mo Dao Zu Shi: Qianchen Pian","魔道祖师 前尘篇","Madou Soshi","MDZS"],"format":"ONA","episodes":15,"season":null,"year":null,"start_date":{"day":9,"month":7,"year":2018},"status":"Finished Airing"},{"index":17,"id":37491,"mal_id":37491,"title":"Gintama. Shirogane no Tamashii-hen - Kouhan-sen","english":"Gintama. Silver Soul Arc - Second Half War","native":"銀魂. 銀ノ魂篇 後半戦","synonyms":["Gintama. Silver Soul Arc 2"],"format":"TV","episodes":14,"season":"SUMMER","year":2018,"start_date":{"day":9,"month":7,"year":2018},"status":"Finished Airing"},{"index":18,"id":37446,"mal_id":37446,"title":"Hyakuren no Haou to Seiyaku no Valkyria","english":"The Master of Ragnarok & Blesser of Einherjar","native":"百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉","synonyms":["Hyakuren no Haou to Seiyaku no Ikusa Otome"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":8,"month":7,"year":2018},"status":"Finished Airing"},{"index":19,"id":37396,"mal_id":37396,"title":"Shikioriori","english":"Flavors of Youth","native":"詩季織々(しきおりおり)","synonyms":["肆式青春","Si Shi Qing Chun"],"format":"Movie","episodes":3,"season":null,"year":null,"start_date":{"day":4,"month":8,"year":2018},"status":"Finished Airing"},{"index":20,"id":36704,"mal_id":36704,"title":"Free! Dive to the Future","english":null,"native":"Free!-Dive to the Future-","synonyms":["Free! 3rd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":12,"month":7,"year":2018},"status":"Finished Airing"},{"index":21,"id":36873,"mal_id":36873,"title":"Back Street Girls: Gokudolls","english":"Back Street Girls: Gokudols","native":"Back Street Girls -ゴクドルズ","synonyms":["Back Street Girls: Washira Idol Hajimemashita.","Gokudols"],"format":"TV","episodes":10,"season":"SUMMER","year":2018,"start_date":{"day":4,"month":7,"year":2018},"status":"Finished Airing"},{"index":22,"id":37259,"mal_id":37259,"title":"Hanebado!","english":"Hanebado!","native":"はねバド!","synonyms":["The Badminton play of Ayano Hanesaki!"],"format":"TV","episodes":13,"season":"SUMMER","year":2018,"start_date":{"day":2,"month":7,"year":2018},"status":"Finished Airing"},{"index":23,"id":36817,"mal_id":36817,"title":"Sunohara-sou no Kanrinin-san","english":"Miss Caretaker of Sunohara-sou","native":"すのはら荘の管理人さん","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2018,"start_date":{"day":5,"month":7,"year":2018},"status":"Finished Airing"},{"index":24,"id":36936,"mal_id":36936,"title":"Mirai no Mirai","english":"Mirai","native":"未来のミライ","synonyms":["Mirai of the Future"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":7,"year":2018},"status":"Finished Airing"}]},{"year":2020,"season":"summer","anilist":[{"index":0,"id":108632,"mal_id":39587,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season","english":"Re:ZERO -Starting Life in Another World- Season 2","native":"Re:ゼロから始める異世界生活 2nd Season","synonyms":["Re:Zero kara Hajimeru Isekai Seikatsu (2020)","Re: 제로부터 시작하는 이세계 생활 2기","Re:从零开始的异世界生活第二季(上半)","Re:从零开始的异世界生活 2 上半","Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2","Re:Zero — жизнь с нуля в другом мире. Второй сезон"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":8},"status":"FINISHED"},{"index":1,"id":113813,"mal_id":40839,"title":"Kanojo, Okarishimasu","english":"Rent-a-Girlfriend","native":"彼女、お借りします","synonyms":["I'd like to Borrow a Girlfriend","Kanokari","สะดุดรักยัยแฟนเช่า","Pacar Sewaan"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":11},"status":"FINISHED"},{"index":2,"id":116006,"mal_id":41353,"title":"THE GOD OF HIGH SCHOOL","english":"The God of High School","native":"THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール","synonyms":["GoH","갓 오브 하이스쿨","Бог старшей школы"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":6},"status":"FINISHED"},{"index":3,"id":114236,"mal_id":40956,"title":"Enen no Shouboutai: Ni no Shou","english":"Fire Force Season 2","native":"炎炎ノ消防隊 弐ノ章","synonyms":["Enen no Shouboutai 2","หน่วยผจญคนไฟลุก ภาค 2"],"format":"TV","episodes":24,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":4},"status":"FINISHED"},{"index":4,"id":112301,"mal_id":40496,"title":"Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou","english":"The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants","native":"魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~","synonyms":["Maou Gakuin no Futekigousha","The Misfit of Demon King Academy","魔王学院の不適合者","ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน","魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~","Непригодный для Академии владыки тьмы"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":4},"status":"FINISHED"},{"index":5,"id":108489,"mal_id":39547,"title":"Yahari Ore no Seishun Love Come wa Machigatteiru. Kan","english":"My Teen Romantic Comedy SNAFU Climax!","native":"やはり俺の青春ラブコメはまちがっている。完","synonyms":["Oregairu 3","俺ガイル3","กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3","กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน","Oregairu Kan"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":10},"status":"FINISHED"},{"index":6,"id":103047,"mal_id":37987,"title":"Violet Evergarden Movie","english":"Violet Evergarden: the Movie","native":"劇場版 ヴァイオレット・エヴァーガーデン","synonyms":["Виолетта Эвергарден","Вайоллет Эвергарден","薇尔莉特·伊芙加登"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":9,"day":18},"status":"FINISHED"},{"index":7,"id":114308,"mal_id":40540,"title":"Sword Art Online: Alicization - War of Underworld Part 2","english":"Sword Art Online: Alicization - War of Underworld Part 2","native":"ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season)","synonyms":["Sword Art Online: Alicization - War of Underworld Last Season","SAOV","SAO5"],"format":"TV","episodes":11,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":12},"status":"FINISHED"},{"index":8,"id":115113,"mal_id":41226,"title":"Uzaki-chan wa Asobitai!","english":"Uzaki-chan Wants to Hang Out!","native":"宇崎ちゃんは遊びたい!","synonyms":["宇崎学妹想要玩!","รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":10},"status":"FINISHED"},{"index":9,"id":21719,"mal_id":33050,"title":"Fate/stay night [Heaven's Feel] III. spring song","english":"Fate/stay night [Heaven’s Feel] III. spring song","native":"Fate/stay night[Heaven's Feel] ⅠⅠⅠ.spring song","synonyms":["Fate/HF III","Судьба/Ночь схватки: Прикосновение небес 3"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":8,"day":15},"status":"FINISHED"},{"index":10,"id":110353,"mal_id":40056,"title":"Deca-Dence","english":"DECA-DENCE","native":"デカダンス","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":8},"status":"FINISHED"},{"index":11,"id":111734,"mal_id":40421,"title":"Given Movie","english":"Given The Movie","native":"映画 ギヴン","synonyms":[],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":8,"day":22},"status":"FINISHED"},{"index":12,"id":112788,"mal_id":40615,"title":"Umibe no Étranger","english":"The Stranger by the Shore","native":"海辺のエトランゼ","synonyms":["Seaside Stranger","Umibe no Etranger","L'Étranger de la plage","The Stranger by the Beach"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":9,"day":11},"status":"FINISHED"},{"index":13,"id":113286,"mal_id":40708,"title":"Monster Musume no Oisha-san","english":"Monster Girl Doctor","native":"モンスター娘のお医者さん","synonyms":["MonIsha","モン医者","รักษาหนูหน่อยคุณหมอมอนสเตอร์"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":12},"status":"FINISHED"},{"index":14,"id":111965,"mal_id":40436,"title":"Peter Grill to Kenja no Jikan","english":"Peter Grill and the Philosopher's Time","native":"ピーターグリルと賢者の時間","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":11},"status":"FINISHED"},{"index":15,"id":122349,"mal_id":42603,"title":"Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren","english":"My Hero Academia: Make It! Do-or-Die Survival Training","native":"僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練","synonyms":[],"format":"ONA","episodes":2,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":8,"day":16},"status":"FINISHED"},{"index":16,"id":112357,"mal_id":40515,"title":"Nihon Chinbotsu: 2020","english":"Japan Sinks: 2020","native":"日本沈没2020","synonyms":["2020: Japão Submerso","El Hundimiento de Japón: 2020","Japón se hunde: 2020"],"format":"ONA","episodes":10,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":9},"status":"FINISHED"},{"index":17,"id":112818,"mal_id":40623,"title":"Dokyuu Hentai HxEros","english":"SUPER HXEROS","native":"ド級編隊エグゼロス","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":4},"status":"FINISHED"},{"index":18,"id":114195,"mal_id":40936,"title":"Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set","english":"ORESUKI: Are you the only one who loves me?: Our Playball / Our End Run / Our Game","native":"俺を好きなのはお前だけかよ~俺たちのゲームセット~","synonyms":[],"format":"OVA","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":9,"day":2},"status":"FINISHED"},{"index":19,"id":119113,"mal_id":42091,"title":"Shingeki no Kyojin: Chronicle","english":"Attack on Titan ~Chronicle~","native":"進撃の巨人 〜クロニクル〜","synonyms":["ผ่าพิภพไททัน Chronicle"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":17},"status":"FINISHED"},{"index":20,"id":111852,"mal_id":40416,"title":"Date A Bullet: Dead or Bullet","english":"Date A Bullet: Dead or Bullet & Nightmare or Queen","native":"デート・ア・バレット デッド・オア・バレット","synonyms":["พิชิตรัก พิทักษ์โลก เดอะมูฟวี่ Date A Bullet","Рандеву с пулей: Смерть или пуля"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":8,"day":14},"status":"FINISHED"},{"index":21,"id":109125,"mal_id":39753,"title":"Omoi, Omoware, Furi, Furare","english":null,"native":"思い、思われ、ふり、ふられ","synonyms":["Love, Be Loved, Leave, Be Left","Love Me, Love Me Not","Любит — не любит"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":9,"day":18},"status":"FINISHED"},{"index":22,"id":110857,"mal_id":40215,"title":"Aggressive Retsuko Season 3","english":"Aggretsuko: Season 3","native":"アグレッシブ烈子 シーズン3","synonyms":[],"format":"ONA","episodes":10,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":8,"day":27},"status":"FINISHED"},{"index":23,"id":112803,"mal_id":40529,"title":"No Guns Life 2","english":"No Guns Life Season 2","native":"ノー・ガンズ・ライフ 2","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":10},"status":"FINISHED"},{"index":24,"id":110371,"mal_id":40075,"title":"Koi to Producer: EVOL×LOVE","english":"Mr Love: Queen's Choice","native":"恋とプロデューサー~EVOL×LOVE~","synonyms":["Love and Producer","恋与制作人","Lian Yu Zhizuoren"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"year":2020,"month":7,"day":16},"status":"FINISHED"}],"jikan":[{"index":0,"id":39587,"mal_id":39587,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season","english":"Re:ZERO -Starting Life in Another World- Season 2","native":"Re:ゼロから始める異世界生活 2","synonyms":["Re: Life in a different world from zero 2nd Season","ReZero 2nd Season","Re:Zero - Starting Life in Another World 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"day":8,"month":7,"year":2020},"status":"Finished Airing"},{"index":1,"id":40839,"mal_id":40839,"title":"Kanojo, Okarishimasu","english":"Rent-a-Girlfriend","native":"彼女、お借りします","synonyms":["I'd like to Borrow a Girlfriend","Kanokari"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":11,"month":7,"year":2020},"status":"Finished Airing"},{"index":2,"id":41353,"mal_id":41353,"title":"The God of High School","english":"The God of High School","native":"THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール","synonyms":["Gat Obeu Hai Seukul","갓 오브 하이스쿨","GOHS"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"day":6,"month":7,"year":2020},"status":"Finished Airing"},{"index":3,"id":40956,"mal_id":40956,"title":"Enen no Shouboutai: Ni no Shou","english":"Fire Force Season 2","native":"炎炎ノ消防隊 弐ノ章","synonyms":["Enen no Shouboutai 2nd Season","Fire Force 2nd Season"],"format":"TV","episodes":24,"season":"SUMMER","year":2020,"start_date":{"day":4,"month":7,"year":2020},"status":"Finished Airing"},{"index":4,"id":40496,"mal_id":40496,"title":"Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou","english":"The Misfit of Demon King Academy","native":"魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~","synonyms":["The Misfit of Demon King Academy: History's Strongest Demon King Reincarnates and Goes to School with His Descendants"],"format":"TV","episodes":13,"season":"SUMMER","year":2020,"start_date":{"day":4,"month":7,"year":2020},"status":"Finished Airing"},{"index":5,"id":39547,"mal_id":39547,"title":"Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan","english":"My Teen Romantic Comedy SNAFU Climax!","native":"やはり俺の青春ラブコメはまちがっている。完","synonyms":["Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season","My Teen Romantic Comedy SNAFU 3","Oregairu 3","My youth romantic comedy is wrong as I expected 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":10,"month":7,"year":2020},"status":"Finished Airing"},{"index":6,"id":40052,"mal_id":40052,"title":"Great Pretender","english":null,"native":"GREAT PRETENDER","synonyms":[],"format":"TV","episodes":23,"season":"SUMMER","year":2020,"start_date":{"day":9,"month":7,"year":2020},"status":"Finished Airing"},{"index":7,"id":37987,"mal_id":37987,"title":"Violet Evergarden Movie","english":"Violet Evergarden: The Movie","native":"劇場版 ヴァイオレット・エヴァーガーデン","synonyms":["Gekijouban Violet Evergarden"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":9,"year":2020},"status":"Finished Airing"},{"index":8,"id":40540,"mal_id":40540,"title":"Sword Art Online: Alicization - War of Underworld 2nd Season","english":"Sword Art Online: Alicization - War of Underworld Part 2","native":"ソードアート・オンライン アリシゼーション War of Underworld","synonyms":["Sword Art Online: Alicization 3rd Season","Sword Art Online III 3rd Season","SAO Alicization 3rd Season","Sword Art Online 3 3rd Season","SAO 3 3rd Season","SAO III 3rd Season","Sword Art Online: Alicization - War of Underworld - The Last Season"],"format":"TV","episodes":11,"season":"SUMMER","year":2020,"start_date":{"day":12,"month":7,"year":2020},"status":"Finished Airing"},{"index":9,"id":41226,"mal_id":41226,"title":"Uzaki-chan wa Asobitai!","english":"Uzaki-chan Wants to Hang Out!","native":"宇崎ちゃんは遊びたい!","synonyms":["Uzaki-chan Wants to Play!"],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":10,"month":7,"year":2020},"status":"Finished Airing"},{"index":10,"id":33050,"mal_id":33050,"title":"Fate/stay night Movie: Heaven's Feel - III. Spring Song","english":"Fate/stay night: Heaven's Feel - III. Spring Song","native":"劇場版「Fate/stay night [Heaven's Feel] III.spring song」","synonyms":["Fate/stay night Movie: Heaven's Feel 3"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":8,"year":2020},"status":"Finished Airing"},{"index":11,"id":40056,"mal_id":40056,"title":"Deca-Dence","english":null,"native":"デカダンス","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":8,"month":7,"year":2020},"status":"Finished Airing"},{"index":12,"id":40421,"mal_id":40421,"title":"Given Movie 1","english":"given The Movie","native":"映画 ギヴン","synonyms":["Eiga Given"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":8,"year":2020},"status":"Finished Airing"},{"index":13,"id":40708,"mal_id":40708,"title":"Monster Musume no Oishasan","english":"Monster Girl Doctor","native":"モンスター娘のお医者さん","synonyms":["The doctor for monster girls."],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":12,"month":7,"year":2020},"status":"Finished Airing"},{"index":14,"id":40436,"mal_id":40436,"title":"Peter Grill to Kenja no Jikan","english":"Peter Grill and the Philosopher's Time","native":"ピーター・グリルと賢者の時間","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":11,"month":7,"year":2020},"status":"Finished Airing"},{"index":15,"id":40615,"mal_id":40615,"title":"Umibe no Étranger","english":"The Stranger by the Shore","native":"海辺のエトランゼ","synonyms":["L'étranger du plage","L'étranger de la plage","The Stranger by the Beach","Umibe no Etranger"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":11,"month":9,"year":2020},"status":"Finished Airing"},{"index":16,"id":42603,"mal_id":42603,"title":"Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren","english":"My Hero Academia: Make It! Do-or-Die Survival Training","native":"僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練","synonyms":[],"format":"ONA","episodes":2,"season":null,"year":null,"start_date":{"day":16,"month":8,"year":2020},"status":"Finished Airing"},{"index":17,"id":40623,"mal_id":40623,"title":"Dokyuu Hentai HxEros","english":"SUPER HXEROS","native":"ド級編隊エグゼロス","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2020,"start_date":{"day":4,"month":7,"year":2020},"status":"Finished Airing"},{"index":18,"id":40515,"mal_id":40515,"title":"Nihon Chinbotsu 2020","english":"Japan Sinks: 2020","native":"日本沈没2020","synonyms":[],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":9,"month":7,"year":2020},"status":"Finished Airing"},{"index":19,"id":40936,"mal_id":40936,"title":"Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set","english":"ORESUKI Are you the only one who loves me? - Our Playball / Our End Run / Our Game","native":"俺を好きなのはお前だけかよ ~俺たちのゲームセット~","synonyms":["Ore wo Suki nano wa Omae dake ka yo Kanketsu-hen","Ore wo Suki nano wa Omae dake ka yo Episode 13","Oresuki OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":9,"year":2020},"status":"Finished Airing"},{"index":20,"id":37932,"mal_id":37932,"title":"Quanzhi Gaoshou 2","english":"The King's Avatar 2","native":"全职高手2","synonyms":["Quan Zhi Gao Shou 2nd Season","Full-Time Expert 2nd Season","Master of Skills 2nd Season","マスターオブスキル 2期"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":25,"month":9,"year":2020},"status":"Finished Airing"},{"index":21,"id":40416,"mal_id":40416,"title":"Date A Bullet: Dead or Bullet","english":null,"native":"デート・ア・バレット デッド・オア・バレット","synonyms":["Date A Live Fragment: Date A Bullet"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":14,"month":8,"year":2020},"status":"Finished Airing"},{"index":22,"id":42091,"mal_id":42091,"title":"Shingeki no Kyojin: Chronicle","english":"Attack on Titan: Chronicle","native":"進撃の巨人 〜クロニクル〜","synonyms":["Attack on Titan: Chronicle"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":7,"year":2020},"status":"Finished Airing"},{"index":23,"id":40215,"mal_id":40215,"title":"Aggressive Retsuko (ONA) 3rd Season","english":"Aggretsuko (ONA) 3rd Season","native":"アグレッシブ烈子第3期","synonyms":["Aggretsuko 3rd Season"],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":27,"month":8,"year":2020},"status":"Finished Airing"},{"index":24,"id":39753,"mal_id":39753,"title":"Omoi, Omoware, Furi, Furare","english":"Love Me, Love Me Not","native":"思い、思われ、ふり、ふられ","synonyms":["Love","Be Loved","Leave","Be Left","Furifura"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":9,"year":2020},"status":"Finished Airing"}]},{"year":2022,"season":"summer","anilist":[{"index":0,"id":120377,"mal_id":42310,"title":"Cyberpunk: Edgerunners","english":"Cyberpunk: Edgerunners","native":"サイバーパンク エッジランナーズ","synonyms":["Cyberpunk: Mercenários","電馭叛客:邊緣行者","CYBERPUNK: อาชญากรแดนเถื่อน","Киберпанк: Бегущие по краю"],"format":"ONA","episodes":10,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":9,"day":13},"status":"FINISHED"},{"index":1,"id":141391,"mal_id":50346,"title":"Yofukashi no Uta","english":"Call of the Night","native":"よふかしのうた","synonyms":["Song of the Night Walkers","Night Owl Song","เพลงรักมนุษย์ค้างคาว","نداء الليل","Zew nocy","Il richiamo della notte","Поклик ночі","Песнь ночных сов","El canto de la noche","Canções da Noite"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":8},"status":"FINISHED"},{"index":2,"id":145545,"mal_id":51096,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season","english":"Classroom of the Elite Season 2","native":"ようこそ実力至上主義の教室へ 2nd Season","synonyms":["You-Zitsu 2","Youjitsu 2","ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2","Cote 2","Добро пожаловать в класс для особо одарённых 2","歡迎來到實力至上主義的教室 第二季","فصل النخبة الموسم الثاني"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":4},"status":"FINISHED"},{"index":3,"id":143270,"mal_id":50709,"title":"Lycoris Recoil","english":"Lycoris Recoil","native":"リコリス・リコイル","synonyms":["ไลโคริส รีคอยล์","LycoReco","Ликорис Рекойл","莉可麗絲"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":2},"status":"FINISHED"},{"index":4,"id":133844,"mal_id":48895,"title":"Overlord IV","english":"Overlord IV","native":"オーバーロードⅣ","synonyms":["Overlord 4","โอเวอร์ลอร์ด ภาค 4","โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":5},"status":"FINISHED"},{"index":5,"id":130592,"mal_id":48413,"title":"Hataraku Maou-sama!!","english":"The Devil is a Part-Timer! Season 2","native":"はたらく魔王さま!!","synonyms":["ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2","Hataraku Maou-sama! 2","The Devil is a Part-Timer!!","Hataraku Maou-sama 2nd Season","打工吧!魔王大人 第二季","Raja Iblis Nyambi! Musim Kedua"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":14},"status":"FINISHED"},{"index":6,"id":114745,"mal_id":41084,"title":"Made in Abyss: Retsujitsu no Ougonkyou","english":"Made in Abyss: The Golden City of the Scorching Sun","native":"メイドインアビス 烈日の黄金郷","synonyms":["Made in Abyss Season 2","ผ่าเหวนรก ภาค 2","นักบุกเบิกหลุมยักษ์ ภาค 2","صنع في الهاوية 2","ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า","Đến từ Vực Thẳm Mùa 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":6},"status":"FINISHED"},{"index":7,"id":124410,"mal_id":42963,"title":"Kanojo, Okarishimasu 2nd Season","english":"Rent-a-Girlfriend Season 2","native":"彼女、お借りします 第2期","synonyms":["KanoKari 2","สะดุดรักยัยแฟนเช่า ภาค 2","Pacar Sewaan 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":2},"status":"FINISHED"},{"index":8,"id":135806,"mal_id":49220,"title":"Isekai Oji-san","english":"Uncle from Another World","native":"異世界おじさん","synonyms":["Ojisan in Another World","ยอดคุณน้าจากต่างโลก","Mi tío es de otro mundo","Coma héroïque dans un autre monde","O Tio de Outro Mundo","דוד מעולם אחר","Θείος Από Άλλο Κόσμο","Дядько з іншого світу","Дядя из другого мира"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":6},"status":"FINISHED"},{"index":9,"id":129196,"mal_id":47164,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? IV","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇","synonyms":["มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4","Danmachi IV","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season","Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4","Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung","ダンまちⅣ"],"format":"TV","episodes":11,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":21},"status":"FINISHED"},{"index":10,"id":146722,"mal_id":51367,"title":"JoJo no Kimyou na Bouken: Stone Ocean Part 2","english":"JoJo's Bizarre Adventure: STONE OCEAN Part 2","native":"ジョジョの奇妙な冒険 ストーンオーシャン 2クール","synonyms":["JoJo's Bizarre Adventure Part 6 (Part 2)","JoJo no Kimyou na Bouken Part 6 (Part 2)","JoJo's Bizarre Adventure: STONE OCEAN The Final Episodes"],"format":"ONA","episodes":26,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":9,"day":1},"status":"FINISHED"},{"index":11,"id":142876,"mal_id":50612,"title":"Dr. STONE: Ryuusui","english":"Dr. STONE Special Episode – RYUSUI","native":"Dr.STONE 龍水","synonyms":["Dr. STONE: Ryusui","Доктор Стоун: Рюсуй"],"format":"SPECIAL","episodes":1,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":10},"status":"FINISHED"},{"index":12,"id":146210,"mal_id":51213,"title":"Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu","english":"Vermeil in Gold","native":"金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~","synonyms":["Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity","เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์","Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":5},"status":"FINISHED"},{"index":13,"id":136934,"mal_id":49470,"title":"Mamahaha no Tsurego ga Motokano datta","english":"My Stepmom's Daughter is My Ex","native":"継母の連れ子が元カノだった","synonyms":["Motokano","Tsurekano","My Stepsister is My Ex-Girlfriend","เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่","Step-Exes","繼母的拖油瓶是我的前女友"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":6},"status":"FINISHED"},{"index":14,"id":142769,"mal_id":50593,"title":"Natsu e no Tunnel, Sayonara no Deguchi","english":"The Tunnel to Summer, the Exit of Goodbyes","native":"夏へのトンネル、さよならの出口","synonyms":["คำจากลาของคิมหันต์ ณ ปลายอุโมงค์","Natsuton","El túnel de los deseos"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":9,"day":9},"status":"FINISHED"},{"index":15,"id":145260,"mal_id":51064,"title":"Kuro no Shoukanshi","english":"Black Summoner","native":"黒の召喚士","synonyms":["นักอัญเชิญทมิฬ","黑之召喚士"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":9},"status":"FINISHED"},{"index":16,"id":146625,"mal_id":51417,"title":"Engage Kiss","english":"Engage Kiss","native":"Engage Kiss","synonyms":["エンゲージ・キス","Project Engage","Клятвенный поцелуй"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":3},"status":"FINISHED"},{"index":17,"id":138882,"mal_id":49776,"title":"Kumichou Musume to Sewagakari","english":"The Yakuza's Guide to Babysitting","native":"組長娘と世話係","synonyms":["Con Gái Ông Trùm Và Người Giám Hộ","組長女兒與保姆"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":7},"status":"FINISHED"},{"index":18,"id":136707,"mal_id":49438,"title":"Isekai Yakkyoku","english":"Parallel World Pharmacy","native":"異世界薬局","synonyms":["เภสัชกรเทพสองโลก","奇幻世界药局"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":10},"status":"FINISHED"},{"index":19,"id":129192,"mal_id":47163,"title":"Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita","english":"My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!","native":"転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~","synonyms":["เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":4},"status":"FINISHED"},{"index":20,"id":127090,"mal_id":44524,"title":"Isekai Meikyuu de Harem wo","english":"Harem in the Labyrinth of Another World","native":"異世界迷宮でハーレムを","synonyms":["ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก","Harem in the fantasy world dungeon"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":6},"status":"FINISHED"},{"index":21,"id":141902,"mal_id":50410,"title":"ONE PIECE FILM: RED","english":"One Piece Film: Red","native":"ONE PIECE FILM RED","synonyms":["One Piece Film 15","فيلم ون بيس: ريد","วันพีซ ฟิล์ม เรด"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":8,"day":6},"status":"FINISHED"},{"index":22,"id":128223,"mal_id":45653,"title":"Soredemo Ayumu wa Yosetekuru","english":"When Will Ayumu Make His Move?","native":"それでも歩は寄せてくる","synonyms":["Shogi Senpai","Even so, Ayumu draws closer to the endgame"," ขอรุกเข้าไปใกล้ๆ ใจเธอ","À quoi tu joues, Ayumu ?!"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":8},"status":"FINISHED"},{"index":23,"id":141351,"mal_id":50339,"title":"Kakegurui Twin","english":"Kakegurui Twin","native":"賭ケグルイ双","synonyms":["โคตรเซียนโรงเรียนพนัน ภาค Twin","Compulsive Gambler Twin","Шалений азарт. Затятий двійник","Двойной азарт"],"format":"ONA","episodes":6,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":8,"day":4},"status":"FINISHED"},{"index":24,"id":149326,"mal_id":51837,"title":"Saikin Yatotta Maid ga Ayashii","english":"The Maid I Hired Recently is Mysterious","native":"最近雇ったメイドが怪しい","synonyms":["Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ","เมดคนนี้มีพิรุธ","新來的女傭有點怪"],"format":"TV","episodes":11,"season":"SUMMER","year":2022,"start_date":{"year":2022,"month":7,"day":24},"status":"FINISHED"}],"jikan":[{"index":0,"id":42310,"mal_id":42310,"title":"Cyberpunk: Edgerunners","english":null,"native":"サイバーパンク エッジランナーズ","synonyms":[],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":13,"month":9,"year":2022},"status":"Finished Airing"},{"index":1,"id":51096,"mal_id":51096,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season","english":"Classroom of the Elite II","native":"ようこそ実力至上主義の教室へ 2nd Season","synonyms":["Classroom of the Elite 2nd Season","You-jitsu 2nd Season","You-zitsu 2nd Season"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":4,"month":7,"year":2022},"status":"Finished Airing"},{"index":2,"id":50346,"mal_id":50346,"title":"Yofukashi no Uta","english":"Call of the Night","native":"よふかしのうた","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":8,"month":7,"year":2022},"status":"Finished Airing"},{"index":3,"id":48895,"mal_id":48895,"title":"Overlord IV","english":"Overlord IV","native":"オーバーロード IV","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":5,"month":7,"year":2022},"status":"Finished Airing"},{"index":4,"id":50709,"mal_id":50709,"title":"Lycoris Recoil","english":"Lycoris Recoil","native":"リコリス・リコイル","synonyms":["LycoReco"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":2,"month":7,"year":2022},"status":"Finished Airing"},{"index":5,"id":41084,"mal_id":41084,"title":"Made in Abyss: Retsujitsu no Ougonkyou","english":"Made in Abyss: The Golden City of the Scorching Sun","native":"メイドインアビス 烈日の黄金郷","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":6,"month":7,"year":2022},"status":"Finished Airing"},{"index":6,"id":48413,"mal_id":48413,"title":"Hataraku Maou-sama!!","english":"The Devil is a Part-Timer! Season 2","native":"はたらく魔王さま!!","synonyms":["The Devil is a Part-Timer! 2nd Season","The Devil is a Part-Timer!!","Hataraku Maou-sama 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":14,"month":7,"year":2022},"status":"Finished Airing"},{"index":7,"id":42963,"mal_id":42963,"title":"Kanojo, Okarishimasu 2nd Season","english":"Rent-a-Girlfriend Season 2","native":"彼女、お借りします","synonyms":["Kanokari"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":2,"month":7,"year":2022},"status":"Finished Airing"},{"index":8,"id":49220,"mal_id":49220,"title":"Isekai Ojisan","english":"Uncle from Another World","native":"異世界おじさん","synonyms":["Isekai Uncle","Ojisan in Another World"],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":6,"month":7,"year":2022},"status":"Finished Airing"},{"index":9,"id":47164,"mal_id":47164,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? IV","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇","synonyms":["DanMachi 4th Season","Is It Wrong That I Want to Meet You in a Dungeon 4th Season"],"format":"TV","episodes":11,"season":"SUMMER","year":2022,"start_date":{"day":23,"month":7,"year":2022},"status":"Finished Airing"},{"index":10,"id":50612,"mal_id":50612,"title":"Dr. Stone: Ryuusui","english":"Dr. Stone: Ryusui","native":"Dr.STONE 龍水","synonyms":[],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":10,"month":7,"year":2022},"status":"Finished Airing"},{"index":11,"id":51367,"mal_id":51367,"title":"JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2","english":"JoJo's Bizarre Adventure: Stone Ocean Part 2","native":"ジョジョの奇妙な冒険 ストーンオーシャン","synonyms":[],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":1,"month":9,"year":2022},"status":"Finished Airing"},{"index":12,"id":49470,"mal_id":49470,"title":"Mamahaha no Tsurego ga Motokano datta","english":"My Stepmom's Daughter Is My Ex","native":"継母の連れ子が元カノだった","synonyms":["My Stepsister is My Ex-Girlfriend","Tsurekano"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":6,"month":7,"year":2022},"status":"Finished Airing"},{"index":13,"id":51213,"mal_id":51213,"title":"Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu","english":"Vermeil in Gold","native":"金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":5,"month":7,"year":2022},"status":"Finished Airing"},{"index":14,"id":44524,"mal_id":44524,"title":"Isekai Meikyuu de Harem wo","english":"Harem in the Labyrinth of Another World","native":"異世界迷宮でハーレムを","synonyms":["A Harem in a Fantasy World Labyrinth"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":6,"month":7,"year":2022},"status":"Finished Airing"},{"index":15,"id":51064,"mal_id":51064,"title":"Kuro no Shoukanshi","english":"Black Summoner","native":"黒の召喚士","synonyms":["The Berserker Rises to Greatness."],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":9,"month":7,"year":2022},"status":"Finished Airing"},{"index":16,"id":51417,"mal_id":51417,"title":"Engage Kiss","english":"Engage Kiss","native":"Engage Kiss","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2022,"start_date":{"day":3,"month":7,"year":2022},"status":"Finished Airing"},{"index":17,"id":49438,"mal_id":49438,"title":"Isekai Yakkyoku","english":"Parallel World Pharmacy","native":"異世界薬局","synonyms":["Alternate World Pharmacy"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":10,"month":7,"year":2022},"status":"Finished Airing"},{"index":18,"id":49776,"mal_id":49776,"title":"Kumichou Musume to Sewagakari","english":"The Yakuza's Guide to Babysitting","native":"組長娘と世話係","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":7,"month":7,"year":2022},"status":"Finished Airing"},{"index":19,"id":50593,"mal_id":50593,"title":"Natsu e no Tunnel, Sayonara no Deguchi","english":"The Tunnel to Summer, the Exit of Goodbyes","native":"夏へのトンネル, さよならの出口","synonyms":["Natsuton"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":9,"year":2022},"status":"Finished Airing"},{"index":20,"id":47163,"mal_id":47163,"title":"Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita","english":"My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World","native":"転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~","synonyms":["Tensei Kenjya no Isekai Life"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":4,"month":7,"year":2022},"status":"Finished Airing"},{"index":21,"id":50410,"mal_id":50410,"title":"One Piece Film: Red","english":"One Piece Film: Red","native":"ONE PIECE FILM RED","synonyms":["One Piece Movie 15"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":8,"year":2022},"status":"Finished Airing"},{"index":22,"id":45653,"mal_id":45653,"title":"Soredemo Ayumu wa Yosetekuru","english":"When Will Ayumu Make His Move?","native":"それでも歩は寄せてくる","synonyms":["Even so","Ayumu draws closer to the endgame","Even So","Ayumu Approaches","Soreayu"],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":8,"month":7,"year":2022},"status":"Finished Airing"},{"index":23,"id":51837,"mal_id":51837,"title":"Saikin Yatotta Maid ga Ayashii","english":"The Maid I Hired Recently Is Mysterious","native":"最近雇ったメイドが怪しい","synonyms":["My Recently Hired Maid is Suspicious"],"format":"TV","episodes":11,"season":"SUMMER","year":2022,"start_date":{"day":24,"month":7,"year":2022},"status":"Finished Airing"},{"index":24,"id":49782,"mal_id":49782,"title":"Shadows House 2nd Season","english":"Shadows House 2nd Season","native":"シャドーハウス 2nd Season","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2022,"start_date":{"day":9,"month":7,"year":2022},"status":"Finished Airing"}]},{"year":2024,"season":"summer","anilist":[{"index":0,"id":162804,"mal_id":54744,"title":"Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san","english":"Alya Sometimes Hides Her Feelings in Russian","native":"時々ボソッとロシア語でデレる隣のアーリャさん","synonyms":["Roshidere","ロシデレ","คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ","Иногда Аля внезапно кокетничает по-русски"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":3},"status":"FINISHED"},{"index":1,"id":166531,"mal_id":55791,"title":"[Oshi no Ko] 2nd Season","english":"Oshi no Ko Season 2","native":"【推しの子】第2期","synonyms":["我推的孩子"],"format":"TV","episodes":13,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":3},"status":"FINISHED"},{"index":2,"id":174576,"mal_id":58059,"title":"Tsue to Tsurugi no Wistoria","english":"Wistoria: Wand and Sword","native":"杖と剣のウィストリア","synonyms":["杖與劍的魔劍譚","ตำนานดาบและคทาแห่งวิสตอเรีย"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":7},"status":"FINISHED"},{"index":3,"id":171457,"mal_id":57524,"title":"Make Heroine ga Oosugiru!","english":"Makeine: Too Many Losing Heroines!","native":"負けヒロインが多すぎる!","synonyms":["Toooooo Many Losing Heroines","マケイン","รักครั้งนี้มีคนนกเยอะไปมั้ย!","Makeine","敗北女角太多了!"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":14},"status":"FINISHED"},{"index":4,"id":153406,"mal_id":52635,"title":"Kami no Tou: Tower of God 2nd Season","english":"Tower of God Season 2","native":"神之塔 -Tower of God- 第2期","synonyms":["タワーオブ・ゴッド 2","Sinui Tap 2","TOG 2","신의 탑 2","Tower of God Season 2: Return of the Prince","神之塔 -Tower of God- 王子の帰還","Kami no Tou: Tower of God - Ouji no Kikan","神之塔 -Tower of God- 工房戦","Kami no Tou: Tower of God - Koubou-sen","Tower of God Season 2: Workshop Battle"],"format":"TV","episodes":26,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":7},"status":"FINISHED"},{"index":5,"id":175977,"mal_id":58426,"title":"Shikanoko Nokonoko Koshitantan","english":"My Deer Friend Nokotan","native":"しかのこのこのここしたんたん","synonyms":["Minha Amiga Nokotan é um Cervo","Mi Amiga Nokotan es un Ciervo","鹿乃子乃子虎视眈眈","Nokotan in Cerva di Amici","Моя подруга-олениха Нокотан","Shikanoko i dziwne zdarzenia w klubie jelenia"],"format":"ONA","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":3},"status":"FINISHED"},{"index":6,"id":152137,"mal_id":52367,"title":"Isekai Shikkaku","english":"No Longer Allowed in Another World","native":"異世界失格","synonyms":["No Longer Human…In Another World","Disqualified from Another World"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":9},"status":"FINISHED"},{"index":7,"id":173694,"mal_id":57892,"title":"Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made","english":"Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells","native":"ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで","synonyms":["Hazurewaku","Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":5},"status":"FINISHED"},{"index":8,"id":163623,"mal_id":54968,"title":"Giji Harem","english":"Pseudo Harem","native":"疑似ハーレム","synonyms":["ฮาเร็มนี้มีแต่เธอ"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":5},"status":"FINISHED"},{"index":9,"id":162896,"mal_id":54724,"title":"Nige Jouzu no Wakagimi","english":"The Elusive Samurai","native":"逃げ上手の若君","synonyms":["Nigewaka","นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ","Héroe fugitivo","Беглый самурай"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":6},"status":"FINISHED"},{"index":10,"id":170695,"mal_id":57058,"title":"Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai","english":"I Parry Everything","native":"俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~","synonyms":["I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!","I Parry Everything to Become the Greatest Adventure!"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":5},"status":"FINISHED"},{"index":11,"id":152681,"mal_id":52481,"title":"Gimai Seikatsu","english":"Days with My Stepsister","native":"義妹生活","synonyms":["แง้มหัวใจยัยน้องสาวจำเป็น"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":4},"status":"FINISHED"},{"index":12,"id":163292,"mal_id":54913,"title":"Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.","english":"The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible","native":"新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":2},"status":"FINISHED"},{"index":13,"id":133845,"mal_id":48896,"title":"Overlord: Sei Oukoku-hen","english":"OVERLORD: The Sacred Kingdom","native":"オーバーロード 聖王国編","synonyms":["Overlord Movie 3","Overlord: Holy Kingdom Arc","โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์","Overlord: The Paladin of the Sacred Kingdom Arc","Overlord: O Reino Sagrado","Overlord: El Reino Sagrado"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":9,"day":20},"status":"FINISHED"},{"index":14,"id":166710,"mal_id":55848,"title":"Isekai Suicide Squad","english":"Suicide Squad ISEKAI","native":"異世界スーサイド・スクワッド","synonyms":["Legion samobójców: Isekai","異世界自殺突擊隊"," Esquadrão Suicida: Isekai\t","Az Öngyilkos osztag: Iszekai"],"format":"TV","episodes":10,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":6,"day":27},"status":"FINISHED"},{"index":15,"id":158559,"mal_id":53802,"title":"2.5 Jigen no Ririsa","english":"2.5 Dimensional Seduction","native":"2.5次元の誘惑","synonyms":["2.5 Jigen no Yuuwaku","2.5 มิติ ริริสะ","Ririsa of 2.5 Dimension","にごリリ","Nigoriri","Ririsa, uma Garota em 2.5D","Ririsa, una chica en 2.5D","2.5 Seducción Dimensional"],"format":"TV","episodes":24,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":5},"status":"FINISHED"},{"index":16,"id":173295,"mal_id":57810,"title":"Shoushimin Series","english":"SHOSHIMIN: How to Become Ordinary","native":"小市民シリーズ","synonyms":["小市民系列"],"format":"TV","episodes":10,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":7},"status":"FINISHED"},{"index":17,"id":139095,"mal_id":49785,"title":"FAIRY TAIL: 100 YEARS QUEST","english":"FAIRY TAIL 100 YEARS QUEST","native":"FAIRY TAIL 100 YEARS QUEST","synonyms":["フェアリーテイル","FAIRY TAIL 100年クエスト","FAIRY TAIL: 100-nen Quest"],"format":"TV","episodes":25,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":7},"status":"FINISHED"},{"index":18,"id":167419,"mal_id":56062,"title":"Naze Boku no Sekai wo Daremo Oboeteinai no ka?","english":"Why Does Nobody Remember Me in This World?","native":"なぜ僕の世界を誰も覚えていないのか?","synonyms":["Why nobody remembers my world?","Nazeboku"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":13},"status":"FINISHED"},{"index":19,"id":173584,"mal_id":57876,"title":"Maou Gun Saikyou no Majutsushi wa Ningen datta","english":"The Strongest Magician in the Demon Lord's Army was a Human","native":"魔王軍最強の魔術師は人間だった","synonyms":["Maou-gun Saikyou no Majutsushi wa Ningen datta"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":6,"day":26},"status":"FINISHED"},{"index":20,"id":168872,"mal_id":56538,"title":"Kimi ni Todoke 3RD SEASON","english":"Kimi ni Todoke: From Me to You Season 3","native":"君に届け 3RD SEASON","synonyms":["ฝากใจไปถึงเธอ ซีซั่น 3"],"format":"ONA","episodes":5,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":8,"day":1},"status":"FINISHED"},{"index":21,"id":139825,"mal_id":49981,"title":"Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II","english":"Our Last Crusade or the Rise of a New World Season 2","native":"キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II","synonyms":["Kimisen 2","キミ戦 2","Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":10},"status":"FINISHED"},{"index":22,"id":168013,"mal_id":56196,"title":"Boku no Hero Academia THE MOVIE: YOU'RE NEXT","english":"My Hero Academia: You’re Next","native":"僕のヒーローアカデミア THE MOVIE: ユア ネクスト","synonyms":["My Hero Academia the Movie 4","My Hero Academia: Agora é a Sua Vez"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":8,"day":2},"status":"FINISHED"},{"index":23,"id":173533,"mal_id":57864,"title":"Monogatari Series: Off & Monster Season","english":"MONOGATARI Series: OFF & MONSTER Season","native":"〈物語〉シリーズ オフ&モンスターシーズン","synonyms":["Orokamonogatari","Nademonogatari","Wazamonogatari","Shinobumonogatari"],"format":"ONA","episodes":14,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":6},"status":"FINISHED"},{"index":24,"id":170938,"mal_id":57217,"title":"Katsute Mahou Shoujo to Aku wa Tekitai Shite Ita.","english":"The Magical Girl and the Evil Lieutenant Used to Be Archenemies","native":"かつて魔法少女と悪は敵対していた。","synonyms":["MahoAku","まほあく","Волшебница и злой офицер"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2024,"start_date":{"year":2024,"month":7,"day":9},"status":"FINISHED"}],"jikan":[{"index":0,"id":55791,"mal_id":55791,"title":"[Oshi no Ko] 2nd Season","english":"[Oshi No Ko] Season 2","native":"【推しの子】第2期","synonyms":["My Star Season 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2024,"start_date":{"day":3,"month":7,"year":2024},"status":"Finished Airing"},{"index":1,"id":54744,"mal_id":54744,"title":"Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san","english":"Alya Sometimes Hides Her Feelings in Russian","native":"時々ボソッとロシア語でデレる隣のアーリャさん","synonyms":["Roshidere","Alya-san","who sits besides me and sometimes murmurs affectionately in Russian.","Arya Next Door Sometimes Lapses into Russian"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":3,"month":7,"year":2024},"status":"Finished Airing"},{"index":2,"id":58059,"mal_id":58059,"title":"Tsue to Tsurugi no Wistoria","english":"Wistoria: Wand and Sword","native":"杖と剣のウィストリア","synonyms":["Wistoria's Wand and Sword"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":7,"month":7,"year":2024},"status":"Finished Airing"},{"index":3,"id":57524,"mal_id":57524,"title":"Make Heroine ga Oosugiru!","english":"Makeine: Too Many Losing Heroines!","native":"負けヒロインが多すぎる!","synonyms":["Makeine"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":14,"month":7,"year":2024},"status":"Finished Airing"},{"index":4,"id":52635,"mal_id":52635,"title":"Kami no Tou: Ouji no Kikan","english":"Tower of God Season 2: Return of the Prince","native":"神之塔 -Tower of God- 王子の帰還","synonyms":["Sin-ui Tap","신의 탑","Tower of God: Return of the Prince","Kami no Tou 2nd Season"],"format":"TV","episodes":13,"season":"SUMMER","year":2024,"start_date":{"day":7,"month":7,"year":2024},"status":"Finished Airing"},{"index":5,"id":58426,"mal_id":58426,"title":"Shikanoko Nokonoko Koshitantan","english":"My Deer Friend Nokotan","native":"しかのこのこのここしたんたん","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":7,"month":7,"year":2024},"status":"Finished Airing"},{"index":6,"id":52367,"mal_id":52367,"title":"Isekai Shikkaku","english":"No Longer Allowed in Another World","native":"異世界失格","synonyms":["No Longer Human...In Another World"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":9,"month":7,"year":2024},"status":"Finished Airing"},{"index":7,"id":57892,"mal_id":57892,"title":"Hazurewaku no \"Joutai Ijou Skill\" de Saikyou ni Natta Ore ga Subete wo Juurin suru made","english":"Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells","native":"ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで","synonyms":["I became the strongest with the failure frame \"Abnormal State Skill\" as I devastated everything","Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":5,"month":7,"year":2024},"status":"Finished Airing"},{"index":8,"id":54968,"mal_id":54968,"title":"Giji Harem","english":"Pseudo Harem","native":"疑似ハーレム","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":5,"month":7,"year":2024},"status":"Finished Airing"},{"index":9,"id":57058,"mal_id":57058,"title":"Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai","english":"I Parry Everything","native":"俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~","synonyms":["I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer","I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":5,"month":7,"year":2024},"status":"Finished Airing"},{"index":10,"id":52481,"mal_id":52481,"title":"Gimai Seikatsu","english":"Days with My Stepsister","native":"義妹生活","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":4,"month":7,"year":2024},"status":"Finished Airing"},{"index":11,"id":54913,"mal_id":54913,"title":"Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru.","english":"The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible","native":"新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。","synonyms":["The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":2,"month":7,"year":2024},"status":"Finished Airing"},{"index":12,"id":54724,"mal_id":54724,"title":"Nige Jouzu no Wakagimi","english":"The Elusive Samurai","native":"逃げ上手の若君","synonyms":["Nigewaka"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":6,"month":7,"year":2024},"status":"Finished Airing"},{"index":13,"id":49785,"mal_id":49785,"title":"Fairy Tail: 100-nen Quest","english":"Fairy Tail: 100 Years Quest","native":"FAIRY TAIL 100年クエスト","synonyms":[],"format":"TV","episodes":25,"season":"SUMMER","year":2024,"start_date":{"day":7,"month":7,"year":2024},"status":"Finished Airing"},{"index":14,"id":53802,"mal_id":53802,"title":"2.5-jigen no Ririsa","english":"2.5 Dimensional Seduction","native":"2.5次元の誘惑","synonyms":["Nigoriri","2.5-jigen no Yuuwaku","Ririsa of 2.5 Dimension"],"format":"TV","episodes":24,"season":"SUMMER","year":2024,"start_date":{"day":5,"month":7,"year":2024},"status":"Finished Airing"},{"index":15,"id":55848,"mal_id":55848,"title":"Isekai Suicide Squad","english":"Suicide Squad Isekai","native":"異世界スーサイド・スクワッド","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2024,"start_date":{"day":6,"month":7,"year":2024},"status":"Finished Airing"},{"index":16,"id":57876,"mal_id":57876,"title":"Maougun Saikyou no Majutsushi wa Ningen datta","english":"The Strongest Magician in the Demon Lord's Army Was a Human","native":"魔王軍最強の魔術師は人間だった","synonyms":["The Maou Army's Strongest Magician Was a Human"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":3,"month":7,"year":2024},"status":"Finished Airing"},{"index":17,"id":57810,"mal_id":57810,"title":"Shoushimin Series","english":"Shoshimin: How to Become Ordinary","native":"小市民シリーズ","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2024,"start_date":{"day":7,"month":7,"year":2024},"status":"Finished Airing"},{"index":18,"id":56062,"mal_id":56062,"title":"Naze Boku no Sekai wo Daremo Oboeteinai no ka?","english":"Why Does Nobody Remember Me in This World?","native":"なぜ僕の世界を誰も覚えていないのか?","synonyms":["Why Nobody Remembers My World?","NazeBoku"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":13,"month":7,"year":2024},"status":"Finished Airing"},{"index":19,"id":48896,"mal_id":48896,"title":"Overlord Movie 3: Sei Oukoku-hen","english":"Overlord: The Sacred Kingdom","native":"劇場版「オーバーロード」聖王国編","synonyms":["Gekijouban Overlord: Sei Oukoku-hen"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":9,"year":2024},"status":"Finished Airing"},{"index":20,"id":56538,"mal_id":56538,"title":"Kimi ni Todoke 3rd Season","english":"Kimi ni Todoke: From Me to You Season 3","native":"君に届け3RD SEASON","synonyms":[],"format":"ONA","episodes":5,"season":null,"year":null,"start_date":{"day":1,"month":8,"year":2024},"status":"Finished Airing"},{"index":21,"id":49981,"mal_id":49981,"title":"Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II","english":"Our Last Crusade or the Rise of a New World Season 2","native":"キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ","synonyms":["Our Last Crusade or the Rise of a New World 2nd Season","The Last Battlefield Between You and I","or Perhaps the Beginning of the World's Holy War 2nd Season","Kimisen"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":10,"month":7,"year":2024},"status":"Finished Airing"},{"index":22,"id":56063,"mal_id":56063,"title":"NieR:Automata Ver1.1a Part 2","english":"NieR:Automata Ver1.1a (Cour 2)","native":"NieR:Automata Ver1.1a 第2クール","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":5,"month":7,"year":2024},"status":"Finished Airing"},{"index":23,"id":57217,"mal_id":57217,"title":"Katsute Mahou Shoujo to Aku wa Tekitai shiteita.","english":"The Magical Girl and the Evil Lieutenant Used to Be Archenemies","native":"かつて魔法少女と悪は敵対していた。","synonyms":["Mahoaku","The Former Magical Girl & Evil Enemy","The Magical Girl and Evil Officer","Beauty and the Beast"],"format":"TV","episodes":12,"season":"SUMMER","year":2024,"start_date":{"day":9,"month":7,"year":2024},"status":"Finished Airing"},{"index":24,"id":57864,"mal_id":57864,"title":"Monogatari Series: Off & Monster Season","english":"Monogatari Series: Off & Monster Season","native":"〈物語〉シリーズ オフ&モンスターシーズン","synonyms":["Orokamonogatari","Wazamonogatari","Nademonogatari","Shinobumonogatari"],"format":"ONA","episodes":14,"season":null,"year":null,"start_date":{"day":6,"month":7,"year":2024},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-03.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-03.json new file mode 100644 index 0000000..f4b1633 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-03.json @@ -0,0 +1 @@ +{"shard":3,"seasons":[{"year":2010,"season":"winter","anilist":[{"index":0,"id":6746,"mal_id":6746,"title":"Durarara!!","english":"Durarara!!","native":"デュラララ!!","synonyms":["DRRR!!","דורארארה!!"],"format":"TV","episodes":24,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":8},"status":"FINISHED"},{"index":1,"id":7311,"mal_id":7311,"title":"Suzumiya Haruhi no Shoushitsu","english":"The Disappearance of Haruhi Suzumiya","native":"涼宮ハルヒの消失","synonyms":["스즈미야 하루히의 소실","La Disparition de Haruhi Suzumiya","La Scomparsa di Haruhi Suzumiya","Исчезновение Харухи Судзумии "],"format":"MOVIE","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":2,"day":6},"status":"FINISHED"},{"index":2,"id":6594,"mal_id":6594,"title":"Katanagatari","english":"Katanagatari","native":"刀語","synonyms":["Sword Story"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":26},"status":"FINISHED"},{"index":3,"id":6347,"mal_id":6347,"title":"Baka to Test to Shoukanjuu","english":"Baka and Test - Summon the Beasts","native":"バカとテストと召喚獣","synonyms":["The Idiot","the Tests","and the Summoned Creatures","Baka to Test to Shokanju"],"format":"TV","episodes":13,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":7},"status":"FINISHED"},{"index":4,"id":6500,"mal_id":6500,"title":"Seikon no Qwaser","english":"The Qwaser of Stigmata","native":"聖痕のクェイサー","synonyms":["Seikon no Quasar"],"format":"TV","episodes":24,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":10},"status":"FINISHED"},{"index":5,"id":6922,"mal_id":6922,"title":"Fate/stay night Movie: UNLIMITED BLADE WORKS","english":"Fate/stay night: Unlimited Blade Works (Movie)","native":"劇場版 Fate/stay night UNLIMITED BLADE WORKS","synonyms":["Gekijouban Fate/Stay Night: Unlimited Blade Works","Fate/stay night UBW","Судaьба/Ночь схватки: Бесконечный мир клинков"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":23},"status":"FINISHED"},{"index":6,"id":6862,"mal_id":6862,"title":"K-ON!: Live House!","english":"K-ON!: Live House!","native":"けいおん!「ライブハウス!」","synonyms":["K-On! OVA","Keion OVA","K-On! Episode 14","Keion OVA"],"format":"OVA","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":19},"status":"FINISHED"},{"index":7,"id":6802,"mal_id":6802,"title":"So Ra No Wo To","english":"Sound of the Sky","native":"ソ・ラ・ノ・ヲ・ト","synonyms":["Sora no Oto","Soranowoto","Sora no Woto"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":5},"status":"FINISHED"},{"index":8,"id":7148,"mal_id":7148,"title":"Ladies versus Butlers!","english":"Ladies Versus Butlers","native":"れでぃ×ばと!","synonyms":["Ladies vs. Butlers!","Redei x Bato"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":5},"status":"FINISHED"},{"index":9,"id":7338,"mal_id":7338,"title":"DARKER THAN BLACK: Kuro no Keiyakusha - Gaiden","english":"Darker than Black: Origins","native":"DARKER THAN BLACK -黒の契約者- 外伝","synonyms":["Darker than BLACK: Origin"],"format":"SPECIAL","episodes":4,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":27},"status":"FINISHED"},{"index":10,"id":6324,"mal_id":6324,"title":"Omamori Himari","english":"Omamori Himari","native":"おまもりひまり","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":7},"status":"FINISHED"},{"index":11,"id":6747,"mal_id":6747,"title":"Dance in the Vampire Bund","english":"Dance in the Vampire Bund","native":"ダンスインザヴァンパイアバンド","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":7},"status":"FINISHED"},{"index":12,"id":6336,"mal_id":6336,"title":"Kidou Senshi Gundam UC","english":"Mobile Suit Gundam UC","native":"機動戦士ガンダムUC","synonyms":["Kidou Senshi Gundam Unicorn","Mobile Suit Gundam Unicorn"],"format":"OVA","episodes":7,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":2,"day":20},"status":"FINISHED"},{"index":13,"id":6574,"mal_id":6574,"title":"Hanamaru Youchien","english":"Hanamaru Kindergarten","native":"はなまる幼稚園","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":10},"status":"FINISHED"},{"index":14,"id":5690,"mal_id":5690,"title":"Nodame Cantabile Finale","english":null,"native":"のだめカンタービレ フィナーレ","synonyms":["Nodame Cantabile Third Season","Nodame Cantabile Season 3","Nodame Cantabile: Finale"],"format":"TV","episodes":11,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":15},"status":"FINISHED"},{"index":15,"id":6951,"mal_id":6951,"title":"Yu☆Gi☆Oh!: Chou Yuugou! Toki wo Koeta Kizuna","english":"Yu-Gi-Oh! 3D: Bonds Beyond Time","native":"劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~","synonyms":["Yugioh","Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space","Yu-Gi-Oh! 10th Anniversary Special","10th Anniversary Gekijouban","Yu-Gi-Oh!: Vínculos Além do Tempo"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":23},"status":"FINISHED"},{"index":16,"id":8023,"mal_id":8023,"title":"Toaru Kagaku no Railgun: Motto Marutto Railgun","english":null,"native":"とある科学の超電磁砲 もっとまるっと超電磁砲","synonyms":["Toaru Kagaku no Railgun MMR","A Certain Scientific Railgun Specials"],"format":"SPECIAL","episodes":2,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":29},"status":"FINISHED"},{"index":17,"id":7645,"mal_id":7645,"title":"Heartcatch Precure!","english":"Heartcatch Precure!","native":"ハートキャッチプリキュア!","synonyms":["Heartcatch Pretty Cure!"],"format":"TV","episodes":49,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":2,"day":7},"status":"FINISHED"},{"index":18,"id":7079,"mal_id":7079,"title":"Ookami Kakushi","english":"Okamikakushi ~ Masque of the Wolf","native":"おおかみかくし","synonyms":["Ookamikakushi","Wolfed Away"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":8},"status":"FINISHED"},{"index":19,"id":6645,"mal_id":6645,"title":"Chuu Bra!!","english":"Chu-Bra!: Panty Appreciation Society","native":"ちゅーぶら!!","synonyms":["Chu-Bra!!","Chubra!!","Chuubra!!"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":4},"status":"FINISHED"},{"index":20,"id":7062,"mal_id":7062,"title":"Hidamari Sketch x ☆☆☆","english":"Hidamari Sketch x Hoshimittsu","native":"ひだまりスケッチ x ☆☆☆","synonyms":["Hidamari Sketch S3"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":8},"status":"FINISHED"},{"index":21,"id":4985,"mal_id":4985,"title":"Mahou Shoujo Lyrical Nanoha: The MOVIE 1st","english":"Magical Girl Lyrical Nanoha: The Movie 1st","native":"魔法少女リリカルなのは The MOVIE 1st","synonyms":[],"format":"MOVIE","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":1,"day":23},"status":"FINISHED"},{"index":22,"id":8115,"mal_id":8115,"title":"Uchuu Show e Youkoso","english":"Welcome to THE SPACE SHOW","native":"宇宙ショーへようこそ","synonyms":["Uchu Show e Youkoso"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":2,"day":18},"status":"FINISHED"},{"index":23,"id":9213,"mal_id":9213,"title":"Kowarekake no Orgel","english":null,"native":"こわれかけのオルゴール","synonyms":["Kowarekake no Orgol","Half-Broken Music Box"],"format":"OVA","episodes":1,"season":"WINTER","year":2010,"start_date":{"year":2009,"month":12,"day":31},"status":"FINISHED"},{"index":24,"id":7762,"mal_id":7762,"title":"Yondemasu yo, Azazel-san.","english":null,"native":"よんでますよ、アザゼルさん。","synonyms":[],"format":"OVA","episodes":4,"season":"WINTER","year":2010,"start_date":{"year":2010,"month":2,"day":23},"status":"FINISHED"}],"jikan":[{"index":0,"id":6746,"mal_id":6746,"title":"Durarara!!","english":"Durarara!!","native":"デュラララ!!","synonyms":["Dhurarara!!","Dyurarara!!","Dulalala!!","Dullalala!!","DRRR!!"],"format":"TV","episodes":24,"season":"WINTER","year":2010,"start_date":{"day":8,"month":1,"year":2010},"status":"Finished Airing"},{"index":1,"id":6347,"mal_id":6347,"title":"Baka to Test to Shoukanjuu","english":"Baka & Test: Summon the Beasts","native":"バカとテストと召喚獣","synonyms":["The Idiot","the Tests","and the Summoned Creatures","Baka to Test to Shokanju","BakaTest"],"format":"TV","episodes":13,"season":"WINTER","year":2010,"start_date":{"day":7,"month":1,"year":2010},"status":"Finished Airing"},{"index":2,"id":7311,"mal_id":7311,"title":"Suzumiya Haruhi no Shoushitsu","english":"The Disappearance of Haruhi Suzumiya","native":"涼宮ハルヒの消失","synonyms":["The Vanishment of Haruhi Suzumiya","Suzumiya Haruhi no Syoshitsu","Haruhi Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":2,"year":2010},"status":"Finished Airing"},{"index":3,"id":6594,"mal_id":6594,"title":"Katanagatari","english":"Katanagatari","native":"刀語","synonyms":["Sword Story"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":26,"month":1,"year":2010},"status":"Finished Airing"},{"index":4,"id":6500,"mal_id":6500,"title":"Seikon no Qwaser","english":"The Qwaser of Stigmata","native":"聖痕のクェイサー","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2010,"start_date":{"day":10,"month":1,"year":2010},"status":"Finished Airing"},{"index":5,"id":7338,"mal_id":7338,"title":"Darker than Black: Kuro no Keiyakusha Gaiden","english":"Darker Than Black: Gemini of the Meteor OVAs","native":"Darker than BLACK -黒の契約者 外伝","synonyms":["Darker than Black: Ryuusei no Gemini Specials","Darker than BLACK 2 OVA","DTB","Darker than Black: Ryuusei no Gemini Episode 12"],"format":"Special","episodes":4,"season":null,"year":null,"start_date":{"day":27,"month":1,"year":2010},"status":"Finished Airing"},{"index":6,"id":6324,"mal_id":6324,"title":"Omamori Himari","english":"Omamori Himari","native":"おまもりひまり","synonyms":["Protective Charm Himari","OmaHima"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":7,"month":1,"year":2010},"status":"Finished Airing"},{"index":7,"id":6747,"mal_id":6747,"title":"Dance in the Vampire Bund","english":"Dance in the Vampire Bund","native":"ダンスインザヴァンパイアバンド","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":7,"month":1,"year":2010},"status":"Finished Airing"},{"index":8,"id":6922,"mal_id":6922,"title":"Fate/stay night Movie: Unlimited Blade Works","english":"Fate/stay night: Unlimited Blade Works","native":"劇場版 Fate/stay night UNLIMITED BLADE WORKS","synonyms":["Gekijouban Fate/Stay Night: Unlimited Blade Works","Fate/stay night Movie","Fate/stay night UBW"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":1,"year":2010},"status":"Finished Airing"},{"index":9,"id":7148,"mal_id":7148,"title":"Ladies versus Butlers!","english":"Ladies versus Butlers!","native":"れでぃ×ばと!","synonyms":["Ladies vs. Butlers!","Redi x Bato"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":5,"month":1,"year":2010},"status":"Finished Airing"},{"index":10,"id":6802,"mal_id":6802,"title":"So Ra No Wo To","english":"Sound of the Sky","native":"ソ・ラ・ノ・ヲ・ト","synonyms":["So-Ra-No-Wo-To","Soranowoto","Sora no Woto","Sora no Oto"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":5,"month":1,"year":2010},"status":"Finished Airing"},{"index":11,"id":6862,"mal_id":6862,"title":"K-On!: Live House!","english":"K-ON! Live House!","native":"けいおん! ライブハウス!","synonyms":["K-On! OVA","Keion OVA","K-On! Episode 14","Keion OVA"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":1,"year":2010},"status":"Finished Airing"},{"index":12,"id":6637,"mal_id":6637,"title":"Higashi no Eden Movie II: Paradise Lost","english":"Eden of The East the Movie II: Paradise Lost","native":"東のエデン 劇場版II Paradise Lost","synonyms":["Higashi no Eden: Gekijouban II Paradise Lost"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":13,"month":3,"year":2010},"status":"Finished Airing"},{"index":13,"id":5690,"mal_id":5690,"title":"Nodame Cantabile Finale","english":null,"native":"のだめカンタービレ フィナーレ","synonyms":["Nodame Cantabile Third Season","Nodame Cantabile Season 3"],"format":"TV","episodes":11,"season":"WINTER","year":2010,"start_date":{"day":15,"month":1,"year":2010},"status":"Finished Airing"},{"index":14,"id":7465,"mal_id":7465,"title":"Eve no Jikan (Movie)","english":"Time of Eve","native":"イヴの時間","synonyms":["Eve's Time","Eve no Jikan 1st Season Complete Edition","Gekijouban Eve no Jikan"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":3,"year":2010},"status":"Finished Airing"},{"index":15,"id":8479,"mal_id":8479,"title":"Hetalia World Series","english":"Hetalia World Series","native":"ヘタリア World Series","synonyms":[],"format":"ONA","episodes":48,"season":null,"year":null,"start_date":{"day":26,"month":3,"year":2010},"status":"Finished Airing"},{"index":16,"id":6336,"mal_id":6336,"title":"Kidou Senshi Gundam Unicorn","english":"Mobile Suit Gundam Unicorn","native":"機動戦士ガンダムUC(ユニコーン)","synonyms":["Mobile Suit Gundam UC"],"format":"OVA","episodes":7,"season":null,"year":null,"start_date":{"day":12,"month":3,"year":2010},"status":"Finished Airing"},{"index":17,"id":6574,"mal_id":6574,"title":"Hanamaru Youchien","english":"Hanamaru Kindergarten","native":"はなまる幼稚園","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":11,"month":1,"year":2010},"status":"Finished Airing"},{"index":18,"id":7079,"mal_id":7079,"title":"Ookamikakushi","english":"Okamikakushi: Masque of the Wolf","native":"おおかみかくし","synonyms":["Wolfed Away"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":8,"month":1,"year":2010},"status":"Finished Airing"},{"index":19,"id":6951,"mal_id":6951,"title":"Yu☆Gi☆Oh! Movie: Chou Yuugou! Toki wo Koeta Kizuna","english":"Yu-Gi-Oh! 3D: Bonds Beyond Time","native":"劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~","synonyms":["Yugioh","Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space","Yu-Gi-Oh! 10th Anniversary Special","10th Anniversary Gekijouban","Yu-Gi-Oh! The Movie: Super Fusion! Bonds That Transcend Time","Yu-Gi-Oh! Bonds Beyond Time"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":1,"year":2010},"status":"Finished Airing"},{"index":20,"id":6645,"mal_id":6645,"title":"Chuu Bra!!","english":"Chu-Bra!!","native":"ちゅーぶら!!","synonyms":["Chuu Bra!!","Chubra!!","Chuubra!!"],"format":"TV","episodes":12,"season":"WINTER","year":2010,"start_date":{"day":4,"month":1,"year":2010},"status":"Finished Airing"},{"index":21,"id":8023,"mal_id":8023,"title":"Toaru Kagaku no Railgun: Motto Marutto Railgun","english":"A Certain Scientific Railgun Specials","native":"もっとまるっと超電磁砲","synonyms":["Toaru Kagaku no Railgun MMR","Motto Marutto Railgun Specials"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":29,"month":1,"year":2010},"status":"Finished Airing"},{"index":22,"id":7559,"mal_id":7559,"title":"Fate/stay night TV Reproduction","english":null,"native":"Fate/stay night","synonyms":["Fate/stay night Recap","Fate/stay night OVA"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":17,"month":1,"year":2010},"status":"Finished Airing"},{"index":23,"id":10643,"mal_id":10643,"title":"Gintama: Dai Hanseikai","english":null,"native":"アニメ銀魂 大反省会","synonyms":["Gintama Harumatsuri 2010"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":3,"year":2010},"status":"Finished Airing"},{"index":24,"id":7645,"mal_id":7645,"title":"Heartcatch Precure!","english":null,"native":"ハートキャッチプリキュア!","synonyms":["Heartcatch Pretty Cure!"],"format":"TV","episodes":49,"season":"WINTER","year":2010,"start_date":{"day":7,"month":2,"year":2010},"status":"Finished Airing"}]},{"year":2012,"season":"winter","anilist":[{"index":0,"id":11111,"mal_id":11111,"title":"Another","english":"Another","native":"アナザー","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":10},"status":"FINISHED"},{"index":1,"id":11617,"mal_id":11617,"title":"High School DxD","english":"High School DxD","native":"ハイスクールD×D","synonyms":["תיכון די אקס די"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":6},"status":"FINISHED"},{"index":2,"id":11843,"mal_id":11843,"title":"Danshi Koukousei no Nichijou","english":"Daily Lives of High School Boys","native":"男子高校生の日常","synonyms":["Nichibros","La vie quotidienne de lycéens"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":10},"status":"FINISHED"},{"index":3,"id":11597,"mal_id":11597,"title":"Nisemonogatari","english":"Nisemonogatari","native":"偽物語","synonyms":["Fake Tale","Истории подделок","ปกรณัมของเทียม"],"format":"TV","episodes":11,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":8},"status":"FINISHED"},{"index":4,"id":10863,"mal_id":10863,"title":"Steins;Gate: Oukoubakko no Poriomania","english":"Steins;Gate: Egoistic Poriomania","native":"シュタインズ・ゲート 横行跋扈のポリオマニア","synonyms":["Steins","Gate Special","Poriomanía del egoismo"],"format":"OVA","episodes":1,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":22},"status":"FINISHED"},{"index":5,"id":11013,"mal_id":11013,"title":"Inu x Boku SS","english":"Inu X Boku Secret Service","native":"妖狐×僕SS","synonyms":["Youko x Boku SS"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":13},"status":"FINISHED"},{"index":6,"id":11433,"mal_id":11433,"title":"Ano Natsu de Matteru","english":"Waiting in the Summer","native":"あの夏で待ってる","synonyms":["Natsumachi"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":10},"status":"FINISHED"},{"index":7,"id":11319,"mal_id":11319,"title":"Zero no Tsukaima F","english":"The Familiar of Zero F","native":"ゼロの使い魔F","synonyms":["Zero no Tsukaima Final Series","Zero's Familiar Final Series","Zero no Tsukaima S4"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":7},"status":"FINISHED"},{"index":8,"id":11285,"mal_id":11285,"title":"Black★Rock Shooter (TV)","english":"Black Rock Shooter","native":"ブラック★ロックシューター (TV)","synonyms":["BRS TV","Black Rock Shooter TV"],"format":"TV","episodes":8,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":3},"status":"FINISHED"},{"index":9,"id":10218,"mal_id":10218,"title":"Berserk: Ougon Jidai-hen I - Haou no Tamago","english":"Berserk: The Golden Age Arc I - The Egg of the King","native":"ベルセルク 黄金時代篇Ⅰ 覇王の卵","synonyms":["Berserk Movie","Berserk Saga","Berserk: Golden Age Arc I - Egg of the Supreme Ruler","The Golden Age Arc I: The High King's Egg","Berserk: La Edad de Oro I - El Huevo del Rey Conquistador"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":4},"status":"FINISHED"},{"index":10,"id":11665,"mal_id":11665,"title":"Natsume Yuujinchou Shi","english":"Natsume's Book of Friends Season 4","native":"夏目友人帳 肆","synonyms":["Natsume Yuujinchou Four","Natsume Yuujinchou 4","Natsume Yujincho 4"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":3},"status":"FINISHED"},{"index":11,"id":11751,"mal_id":11751,"title":"Senki Zesshou Symphogear","english":"Symphogear","native":"戦姫絶唱シンフォギア","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":7},"status":"FINISHED"},{"index":12,"id":11179,"mal_id":11179,"title":"Papa no Iukoto wo Kikinasai!","english":"Listen to Me, Girls. I Am Your Father!","native":"パパのいうことを聞きなさい!","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":11},"status":"FINISHED"},{"index":13,"id":11235,"mal_id":11235,"title":"Amagami SS+ plus","english":null,"native":"アマガミSS+ plus","synonyms":["Amagami SS Dai Ni Ki"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":6},"status":"FINISHED"},{"index":14,"id":11079,"mal_id":11079,"title":"Kill Me Baby","english":"Kill Me Baby","native":"キルミーベイベー","synonyms":["Baby, Please Kill Me.","תהרוג אותי מותק"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":6},"status":"FINISHED"},{"index":15,"id":11241,"mal_id":11241,"title":"Brave 10","english":null,"native":"ブレイブ・テン","synonyms":["Brave10","Brave Ten"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":8},"status":"FINISHED"},{"index":16,"id":11227,"mal_id":11227,"title":"Rinne no Lagrange","english":"Lagrange: The Flower of Rin-ne","native":"輪廻のラグランジェ","synonyms":["Flower declaration of your heart","Lag-Rin"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":8},"status":"FINISHED"},{"index":17,"id":10447,"mal_id":10447,"title":"Aquarion EVOL","english":"Aquarion EVOL","native":"アクエリオンEVOL","synonyms":[],"format":"TV","episodes":26,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":12191,"mal_id":12191,"title":"Smile Precure!","english":"Glitter Force","native":"スマイルプリキュア","synonyms":["Smile Pretty Cure!"],"format":"TV","episodes":48,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":5},"status":"FINISHED"},{"index":19,"id":8917,"mal_id":8917,"title":"Mouretsu Pirates","english":"Bodacious Space Pirates","native":"モーレツ宇宙海賊","synonyms":["Mouretsu Uchuu Kaizoku","Miniskirt Pirates","Moretsu Uchuu Kaizoku"],"format":"TV","episodes":26,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":8},"status":"FINISHED"},{"index":20,"id":10638,"mal_id":10638,"title":"Denpa Onna to Seishun Otoko: Mayonaka no Taiyou","english":"Ground Control to Psychoelectric Girl: The Nighttime Sun","native":"電波女と青春男 真夜中の太陽","synonyms":["Denpa Onna to Seishun Otoko Episode 13","Electromagnetic Wave Woman and Adolescent Man Special","Ground Control to Psychoelectric Girl: Episode 13"],"format":"OVA","episodes":1,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":8},"status":"FINISHED"},{"index":21,"id":10417,"mal_id":10417,"title":"Gyo","english":"GYO: Tokyo Fish Attack","native":"ギョ","synonyms":["ปลามรณะ"],"format":"OVA","episodes":1,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":2,"day":15},"status":"FINISHED"},{"index":22,"id":11697,"mal_id":11697,"title":"Area no Kishi","english":"The Knight in the Area","native":"エリアの騎士","synonyms":["Il cavaliere dell'area di rigore"],"format":"TV","episodes":37,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":7},"status":"FINISHED"},{"index":23,"id":11491,"mal_id":11491,"title":"Recorder to Randoseru Do♪","english":"Recorder and Randsell","native":"リコーダーとランドセル ド♪","synonyms":["Recorder and Backpack Do","Recorder and Satchel Do","Recorder and Randsell Do","Recorder and Ransel Do"],"format":"TV_SHORT","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":6},"status":"FINISHED"},{"index":24,"id":11371,"mal_id":11371,"title":"Shin Tennis no Ouji-sama","english":"The Prince of Tennis II","native":"新テニスの王子様","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"year":2012,"month":1,"day":5},"status":"FINISHED"}],"jikan":[{"index":0,"id":11111,"mal_id":11111,"title":"Another","english":"Another","native":"アナザー","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":10,"month":1,"year":2012},"status":"Finished Airing"},{"index":1,"id":11617,"mal_id":11617,"title":"High School DxD","english":"High School DxD","native":"ハイスクールD×D","synonyms":["Highschool DxD"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":6,"month":1,"year":2012},"status":"Finished Airing"},{"index":2,"id":11843,"mal_id":11843,"title":"Danshi Koukousei no Nichijou","english":"Daily Lives of High School Boys","native":"男子高校生の日常","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":10,"month":1,"year":2012},"status":"Finished Airing"},{"index":3,"id":11597,"mal_id":11597,"title":"Nisemonogatari","english":"Nisemonogatari","native":"偽物語","synonyms":["Impostory"],"format":"TV","episodes":11,"season":"WINTER","year":2012,"start_date":{"day":8,"month":1,"year":2012},"status":"Finished Airing"},{"index":4,"id":11013,"mal_id":11013,"title":"Inu x Boku SS","english":"Inu X Boku Secret Service","native":"妖狐×僕SS","synonyms":["Youko x Boku SS"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":13,"month":1,"year":2012},"status":"Finished Airing"},{"index":5,"id":10863,"mal_id":10863,"title":"Steins;Gate: Oukoubakko no Poriomania","english":"Steins;Gate: Egoistic Poriomania","native":"シュタインズ ゲート 横行跋扈のポリオマニア","synonyms":["Steins Gate Special","Steins Gate Episode 25","Steins Gate OVA"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":2,"year":2012},"status":"Finished Airing"},{"index":6,"id":11319,"mal_id":11319,"title":"Zero no Tsukaima F","english":"The Familiar of Zero F","native":"ゼロの使い魔F","synonyms":["Zero no Tsukaima Final Series","Zero's Familiar Final Series","Zero no Tsukaima S4"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":7,"month":1,"year":2012},"status":"Finished Airing"},{"index":7,"id":11433,"mal_id":11433,"title":"Ano Natsu de Matteru","english":"Waiting in the Summer","native":"あの夏で待ってる","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":10,"month":1,"year":2012},"status":"Finished Airing"},{"index":8,"id":11285,"mal_id":11285,"title":"Black★Rock Shooter (TV)","english":"Black Rock Shooter","native":"ブラック★ロックシューター","synonyms":["BRS (TV)"],"format":"TV","episodes":8,"season":"WINTER","year":2012,"start_date":{"day":3,"month":2,"year":2012},"status":"Finished Airing"},{"index":9,"id":11665,"mal_id":11665,"title":"Natsume Yuujinchou Shi","english":"Natsume's Book of Friends Season 4","native":"夏目友人帳 肆","synonyms":["Natsume Yuujinchou Four","Natsume Yuujinchou 4","Natsume Yujincho 4"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"day":3,"month":1,"year":2012},"status":"Finished Airing"},{"index":10,"id":10218,"mal_id":10218,"title":"Berserk: Ougon Jidai-hen I - Haou no Tamago","english":"Berserk: The Golden Age Arc I - The Egg of the King","native":"ベルセルク 黄金時代篇Ⅰ 覇王の卵","synonyms":["Berserk Movie","Berserk Saga","Berserk: Golden Age Arc I - Egg of the Supreme Ruler","The Golden Age Arc I: The High King's Egg"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":2,"year":2012},"status":"Finished Airing"},{"index":11,"id":13357,"mal_id":13357,"title":"High School DxD Specials","english":null,"native":"ハイスクールD×Dスペシャル","synonyms":["Highschool DxD Specials"],"format":"Special","episodes":6,"season":null,"year":null,"start_date":{"day":21,"month":3,"year":2012},"status":"Finished Airing"},{"index":12,"id":11179,"mal_id":11179,"title":"Papa no Iukoto wo Kikinasai!","english":"Listen to Me, Girls. I Am Your Father!","native":"パパのいうことを聞きなさい!","synonyms":["Papakiki","Listen to Me","Girls","I'm Your Father!"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":11,"month":1,"year":2012},"status":"Finished Airing"},{"index":13,"id":11235,"mal_id":11235,"title":"Amagami SS+ Plus","english":"Amagami SS+ plus","native":"アマガミSS+ plus","synonyms":["Amagami SS Dai Ni Ki","Amagami SS Second Season","Amagami SS 2nd Season"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"day":6,"month":1,"year":2012},"status":"Finished Airing"},{"index":14,"id":11241,"mal_id":11241,"title":"Brave 10","english":"Brave 10","native":"ブレイブ・テン","synonyms":["Brave10","Brave Ten"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":8,"month":1,"year":2012},"status":"Finished Airing"},{"index":15,"id":11079,"mal_id":11079,"title":"Kill Me Baby","english":"Kill Me Baby","native":"キルミーベイベー","synonyms":["Baby","Please Kill Me."],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"day":6,"month":1,"year":2012},"status":"Finished Airing"},{"index":16,"id":11751,"mal_id":11751,"title":"Senki Zesshou Symphogear","english":"Symphogear","native":"戦姫絶唱シンフォギア","synonyms":["Senhime Zesshou Symphogear"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"day":6,"month":1,"year":2012},"status":"Finished Airing"},{"index":17,"id":10447,"mal_id":10447,"title":"Aquarion Evol","english":"Aquarion Evol","native":"アクエリオンEVOL","synonyms":[],"format":"TV","episodes":26,"season":"WINTER","year":2012,"start_date":{"day":9,"month":1,"year":2012},"status":"Finished Airing"},{"index":18,"id":11697,"mal_id":11697,"title":"Area no Kishi","english":"The Knight in the Area","native":"エリアの騎士","synonyms":[],"format":"TV","episodes":37,"season":"WINTER","year":2012,"start_date":{"day":7,"month":1,"year":2012},"status":"Finished Airing"},{"index":19,"id":11227,"mal_id":11227,"title":"Rinne no Lagrange","english":"Lagrange: The Flower of Rin-ne","native":"輪廻のラグランジェ","synonyms":["Flower declaration of your heart","Lag-Rin"],"format":"TV","episodes":12,"season":"WINTER","year":2012,"start_date":{"day":8,"month":1,"year":2012},"status":"Finished Airing"},{"index":20,"id":8917,"mal_id":8917,"title":"Mouretsu Pirates","english":"Bodacious Space Pirates","native":"モーレツ宇宙海賊","synonyms":["Mouretsu Uchuu Kaizoku","Miniskirt Pirates","Moretsu Uchuu Kaizoku"],"format":"TV","episodes":26,"season":"WINTER","year":2012,"start_date":{"day":8,"month":1,"year":2012},"status":"Finished Airing"},{"index":21,"id":11371,"mal_id":11371,"title":"Shin Tennis no Oujisama","english":"The Prince of Tennis II","native":"新テニスの王子様","synonyms":["New Prince of Tennis"],"format":"TV","episodes":13,"season":"WINTER","year":2012,"start_date":{"day":5,"month":1,"year":2012},"status":"Finished Airing"},{"index":22,"id":11209,"mal_id":11209,"title":"Maken-Ki! OVA","english":null,"native":"マケン姫っ! OVA","synonyms":["Natsu Da! Mizugi Da! Gasshuku Da!","It's Summer! It's Swimsuits! It's Training Camp!","Takeru Nyotaika!? Minami no Shima de Supoon","Maken-ki! Two: Takeru Nyotaika!? Minami no Shima de Supoon"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":1,"month":3,"year":2012},"status":"Finished Airing"},{"index":23,"id":10638,"mal_id":10638,"title":"Denpa Onna to Seishun Otoko: Mayonaka no Taiyou","english":"Ground Control to Psychoelectric Girl Special","native":"電波女と青春男 真夜中の太陽","synonyms":["Denpa Onna to Seishun Otoko Episode 13","Electromagnetic Wave Woman and Adolescent Man Special"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":2,"year":2012},"status":"Finished Airing"},{"index":24,"id":11813,"mal_id":11813,"title":"Shijou Saikyou no Deshi Kenichi OVA","english":"KenIchi: The Mightiest Disciple OVA","native":"史上最強の弟子 ケンイチ OVA","synonyms":["History's Strongest Disciple Kenichi OVA","Shijou Saikyou no Deshi Kenichi: Yami no Shuugeki"],"format":"OVA","episodes":11,"season":null,"year":null,"start_date":{"day":14,"month":3,"year":2012},"status":"Finished Airing"}]},{"year":2014,"season":"winter","anilist":[{"index":0,"id":20447,"mal_id":20507,"title":"Noragami","english":"Noragami","native":"ノラガミ","synonyms":["Stray God","野良神","โนรางามิ เทวดาขาจร ภาค 1","Бездомный бог"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":5},"status":"FINISHED"},{"index":1,"id":18897,"mal_id":18897,"title":"Nisekoi","english":"Nisekoi","native":"ニセコイ","synonyms":["Nisekoi: False Love"," รักลวงป่วนใจ"],"format":"TV","episodes":20,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":11},"status":"FINISHED"},{"index":2,"id":18671,"mal_id":18671,"title":"Chuunibyou demo Koi ga Shitai! Ren","english":"Love, Chunibyo & Other Delusions - Heart Throb -","native":"中二病でも恋がしたい!戀","synonyms":["Chuunibyou demo Koi ga Shitai! 2"," Miłość, gimbaza i kosmiczna faza: Porywy serca"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":9},"status":"FINISHED"},{"index":3,"id":20483,"mal_id":20541,"title":"Mikakunin de Shinkoukei","english":"Engaged to the Unidentified","native":"未確認で進行形","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":9},"status":"FINISHED"},{"index":4,"id":20057,"mal_id":20057,"title":"Space☆Dandy","english":"Space Dandy","native":"スペース☆ダンディ","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":5},"status":"FINISHED"},{"index":5,"id":20031,"mal_id":20031,"title":"D-Frag!","english":null,"native":"ディーふらぐ!","synonyms":["D Frag","D-Fragments!"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":7},"status":"FINISHED"},{"index":6,"id":20503,"mal_id":21085,"title":"Witch Craft Works","english":"Witch Craft Works","native":"ウィッチクラフトワークス","synonyms":["Witchcraft Works"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":5},"status":"FINISHED"},{"index":7,"id":20494,"mal_id":20767,"title":"Noragami OVA","english":"Noragami OVA","native":"ノラガミ OAD","synonyms":["ノラガミ OVA","Noragami OAD"],"format":"OVA","episodes":2,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":2,"day":17},"status":"FINISHED"},{"index":8,"id":20047,"mal_id":20047,"title":"Sakura Trick","english":"Sakura Trick","native":"桜Trick","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":10},"status":"FINISHED"},{"index":9,"id":20521,"mal_id":20689,"title":"Hamatora THE ANIMATION","english":"Hamatora","native":"ハマトラ THE ANIMATION","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":8},"status":"FINISHED"},{"index":10,"id":18139,"mal_id":18139,"title":"Tonari no Seki-kun","english":"Tonari no Seki-kun: The Master of Killing Time","native":"となりの関くん","synonyms":["My Neighbor Seki"],"format":"TV_SHORT","episodes":21,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":6},"status":"FINISHED"},{"index":11,"id":20448,"mal_id":20847,"title":"Seitokai Yakuindomo*","english":"Seitokai Yakuindomo Season 2","native":"生徒会役員共*","synonyms":["Seitokai Yakuindomo Season 2 ","Seitokai 2","Seitokai Yakuindomo*","SYD*"],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":4},"status":"FINISHED"},{"index":12,"id":19769,"mal_id":19769,"title":"Mahou Sensou","english":"Magical Warfare","native":"魔法戦争","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":10},"status":"FINISHED"},{"index":13,"id":18095,"mal_id":18095,"title":"Nourin","english":"No-Rin","native":"のうりん","synonyms":["ไอดอลสาวชาวไร่"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":11},"status":"FINISHED"},{"index":14,"id":19315,"mal_id":19315,"title":"Pupa","english":null,"native":"ピューパ","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":10},"status":"FINISHED"},{"index":15,"id":17777,"mal_id":17777,"title":"Saikin, Imouto no Yousu ga Chotto Okashiinda ga.","english":"Recently, My Sister Is Unusual","native":"最近、妹のようすがちょっとおかしいんだが。","synonyms":["imocho","imocyo"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":4},"status":"FINISHED"},{"index":16,"id":20488,"mal_id":20457,"title":"Inari, Konkon, Koi Iroha.","english":"Inari Kon Kon","native":"いなり、こんこん、恋いろは。","synonyms":[],"format":"TV","episodes":10,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":16},"status":"FINISHED"},{"index":17,"id":20496,"mal_id":20973,"title":"Sekai Seifuku: Bouryaku no Zvezda","english":"World Conquest Zvezda Plot","native":"世界征服~謀略のズヴィズダー~","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":12},"status":"FINISHED"},{"index":18,"id":20526,"mal_id":21329,"title":"Mushishi: Hihamukage","english":"MUSHI-SHI OVA","native":"蟲師 特別篇「日蝕む翳」","synonyms":["Mushi-shi Tokubetsu-hen: Hihamu Kage","MUSHI-SHI: The Shadow that Devours the Sun","MUSHI-SHI: L'ombre qui dévore le soleil"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":4},"status":"FINISHED"},{"index":19,"id":15565,"mal_id":15565,"title":"Maken-Ki! Tsuu","english":"Maken-Ki! Battling Venus 2","native":"マケン姫っ!通","synonyms":["Maken-Ki! Dai 2-ki","Maken-Ki! 2","Maken-Ki! Second Season","Maken-Ki! 2nd Season"],"format":"TV","episodes":10,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":16},"status":"FINISHED"},{"index":20,"id":19363,"mal_id":19363,"title":"Gin no Saji 2","english":"Silver Spoon Season 2","native":"銀の匙 2","synonyms":["Ginsaji 2"],"format":"TV","episodes":11,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":10},"status":"FINISHED"},{"index":21,"id":20431,"mal_id":20431,"title":"Hoozuki no Reitetsu","english":"Hozuki's Coolheadedness","native":"鬼灯の冷徹","synonyms":["Hozuki no Reitetsu"],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":10},"status":"FINISHED"},{"index":22,"id":20473,"mal_id":20931,"title":"Onee-chan ga Kita","english":"Onee-chan ga Kita","native":"お姉ちゃんが来た","synonyms":["My Big Sister Arrived"],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":1,"day":9},"status":"FINISHED"},{"index":23,"id":20582,"mal_id":21797,"title":"Chuunibyou demo Koi ga Shitai! Ren Lite","english":"Love, Chunibyo & Other Delusions - Heart Throb - Lite","native":"中二病でも恋がしたい!戀 Lite","synonyms":[],"format":"ONA","episodes":6,"season":"WINTER","year":2014,"start_date":{"year":2013,"month":12,"day":25},"status":"FINISHED"},{"index":24,"id":20831,"mal_id":22839,"title":"Cross Road","english":null,"native":"クロスロード","synonyms":["Crossroad"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2014,"start_date":{"year":2014,"month":2,"day":25},"status":"FINISHED"}],"jikan":[{"index":0,"id":20507,"mal_id":20507,"title":"Noragami","english":"Noragami","native":"ノラガミ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":5,"month":1,"year":2014},"status":"Finished Airing"},{"index":1,"id":18897,"mal_id":18897,"title":"Nisekoi","english":"Nisekoi: False Love","native":"ニセコイ","synonyms":["Nisekoi"],"format":"TV","episodes":20,"season":"WINTER","year":2014,"start_date":{"day":11,"month":1,"year":2014},"status":"Finished Airing"},{"index":2,"id":18671,"mal_id":18671,"title":"Chuunibyou demo Koi ga Shitai! Ren","english":"Love, Chunibyo & Other Delusions!: Heart Throb","native":"中二病でも恋がしたい!戀","synonyms":["Chuunibyou demo Koi ga Shitai! 2","Chu-2 Byo demo Koi ga Shitai! Ren"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":9,"month":1,"year":2014},"status":"Finished Airing"},{"index":3,"id":20541,"mal_id":20541,"title":"Mikakunin de Shinkoukei","english":"Engaged to the Unidentified","native":"未確認で進行形","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":9,"month":1,"year":2014},"status":"Finished Airing"},{"index":4,"id":20031,"mal_id":20031,"title":"D-Frag!","english":"D-Frag!","native":"ディーふらぐ!","synonyms":["D-Frag!","D-Fragments"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":7,"month":1,"year":2014},"status":"Finished Airing"},{"index":5,"id":20057,"mal_id":20057,"title":"Space☆Dandy","english":"Space Dandy","native":"スペース☆ダンディ","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"day":5,"month":1,"year":2014},"status":"Finished Airing"},{"index":6,"id":21085,"mal_id":21085,"title":"Witch Craft Works","english":"Witch Craft Works","native":"ウィッチクラフトワークス","synonyms":["Witchcraft Works"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":5,"month":1,"year":2014},"status":"Finished Airing"},{"index":7,"id":20767,"mal_id":20767,"title":"Noragami OVA","english":"Noragami OVA","native":"ノラガミ OAD","synonyms":["Noragami OAD"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":17,"month":2,"year":2014},"status":"Finished Airing"},{"index":8,"id":20689,"mal_id":20689,"title":"Hamatora The Animation","english":"Hamatora The Animation","native":"ハマトラ THE ANIMATION","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":8,"month":1,"year":2014},"status":"Finished Airing"},{"index":9,"id":20047,"mal_id":20047,"title":"Sakura Trick","english":"Sakura Trick","native":"桜Trick","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":10,"month":1,"year":2014},"status":"Finished Airing"},{"index":10,"id":20847,"mal_id":20847,"title":"Seitokai Yakuindomo*","english":"Student Council Staff Members Season 2","native":"生徒会役員共*","synonyms":["Seitokai Yakuindomo 2","SYD*"],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"day":4,"month":1,"year":2014},"status":"Finished Airing"},{"index":11,"id":19769,"mal_id":19769,"title":"Mahou Sensou","english":"Magical Warfare","native":"魔法戦争","synonyms":["Mahosen"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":10,"month":1,"year":2014},"status":"Finished Airing"},{"index":12,"id":18139,"mal_id":18139,"title":"Tonari no Seki-kun","english":"Tonari no Seki-kun: The Master of Killing Time","native":"となりの関くん","synonyms":["My Neighbor Seki"],"format":"TV","episodes":21,"season":"WINTER","year":2014,"start_date":{"day":6,"month":1,"year":2014},"status":"Finished Airing"},{"index":13,"id":18095,"mal_id":18095,"title":"Nourin","english":"No-Rin","native":"のうりん","synonyms":["Agriculture and Forestry"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":11,"month":1,"year":2014},"status":"Finished Airing"},{"index":14,"id":19315,"mal_id":19315,"title":"Pupa","english":"Pupa","native":"Pupa (ピューパ)","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":10,"month":1,"year":2014},"status":"Finished Airing"},{"index":15,"id":17777,"mal_id":17777,"title":"Saikin, Imouto no Yousu ga Chotto Okashiinda ga.","english":"Recently, my sister is unusual.","native":"最近、妹のようすがちょっとおかしいんだが。","synonyms":["Recently","My Little Sister is Unusual","ImoCho","ImoCyo"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":4,"month":1,"year":2014},"status":"Finished Airing"},{"index":16,"id":20457,"mal_id":20457,"title":"Inari, Konkon, Koi Iroha.","english":"Inari Kon Kon","native":"いなり、こんこん、恋いろは。","synonyms":["Inari","Konkon","ABCs of Love"],"format":"TV","episodes":10,"season":"WINTER","year":2014,"start_date":{"day":16,"month":1,"year":2014},"status":"Finished Airing"},{"index":17,"id":15565,"mal_id":15565,"title":"Maken-Ki! Two","english":"Maken-Ki! Two","native":"マケン姫っ!通","synonyms":["Maken-Ki! Dai 2-ki","Maken-Ki! 2","Maken-Ki! Second Season","Maken-Ki! 2nd Season"],"format":"TV","episodes":10,"season":"WINTER","year":2014,"start_date":{"day":16,"month":1,"year":2014},"status":"Finished Airing"},{"index":18,"id":19363,"mal_id":19363,"title":"Gin no Saji 2nd Season","english":"Silver Spoon 2nd Season","native":"銀の匙","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2014,"start_date":{"day":10,"month":1,"year":2014},"status":"Finished Airing"},{"index":19,"id":21329,"mal_id":21329,"title":"Mushishi: Hihamukage","english":"Mushi-shi: The Shadow that Devours the Sun","native":"蟲師 特別篇「日蝕む翳」","synonyms":["Mushi-shi Tokubetsu-hen: Hihamu Kage","Mushishi Special: Hihamukage"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":1,"year":2014},"status":"Finished Airing"},{"index":20,"id":20973,"mal_id":20973,"title":"Sekai Seifuku: Bouryaku no Zvezda","english":"World Conquest Zvezda Plot","native":"世界征服~謀略のズヴィズダー~","synonyms":["Sekai Seifuku: Bouryaku no Zvezda"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":12,"month":1,"year":2014},"status":"Finished Airing"},{"index":21,"id":20431,"mal_id":20431,"title":"Hoozuki no Reitetsu","english":"Hozuki's Coolheadedness","native":"鬼灯の冷徹","synonyms":["Cool-headed Hoozuki"],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"day":10,"month":1,"year":2014},"status":"Finished Airing"},{"index":22,"id":20931,"mal_id":20931,"title":"Oneechan ga Kita","english":null,"native":"お姉ちゃんが来た","synonyms":["My Sister Came","Onee-chan"],"format":"TV","episodes":12,"season":"WINTER","year":2014,"start_date":{"day":9,"month":1,"year":2014},"status":"Finished Airing"},{"index":23,"id":19117,"mal_id":19117,"title":"Toaru Hikuushi e no Koiuta","english":"The Pilot's Love Song","native":"とある飛空士への恋歌","synonyms":["Love Song of a Certain Pilot"],"format":"TV","episodes":13,"season":"WINTER","year":2014,"start_date":{"day":6,"month":1,"year":2014},"status":"Finished Airing"},{"index":24,"id":21177,"mal_id":21177,"title":"Nobunaga the Fool","english":"Nobunaga the Fool","native":"ノブナガ・ザ・フール","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2014,"start_date":{"day":6,"month":1,"year":2014},"status":"Finished Airing"}]},{"year":2016,"season":"winter","anilist":[{"index":0,"id":21234,"mal_id":31043,"title":"Boku dake ga Inai Machi","english":"ERASED","native":"僕だけがいない街","synonyms":["Bokumachi","Desaparecido","Miasto beze mnie","รีไววัล ย้อนอดีตไขปริศนา","ย้อนอดีตไขปริศนา"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":1,"id":21202,"mal_id":30831,"title":"Kono Subarashii Sekai ni Shukufuku wo!","english":"KONOSUBA -God's blessing on this wonderful world!","native":"この素晴らしい世界に祝福を!","synonyms":["Konosuba","Kono Subarashii Sekai ni Syukufuku wo!","Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso","为美好的世界献上祝福!","ขอให้โชคดีมีชัยในโลกแฟนตาซี!","Konosuba : Sois béni monde merveilleux !","Да благословят боги сей расчудесный мир!","Konosuba: Un mundo maravilloso!"," Konosuba: ¡Bendito sea este maravilloso mundo!"],"format":"TV","episodes":10,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":14},"status":"FINISHED"},{"index":2,"id":21170,"mal_id":30654,"title":"Ansatsu Kyoushitsu 2nd Season","english":"Assassination Classroom Second Season","native":"暗殺教室 第2期","synonyms":["فصل الاغتيال 2","Klasa skrytobójców 2","Assassination Classroom Season 2"],"format":"TV","episodes":25,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":3,"id":21428,"mal_id":31859,"title":"Hai to Gensou no Grimgar","english":"Grimgar of Fantasy and Ash","native":"灰と幻想のグリムガル","synonyms":["Grimgar"," Ashes and Illusions","ขี้เถ้าในกริมการ์แดนมายา"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":11},"status":"FINISHED"},{"index":4,"id":9260,"mal_id":9260,"title":"Kizumonogatari I: Tekketsu-hen","english":"Kizumonogatari Part 1: Tekketsu","native":"傷物語〈Ⅰ鉄血篇〉","synonyms":["Wound Tale 1: Iron Blood"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":5,"id":21306,"mal_id":31442,"title":"Musaigen no Phantom World","english":"Myriad Colors Phantom World","native":"無彩限のファントム・ワールド","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":7},"status":"FINISHED"},{"index":6,"id":21364,"mal_id":31637,"title":"GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2","english":"Gate 2","native":"GATE 自衛隊 彼の地にて、斯く戦えり 第2クール","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":9},"status":"FINISHED"},{"index":7,"id":21341,"mal_id":31580,"title":"Ajin","english":"AJIN: Demi-Human","native":"亜人","synonyms":["AJIN: Semihumano","อาจิน สายพันธุ์อมนุษย์","أجين: أنصاف البشر"],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":16},"status":"FINISHED"},{"index":8,"id":21365,"mal_id":31636,"title":"Dagashi Kashi","english":null,"native":"だがしかし","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":9,"id":21188,"mal_id":30749,"title":"Saijaku Muhai no Bahamut","english":"Undefeated Bahamut Chronicle","native":"最弱無敗の神装機竜《バハムート》","synonyms":["บาฮามุท มังกรเหล็กไร้พ่าย"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":11},"status":"FINISHED"},{"index":10,"id":21258,"mal_id":31173,"title":"Akagami no Shirayuki-hime 2nd Season","english":"Snow White with the Red Hair Season 2","native":"赤髪の白雪姫 2ndシーズン","synonyms":["สโนว์ไวท์ผมแดง ภาค 2","Die rothaarige Schneeprinzessin 2"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":12},"status":"FINISHED"},{"index":11,"id":21520,"mal_id":32268,"title":"Koyomimonogatari","english":"Koyomimonogatari","native":"暦物語","synonyms":["Calendar Tale"],"format":"ONA","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":9},"status":"FINISHED"},{"index":12,"id":21096,"mal_id":30346,"title":"Doukyuusei","english":"Doukyuusei -Classmates-","native":"同級生","synonyms":["Classmates"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":2,"day":20},"status":"FINISHED"},{"index":13,"id":20972,"mal_id":28735,"title":"Shouwa Genroku Rakugo Shinjuu","english":"Showa Genroku Rakugo Shinju","native":"昭和元禄落語心中","synonyms":["Descending Stories: Showa Genroku Rakugo Shinju","Le Rakugo ou la vie"],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":9},"status":"FINISHED"},{"index":14,"id":20880,"mal_id":27833,"title":"Durarara!!x2 Ketsu","english":"Durarara!! X2 The Third Arc","native":"デュラララ!!×2 結","synonyms":["DRRR!! 2 Ketsu","דורארארה!!2x סיום"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":9},"status":"FINISHED"},{"index":15,"id":21416,"mal_id":31772,"title":"One Punch Man OVA","english":"One-Punch Man OVA","native":"ワンパンマン OVA","synonyms":[],"format":"OVA","episodes":6,"season":"WINTER","year":2016,"start_date":{"year":2015,"month":12,"day":24},"status":"FINISHED"},{"index":16,"id":21256,"mal_id":31163,"title":"Dimension W","english":"Dimension W","native":"ディメンション ダブリュー","synonyms":["มิติปริศนา","Измерение W"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":10},"status":"FINISHED"},{"index":17,"id":21339,"mal_id":31553,"title":"Charlotte: Tsuyoimono-tachi","english":"Charlotte: Strong People","native":"Charlotte 強い者たち","synonyms":["Charlotte(シャーロット)TV未放送エピソード特別篇","Charlotte TV mi Housou Episode Tokubetsu-hen","Charlotte Special"],"format":"OVA","episodes":1,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":3,"day":30},"status":"FINISHED"},{"index":18,"id":21292,"mal_id":31414,"title":"Nijiiro Days","english":"Rainbow Days","native":"虹色デイズ","synonyms":["Niji-iro Days","Beztroskie dni","รักสุดใจคนวัยซ่า"],"format":"TV_SHORT","episodes":24,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":10},"status":"FINISHED"},{"index":19,"id":21472,"mal_id":32013,"title":"Oshiete! Galko-chan","english":"Please tell me! Galko-chan","native":"おしえて! ギャル子ちゃん","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":20,"id":21565,"mal_id":32485,"title":"Prison School: Mad Wax","english":null,"native":"監獄学園[プリズンスクール] マッドワックス","synonyms":["Kangoku Gakuen: Mad Wax","Kangoku Gakuen OVA","Prison School OVA"],"format":"OVA","episodes":1,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":3,"day":4},"status":"FINISHED"},{"index":21,"id":21330,"mal_id":31559,"title":"Prince of Stride: Alternative","english":"Prince of Stride: Alternative","native":"プリンス・オブ・ストライド オルタナティブ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":5},"status":"FINISHED"},{"index":22,"id":21577,"mal_id":32491,"title":"Kanojo to Kanojo no Neko: Everything Flows","english":"She and Her Cat -Everything Flows-","native":"彼女と彼女の猫 -Everything Flows-","synonyms":[],"format":"TV_SHORT","episodes":4,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":3,"day":4},"status":"FINISHED"},{"index":23,"id":21380,"mal_id":31710,"title":"Divine Gate","english":"Divine Gate","native":"ディバインゲート","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":8},"status":"FINISHED"},{"index":24,"id":21319,"mal_id":28391,"title":"Ao no Kanata no Four Rhythm","english":"AOKANA: Four Rhythm Across the Blue","native":"蒼の彼方のフォーリズム","synonyms":["AoKana"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"year":2016,"month":1,"day":12},"status":"FINISHED"}],"jikan":[{"index":0,"id":31043,"mal_id":31043,"title":"Boku dake ga Inai Machi","english":"Erased","native":"僕だけがいない街","synonyms":["The Town Where Only I am Missing","BokuMachi"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":1,"id":30831,"mal_id":30831,"title":"Kono Subarashii Sekai ni Shukufuku wo!","english":"KonoSuba: God's Blessing on This Wonderful World!","native":"この素晴らしい世界に祝福を!","synonyms":["Give Blessings to This Wonderful World!"],"format":"TV","episodes":10,"season":"WINTER","year":2016,"start_date":{"day":14,"month":1,"year":2016},"status":"Finished Airing"},{"index":2,"id":30654,"mal_id":30654,"title":"Ansatsu Kyoushitsu 2nd Season","english":"Assassination Classroom Second Season","native":"暗殺教室 第2期","synonyms":["Ansatsu Kyoushitsu Season 2","Ansatsu Kyoushitsu Final Season"],"format":"TV","episodes":25,"season":"WINTER","year":2016,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":3,"id":31859,"mal_id":31859,"title":"Hai to Gensou no Grimgar","english":"Grimgar: Ashes and Illusions","native":"灰と幻想のグリムガル","synonyms":["Grimgal of Ashes and Fantasies","Hai to Gensou no Grimgal"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":11,"month":1,"year":2016},"status":"Finished Airing"},{"index":4,"id":31580,"mal_id":31580,"title":"Ajin","english":"Ajin: Demi-Human","native":"亜人","synonyms":["Ajin"],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"day":16,"month":1,"year":2016},"status":"Finished Airing"},{"index":5,"id":31637,"mal_id":31637,"title":"Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2","english":"GATE Part 2","native":"GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール","synonyms":["Gate: Jieitai Kanochi nite","Kaku Tatakaeri 2nd Season","Gate: Thus the JSDF Fought There! Fire Dragon Arc","Gate: Jieitai Kanochi nite","Kaku Tatakaeri - Enryuu-hen"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":9,"month":1,"year":2016},"status":"Finished Airing"},{"index":6,"id":31442,"mal_id":31442,"title":"Musaigen no Phantom World","english":"Myriad Colors Phantom World","native":"無彩限のファントム・ワールド","synonyms":["Musaigen no Phantom World"],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"day":7,"month":1,"year":2016},"status":"Finished Airing"},{"index":7,"id":9260,"mal_id":9260,"title":"Kizumonogatari I: Tekketsu-hen","english":"Kizumonogatari Part 1: Iron-Blooded","native":"傷物語〈Ⅰ鉄血篇〉","synonyms":["Koyomi Vamp"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":8,"id":31636,"mal_id":31636,"title":"Dagashi Kashi","english":"Dagashi Kashi","native":"だがしかし","synonyms":["Dagashikashi"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":9,"id":30749,"mal_id":30749,"title":"Saijaku Muhai no Bahamut","english":"Undefeated Bahamut Chronicle","native":"最弱無敗の神装機竜《バハムート》","synonyms":["Saijaku Muhai no Bahamut"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":11,"month":1,"year":2016},"status":"Finished Airing"},{"index":10,"id":27833,"mal_id":27833,"title":"Durarara!!x2 Ketsu","english":"Durarara!! x2 Ketsu","native":"デュラララ!!×2 結","synonyms":["Durarara!!x2 Ketsu"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":9,"month":1,"year":2016},"status":"Finished Airing"},{"index":11,"id":31173,"mal_id":31173,"title":"Akagami no Shirayuki-hime 2nd Season","english":"Snow White with the Red Hair 2","native":"赤髪の白雪姫","synonyms":["Akagami no Shirayukihime 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":12,"month":1,"year":2016},"status":"Finished Airing"},{"index":12,"id":28735,"mal_id":28735,"title":"Shouwa Genroku Rakugo Shinjuu","english":"Showa Genroku Rakugo Shinju","native":"昭和元禄落語心中","synonyms":["Showa and Genroku Era Lover's Suicide Through Rakugo"],"format":"TV","episodes":13,"season":"WINTER","year":2016,"start_date":{"day":9,"month":1,"year":2016},"status":"Finished Airing"},{"index":13,"id":31163,"mal_id":31163,"title":"Dimension W","english":"Dimension W","native":"Dimension W","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":10,"month":1,"year":2016},"status":"Finished Airing"},{"index":14,"id":30346,"mal_id":30346,"title":"Doukyuusei","english":"Doukyusei: Classmates","native":"同級生","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":2,"year":2016},"status":"Finished Airing"},{"index":15,"id":32268,"mal_id":32268,"title":"Koyomimonogatari","english":"Koyomimonogatari","native":"暦物語","synonyms":["Calendar Story"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":10,"month":1,"year":2016},"status":"Finished Airing"},{"index":16,"id":31414,"mal_id":31414,"title":"Nijiiro Days","english":"Rainbow Days","native":"虹色デイズ","synonyms":["Nijiiro Days"],"format":"TV","episodes":24,"season":"WINTER","year":2016,"start_date":{"day":10,"month":1,"year":2016},"status":"Finished Airing"},{"index":17,"id":31553,"mal_id":31553,"title":"Charlotte: Tsuyoimono-tachi","english":"Charlotte: The Strong Ones","native":"Charlotte(シャーロット)特別篇 強い者たち","synonyms":["Charlotte Special","Strong People"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":3,"year":2016},"status":"Finished Airing"},{"index":18,"id":32013,"mal_id":32013,"title":"Oshiete! Galko-chan","english":"Please tell me! Galko-chan","native":"おしえて! ギャル子ちゃん","synonyms":["Oshiete! Gyaruko-chan"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":19,"id":31559,"mal_id":31559,"title":"Prince of Stride: Alternative","english":"Prince of Stride: Alternative","native":"プリンス・オブ・ストライド オルタナティブ","synonyms":["PuriSuto"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":5,"month":1,"year":2016},"status":"Finished Airing"},{"index":20,"id":31710,"mal_id":31710,"title":"Divine Gate","english":"Divine Gate","native":"ディバインゲート","synonyms":["ディバゲ"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":8,"month":1,"year":2016},"status":"Finished Airing"},{"index":21,"id":32485,"mal_id":32485,"title":"Prison School: Mad Wax","english":null,"native":"監獄学園[プリズンスクール] マッドワックス","synonyms":["Prison School OVA","Kangoku Gakuen OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":3,"year":2016},"status":"Finished Airing"},{"index":22,"id":28391,"mal_id":28391,"title":"Ao no Kanata no Four Rhythm","english":"Aokana: Four Rhythm Across the Blue","native":"蒼の彼方のフォーリズム","synonyms":["Aokana"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":12,"month":1,"year":2016},"status":"Finished Airing"},{"index":23,"id":32491,"mal_id":32491,"title":"Kanojo to Kanojo no Neko: Everything Flows","english":"She and Her Cat: Everything Flows","native":"彼女と彼女の猫 -Everything Flows-","synonyms":[],"format":"TV","episodes":4,"season":"WINTER","year":2016,"start_date":{"day":4,"month":3,"year":2016},"status":"Finished Airing"},{"index":24,"id":31914,"mal_id":31914,"title":"Shoujo-tachi wa Kouya wo Mezasu","english":"Girls Beyond the Wasteland","native":"少女たちは荒野を目指す","synonyms":["The girls who aim for the wildlands","Girls beyond the youth KOYA","Shokomeza"],"format":"TV","episodes":12,"season":"WINTER","year":2016,"start_date":{"day":7,"month":1,"year":2016},"status":"Finished Airing"}]},{"year":2018,"season":"winter","anilist":[{"index":0,"id":21827,"mal_id":33352,"title":"Violet Evergarden","english":"Violet Evergarden","native":"ヴァイオレット・エヴァーガーデン","synonyms":["ויולט אברגרדן","فيوليت","紫罗兰永恒花园"],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":11},"status":"FINISHED"},{"index":1,"id":99423,"mal_id":35849,"title":"Darling in the Franxx","english":"DARLING in the FRANXX","native":"ダーリン・イン・ザ・フランキス","synonyms":["DitF","DarliFra","Любимый во Франксе"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":13},"status":"FINISHED"},{"index":2,"id":98460,"mal_id":35120,"title":"DEVILMAN crybaby","english":"Devilman Crybaby","native":"DEVILMAN crybaby","synonyms":["デビルマン クライベイビー","דווילמן: בכיין","طفل الشيطان","เดวิลแมน ครายเบบี้"],"format":"ONA","episodes":10,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":5},"status":"FINISHED"},{"index":3,"id":99539,"mal_id":34577,"title":"Nanatsu no Taizai: Imashime no Fukkatsu","english":"The Seven Deadly Sins: Revival of the Commandments","native":"七つの大罪 戒めの復活","synonyms":["The Seven Deadly Sins: Die Rückkehr der Gebote","ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ","The Seven Deadly Sins: Odrodzenie przykazań","Семь смертных грехов: Возрождение Заповедей"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":13},"status":"FINISHED"},{"index":4,"id":98437,"mal_id":35073,"title":"Overlord II","english":"Overlord II","native":"オーバーロードⅡ","synonyms":["Over Lord 2","โอเวอร์ลอร์ด ภาค 2","โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2"],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":9},"status":"FINISHED"},{"index":5,"id":98034,"mal_id":34612,"title":"Saiki Kusuo no Ψ-nan 2","english":"The Disastrous Life of Saiki K. Season 2","native":"斉木楠雄のΨ難 2","synonyms":["Saiki Kusuo no Psi Nan 2"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":17},"status":"FINISHED"},{"index":6,"id":99468,"mal_id":35860,"title":"Karakai Jouzu no Takagi-san","english":"Teasing Master Takagi-san","native":"からかい上手の高木さん","synonyms":["Skilled Teaser Takagi-san","Takagi-san: Experta en Bromas Pesadas","טאקאגי-סאן אלופת ההקנטות","擅长捉弄的高木同学","سيد الدعابة تاكاجي-سان","Nhất quỷ Nhì ma, Thứ ba Takagi","Nicht schon wieder, Takagi-san","แกล้งนัก รักนะ รู้ยัง ","Τακάγκι-σαν, το Αρχιπειραχτήρι"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":8},"status":"FINISHED"},{"index":7,"id":99426,"mal_id":35839,"title":"Sora yori mo Tooi Basho","english":"A Place Further Than the Universe","native":"宇宙よりも遠い場所","synonyms":["Uchuu Yorimo Toui Basho","Sora yorimo Tooi Basho","Uchuu yori mo Tooi Basho","Yorimoi","מקום רחוק יותר מהיקום","ตามหัวใจไปสุดขอบฟ้า","ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ"],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":2},"status":"FINISHED"},{"index":8,"id":98444,"mal_id":34798,"title":"Yuru Camp△","english":"Laid-Back Camp","native":"ゆるキャン△","synonyms":["Yurucamp","Yurukyan△","摇曳露营△"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":4},"status":"FINISHED"},{"index":9,"id":99457,"mal_id":35851,"title":"Sayonara no Asa ni Yakusoku no Hana wo Kazarou","english":"Maquia: When the Promised Flower Blooms","native":"さよならの朝に約束の花をかざろう","synonyms":["SayoAsa","さよあさ"," Maquia - Decoriamo la mattina dell'addio con i fiori promessi","Maquia - Eine unsterbliche Liebesgeschichte","Укрась прощальное утро цветами обещания","Maquia: Una historia de amor eterno"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":2,"day":24},"status":"FINISHED"},{"index":10,"id":97832,"mal_id":34382,"title":"citrus","english":"Citrus","native":"citrus","synonyms":["Цитрус"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":6},"status":"FINISHED"},{"index":11,"id":97907,"mal_id":34497,"title":"Death March Kara Hajimaru Isekai Kyousoukyoku","english":"Death March to the Parallel World Rhapsody","native":"デスマーチからはじまる異世界狂想曲","synonyms":["โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช","Pawai Maut Berujung Rapsodi Dunia Lain"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":11},"status":"FINISHED"},{"index":12,"id":98635,"mal_id":35466,"title":"ReLIFE: Kanketsu-hen","english":"ReLIFE: Final Arc","native":"ReLIFE 完結編","synonyms":["ReLIFE OVA","Повторная жизнь ОВА"],"format":"OVA","episodes":4,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":3,"day":21},"status":"FINISHED"},{"index":13,"id":21665,"mal_id":32827,"title":"B: The Beginning","english":"B: The Beginning","native":"B: The Beginning","synonyms":["Perfect Bones","بي: البداية"],"format":"ONA","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":3,"day":2},"status":"FINISHED"},{"index":14,"id":98503,"mal_id":35222,"title":"Gakuen Babysitters","english":"School Babysitters","native":"学園ベビーシッターズ","synonyms":["学园奶爸","นักเรียนพี่เลี้ยงเด็ก"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":7},"status":"FINISHED"},{"index":15,"id":98385,"mal_id":34984,"title":"Koi wa Ameagari no You ni","english":"After the Rain","native":"恋は雨上がりのように","synonyms":["KoiAme","Love is Like after the Rain","Depois da Chuva","Dopo la pioggia","Après la pluie","เส้นทางชีวิต ลิขิตหัวใจ","Después de la lluvia"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":10},"status":"FINISHED"},{"index":16,"id":98384,"mal_id":34944,"title":"Bungou Stray Dogs: DEAD APPLE","english":"Bungo Stray Dogs: DEAD APPLE","native":"文豪ストレイドッグス DEAD APPLE","synonyms":["Bungou Stray Dogs Movie"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":3,"day":3},"status":"FINISHED"},{"index":17,"id":98762,"mal_id":35608,"title":"Chuunibyou demo Koi ga Shitai!: Take On Me","english":"Love, Chunibyo & Other Delusions: Take on Me","native":"映画 中二病でも恋がしたい! -Take On Me-","synonyms":["Miłość, gimbaza i kosmiczna faza! Za mną leć"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":6},"status":"FINISHED"},{"index":18,"id":97768,"mal_id":34279,"title":"Grancrest Senki","english":"Record of Grancrest War","native":"グランクレスト戦記","synonyms":["บันทึกสงครามแกรนเครสท์"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":6},"status":"FINISHED"},{"index":19,"id":98549,"mal_id":35330,"title":"Poputepipikku","english":"Pop Team Epic","native":"ポプテピピック","synonyms":["PPTP","PTE","Poptepipic"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":7},"status":"FINISHED"},{"index":20,"id":21717,"mal_id":33047,"title":"Fate/EXTRA Last Encore","english":"Fate/EXTRA Last Encore","native":"Fate/EXTRA Last Encore","synonyms":["Oblitus Copernican Theory","Illustrias Geocentric Theory","פייט/אקסטרה ההדרן האחרון","Судьба/Дополнение: Последний вызов на бис"],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":28},"status":"FINISHED"},{"index":21,"id":100784,"mal_id":36838,"title":"Gintama.: Shirogane no Tamashii-hen","english":"Gintama.: Silver Soul Arc","native":"銀魂. 銀ノ魂篇","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":8},"status":"FINISHED"},{"index":22,"id":99940,"mal_id":36124,"title":"Itou Junji: Collection","english":"Junji Ito Collection","native":"伊藤潤二「コレクション」","synonyms":["จุนจิ อิโต้ คอลเลคชั่นสยอง"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":5},"status":"FINISHED"},{"index":23,"id":99507,"mal_id":35905,"title":"Ryuuou no Oshigoto!","english":"The Ryuo's Work is Never Done!","native":"りゅうおうのおしごと!","synonyms":["สอนหมากหนูที คุณพี่จ้าวมังกร!"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":8},"status":"FINISHED"},{"index":24,"id":100332,"mal_id":36548,"title":"Kokkoku","english":"KOKKOKU","native":"刻刻","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"year":2018,"month":1,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":33352,"mal_id":33352,"title":"Violet Evergarden","english":"Violet Evergarden","native":"ヴァイオレット・エヴァーガーデン","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"day":11,"month":1,"year":2018},"status":"Finished Airing"},{"index":1,"id":35849,"mal_id":35849,"title":"Darling in the FranXX","english":"DARLING in the FRANXX","native":"ダーリン・イン・ザ・フランキス","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"day":13,"month":1,"year":2018},"status":"Finished Airing"},{"index":2,"id":35120,"mal_id":35120,"title":"Devilman: Crybaby","english":"Devilman: Crybaby","native":"DEVILMAN crybaby","synonyms":[],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":5,"month":1,"year":2018},"status":"Finished Airing"},{"index":3,"id":34577,"mal_id":34577,"title":"Nanatsu no Taizai: Imashime no Fukkatsu","english":"The Seven Deadly Sins: Revival of the Commandments","native":"七つの大罪 戒めの復活","synonyms":["Seven Deadly Sins Season 2"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"day":13,"month":1,"year":2018},"status":"Finished Airing"},{"index":4,"id":35073,"mal_id":35073,"title":"Overlord II","english":"Overlord II","native":"オーバーロードⅡ","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"day":9,"month":1,"year":2018},"status":"Finished Airing"},{"index":5,"id":34612,"mal_id":34612,"title":"Saiki Kusuo no Ψ-nan 2","english":"The Disastrous Life of Saiki K. 2","native":"斉木楠雄のΨ難 2","synonyms":["Saiki Kusuo no Psi Nan 2"],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"day":17,"month":1,"year":2018},"status":"Finished Airing"},{"index":6,"id":35860,"mal_id":35860,"title":"Karakai Jouzu no Takagi-san","english":"Teasing Master Takagi-san","native":"からかい上手の高木さん","synonyms":["Skilled Teaser Takagi-san"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":8,"month":1,"year":2018},"status":"Finished Airing"},{"index":7,"id":34497,"mal_id":34497,"title":"Death March kara Hajimaru Isekai Kyousoukyoku","english":"Death March to the Parallel World Rhapsody","native":"デスマーチからはじまる異世界狂想曲","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":11,"month":1,"year":2018},"status":"Finished Airing"},{"index":8,"id":34382,"mal_id":34382,"title":"Citrus","english":"Citrus","native":"シトラス","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":6,"month":1,"year":2018},"status":"Finished Airing"},{"index":9,"id":35839,"mal_id":35839,"title":"Sora yori mo Tooi Basho","english":"A Place Further Than The Universe","native":"宇宙よりも遠い場所","synonyms":["Uchuu yori mo Tooi Basho","A Story That Leads to the Antarctica","Yorimoi"],"format":"TV","episodes":13,"season":"WINTER","year":2018,"start_date":{"day":2,"month":1,"year":2018},"status":"Finished Airing"},{"index":10,"id":34798,"mal_id":34798,"title":"Yuru Camp△","english":"Laid-Back Camp","native":"ゆるキャン△","synonyms":["Yurukyan"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":4,"month":1,"year":2018},"status":"Finished Airing"},{"index":11,"id":35851,"mal_id":35851,"title":"Sayonara no Asa ni Yakusoku no Hana wo Kazarou","english":"Maquia: When the Promised Flower Blooms","native":"さよならの朝に約束の花をかざろう","synonyms":["Let's Decorate the Promised Flowers in the Morning of Farewells","SayoAsa"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":2,"year":2018},"status":"Finished Airing"},{"index":12,"id":35466,"mal_id":35466,"title":"ReLIFE: Kanketsu-hen","english":"ReLIFE: Final Arc","native":"ReLIFE 完結編","synonyms":[],"format":"Special","episodes":4,"season":null,"year":null,"start_date":{"day":21,"month":3,"year":2018},"status":"Finished Airing"},{"index":13,"id":35222,"mal_id":35222,"title":"Gakuen Babysitters","english":"School Babysitters","native":"学園ベビーシッターズ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":7,"month":1,"year":2018},"status":"Finished Airing"},{"index":14,"id":32827,"mal_id":32827,"title":"B: The Beginning","english":"B: The Beginning","native":"B: The Beginning","synonyms":[],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":2,"month":3,"year":2018},"status":"Finished Airing"},{"index":15,"id":34279,"mal_id":34279,"title":"Grancrest Senki","english":"Record of Grancrest War","native":"グランクレスト戦記","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2018,"start_date":{"day":6,"month":1,"year":2018},"status":"Finished Airing"},{"index":16,"id":34984,"mal_id":34984,"title":"Koi wa Ameagari no You ni","english":"After the Rain","native":"恋は雨上がりのように","synonyms":["Koi wa Amaagari no You ni","Love is Like after the Rain","KoiAme"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":12,"month":1,"year":2018},"status":"Finished Airing"},{"index":17,"id":34944,"mal_id":34944,"title":"Bungou Stray Dogs: Dead Apple","english":"Bungo Stray Dogs: Dead Apple","native":"文豪ストレイドッグス DEAD APPLE","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":3,"month":3,"year":2018},"status":"Finished Airing"},{"index":18,"id":35608,"mal_id":35608,"title":"Chuunibyou demo Koi ga Shitai! Movie: Take On Me","english":"Love, Chunibyo & Other Delusions!: Take On Me","native":"映画 中二病でも恋がしたい!-Take On Me-","synonyms":["Eiga Chuunibyou demo Koi ga Shitai! Take On Me"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":1,"year":2018},"status":"Finished Airing"},{"index":19,"id":36838,"mal_id":36838,"title":"Gintama. Shirogane no Tamashii-hen","english":"Gintama. Silver Soul Arc","native":"銀魂. 銀ノ魂篇","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":8,"month":1,"year":2018},"status":"Finished Airing"},{"index":20,"id":33047,"mal_id":33047,"title":"Fate/Extra: Last Encore","english":"Fate/Extra: Last Encore","native":"Fate/EXTRA Last Encore","synonyms":[],"format":"TV","episodes":10,"season":"WINTER","year":2018,"start_date":{"day":28,"month":1,"year":2018},"status":"Finished Airing"},{"index":21,"id":35330,"mal_id":35330,"title":"Poputepipikku","english":"Pop Team Epic","native":"ポプテピピック","synonyms":["PPTP","Poptepipic"],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":7,"month":1,"year":2018},"status":"Finished Airing"},{"index":22,"id":35905,"mal_id":35905,"title":"Ryuuou no Oshigoto!","english":"The Ryuo's Work is Never Done!","native":"りゅうおうのおしごと!","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":8,"month":1,"year":2018},"status":"Finished Airing"},{"index":23,"id":34964,"mal_id":34964,"title":"Killing Bites","english":"Killing Bites","native":"キリングバイツ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":13,"month":1,"year":2018},"status":"Finished Airing"},{"index":24,"id":36124,"mal_id":36124,"title":"Itou Junji: Collection","english":"Junji Ito Collection","native":"伊藤潤二「コレクション」","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2018,"start_date":{"day":5,"month":1,"year":2018},"status":"Finished Airing"}]},{"year":2020,"season":"winter","anilist":[{"index":0,"id":106625,"mal_id":38883,"title":"Haikyuu!! TO THE TOP","english":"HAIKYU!! TO THE TOP","native":"ハイキュー!! TO THE TOP","synonyms":["Haikyu!! Season 4","Haikyuu!! Season 4","ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1","排球少年!! 第四季"],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":11},"status":"FINISHED"},{"index":1,"id":108463,"mal_id":39534,"title":"Jibaku Shounen Hanako-kun","english":"Toilet-bound Hanako-kun","native":"地縛少年 花子くん","synonyms":["지박소년 하나코 군","地缚少年花子君","Туалетный мальчик Ханако","Hanako-kun e os Mistérios do Colégio Kamone","ฮานาโกะคุง วิญญาณติดที่"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":10},"status":"FINISHED"},{"index":2,"id":105228,"mal_id":38668,"title":"Dorohedoro","english":"Dorohedoro","native":"ドロヘドロ","synonyms":["دوروهيدورو","สาปพันธุ์อสูร","Дорохедоро"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":13},"status":"FINISHED"},{"index":3,"id":106479,"mal_id":38790,"title":"Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.","english":"BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.","native":"痛いのは嫌なので防御力に極振りしたいと思います。","synonyms":["I hate being in pain, so I think I’ll make a full defense build","bofuri","因为太怕痛就全点防御力了。","Bofuri : Je suis pas venue ici pour souffrir alors j'ai tout mis en défense.","น้องโล่สายแทงก์แกร่งเกินร้อย","Bofuri: Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan","Бофури. Я боюсь боли, так что качаю только защиту"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":8},"status":"FINISHED"},{"index":4,"id":105190,"mal_id":38656,"title":"Darwin's Game","english":"Darwin's Game","native":"ダーウィンズゲーム","synonyms":["达尔文游戏"],"format":"TV","episodes":11,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":4},"status":"FINISHED"},{"index":5,"id":100643,"mal_id":36862,"title":"Made in Abyss: Fukaki Tamashii no Reimei","english":"Made in Abyss: Dawn of the Deep Soul","native":"メイドインアビス 深き魂の黎明","synonyms":["Made in Abyss: Dawn of a Deep Soul"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":17},"status":"FINISHED"},{"index":6,"id":107201,"mal_id":39017,"title":"Kyokou Suiri","english":"In/Spectre","native":"虚構推理","synonyms":["虚构推理","ไขปมปริศนาภูต","Ложные выводы"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":12},"status":"FINISHED"},{"index":7,"id":101168,"mal_id":37345,"title":"Plunderer","english":"Plunderer","native":"プランダラ","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":9},"status":"FINISHED"},{"index":8,"id":111790,"mal_id":40262,"title":"Haikyuu!! Riku VS Kuu","english":"HAIKYU!! LAND VS. AIR","native":"ハイキュー!! 陸 VS 空","synonyms":["ボールの\"道\"","Booru no \"Michi\"","The \"Path\" of the Ball","Haikyuu!! OVA","ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA"],"format":"OVA","episodes":2,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":10},"status":"FINISHED"},{"index":9,"id":110350,"mal_id":40046,"title":"ID: INVADED","english":"ID: INVADED","native":"イド:インヴェイデッド","synonyms":["异度侵入 ID:INVADED"],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":6},"status":"FINISHED"},{"index":10,"id":107067,"mal_id":38992,"title":"Rikei ga Koi ni Ochita no de Shoumei shitemita.","english":"Science Fell in Love, So I Tried to Prove It","native":"理系が恋に落ちたので証明してみた。","synonyms":["RikeKoi","理科生坠入情网,故尝试证明。","พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์"],"format":"ONA","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":11},"status":"FINISHED"},{"index":11,"id":109298,"mal_id":39792,"title":"Eizouken ni wa Te wo Dasu na!","english":"Keep Your Hands Off Eizouken!","native":"映像研には手を出すな!","synonyms":["Don't mess with the Motion Picture Club!","Hands off the Motion Picture Club!","别对映像研出手!","Ước mơ sản xuất anime"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":6},"status":"FINISHED"},{"index":12,"id":110270,"mal_id":40010,"title":"Ishuzoku Reviewers","english":"Interspecies Reviewers","native":"異種族レビュアーズ","synonyms":["异种族风俗娘评鉴指南"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":11},"status":"FINISHED"},{"index":13,"id":108623,"mal_id":39576,"title":"Goblin Slayer: GOBLIN'S CROWN","english":"GOBLIN SLAYER -GOBLIN’S CROWN-","native":"ゴブリンスレイヤー -GOBLIN'S CROWN-","synonyms":["Goblin Slayer: Korona"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":2,"day":1},"status":"FINISHED"},{"index":14,"id":108617,"mal_id":39575,"title":"Somali to Mori no Kamisama","english":"Somali and the Forest Spirit","native":"ソマリと森の神様","synonyms":["Somari and the Guardian of the Forest"," Somali et l'esprit de la forêt"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":10},"status":"FINISHED"},{"index":15,"id":104462,"mal_id":38481,"title":"Toaru Kagaku no Railgun T","english":"A Certain Scientific Railgun T","native":"とある科学の超電磁砲T","synonyms":["Toaru Kagaku no Railgun 3","とある科学の超電磁砲3","A Certain Scientific Railgun 3","เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T","เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3","Siêu Railgun của khoa học nào đó","Railgun T Ilmu Pengetahuan Tertentu"],"format":"TV","episodes":25,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":10},"status":"FINISHED"},{"index":16,"id":110178,"mal_id":39988,"title":"Isekai Quartet 2","english":"Isekai Quartet 2","native":"異世界かるてっと 2","synonyms":["Квартет попаданцев 2"],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":15},"status":"FINISHED"},{"index":17,"id":106863,"mal_id":38924,"title":"Nekopara","english":"Nekopara","native":"ネコぱら","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":112293,"mal_id":40483,"title":"Murenase! Seton Gakuen","english":"Seton Academy: Join the Pack!","native":"群れなせ!シートン学園","synonyms":["Murenase! Shiiton Gakuen"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":7},"status":"FINISHED"},{"index":19,"id":107420,"mal_id":38909,"title":"Infinite Dendrogram","english":"Infinite Dendrogram","native":"インフィニット・デンドログラム","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":9},"status":"FINISHED"},{"index":20,"id":104051,"mal_id":38256,"title":"Magia Record: Mahou Shoujo Madoka☆Magica Gaiden","english":"Magia Record: Puella Magi Madoka Magica Side Story","native":"マギアレコード 魔法少女まどか☆マギカ外伝","synonyms":["MagiReco","Magia Record","สาวน้อยเวทมนตร์ มาโดกะ","สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]","Записи о магии: Другая история девочки-волшебницы Мадоки"],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":5},"status":"FINISHED"},{"index":21,"id":111501,"mal_id":40392,"title":"Runway de Waratte","english":"Smile Down the Runway","native":"ランウェイで笑って","synonyms":["Smile at the Runway","ถักทอฝันสู่รันเวย์"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":11},"status":"FINISHED"},{"index":22,"id":112125,"mal_id":40453,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II: Mujintou ni Yakusou wo Motomeru no wa Machigatteiru Darou ka","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to Go Searching for Herbs on a Deserted Island?","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅡ 無人島に薬草を求めるのは間違っているだろうか","synonyms":["Is It Wrong to Try to Pick Up Girls in a Dungeon? II OVA","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA","ダンまちⅡ OVA"],"format":"OVA","episodes":1,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":29},"status":"FINISHED"},{"index":23,"id":108092,"mal_id":39388,"title":"Koisuru Asteroid","english":"Asteroid in Love","native":"恋する小惑星〈アステロイド〉","synonyms":["Koisuru Shouwakusei","KoiAs"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":3},"status":"FINISHED"},{"index":24,"id":113417,"mal_id":40746,"title":"Overflow","english":"Overflow","native":"おーばーふろぉ","synonyms":["오버플로우","Overflow: Desbordándose","Overflow: Transbordando","Accident Dans Le Bain"],"format":"ONA","episodes":8,"season":"WINTER","year":2020,"start_date":{"year":2020,"month":1,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":38883,"mal_id":38883,"title":"Haikyuu!! To the Top","english":"Haikyu!! To the Top","native":"ハイキュー!! TO THE TOP","synonyms":["Haikyuu!! (2020)","Haikyuu!! Fourth Season","Haikyuu!! 4th Season"],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"day":11,"month":1,"year":2020},"status":"Finished Airing"},{"index":1,"id":39534,"mal_id":39534,"title":"Jibaku Shounen Hanako-kun","english":"Toilet-Bound Hanako-kun","native":"地縛少年花子くん","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":10,"month":1,"year":2020},"status":"Finished Airing"},{"index":2,"id":38668,"mal_id":38668,"title":"Dorohedoro","english":null,"native":"ドロヘドロ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":13,"month":1,"year":2020},"status":"Finished Airing"},{"index":3,"id":38656,"mal_id":38656,"title":"Darwin's Game","english":"Darwin's Game","native":"ダーウィンズゲーム","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2020,"start_date":{"day":4,"month":1,"year":2020},"status":"Finished Airing"},{"index":4,"id":38790,"mal_id":38790,"title":"Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.","english":"BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.","native":"痛いのは嫌なので防御力に極振りしたいと思います。","synonyms":["I hate being in pain","so I think I'll make a full defense build.","I Hate Getting Hurt","So I Put All My Skill Points Into Defense"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":8,"month":1,"year":2020},"status":"Finished Airing"},{"index":5,"id":36862,"mal_id":36862,"title":"Made in Abyss Movie 3: Fukaki Tamashii no Reimei","english":"Made in Abyss: Dawn of the Deep Soul","native":"劇場版メイドインアビス 深き魂の黎明","synonyms":["Gekijouban Made in Abyss: Fukaki Tamashii no Reimei"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":1,"year":2020},"status":"Finished Airing"},{"index":6,"id":39017,"mal_id":39017,"title":"Kyokou Suiri","english":"In/Spectre","native":"虚構推理","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":12,"month":1,"year":2020},"status":"Finished Airing"},{"index":7,"id":40010,"mal_id":40010,"title":"Ishuzoku Reviewers","english":"Interspecies Reviewers","native":"異種族レビュアーズ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":11,"month":1,"year":2020},"status":"Finished Airing"},{"index":8,"id":37345,"mal_id":37345,"title":"Plunderer","english":"Plunderer","native":"プランダラ","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2020,"start_date":{"day":9,"month":1,"year":2020},"status":"Finished Airing"},{"index":9,"id":40046,"mal_id":40046,"title":"Id:Invaded","english":"ID: INVADED","native":"ID:INVADED イド:インヴェイデッド","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"day":6,"month":1,"year":2020},"status":"Finished Airing"},{"index":10,"id":41094,"mal_id":41094,"title":"Xian Wang de Richang Shenghuo","english":"The Daily Life of the Immortal King","native":"仙王的日常生活","synonyms":["Xian Wang de Ri Chang Sheng Huo","不死身な僕の日常"],"format":"ONA","episodes":15,"season":null,"year":null,"start_date":{"day":18,"month":1,"year":2020},"status":"Finished Airing"},{"index":11,"id":38992,"mal_id":38992,"title":"Rikei ga Koi ni Ochita no de Shoumei shitemita.","english":"Science Fell in Love, So I Tried to Prove It","native":"理系が恋に落ちたので証明してみた。","synonyms":["RikeKoi"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":11,"month":1,"year":2020},"status":"Finished Airing"},{"index":12,"id":39792,"mal_id":39792,"title":"Eizouken ni wa Te wo Dasu na!","english":"Keep Your Hands Off Eizouken!","native":"映像研には手を出すな!","synonyms":["Hands off the Motion Pictures Club!"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":6,"month":1,"year":2020},"status":"Finished Airing"},{"index":13,"id":40262,"mal_id":40262,"title":"Haikyuu!! Riku vs. Kuu","english":"Haikyu!! Land vs. Air","native":"ハイキュー!! 陸VS空","synonyms":["Haikyuu!! Jump Festa 2020 Special","Haikyuu!! OVA","Haikyuu!!: Land vs Sky","Haikyuu!!: The Volleyball Way","Haikyuu!!: Ball no Michi"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":22,"month":1,"year":2020},"status":"Finished Airing"},{"index":14,"id":39576,"mal_id":39576,"title":"Goblin Slayer: Goblin's Crown","english":"Goblin Slayer: Goblin's Crown","native":"ゴブリンスレイヤー -GOBLIN'S CROWN-","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":1,"month":2,"year":2020},"status":"Finished Airing"},{"index":15,"id":39575,"mal_id":39575,"title":"Somali to Mori no Kamisama","english":"Somali and the Forest Spirit","native":"ソマリと森の神様","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":10,"month":1,"year":2020},"status":"Finished Airing"},{"index":16,"id":38481,"mal_id":38481,"title":"Toaru Kagaku no Railgun T","english":"A Certain Scientific Railgun T","native":"とある科学の超電磁砲[レールガン]T","synonyms":["Toaru Kagaku no Railgun 3","Toaru Kagaku no Choudenjihou 3","A Certain Scientific Railgun 3"],"format":"TV","episodes":25,"season":"WINTER","year":2020,"start_date":{"day":10,"month":1,"year":2020},"status":"Finished Airing"},{"index":17,"id":39988,"mal_id":39988,"title":"Isekai Quartet 2","english":"Isekai Quartet 2","native":"異世界かるてっと2","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":15,"month":1,"year":2020},"status":"Finished Airing"},{"index":18,"id":40483,"mal_id":40483,"title":"Murenase! Seton Gakuen","english":"Seton Academy: Join the Pack!","native":"群れなせ!シートン学園","synonyms":["Come Together! to the Seton Academy"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":7,"month":1,"year":2020},"status":"Finished Airing"},{"index":19,"id":38909,"mal_id":38909,"title":"Infinite Dendrogram","english":"Infinite Dendrogram","native":"-インフィニット・デンドログラム-","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"day":9,"month":1,"year":2020},"status":"Finished Airing"},{"index":20,"id":38924,"mal_id":38924,"title":"Nekopara","english":"Nekopara","native":"ネコぱら","synonyms":["Neko Para"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":9,"month":1,"year":2020},"status":"Finished Airing"},{"index":21,"id":38256,"mal_id":38256,"title":"Magia Record: Mahou Shoujo Madoka☆Magica Gaiden","english":"Magia Record: Puella Magi Madoka Magica Side Story","native":"マギアレコード 魔法少女まどか☆マギカ外伝 (TV)","synonyms":["Puella Magi Madoka Magica Side Story: Magia Record"],"format":"TV","episodes":13,"season":"WINTER","year":2020,"start_date":{"day":5,"month":1,"year":2020},"status":"Finished Airing"},{"index":22,"id":40746,"mal_id":40746,"title":"Overflow","english":"Overflow","native":"おーばーふろぉ","synonyms":[],"format":"ONA","episodes":8,"season":null,"year":null,"start_date":{"day":6,"month":1,"year":2020},"status":"Finished Airing"},{"index":23,"id":40392,"mal_id":40392,"title":"Runway de Waratte","english":"Smile Down the Runway","native":"ランウェイで笑って","synonyms":["Smile at the Runway"],"format":"TV","episodes":12,"season":"WINTER","year":2020,"start_date":{"day":11,"month":1,"year":2020},"status":"Finished Airing"},{"index":24,"id":40453,"mal_id":40453,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to go Searching for Herbs on a Deserted Island?","native":"ダンジョンに出会いを求めるのは間違っているだろうか 2期 OVA","synonyms":["DanMachi II OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":29,"month":1,"year":2020},"status":"Finished Airing"}]},{"year":2022,"season":"winter","anilist":[{"index":0,"id":142329,"mal_id":47778,"title":"Kimetsu no Yaiba: Yuukaku-hen","english":"Demon Slayer: Kimetsu no Yaiba Entertainment District Arc","native":"鬼滅の刃 遊郭編","synonyms":["KnY 2","Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs","ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์","Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech","귀멸의 칼날: 환락의 거리편","Клинок, Рассекающий Демонов: Квартал Красных Фонарей"],"format":"TV","episodes":11,"season":"WINTER","year":2022,"start_date":{"year":2021,"month":12,"day":5},"status":"FINISHED"},{"index":1,"id":131681,"mal_id":48583,"title":"Shingeki no Kyojin: The Final Season Part 2","english":"Attack on Titan Final Season Part 2","native":"進撃の巨人 The Final Season Part 2","synonyms":["SnK 4","AoT 4","L'attaque des titans Saison Finale Partie 2","Shingeki no Kyojin: The Final Season (2022)","اتک عن تایتان","حمله به غول ها","حمله به تایتان فصل 4 "," ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2","ผ่าพิภพไททัน ภาค 4","L'Attacco dei Giganti 4 Parte 2","Атака титанов: Финал. Часть 2"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":10},"status":"FINISHED"},{"index":2,"id":132405,"mal_id":48736,"title":"Sono Bisque Doll wa Koi wo Suru","english":"My Dress-Up Darling","native":"その着せ替え人形は恋をする","synonyms":["Sono Kisekae Ningyou wa Koi wo suru","หนุ่มเย็บผ้ากับสาวนักคอสเพลย์","その着せ替え人形(ビスク・ドール)は恋をする","kisekoi","Si Boneka Rias Sedang Jatuh Cinta","Projekt: cosplay","Любовь с иголочки","着せ恋"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":9},"status":"FINISHED"},{"index":3,"id":112323,"mal_id":40507,"title":"Arifureta Shokugyou de Sekai Saikyou 2nd season","english":"Arifureta: From Commonplace to World's Strongest Season 2","native":"ありふれた職業で世界最強 2nd season","synonyms":["อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2","ARIFURETA: from commonplace to world's strongest second season"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":13},"status":"FINISHED"},{"index":4,"id":129190,"mal_id":47159,"title":"Tensai Ouji no Akaji Kokka Saisei Jutsu","english":"The Genius Prince's Guide to Raising a Nation Out of Debt","native":"天才王子の赤字国家再生術","synonyms":["บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน","天才王子的赤字国家振兴术","Kiat Pemulihan Negara Berutang Ala Pangeran Genius"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":11},"status":"FINISHED"},{"index":5,"id":135136,"mal_id":49114,"title":"Vanitas no Carte Part 2","english":"The Case Study of Vanitas Part 2","native":"ヴァニタスの手記 2クール","synonyms":["บันทึกแวมไพร์วานิทัส พาร์ท 2","Vanitas no Karte (2022)"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":15},"status":"FINISHED"},{"index":6,"id":129191,"mal_id":47161,"title":"Shikkakumon no Saikyou Kenja","english":"The Strongest Sage with the Weakest Crest","native":"失格紋の最強賢者","synonyms":["ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ","失格纹的最强贤者"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":8},"status":"FINISHED"},{"index":7,"id":139648,"mal_id":49930,"title":"Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2","english":"How a Realist Hero Rebuilt the Kingdom Part 2","native":"現実主義勇者の王国再建記 第二部","synonyms":["ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2","Genkoku Part 2","Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)"],"format":"TV","episodes":13,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":9},"status":"FINISHED"},{"index":8,"id":130591,"mal_id":48414,"title":"Sabikui Bisco","english":"Sabikui Bisco","native":"錆喰いビスコ","synonyms":["Rust-Eater Bisco","บิสโก้ นรชนคนโคตรเห็ด","Bisco Si Pemakan Karat"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":11},"status":"FINISHED"},{"index":9,"id":141534,"mal_id":50360,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 - Eris no Goblin Toubatsu","english":"Mushoku Tensei: Jobless Reincarnation Cour 2 - Eris the Goblin Slayer","native":"無職転生 ~異世界行ったら本気だす~ 第2クール エリスのゴブリン討伐","synonyms":["Mushoku Tensei: Jobless Reincarnation Cour 2 Special","Mushoku Tensei: Jobless Reincarnation Part 2 Special","เกิดชาตินี้พี่ต้องเทพ OVA","Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 Special"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":3,"day":16},"status":"FINISHED"},{"index":10,"id":126288,"mal_id":44055,"title":"Sasaki to Miyano","english":"Sasaki and Miyano","native":"佐々木と宮野","synonyms":["ซาซากิกับมิยาโนะ","Sasaki i Miyano"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":10},"status":"FINISHED"},{"index":11,"id":118465,"mal_id":41946,"title":"Shuumatsu no Harem","english":"World's End Harem","native":"終末のハーレム","synonyms":["ฮาเร็มวันสิ้นโลก","Гарем конца света","Тотальный гарем"],"format":"TV","episodes":11,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":7},"status":"FINISHED"},{"index":12,"id":131548,"mal_id":48553,"title":"Akebi-chan no Sailor Fuku","english":"Akebi’s Sailor Uniform","native":"明日ちゃんのセーラー服","synonyms":["Akebi-chan no Serafuku","Akebi's School Uniform","ชุดกะลาสีของอาเคบิจัง"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":9},"status":"FINISHED"},{"index":13,"id":139589,"mal_id":49909,"title":"Kotarou wa Hitorigurashi","english":"Kotaro Lives Alone","native":"コタローは1人暮らし","synonyms":["Kotaro vive solo","โคทาโร่อยู่คนเดียว","Kotaro En Solo","Ο Κόταρο Ζει Μόνος του","Kotaro Vai Morar Sozinho","Kotaro abita da solo"],"format":"ONA","episodes":10,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":3,"day":10},"status":"FINISHED"},{"index":14,"id":127050,"mal_id":44516,"title":"Koroshi Ai","english":"Love of Kill","native":"殺し愛","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":12},"status":"FINISHED"},{"index":15,"id":134252,"mal_id":48997,"title":"Fantasy Bishoujo Juniku Oji-san to","english":"Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout","native":"異世界美少女受肉おじさんと","synonyms":["เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ","Fabiniku","В другом мире с мужчиной, обратившимся красоткой","ファ美肉おじさん"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":12},"status":"FINISHED"},{"index":16,"id":130166,"mal_id":48239,"title":"Leadale no Daichi nite","english":"In the Land of Leadale","native":"リアデイルの大地にて","synonyms":["มหาพิภพลีอาเดล","World of Leadale"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":5},"status":"FINISHED"},{"index":17,"id":138424,"mal_id":49721,"title":"Karakai Jouzu no Takagi-san 3","english":"Teasing Master Takagi-san Season 3","native":"からかい上手の高木さん3","synonyms":["แกล้งนัก รักนะรู้ยัง ภาค 3"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":8},"status":"FINISHED"},{"index":18,"id":136192,"mal_id":49310,"title":"Fruits Basket: prelude","english":"Fruits Basket -prelude-","native":"フルーツバスケット -prelude-","synonyms":["The Story of Kyoko and Katsuya","今日子と勝也の物語","Kyouko to Katsuya no Monogatari","Fruits Basket Movie","Корзинка фруктов: Прелюдия"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":2,"day":18},"status":"FINISHED"},{"index":19,"id":122808,"mal_id":42670,"title":"Princess Connect! Re:Dive Season 2","english":"Princess Connect! Re:Dive Season 2","native":"プリンセスコネクト!Re:Dive Season 2","synonyms":["Priconne Season 2","ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":11},"status":"FINISHED"},{"index":20,"id":128034,"mal_id":45560,"title":"ORIENT","english":"ORIENT","native":"オリエント","synonyms":["2 สิงห์ พลิกตำนานพิฆาตอสูร"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":6},"status":"FINISHED"},{"index":21,"id":119056,"mal_id":42072,"title":"Kenja no Deshi wo Nanoru Kenja","english":"She Professed Herself Pupil of the Wise Man","native":"賢者の弟子を名乗る賢者","synonyms":["KenDeshi","ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ","自称贤者弟子的贤者","Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":12},"status":"FINISHED"},{"index":22,"id":130389,"mal_id":48375,"title":"Mahouka Koukou no Rettousei: Tsuioku-hen","english":"The Irregular at Magic High School: Reminiscence Arc","native":"魔法科高校の劣等生 追憶編","synonyms":["พี่น้องปริศนาโรงเรียนมหาเวท ภาคย้อนความหลัง","Непутёвый ученик в школе магии: Воспоминания"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2022,"start_date":{"year":2021,"month":12,"day":31},"status":"FINISHED"},{"index":23,"id":136436,"mal_id":49893,"title":"Kobayashi-san Chi no Maidragon S: Nippon no Omotenashi (Attend wa Dragon desu)","english":"Miss Kobayashi’s Dragon Maid S: Japanese Hospitality (The Attendant Is a Dragon)","native":"小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)","synonyms":["Miss Kobayashi's Dragon Maid S Special","Miss Kobayashi's Dragon Maid S Episode 13","Kobayashi-san Chi no Maidragon S Episode 13"],"format":"OVA","episodes":1,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":1,"day":19},"status":"FINISHED"},{"index":24,"id":130550,"mal_id":48405,"title":"Totsukuni no Shoujo (2022)","english":"The Girl from the Other Side","native":"とつくにの少女 (2022)","synonyms":["Siúil, a Rún","L'Enfant et le Maudit"],"format":"OVA","episodes":1,"season":"WINTER","year":2022,"start_date":{"year":2022,"month":3,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":47778,"mal_id":47778,"title":"Kimetsu no Yaiba: Yuukaku-hen","english":"Demon Slayer: Kimetsu no Yaiba Entertainment District Arc","native":"鬼滅の刃 遊郭編","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2022,"start_date":{"day":5,"month":12,"year":2021},"status":"Finished Airing"},{"index":1,"id":48583,"mal_id":48583,"title":"Shingeki no Kyojin: The Final Season Part 2","english":"Attack on Titan: Final Season Part 2","native":"進撃の巨人 The Final Season Part 2","synonyms":["Shingeki no Kyojin Season 4","Attack on Titan Season 4"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":10,"month":1,"year":2022},"status":"Finished Airing"},{"index":2,"id":48736,"mal_id":48736,"title":"Sono Bisque Doll wa Koi wo Suru","english":"My Dress-Up Darling","native":"その着せ替え人形は恋をする","synonyms":["Sono Kisekae Ningyou wa Koi wo Suru","KiseKoi"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":9,"month":1,"year":2022},"status":"Finished Airing"},{"index":3,"id":40507,"mal_id":40507,"title":"Arifureta Shokugyou de Sekai Saikyou 2nd Season","english":"Arifureta: From Commonplace to World's Strongest Season 2","native":"ありふれた職業で世界最強 2nd Season","synonyms":["From Common Job Class to the Strongest in the World 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":13,"month":1,"year":2022},"status":"Finished Airing"},{"index":4,"id":49114,"mal_id":49114,"title":"Vanitas no Karte Part 2","english":"The Case Study of Vanitas Part 2","native":"ヴァニタスの手記","synonyms":["Vanitas no Shuki 2nd Season","Memoir of Vanitas 2nd Season","Vanitas no Carte 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":15,"month":1,"year":2022},"status":"Finished Airing"},{"index":5,"id":47159,"mal_id":47159,"title":"Tensai Ouji no Akaji Kokka Saisei Jutsu","english":"The Genius Prince's Guide to Raising a Nation Out of Debt","native":"天才王子の赤字国家再生術","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":11,"month":1,"year":2022},"status":"Finished Airing"},{"index":6,"id":49930,"mal_id":49930,"title":"Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2","english":"How a Realist Hero Rebuilt the Kingdom Part 2","native":"現実主義勇者の王国再建記","synonyms":["Re:Construction the Elfrieden Kingdom Tales of Realistic Brave","A Realist Hero's Kingdom Restoration Chronicle"],"format":"TV","episodes":13,"season":"WINTER","year":2022,"start_date":{"day":9,"month":1,"year":2022},"status":"Finished Airing"},{"index":7,"id":47161,"mal_id":47161,"title":"Shikkakumon no Saikyou Kenja","english":"The Strongest Sage with the Weakest Crest","native":"失格紋の最強賢者","synonyms":["The Strongest Sage of Disqualified Crest","Shikkakumon no Saikyokenja"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":8,"month":1,"year":2022},"status":"Finished Airing"},{"index":8,"id":41946,"mal_id":41946,"title":"Shuumatsu no Harem","english":"World's End Harem","native":"終末のハーレム","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2022,"start_date":{"day":7,"month":1,"year":2022},"status":"Finished Airing"},{"index":9,"id":48414,"mal_id":48414,"title":"Sabikui Bisco","english":"Sabikui Bisco","native":"錆喰いビスコ","synonyms":["Rust-Eater Bisco"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":11,"month":1,"year":2022},"status":"Finished Airing"},{"index":10,"id":44055,"mal_id":44055,"title":"Sasaki to Miyano","english":"Sasaki and Miyano","native":"佐々木と宮野","synonyms":["Sasamiya"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":10,"month":1,"year":2022},"status":"Finished Airing"},{"index":11,"id":48553,"mal_id":48553,"title":"Akebi-chan no Sailor-fuku","english":"Akebi's Sailor Uniform","native":"明日ちゃんのセーラー服","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":9,"month":1,"year":2022},"status":"Finished Airing"},{"index":12,"id":50360,"mal_id":50360,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu","english":"Mushoku Tensei: Jobless Reincarnation - Eris the Goblin Slayer","native":"無職転生 ~異世界行ったら本気だす~ エリスのゴブリン討伐","synonyms":["Mushoku Tensei: Jobless Reincarnation Special","Mushoku Tensei: Isekai Ittara Honki Dasu Special"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":3,"year":2022},"status":"Finished Airing"},{"index":13,"id":49721,"mal_id":49721,"title":"Karakai Jouzu no Takagi-san 3","english":"Teasing Master Takagi-san 3","native":"からかい上手の高木さん3","synonyms":["Skilled Teaser Takagi-san 3rd Season","Karakai Jouzu no Takagi-san Third Season"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":8,"month":1,"year":2022},"status":"Finished Airing"},{"index":14,"id":48997,"mal_id":48997,"title":"Fantasy Bishoujo Juniku Ojisan to","english":"Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout","native":"異世界美少女受肉おじさんと","synonyms":["Fabiniku","Isekai Bishoujo Juniku Ojisan"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":12,"month":1,"year":2022},"status":"Finished Airing"},{"index":15,"id":49909,"mal_id":49909,"title":"Kotarou wa Hitorigurashi","english":"Kotaro Lives Alone","native":"コタローは1人暮らし","synonyms":["Kotaro Lives By Himself"],"format":"ONA","episodes":10,"season":null,"year":null,"start_date":{"day":10,"month":3,"year":2022},"status":"Finished Airing"},{"index":16,"id":44516,"mal_id":44516,"title":"Koroshi Ai","english":"Love of Kill","native":"殺し愛","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":13,"month":1,"year":2022},"status":"Finished Airing"},{"index":17,"id":48239,"mal_id":48239,"title":"Leadale no Daichi nite","english":"In the Land of Leadale","native":"リアデイルの大地にて","synonyms":["World of Leadale"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":5,"month":1,"year":2022},"status":"Finished Airing"},{"index":18,"id":42072,"mal_id":42072,"title":"Kenja no Deshi wo Nanoru Kenja","english":"She Professed Herself Pupil of the Wise Man","native":"賢者の弟子を名乗る賢者","synonyms":["Kendeshi"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":12,"month":1,"year":2022},"status":"Finished Airing"},{"index":19,"id":42670,"mal_id":42670,"title":"Princess Connect! Re:Dive Season 2","english":null,"native":"プリンセスコネクト! Re:Dive Season 2","synonyms":["Princess Connect! Re:Dive 2nd Season","Priconne 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":11,"month":1,"year":2022},"status":"Finished Airing"},{"index":20,"id":45560,"mal_id":45560,"title":"Orient","english":"Orient","native":"オリエント","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":6,"month":1,"year":2022},"status":"Finished Airing"},{"index":21,"id":49310,"mal_id":49310,"title":"Fruits Basket: Prelude","english":null,"native":"フルーツバスケット -prelude-","synonyms":["Kyouko to Katsuya no Monogatari","The Story of Kyoko and Katsuya"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":2,"year":2022},"status":"Finished Airing"},{"index":22,"id":49738,"mal_id":49738,"title":"Heike Monogatari","english":"The Heike Story","native":"平家物語","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2022,"start_date":{"day":13,"month":1,"year":2022},"status":"Finished Airing"},{"index":23,"id":50185,"mal_id":50185,"title":"Ryman's Club","english":"Salaryman's Club","native":"リーマンズクラブ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2022,"start_date":{"day":30,"month":1,"year":2022},"status":"Finished Airing"},{"index":24,"id":49893,"mal_id":49893,"title":"Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu","english":"Miss Kobayashi's Dragon Maid S: Japanese Hospitality (The Attendant is a Dragon)","native":"小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)","synonyms":["Miss Kobayashi's Dragon Maid S Special"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":1,"year":2022},"status":"Finished Airing"}]},{"year":2024,"season":"winter","anilist":[{"index":0,"id":151807,"mal_id":52299,"title":"Ore dake Level Up na Ken","english":"Solo Leveling","native":"俺だけレベルアップな件","synonyms":["나 혼자만 레벨업","Na Honjaman Level Up","Solo Leveling: Поднятие уровня в одиночку"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":7},"status":"FINISHED"},{"index":1,"id":153518,"mal_id":52701,"title":"Dungeon Meshi","english":"Delicious in Dungeon","native":"ダンジョン飯","synonyms":["Dungeon Food","Dungeon Meal","Tragones y Mazmorras","Gloutons et Dragons","Подземелье вкусностей","던전밥","สูตรลับตำรับดันเจียน","Mỹ vị hầm ngục","Підземелля смакоти","迷宫饭","מבוכים ומטעמים","Dunmeshi","Labužníci v kobce"],"format":"TV","episodes":24,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":4},"status":"FINISHED"},{"index":2,"id":146066,"mal_id":51180,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season","english":"Classroom of the Elite Season 3","native":"ようこそ実力至上主義の教室へ 3rd Season","synonyms":["You-Zitsu 3","Youjitsu 3","ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3","Classroom of the Elite III","欢迎来到实力至上主义的教室 第三季","Добро пожаловать в класс для особо одарённых 3","فصل النخبة الموسم الثالث","歡迎來到實力至上主義的教室 第三季"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":3},"status":"FINISHED"},{"index":3,"id":166610,"mal_id":55813,"title":"MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen","english":"MASHLE: MAGIC AND MUSCLES Season 2","native":"マッシュル-MASHLE- 神覚者候補選抜試験編","synonyms":["マッシュル-MASHLE- 第2期","MASHLE 2nd Season","MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc","肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇","MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":6},"status":"FINISHED"},{"index":4,"id":166794,"mal_id":55866,"title":"Yubisaki to Renren","english":"A Sign of Affection","native":"ゆびさきと恋々","synonyms":["Ein Zeichen der Zuneigung","손끝과 연연","Signos de Afecto","Кохання на кінчиках пальців","Znaki naszych uczuć","Cinta dan Isyarat","Любовь с кончиков пальцев","Жест беззаветной любви"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":6},"status":"FINISHED"},{"index":5,"id":137908,"mal_id":49613,"title":"Chiyu Mahou no Machigatta Tsukaikata","english":"The Wrong Way to Use Healing Magic","native":"治癒魔法の間違った使い方","synonyms":["Penggunaan Sihir Penyembuh yang Keliru","เวทรักษาที่ไหนเขาใช้กันแบบนี้","Cách dùng sai của ma thuật chữa trị","Как (не) стоит использовать магию исцеления","الطريقة الخاطئة لاستخدام سحر الشفاء"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":6},"status":"FINISHED"},{"index":6,"id":139518,"mal_id":49889,"title":"Tsuki ga Michibiku Isekai Douchuu 2nd Season","english":"TSUKIMICHI -Moonlit Fantasy- Season 2","native":"月が導く異世界道中 第二幕","synonyms":["จันทรานำพาสู่ต่างโลก ภาค 2","月光下的異世界之旅 第二季","Благословлённое лунным светом приключение в другом мире 2"],"format":"TV","episodes":25,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":8},"status":"FINISHED"},{"index":7,"id":141821,"mal_id":50392,"title":"Mato Seihei no Slave","english":"Chained Soldier","native":"魔都精兵のスレイブ","synonyms":["Slave of the Magic Capital's Elite Troops","Demon Slave","Slave of the Hell Soldiers","ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร","Mabotai","Demon Slave: The Chained Soldier"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":4},"status":"FINISHED"},{"index":8,"id":166216,"mal_id":55690,"title":"Boku no Kokoro no Yabai Yatsu 2nd Season","english":"The Dangers in My Heart Season 2","native":"僕の心のヤバイやつ 第2期","synonyms":["BokuYaba 2","僕ヤバ 2","เธอผู้อันตรายต่อใจผม ภาคที่ 2","Czarne chmury w moim sercu. Sezon 2"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":7},"status":"FINISHED"},{"index":9,"id":153658,"mal_id":52742,"title":"Haikyuu!!: Gomi Suteba no Kessen","english":"HAIKYU!! The Dumpster Battle","native":"ハイキュー!! ゴミ捨て場の決戦","synonyms":["ハイキュー!! FINAL ","Haikyuu!! FINAL","Haikyuu!! Battle at the Garbage Dump","Haikyu!! Movie: Decisive Battle at the Garbage Dump","HAIKYU!! La Batalla del Basurero","HAIKYU!! La Guerre des Poubelles"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":2,"day":16},"status":"FINISHED"},{"index":10,"id":168374,"mal_id":56352,"title":"Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru","english":"7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!","native":"ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する","synonyms":["ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู","Седьмая беззаботная жизнь злодейки в браке со злейшим врагом","LoopNana","ルプなな","輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":7},"status":"FINISHED"},{"index":11,"id":155963,"mal_id":53421,"title":"Dosanko Gal wa Namara Menkoi","english":"Hokkaido Gals Are Super Adorable!","native":"道産子ギャルはなまらめんこい","synonyms":["Dosanko Gyaru Is Mega Cute","Dosanko Gyaru wa Namaramenkoi","สาวแกลเมืองเหนือน่าฮักขนาด","Dosakoi","どさこい","Девчонки с Хоккайдо просто чума!","غارو هوكّاديو ظريفات جدّاً"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":9},"status":"FINISHED"},{"index":12,"id":147642,"mal_id":51648,"title":"Nozomanu Fushi no Boukensha","english":"The Unwanted Undead Adventurer","native":"望まぬ不死の冒険者","synonyms":["เส้นทางพลิกผันชองราชันอมตะ","TUUA","Petualang Mayat Hidup yang Tidak Diinginkan","Нежеланно бессмертный авантюрист"],"format":"ONA","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":5},"status":"FINISHED"},{"index":13,"id":151639,"mal_id":56285,"title":"Ninja Kamui","english":"Ninja Kamui","native":"Ninja Kamui","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":2,"day":11},"status":"FINISHED"},{"index":14,"id":162780,"mal_id":54722,"title":"Mahou Shoujo ni Akogarete","english":"Gushing Over Magical Girls","native":"魔法少女にあこがれて","synonyms":["I Admire Magical Girls, and...","Mahoako","Looking up to Magical Girls","夢想成為魔法少女","Fascinada por Garotas Mágicas","Me encantan las Magical Girls"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":3},"status":"FINISHED"},{"index":15,"id":163076,"mal_id":54837,"title":"Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen","english":"Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord","native":"悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~","synonyms":["ชีวิตไม่ง่ายของนางร้าย LV99","Light Magic and the Hero","Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов","Akuyaku LV99"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":9},"status":"FINISHED"},{"index":16,"id":158028,"mal_id":53730,"title":"Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.","english":"My Instant Death Ability is Overpowered","native":"即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。","synonyms":["Sokushicheat","My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":5},"status":"FINISHED"},{"index":17,"id":153818,"mal_id":52816,"title":"Majo to Yajuu","english":"The Witch and the Beast","native":"魔女と野獣","synonyms":["Ведьма и зверь","Відьма та чудовисько"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":12},"status":"FINISHED"},{"index":18,"id":158931,"mal_id":53889,"title":"Ao no Exorcist: Shimane Illuminati-hen","english":"Blue Exorcist -Shimane Illuminati Saga-","native":"青の祓魔師 島根啓明結社篇","synonyms":["Ao no Futsumashi","Синий экзорцист 3: Иллюминаты Симанэ","Blue Exorcist Season 3"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":7},"status":"FINISHED"},{"index":19,"id":156131,"mal_id":53488,"title":"Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd","english":"Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2","native":"真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd","synonyms":["Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd","I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2","ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2","Изгнанный из отряда героя, я решил поселиться в глубинке 2"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":7},"status":"FINISHED"},{"index":20,"id":164244,"mal_id":55129,"title":"Oroka na Tenshi wa Akuma to Odoru","english":"The Foolish Angel Dances with the Devil","native":"愚かな天使は悪魔と踊る","synonyms":["Stupid angel dances with the devil","Die mit dem Teufel tanzt","愚蠢天使與惡魔共舞","Глупый ангел пляшет с демоном","かな天 ","KanaTen"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":9},"status":"FINISHED"},{"index":21,"id":143866,"mal_id":50803,"title":"Jaku-Chara Tomozaki-kun 2nd STAGE","english":"Bottom-Tier Character Tomozaki 2nd Stage","native":"弱キャラ友崎くん 2nd STAGE","synonyms":["Bottom-Tier Character Tomozaki Season 2","Jaku-Chara Tomozaki-kun 2nd Season","弱キャラ友崎くん2","Низкоуровневый Томодзаки 2"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":3},"status":"FINISHED"},{"index":22,"id":160389,"mal_id":54265,"title":"Kekkon Yubiwa Monogatari","english":"Tales of Wedding Rings","native":"結婚指輪物語","synonyms":["ตำนานผู้กล้าแห่งแหวน","婚戒物語"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":6},"status":"FINISHED"},{"index":23,"id":156891,"mal_id":53590,"title":"Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.","english":"The Weakest Tamer Began a Journey to Pick Up Trash","native":"最弱テイマーはゴミ拾いの旅を始めました。","synonyms":["การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย","最弱魔物使開始了撿垃圾之旅。","Слабейшая укротительница отправляется в путешествие по сбору мусора","Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":12},"status":"FINISHED"},{"index":24,"id":161476,"mal_id":54449,"title":"Ishura","english":"ISHURA","native":"異修羅","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"year":2024,"month":1,"day":3},"status":"FINISHED"}],"jikan":[{"index":0,"id":52299,"mal_id":52299,"title":"Ore dake Level Up na Ken","english":"Solo Leveling","native":"俺だけレベルアップな件","synonyms":["Na Honjaman Level Up","나 혼자만 레벨업","I Level Up Alone"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":7,"month":1,"year":2024},"status":"Finished Airing"},{"index":1,"id":52701,"mal_id":52701,"title":"Dungeon Meshi","english":"Delicious in Dungeon","native":"ダンジョン飯","synonyms":["Dungeon Food","Dungeon Dining"],"format":"TV","episodes":24,"season":"WINTER","year":2024,"start_date":{"day":4,"month":1,"year":2024},"status":"Finished Airing"},{"index":2,"id":51180,"mal_id":51180,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season","english":"Classroom of the Elite III","native":"ようこそ実力至上主義の教室へ 3rd Season","synonyms":["Welcome to the Classroom of the Elite","You-jitsu 3rd Season","You-zitsu 3rd Season"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":3,"month":1,"year":2024},"status":"Finished Airing"},{"index":3,"id":55813,"mal_id":55813,"title":"Mashle: Shinkakusha Kouho Senbatsu Shiken-hen","english":"Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc","native":"マッシュル-MASHLE- 神覚者候補選抜試験編","synonyms":["Mashle 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":6,"month":1,"year":2024},"status":"Finished Airing"},{"index":4,"id":55866,"mal_id":55866,"title":"Yubisaki to Renren","english":"A Sign of Affection","native":"ゆびさきと恋々","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":6,"month":1,"year":2024},"status":"Finished Airing"},{"index":5,"id":49889,"mal_id":49889,"title":"Tsuki ga Michibiku Isekai Douchuu 2nd Season","english":"Tsukimichi -Moonlit Fantasy- Season 2","native":"月が導く異世界道中 第二幕","synonyms":[],"format":"TV","episodes":25,"season":"WINTER","year":2024,"start_date":{"day":8,"month":1,"year":2024},"status":"Finished Airing"},{"index":6,"id":49613,"mal_id":49613,"title":"Chiyu Mahou no Machigatta Tsukaikata","english":"The Wrong Way to Use Healing Magic","native":"治癒魔法の間違った使い方","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":6,"month":1,"year":2024},"status":"Finished Airing"},{"index":7,"id":55690,"mal_id":55690,"title":"Boku no Kokoro no Yabai Yatsu 2nd Season","english":"The Dangers in My Heart Season 2","native":"僕の心のヤバイやつ 第2期","synonyms":["Bokuyaba"],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":7,"month":1,"year":2024},"status":"Finished Airing"},{"index":8,"id":50392,"mal_id":50392,"title":"Mato Seihei no Slave","english":"Chained Soldier","native":"魔都精兵のスレイブ","synonyms":["Slave of the Magic Capital's Elite Troops","Mabotai"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":4,"month":1,"year":2024},"status":"Finished Airing"},{"index":9,"id":56352,"mal_id":56352,"title":"Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru","english":"7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!","native":"ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する","synonyms":["The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop!","The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":7,"month":1,"year":2024},"status":"Finished Airing"},{"index":10,"id":52742,"mal_id":52742,"title":"Haikyuu!! Movie: Gomisuteba no Kessen","english":"Haikyu!! Movie: The Dumpster Battle","native":"劇場版ハイキュー!! ゴミ捨て場の決戦","synonyms":["Haikyu!! Final Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":2,"year":2024},"status":"Finished Airing"},{"index":11,"id":51648,"mal_id":51648,"title":"Nozomanu Fushi no Boukensha","english":"The Unwanted Undead Adventurer","native":"望まぬ不死の冒険者","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":8,"month":1,"year":2024},"status":"Finished Airing"},{"index":12,"id":53421,"mal_id":53421,"title":"Dosanko Gal wa Namara Menkoi","english":"Hokkaido Gals Are Super Adorable!","native":"道産子ギャルはなまらめんこい","synonyms":["Dosanko Gyaru Is Mega Cute"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":9,"month":1,"year":2024},"status":"Finished Airing"},{"index":13,"id":54837,"mal_id":54837,"title":"Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen","english":"Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord","native":"悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":9,"month":1,"year":2024},"status":"Finished Airing"},{"index":14,"id":54722,"mal_id":54722,"title":"Mahou Shoujo ni Akogarete","english":"Gushing over Magical Girls","native":"魔法少女にあこがれて","synonyms":["Mahoako","Looking up to Magical Girls","I Admire Magical Girls","and..."],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":3,"month":1,"year":2024},"status":"Finished Airing"},{"index":15,"id":56285,"mal_id":56285,"title":"Ninja Kamui","english":null,"native":null,"synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":11,"month":2,"year":2024},"status":"Finished Airing"},{"index":16,"id":53730,"mal_id":53730,"title":"Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.","english":"My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me!","native":"即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。","synonyms":["The other world doesn't stand a chance against the power of instant death"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":5,"month":1,"year":2024},"status":"Finished Airing"},{"index":17,"id":52816,"mal_id":52816,"title":"Majo to Yajuu","english":"The Witch and the Beast","native":"魔女と野獣","synonyms":["Witch and the Beast"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":12,"month":1,"year":2024},"status":"Finished Airing"},{"index":18,"id":53889,"mal_id":53889,"title":"Ao no Exorcist: Shimane Illuminati-hen","english":"Blue Exorcist: Shimane Illuminati Saga","native":"青の祓魔師 島根啓明結社篇","synonyms":["Blue Exorcist Season 3","Ao no Futsumashi"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":7,"month":1,"year":2024},"status":"Finished Airing"},{"index":19,"id":53488,"mal_id":53488,"title":"Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd","english":"Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2","native":"真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd","synonyms":["Banished from the Hero's Party","I Decided to Live a Quiet Life in the Countryside","I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":7,"month":1,"year":2024},"status":"Finished Airing"},{"index":20,"id":50803,"mal_id":50803,"title":"Jaku-Chara Tomozaki-kun 2nd Stage","english":"Bottom-Tier Character Tomozaki 2nd Stage","native":"弱キャラ友崎くん 2nd STAGE","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2024,"start_date":{"day":3,"month":1,"year":2024},"status":"Finished Airing"},{"index":21,"id":55129,"mal_id":55129,"title":"Oroka na Tenshi wa Akuma to Odoru","english":"The Foolish Angel Dances with the Devil","native":"愚かな天使は悪魔と踊る","synonyms":["The Foolish Angel Dances with Demons","Kanaten"],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":9,"month":1,"year":2024},"status":"Finished Airing"},{"index":22,"id":54265,"mal_id":54265,"title":"Kekkon Yubiwa Monogatari","english":"Tales of Wedding Rings","native":"結婚指輪物語","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":6,"month":1,"year":2024},"status":"Finished Airing"},{"index":23,"id":53590,"mal_id":53590,"title":"Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.","english":"The Weakest Tamer Began a Journey to Pick Up Trash","native":"最弱テイマーはゴミ拾いの旅を始めました。","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":12,"month":1,"year":2024},"status":"Finished Airing"},{"index":24,"id":54449,"mal_id":54449,"title":"Ishura","english":"Ishura","native":"異修羅","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2024,"start_date":{"day":3,"month":1,"year":2024},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-04.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-04.json new file mode 100644 index 0000000..5a6258c --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-04.json @@ -0,0 +1 @@ +{"shard":4,"seasons":[{"year":2011,"season":"fall","anilist":[{"index":0,"id":11061,"mal_id":11061,"title":"HUNTER×HUNTER (2011)","english":"Hunter x Hunter (2011)","native":"HUNTER×HUNTER (2011)","synonyms":["ハンター×ハンター","HxH","全职猎人","האנטר האנטר","ฮันเตอร์ x ฮันเตอร์","القناص ","Мисливець X Мисливець"],"format":"TV","episodes":148,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":2},"status":"FINISHED"},{"index":1,"id":10620,"mal_id":10620,"title":"Mirai Nikki","english":"The Future Diary","native":"未来日記","synonyms":["未来日记","יומן העתיד"],"format":"TV","episodes":26,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":9},"status":"FINISHED"},{"index":2,"id":10087,"mal_id":10087,"title":"Fate/Zero","english":"Fate/Zero","native":"Fate/Zero","synonyms":["フェイト/ゼロ","F/Z","القدر/زيرو","פייט/זירו","Судьба/Начало"],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":2},"status":"FINISHED"},{"index":3,"id":10793,"mal_id":10793,"title":"Guilty Crown","english":"Guilty Crown","native":"ギルティクラウン","synonyms":["المُلك المُدان"],"format":"TV","episodes":22,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":14},"status":"FINISHED"},{"index":4,"id":10719,"mal_id":10719,"title":"Boku wa Tomodachi ga Sukunai","english":"Haganai","native":"僕は友達が少ない","synonyms":["I Don't Have Many Friends","Boku ha Tomodachi ga Sukunai","我的朋友很少"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":7},"status":"FINISHED"},{"index":5,"id":10800,"mal_id":10800,"title":"Chihayafuru","english":"Chihayafuru","native":"ちはやふる","synonyms":["Chihayafull"],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":5},"status":"FINISHED"},{"index":6,"id":9617,"mal_id":9617,"title":"K-ON! Movie","english":"K-ON!: The Movie","native":"映画けいおん!","synonyms":["Eiga K-On!","Keion Movie","K on Movie","Film K-On!"],"format":"MOVIE","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":12,"day":3},"status":"FINISHED"},{"index":7,"id":10396,"mal_id":10396,"title":"Ben-To","english":"Ben-To","native":"ベン・トー","synonyms":["Bento","Ben-Tou"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":9},"status":"FINISHED"},{"index":8,"id":9936,"mal_id":9936,"title":"Maken-Ki!","english":"Maken-Ki! Battling Venus","native":"マケン姫っ!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":5},"status":"FINISHED"},{"index":9,"id":10030,"mal_id":10030,"title":"Bakuman. 2","english":null,"native":"バクマン。2","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":1},"status":"FINISHED"},{"index":10,"id":10213,"mal_id":10213,"title":"Maji de Watashi ni Koi Shinasai!","english":"Majikoi: Oh! Samurai Girls","native":"真剣で私に恋しなさい!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":2},"status":"FINISHED"},{"index":11,"id":10588,"mal_id":10588,"title":"Persona 4 the Animation","english":"Persona 4 the Animation","native":"ペルソナ4アニメーション","synonyms":["P4A"],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":7},"status":"FINISHED"},{"index":12,"id":10521,"mal_id":10521,"title":"WORKING'!!","english":"Wagnaria!!2","native":"WORKING'!!","synonyms":["ワーキング’!!","Working!! 2"],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":1},"status":"FINISHED"},{"index":13,"id":6773,"mal_id":6773,"title":"Shakugan no Shana III (Final)","english":"Shakugan no Shana: Season III","native":"灼眼のシャナIII (Final)","synonyms":["Shakugan no Shana Third","Shakugan no Shana 3","Shakugan no Shana Final","ชานะ นักรบเนตรอัคคี ภาคที่ 3 ","Hoả nhãn của Shana 3"],"format":"TV","episodes":24,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":8},"status":"FINISHED"},{"index":14,"id":10456,"mal_id":10456,"title":"Kyoukaisenjou no Horizon","english":"Horizon in the Middle of Nowhere","native":"境界線上のホライゾン","synonyms":["Horizon on the Middle of Nowhere","Kyoukai Senjou no Horizon"],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":2},"status":"FINISHED"},{"index":15,"id":10460,"mal_id":10460,"title":"Kimi to Boku.","english":"You and Me.","native":"君と僕。","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":4},"status":"FINISHED"},{"index":16,"id":10578,"mal_id":10578,"title":"C³","english":"C3","native":"シーキューブ","synonyms":["C Cube","C^3","C³ - CubexCursedxCurious","C3 Anime"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":1},"status":"FINISHED"},{"index":17,"id":12565,"mal_id":12565,"title":"Fate/Prototype","english":null,"native":"Fate/Prototype","synonyms":["フェイト/プロトタイプ","Судьба/Прототип"],"format":"OVA","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":12,"day":31},"status":"FINISHED"},{"index":18,"id":10798,"mal_id":10798,"title":"UN-GO","english":"UN-GO","native":"UN-GO アン ゴ","synonyms":["Un Go","Ungo"],"format":"TV","episodes":11,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":14},"status":"FINISHED"},{"index":19,"id":12231,"mal_id":12231,"title":"Dragon Ball: Episode of Bardock","english":"Dragon Ball: Episode of Bardock","native":"ドラゴンボール エピソード オブ バーダック","synonyms":["Драконий жемчуг: Эпизод Бардока"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":12,"day":17},"status":"FINISHED"},{"index":20,"id":10397,"mal_id":10397,"title":"Mashiroiro Symphony: The color of lovers","english":"Mashiroiro Symphony","native":"ましろ色シンフォニー -The color of lovers-","synonyms":["Mashiroiro Symphony: Love Is Pure White","Mashiro-iro Symphony","Pure White Symphony"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":5},"status":"FINISHED"},{"index":21,"id":10897,"mal_id":10897,"title":"Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi","english":"Haganai: Episode 0","native":"僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)","synonyms":["Boku wa Tomodachi ga Sukunai OVA","Haganai OVA","I Don't Have Many Friends OVA","Boku ha Tomodachi ga Sukunai OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":9,"day":22},"status":"FINISHED"},{"index":22,"id":11266,"mal_id":11266,"title":"Ao no Exorcist: Kuro no Iede","english":"Blue Exorcist: Runaway Kuro","native":"青の祓魔師 クロの家出","synonyms":["Ao no Exorcist Special","Ao no Futsumashi: Kuro no Iede"],"format":"OVA","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":26},"status":"FINISHED"},{"index":23,"id":10418,"mal_id":10418,"title":"Deadman Wonderland: Akai Knife Tsukai","english":"Deadman Wonderland: The Red Knife Wielder","native":"デッドマン・ワンダーランド 赤いナイフ使い","synonyms":["Deadman Wonderland OAD","Deadman Wonderland OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2011,"start_date":{"year":2011,"month":10,"day":8},"status":"FINISHED"},{"index":24,"id":10378,"mal_id":10378,"title":"Shinryaku!? Ika Musume","english":"Squid Girl 2","native":"侵略!?イカ娘","synonyms":["The Invader Comes From the Bottom of the Sea!","Shinryaku! Ika Musume 2"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"year":2011,"month":9,"day":27},"status":"FINISHED"}],"jikan":[{"index":0,"id":11061,"mal_id":11061,"title":"Hunter x Hunter (2011)","english":"Hunter x Hunter","native":"HUNTER×HUNTER(ハンター×ハンター)","synonyms":["HxH (2011)"],"format":"TV","episodes":148,"season":"FALL","year":2011,"start_date":{"day":2,"month":10,"year":2011},"status":"Finished Airing"},{"index":1,"id":10620,"mal_id":10620,"title":"Mirai Nikki (TV)","english":"The Future Diary","native":"未来日記","synonyms":["Mirai Nikki","Mirai Nikki (2011)"],"format":"TV","episodes":26,"season":"FALL","year":2011,"start_date":{"day":9,"month":10,"year":2011},"status":"Finished Airing"},{"index":2,"id":10087,"mal_id":10087,"title":"Fate/Zero","english":"Fate/Zero","native":"フェイト/ゼロ","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"day":2,"month":10,"year":2011},"status":"Finished Airing"},{"index":3,"id":10793,"mal_id":10793,"title":"Guilty Crown","english":"Guilty Crown","native":"ギルティクラウン","synonyms":["GUILTY CROWN"],"format":"TV","episodes":22,"season":"FALL","year":2011,"start_date":{"day":14,"month":10,"year":2011},"status":"Finished Airing"},{"index":4,"id":10719,"mal_id":10719,"title":"Boku wa Tomodachi ga Sukunai","english":"Haganai: I don't have many friends","native":"僕は友達が少ない","synonyms":["I Don't Have Many Friends"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":7,"month":10,"year":2011},"status":"Finished Airing"},{"index":5,"id":10800,"mal_id":10800,"title":"Chihayafuru","english":"Chihayafuru","native":"ちはやふる","synonyms":["Chihayafull"],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"day":5,"month":10,"year":2011},"status":"Finished Airing"},{"index":6,"id":10030,"mal_id":10030,"title":"Bakuman. 2nd Season","english":"Bakuman. Season 2","native":"バクマン。2ndシーズン","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"day":1,"month":10,"year":2011},"status":"Finished Airing"},{"index":7,"id":9617,"mal_id":9617,"title":"K-On! Movie","english":"K-ON! The Movie","native":"映画 けいおん!","synonyms":["Eiga K-On!","Keion Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":3,"month":12,"year":2011},"status":"Finished Airing"},{"index":8,"id":10396,"mal_id":10396,"title":"Ben-To","english":"Ben-To","native":"ベン・トー","synonyms":["Bento","Ben-Tou"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":9,"month":10,"year":2011},"status":"Finished Airing"},{"index":9,"id":10213,"mal_id":10213,"title":"Maji de Watashi ni Koi Shinasai!","english":"Majikoi: Oh! Samurai Girls","native":"真剣で私に恋しなさい!","synonyms":["Love Me","Seriously!!"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":2,"month":10,"year":2011},"status":"Finished Airing"},{"index":10,"id":9936,"mal_id":9936,"title":"Maken-Ki!","english":null,"native":"マケン姫っ!","synonyms":["Maken-Ki! Battling Venus"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":5,"month":10,"year":2011},"status":"Finished Airing"},{"index":11,"id":10521,"mal_id":10521,"title":"Working'!!","english":"Wagnaria!!2","native":"Working[ワーキング]’!!","synonyms":["Working!! 2"],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"day":1,"month":10,"year":2011},"status":"Finished Airing"},{"index":12,"id":10588,"mal_id":10588,"title":"Persona 4 the Animation","english":"Persona 4 the Animation","native":"ペルソナ4アニメーション","synonyms":["P4A"],"format":"TV","episodes":25,"season":"FALL","year":2011,"start_date":{"day":7,"month":10,"year":2011},"status":"Finished Airing"},{"index":13,"id":6773,"mal_id":6773,"title":"Shakugan no Shana III (Final)","english":"Shakugan no Shana: Season III","native":"灼眼のシャナIII –Final–","synonyms":["Shakugan no Shana Third","Shakugan no Shana 3"],"format":"TV","episodes":24,"season":"FALL","year":2011,"start_date":{"day":8,"month":10,"year":2011},"status":"Finished Airing"},{"index":14,"id":10460,"mal_id":10460,"title":"Kimi to Boku.","english":"You and Me.","native":"君と僕。","synonyms":["Kimi to Boku."],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"day":4,"month":10,"year":2011},"status":"Finished Airing"},{"index":15,"id":11553,"mal_id":11553,"title":"Toradora!: Bentou no Gokui","english":"Toradora! Special","native":"とらドラ! 弁当の極意","synonyms":["Toradora!: The True Meaning of Bento","Toradora!: Bentou Battle"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":12,"year":2011},"status":"Finished Airing"},{"index":16,"id":10456,"mal_id":10456,"title":"Kyoukaisenjou no Horizon","english":"Horizon in the Middle of Nowhere","native":"境界線上のホライゾン","synonyms":["Kyoukai Senjou no Horizon"],"format":"TV","episodes":13,"season":"FALL","year":2011,"start_date":{"day":2,"month":10,"year":2011},"status":"Finished Airing"},{"index":17,"id":10578,"mal_id":10578,"title":"C³","english":"C³ - CubexCursedxCurious","native":"シーキューブ","synonyms":["C3","C Cube","C^3"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":1,"month":10,"year":2011},"status":"Finished Airing"},{"index":18,"id":11123,"mal_id":11123,"title":"Sekaiichi Hatsukoi 2","english":"Sekai Ichi Hatsukoi - World's Greatest First Love 2","native":"世界一初恋 2","synonyms":["Sekai-ichi Hatsukoi 2","Sekai'ichi Hatsukoi 2"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":8,"month":10,"year":2011},"status":"Finished Airing"},{"index":19,"id":10397,"mal_id":10397,"title":"Mashiro-iro Symphony: The Color of Lovers","english":"Mashiroiro Symphony: The Color of Lovers","native":"ましろ色シンフォニー -The color of lovers-","synonyms":["Mashiro-iro Symphony: Love Is Pure White","Mashiroiro Symphony: The Color of Lovers","Pure White Symphony"],"format":"TV","episodes":12,"season":"FALL","year":2011,"start_date":{"day":5,"month":10,"year":2011},"status":"Finished Airing"},{"index":20,"id":10798,"mal_id":10798,"title":"Un-Go","english":"Un-Go","native":"UN-GO アン ゴ","synonyms":[],"format":"TV","episodes":11,"season":"FALL","year":2011,"start_date":{"day":14,"month":10,"year":2011},"status":"Finished Airing"},{"index":21,"id":11266,"mal_id":11266,"title":"Ao no Exorcist: Kuro no Iede","english":"Blue Exorcist: Runaway Kuro","native":"青の祓魔師(エクソシスト) クロの家出","synonyms":["Ao no Exorcist Special","Ao no Futsumashi: Kuro no Iede"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":10,"year":2011},"status":"Finished Airing"},{"index":22,"id":10418,"mal_id":10418,"title":"Deadman Wonderland: Akai Knife Tsukai","english":"Deadman Wonderland: The Red Knife Wielder","native":"デッドマン・ワンダーランド 赤いナイフ使い","synonyms":["Deadman Wonderland OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":10,"year":2011},"status":"Finished Airing"},{"index":23,"id":10794,"mal_id":10794,"title":"IS: Infinite Stratos Encore - Koi ni Kogareru Rokujuusou","english":"Infinite Stratos Encore: A Sextet Yearning for Love","native":"IS 〈インフィニット・ストラトス〉 アンコール『恋に焦がれる六重奏』","synonyms":["IS: Infinite Stratos Encore - Koi ni Kogareru Sextet"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":7,"month":12,"year":2011},"status":"Finished Airing"},{"index":24,"id":12231,"mal_id":12231,"title":"Dragon Ball: Episode of Bardock","english":"Dragon Ball: Episode of Bardock","native":"ドラゴンボール エピソード オブ バーダック","synonyms":[],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":12,"year":2011},"status":"Finished Airing"}]},{"year":2013,"season":"fall","anilist":[{"index":0,"id":18679,"mal_id":18679,"title":"Kill la Kill","english":"Kill la Kill","native":"キルラキル","synonyms":["Kiru Ra Kiru","KLK"],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":4},"status":"FINISHED"},{"index":1,"id":18153,"mal_id":18153,"title":"Kyoukai no Kanata","english":"Beyond the Boundary","native":"境界の彼方","synonyms":["Beyond the Horizon","境界的彼方"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":3},"status":"FINISHED"},{"index":2,"id":17895,"mal_id":17895,"title":"Golden Time","english":"Golden Time","native":"ゴールデンタイム","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":4},"status":"FINISHED"},{"index":3,"id":17265,"mal_id":17265,"title":"Log Horizon","english":"Log Horizon","native":"ログ・ホライズン","synonyms":["รวมพลคนติดอยู่ในเกมส์"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":5},"status":"FINISHED"},{"index":4,"id":16894,"mal_id":16894,"title":"Kuroko no Basket 2nd SEASON","english":"Kuroko's Basketball 2","native":"黒子のバスケ 2nd SEASON","synonyms":["Kuroko no Basuke 2","הכדורסל של קורוקו 2","Баскетбол Куроко 2"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":6},"status":"FINISHED"},{"index":5,"id":18115,"mal_id":18115,"title":"Magi: The kingdom of magic","english":"Magi: The Kingdom of Magic","native":"マギ The kingdom of magic","synonyms":["Magi: The Labyrinth of Magic 2","マギ The labyrinth of magic 2"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":7},"status":"FINISHED"},{"index":6,"id":16067,"mal_id":16067,"title":"Nagi no Asukara","english":"A Lull in the Sea","native":"凪のあすから","synonyms":["NagiAsu","Nagi no Asu Kara: Calmaria do Mar","Nagi no Asukara: Calma en el mar","From a calm tomorrow"],"format":"TV","episodes":26,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":3},"status":"FINISHED"},{"index":7,"id":18397,"mal_id":18397,"title":"Shingeki no Kyojin OVA","english":"Attack on Titan OVA","native":"進撃の巨人 OVA","synonyms":["Attack on Titan: Ilse's Journal","Attack on Titan: A Sudden Visitor","ผ่าพิภพไททัน OAD","Атака титанов OVA"],"format":"OVA","episodes":3,"season":"FALL","year":2013,"start_date":{"year":2013,"month":12,"day":9},"status":"FINISHED"},{"index":8,"id":18277,"mal_id":18277,"title":"Strike the Blood","english":"Strike the Blood","native":"ストライク・ザ・ブラッド","synonyms":["ราชันย์โลหิตรัตติกาล"],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":4},"status":"FINISHED"},{"index":9,"id":17549,"mal_id":17549,"title":"Non Non Biyori","english":"Non Non Biyori","native":"のんのんびより","synonyms":["悠哉日常大王"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":8},"status":"FINISHED"},{"index":10,"id":11981,"mal_id":11981,"title":"Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari","english":"Puella Magi Madoka Magica the Movie -Rebellion-","native":"劇場版 魔法少女まどか☆マギカ 叛逆の物語","synonyms":["Mahou Shoujo Madoka Magika Movie 3","Magical Girl Madoka Magica Movie 3","Puella Magi Madoka Magica the Movie Part III: Rebellion","Puella Magi Madoka Magica the Movie: Rebellion"],"format":"MOVIE","episodes":1,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":26},"status":"FINISHED"},{"index":11,"id":16011,"mal_id":16011,"title":"Tokyo Ravens","english":"Tokyo Ravens","native":"東京レイヴンズ","synonyms":["โตเกียว อนเมียวจิ"],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":9},"status":"FINISHED"},{"index":12,"id":19221,"mal_id":19221,"title":"Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru","english":"My Mental Choices Are Completely Interfering With My School Romantic Comedy","native":"俺の脳内選択肢が、学園ラブコメを全力で邪魔している","synonyms":["NouKome","NouCome","Ore no Nounai Sentakushi ga"," Gakuen Lovecome o Zenryoku de Jama Shite Iru"],"format":"TV","episodes":10,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":10},"status":"FINISHED"},{"index":13,"id":19369,"mal_id":19369,"title":"Outbreak Company","english":"Outbreak Company","native":"アウトブレイク・カンパニー","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":4},"status":"FINISHED"},{"index":14,"id":12477,"mal_id":12477,"title":"Sakasama no Patema","english":"Patema Inverted","native":"サカサマのパテマ","synonyms":[],"format":"MOVIE","episodes":1,"season":"FALL","year":2013,"start_date":{"year":2013,"month":11,"day":9},"status":"FINISHED"},{"index":15,"id":18247,"mal_id":18247,"title":"IS: Infinite Stratos 2","english":"Infinite Stratos 2","native":"IS〈インフィニット・ストラトス〉2","synonyms":["IS2"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":4},"status":"FINISHED"},{"index":16,"id":20021,"mal_id":20021,"title":"Sword Art Online: Extra Edition","english":"Sword Art Online EXTRA EDITION","native":"ソードアート・オンライン Extra Edition","synonyms":["S.A.O: Extra Edition","SAO: Extra Edition","ซอร์ดอาร์ตออนไลน์: Extra Edition"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2013,"start_date":{"year":2013,"month":12,"day":31},"status":"FINISHED"},{"index":17,"id":18753,"mal_id":18753,"title":"Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.","english":"My Teen Romantic Comedy SNAFU OVA","native":"やはり俺の青春ラブコメはまちがっている。「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」","synonyms":["Oregairu OVA","My youth romantic comedy is wrong as I expected. OVA"],"format":"OVA","episodes":1,"season":"FALL","year":2013,"start_date":{"year":2013,"month":9,"day":19},"status":"FINISHED"},{"index":18,"id":16664,"mal_id":16664,"title":"Kaguya-hime no Monogatari","english":"The Tale of The Princess Kaguya","native":"かぐや姫の物語","synonyms":["Kaguyahime no Monogatari","Princess Kaguya Story","El Cuento de la Princesa Kaguya","O Conto da Princesa Kaguya","Księżniczka Kaguya","La leyenda de la Princesa Kaguya","حكاية اﻷميرة كاجويا","Die Legende der Prinzessin Kaguya","La storia della Principessa Splendente","Le Conte de la princesse Kaguya","Fortellingen om Prinsesse Kaguya","Sagan om Prinsessan Kaguya"],"format":"MOVIE","episodes":1,"season":"FALL","year":2013,"start_date":{"year":2013,"month":11,"day":23},"status":"FINISHED"},{"index":19,"id":18677,"mal_id":18677,"title":"Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.","english":"I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.","native":"勇者になれなかった俺はしぶしぶ就職を決意しました。","synonyms":["Yu-sibu","Yusibu","Yuushibu"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":5},"status":"FINISHED"},{"index":20,"id":17513,"mal_id":17513,"title":"DIABOLIK LOVERS","english":"Diabolik Lovers","native":"DIABOLIK LOVERS","synonyms":["ディアボリックラヴァーズ"],"format":"TV_SHORT","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":9,"day":16},"status":"FINISHED"},{"index":21,"id":17247,"mal_id":17247,"title":"Machine-Doll wa Kizutsukanai","english":"Unbreakable Machine-Doll","native":"機巧少女は傷つかない","synonyms":["Kikou Shoujo wa Kizutsukanai"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":7},"status":"FINISHED"},{"index":22,"id":19703,"mal_id":19703,"title":"Kyousougiga (TV)","english":"Kyousougiga","native":"京騒戯画 (TV)","synonyms":["Kyousogiga","Kyousou Giga"],"format":"TV","episodes":10,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":10},"status":"FINISHED"},{"index":23,"id":18689,"mal_id":18689,"title":"Diamond no Ace","english":"Ace of the Diamond","native":"ダイヤのA","synonyms":["Daiya no Ace","Ace of Diamond","Daiya no A"],"format":"TV","episodes":75,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":6},"status":"FINISHED"},{"index":24,"id":18245,"mal_id":18245,"title":"WHITE ALBUM 2","english":"White Album 2","native":"WHITE ALBUM 2","synonyms":["WA2","ホワイトアルバム2"],"format":"TV","episodes":13,"season":"FALL","year":2013,"start_date":{"year":2013,"month":10,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":18679,"mal_id":18679,"title":"Kill la Kill","english":"Kill la Kill","native":"キルラキル","synonyms":["KLK","Dressed to Kill"],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"day":4,"month":10,"year":2013},"status":"Finished Airing"},{"index":1,"id":18153,"mal_id":18153,"title":"Kyoukai no Kanata","english":"Beyond the Boundary","native":"境界の彼方","synonyms":["Beyond the Horizon"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":3,"month":10,"year":2013},"status":"Finished Airing"},{"index":2,"id":17265,"mal_id":17265,"title":"Log Horizon","english":"Log Horizon","native":"ログ・ホライズン","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"day":5,"month":10,"year":2013},"status":"Finished Airing"},{"index":3,"id":17895,"mal_id":17895,"title":"Golden Time","english":"Golden Time","native":"ゴールデンタイム","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"day":4,"month":10,"year":2013},"status":"Finished Airing"},{"index":4,"id":16894,"mal_id":16894,"title":"Kuroko no Basket 2nd Season","english":"Kuroko's Basketball 2","native":"黒子のバスケ","synonyms":["Kuroko no Basuke 2nd Season","The Basketball Which Kuroko Plays"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"day":6,"month":10,"year":2013},"status":"Finished Airing"},{"index":5,"id":18115,"mal_id":18115,"title":"Magi: The Kingdom of Magic","english":"Magi: The Kingdom of Magic","native":"マギ The kingdom of magic","synonyms":["Magi: The Labyrinth of Magic 2","Magi Season 2"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"day":6,"month":10,"year":2013},"status":"Finished Airing"},{"index":6,"id":18277,"mal_id":18277,"title":"Strike the Blood","english":"Strike the Blood","native":"ストライク・ザ・ブラッド","synonyms":["SutoBura"],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"day":4,"month":10,"year":2013},"status":"Finished Airing"},{"index":7,"id":16067,"mal_id":16067,"title":"Nagi no Asu kara","english":"A Lull in the Sea","native":"凪のあすから","synonyms":["Nagi no Asukara","Nagiasu"],"format":"TV","episodes":26,"season":"FALL","year":2013,"start_date":{"day":3,"month":10,"year":2013},"status":"Finished Airing"},{"index":8,"id":16011,"mal_id":16011,"title":"Tokyo Ravens","english":"Tokyo Ravens","native":"東京レイヴンズ","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2013,"start_date":{"day":9,"month":10,"year":2013},"status":"Finished Airing"},{"index":9,"id":18397,"mal_id":18397,"title":"Shingeki no Kyojin OVA","english":"Attack on Titan OAD","native":"進撃の巨人OAD","synonyms":["Shingeki no Kyojin: Ilse no Techou","Attack on Titan: Ilse's Journal","進撃の巨人 「イルゼの手帳」"],"format":"OVA","episodes":3,"season":null,"year":null,"start_date":{"day":9,"month":12,"year":2013},"status":"Finished Airing"},{"index":10,"id":17549,"mal_id":17549,"title":"Non Non Biyori","english":"Non Non Biyori","native":"のんのんびより","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":8,"month":10,"year":2013},"status":"Finished Airing"},{"index":11,"id":19221,"mal_id":19221,"title":"Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru","english":"My Mental Choices Are Completely Interfering With My School Romantic Comedy","native":"俺の脳内選択肢が、学園ラブコメを全力で邪魔している","synonyms":["My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy","NouCome","NouKome"],"format":"TV","episodes":10,"season":"FALL","year":2013,"start_date":{"day":10,"month":10,"year":2013},"status":"Finished Airing"},{"index":12,"id":11981,"mal_id":11981,"title":"Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari","english":"Puella Magi Madoka Magica the Movie: Rebellion","native":"劇場版 魔法少女まどか☆マギカ 叛逆の物語","synonyms":["Mahou Shoujo Madoka Magika Movie 3","Magical Girl Madoka Magica Movie 3"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":10,"year":2013},"status":"Finished Airing"},{"index":13,"id":18247,"mal_id":18247,"title":"IS: Infinite Stratos 2","english":"Infinite Stratos 2","native":"IS〈インフィニット・ストラトス〉2","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":4,"month":10,"year":2013},"status":"Finished Airing"},{"index":14,"id":19369,"mal_id":19369,"title":"Outbreak Company","english":"Outbreak Company","native":"アウトブレイク・カンパニー","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":4,"month":10,"year":2013},"status":"Finished Airing"},{"index":15,"id":17513,"mal_id":17513,"title":"Diabolik Lovers","english":"Diabolik Lovers","native":"DIABOLIK LOVERS","synonyms":["DiaLover"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":16,"month":9,"year":2013},"status":"Finished Airing"},{"index":16,"id":17247,"mal_id":17247,"title":"Machine-Doll wa Kizutsukanai","english":"Unbreakable Machine-Doll","native":"機巧少女〈マシンドール〉は傷つかない","synonyms":["Machine Girl wa Kizutsukanai","Kikou Shoujo wa Kizutsukanai"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":7,"month":10,"year":2013},"status":"Finished Airing"},{"index":17,"id":20021,"mal_id":20021,"title":"Sword Art Online: Extra Edition","english":"Sword Art Online: Extra Edition","native":"ソードアート・オンライン Extra Edition","synonyms":["S.A.O: Extra Edition","SAO: Extra Edition"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":12,"year":2013},"status":"Finished Airing"},{"index":18,"id":18677,"mal_id":18677,"title":"Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.","english":"I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job","native":"勇者になれなかった俺はしぶしぶ就職を決意しました。","synonyms":["Yu-sibu","Yusibu","Yuushibu"],"format":"TV","episodes":12,"season":"FALL","year":2013,"start_date":{"day":5,"month":10,"year":2013},"status":"Finished Airing"},{"index":19,"id":12477,"mal_id":12477,"title":"Sakasama no Patema","english":"Patema Inverted","native":"サカサマのパテマ","synonyms":["Sakasama no Patema"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":11,"year":2013},"status":"Finished Airing"},{"index":20,"id":19647,"mal_id":19647,"title":"Hajime no Ippo: Rising","english":"Fighting Spirit: Rising","native":"はじめの一歩 Rising","synonyms":["Fighting Spirit: Rising","Hajime no Ippo 3"],"format":"TV","episodes":25,"season":"FALL","year":2013,"start_date":{"day":6,"month":10,"year":2013},"status":"Finished Airing"},{"index":21,"id":18689,"mal_id":18689,"title":"Diamond no Ace","english":"Ace of Diamond","native":"ダイヤのA[エース]","synonyms":["Daiya no Ace","Ace of the Diamond","Dia no A"],"format":"TV","episodes":75,"season":"FALL","year":2013,"start_date":{"day":6,"month":10,"year":2013},"status":"Finished Airing"},{"index":22,"id":18245,"mal_id":18245,"title":"White Album 2","english":"White Album 2","native":"WHITE ALBUM [ホワイトアルバム] 2","synonyms":["White Album2","WA2"],"format":"TV","episodes":13,"season":"FALL","year":2013,"start_date":{"day":6,"month":10,"year":2013},"status":"Finished Airing"},{"index":23,"id":16664,"mal_id":16664,"title":"Kaguya-hime no Monogatari","english":"The Tale of the Princess Kaguya","native":"かぐや姫の物語","synonyms":["Kaguyahime no Monogatari","Princess Kaguya Story"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":11,"year":2013},"status":"Finished Airing"},{"index":24,"id":18179,"mal_id":18179,"title":"Yowamushi Pedal","english":"Yowamushi Pedal","native":"弱虫ペダル","synonyms":["Yowapeda"],"format":"TV","episodes":38,"season":"FALL","year":2013,"start_date":{"day":8,"month":10,"year":2013},"status":"Finished Airing"}]},{"year":2015,"season":"fall","anilist":[{"index":0,"id":21087,"mal_id":30276,"title":"One Punch Man","english":"One-Punch Man","native":"ワンパンマン","synonyms":["OPM","Wanpanman","איש האגרוף הבודד","一拳超人","วันพันช์แมน","Jagoan Sekali Pukul S1","رجل اللكمة الواحدة","ون بنش مان","Ванпанчмен"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":5},"status":"FINISHED"},{"index":1,"id":20992,"mal_id":28891,"title":"Haikyuu!! 2nd Season","english":"HAIKYU!! 2nd Season","native":"ハイキュー!! セカンドシーズン","synonyms":["ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2"],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":4},"status":"FINISHED"},{"index":2,"id":21128,"mal_id":30503,"title":"Noragami ARAGOTO","english":"Noragami Aragoto","native":"ノラガミ ARAGOTO","synonyms":["โนรางามิ เทวดาขาจร ภาค 2","ノラガミ アラゴト"],"format":"TV","episodes":13,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":3},"status":"FINISHED"},{"index":3,"id":21092,"mal_id":30296,"title":"Rakudai Kishi no Cavalry","english":"Chivalry of a Failed Knight","native":"落第騎士の英雄譚(キャバルリィ)","synonyms":["Rakudai Kishi no Eiyuutan","A tale of worst one","เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":3},"status":"FINISHED"},{"index":4,"id":20993,"mal_id":28927,"title":"Owari no Seraph: Nagoya Kessen-hen","english":"Seraph of the End: Battle in Nagoya","native":"終わりのセラフ 名古屋決戦編","synonyms":["OwaSera 2","Seraph of the End: El Reino de los Vampiros","เทวทูตแห่งโลกมืด ภาค 2"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":10},"status":"FINISHED"},{"index":5,"id":21131,"mal_id":30544,"title":"Gakusen Toshi Asterisk","english":"The Asterisk War","native":"学戦都市アスタリスク","synonyms":["Academy Battle City Asterisk"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":3},"status":"FINISHED"},{"index":6,"id":21262,"mal_id":31181,"title":"Owarimonogatari","english":"Owarimonogatari","native":"終物語","synonyms":["End Tale"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":4},"status":"FINISHED"},{"index":7,"id":21386,"mal_id":31704,"title":"One Punch Man: Road to Hero","english":"One-Punch Man: Road to Hero","native":"ワンパンマン「ロード・トゥ・ヒーロー」","synonyms":["One Punch Man OVA 1 "],"format":"OVA","episodes":1,"season":"FALL","year":2015,"start_date":{"year":2015,"month":12,"day":4},"status":"FINISHED"},{"index":8,"id":21110,"mal_id":30363,"title":"Shinmai Maou no Testament: BURST","english":"The Testament of Sister New Devil BURST","native":"新妹魔王の契約者 BURST","synonyms":["Shinmai Maou no Keiyakusha BURST"],"format":"TV","episodes":10,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":10},"status":"FINISHED"},{"index":9,"id":21624,"mal_id":32188,"title":"Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero","english":"Steins;Gate 0: 23β -Divide by Zero-","native":"シュタインズ・ゲート 境界面上のミッシングリンク -Divide By Zero-","synonyms":["Steins;Gate: Episode 23 (β)"],"format":"OVA","episodes":1,"season":"FALL","year":2015,"start_date":{"year":2015,"month":12,"day":3},"status":"FINISHED"},{"index":10,"id":20704,"mal_id":24133,"title":"Taimadou Gakuen 35 Shiken Shoutai","english":"Anti-Magic Academy: The 35th Test Platoon","native":"対魔導学園35試験小隊","synonyms":["หมวดเตรียม 35 ล่าทรชนเวท"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":8},"status":"FINISHED"},{"index":11,"id":21281,"mal_id":31374,"title":"Shingeki! Kyojin Chuugakkou","english":"Attack on Titan: Junior High","native":"進撃!巨人中学校","synonyms":["Ataque a los Titanes: Junior High","ผ่ามัธยมไททัน","ผ่า! มัธยมไททัน"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":4},"status":"FINISHED"},{"index":12,"id":21268,"mal_id":31251,"title":"Kidou Senshi Gundam: Tekketsu no Orphans","english":"Mobile Suit GUNDAM Iron Blooded Orphans","native":"機動戦士ガンダム 鉄血のオルフェンズ","synonyms":["Gundam IBO","G-Tekketsu","Gundam: Sirotci s železnou krví"],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":4},"status":"FINISHED"},{"index":13,"id":20771,"mal_id":25099,"title":"Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken","english":"Shomin Sample","native":"俺がお嬢様学校に「庶民サンプル」としてゲッツされた件","synonyms":["นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ","Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\""],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":7},"status":"FINISHED"},{"index":14,"id":20913,"mal_id":27991,"title":"K: RETURN OF KINGS","english":null,"native":"K RETURN OF KINGS","synonyms":["K-Project 2"],"format":"TV","episodes":13,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":3},"status":"FINISHED"},{"index":15,"id":21326,"mal_id":31297,"title":"Tokyo Ghoul: [PINTO]","english":null,"native":"東京喰種トーキョーグール【PINTO】","synonyms":["Toukyou Kushu: Pinto"],"format":"OVA","episodes":1,"season":"FALL","year":2015,"start_date":{"year":2015,"month":12,"day":25},"status":"FINISHED"},{"index":16,"id":19489,"mal_id":19489,"title":"Little Witch Academia: Mahou-jikake no Parade","english":"Little Witch Academia: The Enchanted Parade","native":"リトルウィッチアカデミア 魔法仕掛けのパレード","synonyms":["Little Witch Academia Movie","Little Witch Academia 2","LWA Movie","LWA 2"],"format":"MOVIE","episodes":1,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":9},"status":"FINISHED"},{"index":17,"id":21066,"mal_id":30187,"title":"Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru","english":"Beautiful Bones -Sakurako's Investigation-","native":"櫻子さんの足下には死体が埋まっている","synonyms":["A Corpse is Buried Under Sakurako's Feet.","Труп под ногами Сакурако","Трупи під ногами Сакурако"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":8},"status":"FINISHED"},{"index":18,"id":21190,"mal_id":28621,"title":"Subete ga F ni Naru: THE PERFECT INSIDER","english":"The Perfect Insider","native":"すべてがFになる THE PERFECT INSIDER","synonyms":["Everything Becomes F: The Perfect Insider","O Infiltrado Perfeito"],"format":"TV","episodes":11,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":9},"status":"FINISHED"},{"index":19,"id":119941,"mal_id":30885,"title":"Noragami ARAGOTO OVA","english":null,"native":"ノラガミ ARAGOTO OAD","synonyms":["ノラガミ アラゴト OAD"],"format":"OVA","episodes":2,"season":"FALL","year":2015,"start_date":{"year":2015,"month":11,"day":17},"status":"FINISHED"},{"index":20,"id":21261,"mal_id":31174,"title":"Osomatsu-san","english":"Mr. Osomatsu","native":"おそ松さん","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":6},"status":"FINISHED"},{"index":21,"id":21356,"mal_id":31592,"title":"Pocket Monsters XY&Z","english":"Pokémon the Series: XYZ","native":"ポケットモンスター XY&Z","synonyms":["Pokémon Seria XYZ"],"format":"TV","episodes":47,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":29},"status":"FINISHED"},{"index":22,"id":21138,"mal_id":30370,"title":"Akatsuki no Yona OVA","english":"Yona of the Dawn OVA","native":"暁のヨナ OVA","synonyms":["AkaYona OVA","Akatsuki no Yona: Sono Se ni wa","Akatsuki no Yona: Zeno-hen","暁のヨナ その背には","Йона на заре","Рассвет Йоны","Ёна на заре"],"format":"OVA","episodes":3,"season":"FALL","year":2015,"start_date":{"year":2015,"month":9,"day":18},"status":"FINISHED"},{"index":23,"id":21318,"mal_id":31389,"title":"Fate/stay night: Unlimited Blade Works 2nd Season - sunny day","english":"Fate/stay night: Unlimited Blade Works 2nd Season - sunny day","native":"Fate/stay night [Unlimited Blade Works] 2ndシーズン - sunny day","synonyms":["フェイト/ステイナイト Unlimited Blade Works 2ndシーズン - sunny day"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":7},"status":"FINISHED"},{"index":24,"id":21116,"mal_id":30385,"title":"Valkyrie Drive: Mermaid","english":"Valkyrie Drive: Mermaid","native":"ヴァルキリードライヴ マーメイド","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"year":2015,"month":10,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":30276,"mal_id":30276,"title":"One Punch Man","english":"One-Punch Man","native":"ワンパンマン","synonyms":["One Punch-Man","OPM"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":5,"month":10,"year":2015},"status":"Finished Airing"},{"index":1,"id":28891,"mal_id":28891,"title":"Haikyuu!! Second Season","english":"Haikyu!! 2nd Season","native":"ハイキュー!! セカンドシーズン","synonyms":["Haikyuu!! Second Season"],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"day":4,"month":10,"year":2015},"status":"Finished Airing"},{"index":2,"id":30503,"mal_id":30503,"title":"Noragami Aragoto","english":"Noragami Aragoto","native":"ノラガミ ARAGOTO","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2015,"start_date":{"day":3,"month":10,"year":2015},"status":"Finished Airing"},{"index":3,"id":30296,"mal_id":30296,"title":"Rakudai Kishi no Cavalry","english":"Chivalry of a Failed Knight","native":"落第騎士の英雄譚《キャバルリィ》","synonyms":["A Chivalry of the Failed Knight","Rakudai Kishi no Eiyuutan","A Tale of Worst One"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":3,"month":10,"year":2015},"status":"Finished Airing"},{"index":4,"id":28927,"mal_id":28927,"title":"Owari no Seraph: Nagoya Kessen-hen","english":"Seraph of the End: Battle in Nagoya","native":"終わりのセラフ 名古屋決戦編","synonyms":["Owari no Seraph 2nd Season","Seraph of the End 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":10,"month":10,"year":2015},"status":"Finished Airing"},{"index":5,"id":30544,"mal_id":30544,"title":"Gakusen Toshi Asterisk","english":"The Asterisk War","native":"学戦都市アスタリスク","synonyms":["Academy Battle City Asterisk"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":3,"month":10,"year":2015},"status":"Finished Airing"},{"index":6,"id":31181,"mal_id":31181,"title":"Owarimonogatari","english":"Owarimonogatari","native":"終物語","synonyms":["End Story"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":4,"month":10,"year":2015},"status":"Finished Airing"},{"index":7,"id":30363,"mal_id":30363,"title":"Shinmai Maou no Testament Burst","english":"The Testament of Sister New Devil: Burst","native":"新妹魔王の契約者 BURST","synonyms":[],"format":"TV","episodes":10,"season":"FALL","year":2015,"start_date":{"day":10,"month":10,"year":2015},"status":"Finished Airing"},{"index":8,"id":27991,"mal_id":27991,"title":"K: Return of Kings","english":"K: Return of Kings","native":"K RETURN OF KINGS","synonyms":["K-Project Sequel","K 2nd Season"],"format":"TV","episodes":13,"season":"FALL","year":2015,"start_date":{"day":3,"month":10,"year":2015},"status":"Finished Airing"},{"index":9,"id":31772,"mal_id":31772,"title":"One Punch Man Specials","english":"One Punch Man Specials","native":"ワンパンマン","synonyms":[],"format":"Special","episodes":6,"season":null,"year":null,"start_date":{"day":24,"month":12,"year":2015},"status":"Finished Airing"},{"index":10,"id":31704,"mal_id":31704,"title":"One Punch Man: Road to Hero","english":null,"native":"ワンパンマン OVA「ロード・トゥ・ヒーロー」","synonyms":["One Punch Man OVA","One Punch-Man OVA","One-Punch Man OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":12,"year":2015},"status":"Finished Airing"},{"index":11,"id":24133,"mal_id":24133,"title":"Taimadou Gakuen 35 Shiken Shoutai","english":"Anti-Magic Academy: The 35th Test Platoon","native":"対魔導学園35試験小隊","synonyms":["Taimadou Gakuen Sanjuugo Shiken Shoutai"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":8,"month":10,"year":2015},"status":"Finished Airing"},{"index":12,"id":25099,"mal_id":25099,"title":"Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken","english":"Shomin Sample","native":"俺がお嬢様学校に「庶民サンプル」としてゲッツされた件","synonyms":["Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"","Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":7,"month":10,"year":2015},"status":"Finished Airing"},{"index":13,"id":32188,"mal_id":32188,"title":"Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero","english":"Steins;Gate: Open the Missing Link - Divide By Zero","native":"シュタインズ・ゲート境界面上のミッシングリンク-Divide By Zero-","synonyms":["Steins Gate: Episode 23 (β)","Open the Missing Link"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":3,"month":12,"year":2015},"status":"Finished Airing"},{"index":14,"id":31374,"mal_id":31374,"title":"Shingeki! Kyojin Chuugakkou","english":"Attack on Titan: Junior High","native":"進撃!巨人中学校","synonyms":["Attack! Titan Junior High"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":4,"month":10,"year":2015},"status":"Finished Airing"},{"index":15,"id":31251,"mal_id":31251,"title":"Kidou Senshi Gundam: Tekketsu no Orphans","english":"Mobile Suit Gundam: Iron-Blooded Orphans","native":"機動戦士ガンダム 鉄血のオルフェンズ","synonyms":["G-Tekketsu"],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"day":4,"month":10,"year":2015},"status":"Finished Airing"},{"index":16,"id":30885,"mal_id":30885,"title":"Noragami Aragoto OVA","english":null,"native":"ノラガミ OAD","synonyms":["Noragami Aragoto OAD"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":17,"month":11,"year":2015},"status":"Finished Airing"},{"index":17,"id":31297,"mal_id":31297,"title":"Tokyo Ghoul: \"Pinto\"","english":"Tokyo Ghoul: Pinto","native":"東京喰種 トーキョーグール【PINTO】","synonyms":[],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":12,"year":2015},"status":"Finished Airing"},{"index":18,"id":30187,"mal_id":30187,"title":"Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru","english":"Beautiful Bones -Sakurako's Investigation-","native":"櫻子さんの足下には死体が埋まっている","synonyms":["A Corpse is Buried Under Sakurako's Feet."],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":8,"month":10,"year":2015},"status":"Finished Airing"},{"index":19,"id":28621,"mal_id":28621,"title":"Subete ga F ni Naru","english":"The Perfect Insider","native":"すべてがFになる THE PERFECT INSIDER","synonyms":["Everything Becomes F: The Perfect Insider"],"format":"TV","episodes":11,"season":"FALL","year":2015,"start_date":{"day":9,"month":10,"year":2015},"status":"Finished Airing"},{"index":20,"id":31174,"mal_id":31174,"title":"Osomatsu-san","english":"Mr. Osomatsu","native":"おそ松さん","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2015,"start_date":{"day":6,"month":10,"year":2015},"status":"Finished Airing"},{"index":21,"id":19489,"mal_id":19489,"title":"Little Witch Academia: Mahoujikake no Parade","english":"Little Witch Academia: The Enchanted Parade","native":"リトルウィッチアカデミア 魔法仕掛けのパレード","synonyms":["LWA 2","Little Witch Academia 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":10,"year":2015},"status":"Finished Airing"},{"index":22,"id":29974,"mal_id":29974,"title":"Diabolik Lovers More,Blood","english":"Diabolik Lovers II: More,Blood","native":"DIABOLIK LOVERS MORE,BLOOD","synonyms":["Diabolik Lovers 2nd Season","Diabolik Lovers Second Season","Diabolik Lovers: More Blood"],"format":"TV","episodes":12,"season":"FALL","year":2015,"start_date":{"day":24,"month":9,"year":2015},"status":"Finished Airing"},{"index":23,"id":31592,"mal_id":31592,"title":"Pokemon XY&Z","english":"Pokémon the Series: XYZ","native":"ポケットモンスターXY&Z","synonyms":["Pocket Monsters XY&Z","Pokémon XY&Z"],"format":"TV","episodes":47,"season":"FALL","year":2015,"start_date":{"day":29,"month":10,"year":2015},"status":"Finished Airing"},{"index":24,"id":27829,"mal_id":27829,"title":"Heavy Object","english":"Heavy Object","native":"ヘヴィーオブジェクト","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2015,"start_date":{"day":3,"month":10,"year":2015},"status":"Finished Airing"}]},{"year":2017,"season":"fall","anilist":[{"index":0,"id":97940,"mal_id":34572,"title":"Black Clover","english":"Black Clover","native":"ブラッククローバー","synonyms":["תלתן שחור","แบล็กโคลเวอร์","Чёрный клевер"],"format":"TV","episodes":170,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":3},"status":"FINISHED"},{"index":1,"id":98436,"mal_id":35062,"title":"Mahoutsukai no Yome","english":"The Ancient Magus' Bride","native":"魔法使いの嫁","synonyms":["Mahou Tsukai no Yome","Mahoyome","Невеста чародея"],"format":"TV","episodes":24,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":8},"status":"FINISHED"},{"index":2,"id":99255,"mal_id":35788,"title":"Shokugeki no Souma: San no Sara","english":"Food Wars! The Third Plate","native":"食戟のソーマ 餐ノ皿","synonyms":["食戟之灵 餐之皿","ยอดนักปรุงโซมะ ภาค 3"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":4},"status":"FINISHED"},{"index":3,"id":97994,"mal_id":34618,"title":"Blend S","english":"BLEND-S","native":"ブレンド・S","synonyms":["調教咖啡廳"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":8},"status":"FINISHED"},{"index":4,"id":97922,"mal_id":34542,"title":"Inuyashiki","english":"INUYASHIKI LAST HERO","native":"いぬやしき","synonyms":["اینو یاشیکی","อินุยาชิกิ","犬屋敷","犬舍"],"format":"TV","episodes":11,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":13},"status":"FINISHED"},{"index":5,"id":98707,"mal_id":35557,"title":"Houseki no Kuni","english":"Land of the Lustrous","native":"宝石の国","synonyms":["L'Ère des Cristaux","Das Land der Juwelen","Страна самоцветов","Vương Quốc Bảo Thạch","ดินแดนอัญมณี"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":7},"status":"FINISHED"},{"index":6,"id":20791,"mal_id":25537,"title":"Fate/stay night [Heaven's Feel] I. presage flower","english":"Fate/stay night [Heaven's Feel] I. presage flower","native":"Fate/stay night[Heaven's Feel] Ⅰ.presage flower","synonyms":["Fate/HF","Судьба/Ночь схватки: Прикосновение небес"],"format":"MOVIE","episodes":1,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":14},"status":"FINISHED"},{"index":7,"id":99726,"mal_id":36038,"title":"Net-juu no Susume","english":"Recovery of an MMO Junkie","native":"ネト充のススメ","synonyms":["Neto-juu no Susume","Netojuu no Susume","Recommendation of the Wonderful Virtual Life","Recommendation of The Internet Enhancement","Netoju"],"format":"TV","episodes":10,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":6},"status":"FINISHED"},{"index":8,"id":99420,"mal_id":35838,"title":"Shoujo Shuumatsu Ryokou","english":"Girls' Last Tour","native":"少女終末旅行","synonyms":["少女终末旅行 ","GLT","Wisata Gadis di Akhir Hayat"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":6},"status":"FINISHED"},{"index":9,"id":98478,"mal_id":35180,"title":"3-gatsu no Lion 2nd Season","english":"March comes in like a lion Season 2","native":"3月のライオン 第2シリーズ","synonyms":["Sangatsu no Lion 2","מרץ מגיע כאריה 2"],"format":"TV","episodes":22,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":14},"status":"FINISHED"},{"index":10,"id":97886,"mal_id":34451,"title":"Kekkai Sensen & BEYOND","english":"Blood Blockade Battlefront & Beyond","native":"血界戦線 & BEYOND","synonyms":["Bloodline Battlefront & Beyond"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":8},"status":"FINISHED"},{"index":11,"id":98596,"mal_id":35413,"title":"Imouto sae Ireba Ii.","english":"A Sister's All You Need.","native":"妹さえいればいい。","synonyms":["Imoto sae Ireba Ii.","A Sister's All You Need","It'd be Good if Only Little Sister Was Here","Imosae","Imoutosae","Imotosae","如果有妹妹就好了。","คงจะดี ถ้ามีน้องสาวสักคน"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":8},"status":"FINISHED"},{"index":12,"id":99634,"mal_id":36106,"title":"Shingeki no Kyojin: LOST GIRLS","english":"Attack on Titan: Lost Girls","native":"進撃の巨人 LOST GIRLS","synonyms":["Episode 16.5A: Wall Sina. Goodbye","Episode 16.5B: Wall Sina. Goodbye","SnK","AoT","ผ่าพิภพไททัน OAD","ผ่าพิภพไททัน ภาค OAD Lost Girls","Атака титанов: Потерянные девушки"],"format":"OVA","episodes":3,"season":"FALL","year":2017,"start_date":{"year":2017,"month":12,"day":8},"status":"FINISHED"},{"index":13,"id":98820,"mal_id":35639,"title":"Just Because!","english":"Just Because!","native":"Just Because!","synonyms":["ジャストビコーズ"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":5},"status":"FINISHED"},{"index":14,"id":98443,"mal_id":35076,"title":"Juuni Taisen","english":"JUNI TAISEN:ZODIAC WAR","native":"十二大戦","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":3},"status":"FINISHED"},{"index":15,"id":98951,"mal_id":35712,"title":"Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken","english":"My Girlfriend is Shobitch","native":"僕の彼女がマジメ過ぎる処女ビッチな件","synonyms":["My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously","My girlfriend is faithful virgin bitch","This girlfriend is too much to handle!"],"format":"TV","episodes":10,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":12},"status":"FINISHED"},{"index":16,"id":98449,"mal_id":34712,"title":"Kujira no Kora wa Sajou ni Utau","english":"Children of the Whales","native":"クジラの子らは砂上に歌う","synonyms":["KujiSuna","Die Walkinder","Hijos de las Ballenas","أبناء الحيتان","ลำนำของเหล่าลูกปลาวาฬ","Kujira no Kora - Filhos das Baleias"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":8},"status":"FINISHED"},{"index":17,"id":98572,"mal_id":35376,"title":"Himouto! Umaru-chan R","english":"Himouto! Umaru-chan R","native":"干物妹! うまるちゃん R","synonyms":["Himouto! Umaru-chan Season 2"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":9},"status":"FINISHED"},{"index":18,"id":98977,"mal_id":36220,"title":"Itsudatte Bokura no Koi wa 10 cm Datta.","english":"Our love has always been 10 centimeters apart.","native":"いつだって僕らの恋は10センチだった。","synonyms":[],"format":"TV","episodes":6,"season":"FALL","year":2017,"start_date":{"year":2017,"month":11,"day":25},"status":"FINISHED"},{"index":19,"id":99698,"mal_id":36027,"title":"Ousama Game The Animation","english":"King's Game","native":"王様ゲーム The Animation","synonyms":["国王游戏"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":5},"status":"FINISHED"},{"index":20,"id":98657,"mal_id":35484,"title":"Osake wa Fuufu ni Natte kara","english":"Love is Like a Cocktail","native":"お酒は夫婦になってから","synonyms":["Osake wa Fuufu ni Nattekara","Alcohol is for married couples","Osakefufu"],"format":"TV_SHORT","episodes":13,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":4},"status":"FINISHED"},{"index":21,"id":21855,"mal_id":33478,"title":"UQ Holder!: Mahou Sensei Negima! 2","english":"UQ Holder!","native":"UQ Holder! ~魔法先生ネギま!2~","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":3},"status":"FINISHED"},{"index":22,"id":98448,"mal_id":35079,"title":"Kino no Tabi -the Beautiful World- the Animated Series","english":"Kino's Journey -the Beautiful World- the Animated Series","native":"キノの旅 -the Beautiful World- the Animated Series","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":6},"status":"FINISHED"},{"index":23,"id":99714,"mal_id":35843,"title":"Gintama.: Porori-hen","english":"Gintama.: Slip Arc","native":"銀魂. ポロリ編","synonyms":["Gintama. (2017)"],"format":"TV","episodes":13,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":2},"status":"FINISHED"},{"index":24,"id":98506,"mal_id":35241,"title":"Konohana Kitan","english":"KONOHANA KITAN","native":"このはな綺譚","synonyms":["此花绮谭","此花亭奇谭","fox spirit tales"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"year":2017,"month":10,"day":4},"status":"FINISHED"}],"jikan":[{"index":0,"id":34572,"mal_id":34572,"title":"Black Clover","english":"Black Clover","native":"ブラッククローバー","synonyms":[],"format":"TV","episodes":170,"season":"FALL","year":2017,"start_date":{"day":3,"month":10,"year":2017},"status":"Finished Airing"},{"index":1,"id":35788,"mal_id":35788,"title":"Shokugeki no Souma: San no Sara","english":"Food Wars! The Third Plate","native":"食戟のソーマ 餐ノ皿","synonyms":["Shokugeki no Soma 3rd Season","Shokugeki no Soma 3"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":4,"month":10,"year":2017},"status":"Finished Airing"},{"index":2,"id":35062,"mal_id":35062,"title":"Mahoutsukai no Yome","english":"The Ancient Magus' Bride","native":"魔法使いの嫁","synonyms":["The Magician's Bride","Mahoyome"],"format":"TV","episodes":24,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":3,"id":34542,"mal_id":34542,"title":"Inuyashiki","english":"Inuyashiki: Last Hero","native":"いぬやしき","synonyms":[],"format":"TV","episodes":11,"season":"FALL","year":2017,"start_date":{"day":13,"month":10,"year":2017},"status":"Finished Airing"},{"index":4,"id":34618,"mal_id":34618,"title":"Blend S","english":"BLEND-S","native":"ブレンド・S","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":5,"id":35557,"mal_id":35557,"title":"Houseki no Kuni","english":"Land of the Lustrous","native":"宝石の国","synonyms":["Country of Jewels"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":7,"month":10,"year":2017},"status":"Finished Airing"},{"index":6,"id":25537,"mal_id":25537,"title":"Fate/stay night Movie: Heaven's Feel - I. Presage Flower","english":"Fate/stay night: Heaven's Feel - I. Presage Flower","native":"劇場版「Fate/stay night [Heaven's Feel] Ⅰ.presage flower」","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":14,"month":10,"year":2017},"status":"Finished Airing"},{"index":7,"id":36038,"mal_id":36038,"title":"Net-juu no Susume","english":"Recovery of an MMO Junkie","native":"ネト充のススメ","synonyms":["Netojuu no Susume","Recommendation of the Wonderful Virtual Life"],"format":"TV","episodes":10,"season":"FALL","year":2017,"start_date":{"day":10,"month":10,"year":2017},"status":"Finished Airing"},{"index":8,"id":34451,"mal_id":34451,"title":"Kekkai Sensen & Beyond","english":"Blood Blockade Battlefront & Beyond","native":"血界戦線 & BEYOND","synonyms":["Bloodline Battlefront & Beyond"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":9,"id":35180,"mal_id":35180,"title":"3-gatsu no Lion 2nd Season","english":"March Comes In Like a Lion 2nd Season","native":"3月のライオン 第2シリーズ","synonyms":["Sangatsu no Lion Second Season"],"format":"TV","episodes":22,"season":"FALL","year":2017,"start_date":{"day":14,"month":10,"year":2017},"status":"Finished Airing"},{"index":10,"id":35838,"mal_id":35838,"title":"Shoujo Shuumatsu Ryokou","english":"Girls' Last Tour","native":"少女終末旅行","synonyms":["The End Girl Trip"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":6,"month":10,"year":2017},"status":"Finished Airing"},{"index":11,"id":35413,"mal_id":35413,"title":"Imouto sae Ireba Ii.","english":"A Sister's All You Need","native":"妹さえいればいい。","synonyms":["It'd be Good if Only Little Sister Was Here"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":12,"id":35639,"mal_id":35639,"title":"Just Because!","english":"Just Because!","native":"Just Because!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":5,"month":10,"year":2017},"status":"Finished Airing"},{"index":13,"id":36106,"mal_id":36106,"title":"Shingeki no Kyojin: Lost Girls","english":"Attack on Titan: Lost Girls","native":"進撃の巨人 LOST GIRLS","synonyms":[],"format":"OVA","episodes":3,"season":null,"year":null,"start_date":{"day":8,"month":12,"year":2017},"status":"Finished Airing"},{"index":14,"id":35076,"mal_id":35076,"title":"Juuni Taisen","english":"Juni Taisen: Zodiac War","native":"十二大戦","synonyms":["12 Taisen","12 Wars"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":3,"month":10,"year":2017},"status":"Finished Airing"},{"index":15,"id":35712,"mal_id":35712,"title":"Boku no Kanojo ga Majimesugiru Sho-bitch na Ken","english":"My Girlfriend is Shobitch","native":"僕の彼女がマジメ過ぎるしょびっちな件","synonyms":["My Girlfriend is a Faithful Virgin Bitch","Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken"],"format":"TV","episodes":10,"season":"FALL","year":2017,"start_date":{"day":12,"month":10,"year":2017},"status":"Finished Airing"},{"index":16,"id":35376,"mal_id":35376,"title":"Himouto! Umaru-chan R","english":null,"native":"干物妹!うまるちゃんR","synonyms":["Himouto! Umaru-chan 2nd Season","My Two-Faced Little Sister R"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":17,"id":36027,"mal_id":36027,"title":"Ousama Game The Animation","english":"King's Game","native":"王様ゲーム The Animation","synonyms":["Ou-sama Game"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":5,"month":10,"year":2017},"status":"Finished Airing"},{"index":18,"id":36220,"mal_id":36220,"title":"Itsudatte Bokura no Koi wa 10 cm Datta.","english":"Our love has always been 10 centimeters apart.","native":"いつだって僕らの恋は10センチだった。","synonyms":[],"format":"TV","episodes":6,"season":"FALL","year":2017,"start_date":{"day":25,"month":11,"year":2017},"status":"Finished Airing"},{"index":19,"id":34712,"mal_id":34712,"title":"Kujira no Kora wa Sajou ni Utau","english":"Children of the Whales","native":"クジラの子らは砂上に歌う","synonyms":["Whale Calves Sing on the Sand","Tales of the Wales Calves"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":8,"month":10,"year":2017},"status":"Finished Airing"},{"index":20,"id":35484,"mal_id":35484,"title":"Osake wa Fuufu ni Natte kara","english":"Love is Like a Cocktail","native":"お酒は夫婦になってから","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2017,"start_date":{"day":4,"month":10,"year":2017},"status":"Finished Airing"},{"index":21,"id":33478,"mal_id":33478,"title":"UQ Holder! Mahou Sensei Negima! 2","english":"UQ Holder!","native":"UQ HOLDER! ~魔法先生ネギま!2~","synonyms":["Yuukyuu Holder","Eternal Holder"],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":3,"month":10,"year":2017},"status":"Finished Airing"},{"index":22,"id":35079,"mal_id":35079,"title":"Kino no Tabi: The Beautiful World - The Animated Series","english":"Kino's Journey -the Beautiful World- the Animated Series","native":"キノの旅 -the Beautiful World- the Animated Series","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":6,"month":10,"year":2017},"status":"Finished Airing"},{"index":23,"id":35843,"mal_id":35843,"title":"Gintama. Porori-hen","english":"Gintama. Slip Arc","native":"銀魂。ポロリ編","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2017,"start_date":{"day":2,"month":10,"year":2017},"status":"Finished Airing"},{"index":24,"id":35241,"mal_id":35241,"title":"Konohana Kitan","english":"Konohana Kitan","native":"このはな綺譚","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2017,"start_date":{"day":4,"month":10,"year":2017},"status":"Finished Airing"}]},{"year":2019,"season":"fall","anilist":[{"index":0,"id":104276,"mal_id":38408,"title":"Boku no Hero Academia 4","english":"My Hero Academia Season 4","native":"僕のヒーローアカデミア4","synonyms":["BNHA 4","MHA 4","我的英雄学院 4","我的英雄学院第四季","มายฮีโร่ อคาเดเมีย ภาค 4","أكاديميتي للأبطال","Моя геройская академия 4"],"format":"TV","episodes":25,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":12},"status":"FINISHED"},{"index":1,"id":107660,"mal_id":39195,"title":"BEASTARS","english":"BEASTARS","native":"BEASTARS","synonyms":["ビースターズ","BEASTARS - O Lobo Bom","חייתיים","บีสตาร์","Выдающиеся звери","براءة ذئب","비스타즈"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":10},"status":"FINISHED"},{"index":2,"id":108759,"mal_id":39597,"title":"Sword Art Online: Alicization - War of Underworld","english":"Sword Art Online: Alicization - War of Underworld","native":"ソードアート・オンライン アリシゼーション War of Underworld","synonyms":["SAOIV","SAO4"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":13},"status":"FINISHED"},{"index":3,"id":108928,"mal_id":39701,"title":"Nanatsu no Taizai: Kamigami no Gekirin","english":"The Seven Deadly Sins: Imperial Wrath of the Gods","native":"七つの大罪 神々の逆鱗","synonyms":["The Seven Deadly Sins: Wrath of the Gods","ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ","Семь смертных грехов: Гнев богов"],"format":"TV","episodes":24,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":9},"status":"FINISHED"},{"index":4,"id":105156,"mal_id":38659,"title":"Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru","english":"Cautious Hero: The Hero Is Overpowered but Overly Cautious","native":"慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~","synonyms":["This Hero is Invincible but \"Too Cautious\"","Shinchou Yuusha","慎重勇者~这个勇者明明超强却过分慎重~","ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":2},"status":"FINISHED"},{"index":5,"id":109963,"mal_id":39940,"title":"Shokugeki no Souma: Shin no Sara","english":"Food Wars! The Fourth Plate","native":"食戟のソーマ 神ノ皿","synonyms":["食戟之灵:神之皿","ยอดนักปรุงโซมะ ภาค 4"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":12},"status":"FINISHED"},{"index":6,"id":108553,"mal_id":39565,"title":"Boku no Hero Academia THE MOVIE: Heroes:Rising","english":"My Hero Academia: Heroes Rising","native":"僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング","synonyms":["Boku no Hero Academia the Movie 2","My Hero Academia: El Despertar de los Héroes","มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก","มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก"],"format":"MOVIE","episodes":1,"season":"FALL","year":2019,"start_date":{"year":2019,"month":12,"day":20},"status":"FINISHED"},{"index":7,"id":107693,"mal_id":39196,"title":"Mairimashita! Iruma-kun","english":"Welcome to Demon School! Iruma-kun","native":"魔入りました!入間くん","synonyms":["Welcome to Demon School, Iruma-kun!","入间同学入魔了!","อิรุมะคุง พจญในแดนปีศาจ!"],"format":"TV","episodes":23,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":5},"status":"FINISHED"},{"index":8,"id":104464,"mal_id":38483,"title":"Ore wo Suki nano wa Omae dake ka yo","english":"ORESUKI: Are you the only one who loves me?","native":"俺を好きなのはお前だけかよ","synonyms":["อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":3},"status":"FINISHED"},{"index":9,"id":108268,"mal_id":39468,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen","english":"Ascendance of a Bookworm","native":"本好きの下剋上 司書になるためには手段を選んでいられません","synonyms":["Ascendance of a Bookworm: I'll do anything to become a librarian","爱书的下克上:为了成为图书管理员不择手段!","หนอนหนังสือยึดอำนาจ "],"format":"TV","episodes":14,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":3},"status":"FINISHED"},{"index":10,"id":104722,"mal_id":38572,"title":"Assassins Pride","english":"ASSASSINS PRIDE","native":"アサシンズプライド","synonyms":["Assassin's Pride","แอสแซสซินส์ ไพรด์)"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":10},"status":"FINISHED"},{"index":11,"id":112625,"mal_id":40542,"title":"Saiki Kusuo no Ψ-nan: Ψ-shidou-hen","english":"The Disastrous Life of Saiki K.: Reawakened","native":"斉木楠雄のΨ難 Ψ始動編","synonyms":["The Disastrous Life of Saiki K."," Starting Arc"],"format":"ONA","episodes":6,"season":"FALL","year":2019,"start_date":{"year":2019,"month":12,"day":30},"status":"FINISHED"},{"index":12,"id":108388,"mal_id":39523,"title":"Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!","english":"High School Prodigies Have It Easy Even In Another World","native":"超人高校生たちは異世界でも余裕で生き抜くようです!","synonyms":["CHOYOYU!","¡Los prodigios de bachillerato han llegado a otro mundo!","Les super lycéens arrivent dans un autre monde!","I prodigi delle superiori sono arrivati in un altro mondo!","Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!","Сверходарённые школьники прибыли в другой мир","เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":3},"status":"FINISHED"},{"index":13,"id":110229,"mal_id":40004,"title":"Bokutachi wa Benkyou ga Dekinai!","english":"We Never Learn!: BOKUBEN Season 2","native":"ぼくたちは勉強ができない!","synonyms":["BokuBen 2","We Never Learn 2","Boku-tachi wa Benkyou ga Dekinai 2nd Season","Boku-tachi wa Benkyou ga Dekinai!","เรื่องนี้ตําราไม่มีสอน ภาค 2"],"format":"TV","episodes":13,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":6},"status":"FINISHED"},{"index":14,"id":103275,"mal_id":38084,"title":"Fate/Grand Order: Zettai Majuu Sensen Babylonia","english":"Fate/Grand Order Absolute Demonic Front: Babylonia","native":"Fate/Grand Order -絶対魔獣戦線バビロニア-","synonyms":["FGO: Babylonia","フェイト/グランドオーダー -絶対魔獣戦線バビロニア-","Судьба/Великий приказ: Вавилония"],"format":"TV","episodes":21,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":5},"status":"FINISHED"},{"index":15,"id":104052,"mal_id":37972,"title":"Hoshiai no Sora","english":"Stars Align","native":"星合の空","synonyms":["Star-Crossing Skies"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":11},"status":"FINISHED"},{"index":16,"id":108307,"mal_id":39491,"title":"PSYCHO-PASS 3","english":"PSYCHO-PASS 3","native":"PSYCHO-PASS サイコパス3","synonyms":[],"format":"TV","episodes":8,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":24},"status":"FINISHED"},{"index":17,"id":101227,"mal_id":37393,"title":"Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!","english":"Didn't I Say to Make My Abilities Average in the Next Life?!","native":"私、能力は平均値でって言ったよね!","synonyms":["Noukin","ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":7},"status":"FINISHED"},{"index":18,"id":108478,"mal_id":39539,"title":"No Guns Life","english":"No Guns Life","native":"ノー・ガンズ・ライフ","synonyms":["The Way of Life of a Man Loading a Magazine"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":11},"status":"FINISHED"},{"index":19,"id":101239,"mal_id":37403,"title":"Ahiru no Sora","english":"Ahiru no Sora","native":"あひるの空","synonyms":[],"format":"TV","episodes":50,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":2},"status":"FINISHED"},{"index":20,"id":100675,"mal_id":36885,"title":"Saenai Heroine no Sodatekata Fine","english":"Saekano the Movie: Finale","native":"冴えない彼女の育てかた Fine","synonyms":["Saekano Movie","Saekano Fine","Saenai Heroine no Sodatekata Movie","วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่"],"format":"MOVIE","episodes":1,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":26},"status":"FINISHED"},{"index":21,"id":107339,"mal_id":39030,"title":"Hataage! Kemono Michi","english":"Kemono Michi: Rise Up","native":"旗揚!けものみち","synonyms":["Rise Up! Animal Road","旗扬!兽道","เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":2},"status":"FINISHED"},{"index":22,"id":104159,"mal_id":38328,"title":"Azur Lane","english":"AZUR LANE","native":"アズールレーン","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":3},"status":"FINISHED"},{"index":23,"id":101349,"mal_id":37525,"title":"Babylon","english":"BABYLON","native":"バビロン","synonyms":["Babilonia"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":7},"status":"FINISHED"},{"index":24,"id":108891,"mal_id":38889,"title":"Kono Oto Tomare! 2","english":"Kono Oto Tomare!: Sounds of Life Season 2","native":"この音とまれ!2","synonyms":["Stop at this Sound! 2","ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2"],"format":"TV","episodes":13,"season":"FALL","year":2019,"start_date":{"year":2019,"month":10,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":38408,"mal_id":38408,"title":"Boku no Hero Academia 4th Season","english":"My Hero Academia Season 4","native":"僕のヒーローアカデミア","synonyms":[],"format":"TV","episodes":25,"season":"FALL","year":2019,"start_date":{"day":12,"month":10,"year":2019},"status":"Finished Airing"},{"index":1,"id":39195,"mal_id":39195,"title":"Beastars","english":null,"native":"BEASTARS","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":10,"month":10,"year":2019},"status":"Finished Airing"},{"index":2,"id":39597,"mal_id":39597,"title":"Sword Art Online: Alicization - War of Underworld","english":"Sword Art Online: Alicization - War of Underworld","native":"ソードアート・オンライン アリシゼーション War of Underworld","synonyms":["Sword Art Online: Alicization 2nd Season","Sword Art Online III 2nd Season","SAO Alicization 2nd Season","Sword Art Online 3 2nd Season","SAO 3 2nd Season","SAO III 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":13,"month":10,"year":2019},"status":"Finished Airing"},{"index":3,"id":39701,"mal_id":39701,"title":"Nanatsu no Taizai: Kamigami no Gekirin","english":"The Seven Deadly Sins: Imperial Wrath of the Gods","native":"七つの大罪 神々の逆鱗","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2019,"start_date":{"day":9,"month":10,"year":2019},"status":"Finished Airing"},{"index":4,"id":38659,"mal_id":38659,"title":"Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru","english":"Cautious Hero: The Hero Is Overpowered but Overly Cautious","native":"慎重勇者 ~この勇者が俺TUEEEくせに慎重すぎる~","synonyms":["Shinchou Yuusha: Kono Yuusha ga Ore Tsueee Kuse ni Shinchou Sugiru"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":2,"month":10,"year":2019},"status":"Finished Airing"},{"index":5,"id":39940,"mal_id":39940,"title":"Shokugeki no Souma: Shin no Sara","english":"Food Wars! The Fourth Plate","native":"食戟のソーマ 神ノ皿","synonyms":["Shokugeki no Soma 4th Season"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":12,"month":10,"year":2019},"status":"Finished Airing"},{"index":6,"id":39565,"mal_id":39565,"title":"Boku no Hero Academia the Movie 2: Heroes:Rising","english":"My Hero Academia: Heroes Rising","native":"僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング","synonyms":["My Hero Academia the Movie 2: Heroes:Rising"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":12,"year":2019},"status":"Finished Airing"},{"index":7,"id":39196,"mal_id":39196,"title":"Mairimashita! Iruma-kun","english":"Welcome to Demon School! Iruma-kun","native":"魔入りました!入間くん","synonyms":[],"format":"TV","episodes":23,"season":"FALL","year":2019,"start_date":{"day":5,"month":10,"year":2019},"status":"Finished Airing"},{"index":8,"id":38483,"mal_id":38483,"title":"Ore wo Suki nano wa Omae dake ka yo","english":"ORESUKI Are you the only one who loves me?","native":"俺を好きなのはお前だけかよ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":3,"month":10,"year":2019},"status":"Finished Airing"},{"index":9,"id":39468,"mal_id":39468,"title":"Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen","english":"Ascendance of a Bookworm","native":"本好きの下剋上 ~司書になるためには手段を選んでいられません~","synonyms":[],"format":"TV","episodes":14,"season":"FALL","year":2019,"start_date":{"day":3,"month":10,"year":2019},"status":"Finished Airing"},{"index":10,"id":38572,"mal_id":38572,"title":"Assassins Pride","english":null,"native":"アサシンズプライド","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":10,"month":10,"year":2019},"status":"Finished Airing"},{"index":11,"id":40004,"mal_id":40004,"title":"Bokutachi wa Benkyou ga Dekinai!","english":"We Never Learn: BOKUBEN Season 2","native":"ぼくたちは勉強ができない!","synonyms":["BokuBen 2","We Never Learn! 2","We Can't Study","Bokutachi wa Benkyou ga Dekinai! 2nd Season"],"format":"TV","episodes":13,"season":"FALL","year":2019,"start_date":{"day":6,"month":10,"year":2019},"status":"Finished Airing"},{"index":12,"id":38414,"mal_id":38414,"title":"Re:Zero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna","english":"Re:ZERO -Starting Life in Another World- The Frozen Bond","native":"Re:ゼロから始める異世界生活『氷結の絆』","synonyms":["Re:Zero kara Hajimeru Isekai Seikatsu OVA 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":11,"year":2019},"status":"Finished Airing"},{"index":13,"id":38084,"mal_id":38084,"title":"Fate/Grand Order: Zettai Majuu Sensen Babylonia","english":"Fate/Grand Order: Absolute Demonic Front - Babylonia","native":"Fate/Grand Order -絶対魔獣戦線バビロニア-","synonyms":[],"format":"TV","episodes":21,"season":"FALL","year":2019,"start_date":{"day":5,"month":10,"year":2019},"status":"Finished Airing"},{"index":14,"id":39523,"mal_id":39523,"title":"Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!","english":"CHOYOYU!: High School Prodigies Have It Easy Even in Another World!","native":"超人高校生たちは異世界でも余裕で生き抜くようです!","synonyms":["Super Human High Schoolers Are in Another World","But Seem to be Living in Comfort!"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":3,"month":10,"year":2019},"status":"Finished Airing"},{"index":15,"id":39491,"mal_id":39491,"title":"Psycho-Pass 3","english":"Psycho-Pass 3","native":"PSYCHO-PASS サイコパス 3","synonyms":[],"format":"TV","episodes":8,"season":"FALL","year":2019,"start_date":{"day":25,"month":10,"year":2019},"status":"Finished Airing"},{"index":16,"id":40542,"mal_id":40542,"title":"Saiki Kusuo no Ψ-nan: Ψ-shidou-hen","english":"The Disastrous Life of Saiki K.: Reawakened","native":"斉木楠雄のΨ難 Ψ始動編","synonyms":["The Disastrous Life of Saiki K. Restart Arc","Saiki Kusuo no Ψ-nan: Saishidou-hen","Saiki Kusuo no Sainan: Saishidou-hen"],"format":"ONA","episodes":6,"season":null,"year":null,"start_date":{"day":30,"month":12,"year":2019},"status":"Finished Airing"},{"index":17,"id":37972,"mal_id":37972,"title":"Hoshiai no Sora","english":"Stars Align","native":"星合の空","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":11,"month":10,"year":2019},"status":"Finished Airing"},{"index":18,"id":39030,"mal_id":39030,"title":"Hataage! Kemono Michi","english":"Kemono Michi: Rise Up","native":"旗揚! けものみち","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":2,"month":10,"year":2019},"status":"Finished Airing"},{"index":19,"id":37393,"mal_id":37393,"title":"Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!","english":"Didn't I Say to Make My Abilities Average in the Next Life?!","native":"私、能力は平均値でって言ったよね!","synonyms":["Noukin"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":7,"month":10,"year":2019},"status":"Finished Airing"},{"index":20,"id":37403,"mal_id":37403,"title":"Ahiru no Sora","english":null,"native":"あひるの空","synonyms":[],"format":"TV","episodes":50,"season":"FALL","year":2019,"start_date":{"day":2,"month":10,"year":2019},"status":"Finished Airing"},{"index":21,"id":39539,"mal_id":39539,"title":"No Guns Life","english":"No Guns Life","native":"ノー・ガンズ・ライフ","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":11,"month":10,"year":2019},"status":"Finished Airing"},{"index":22,"id":36885,"mal_id":36885,"title":"Saenai Heroine no Sodatekata Fine","english":"Saekano the Movie: Finale","native":"冴えない彼女の育てかた Fine","synonyms":["Saenai Heroine no Sodatekata Movie","Saekano: How to Raise a Boring Girlfriend Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":10,"year":2019},"status":"Finished Airing"},{"index":23,"id":38889,"mal_id":38889,"title":"Kono Oto Tomare! Part 2","english":"Kono Oto Tomare!: Sounds of Life Season 2","native":"この音とまれ!","synonyms":["Kono Oto Tomare! 2nd Season","Stop This Sound! 2nd Season"],"format":"TV","episodes":13,"season":"FALL","year":2019,"start_date":{"day":6,"month":10,"year":2019},"status":"Finished Airing"},{"index":24,"id":38328,"mal_id":38328,"title":"Azur Lane","english":"Azur Lane the Animation","native":"アズールレーン THE ANIMATION","synonyms":["Azur Lane"],"format":"TV","episodes":12,"season":"FALL","year":2019,"start_date":{"day":3,"month":10,"year":2019},"status":"Finished Airing"}]},{"year":2021,"season":"fall","anilist":[{"index":0,"id":131573,"mal_id":48561,"title":"Jujutsu Kaisen 0","english":"JUJUTSU KAISEN 0","native":"呪術廻戦 0","synonyms":["JJK 0","咒术回战0","มหาเวทย์ผนึกมาร : ซีโร่","‎جوجوتسو كايسن 0","Jujutsu Kaisen Movie","Магическая битва 0"],"format":"MOVIE","episodes":1,"season":"FALL","year":2021,"start_date":{"year":2021,"month":12,"day":24},"status":"FINISHED"},{"index":1,"id":129874,"mal_id":49926,"title":"Kimetsu no Yaiba: Mugen Ressha-hen (TV)","english":"Demon Slayer: Kimetsu no Yaiba Mugen Train Arc","native":"鬼滅の刃 無限列車編 (TV)","synonyms":["KnY 2","ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)","鬼灭之刃 无限列车篇","Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini","Demon Slayer: Kimetsu no Yaiba season 2","Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg","귀멸의 칼날: 무한열차편","Клинок, Рассекающий Демонов: Бесконечный Поезд"],"format":"TV","episodes":7,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":10},"status":"FINISHED"},{"index":2,"id":133965,"mal_id":48926,"title":"Komi-san wa, Komyushou desu.","english":"Komi Can’t Communicate","native":"古見さんは、コミュ症です。","synonyms":["Comi san ha Comyusho desu","مشكلة كومي","Komi-san wa, Comyushou desu.","โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง","Komi cherche ses mots","Komi không thể giao tiếp","Komi-san no puede comunicarse","У Коми проблемы с общением","Η Κόμι Δεν Επικοινωνεί","Комі не вміє спілкуватися","המשאלה של קומי"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":7},"status":"FINISHED"},{"index":3,"id":127720,"mal_id":45576,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu Part 2","english":"Mushoku Tensei: Jobless Reincarnation Cour 2","native":"無職転生 ~異世界行ったら本気だす~ 第2クール","synonyms":["Mushoku Tensei: Jobless Reincarnation Part 2","เกิดชาตินี้พี่ต้องเทพ พาร์ท 2"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":4},"status":"FINISHED"},{"index":4,"id":113717,"mal_id":40834,"title":"Ousama Ranking","english":"Ranking of Kings","native":"王様ランキング","synonyms":["King Ranking","อันดับพระราชา","تصنيف الملوك","國王排名"],"format":"TV","episodes":23,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":15},"status":"FINISHED"},{"index":5,"id":129898,"mal_id":47790,"title":"Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru","english":"The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat","native":"世界最高の暗殺者、異世界貴族に転生する","synonyms":["Ansatsu Kizoku","สุดยอดมือสังหาร อวตารมาต่างโลก","世界顶尖的暗杀者转生为异世界贵族","Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain","המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":6},"status":"FINISHED"},{"index":6,"id":131586,"mal_id":48569,"title":"86: Eighty Six Part 2","english":"86 EIGHTY-SIX Part 2","native":"86-エイティシックス- 第2クール","synonyms":["86-エイティシックス- 2クール","86 -เอทตี้ซิกซ์- พาร์ท 2"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":3},"status":"FINISHED"},{"index":7,"id":131942,"mal_id":48661,"title":"JoJo no Kimyou na Bouken: Stone Ocean","english":"JoJo's Bizarre Adventure: STONE OCEAN","native":"ジョジョの奇妙な冒険 ストーンオーシャン","synonyms":["JoJo's Bizarre Adventure: Stone Ocean","JoJo's Bizarre Adventure Part 6","JoJo no Kimyou na Bouken Part 6","Le bizzarre avventure di JoJo: Stone Ocean","โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ","โจโจ้ ล่าข้ามศตวรรษ ภาค 6","مغامرات جوجو العجيبة: محيط الأحجار","ההרפתקה המוזרה של ג'וג'ו: אוקיינוס האבן","Невероятные приключения ДжоДжо: Каменный океан ","Химерні пригоди ДжоДжо: Кам'яний океан"],"format":"ONA","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":12,"day":1},"status":"FINISHED"},{"index":8,"id":131565,"mal_id":48556,"title":"takt op.Destiny","english":"takt op.Destiny","native":"takt op.Destiny","synonyms":["タクトオーパス","แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~","宿命回响:命运节拍","Такт. Опус Дестини"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":6},"status":"FINISHED"},{"index":9,"id":131083,"mal_id":48483,"title":"Mieruko-chan","english":"Mieruko-chan","native":"見える子ちゃん","synonyms":["มิเอรุโกะจัง ใครว่าหนูเห็นผี","Mieruko: Gadis yang Bisa Melihat Hantu","Girl That Can See It","Mieruko-chan. Dziewczyna, która widzi więcej"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":3},"status":"FINISHED"},{"index":10,"id":128705,"mal_id":46352,"title":"Blue Period","english":"Blue Period","native":"ブルーピリオド","synonyms":["Periodo Azul","Голубой период","Блакитний період"],"format":"ONA","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":9,"day":25},"status":"FINISHED"},{"index":11,"id":127401,"mal_id":44961,"title":"Platinum End","english":"Platinum End","native":"プラチナエンド","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":8},"status":"FINISHED"},{"index":12,"id":126213,"mal_id":44037,"title":"Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita","english":"Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside","native":"真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました","synonyms":["Banished from the Heroes' Party, I Decided to Live a Quiet Life in the Countryside","ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน","Banished from the brave man's group, I decided to lead a slow life in the back country.","I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier"],"format":"TV","episodes":13,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":6},"status":"FINISHED"},{"index":13,"id":120646,"mal_id":42351,"title":"Senpai ga Uzai Kouhai no Hanashi","english":"My Senpai is Annoying","native":"先輩がうざい後輩の話","synonyms":["ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน","Seniorku yang Menyebalkan"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":10},"status":"FINISHED"},{"index":14,"id":132473,"mal_id":48761,"title":"Saihate no Paladin","english":"The Faraway Paladin","native":"最果てのパラディン","synonyms":["พาลาดิน ยอดอัศวินจากแดนไกล"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":9},"status":"FINISHED"},{"index":15,"id":124140,"mal_id":42916,"title":"Sword Art Online: Progressive - Hoshinaki Yoru no Aria","english":"Sword Art Online the Movie -Progressive- Aria of a Starless Night","native":"劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア","synonyms":["SAO Progressive","Sword Art Online: Progressive - อาเรียแห่งคืนที่ไร้ดาว","Sword Art Online Progressive: Ária de Uma Noite Sem Estrelas","SAOP","Sword Art Online: Progressive - Aria de una noche sin estrellas"],"format":"MOVIE","episodes":1,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":30},"status":"FINISHED"},{"index":16,"id":129068,"mal_id":46985,"title":"Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei","english":"The Fruit of Evolution: Before I Knew It, My Life Had It Made","native":"進化の実~知らないうちに勝ち組人生~","synonyms":["ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":5},"status":"FINISHED"},{"index":17,"id":124195,"mal_id":42940,"title":"Hanma Baki","english":"Baki Hanma","native":"範馬刃牙","synonyms":["Baki: Son of Ogre","Hanma Baki: SON OF OGRE","ฮันมะ บากิ","Баки Ханма","Μπάκι Χάνμα","Бакі Ханма"],"format":"ONA","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":9,"day":30},"status":"FINISHED"},{"index":18,"id":130050,"mal_id":48171,"title":"Summer Ghost","english":"Summer Ghost","native":"サマーゴースト","synonyms":[],"format":"MOVIE","episodes":1,"season":"FALL","year":2021,"start_date":{"year":2021,"month":11,"day":12},"status":"FINISHED"},{"index":19,"id":132193,"mal_id":48707,"title":"Gokushufudou Part 2","english":"The Way of the Househusband Part 2","native":"極主夫道 パート2","synonyms":["พ่อบ้านสุดเก๋า พาร์ท 2","La Voie du Tablier Partie 2","De yakuza a amo de casa parte 2","Шлях домогосподаря 2"],"format":"ONA","episodes":5,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":7},"status":"FINISHED"},{"index":20,"id":131019,"mal_id":48471,"title":"Tsuki to Laika to Nosferatu","english":"Irina: The Vampire Cosmonaut","native":"月とライカと吸血姫","synonyms":["ノスフェラトゥ","The Moon, Laika, and Nosferatu","จันทรากับไลคร่าและเจ้าหญิงแวมไพร์","จันทรากับไลก้าและนอสเฟราตู","Луна, Лайка и Носферату"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":4},"status":"FINISHED"},{"index":21,"id":127412,"mal_id":45055,"title":"Taishou Otome Otogibanashi","english":"Taisho Otome Fairy Tale","native":"大正オトメ御伽話","synonyms":["เรื่องเล่าของสาวน้อยยุคไทโช ","Kisah Gadis Zaman Taisho"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":9},"status":"FINISHED"},{"index":22,"id":123899,"mal_id":42847,"title":"Ai no Utagoe wo Kikasete","english":"Sing a Bit of Harmony","native":"アイの歌声を聴かせて","synonyms":["Canta con una chispa de armonía"],"format":"MOVIE","episodes":1,"season":"FALL","year":2021,"start_date":{"year":2021,"month":10,"day":29},"status":"FINISHED"},{"index":23,"id":137877,"mal_id":49605,"title":"Ganbare, Douki-chan","english":"GANBARE DOUKICHAN","native":"がんばれ同期ちゃん","synonyms":["Senpai is Mine","สู้เขาน้องหนูเพื่อนร่วมงาน"],"format":"ONA","episodes":12,"season":"FALL","year":2021,"start_date":{"year":2021,"month":9,"day":20},"status":"FINISHED"},{"index":24,"id":138060,"mal_id":49357,"title":"Star Wars: Visions","english":"Star Wars: Visions","native":"スター・ウォーズ:ビジョンズ","synonyms":["Star Wars ビジョンズ","Gwiezdne wojny: Wizje"],"format":"ONA","episodes":9,"season":"FALL","year":2021,"start_date":{"year":2021,"month":9,"day":22},"status":"FINISHED"}],"jikan":[{"index":0,"id":48561,"mal_id":48561,"title":"Jujutsu Kaisen 0 Movie","english":"Jujutsu Kaisen 0","native":"劇場版 呪術廻戦 0","synonyms":["Gekijouban Jujutsu Kaisen 0","JJK 0"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":12,"year":2021},"status":"Finished Airing"},{"index":1,"id":45576,"mal_id":45576,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu Part 2","english":"Mushoku Tensei: Jobless Reincarnation Part 2","native":"無職転生 ~異世界行ったら本気だす~ 第2クール","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":4,"month":10,"year":2021},"status":"Finished Airing"},{"index":2,"id":48926,"mal_id":48926,"title":"Komi-san wa, Comyushou desu.","english":"Komi Can't Communicate","native":"古見さんは、コミュ症です。","synonyms":["Komi-san wa","Communication Shougai desu."],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":7,"month":10,"year":2021},"status":"Finished Airing"},{"index":3,"id":49926,"mal_id":49926,"title":"Kimetsu no Yaiba: Mugen Ressha-hen","english":"Demon Slayer: Kimetsu no Yaiba Mugen Train Arc","native":"鬼滅の刃 無限列車編","synonyms":["Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)"],"format":"TV","episodes":7,"season":"FALL","year":2021,"start_date":{"day":10,"month":10,"year":2021},"status":"Finished Airing"},{"index":4,"id":40834,"mal_id":40834,"title":"Ousama Ranking","english":"Ranking of Kings","native":"王様ランキング","synonyms":["King Ranking"],"format":"TV","episodes":23,"season":"FALL","year":2021,"start_date":{"day":15,"month":10,"year":2021},"status":"Finished Airing"},{"index":5,"id":48569,"mal_id":48569,"title":"86 Part 2","english":"86 Eighty-Six Part 2","native":"86―エイティシックス―","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":3,"month":10,"year":2021},"status":"Finished Airing"},{"index":6,"id":47790,"mal_id":47790,"title":"Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru","english":"The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat","native":"世界最高の暗殺者、異世界貴族に転生する","synonyms":["The world's best assassin","To reincarnate in a different world aristocrat","Ansatsu Kizoku"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":6,"month":10,"year":2021},"status":"Finished Airing"},{"index":7,"id":48661,"mal_id":48661,"title":"JoJo no Kimyou na Bouken Part 6: Stone Ocean","english":"JoJo's Bizarre Adventure: Stone Ocean","native":"ジョジョの奇妙な冒険 ストーンオーシャン","synonyms":["JoJo's Bizarre Adventure Part 6: Stone Ocean"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":1,"month":12,"year":2021},"status":"Finished Airing"},{"index":8,"id":48556,"mal_id":48556,"title":"Takt Op. Destiny","english":"Takt Op. Destiny","native":"takt op.Destiny","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":6,"month":10,"year":2021},"status":"Finished Airing"},{"index":9,"id":48483,"mal_id":48483,"title":"Mieruko-chan","english":null,"native":"見える子ちゃん","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":3,"month":10,"year":2021},"status":"Finished Airing"},{"index":10,"id":46352,"mal_id":46352,"title":"Blue Period","english":"Blue Period","native":"ブルーピリオド","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":2,"month":10,"year":2021},"status":"Finished Airing"},{"index":11,"id":44961,"mal_id":44961,"title":"Platinum End","english":"Platinum End","native":"プラチナエンド","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2021,"start_date":{"day":8,"month":10,"year":2021},"status":"Finished Airing"},{"index":12,"id":44037,"mal_id":44037,"title":"Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita","english":"Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside","native":"真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました","synonyms":["Banished from the Hero's Party","I Decided to Live a Quiet Life in the Countryside","I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier"],"format":"TV","episodes":13,"season":"FALL","year":2021,"start_date":{"day":6,"month":10,"year":2021},"status":"Finished Airing"},{"index":13,"id":42351,"mal_id":42351,"title":"Senpai ga Uzai Kouhai no Hanashi","english":"My Senpai is Annoying","native":"先輩がうざい後輩の話","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":10,"month":10,"year":2021},"status":"Finished Airing"},{"index":14,"id":48761,"mal_id":48761,"title":"Saihate no Paladin","english":"The Faraway Paladin","native":"最果てのパラディン","synonyms":["Paladin of the End","Ultimate Paladin"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":9,"month":10,"year":2021},"status":"Finished Airing"},{"index":15,"id":42916,"mal_id":42916,"title":"Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria","english":"Sword Art Online the Movie: Progressive - Aria of a Starless Night","native":"劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア","synonyms":["SAO Progressive Movie","Aria in the Starless Night","Hoshinaki Yoru no Aria"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":10,"year":2021},"status":"Finished Airing"},{"index":16,"id":46985,"mal_id":46985,"title":"Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei","english":"The Fruit of Evolution: Before I Knew It, My Life Had It Made","native":"進化の実~知らないうちに勝ち組人生~","synonyms":["The Evolution Fruit: Conquering Life Unknowingly"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":5,"month":10,"year":2021},"status":"Finished Airing"},{"index":17,"id":42544,"mal_id":42544,"title":"Kaizoku Oujo","english":"Fena: Pirate Princess","native":"海賊王女","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":3,"month":10,"year":2021},"status":"Finished Airing"},{"index":18,"id":44069,"mal_id":44069,"title":"Xian Wang de Richang Shenghuo 2","english":"The Daily Life of the Immortal King 2","native":"仙王的日常生活 第二季","synonyms":["Xian Wang de Richang Shenghuo Er","仙王的日常生活 贰","不死身な僕の日常 2期"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":30,"month":10,"year":2021},"status":"Finished Airing"},{"index":19,"id":48707,"mal_id":48707,"title":"Gokushufudou Part 2","english":"The Way of the Househusband Part 2","native":"極主夫道","synonyms":["The Way of the House Husband 2","The Way of the Househusband 2","Gokushufudou 2"],"format":"ONA","episodes":5,"season":null,"year":null,"start_date":{"day":7,"month":10,"year":2021},"status":"Finished Airing"},{"index":20,"id":48471,"mal_id":48471,"title":"Tsuki to Laika to Nosferatu","english":"Irina: The Vampire Cosmonaut","native":"月とライカと吸血姫","synonyms":["Moon","Laika","and the Bloodsucking Princess"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":4,"month":10,"year":2021},"status":"Finished Airing"},{"index":21,"id":45055,"mal_id":45055,"title":"Taishou Otome Otogibanashi","english":"Taisho Otome Fairy Tale","native":"大正オトメ御伽話","synonyms":["Taishou Maiden Fairytale"],"format":"TV","episodes":12,"season":"FALL","year":2021,"start_date":{"day":9,"month":10,"year":2021},"status":"Finished Airing"},{"index":22,"id":48171,"mal_id":48171,"title":"Summer Ghost","english":null,"native":"サマーゴースト","synonyms":["Project Common"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":11,"year":2021},"status":"Finished Airing"},{"index":23,"id":44940,"mal_id":44940,"title":"World Trigger 3rd Season","english":null,"native":"ワールドトリガー","synonyms":[],"format":"TV","episodes":14,"season":"FALL","year":2021,"start_date":{"day":10,"month":10,"year":2021},"status":"Finished Airing"},{"index":24,"id":42847,"mal_id":42847,"title":"Ai no Utagoe wo Kikasete","english":"Sing a Bit of Harmony","native":"アイの歌声を聴かせて","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":29,"month":10,"year":2021},"status":"Finished Airing"}]},{"year":2023,"season":"fall","anilist":[{"index":0,"id":154587,"mal_id":52991,"title":"Sousou no Frieren","english":"Frieren: Beyond Journey’s End","native":"葬送のフリーレン","synonyms":["Frieren at the Funeral","장송의 프리렌","Frieren - Oltre la Fine del Viaggio","คำอธิษฐานในวันที่จากลา Frieren","Frieren e a Jornada para o Além","Frieren – Nach dem Ende der Reise","葬送的芙莉蓮","Frieren: Más allá del final del viaje","Frieren en el funeral","Sōsō no Furīren","Frieren. U kresu drogi","Frieren - Pháp sư tiễn táng","Фрирен, провожающая в последний путь","فريرن: ما وراء نهاية الرحلة","Frieren: Tras finalizar el viaje"],"format":"TV","episodes":28,"season":"FALL","year":2023,"start_date":{"year":2023,"month":9,"day":29},"status":"FINISHED"},{"index":1,"id":161645,"mal_id":54492,"title":"Kusuriya no Hitorigoto","english":"The Apothecary Diaries","native":"薬屋のひとりごと","synonyms":["Drugstore Soliloquy","Les Carnets de l'Apothicaire","Zapiski zielarki","Diários de uma Apotecária","Il monologo della Speziale","Los diarios de la boticaria","สืบคดีปริศนา หมอยาตำรับโคมแดง","Записки аптекаря","Die Tagebücher der Apothekerin","يوميات الصيدلانيّة","藥師少女的獨語","药屋少女的呢喃","Монолог фармацевта","약사의 혼잣말"],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":22},"status":"FINISHED"},{"index":2,"id":158927,"mal_id":53887,"title":"SPY×FAMILY Season 2","english":"SPY x FAMILY Season 2","native":"SPY×FAMILY Season 2","synonyms":["SxF 2","스파이 패밀리","Семья шпиона","スパイファミリー 2","Spy x Family – Sezon 2"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":7},"status":"FINISHED"},{"index":3,"id":161964,"mal_id":54595,"title":"Kage no Jitsuryokusha ni Naritakute! 2nd season","english":"The Eminence in Shadow Season 2","native":"陰の実力者になりたくて! 2nd season","synonyms":["To Be a Power in the Shadows! 2","ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2","Un giorno sarò l'eminenza grigia 2","TEIS 2","Кардинал теней 2"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":4},"status":"FINISHED"},{"index":4,"id":151970,"mal_id":52347,"title":"Shangri-La Frontier","english":"Shangri-La Frontier","native":"シャングリラ・フロンティア","synonyms":["ShanFro","シャンフロ","シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜","Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su","SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~","Рубеж Шангри-Ла","Thợ săn Game rác thách thức Game cấp Thánh"],"format":"TV","episodes":25,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":1},"status":"FINISHED"},{"index":5,"id":162314,"mal_id":null,"title":"Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen","english":"Attack on Titan Final Season THE FINAL CHAPTERS Special 2","native":"進撃の巨人 The Final Season完結編 後編","synonyms":["Shingeki no Kyojin: The Final Season Final Edition","Attack on Titan Final Season Part 3 Final Arc Part 2","Attack on Titan: The Final Season Part 4","Shingeki no Kyojin: The Final Season Part 4","SnK 4","AoT 4"],"format":"SPECIAL","episodes":1,"season":"FALL","year":2023,"start_date":{"year":2023,"month":11,"day":5},"status":"FINISHED"},{"index":6,"id":111322,"mal_id":40357,"title":"Tate no Yuusha no Nariagari Season 3","english":"The Rising of the Shield Hero Season 3","native":"盾の勇者の成り上がり Season 3","synonyms":["ผู้กล้าโล่ผงาด ภาค 3"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":6},"status":"FINISHED"},{"index":7,"id":162670,"mal_id":55644,"title":"Dr. STONE: NEW WORLD Part 2","english":"Dr. STONE New World Part 2","native":"Dr.STONE NEW WORLD 第2クール","synonyms":["石纪元第三季","Dr.STONE Season 3 Part 2","DR.STONE ภาค 3","Dr.STONE 第3期 第2クール"],"format":"TV","episodes":11,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":12},"status":"FINISHED"},{"index":8,"id":154116,"mal_id":52741,"title":"Undead Unluck","english":"Undead Unluck","native":"アンデッドアンラック","synonyms":["אל-מת ובלי מזל"],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":7},"status":"FINISHED"},{"index":9,"id":162694,"mal_id":54714,"title":"Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo","english":"The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You","native":"君のことが大大大大大好きな100人の彼女","synonyms":["100 Kanojo","100Kano","Hyakkano","100 Namoradas Que Te Amam Muuuuuito","Les 100 petites amies qui t'aiiiment à en mourir","100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu","100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":8},"status":"FINISHED"},{"index":10,"id":129188,"mal_id":47160,"title":"Goblin Slayer II","english":"GOBLIN SLAYER II","native":"ゴブリンスレイヤーⅡ","synonyms":["ก็อบลิน สเลเยอร์ ภาค 2"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":6},"status":"FINISHED"},{"index":11,"id":146493,"mal_id":51297,"title":"Ragna Crimson","english":"Ragna Crimson","native":"ラグナクリムゾン","synonyms":["ตำนานนักล่ามังกร","Рагна Багровый"],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":1},"status":"FINISHED"},{"index":12,"id":158928,"mal_id":53888,"title":"SPY×FAMILY CODE: White","english":"SPY x FAMILY CODE: White","native":"SPY×FAMILY CODE: White","synonyms":["SxF Movie","劇場版 スパイファミリー","SPY x FAMILY CÓDIGO: Branco"],"format":"MOVIE","episodes":1,"season":"FALL","year":2023,"start_date":{"year":2023,"month":12,"day":22},"status":"FINISHED"},{"index":13,"id":99088,"mal_id":35737,"title":"PLUTO","english":"PLUTO","native":"PLUTO","synonyms":["プルートウ","ПЛУТОН"],"format":"ONA","episodes":8,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":26},"status":"FINISHED"},{"index":14,"id":156039,"mal_id":53439,"title":"Boushoku no Berserk","english":"Berserk of Gluttony","native":"暴食のベルセルク","synonyms":["จอมตะกละดาบคลั่ง","Bousyoku","O Berserker da Gula","Berserk nan Rakus","Ненасытный берсерк"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":2},"status":"FINISHED"},{"index":15,"id":163329,"mal_id":54918,"title":"Tokyo Revengers: Tenjiku-hen","english":"Tokyo Revengers Season 2 Part 2","native":"東京リベンジャーズ 天竺編","synonyms":["Tokyo Revengers: Tenjiku Arc","Tokyo Revengers Season 3"],"format":"TV","episodes":13,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":4},"status":"FINISHED"},{"index":16,"id":154459,"mal_id":52990,"title":"Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.","english":"Our Dating Story: The Experienced You and The Inexperienced Me","native":"経験済みなキミと、経験ゼロなオレが、お付き合いする話。","synonyms":["หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ","Kimizero","キミゼロ","Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos","Искушённая ты и незрелый я"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":6},"status":"FINISHED"},{"index":17,"id":160900,"mal_id":54362,"title":"Hametsu no Oukoku","english":"The Kingdoms of Ruin","native":"はめつのおうこく","synonyms":["Os Reinos da Ruína","破滅的王國"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":7},"status":"FINISHED"},{"index":18,"id":161474,"mal_id":54870,"title":"Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai","english":"Rascal Does Not Dream of a Knapsack Kid","native":"青春ブタ野郎はランドセルガールの夢を見ない","synonyms":["Rascal Does Not Dream of a Knapsack Kid","Ao Buta","青ブタ"],"format":"MOVIE","episodes":1,"season":"FALL","year":2023,"start_date":{"year":2023,"month":12,"day":1},"status":"FINISHED"},{"index":19,"id":163142,"mal_id":54852,"title":"Kikansha no Mahou wa Tokubetsu desu","english":"A Returner's Magic Should Be Special","native":"帰還者の魔法は特別です","synonyms":["Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida","귀환자의 마법은 특별해야 합니다"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":8},"status":"FINISHED"},{"index":20,"id":158704,"mal_id":53833,"title":"Watashi no Oshi wa Akuyaku Reijou.","english":"I'm in Love with the Villainess","native":"私の推しは悪役令嬢。","synonyms":["WataOshi","わたおし","ทำไงดีเกมนี้นางร้ายน่ารัก","Me Enamoré de la Villana","Me Apaixonei pela Vilã!","Я влюблена в злодейку","我的推是壞人大小姐。"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":3},"status":"FINISHED"},{"index":21,"id":140501,"mal_id":50184,"title":"Seiken Gakuin no Maken Tsukai","english":"The Demon Sword Master of Excalibur Academy","native":"聖剣学院の魔剣使い","synonyms":["Demon's Sword Master of Excalibur School","จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์","Lo spadaccino demoniaco all'accademia delle arti sacre"],"format":"ONA","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":9,"day":26},"status":"FINISHED"},{"index":22,"id":158926,"mal_id":53879,"title":"Kamonohashi Ron no Kindan Suiri","english":"Ron Kamonohashi's Forbidden Deductions","native":"鴨乃橋ロンの禁断推理","synonyms":["Ron Kamonohashi: Deranged Detective","El misterio prohibido de Ron Kamonohashi","สืบลับฉบับคาโมโนะฮาชิ รอน","Meisterdetektiv Ron Kamonohashi","鸭乃桥论的禁忌推理"],"format":"TV","episodes":13,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":2},"status":"FINISHED"},{"index":23,"id":159808,"mal_id":54103,"title":"Hikikomari Kyuuketsuki no Monmon","english":"The Vexations of a Shut-In Vampire Princess","native":"ひきこまり吸血姫の悶々","synonyms":["สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊"," I tormenti della vampira reclusa","家裡蹲吸血姬的鬱悶"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":7},"status":"FINISHED"},{"index":24,"id":143085,"mal_id":50664,"title":"Saihate no Paladin: Tetsusabi no Yama no Ou","english":"The Faraway Paladin: The Lord of Rust Mountains","native":"最果てのパラディン 鉄錆の山の王","synonyms":["The Faraway Paladin Season 2","พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2","Saihate no Paladin 2nd Season","The Faraway Paladin: O Senhor das Montanhas de Ferrugem","世界盡頭的聖騎士 鐵鏽之山的君王","The Faraway Paladin : Le Seigneur des Montagnes de Rouille"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"year":2023,"month":10,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":52991,"mal_id":52991,"title":"Sousou no Frieren","english":"Frieren: Beyond Journey's End","native":"葬送のフリーレン","synonyms":["Frieren at the Funeral","Frieren The Slayer"],"format":"TV","episodes":28,"season":"FALL","year":2023,"start_date":{"day":29,"month":9,"year":2023},"status":"Finished Airing"},{"index":1,"id":54492,"mal_id":54492,"title":"Kusuriya no Hitorigoto","english":"The Apothecary Diaries","native":"薬屋のひとりごと","synonyms":["The Pharmacist's Monologue","Drugstore Soliloquy"],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"day":22,"month":10,"year":2023},"status":"Finished Airing"},{"index":2,"id":53887,"mal_id":53887,"title":"Spy x Family Season 2","english":null,"native":"SPY×FAMILY Season 2","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":7,"month":10,"year":2023},"status":"Finished Airing"},{"index":3,"id":54595,"mal_id":54595,"title":"Kage no Jitsuryokusha ni Naritakute! 2nd Season","english":"The Eminence in Shadow Season 2","native":"陰の実力者になりたくて! 2nd Season","synonyms":["Shadow Garden 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":4,"month":10,"year":2023},"status":"Finished Airing"},{"index":4,"id":40357,"mal_id":40357,"title":"Tate no Yuusha no Nariagari Season 3","english":"The Rising of the Shield Hero Season 3","native":"盾の勇者の成り上がり Season 3","synonyms":["Tate no Yuusha no Nariagari 3rd Season","The Rising of the Shield Hero 3rd Season"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":6,"month":10,"year":2023},"status":"Finished Airing"},{"index":5,"id":52347,"mal_id":52347,"title":"Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su","english":"Shangri-La Frontier","native":"シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~","synonyms":["Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game","Shanfro"],"format":"TV","episodes":25,"season":"FALL","year":2023,"start_date":{"day":1,"month":10,"year":2023},"status":"Finished Airing"},{"index":6,"id":55644,"mal_id":55644,"title":"Dr. Stone: New World Part 2","english":"Dr. Stone: New World Part 2","native":"Dr.STONE NEW WORLD","synonyms":["Dr. Stone 3rd Season Part 2"],"format":"TV","episodes":11,"season":"FALL","year":2023,"start_date":{"day":12,"month":10,"year":2023},"status":"Finished Airing"},{"index":7,"id":47160,"mal_id":47160,"title":"Goblin Slayer II","english":null,"native":"ゴブリンスレイヤーⅡ","synonyms":["Goblin Slayer 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":6,"month":10,"year":2023},"status":"Finished Airing"},{"index":8,"id":52741,"mal_id":52741,"title":"Undead Unluck","english":null,"native":"アンデッドアンラック","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"day":7,"month":10,"year":2023},"status":"Finished Airing"},{"index":9,"id":54714,"mal_id":54714,"title":"Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo","english":"The 100 Girlfriends Who Really, Really, Really, Really, Really Love You","native":"君のことが大大大大大好きな100人の彼女","synonyms":["Hyakkano"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":8,"month":10,"year":2023},"status":"Finished Airing"},{"index":10,"id":51297,"mal_id":51297,"title":"Ragna Crimson","english":null,"native":"ラグナクリムゾン","synonyms":[],"format":"TV","episodes":24,"season":"FALL","year":2023,"start_date":{"day":1,"month":10,"year":2023},"status":"Finished Airing"},{"index":11,"id":54918,"mal_id":54918,"title":"Tokyo Revengers: Tenjiku-hen","english":"Tokyo Revengers: Tenjiku Arc","native":"東京リベンジャーズ 天竺編","synonyms":["Tokyo Revengers Third Season"],"format":"TV","episodes":13,"season":"FALL","year":2023,"start_date":{"day":4,"month":10,"year":2023},"status":"Finished Airing"},{"index":12,"id":53439,"mal_id":53439,"title":"Boushoku no Berserk","english":"Berserk of Gluttony","native":"暴食のベルセルク","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":5,"month":10,"year":2023},"status":"Finished Airing"},{"index":13,"id":35737,"mal_id":35737,"title":"Pluto","english":"Pluto","native":"プルートウ","synonyms":[],"format":"ONA","episodes":8,"season":null,"year":null,"start_date":{"day":26,"month":10,"year":2023},"status":"Finished Airing"},{"index":14,"id":53888,"mal_id":53888,"title":"Spy x Family Movie: Code: White","english":"Spy x Family Code: White","native":"SPY×FAMILY CODE: White","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":12,"year":2023},"status":"Finished Airing"},{"index":15,"id":52990,"mal_id":52990,"title":"Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.","english":"Our Dating Story: The Experienced You and The Inexperienced Me","native":"経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。","synonyms":["Kimizero"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":6,"month":10,"year":2023},"status":"Finished Airing"},{"index":16,"id":54362,"mal_id":54362,"title":"Hametsu no Oukoku","english":"The Kingdoms of Ruin","native":"はめつのおうこく","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":7,"month":10,"year":2023},"status":"Finished Airing"},{"index":17,"id":54870,"mal_id":54870,"title":"Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai","english":"Rascal Does Not Dream of a Knapsack Kid","native":"青春ブタ野郎はランドセルガールの夢を見ない","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":1,"month":12,"year":2023},"status":"Finished Airing"},{"index":18,"id":50184,"mal_id":50184,"title":"Seiken Gakuin no Makentsukai","english":"The Demon Sword Master of Excalibur Academy","native":"聖剣学院の魔剣使い","synonyms":["Magic Sword Master of Holy Sword School"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":3,"month":10,"year":2023},"status":"Finished Airing"},{"index":19,"id":54852,"mal_id":54852,"title":"Kikansha no Mahou wa Tokubetsu desu","english":"A Returner's Magic Should Be Special","native":"帰還者の魔法は特別です","synonyms":["Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida","귀환자의 마법은 특별해야 합니다"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":8,"month":10,"year":2023},"status":"Finished Airing"},{"index":20,"id":53879,"mal_id":53879,"title":"Kamonohashi Ron no Kindan Suiri","english":"Ron Kamonohashi's Forbidden Deductions","native":"鴨乃橋ロンの禁断推理","synonyms":["Ron Kamonohashi: Deranged Detective"],"format":"TV","episodes":13,"season":"FALL","year":2023,"start_date":{"day":2,"month":10,"year":2023},"status":"Finished Airing"},{"index":21,"id":53833,"mal_id":53833,"title":"Watashi no Oshi wa Akuyaku Reijou.","english":"I'm in Love with the Villainess","native":"私の推しは悪役令嬢。","synonyms":["I'm in Love with the Villainess","WataOshi"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":3,"month":10,"year":2023},"status":"Finished Airing"},{"index":22,"id":50664,"mal_id":50664,"title":"Saihate no Paladin: Tetsusabi no Yama no Ou","english":"The Faraway Paladin: The Lord of the Rust Mountains","native":"最果てのパラディン 鉄錆の山の王","synonyms":["Saihate no Paladin 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":7,"month":10,"year":2023},"status":"Finished Airing"},{"index":23,"id":54743,"mal_id":54743,"title":"Dead Mount Death Play Part 2","english":null,"native":"デッドマウント・デスプレイ","synonyms":["Dead Mount Death Play 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":10,"month":10,"year":2023},"status":"Finished Airing"},{"index":24,"id":52934,"mal_id":52934,"title":"Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu","english":"I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness","native":"婚約破棄された令嬢を拾った俺が、イケナイことを教え込む","synonyms":["Ikenaikyo"],"format":"TV","episodes":12,"season":"FALL","year":2023,"start_date":{"day":4,"month":10,"year":2023},"status":"Finished Airing"}]},{"year":2025,"season":"fall","anilist":[{"index":0,"id":153800,"mal_id":52807,"title":"One Punch Man 3","english":"One-Punch Man Season 3","native":"ワンパンマン3","synonyms":["OPM3","ون بنش مان 3","رجل اللكمة الواحدة 3","วันพันช์แมน ซีซั่น 3"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":12},"status":"FINISHED"},{"index":1,"id":177937,"mal_id":59027,"title":"SPY×FAMILY Season 3","english":"SPY x FAMILY Season 3","native":"SPY×FAMILY Season 3","synonyms":["SxF 3","スパイファミリー 3","SPY×FAMILY ซีซั่น 3","SPY×FAMILY 間諜家家酒 Season 3","間諜家家酒 Season 3"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":2,"id":182896,"mal_id":60098,"title":"Boku no Hero Academia FINAL SEASON","english":"My Hero Academia FINAL SEASON","native":"僕のヒーローアカデミア FINAL SEASON","synonyms":["Boku no Hero Academia 8","My Hero Academia 8","BNHA 8","MHA 8","Моя геройская академия 8","ヒロアカ 8","มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน"],"format":"TV","episodes":11,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":3,"id":186794,"mal_id":61026,"title":"Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga","english":"My Status as an Assassin Obviously Exceeds the Hero’s","native":"暗殺者である俺のステータスが 勇者よりも明らかに強いのだが","synonyms":["Sutetsuyo","ステつよ","ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":7},"status":"FINISHED"},{"index":4,"id":181447,"mal_id":59846,"title":"Saigo ni Hitotsu dake Onegai Shite mo Yoroshii Deshou ka","english":"May I Ask for One Final Thing?","native":"最後にひとつだけお願いしてもよろしいでしょうか","synonyms":["さいひと","SaiHito","สุดท้ายนี้ขอเพียงอย่างหนึ่งได้ไหมคะ"],"format":"ONA","episodes":13,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":5,"id":162669,"mal_id":54703,"title":"Fumetsu no Anata e Season 3","english":"To Your Eternity Season 3","native":"不滅のあなたへ Season 3","synonyms":[],"format":"TV","episodes":22,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":6,"id":184322,"mal_id":60303,"title":"Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!","english":"My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!","native":"信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!","synonyms":["Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends","My Gift LVL 9999 Unlimited Gacha","ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น","Mugen Gacha"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":3},"status":"FINISHED"},{"index":7,"id":170577,"mal_id":57025,"title":"Tondemo Skill de Isekai Hourou Meshi 2","english":"Campfire Cooking in Another World with my Absurd Skill Season 2","native":"とんでもスキルで異世界放浪メシ2","synonyms":["とんでもスキルで異世界放浪メシ 第2期","Tondemo Skill de Isekai Hourou Meshi 2nd Season","สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2","Кулинар со странными навыками в параллельном мире 2","擁有超常技能的異世界流浪美食家 S2"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":8},"status":"FINISHED"},{"index":8,"id":179302,"mal_id":59267,"title":"SANDA","english":"SANDA","native":"SANDA","synonyms":["サンダ"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":9,"id":129195,"mal_id":47158,"title":"Tomodachi no Imouto ga Ore ni dake Uzai","english":"My Friend's Little Sister Has It In for Me!","native":"友達の妹が俺にだけウザい","synonyms":["ImoUza","いもウザ","น้องสาวเพื่อนตัวร้ายกับนายจืดจาง"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":5},"status":"FINISHED"},{"index":10,"id":194884,"mal_id":61903,"title":"Kaguya-sama wa Kokurasetai: Otona e no Kaidan","english":"Kaguya-sama: Love Is War -Stairway to Adulthood-","native":"かぐや様は告らせたい 大人への階段","synonyms":["Kaguya-sama: Love Is War - The Grown-Up Staircase"],"format":"SPECIAL","episodes":2,"season":"FALL","year":2025,"start_date":{"year":2025,"month":12,"day":31},"status":"FINISHED"},{"index":11,"id":198188,"mal_id":62405,"title":"Fujimoto Tatsuki 17-26","english":"Tatsuki Fujimoto 17-26","native":"藤本タツキ 17-26","synonyms":["A Couple Clucking Chickens Were Still Kickin' in the Schoolyard","Sasaki Stopped a Bullet","Love is Blind","Shikaku","Mermaid Rhapsody","Woke-Up-as-a-Girl Syndrome","Nayuta of the Prophecy","Sisters"," 庭には二羽 ニワトリがいた。","佐々木くんが 銃弾止めた","恋は盲目","シカク","人魚ラプソディ","目が覚めたら 女の子になっていた病 ","予言のナユタ","妹の姉"],"format":"MOVIE","episodes":8,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":17},"status":"FINISHED"},{"index":12,"id":180523,"mal_id":59644,"title":"Yasei no Last Boss ga Arawareta!","english":"A Wild Last Boss Appeared!","native":"野生のラスボスが現れた!","synonyms":["A Wild Last Boss Appears!","อุบัติการณ์ลาสบอสสุดแกร่ง"],"format":"ONA","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":9,"day":27},"status":"FINISHED"},{"index":13,"id":180082,"mal_id":59517,"title":"Chitose-kun wa Ramune Bin no Naka","english":"Chitose Is in the Ramune Bottle","native":"千歳くんはラムネ瓶のなか","synonyms":["Ramune no Bin ni Shizunda Biidama no Tsuki","ラムネの瓶に沈んだビー玉の月","Chiramune","チラムネ","ชีวิตรสโซดาของจิโตะเสะคุง"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":7},"status":"FINISHED"},{"index":14,"id":183385,"mal_id":60168,"title":"Watashi wo Tabetai, Hitodenashi","english":"This Monster Wants to Eat Me","native":"私を喰べたい、ひとでなし","synonyms":["A Monster Wants to Eat Me","WataTabe","わたたべ","หากวันใดใครตนนั้นใคร่กลืนกิน"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":2},"status":"FINISHED"},{"index":15,"id":169969,"mal_id":56854,"title":"Mushoku no Eiyuu: Betsu ni Skill nanka Ira Nakattan Daga","english":"Hero Without a Class: Who Even Needs Skills?!","native":"無職の英雄 別にスキルなんか要らなかったんだが","synonyms":["The Hero Who Has No Class. I Don't Need Any Skills, It's Okay. The hero who has no class.","The Unemployed Hero Does Not Need Something Like Skills","ผู้กล้าไร้อาชีพ"],"format":"ONA","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":9,"day":24},"status":"FINISHED"},{"index":16,"id":195153,"mal_id":61917,"title":"Towa no Yuugure","english":"Dusk Beyond the End of the World","native":"永久のユウグレ","synonyms":["ยามอัสดงกัลปาวสาน","Bersamamu Kala Senjanya Dunia"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"year":2025,"month":9,"day":26},"status":"FINISHED"},{"index":17,"id":188487,"mal_id":61276,"title":"Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu","english":"The Banished Court Magician Aims to Become the Strongest","native":"味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す","synonyms":["Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished","Story of Lasting Period","Hojo Maho","จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":18,"id":187663,"mal_id":61174,"title":"Sozai Saishuka no Isekai Ryokouki","english":"A Gatherer's Adventure in Isekai","native":"素材採取家の異世界旅行記","synonyms":["Material Collector's Another World Travels"],"format":"ONA","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":9,"day":30},"status":"FINISHED"},{"index":19,"id":185731,"mal_id":60564,"title":"Ranma 1/2 (2024) 2nd Season","english":"Ranma1/2 (2024) Season 2","native":"らんま1/2 (2024) 第2期","synonyms":["Ranma1/2 – sezon 2"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":5},"status":"FINISHED"},{"index":20,"id":185801,"mal_id":60619,"title":"Nageki no Bourei wa Intai Shitai 2","english":"Let This Grieving Soul Retire Cour 2","native":"嘆きの亡霊は引退したい 2","synonyms":["Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2","Let This Grieving Soul Retire Sequel","嘆きの亡霊は引退したい 2クール"],"format":"ONA","episodes":11,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":4},"status":"FINISHED"},{"index":21,"id":185575,"mal_id":60531,"title":"Bukiyou na Senpai.","english":"My Awkward Senpai","native":"不器用な先輩。","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":2},"status":"FINISHED"},{"index":22,"id":183965,"mal_id":60254,"title":"Yano-kun no Futsuu no Hibi","english":"Yano-kun's Ordinary Days","native":"矢野くんの普通の日々","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":1},"status":"FINISHED"},{"index":23,"id":195240,"mal_id":61930,"title":"Uma Musume: Cinderella Gray Part 2","english":"Umamusume: Cinderella Gray 2nd Cour","native":"ウマ娘 シンデレラグレイ 第2クール","synonyms":["Umamusume: Cinderella Gray Cour 2"],"format":"TV","episodes":10,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":5},"status":"FINISHED"},{"index":24,"id":173692,"mal_id":57888,"title":"Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.","english":"Dad is a Hero, Mom is a Spirit, I'm a Reincarnator","native":"父は英雄、母は精霊、娘の私は転生者。","synonyms":["Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits","My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.","Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator","ははのは","Hahanoha","ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"year":2025,"month":10,"day":5},"status":"FINISHED"}],"jikan":[{"index":0,"id":52807,"mal_id":52807,"title":"One Punch Man 3","english":"One-Punch Man Season 3","native":"ワンパンマン 3","synonyms":["One Punch Man 3rd Season","OPM 3"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":12,"month":10,"year":2025},"status":"Finished Airing"},{"index":1,"id":59027,"mal_id":59027,"title":"Spy x Family Season 3","english":"Spy x Family Season 3","native":"SPY×FAMILY Season 3","synonyms":[],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":2,"id":60098,"mal_id":60098,"title":"Boku no Hero Academia: Final Season","english":"My Hero Academia Final Season","native":"僕のヒーローアカデミア FINAL SEASON","synonyms":["My Hero Academia 8"],"format":"TV","episodes":11,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":3,"id":61026,"mal_id":61026,"title":"Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga","english":"My Status as an Assassin Obviously Exceeds the Hero's","native":"暗殺者である俺のステータスが勇者よりも明らかに強いのだが","synonyms":["Sutetsuyo"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":7,"month":10,"year":2025},"status":"Finished Airing"},{"index":4,"id":59846,"mal_id":59846,"title":"Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka","english":"May I Ask for One Final Thing?","native":"最後にひとつだけお願いしてもよろしいでしょうか","synonyms":["Saihito"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":5,"id":54703,"mal_id":54703,"title":"Fumetsu no Anata e Season 3","english":"To Your Eternity Season 3","native":"不滅のあなたへ Season3","synonyms":[],"format":"TV","episodes":22,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":6,"id":57025,"mal_id":57025,"title":"Tondemo Skill de Isekai Hourou Meshi 2","english":"Campfire Cooking in Another World with My Absurd Skill Season 2","native":"とんでもスキルで異世界放浪メシ2","synonyms":["Regarding the Display of an Outrageous Skill Which Has Incredible Powers","Tonsuki"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":8,"month":10,"year":2025},"status":"Finished Airing"},{"index":7,"id":60303,"mal_id":60303,"title":"Shinjiteita Nakama-tachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakama-tachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!","english":"My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!","native":"信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!","synonyms":["Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me","But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends and Am Out For Revenge on My Former Party Members and the World"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":3,"month":10,"year":2025},"status":"Finished Airing"},{"index":8,"id":47158,"mal_id":47158,"title":"Tomodachi no Imouto ga Ore ni dake Uzai","english":"My Friend's Little Sister Has It In for Me!","native":"友達の妹が俺にだけウザい","synonyms":["My friend's sister annoying only me.","Imouza"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":5,"month":10,"year":2025},"status":"Finished Airing"},{"index":9,"id":59644,"mal_id":59644,"title":"Yasei no Last Boss ga Arawareta!","english":"A Wild Last Boss Appeared!","native":"野生のラスボスが現れた!","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":10,"id":59267,"mal_id":59267,"title":"Sanda","english":"Sanda","native":"SANDA","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":11,"id":61903,"mal_id":61903,"title":"Kaguya-sama wa Kokurasetai: Otona e no Kaidan","english":"Kaguya-sama: Love Is War - Stairway to Adulthood","native":"かぐや様は告らせたい 大人への階段","synonyms":[],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":12,"year":2025},"status":"Finished Airing"},{"index":12,"id":56854,"mal_id":56854,"title":"Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga","english":"Hero Without a Class: Who Even Needs Skills?!","native":"無職の英雄 別にスキルなんか要らなかったんだが","synonyms":["The Hero Who Has No Class. No Need Any Skills","It's Okay.","The Classless Hero: I Didn't Need Skills Anyway"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":1,"month":10,"year":2025},"status":"Finished Airing"},{"index":13,"id":59517,"mal_id":59517,"title":"Chitose-kun wa Ramune Bin no Naka","english":"Chitose Is in the Ramune Bottle","native":"千歳くんはラムネ瓶のなか","synonyms":["Chiramune","Chitose-kun is Inside a Ramune Bottle","Ramune no Bin ni Shizunda Biidama no Tsuki"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"day":7,"month":10,"year":2025},"status":"Finished Airing"},{"index":14,"id":60619,"mal_id":60619,"title":"Nageki no Bourei wa Intai shitai Part 2","english":"Let This Grieving Soul Retire Part 2","native":"嘆きの亡霊は引退したい 第2クール","synonyms":["Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party"],"format":"TV","episodes":11,"season":"FALL","year":2025,"start_date":{"day":6,"month":10,"year":2025},"status":"Finished Airing"},{"index":15,"id":62405,"mal_id":62405,"title":"Fujimoto Tatsuki 17-26","english":"Tatsuki Fujimoto 17-26","native":"藤本タツキ17-26","synonyms":["Niwa ni wa Niwa Niwatori ga Ita.","Sasaki-kun ga Juudan Tometa","Koi wa Moumoku","Shikaku","Ningyo Rhapsody","Me ga Sametara Onnanoko ni Natteita Yamai","Yogen no Nayuta","Imouto no Ane"],"format":"ONA","episodes":8,"season":null,"year":null,"start_date":{"day":8,"month":11,"year":2025},"status":"Finished Airing"},{"index":16,"id":61917,"mal_id":61917,"title":"Towa no Yuugure","english":"Dusk Beyond the End of the World","native":"永久のユウグレ","synonyms":["Towa no Yugure"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":3,"month":10,"year":2025},"status":"Finished Airing"},{"index":17,"id":60168,"mal_id":60168,"title":"Watashi wo Tabetai, Hitodenashi","english":"This Monster Wants to Eat Me","native":"私を喰べたい、ひとでなし","synonyms":["A Monster Wants to Eat Me","WataTabe"],"format":"TV","episodes":13,"season":"FALL","year":2025,"start_date":{"day":2,"month":10,"year":2025},"status":"Finished Airing"},{"index":18,"id":60564,"mal_id":60564,"title":"Ranma ½ (2024) 2nd Season","english":"Ranma ½ (2024) Season 2","native":"らんま1/2 第2期","synonyms":["Ranma 1/2 (2024) 2nd Season"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":5,"month":10,"year":2025},"status":"Finished Airing"},{"index":19,"id":61174,"mal_id":61174,"title":"Sozai Saishuka no Isekai Ryokouki","english":"A Gatherer's Adventure in Isekai","native":"素材採取家の異世界旅行記","synonyms":["Material Collector's Another World Travels"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":7,"month":10,"year":2025},"status":"Finished Airing"},{"index":20,"id":61276,"mal_id":61276,"title":"Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu","english":"The Banished Court Magician Aims to Become the Strongest","native":"味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す","synonyms":["A Court Magician","Who Was Focused on Supportive Magic Because His Allies Were too Weak","Aims to Become the Strongest After Being Banished","Story of Lasting Period"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":4,"month":10,"year":2025},"status":"Finished Airing"},{"index":21,"id":60531,"mal_id":60531,"title":"Bukiyou na Senpai.","english":"My Awkward Senpai","native":"不器用な先輩。","synonyms":["Awkward Senpai"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":2,"month":10,"year":2025},"status":"Finished Airing"},{"index":22,"id":60162,"mal_id":60162,"title":"Akujiki Reijou to Kyouketsu Koushaku","english":"Pass the Monster Meat, Milady!","native":"悪食令嬢と狂血公爵","synonyms":[],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":3,"month":10,"year":2025},"status":"Finished Airing"},{"index":23,"id":60254,"mal_id":60254,"title":"Yano-kun no Futsuu no Hibi","english":"Yano-kun's Ordinary Days","native":"矢野くんの普通の日々","synonyms":["Mr. Yano's Ordinary Days"],"format":"TV","episodes":12,"season":"FALL","year":2025,"start_date":{"day":1,"month":10,"year":2025},"status":"Finished Airing"},{"index":24,"id":61930,"mal_id":61930,"title":"Uma Musume: Cinderella Gray Part 2","english":"Umamusume: Cinderella Gray Part 2","native":"ウマ娘 シンデレラグレイ 第2クール","synonyms":[],"format":"TV","episodes":10,"season":"FALL","year":2025,"start_date":{"day":5,"month":10,"year":2025},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-05.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-05.json new file mode 100644 index 0000000..a5cc50e --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-05.json @@ -0,0 +1 @@ +{"shard":5,"seasons":[{"year":2011,"season":"spring","anilist":[{"index":0,"id":9253,"mal_id":9253,"title":"Steins;Gate","english":"Steins;Gate","native":"シュタインズ・ゲート","synonyms":["S;G","סטיינס;גייט","命运石之门","Врата;Штейна"],"format":"TV","episodes":24,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":6},"status":"FINISHED"},{"index":1,"id":9919,"mal_id":9919,"title":"Ao no Exorcist","english":"Blue Exorcist","native":"青の祓魔師","synonyms":["Ao no Futsumashi","اللهب الأزرق","Ο Γαλάζιος Εξορκιστής "],"format":"TV","episodes":25,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":17},"status":"FINISHED"},{"index":2,"id":9989,"mal_id":9989,"title":"Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.","english":"Anohana: The Flower We Saw That Day","native":"あの日見た花の名前を僕達はまだ知らない。","synonyms":["AnoHana","We Still Don't Know the Name of the Flower We Saw That Day.","אנוהאנה: הפרח שראינו ביום ההוא","อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ","あの花","AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno"],"format":"TV","episodes":11,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":3,"id":6880,"mal_id":6880,"title":"Deadman Wonderland","english":"Deadman Wonderland","native":"デッドマン・ワンダーランド","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":17},"status":"FINISHED"},{"index":4,"id":10165,"mal_id":10165,"title":"Nichijou","english":"Nichijou - My Ordinary Life","native":"日常","synonyms":["Everyday","Мелочи Жизни","Повсякденнощі"],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":3},"status":"FINISHED"},{"index":5,"id":9969,"mal_id":9969,"title":"Gintama'","english":"Gintama Season 2","native":"銀魂’","synonyms":["Gintama (2011)"],"format":"TV","episodes":51,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":4},"status":"FINISHED"},{"index":6,"id":9289,"mal_id":9289,"title":"Hanasaku Iroha","english":"Hanasaku Iroha ~Blossoms for Tomorrow~","native":"花咲くいろは","synonyms":["Hana-Saku Iroha","Hanairo","花开伊吕波"],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":3},"status":"FINISHED"},{"index":7,"id":10080,"mal_id":10080,"title":"Kami nomi zo Shiru Sekai II","english":"The World God Only Knows II","native":"神のみぞ知るセカイⅡ","synonyms":["Kami nomi zo Shiru Sekai 2","Kaminomi II","The World God Only Knows 2","Que sa volonté soit faite II"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":12},"status":"FINISHED"},{"index":8,"id":8630,"mal_id":8630,"title":"Hidan no Aria","english":"Aria the Scarlet Ammo","native":"緋弾のアリア","synonyms":["Aria da Bala Escarlate"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":9,"id":9379,"mal_id":9379,"title":"Denpa Onna to Seishun Otoko","english":"Ground Control to Psychoelectric Girl","native":"電波女と青春男","synonyms":["Electromagnetic Wave Woman and Adolescent Man","หนุ่มสามัญกับสาวหลุดโลก","电波女与青春男","電波女與青春男","전파녀와 청춘남","Дівчинка-Електромагнітна хвиля і хлопець-підліток","Радиодевушка и юноша","Радиосигнал от чудачки. Юноша на связи","امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":10,"id":9515,"mal_id":9515,"title":"Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead","english":"High School of the Dead: Drifters of the Dead","native":"学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド","synonyms":["High School of the Dead OVA","HOTD","HSOTD"],"format":"OVA","episodes":1,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":26},"status":"FINISHED"},{"index":11,"id":10163,"mal_id":10163,"title":"C: THE MONEY OF SOUL AND POSSIBILITY CONTROL","english":"[C] - CONTROL - The Money and Soul of Possibility","native":"「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL","synonyms":["[C] The Money of Soul and Possibility Control","[C] - Control","C-Control","The Money of Souland Possibility Controul","Dusza na sprzedaż","C"],"format":"TV","episodes":11,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":12,"id":9760,"mal_id":9760,"title":"Hoshi wo Ou Kodomo","english":"Children who Chase Lost Voices","native":"星を追う子ども","synonyms":["Children who Chase Lost Voices from Deep Below","Journey to Agartha","Viaje a Agartha","Csillaghajsza","Voyage vers Agartha","Die Reise nach Agartha","Viaggio verso Agartha","I bambini che inseguono le stelle"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":5,"day":7},"status":"FINISHED"},{"index":13,"id":10271,"mal_id":10271,"title":"Gyakkyou Burai Kaiji: Hakairoku-hen","english":"Kaiji - Against All Rules","native":"逆境無頼カイジ 破戒録篇","synonyms":["The Suffering Pariah Kaiji: Backslide Arc","Kaiji 2"],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":6},"status":"FINISHED"},{"index":14,"id":10711,"mal_id":10711,"title":"Plastic Nee-san","english":"Plastic Elder Sister","native":"+チック姉さん","synonyms":["+tic Nee-san","+tic Elder Sister","Plustic Neesan","Plastic Nesan"],"format":"ONA","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":5,"day":16},"status":"FINISHED"},{"index":15,"id":9941,"mal_id":9941,"title":"TIGER & BUNNY","english":"Tiger & Bunny","native":"TIGER & BUNNY","synonyms":["タイガー・アンド・バニー","Tiger and Bunny","Taibani","Тигр та Кролик"],"format":"TV","episodes":25,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":3},"status":"FINISHED"},{"index":16,"id":9863,"mal_id":9863,"title":"SKET DANCE","english":"SKET Dance","native":"SKET DANCE","synonyms":["スケットダンス"],"format":"TV","episodes":77,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":7},"status":"FINISHED"},{"index":17,"id":9734,"mal_id":9734,"title":"K-ON!!: Keikaku!","english":"K-ON! Season 2: Plan!","native":"けいおん!! 計画!","synonyms":["Keion 2 Special","K-On!! 2nd Season Special"],"format":"OVA","episodes":1,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":3,"day":16},"status":"FINISHED"},{"index":18,"id":10155,"mal_id":10155,"title":"Dog Days","english":"Dog Days","native":"ドッグデイズ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":2},"status":"FINISHED"},{"index":19,"id":9982,"mal_id":9982,"title":"FAIRY TAIL OVA","english":null,"native":"FAIRY TAIL OVA","synonyms":[],"format":"OVA","episodes":5,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":20,"id":10079,"mal_id":10079,"title":"Hoshizora e Kakaru Hashi","english":"A Bridge to the Starry Skies","native":"星空へ架かる橋","synonyms":["星架か","HoshiKaka","Hoshizora - Ponte para o Céu Estrelado","Un puente al cielo estrellado"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":11},"status":"FINISHED"},{"index":21,"id":9926,"mal_id":9926,"title":"Sekaiichi Hatsukoi","english":"Sekai Ichi Hatsukoi - The World's Greatest First Love","native":"世界一初恋 TV","synonyms":["Sekai-ichi Hatsukoi","Sekai'ichi Hatsukoi","World's Greatest First Love"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":9},"status":"FINISHED"},{"index":22,"id":9736,"mal_id":9736,"title":"Astarotte no Omocha!","english":"Astarotte's Toy","native":"アスタロッテのおもちゃ!","synonyms":["Lotte no Omocha!"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":11},"status":"FINISHED"},{"index":23,"id":10119,"mal_id":10119,"title":"Seitokai Yakuindomo OVA","english":null,"native":"生徒会役員共 OVA","synonyms":["Seitokai Yakuindomo (2011)","Seitokai Yakuindomo (2012)"],"format":"OVA","episodes":8,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":4,"day":15},"status":"FINISHED"},{"index":24,"id":9366,"mal_id":9366,"title":"Kaichou wa Maid-sama!: Omake dayo!","english":"Maid-Sama! It's an extra!","native":"会長はメイド様!おまけだよ!","synonyms":["Kaicho wa Maid-sama! Special","Kaicho wa Maidsama! Special","Kaichou wa Meido Sama Special","Class President is a Maid! Special"],"format":"SPECIAL","episodes":1,"season":"SPRING","year":2011,"start_date":{"year":2011,"month":5,"day":11},"status":"FINISHED"}],"jikan":[{"index":0,"id":9253,"mal_id":9253,"title":"Steins;Gate","english":"Steins;Gate","native":"STEINS;GATE","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2011,"start_date":{"day":6,"month":4,"year":2011},"status":"Finished Airing"},{"index":1,"id":9919,"mal_id":9919,"title":"Ao no Exorcist","english":"Blue Exorcist","native":"青の祓魔師","synonyms":["Ao no Futsumashi"],"format":"TV","episodes":25,"season":"SPRING","year":2011,"start_date":{"day":17,"month":4,"year":2011},"status":"Finished Airing"},{"index":2,"id":9989,"mal_id":9989,"title":"Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.","english":"Anohana: The Flower We Saw That Day","native":"あの日見た花の名前を僕達はまだ知らない。","synonyms":["AnoHana","We Still Don't Know the Name of the Flower We Saw That Day."],"format":"TV","episodes":11,"season":"SPRING","year":2011,"start_date":{"day":15,"month":4,"year":2011},"status":"Finished Airing"},{"index":3,"id":6880,"mal_id":6880,"title":"Deadman Wonderland","english":"Deadman Wonderland","native":"デッドマン・ワンダーランド","synonyms":["DEADMAN WONDERLAND"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":17,"month":4,"year":2011},"status":"Finished Airing"},{"index":4,"id":10165,"mal_id":10165,"title":"Nichijou","english":"Nichijou - My Ordinary Life","native":"日常","synonyms":["Everyday"],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"day":3,"month":4,"year":2011},"status":"Finished Airing"},{"index":5,"id":9969,"mal_id":9969,"title":"Gintama'","english":"Gintama Season 2","native":"銀魂'","synonyms":["Gintama (2011)"],"format":"TV","episodes":51,"season":"SPRING","year":2011,"start_date":{"day":4,"month":4,"year":2011},"status":"Finished Airing"},{"index":6,"id":10080,"mal_id":10080,"title":"Kami nomi zo Shiru Sekai II","english":"The World God Only Knows II","native":"神のみぞ知るセカイ II","synonyms":["Kami nomi zo Shiru Sekai 2","Kaminomi II","The World God Only Knows 2"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":12,"month":4,"year":2011},"status":"Finished Airing"},{"index":7,"id":8630,"mal_id":8630,"title":"Hidan no Aria","english":"Aria the Scarlet Ammo","native":"緋弾のアリア","synonyms":["Hidan no Aria"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":15,"month":4,"year":2011},"status":"Finished Airing"},{"index":8,"id":9289,"mal_id":9289,"title":"Hanasaku Iroha","english":"Hanasaku Iroha: Blossoms for Tomorrow","native":"花咲くいろは","synonyms":[],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"day":3,"month":4,"year":2011},"status":"Finished Airing"},{"index":9,"id":10163,"mal_id":10163,"title":"C: The Money of Soul and Possibility Control","english":"[C] CONTROL - The Money and Soul of Possibility","native":"「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL","synonyms":["[C] The Money of Soul and Possibility Control"],"format":"TV","episodes":11,"season":"SPRING","year":2011,"start_date":{"day":15,"month":4,"year":2011},"status":"Finished Airing"},{"index":10,"id":9515,"mal_id":9515,"title":"Highschool of the Dead: Drifters of the Dead","english":"High School of the Dead: Drifters of the Dead","native":"学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド","synonyms":["High School of the Dead OVA","Gakuen Mokushiroku: Highschool of the Dead","HOTD","HSOTD","Drifters of the Dead"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":4,"year":2011},"status":"Finished Airing"},{"index":11,"id":9379,"mal_id":9379,"title":"Denpa Onna to Seishun Otoko","english":"Ground Control to Psychoelectric Girl","native":"電波女と青春男","synonyms":["Electromagnetic Wave Woman and Adolescent Man"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":15,"month":4,"year":2011},"status":"Finished Airing"},{"index":12,"id":9863,"mal_id":9863,"title":"SKET Dance","english":"SKET Dance","native":"スケットダンス","synonyms":[],"format":"TV","episodes":77,"season":"SPRING","year":2011,"start_date":{"day":7,"month":4,"year":2011},"status":"Finished Airing"},{"index":13,"id":9941,"mal_id":9941,"title":"Tiger & Bunny","english":"Tiger & Bunny","native":"TIGER & BUNNY (タイガー・アンド・バニー)","synonyms":["Tiger and Bunny","Taibani"],"format":"TV","episodes":25,"season":"SPRING","year":2011,"start_date":{"day":3,"month":4,"year":2011},"status":"Finished Airing"},{"index":14,"id":9760,"mal_id":9760,"title":"Hoshi wo Ou Kodomo","english":"Children Who Chase Lost Voices","native":"星を追う子ども","synonyms":["Children who Chase Lost Voices from Deep Below","Journey to Agartha"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":7,"month":5,"year":2011},"status":"Finished Airing"},{"index":15,"id":9926,"mal_id":9926,"title":"Sekaiichi Hatsukoi","english":"Sekai Ichi Hatsukoi - World's Greatest First Love","native":"世界一初恋 TV","synonyms":["Sekai-ichi Hatsukoi","Sekai'ichi Hatsukoi","World's Greatest First Love"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":9,"month":4,"year":2011},"status":"Finished Airing"},{"index":16,"id":10271,"mal_id":10271,"title":"Gyakkyou Burai Kaiji: Hakairoku-hen","english":"Kaiji: Against All Rules","native":"逆境無頼カイジ 破戒録篇","synonyms":["Gyakkyou Burai Kaiji S2","The Suffering Pariah Kaiji: Backslide Arc"],"format":"TV","episodes":26,"season":"SPRING","year":2011,"start_date":{"day":6,"month":4,"year":2011},"status":"Finished Airing"},{"index":17,"id":10711,"mal_id":10711,"title":"Plastic Neesan","english":null,"native":"+チック姉さん","synonyms":["+tic Nee-san","+tic Elder Sister","Plustic Neesan","Plastic Nee-san","Purasu Chikku Neesan","Plastic Elder Sister"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":16,"month":5,"year":2011},"status":"Finished Airing"},{"index":18,"id":10155,"mal_id":10155,"title":"Dog Days","english":null,"native":"ドッグデイズ","synonyms":["Dog Days"],"format":"TV","episodes":13,"season":"SPRING","year":2011,"start_date":{"day":2,"month":4,"year":2011},"status":"Finished Airing"},{"index":19,"id":10079,"mal_id":10079,"title":"Hoshizora e Kakaru Hashi","english":"A Bridge to the Starry Skies","native":"星空へ架かる橋","synonyms":["Hoshizora e Kakaru Hashi"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":11,"month":4,"year":2011},"status":"Finished Airing"},{"index":20,"id":9982,"mal_id":9982,"title":"Fairy Tail OVA","english":null,"native":"フェアリーテイル OVA","synonyms":["Fairy Tail: Youkoso Fairy Hills!","Yousei Gakuen: Yankee-kun to Yankee-chan"],"format":"OVA","episodes":5,"season":null,"year":null,"start_date":{"day":15,"month":4,"year":2011},"status":"Finished Airing"},{"index":21,"id":9736,"mal_id":9736,"title":"Astarotte no Omocha!","english":"Astarotte's Toy","native":"アスタロッテのおもちゃ!","synonyms":["Lotte no Omocha!"],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":11,"month":4,"year":2011},"status":"Finished Airing"},{"index":22,"id":10073,"mal_id":10073,"title":"Seikon no Qwaser II","english":"The Qwaser of Stigmata II","native":"聖痕のクェイサー II","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2011,"start_date":{"day":12,"month":4,"year":2011},"status":"Finished Airing"},{"index":23,"id":10033,"mal_id":10033,"title":"Toriko","english":"Toriko","native":"トリコ","synonyms":["Toriko (2011)","Toriko (TV)","Toriko x One Piece Collabo Special"],"format":"TV","episodes":147,"season":"SPRING","year":2011,"start_date":{"day":3,"month":4,"year":2011},"status":"Finished Airing"},{"index":24,"id":9790,"mal_id":9790,"title":"Sora no Otoshimono: Tokeijikake no Angeloid","english":"Heaven's Lost Property the Movie: The Angeloid of Clockwork","native":"劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド)","synonyms":["Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid","Sora no Otoshimono: The Movie","Lost Property of the Sky Movie","Misplaced by Heaven"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":6,"year":2011},"status":"Finished Airing"}]},{"year":2013,"season":"spring","anilist":[{"index":0,"id":16498,"mal_id":16498,"title":"Shingeki no Kyojin","english":"Attack on Titan","native":"進撃の巨人","synonyms":["SnK","AoT","Ataque a los Titanes","Ataque dos Titãs","L'Attacco dei Giganti","מתקפת הטיטאנים","进击的巨人","L’Attaque des Titans","الهجوم على العمالقة","ผ่าพิภพไททัน","حمله به تایتان","Ataque de Titãs","Atak Tytanów","Атака титанов"],"format":"TV","episodes":25,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":7},"status":"FINISHED"},{"index":1,"id":15809,"mal_id":15809,"title":"Hataraku Maou-sama!","english":"The Devil is a Part-Timer!","native":"はたらく魔王さま!","synonyms":["ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต","Raja Iblis Nyambi!","打工吧!魔王大人"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":4},"status":"FINISHED"},{"index":2,"id":14813,"mal_id":14813,"title":"Yahari Ore no Seishun Love Come wa Machigatteiru.","english":"My Teen Romantic Comedy SNAFU","native":"やはり俺の青春ラブコメはまちがっている。","synonyms":["Oregairu","My youth romantic comedy is wrong as I expected.","俺ガイル","我的青春恋爱物语果然有问题","กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":5},"status":"FINISHED"},{"index":3,"id":16782,"mal_id":16782,"title":"Kotonoha no Niwa","english":"The Garden of Words","native":"言の葉の庭","synonyms":["Koto no Ha no Niwa","The Garden of Kotonoha","El Jardín de las Palabras","A szavak kertje","ยามสายฝนโปรยปราย","Ogród słów","Сад изящных слов","Il giardino delle parole"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":5,"day":31},"status":"FINISHED"},{"index":4,"id":15583,"mal_id":15583,"title":"Date A Live","english":"Date A Live","native":"デート・ア・ライブ","synonyms":["พิชิตรัก พิทักษ์โลก"," Рандеву с жизнью"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":6},"status":"FINISHED"},{"index":5,"id":11577,"mal_id":11577,"title":"Steins;Gate: Fuka Ryouiki no Déjà vu","english":"Steins;Gate The Movie – Load Region of Déjà Vu","native":"劇場版 シュタインズゲート 負荷領域のデジャヴ","synonyms":[],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":20},"status":"FINISHED"},{"index":6,"id":16049,"mal_id":16049,"title":"Toaru Kagaku no Railgun S","english":"A Certain Scientific Railgun S","native":"とある科学の超電磁砲S","synonyms":["Toaru Kagaku no Railgun 2nd Season","A Certain Scientific Railgun 2nd Season","เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2","Некий научный Рейлган 2","Некий научный Рейлган С","เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2","Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ","魔法禁書目錄外傳 科學超電磁砲 第二季","科學超電磁砲 S"],"format":"TV","episodes":24,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":12},"status":"FINISHED"},{"index":7,"id":15225,"mal_id":15225,"title":"Hentai Ouji to Warawanai Neko.","english":"Hentai Prince & the Stony Cat","native":"変態王子と笑わない猫。","synonyms":["HENNEKO","El príncipe pervertido y el gato de piedra","O príncipe pervertido e o gato inexpressivo","The \"Hentai\" Prince and the Stony Cat."],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":13},"status":"FINISHED"},{"index":8,"id":13659,"mal_id":13659,"title":"Ore no Imouto ga Konna ni Kawaii Wake ga Nai.","english":"Oreimo 2","native":"俺の妹がこんなに可愛いわけがない。","synonyms":["My Little Sister Can't Be This Cute 2","Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2","น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":7},"status":"FINISHED"},{"index":9,"id":14837,"mal_id":14837,"title":"Dragon Ball Z: Kami to Kami","english":"Dragon Ball Z: Battle of Gods","native":"ドラゴンボールZ: 神と神","synonyms":["Dragon Ball Z 2013","DBZ (2013)","Saikyou Shidou","Dragon Ball Z Movie 14: God & God","Bola de Drac Z: La Batalla dels Déus","Dragon Ball Z - Kampf der Götter","Dragon Ball Z: A Batalha dos Deuses","Драконий жемчуг Зет: Битва богов"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":3,"day":30},"status":"FINISHED"},{"index":10,"id":16524,"mal_id":16524,"title":"Suisei no Gargantia","english":"Gargantia on the Verdurous Planet","native":"翠星のガルガンティア","synonyms":["Suisei no Galgantia"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":7},"status":"FINISHED"},{"index":11,"id":16201,"mal_id":16201,"title":"Aku no Hana","english":"Flowers of Evil","native":"惡の華","synonyms":["Kwiaty zła"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":5},"status":"FINISHED"},{"index":12,"id":15699,"mal_id":15699,"title":"Haiyore! Nyaruko-san W","english":"Nyaruko-san: Another Crawling Chaos W","native":"這いよれ!ニャル子さん W","synonyms":["Haiyore! Nyaruko-san 2","Haiyoru! Nyaruko-san 2"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":8},"status":"FINISHED"},{"index":13,"id":16035,"mal_id":16035,"title":"Karneval (TV)","english":"Karneval (TV)","native":"カーニヴァル (TV)","synonyms":["ล่าทรชน"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":4},"status":"FINISHED"},{"index":14,"id":16668,"mal_id":16668,"title":"Kakumeiki Valvrave","english":"Valvrave the Liberator","native":"革命機ヴァルヴレイヴ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":12},"status":"FINISHED"},{"index":15,"id":14669,"mal_id":14669,"title":"AURA: Maryuuinkouga Saigo no Tatakai","english":"Aura","native":"AURA~魔竜院光牙最後の闘い~","synonyms":["Aura: Maryuinkoga Saigo no Tatakai","Aura: Maryuin Kouga Saigo no Tatakai","Aura: Koga Maryuin's Last War"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":13},"status":"FINISHED"},{"index":16,"id":16528,"mal_id":16528,"title":"Hal","english":"Hal","native":"ハル","synonyms":["Haru"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":6,"day":8},"status":"FINISHED"},{"index":17,"id":15911,"mal_id":15911,"title":"Yuyushiki","english":"Yuyushiki","native":"ゆゆ式","synonyms":["Yuyu-shiki"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":10},"status":"FINISHED"},{"index":18,"id":16397,"mal_id":16397,"title":"Photokano","english":"Photo Kano","native":"フォトカノ","synonyms":["Foto Kano"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":5},"status":"FINISHED"},{"index":19,"id":16512,"mal_id":16512,"title":"Devil Survivor 2: THE ANIMATION","english":"Devil Survivor 2: The Animation","native":"デビルサバイバー2 THE ANIMATION","synonyms":["DS2A","Shin Megami Tensei: Devil Survivor 2"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":5},"status":"FINISHED"},{"index":20,"id":15771,"mal_id":15771,"title":"Saint☆Onii-san","english":null,"native":"聖☆おにいさん","synonyms":["Saint☆Oniisan (Movie)","Saint☆Young Men"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":5,"day":10},"status":"FINISHED"},{"index":21,"id":17082,"mal_id":17082,"title":"Aiura","english":"AIURA","native":"あいうら","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":10},"status":"FINISHED"},{"index":22,"id":14175,"mal_id":14175,"title":"Hanasaku Iroha: HOME SWEET HOME","english":"Hanasaku Iroha the Movie ~ HOME SWEET HOME ~","native":"花咲くいろは HOME SWEET HOME","synonyms":["Hana-Saku Iroha: Home Sweet Home","Hanairo Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":3,"day":9},"status":"FINISHED"},{"index":23,"id":14921,"mal_id":14921,"title":"RDG: Red Data Girl","english":"Red Data Girl","native":"RDG レッドデータガール","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":4},"status":"FINISHED"},{"index":24,"id":16355,"mal_id":16355,"title":"Dansai Bunri no Crime Edge","english":"The Severing Crime Edge","native":"断裁分離のクライムエッジ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"year":2013,"month":4,"day":4},"status":"FINISHED"}],"jikan":[{"index":0,"id":16498,"mal_id":16498,"title":"Shingeki no Kyojin","english":"Attack on Titan","native":"進撃の巨人","synonyms":["AoT","SnK"],"format":"TV","episodes":25,"season":"SPRING","year":2013,"start_date":{"day":7,"month":4,"year":2013},"status":"Finished Airing"},{"index":1,"id":15809,"mal_id":15809,"title":"Hataraku Maou-sama!","english":"The Devil is a Part-Timer!","native":"はたらく魔王さま!","synonyms":["Hataraku Maou-sama!"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":4,"month":4,"year":2013},"status":"Finished Airing"},{"index":2,"id":14813,"mal_id":14813,"title":"Yahari Ore no Seishun Love Comedy wa Machigatteiru.","english":"My Teen Romantic Comedy SNAFU","native":"やはり俺の青春ラブコメはまちがっている。","synonyms":["Oregairu","My youth romantic comedy is wrong as I expected."],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":5,"month":4,"year":2013},"status":"Finished Airing"},{"index":3,"id":15583,"mal_id":15583,"title":"Date A Live","english":"Date A Live","native":"デート・ア・ライブ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":6,"month":4,"year":2013},"status":"Finished Airing"},{"index":4,"id":16782,"mal_id":16782,"title":"Kotonoha no Niwa","english":"The Garden of Words","native":"言の葉の庭","synonyms":["Koto no Ha no Niwa","The Garden of Kotonoha"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":5,"year":2013},"status":"Finished Airing"},{"index":5,"id":11577,"mal_id":11577,"title":"Steins;Gate Movie: Fuka Ryouiki no Déjà vu","english":"Steins;Gate: The Movie - Load Region of Déjà Vu","native":"劇場版 シュタインズゲート 負荷領域のデジャヴ","synonyms":["Steins Gate Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":4,"year":2013},"status":"Finished Airing"},{"index":6,"id":15225,"mal_id":15225,"title":"Hentai Ouji to Warawanai Neko.","english":"The \"Hentai\" Prince and the Stony Cat.","native":"変態王子と笑わない猫。","synonyms":["HenNeko"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":13,"month":4,"year":2013},"status":"Finished Airing"},{"index":7,"id":13659,"mal_id":13659,"title":"Ore no Imouto ga Konnani Kawaii Wake ga Nai.","english":"OreImo 2","native":"俺の妹がこんなに可愛いわけがない。","synonyms":["My Little Sister Can't Be This Cute 2","Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":7,"month":4,"year":2013},"status":"Finished Airing"},{"index":8,"id":16049,"mal_id":16049,"title":"Toaru Kagaku no Railgun S","english":"A Certain Scientific Railgun S","native":"とある科学の超電磁砲S","synonyms":["Toaru Kagaku no Railgun 2","Toaru Kagaku no Choudenjihou 2","A Certain Scientific Railgun 2"],"format":"TV","episodes":24,"season":"SPRING","year":2013,"start_date":{"day":12,"month":4,"year":2013},"status":"Finished Airing"},{"index":9,"id":16762,"mal_id":16762,"title":"Mirai Nikki: Redial","english":"The Future Diary: Redial","native":"未来日記リダイヤル","synonyms":["Mirai Nikki OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":6,"year":2013},"status":"Finished Airing"},{"index":10,"id":16524,"mal_id":16524,"title":"Suisei no Gargantia","english":"Gargantia on the Verdurous Planet","native":"翠星のガルガンティア","synonyms":["Suisei no Galgantia"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":7,"month":4,"year":2013},"status":"Finished Airing"},{"index":11,"id":16934,"mal_id":16934,"title":"Chuunibyou demo Koi ga Shitai! Kirameki no... Slapstick Noel","english":"Love, Chunibyo & Other Delusions!: Sparkling... Slapstick Noel","native":"中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル)","synonyms":["Chuunibyou demo Koi ga Shitai! Episode 13","Chu-2 Byo demo Koi ga Shitai! Episode 13"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":6,"year":2013},"status":"Finished Airing"},{"index":12,"id":16201,"mal_id":16201,"title":"Aku no Hana","english":"Flowers of Evil","native":"惡の華","synonyms":["Aku no Hana"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":5,"month":4,"year":2013},"status":"Finished Airing"},{"index":13,"id":16035,"mal_id":16035,"title":"Karneval (TV)","english":"Karneval","native":"カーニヴァル","synonyms":["Karneval (2013)"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":4,"month":4,"year":2013},"status":"Finished Airing"},{"index":14,"id":15699,"mal_id":15699,"title":"Haiyore! Nyaruko-san W","english":"Nyaruko: Crawling With Love! Second Season","native":"這いよれ!ニャル子さん W","synonyms":["Haiyore! Nyaruko-san 2","Haiyoru! Nyaruko-san 2","Nyarko-san: Another Crawling Chaos W"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":8,"month":4,"year":2013},"status":"Finished Airing"},{"index":15,"id":16668,"mal_id":16668,"title":"Kakumeiki Valvrave","english":"Valvrave the Liberator","native":"革命機ヴァルヴレイヴ","synonyms":["Kakumeiki Valvrave"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":12,"month":4,"year":2013},"status":"Finished Airing"},{"index":16,"id":16512,"mal_id":16512,"title":"Devil Survivor 2 The Animation","english":"Devil Survivor 2 The Animation","native":"デビルサバイバー2 THE ANIMATION","synonyms":["DS2A","Shin Megami Tensei: Devil Survivor 2"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":5,"month":4,"year":2013},"status":"Finished Airing"},{"index":17,"id":16528,"mal_id":16528,"title":"Hal","english":"Hal","native":"ハル","synonyms":["Haru"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":6,"year":2013},"status":"Finished Airing"},{"index":18,"id":16397,"mal_id":16397,"title":"Photokano","english":"Photo Kano","native":"フォトカノ","synonyms":["Foto Kano","Photograph Girlfriend"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":5,"month":4,"year":2013},"status":"Finished Airing"},{"index":19,"id":14669,"mal_id":14669,"title":"Aura: Maryuuin Kouga Saigo no Tatakai","english":"Aura: Koga Maryuin's Last War","native":"AURA~魔竜院光牙最後の闘い~","synonyms":["Aura: Maryuinkoga Saigo no Tatakai","Aura: Maryuin Kouga Saigo no Tatakai"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":13,"month":4,"year":2013},"status":"Finished Airing"},{"index":20,"id":14921,"mal_id":14921,"title":"RDG: Red Data Girl","english":"Red Data Girl","native":"RDG レッドデータガール","synonyms":["RDG"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":4,"month":4,"year":2013},"status":"Finished Airing"},{"index":21,"id":12711,"mal_id":12711,"title":"Uta no☆Prince-sama♪ Maji Love 2000%","english":"Uta no Prince Sama 2","native":"うたの☆プリンスさまっ♪ マジLOVE2000%","synonyms":["Uta no Prince-sama Maji Love 1000% 2","UtaPri 2"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":4,"month":4,"year":2013},"status":"Finished Airing"},{"index":22,"id":16355,"mal_id":16355,"title":"Dansai Bunri no Crime Edge","english":"The Severing Crime Edge","native":"断裁分離のクライムエッジ","synonyms":["Dansai Bunri no Crime Edge"],"format":"TV","episodes":13,"season":"SPRING","year":2013,"start_date":{"day":4,"month":4,"year":2013},"status":"Finished Airing"},{"index":23,"id":15911,"mal_id":15911,"title":"Yuyushiki","english":"Yuyushiki","native":"ゆゆ式","synonyms":["Yuyu-shiki"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":10,"month":4,"year":2013},"status":"Finished Airing"},{"index":24,"id":15377,"mal_id":15377,"title":"Hyakka Ryouran: Samurai Bride","english":"Samurai Bride","native":"百花繚乱 サムライブライド","synonyms":["Hyakka Ryouran: Samurai Girls 2nd Season","Hyakka Ryouran: Samurai Girls Dai 2-ki"],"format":"TV","episodes":12,"season":"SPRING","year":2013,"start_date":{"day":5,"month":4,"year":2013},"status":"Finished Airing"}]},{"year":2015,"season":"spring","anilist":[{"index":0,"id":20923,"mal_id":28171,"title":"Shokugeki no Souma","english":"Food Wars!","native":"食戟のソーマ","synonyms":["لا سلام على طعام","Food Wars! The First Plate","食戟之灵","ยอดนักปรุงโซมะ"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"},{"index":1,"id":20920,"mal_id":28121,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?","native":"ダンジョンに出会いを求めるのは間違っているだろうか","synonyms":["Danmachi","Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth","DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?","DanMachi: Família Myth","Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?","在地下城寻求邂逅是否搞错了什么","فارسة أحلامي","มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน","DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?","ダンまち"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"},{"index":2,"id":20829,"mal_id":26243,"title":"Owari no Seraph","english":"Seraph of the End: Vampire Reign","native":"終わりのセラフ","synonyms":["OwaSera","Seraph of the End: El Reino de los Vampiros","เทวทูตแห่งโลกมืด"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"},{"index":3,"id":20698,"mal_id":23847,"title":"Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku","english":"My Teen Romantic Comedy SNAFU TOO!","native":"やはり俺の青春ラブコメはまちがっている。続","synonyms":["Oregairu Zoku","Oregairu 2","俺ガイル2","我的青春恋爱物语果然有问题 续","กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":3},"status":"FINISHED"},{"index":4,"id":20872,"mal_id":27775,"title":"Plastic Memories","english":"Plastic Memories","native":"プラスティックメモリーズ","synonyms":["Plamemo"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":5},"status":"FINISHED"},{"index":5,"id":20727,"mal_id":24439,"title":"Kekkai Sensen","english":"Blood Blockade Battlefront","native":"血界戦線","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":5},"status":"FINISHED"},{"index":6,"id":20792,"mal_id":28701,"title":"Fate/stay night: Unlimited Blade Works 2nd Season","english":"Fate/stay night: Unlimited Blade Works 2nd Season","native":"Fate/stay night [Unlimited Blade Works] 2ndシーズン","synonyms":["フェイト/ステイナイト Unlimited Blade Works 2ndシーズン","Судьба/Ночь схватки: Бесконечный мир клинков 2"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":5},"status":"FINISHED"},{"index":7,"id":20966,"mal_id":28677,"title":"Yamada-kun to 7-nin no Majo","english":"Yamada and the Seven Witches","native":"山田くんと7人の魔女","synonyms":["Yamadakun to Nananin no Majo","Yamajo","ยามาดะคุงกับแม่มดทั้ง 7"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":12},"status":"FINISHED"},{"index":8,"id":20745,"mal_id":24703,"title":"High School DxD BorN","english":null,"native":"ハイスクールD×D BorN","synonyms":["Highschool DxD 3"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"},{"index":9,"id":20876,"mal_id":27787,"title":"Nisekoi:","english":"Nisekoi:","native":"ニセコイ:","synonyms":["Nisekoi2 -False Love-"," รักลวงป่วนใจ ภาค 2"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":10},"status":"FINISHED"},{"index":10,"id":20946,"mal_id":28297,"title":"Ore Monogatari!!","english":"My Love Story!!","native":"俺物語!!","synonyms":["Mon Histoire"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":9},"status":"FINISHED"},{"index":11,"id":20912,"mal_id":27989,"title":"Hibike! Euphonium","english":"Sound! Euphonium","native":"響け!ユーフォニアム","synonyms":["Résonne ! Euphonium","吹响吧!上低音号"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":8},"status":"FINISHED"},{"index":12,"id":20996,"mal_id":28977,"title":"Gintama°","english":"Gintama Season 3","native":"銀魂゜","synonyms":[],"format":"TV","episodes":51,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":8},"status":"FINISHED"},{"index":13,"id":21006,"mal_id":29095,"title":"Grisaia no Rakuen","english":"The Eden of Grisaia","native":"グリザイアの楽園","synonyms":["Le Eden De La Grisaia"],"format":"TV","episodes":10,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":19},"status":"FINISHED"},{"index":14,"id":20935,"mal_id":28249,"title":"Arslan Senki (TV)","english":"The Heroic Legend of Arslan","native":"アルスラーン戦記 (TV)","synonyms":["La Heroica Leyenda de Arslan"],"format":"TV","episodes":25,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":5},"status":"FINISHED"},{"index":15,"id":20963,"mal_id":28675,"title":"Kyoukai no Kanata: I'LL BE HERE - Mirai-hen","english":"Beyond the Boundary -I'LL BE HERE-: Future","native":"劇場版 境界の彼方 I'LL BE HERE 未来篇","synonyms":["Kyoukai no Kanata: I’ll Be Here – przyszłość"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":25},"status":"FINISHED"},{"index":16,"id":21005,"mal_id":29093,"title":"Grisaia no Meikyuu","english":"The Labyrinth of Grisaia","native":"グリザイアの迷宮","synonyms":["Le Labyrinthe De La Grisaia"],"format":"SPECIAL","episodes":1,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":12},"status":"FINISHED"},{"index":17,"id":20964,"mal_id":28617,"title":"Punch Line","english":"PUNCH LINE","native":"パンチライン","synonyms":["Punchline","Linea Final"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":10},"status":"FINISHED"},{"index":18,"id":20778,"mal_id":25389,"title":"Dragon Ball Z: Fukkatsu no \"F\"","english":"Dragon Ball Z: Resurrection 'F'","native":"ドラゴンボールZ 復活の「F」","synonyms":["Dragon Ball Z: La Resurrección de \"F\"","龙珠Z:复活的弗利萨","Dragon Ball Z - La resurrezione di 'F'","“未来”トランクス特別編","Future Trunks Special Edition","Драконий жемчуг Зет: Воскрешение «Ф»"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":18},"status":"FINISHED"},{"index":19,"id":21000,"mal_id":29067,"title":"Danna ga Nani wo Itteiru ka Wakaranai Ken 2-sure-me","english":"I Can't Understand What My Husband is Saying 2nd Thread","native":"旦那が何を言っているかわからない件2スレ目","synonyms":["Danna ga Nani o Itte Iruka Wakaranai Ken 2-sure-me"],"format":"TV_SHORT","episodes":13,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":3},"status":"FINISHED"},{"index":20,"id":20766,"mal_id":24997,"title":"Love Live! The School Idol Movie","english":"Love Live! The School Idol Movie","native":"ラブライブ!The School Idol Movie","synonyms":["Gekijouban Love Live!","Love Live! School Idol Project Movie"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":6,"day":13},"status":"FINISHED"},{"index":21,"id":20839,"mal_id":26443,"title":"Triage X","english":"Triage X","native":"トリアージX","synonyms":[],"format":"TV","episodes":10,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":9},"status":"FINISHED"},{"index":22,"id":21247,"mal_id":29027,"title":"Shinmai Maou no Testament: Toujou Basara no Hard Sweet na Nichijou","english":"The Testament of Sister New Devil: Tojo Basara's Hard, Sweet Daily Life","native":"新妹魔王の契約者 東城刃更のハードスウィートな日常","synonyms":["Shinmai Maou no Keiyakusha OVA","The Testament of Sister New Devil OVA","Shinmai Maou no Keiyakusha: Toujou Basara no Hard Sweet na Nichijou"],"format":"OVA","episodes":1,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":6,"day":22},"status":"FINISHED"},{"index":23,"id":20566,"mal_id":26351,"title":"Nagato Yuki-chan no Shoushitsu","english":"The Disappearance of Nagato Yuki-chan","native":"長門有希ちゃんの消失","synonyms":["La Disparition de Yuki Nagato"],"format":"TV","episodes":16,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"},{"index":24,"id":21018,"mal_id":29589,"title":"Denpa Kyoushi","english":"Ultimate Otaku Teacher","native":"電波教師","synonyms":["He Is A Ultimate Teacher"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"year":2015,"month":4,"day":4},"status":"FINISHED"}],"jikan":[{"index":0,"id":28171,"mal_id":28171,"title":"Shokugeki no Souma","english":"Food Wars! Shokugeki no Soma","native":"食戟のソーマ","synonyms":["Shokugeki no Soma","Food Wars: Shokugeki no Soma"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"day":4,"month":4,"year":2015},"status":"Finished Airing"},{"index":1,"id":28121,"mal_id":28121,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?","native":"ダンジョンに出会いを求めるのは間違っているだろうか","synonyms":["DanMachi","Is It Wrong That I Want to Meet You in a Dungeon"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":4,"month":4,"year":2015},"status":"Finished Airing"},{"index":2,"id":26243,"mal_id":26243,"title":"Owari no Seraph","english":"Seraph of the End: Vampire Reign","native":"終わりのセラフ","synonyms":["Seraph of the End"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":4,"month":4,"year":2015},"status":"Finished Airing"},{"index":3,"id":23847,"mal_id":23847,"title":"Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku","english":"My Teen Romantic Comedy SNAFU TOO!","native":"やはり俺の青春ラブコメはまちがっている。続","synonyms":["Oregairu 2","My Teen Romantic Comedy SNAFU 2","Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season","Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":3,"month":4,"year":2015},"status":"Finished Airing"},{"index":4,"id":27775,"mal_id":27775,"title":"Plastic Memories","english":"Plastic Memories","native":"プラスティック・メモリーズ","synonyms":["Plamemo"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":5,"month":4,"year":2015},"status":"Finished Airing"},{"index":5,"id":24439,"mal_id":24439,"title":"Kekkai Sensen","english":"Blood Blockade Battlefront","native":"血界戦線","synonyms":["Bloodline Battlefront"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":5,"month":4,"year":2015},"status":"Finished Airing"},{"index":6,"id":28701,"mal_id":28701,"title":"Fate/stay night: Unlimited Blade Works 2nd Season","english":"Fate/stay night [Unlimited Blade Works] Season 2","native":"Fate/stay night [Unlimited Blade Works] 2nd シーズン","synonyms":["Fate/stay night (2015)","Fate - Stay Night"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":5,"month":4,"year":2015},"status":"Finished Airing"},{"index":7,"id":28677,"mal_id":28677,"title":"Yamada-kun to 7-nin no Majo","english":"Yamada-kun and the Seven Witches","native":"山田くんと7人の魔女","synonyms":["Yamada-kun to Nananin no Majo","Yamada-kun and the 7 Witches","Yamajo"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":12,"month":4,"year":2015},"status":"Finished Airing"},{"index":8,"id":24703,"mal_id":24703,"title":"High School DxD BorN","english":"High School DxD BorN","native":"ハイスクールD×D BorN","synonyms":["High School DxD Third Season","High School DxD 3rd Season","Highschool DxD BorN"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":4,"month":4,"year":2015},"status":"Finished Airing"},{"index":9,"id":27787,"mal_id":27787,"title":"Nisekoi:","english":"Nisekoi: False Love Season 2","native":"ニセコイ","synonyms":["Nisekoi 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":10,"month":4,"year":2015},"status":"Finished Airing"},{"index":10,"id":28297,"mal_id":28297,"title":"Ore Monogatari!!","english":"My Love Story!!","native":"俺物語!!","synonyms":["Ore Monogatari!!","My Story!!"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"day":9,"month":4,"year":2015},"status":"Finished Airing"},{"index":11,"id":28977,"mal_id":28977,"title":"Gintama°","english":"Gintama Season 4","native":"銀魂°","synonyms":["Gintama' (2015)"],"format":"TV","episodes":51,"season":"SPRING","year":2015,"start_date":{"day":8,"month":4,"year":2015},"status":"Finished Airing"},{"index":12,"id":27989,"mal_id":27989,"title":"Hibike! Euphonium","english":"Sound! Euphonium","native":"響け!ユーフォニアム","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":8,"month":4,"year":2015},"status":"Finished Airing"},{"index":13,"id":29095,"mal_id":29095,"title":"Grisaia no Rakuen","english":"The Eden of Grisaia","native":"グリザイアの楽園","synonyms":["Le Eden de la Grisaia"],"format":"TV","episodes":10,"season":"SPRING","year":2015,"start_date":{"day":19,"month":4,"year":2015},"status":"Finished Airing"},{"index":14,"id":28249,"mal_id":28249,"title":"Arslan Senki (TV)","english":"The Heroic Legend of Arslan","native":"アルスラーン戦記","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2015,"start_date":{"day":5,"month":4,"year":2015},"status":"Finished Airing"},{"index":15,"id":28675,"mal_id":28675,"title":"Kyoukai no Kanata Movie 2: I'll Be Here - Mirai-hen","english":"Beyond the Boundary: I'll Be Here - Future","native":"劇場版 境界の彼方 I'LL BE HERE 未来篇","synonyms":["Beyond the Boundary Movie","Kyokai no Kanata Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":4,"year":2015},"status":"Finished Airing"},{"index":16,"id":29093,"mal_id":29093,"title":"Grisaia no Meikyuu: Caprice no Mayu 0","english":"The Labyrinth of Grisaia: The Cocoon of Caprice 0","native":"グリザイアの迷宮 カプリスの繭0","synonyms":["Le Labyrinthe de la Grisaia"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":4,"year":2015},"status":"Finished Airing"},{"index":17,"id":28617,"mal_id":28617,"title":"Punch Line","english":"Punch Line","native":"パンチライン","synonyms":["Punchline"],"format":"TV","episodes":12,"season":"SPRING","year":2015,"start_date":{"day":10,"month":4,"year":2015},"status":"Finished Airing"},{"index":18,"id":29067,"mal_id":29067,"title":"Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me","english":"I Can't Understand What My Husband Is Saying: 2nd Thread","native":"旦那が何を言っているかわからない件2スレ目","synonyms":["Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season","I Can't Understand What My Husband Is Saying Second Season"],"format":"TV","episodes":13,"season":"SPRING","year":2015,"start_date":{"day":3,"month":4,"year":2015},"status":"Finished Airing"},{"index":19,"id":25389,"mal_id":25389,"title":"Dragon Ball Z Movie 15: Fukkatsu no \"F\"","english":"Dragon Ball Z: Resurrection 'F'","native":"ドラゴンボールZ 復活の「F」","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":4,"year":2015},"status":"Finished Airing"},{"index":20,"id":30347,"mal_id":30347,"title":"Nanatsu no Taizai OVA","english":"The Seven Deadly Sins: Ban's Side Story OVA","native":"七つの大罪","synonyms":["Nanatsu no Taizai: Ban no Bangai-hen","The Seven Deadly Sins: Ban's Side Story","The Seven Deadly Sins: Bandit Ban OVA 1"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":17,"month":6,"year":2015},"status":"Finished Airing"},{"index":21,"id":26443,"mal_id":26443,"title":"Triage X","english":"Triage X","native":"トリアージX","synonyms":[],"format":"TV","episodes":10,"season":"SPRING","year":2015,"start_date":{"day":9,"month":4,"year":2015},"status":"Finished Airing"},{"index":22,"id":29589,"mal_id":29589,"title":"Denpa Kyoushi","english":"Ultimate Otaku Teacher","native":"電波教師","synonyms":["He Is an Ultimate Teacher"],"format":"TV","episodes":24,"season":"SPRING","year":2015,"start_date":{"day":4,"month":4,"year":2015},"status":"Finished Airing"},{"index":23,"id":23777,"mal_id":23777,"title":"Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa","english":"Attack on Titan: Wings of Freedom","native":"劇場版「進撃の巨人」後編~自由の翼~","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":27,"month":6,"year":2015},"status":"Finished Airing"},{"index":24,"id":30230,"mal_id":30230,"title":"Diamond no Ace: Second Season","english":"Ace of Diamond: Second Season","native":"ダイヤのA[エース]~Second Season~","synonyms":["Daiya no Ace: Second Season","Ace of the Diamond: 2nd Season"],"format":"TV","episodes":51,"season":"SPRING","year":2015,"start_date":{"day":6,"month":4,"year":2015},"status":"Finished Airing"}]},{"year":2017,"season":"spring","anilist":[{"index":0,"id":20958,"mal_id":25777,"title":"Shingeki no Kyojin Season 2","english":"Attack on Titan Season 2","native":"進撃の巨人 Season2","synonyms":["SnK 2","AoT 2","+מתקפת הטיטאנים עונה 2","L'Attacco dei Giganti 2","L'Attacco dei Giganti - Seconda Stagione","ผ่าพิภพไททัน ภาค 2","حمله به تایتان فصل 2","Атака титанов 2"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":1},"status":"FINISHED"},{"index":1,"id":21856,"mal_id":33486,"title":"Boku no Hero Academia 2","english":"My Hero Academia Season 2","native":"僕のヒーローアカデミア2","synonyms":["BNHA 2","MHA 2","나의 히어로 아카데미아 2기","나히아 2기","我的英雄学院 2","我的英雄学院第二季","มายฮีโร่ อคาเดเมีย ภาค 2","أكاديميتي للأبطال2","Моя геройская академия 2"],"format":"TV","episodes":25,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":1},"status":"FINISHED"},{"index":2,"id":97938,"mal_id":34566,"title":"BORUTO: NARUTO NEXT GENERATIONS","english":"Boruto: Naruto Next Generations","native":"BORUTO-ボルト- NARUTO NEXT GENERATIONS","synonyms":["博人传 火影忍者新时代","โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น","بوروتو: الأجيال القادمة من ناروتو"],"format":"TV","episodes":293,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":5},"status":"FINISHED"},{"index":3,"id":21700,"mal_id":32951,"title":"Rokudenashi Majutsu Koushi to Akashic Records","english":"Akashic Records of Bastard Magic Instructor","native":"ロクでなし魔術講師と禁忌教典(アカシックレコード)","synonyms":["RokuAka","อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ","不正經的魔術講師與禁忌教典"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":4},"status":"FINISHED"},{"index":4,"id":21685,"mal_id":32901,"title":"Eromanga Sensei","english":"Eromanga Sensei","native":"エロマンガ先生","synonyms":["Ero Manga Sensei","情色漫画老师","น้องสาวของผมคืออาจารย์เอโรมังงะ","埃罗芒阿老师"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":9},"status":"FINISHED"},{"index":5,"id":98202,"mal_id":34822,"title":"Tsuki ga Kirei","english":"Tsukigakirei","native":"月がきれい","synonyms":["as the moon, so beautiful."],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":7},"status":"FINISHED"},{"index":6,"id":97980,"mal_id":34561,"title":"Re:CREATORS","english":"Re:CREATORS","native":"Re:CREATORS","synonyms":["レクリエイターズ","Re:CRIADORES"],"format":"TV","episodes":22,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":8},"status":"FINISHED"},{"index":7,"id":21860,"mal_id":33502,"title":"Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?","english":"WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?","native":"終末なにしてますか? 忙しいですか? 救ってもらっていいですか?","synonyms":["Do you have what THE END? Are you busy? Shall you save xxx?","Sukasuka","末日时在做什么?有没有空?可以来拯救吗?","WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?","Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?","เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม","Конец человечества. Что ты будешь делать после того, как людей не стало?"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":11},"status":"FINISHED"},{"index":8,"id":21180,"mal_id":30727,"title":"Saenai Heroine no Sodatekata ♭","english":"Saekano: How to Raise a Boring Girlfriend ♭","native":"冴えない彼女の育てかた ♭","synonyms":["Saekano 2","Saekano ♭","Saekano Flat","Saenai Heroine no Sodatekata 2","Saenai Heroine no Sodatekata Flat","วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2","Saekano: How to Raise a Boring Girlfriend Flat","Saekano Cómo criar a una novia aburrida"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":6},"status":"FINISHED"},{"index":9,"id":21851,"mal_id":33475,"title":"Busou Shoujo Machiavellianism","english":"Armed Girl's Machiavellism","native":"武装少女マキャヴェリズム","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":5},"status":"FINISHED"},{"index":10,"id":21676,"mal_id":32887,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria","english":"Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side","native":"ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア","synonyms":["Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria","Danmachi Sword Oratoria","¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":15},"status":"FINISHED"},{"index":11,"id":21517,"mal_id":32262,"title":"Renai Boukun","english":"Love Tyrant","native":"恋愛暴君","synonyms":["The very lovely tyrant of love♥"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":7},"status":"FINISHED"},{"index":12,"id":21377,"mal_id":31658,"title":"Kuroko no Basket: Last Game","english":"Kuroko's Basketball: Last Game","native":"劇場版 黒子のバスケ Last Game","synonyms":["Kuroko no Basket: EXTRA GAME","Το Μπάσκετ του Κουρόκο: Το Τελευταίο Παιχνίδι"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":3,"day":18},"status":"FINISHED"},{"index":13,"id":97682,"mal_id":34176,"title":"Zero kara Hajimeru Mahou no Sho","english":"Grimoire of Zero","native":"ゼロから始める魔法の書","synonyms":["ปฐมมนตรา ตำราพลิกโลก","Grymuar Zero","El mágico libro de Zero","从零开始的魔法书","제로부터 시작하는 마법의 서"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":10},"status":"FINISHED"},{"index":14,"id":87486,"mal_id":33929,"title":"Boku no Hero Academia: Sukue! Kyuujo Kunren!","english":null,"native":"僕のヒーローアカデミア救え!救助訓練!","synonyms":["Boku no Hero Academia: Jump Festa 2016 Special","My Hero Academia: Rescue! Rescue Training","My Hero Academia: Save! Rescue Training"],"format":"OVA","episodes":1,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":4},"status":"FINISHED"},{"index":15,"id":97625,"mal_id":34019,"title":"Tsugumomo","english":"Tsugumomo","native":"つぐもも","synonyms":["สึกุโมโมะ ภูตสาวแสบดุ"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":2},"status":"FINISHED"},{"index":16,"id":98702,"mal_id":34480,"title":"Shokugeki no Souma: Ni no Sara OVA","english":"Food Wars! The Second Plate OVA","native":"食戟のソーマ 弍ノ皿 OVA","synonyms":["Food Wars! The Second Plate: A Fateful Encounter Under the Autumn Moon","Food Wars! The Second Plate: The Totsuki Elite Ten","ยอดนักปรุงโซมะ ภาค 2 OVA"],"format":"OVA","episodes":2,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":5,"day":1},"status":"FINISHED"},{"index":17,"id":21184,"mal_id":30736,"title":"Shingeki no Bahamut: VIRGIN SOUL","english":"Rage of Bahamut: Virgin Soul","native":"神撃のバハムート VIRGIN SOUL","synonyms":["BahaSoul"],"format":"TV","episodes":24,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":8},"status":"FINISHED"},{"index":18,"id":21684,"mal_id":32900,"title":"Mahouka Koukou no Rettousei: Hoshi wo Yobu Shoujo","english":"The Irregular at Magic High School The Movie: The Girl Who Summons the Stars","native":"劇場版 魔法科高校の劣等生 星を呼ぶ少女","synonyms":["พี่น้องปริศนาโรงเรียนมหาเวท เดอะมูฟวี่","Непутёвый ученик в школе магии: Взывающая к звёздам"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":6,"day":17},"status":"FINISHED"},{"index":19,"id":97917,"mal_id":34537,"title":"Yoru wa Mijikashi Arukeyo Otome","english":"The Night is Short, Walk on Girl","native":"夜は短し歩けよ乙女","synonyms":["春宵苦短,少女前进吧!"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":7},"status":"FINISHED"},{"index":20,"id":97903,"mal_id":34494,"title":"Sakura Quest","english":"Sakura Quest","native":"サクラクエスト","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":6},"status":"FINISHED"},{"index":21,"id":21361,"mal_id":31629,"title":"GRANBLUE FANTASY The Animation","english":"Granblue Fantasy: The Animation","native":"GRANBLUE FANTASY The Animation","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":2},"status":"FINISHED"},{"index":22,"id":21191,"mal_id":30778,"title":"FAIRY TAIL: DRAGON CRY","english":"Fairy Tail: Dragon Cry","native":"劇場版 FAIRY TAIL -DRAGON CRY-","synonyms":["Fairy Tail Movie 2: Dragon Cry","Fairy Tail the Movie: Dragon Cry"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":5,"day":6},"status":"FINISHED"},{"index":23,"id":20705,"mal_id":33834,"title":"sin: Nanatsu no Taizai","english":"Seven Mortal Sins","native":"sin 七つの大罪","synonyms":["Sin: The 7 Deadly Sins"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":15},"status":"FINISHED"},{"index":24,"id":97643,"mal_id":34055,"title":"Berserk 2","english":"Berserk 2","native":"ベルセルク 2","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"year":2017,"month":4,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":25777,"mal_id":25777,"title":"Shingeki no Kyojin Season 2","english":"Attack on Titan Season 2","native":"進撃の巨人 Season2","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":1,"month":4,"year":2017},"status":"Finished Airing"},{"index":1,"id":33486,"mal_id":33486,"title":"Boku no Hero Academia 2nd Season","english":"My Hero Academia Season 2","native":"僕のヒーローアカデミア","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2017,"start_date":{"day":1,"month":4,"year":2017},"status":"Finished Airing"},{"index":2,"id":34566,"mal_id":34566,"title":"Boruto: Naruto Next Generations","english":"Boruto: Naruto Next Generations","native":"BORUTO -NARUTO NEXT GENERATIONS-","synonyms":[],"format":"TV","episodes":293,"season":"SPRING","year":2017,"start_date":{"day":5,"month":4,"year":2017},"status":"Finished Airing"},{"index":3,"id":32951,"mal_id":32951,"title":"Rokudenashi Majutsu Koushi to Akashic Records","english":"Akashic Records of Bastard Magic Instructor","native":"ロクでなし魔術講師と禁忌教典","synonyms":["RokuAka"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":4,"month":4,"year":2017},"status":"Finished Airing"},{"index":4,"id":32901,"mal_id":32901,"title":"Eromanga-sensei","english":"Eromanga Sensei","native":"エロマンガ先生","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":9,"month":4,"year":2017},"status":"Finished Airing"},{"index":5,"id":34822,"mal_id":34822,"title":"Tsuki ga Kirei","english":"Tsukigakirei","native":"月がきれい","synonyms":["The Moon is Beautiful","As the Moon","So Beautiful"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":7,"month":4,"year":2017},"status":"Finished Airing"},{"index":6,"id":34561,"mal_id":34561,"title":"Re:Creators","english":"Re:CREATORS","native":"Re:CREATORS 〈レクリエイターズ〉","synonyms":[],"format":"TV","episodes":22,"season":"SPRING","year":2017,"start_date":{"day":8,"month":4,"year":2017},"status":"Finished Airing"},{"index":7,"id":32887,"mal_id":32887,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria","english":"Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side","native":"ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア","synonyms":["Danmachi Sword Oratoria"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":15,"month":4,"year":2017},"status":"Finished Airing"},{"index":8,"id":33502,"mal_id":33502,"title":"Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?","english":"WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?","native":"終末なにしてますか?忙しいですか?救ってもらっていいですか?","synonyms":["SukaSuka","What are you doing at the end? Are you busy? Can you save me?"],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":11,"month":4,"year":2017},"status":"Finished Airing"},{"index":9,"id":33475,"mal_id":33475,"title":"Busou Shoujo Machiavellianism","english":"Armed Girl's Machiavellism","native":"武装少女マキャヴェリズム","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":5,"month":4,"year":2017},"status":"Finished Airing"},{"index":10,"id":30727,"mal_id":30727,"title":"Saenai Heroine no Sodatekata ♭","english":"Saekano: How to Raise a Boring Girlfriend .flat","native":"冴えない彼女〈ヒロイン〉の育てかた♭","synonyms":["Saenai Heroine no Sodatekata Flat"],"format":"TV","episodes":11,"season":"SPRING","year":2017,"start_date":{"day":14,"month":4,"year":2017},"status":"Finished Airing"},{"index":11,"id":32262,"mal_id":32262,"title":"Renai Boukun","english":"Love Tyrant","native":"恋愛暴君","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":7,"month":4,"year":2017},"status":"Finished Airing"},{"index":12,"id":33926,"mal_id":33926,"title":"Quanzhi Gaoshou","english":"The King's Avatar","native":"全职高手","synonyms":["Quan Zhi Gao Shou","Full-Time Expert","Expert of All Classes","マスターオブスキル"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":7,"month":4,"year":2017},"status":"Finished Airing"},{"index":13,"id":34176,"mal_id":34176,"title":"Zero kara Hajimeru Mahou no Sho","english":"Grimoire of Zero","native":"ゼロから始める魔法の書","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":10,"month":4,"year":2017},"status":"Finished Airing"},{"index":14,"id":30736,"mal_id":30736,"title":"Shingeki no Bahamut: Virgin Soul","english":"Rage of Bahamut: Virgin Soul","native":"神撃のバハムート VIRGIN SOUL","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2017,"start_date":{"day":8,"month":4,"year":2017},"status":"Finished Airing"},{"index":15,"id":34019,"mal_id":34019,"title":"Tsugumomo","english":"Tsugumomo","native":"つぐもも","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":2,"month":4,"year":2017},"status":"Finished Airing"},{"index":16,"id":31629,"mal_id":31629,"title":"Granblue Fantasy The Animation","english":"Granblue Fantasy: The Animation","native":"GRANBLUE FANTASY The Animation","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2017,"start_date":{"day":2,"month":4,"year":2017},"status":"Finished Airing"},{"index":17,"id":35459,"mal_id":35459,"title":"Boku no Hero Academia: Training of the Dead","english":"My Hero Academia: Training of the Dead","native":"僕のヒーローアカデミア トレーニング・オブ・ザ・デッド","synonyms":[],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":6,"year":2017},"status":"Finished Airing"},{"index":18,"id":34055,"mal_id":34055,"title":"Berserk 2nd Season","english":"Berserk: Season II","native":"ベルセルク","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":7,"month":4,"year":2017},"status":"Finished Airing"},{"index":19,"id":30778,"mal_id":30778,"title":"Fairy Tail Movie 2: Dragon Cry","english":"Fairy Tail the Movie 2: Dragon Cry","native":"劇場版 FAIRY TAIL 『DRAGON CRY』","synonyms":["Gekijouban Fairy Tail: Dragon Cry"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":5,"year":2017},"status":"Finished Airing"},{"index":20,"id":34591,"mal_id":34591,"title":"Natsume Yuujinchou Roku","english":"Natsume's Book of Friends Season 6","native":"夏目友人帳 陸","synonyms":["Natsume Yuujinchou Season 6","Natsume's Book of Friends Six"],"format":"TV","episodes":11,"season":"SPRING","year":2017,"start_date":{"day":12,"month":4,"year":2017},"status":"Finished Airing"},{"index":21,"id":32900,"mal_id":32900,"title":"Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo","english":"The Irregular at Magic High School The Movie - The Girl Who Summons The Stars","native":"劇場版 魔法科高校の劣等生 星を呼ぶ少女","synonyms":["Gekijouban Mahouka Koukou no Rettousei"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":6,"year":2017},"status":"Finished Airing"},{"index":22,"id":33929,"mal_id":33929,"title":"Boku no Hero Academia: Sukue! Kyuujo Kunren!","english":"My Hero Academia: Rescue! Rescue Training","native":"僕のヒーローアカデミア救え!救助訓練!","synonyms":["Boku no Hero Academia Jump Festa 2016 Special"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":4,"year":2017},"status":"Finished Airing"},{"index":23,"id":34480,"mal_id":34480,"title":"Shokugeki no Souma: Ni no Sara OVA","english":"Food Wars! The Second Plate OVA","native":"食戟のソーマ 弍ノ皿","synonyms":["Shokugeki no Souma: Ni no Sara - Jump Festa 2016 Special","Shokugeki no Soma: Ni no Sara OVA","Shokugeki no Souma 2nd Season OVA"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":1,"month":5,"year":2017},"status":"Finished Airing"},{"index":24,"id":33834,"mal_id":33834,"title":"Sin: Nanatsu no Taizai","english":"Seven Mortal Sins","native":"sin 七つの大罪","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2017,"start_date":{"day":15,"month":4,"year":2017},"status":"Finished Airing"}]},{"year":2019,"season":"spring","anilist":[{"index":0,"id":101922,"mal_id":38000,"title":"Kimetsu no Yaiba","english":"Demon Slayer: Kimetsu no Yaiba","native":"鬼滅の刃","synonyms":["KnY","Kimetsu no Yaiba: Kyoudai no Kizuna","Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings","鬼滅の刃-兄妹の絆-","鬼灭之刃","הלהב קוטל השדים","قاتل الشياطين","ดาบพิฆาตอสูร","Miecz zabójcy demonów – Kimetsu no Yaiba"," Guardians de la nit: Kimetsu no Yaiba","İblis Keser","ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA","Zabiják démonů","شیطان کش","귀멸의 칼날","Истребитель демонов","Клинок, рассекающий демонов"],"format":"TV","episodes":26,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":6},"status":"FINISHED"},{"index":1,"id":104578,"mal_id":38524,"title":"Shingeki no Kyojin Season 3 Part 2","english":"Attack on Titan Season 3 Part 2","native":"進撃の巨人 Season3 Part.2","synonyms":["SnK 3","AoT 3","Shingeki no Kyojin Season 3 (2019)","L'Attaco dei Giganti 3 Parte 2","L'Attacco dei Giganti - Terza Stagione Parte 2","מתקפת הטיטאנים עונה 3 חלק 2","L'Attaque des Titans Saison 3 Partie 2 ","ผ่าพิภพไททัน ภาค 3 Part 2","ผ่าพิภพไททัน ภาค 3 พาร์ท 2","حمله به تایتان فصل 3"],"format":"TV","episodes":10,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":29},"status":"FINISHED"},{"index":2,"id":97668,"mal_id":34134,"title":"One Punch Man 2","english":"One-Punch Man Season 2","native":"ワンパンマン 2","synonyms":["OPM2","Wanpanman 2","مرد تک مشتی","วันพันช์แมน ภาคที่ 2","One-Punch Man Phần 2","一拳超人 第二季","Jagoan Sekali Pukul S2","ون بنش مان 2","رجل اللكمة الواحدة 2"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":10},"status":"FINISHED"},{"index":3,"id":105334,"mal_id":38680,"title":"Fruits Basket: 1st Season","english":"Fruits Basket (2019)","native":"フルーツバスケット 1st Season","synonyms":["Fruits Basket (Zenpen)","Furuba","Fruba","フルバ","水果篮子(第一季)","水果篮子(2019)","เสน่ห์สาวข้าวปั้น","Корзинка фруктов"],"format":"TV","episodes":25,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":6},"status":"FINISHED"},{"index":4,"id":104157,"mal_id":38329,"title":"Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai","english":"Rascal Does Not Dream of a Dreaming Girl","native":"青春ブタ野郎はゆめみる少女の夢を見ない","synonyms":["青ブタ","Ao Buta ","青春猪头少年不会梦到怀梦美少女","Этот глупый свин не понимает мечту девочки-зайки. Фильм","Негодник, которому не снилась девушка-кролик. Фильм"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":6,"day":15},"status":"FINISHED"},{"index":5,"id":103223,"mal_id":38003,"title":"Bungou Stray Dogs 3rd Season","english":"Bungo Stray Dogs 3","native":"文豪ストレイドッグス 第3シーズン","synonyms":["Bungou Stray Dogs (2019)","BSD 3","BungouSD 3","คณะประพันธกรจรจัด ภาค 3","文豪野犬 第三季"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":12},"status":"FINISHED"},{"index":6,"id":100112,"mal_id":36407,"title":"Kenja no Mago","english":"Wise Man’s Grandchild","native":"賢者の孫","synonyms":["The Wise Grandson","The Sage's Grandson","Philosopher's Grandson","Magi's Grandson","หลานจอมปราชญ์"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":10},"status":"FINISHED"},{"index":7,"id":103900,"mal_id":38186,"title":"Bokutachi wa Benkyou ga Dekinai","english":"We Never Learn: BOKUBEN","native":"ぼくたちは勉強ができない","synonyms":["BokuBen","We Can't Study","Boku-tachi wa Benkyou ga Dekinai","เรื่องนี้ตําราไม่มีสอน "],"format":"TV","episodes":13,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":7},"status":"FINISHED"},{"index":8,"id":99425,"mal_id":35848,"title":"Promare","english":"Promare","native":"プロメア","synonyms":["普罗米亚","Промар"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":5,"day":24},"status":"FINISHED"},{"index":9,"id":105914,"mal_id":38759,"title":"Sewayaki Kitsune no Senko-san","english":"The Helpful Fox Senko-san","native":"世話やきキツネの仙狐さん","synonyms":["贤惠幼妻仙狐小姐"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":10},"status":"FINISHED"},{"index":10,"id":104325,"mal_id":38397,"title":"Nande Koko ni Sensei ga!?","english":"Why the hell are you here, Teacher!?","native":"なんでここに先生が!?","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":8},"status":"FINISHED"},{"index":11,"id":104454,"mal_id":38472,"title":"Isekai Quartet","english":"Isekai Quartet","native":"異世界かるてっと","synonyms":["Квартет попаданцев"],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":10},"status":"FINISHED"},{"index":12,"id":101281,"mal_id":37435,"title":"Carole & Tuesday","english":"Carole & Tuesday","native":"キャロル&チューズデイ","synonyms":["C&T","Carole y Tuesday","عشق الموسيقى","แครอลกับทูสเดย์"],"format":"TV","episodes":24,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":10},"status":"FINISHED"},{"index":13,"id":103302,"mal_id":38080,"title":"Kono Oto Tomare!","english":"Kono Oto Tomare!: Sounds of Life","native":"この音とまれ!","synonyms":["Stop at this Sound!","ฝากฝันไว้ที่เสียงโคโตะ!"],"format":"TV","episodes":13,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":7},"status":"FINISHED"},{"index":14,"id":105018,"mal_id":38594,"title":"Kimi to, Nami ni Noretara","english":"Ride Your Wave","native":"きみと、波にのれたら","synonyms":["El amor está en el agua","Піймай свою хвилю","На твоей волне","Mėgaukis savo banga","Uz tava viļņa","Сенің толқыныңда","Sənin dalğanda"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":6,"day":21},"status":"FINISHED"},{"index":15,"id":105989,"mal_id":38778,"title":"Midara na Ao-chan wa Benkyou ga Dekinai","english":"Ao-chan Can't Study!","native":"淫らな青ちゃんは勉強ができない","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":6},"status":"FINISHED"},{"index":16,"id":101386,"mal_id":37614,"title":"Hitoribocchi no ○○ Seikatsu","english":"Hitoribocchi no Marumaruseikatsu","native":"ひとりぼっちの○○生活","synonyms":["Hitoribocchi","Bocchi Seikatsu","一个人的○○小日子","Hitoribocchi no Marumaru Seikatsu"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":6},"status":"FINISHED"},{"index":17,"id":104217,"mal_id":38349,"title":"Wotaku ni Koi wa Muzukashii OVA","english":null,"native":"ヲタクに恋は難しい OVA","synonyms":["WotaKoi","Wotaku ni Koi wa Muzukashii: Youth","Wotakoi: Love is Hard for Otaku OVA","WotaKoi: Sore wa, ikinari otozureta=koi","ヲタ恋: それは、いきなりおとづれた=恋","ヲタクに恋は難しい OAD"],"format":"OVA","episodes":3,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":3,"day":29},"status":"FINISHED"},{"index":18,"id":106051,"mal_id":38787,"title":"Senryuu Shoujo","english":"Senryu Girl","native":"川柳少女","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":6},"status":"FINISHED"},{"index":19,"id":103221,"mal_id":37981,"title":"Kaijuu no Kodomo","english":"Children of the Sea","native":"海獣の子供","synonyms":["Los Niños del Mar","Les enfants de la Mer","海兽之子","Дети моря","I figli del mare","Dzieci morza"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":6,"day":7},"status":"FINISHED"},{"index":20,"id":101261,"mal_id":37426,"title":"Sarazanmai","english":"Sarazanmai","native":"さらざんまい","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":12},"status":"FINISHED"},{"index":21,"id":106967,"mal_id":38935,"title":"Miru Tights","english":null,"native":"みるタイツ","synonyms":["絲襪視界","丝袜视界"],"format":"ONA","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":5,"day":11},"status":"FINISHED"},{"index":22,"id":97918,"mal_id":34544,"title":"Koutetsujou no Kabaneri: Unato Kessen","english":"Kabaneri of the Iron Fortress: The Battle of Unato","native":"甲鉄城のカバネリ 〜海門決戦〜","synonyms":["Kabaneri de la Fortaleza de Hierro: La Batalla de Unato","Kabaneri da Fortaleza de Ferro: A Batalha de Unato","حماة الحصون المنيعة: معركة الحصن المهجور","Les Kabaneri de la Forteresse de fer : la bataille d'Unato"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":5,"day":10},"status":"FINISHED"},{"index":23,"id":97995,"mal_id":34620,"title":"Kono Yo no Hate de Koi wo Utau Shoujo YU-NO","english":"YU-NO: A Girl Who Chants Love at the Bound of This World","native":"この世の果てで恋を唄う少女YU-NO","synonyms":["YU-NO: A girl who chants love at the bound of this world."],"format":"TV","episodes":26,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":2},"status":"FINISHED"},{"index":24,"id":107418,"mal_id":39063,"title":"Fairy Gone","english":"Fairy gone","native":"フェアリーゴーン","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"year":2019,"month":4,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":38000,"mal_id":38000,"title":"Kimetsu no Yaiba","english":"Demon Slayer: Kimetsu no Yaiba","native":"鬼滅の刃","synonyms":["Blade of Demon Destruction"],"format":"TV","episodes":26,"season":"SPRING","year":2019,"start_date":{"day":6,"month":4,"year":2019},"status":"Finished Airing"},{"index":1,"id":38524,"mal_id":38524,"title":"Shingeki no Kyojin Season 3 Part 2","english":"Attack on Titan Season 3 Part 2","native":"進撃の巨人 Season3 Part.2","synonyms":[],"format":"TV","episodes":10,"season":"SPRING","year":2019,"start_date":{"day":29,"month":4,"year":2019},"status":"Finished Airing"},{"index":2,"id":34134,"mal_id":34134,"title":"One Punch Man 2nd Season","english":"One-Punch Man Season 2","native":"ワンパンマン 2期","synonyms":["One Punch-Man 2","One-Punch Man 2","OPM 2"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":10,"month":4,"year":2019},"status":"Finished Airing"},{"index":3,"id":38680,"mal_id":38680,"title":"Fruits Basket 1st Season","english":"Fruits Basket 1st Season","native":"フルーツバスケット","synonyms":["Furuba","Fruits Basket (Zenpen)"],"format":"TV","episodes":25,"season":"SPRING","year":2019,"start_date":{"day":6,"month":4,"year":2019},"status":"Finished Airing"},{"index":4,"id":38329,"mal_id":38329,"title":"Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai","english":"Rascal Does Not Dream of a Dreaming Girl","native":"青春ブタ野郎はゆめみる少女の夢を見ない","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":6,"year":2019},"status":"Finished Airing"},{"index":5,"id":38003,"mal_id":38003,"title":"Bungou Stray Dogs 3rd Season","english":"Bungo Stray Dogs 3","native":"文豪ストレイドッグス 第3期","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":12,"month":4,"year":2019},"status":"Finished Airing"},{"index":6,"id":36407,"mal_id":36407,"title":"Kenja no Mago","english":"Wise Man's Grandchild","native":"賢者の孫","synonyms":["Philosopher's Grandson","Magi's Grandson"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":10,"month":4,"year":2019},"status":"Finished Airing"},{"index":7,"id":38186,"mal_id":38186,"title":"Bokutachi wa Benkyou ga Dekinai","english":"We Never Learn: BOKUBEN","native":"ぼくたちは勉強ができない","synonyms":["BokuBen","We Can't Study"],"format":"TV","episodes":13,"season":"SPRING","year":2019,"start_date":{"day":7,"month":4,"year":2019},"status":"Finished Airing"},{"index":8,"id":38472,"mal_id":38472,"title":"Isekai Quartet","english":"Isekai Quartet","native":"異世界かるてっと","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":10,"month":4,"year":2019},"status":"Finished Airing"},{"index":9,"id":38397,"mal_id":38397,"title":"Nande Koko ni Sensei ga!?","english":"Why the Hell are You Here, Teacher!?","native":"なんでここに先生が!?","synonyms":["Nankoko"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":8,"month":4,"year":2019},"status":"Finished Airing"},{"index":10,"id":38759,"mal_id":38759,"title":"Sewayaki Kitsune no Senko-san","english":"The Helpful Fox Senko-san","native":"世話やきキツネの仙狐さん","synonyms":["Meddlesome Kitsune Senko-san"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":10,"month":4,"year":2019},"status":"Finished Airing"},{"index":11,"id":37435,"mal_id":37435,"title":"Carole & Tuesday","english":"Carole & Tuesday","native":"キャロル&チューズデイ","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2019,"start_date":{"day":11,"month":4,"year":2019},"status":"Finished Airing"},{"index":12,"id":38080,"mal_id":38080,"title":"Kono Oto Tomare!","english":"Kono Oto Tomare!: Sounds of Life","native":"この音とまれ!","synonyms":["Stop This Sound!"],"format":"TV","episodes":13,"season":"SPRING","year":2019,"start_date":{"day":7,"month":4,"year":2019},"status":"Finished Airing"},{"index":13,"id":38778,"mal_id":38778,"title":"Midara na Ao-chan wa Benkyou ga Dekinai","english":"Ao-chan Can't Study!","native":"淫らな青ちゃんは勉強ができない","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":6,"month":4,"year":2019},"status":"Finished Airing"},{"index":14,"id":35848,"mal_id":35848,"title":"Promare","english":"Promare","native":"PROMARE(プロメア)","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":5,"year":2019},"status":"Finished Airing"},{"index":15,"id":38594,"mal_id":38594,"title":"Kimi to, Nami ni Noretara","english":"Ride Your Wave","native":"きみと、波にのれたら","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":6,"year":2019},"status":"Finished Airing"},{"index":16,"id":36999,"mal_id":36999,"title":"Zoku Owarimonogatari","english":null,"native":"続・終物語","synonyms":[],"format":"TV","episodes":6,"season":"SPRING","year":2019,"start_date":{"day":19,"month":5,"year":2019},"status":"Finished Airing"},{"index":17,"id":37614,"mal_id":37614,"title":"Hitoribocchi no Marumaru Seikatsu","english":null,"native":"ひとりぼっちの○○生活","synonyms":["Hitoribocchi no ○○ Seikatsu","Hitori Bocchi's ○○ Lifestyle"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":6,"month":4,"year":2019},"status":"Finished Airing"},{"index":18,"id":38787,"mal_id":38787,"title":"Senryuu Shoujo","english":"Senryu Girl","native":"川柳少女","synonyms":["Senryuu Girl"],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":6,"month":4,"year":2019},"status":"Finished Airing"},{"index":19,"id":34620,"mal_id":34620,"title":"Kono Yo no Hate de Koi wo Utau Shoujo YU-NO","english":"YU-NO: A Girl Who Chants Love at the Bound of This World","native":"この世の果てで恋を唄う少女YU-NO","synonyms":["Yuno"],"format":"TV","episodes":26,"season":"SPRING","year":2019,"start_date":{"day":2,"month":4,"year":2019},"status":"Finished Airing"},{"index":20,"id":39063,"mal_id":39063,"title":"Fairy Gone","english":"Fairy Gone","native":"Fairy gone フェアリーゴーン","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2019,"start_date":{"day":8,"month":4,"year":2019},"status":"Finished Airing"},{"index":21,"id":37806,"mal_id":37806,"title":"Gunjou no Magmell","english":"Ultramarine Magmell","native":"群青のマグメル","synonyms":["Magmel of the Sea Blue"],"format":"TV","episodes":13,"season":"SPRING","year":2019,"start_date":{"day":7,"month":4,"year":2019},"status":"Finished Airing"},{"index":22,"id":34544,"mal_id":34544,"title":"Koutetsujou no Kabaneri Movie 3: Unato Kessen","english":"Kabaneri of the Iron Fortress: The Battle of Unato","native":"甲鉄城のカバネリ~海門決戦~","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":10,"month":5,"year":2019},"status":"Finished Airing"},{"index":23,"id":38735,"mal_id":38735,"title":"7 Seeds","english":"7 Seeds","native":"7SEEDS","synonyms":["Seven Seeds"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":28,"month":6,"year":2019},"status":"Finished Airing"},{"index":24,"id":37426,"mal_id":37426,"title":"Sarazanmai","english":"Sarazanmai","native":"さらざんまい","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2019,"start_date":{"day":12,"month":4,"year":2019},"status":"Finished Airing"}]},{"year":2021,"season":"spring","anilist":[{"index":0,"id":120120,"mal_id":42249,"title":"Tokyo Revengers","english":"Tokyo Revengers","native":"東京リベンジャーズ","synonyms":["重生之道","โตเกียวรีเวนเจอร์ส","โตเกียว卍รีเวนเจอร์ส","东京复仇者","נוקמי טוקיו","Токийские мстители"],"format":"TV","episodes":24,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":11},"status":"FINISHED"},{"index":1,"id":117193,"mal_id":41587,"title":"Boku no Hero Academia 5","english":"My Hero Academia Season 5","native":"僕のヒーローアカデミア5","synonyms":["BNHA 5","MHA 5","我的英雄学院 5","我的英雄学院第五季","มายฮีโร่ อคาเดเมีย ภาค 5","أكاديميتي للأبطال","Моя геройская академия 5"],"format":"TV","episodes":25,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":3,"day":27},"status":"FINISHED"},{"index":2,"id":114535,"mal_id":41025,"title":"Fumetsu no Anata e","english":"To Your Eternity","native":"不滅のあなたへ","synonyms":["To You, the Immortal","Uma vida imortal","致不灭的你","A te, l'immortale","Ku twej wieczności","불멸의 그대에게","Untukmu yang Abadi","Gửi em, người bất tử","แด่เธอผู้เป็นนิรันดร์"],"format":"TV","episodes":20,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":12},"status":"FINISHED"},{"index":3,"id":116589,"mal_id":41457,"title":"86: Eighty Six","english":"86 EIGHTY-SIX","native":"86-エイティシックス-","synonyms":["86--EIGHTY-SIX","86 -เอทตี้ซิกซ์-","86 ВОСЕМЬДЕСЯТ ШЕСТЬ","86 -不存在的战区-"],"format":"TV","episodes":11,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":11},"status":"FINISHED"},{"index":4,"id":120697,"mal_id":42361,"title":"Ijiranaide, Nagatoro-san","english":"DON'T TOY WITH ME, MISS NAGATORO","native":"イジらないで、長瀞さん","synonyms":["不要欺负我、长瀞同学","Arrête de me chauffer, Nagatoro!","ยัยตัวแสบแอบน่ารัก นางาโทโระ","Не издевайся надо мной, Нагаторо","괴롭히지 말아요, 나가토로 양\t","Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ","No me rayes, Nagatoro"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":11},"status":"FINISHED"},{"index":5,"id":114232,"mal_id":40938,"title":"Hige wo Soru. Soshite Joshikousei wo Hirou.","english":"Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway","native":"ひげを剃る。そして女子高生を拾う。","synonyms":["Higehiro","I Shaved My Beard Then Picked Up a High School Girl.","剃须。然后捡到女高中生。","刮掉鬍子的我與撿到的女高中生","โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ","Я побрился. И приютил школьницу"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":5},"status":"FINISHED"},{"index":6,"id":128546,"mal_id":46095,"title":"Vivy: Fluorite Eye’s Song","english":"Vivy -Fluorite Eye's Song-","native":"Vivy -Fluorite Eye’s Song-","synonyms":["ヴィヴィ -フローライトアイズソング-","วีวี่ บทเพลงจักรกลกู้ศตวรรษ"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":3},"status":"FINISHED"},{"index":7,"id":124194,"mal_id":42938,"title":"Fruits Basket: The Final","english":"Fruits Basket The Final Season","native":"フルーツバスケットThe Final","synonyms":["Furuba","Fruba","フルバ","Fruits Basket Season 3","水果篮子 最终季","เสน่ห์สาวข้าวปั้น ภาค 3","เสน่ห์สาวข้าวปั้น ภาคสุดท้าย","Корзинка фруктов: Финал"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":6},"status":"FINISHED"},{"index":8,"id":125426,"mal_id":43692,"title":"Gokushufudou","english":"The Way of the Househusband","native":"極主夫道","synonyms":["La Via del Grembiule","Gokushufudou: Tatsu Imortal","De yakuza a amo de casa","La Voie du Tablier","Yakuza w fartuszku. Kodeks perfekcyjnego pana domu","على طريقة ربّ المنزل","Gokushufudou Part 1","The Way of the Househusband Part 1","พ่อบ้านสุดเก๋า ","พ่อบ้านสุดเก๋า พาร์ท 1","Ο Καλός Νοικοκύρης","Шлях домогосподаря"],"format":"ONA","episodes":5,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":8},"status":"FINISHED"},{"index":9,"id":128547,"mal_id":46102,"title":"Odd Taxi","english":"ODDTAXI","native":"オッドタクシー","synonyms":["Необычное такси"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":6},"status":"FINISHED"},{"index":10,"id":112608,"mal_id":40586,"title":"Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita","english":"I've Been Killing Slimes for 300 Years and Maxed Out My Level","native":"スライム倒して300年、知らないうちにレベルMAXになってました","synonyms":["Slime 300","打了300年的史莱姆,不知不觉就练到了满级","La Sorcière invincible tueuse de Slime depuis 300 ans","ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว","Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun","Я 300 лет убивала слизь и прокачалась на максимум"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":10},"status":"FINISHED"},{"index":11,"id":127399,"mal_id":44942,"title":"Shuumatsu no Valkyrie","english":"Record of Ragnarok","native":"終末のワルキューレ","synonyms":["Shuumatsu no Walkure","معركة راغناروك","Valkyrie Apocalypse","มหาศึกคนชนเทพ","Повесть о конце света","Τα Χρονικά του Ράγκναροκ","Хроніка Раґнароку"],"format":"ONA","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":6,"day":17},"status":"FINISHED"},{"index":12,"id":117448,"mal_id":41623,"title":"Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω","english":"How NOT to Summon a Demon Lord Ω","native":"異世界魔王と召喚少女の奴隷魔術Ω","synonyms":["Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2","Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega","How NOT To Summon A Demon Lord Omega","异世界魔王与召唤少女的奴隶魔术Ω","จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2"],"format":"TV","episodes":10,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":9},"status":"FINISHED"},{"index":13,"id":116588,"mal_id":41456,"title":"Sentouin, Hakenshimasu!","english":"Combatants Will Be Dispatched!","native":"戦闘員、派遣します!","synonyms":["Kombattanten werden entsandt!","战斗员派遣中!","นักรบสายป่วนออกปฏิบัติกวน ","Les combattants seront déployés !"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":4},"status":"FINISHED"},{"index":14,"id":116338,"mal_id":41402,"title":"Mairimashita! Iruma-kun 2","english":"Welcome to Demon School! Iruma-kun Season 2","native":"魔入りました!入間くん 第2シリーズ","synonyms":["Welcome to Demon School, Iruma-kun! Season 2","入间同学入魔了 第二季","入间同学入魔了!2","อิรุมะคุง พจญในแดนปีศาจ! ภาค 2"],"format":"TV","episodes":21,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":17},"status":"FINISHED"},{"index":15,"id":125038,"mal_id":43439,"title":"Shadows House","english":"SHADOWS HOUSE","native":"シャドーハウス","synonyms":["Shadow House","影之宅","影宅","Dinh Thự Bóng"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":11},"status":"FINISHED"},{"index":16,"id":116741,"mal_id":41488,"title":"Tensei Shitara Slime Datta Ken: Tensura Nikki","english":"The Slime Diaries","native":"転生したらスライムだった件 転スラ日記","synonyms":["The Slime Diaries: That Time I Got Reincarnated as a Slime","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่","关于我转生变成史莱姆这档事 转生史莱姆日记","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":6},"status":"FINISHED"},{"index":17,"id":125368,"mal_id":43609,"title":"Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA","english":null,"native":"かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA","synonyms":["Kaguya-sama: Love is War OVA","Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen OVA"],"format":"OVA","episodes":1,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":5,"day":19},"status":"FINISHED"},{"index":18,"id":119683,"mal_id":42192,"title":"EDENS ZERO","english":"EDENS ZERO","native":"EDENS ZERO","synonyms":["エデンズゼロ","إيدينز زيرو","אדנס זירו","เอเดนส์ซีโร่","НУЛЕВОЙ ЭДЕМ"],"format":"TV","episodes":25,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":11},"status":"FINISHED"},{"index":19,"id":124675,"mal_id":43007,"title":"Osananajimi ga Zettai ni Makenai Love Come","english":"Osamake: Romcom Where The Childhood Friend Won't Lose","native":"幼なじみが絶対に負けないラブコメ","synonyms":["Osananajimi ga Zettai ni Makenai Love Comedy","OsaMake","ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก","เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":14},"status":"FINISHED"},{"index":20,"id":124858,"mal_id":43325,"title":"Yuukoku no Moriarty Part 2","english":"Moriarty the Patriot Part 2","native":"憂国のモリアーティ2クール","synonyms":["มอริอาร์ตี้ผู้รักชาติ Part 2"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":4},"status":"FINISHED"},{"index":21,"id":126791,"mal_id":44276,"title":"Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara","english":"Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!","native":"究極進化したフルダイブRPGが現実よりもクソゲーだったら","synonyms":["What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself","如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话","Full Dive : L'ultime RPG est encore plus foireux que la réalité !","เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":7},"status":"FINISHED"},{"index":22,"id":119675,"mal_id":42205,"title":"SHAMAN KING (2021)","english":"SHAMAN KING (2021)","native":"SHAMAN KING (2021)","synonyms":["シャーマンキング (2021)","ملك الشامان","通灵王","שאמן קינג","Король шаманов","Βασιλιάς Σαμάνος","Król szamanów","Rey Chamán","Король шаманів"],"format":"TV","episodes":52,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":1},"status":"FINISHED"},{"index":23,"id":123802,"mal_id":42826,"title":"Seijo no Maryoku wa Bannou desu","english":"The Saint's Magic Power is Omnipotent","native":"聖女の魔力は万能です","synonyms":["The power of the saint is all around","圣女的魔力是万能的","สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง","Kekuatan Sihir Santa Sungguh Mahaguna"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":6},"status":"FINISHED"},{"index":24,"id":110733,"mal_id":40174,"title":"Zombie Land Saga: Revenge","english":"ZOMBIE LAND SAGA REVENGE","native":"ゾンビランドサガ リベンジ","synonyms":["Zombieland Saga: Revenge","佐贺偶像是传奇 Revenge","ซอมบี้เเลนด์ซากะ Revenge ","Зомбилэнд-Сага: Возмездие"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"year":2021,"month":4,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":42249,"mal_id":42249,"title":"Tokyo Revengers","english":"Tokyo Revengers","native":"東京リベンジャーズ","synonyms":[],"format":"TV","episodes":24,"season":"SPRING","year":2021,"start_date":{"day":11,"month":4,"year":2021},"status":"Finished Airing"},{"index":1,"id":41587,"mal_id":41587,"title":"Boku no Hero Academia 5th Season","english":"My Hero Academia Season 5","native":"僕のヒーローアカデミア","synonyms":["My Hero Academia 5"],"format":"TV","episodes":25,"season":"SPRING","year":2021,"start_date":{"day":27,"month":3,"year":2021},"status":"Finished Airing"},{"index":2,"id":41025,"mal_id":41025,"title":"Fumetsu no Anata e","english":"To Your Eternity","native":"不滅のあなたへ","synonyms":["To You","the Immortal"],"format":"TV","episodes":20,"season":"SPRING","year":2021,"start_date":{"day":12,"month":4,"year":2021},"status":"Finished Airing"},{"index":3,"id":41457,"mal_id":41457,"title":"86","english":"86 Eighty-Six","native":"86―エイティシックス―","synonyms":["Eighty Six"],"format":"TV","episodes":11,"season":"SPRING","year":2021,"start_date":{"day":11,"month":4,"year":2021},"status":"Finished Airing"},{"index":4,"id":42361,"mal_id":42361,"title":"Ijiranaide, Nagatoro-san","english":"Don't Toy with Me, Miss Nagatoro","native":"イジらないで、長瀞さん","synonyms":["Please don't bully me","Nagatoro"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":11,"month":4,"year":2021},"status":"Finished Airing"},{"index":5,"id":40938,"mal_id":40938,"title":"Hige wo Soru. Soshite Joshikousei wo Hirou.","english":"Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway","native":"ひげを剃る。そして女子高生を拾う。","synonyms":["I Shaved. Then I Brought a High School Girl Home.","Higehiro"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":5,"month":4,"year":2021},"status":"Finished Airing"},{"index":6,"id":46095,"mal_id":46095,"title":"Vivy: Fluorite Eye's Song","english":"Vivy -Fluorite Eye's Song-","native":"Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":3,"month":4,"year":2021},"status":"Finished Airing"},{"index":7,"id":42938,"mal_id":42938,"title":"Fruits Basket: The Final","english":"Fruits Basket: The Final Season","native":"フルーツバスケット The Final","synonyms":["Fruits Basket 3rd Season","Fruits Basket (2019) 3rd Season","Furuba"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":6,"month":4,"year":2021},"status":"Finished Airing"},{"index":8,"id":46102,"mal_id":46102,"title":"Odd Taxi","english":"Odd Taxi","native":"オッドタクシー","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":6,"month":4,"year":2021},"status":"Finished Airing"},{"index":9,"id":44074,"mal_id":44074,"title":"Shiguang Dailiren","english":"Link Click","native":"时光代理人","synonyms":["時光代理人","Jikou Dairinin","Shi Guang Dai Li Ren"],"format":"ONA","episodes":11,"season":null,"year":null,"start_date":{"day":30,"month":4,"year":2021},"status":"Finished Airing"},{"index":10,"id":43692,"mal_id":43692,"title":"Gokushufudou","english":"The Way of the Househusband","native":"極主夫道","synonyms":["The Way of the House Husband","Yakuza goes Houseman"],"format":"ONA","episodes":5,"season":null,"year":null,"start_date":{"day":8,"month":4,"year":2021},"status":"Finished Airing"},{"index":11,"id":41623,"mal_id":41623,"title":"Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω","english":"How Not to Summon a Demon Lord Ω","native":"異世界魔王と召喚少女の奴隷魔術Ω","synonyms":["How Not to Summon a Demon Lord 2nd Season","Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season","The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season","Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega"],"format":"TV","episodes":10,"season":"SPRING","year":2021,"start_date":{"day":9,"month":4,"year":2021},"status":"Finished Airing"},{"index":12,"id":40586,"mal_id":40586,"title":"Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita","english":"I've Been Killing Slimes for 300 Years and Maxed Out My Level","native":"スライム倒して300年、知らないうちにレベルMAXになってました","synonyms":["Slime 300"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":10,"month":4,"year":2021},"status":"Finished Airing"},{"index":13,"id":41456,"mal_id":41456,"title":"Sentouin, Haken shimasu!","english":"Combatants Will Be Dispatched!","native":"戦闘員、派遣します!","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":4,"month":4,"year":2021},"status":"Finished Airing"},{"index":14,"id":44942,"mal_id":44942,"title":"Shuumatsu no Walküre","english":"Record of Ragnarok","native":"終末のワルキューレ","synonyms":["Shuumatsu no Valkyrie","Valkyrie of the End","Valkyrie Apocalypse"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":17,"month":6,"year":2021},"status":"Finished Airing"},{"index":15,"id":41488,"mal_id":41488,"title":"Tensura Nikki: Tensei shitara Slime Datta Ken","english":"The Slime Diaries","native":"転スラ日記 転生したらスライムだった件","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":6,"month":4,"year":2021},"status":"Finished Airing"},{"index":16,"id":41402,"mal_id":41402,"title":"Mairimashita! Iruma-kun 2nd Season","english":"Welcome to Demon School! Iruma-kun Season 2","native":"魔入りました!入間くん","synonyms":["Welcome to Demon School! Iruma-kun 2nd Season"],"format":"TV","episodes":21,"season":"SPRING","year":2021,"start_date":{"day":17,"month":4,"year":2021},"status":"Finished Airing"},{"index":17,"id":43007,"mal_id":43007,"title":"Osananajimi ga Zettai ni Makenai Love Comedy","english":"Osamake: Romcom Where the Childhood Friend Won't Lose","native":"幼なじみが絶対に負けないラブコメ","synonyms":["The Romcom Where the Childhood Friend Won't Lose!","Osamake"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":14,"month":4,"year":2021},"status":"Finished Airing"},{"index":18,"id":43325,"mal_id":43325,"title":"Yuukoku no Moriarty Part 2","english":"Moriarty the Patriot Part 2","native":"憂国のモリアーティ","synonyms":["Moriarty's Patriotism Part 2","Moriarty the Patriot 2"],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":4,"month":4,"year":2021},"status":"Finished Airing"},{"index":19,"id":42192,"mal_id":42192,"title":"Edens Zero","english":"Edens Zero","native":"EDENS ZERO","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2021,"start_date":{"day":11,"month":4,"year":2021},"status":"Finished Airing"},{"index":20,"id":42205,"mal_id":42205,"title":"Shaman King (2021)","english":null,"native":"SHAMAN KING","synonyms":[],"format":"TV","episodes":52,"season":"SPRING","year":2021,"start_date":{"day":1,"month":4,"year":2021},"status":"Finished Airing"},{"index":21,"id":43439,"mal_id":43439,"title":"Shadows House","english":"Shadows House","native":"シャドーハウス","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2021,"start_date":{"day":11,"month":4,"year":2021},"status":"Finished Airing"},{"index":22,"id":44276,"mal_id":44276,"title":"Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara","english":"Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!","native":"究極進化したフルダイブRPGが現実よりもクソゲーだったら","synonyms":["What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":7,"month":4,"year":2021},"status":"Finished Airing"},{"index":23,"id":43609,"mal_id":43609,"title":"Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA","english":"Kaguya-sama: Love is War OVA","native":"かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA","synonyms":[],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":5,"year":2021},"status":"Finished Airing"},{"index":24,"id":41103,"mal_id":41103,"title":"Koi to Yobu ni wa Kimochi Warui","english":"Koikimo","native":"恋と呼ぶには気持ち悪い","synonyms":["It's Too Sick to Call this Love"],"format":"TV","episodes":12,"season":"SPRING","year":2021,"start_date":{"day":5,"month":4,"year":2021},"status":"Finished Airing"}]},{"year":2023,"season":"spring","anilist":[{"index":0,"id":145139,"mal_id":51019,"title":"Kimetsu no Yaiba: Katanakaji no Sato-hen","english":"Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc","native":"鬼滅の刃 刀鍛冶の里編","synonyms":["KnY 3","ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ","Demon Slayer: Kimetsu no Yaiba - Le village des forgerons","Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов","Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy"],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":9},"status":"FINISHED"},{"index":1,"id":128893,"mal_id":46569,"title":"Jigokuraku","english":"Hell’s Paradise","native":"地獄楽","synonyms":["Hell’s Paradise: Jigokuraku","สุขาวดีอเวจี","Адский рай"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":1},"status":"FINISHED"},{"index":2,"id":150672,"mal_id":52034,"title":"[Oshi no Ko]","english":"Oshi No Ko","native":"【推しの子】","synonyms":["Favorite Girl","My Idol's Child","[Mein*Star]","เกิดใหม่เป็นลูกโอชิ","Anak Idola","【OSHI NO KO】","【推しの子】Mother and Children","[Oshi no Ko] Mother and Children","我推的孩子","【최애의 아이】"],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":12},"status":"FINISHED"},{"index":3,"id":151801,"mal_id":52211,"title":"MASHLE","english":"MASHLE: MAGIC AND MUSCLES","native":"マッシュル-MASHLE-","synonyms":["MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม","MASHLE: MAGIA E MÚSCULOS","MASHLE: Магия и мускулы"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":8},"status":"FINISHED"},{"index":4,"id":155783,"mal_id":53393,"title":"Tengoku Daimakyou","english":"Tengoku Daimakyo","native":"天国大魔境","synonyms":["Heavenly Delusion","Tengoku-Daimakyo: Ilusão Celestial","ถ้ำปีศาจแดนสวรรค์"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":1},"status":"FINISHED"},{"index":5,"id":131518,"mal_id":48549,"title":"Dr. STONE: NEW WORLD","english":"Dr. STONE New World","native":"Dr.STONE NEW WORLD","synonyms":["石纪元第三季","Dr.STONE Season 3","DR.STONE ภาค 3","Dr.STONE 第3期","Dr. STONE 新石紀(第三季)","Доктор Стоун: Новый Свет"],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":6},"status":"FINISHED"},{"index":6,"id":154965,"mal_id":53126,"title":"Yamada-kun to Lv999 no Koi wo Suru","english":"My Love Story with Yamada-kun at Lv999","native":"山田くんとLv999の恋をする","synonyms":["Loving Yamada at LV999!","My Lv999 Love for Yamada-kun","Minha História de Amor com Yamada-kun Nível 999","รักสุดฟินเลเวล 999 กับยามาดะคุง ","和山田进行LV.999的恋爱","Моя любовь к Ямаде 999 уровня","Mon histoire d'amour avec Yamada à Lv999","和山田談場 Lv999 的戀愛"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":2},"status":"FINISHED"},{"index":7,"id":153152,"mal_id":52578,"title":"Boku no Kokoro no Yabai Yatsu","english":"The Dangers in My Heart","native":"僕の心のヤバイやつ","synonyms":["BokuYaba","เธอผู้อันตรายต่อใจผม","내 마음의 위험한 녀석","我內心的糟糕念頭","僕ヤバ","Peligros en mi corazón","Czarne chmury w moim sercu"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":2},"status":"FINISHED"},{"index":8,"id":151384,"mal_id":52198,"title":"Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai","english":"Kaguya-sama: Love is War -The First Kiss That Never Ends-","native":"かぐや様は告らせたい -ファーストキッスは終わらない-","synonyms":["Kaguya-sama: Love is War Movie","Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết","Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй"],"format":"TV","episodes":4,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":1},"status":"FINISHED"},{"index":9,"id":153845,"mal_id":52830,"title":"Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta","english":"I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too","native":"異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~","synonyms":["I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World","Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru","สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล","Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real","Iseleve","在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运","いせれべ","Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":4},"status":"FINISHED"},{"index":10,"id":141911,"mal_id":50416,"title":"Skip to Loafer","english":"Skip and Loafer","native":"スキップとローファー","synonyms":["จังหวะวัยรุ่น ว้าวุ่นหัวใจ","В лоферах вприпрыжку","躍動青春","スキロー"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":4},"status":"FINISHED"},{"index":11,"id":150075,"mal_id":51958,"title":"Kono Subarashii Sekai ni Bakuen wo!","english":"KONOSUBA -An Explosion on This Wonderful World!","native":"この素晴らしい世界に爆焔を!","synonyms":["ขอให้ระเบิดตูมตามในโลกแฟนตาซี!","為美好的世界獻上爆焰!","Да благословит взрыв сей расчудесный мир!"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":6},"status":"FINISHED"},{"index":12,"id":143653,"mal_id":50796,"title":"Kimi wa Houkago Insomnia","english":"Insomniacs After School","native":"君は放課後インソムニア","synonyms":["Insomniaques","ถ้านอนไม่หลับไปนับดาวกันไหม","放学后失眠的你","Bezsenność po szkole","Insomnia Sepulang Sekolah"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":11},"status":"FINISHED"},{"index":13,"id":131680,"mal_id":48585,"title":"Black Clover: Mahou Tei no Ken","english":"Black Clover: Sword of the Wizard King","native":"ブラッククローバー 魔法帝の剣","synonyms":["Black Clover Movie","Чорна конюшина: Меч короля магів","Black Clover: A Espada do Rei Mago","Black Clover: La espada del rey mago","Черный клевер: Меч короля магов"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":6,"day":16},"status":"FINISHED"},{"index":14,"id":157198,"mal_id":53613,"title":"Dead Mount Death Play","english":"Dead Mount Death Play","native":"デッドマウント・デスプレイ","synonyms":["屍體如山的死亡遊戲","DMDP"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":11},"status":"FINISHED"},{"index":15,"id":141208,"mal_id":50307,"title":"Tonikaku Kawaii Season 2","english":"TONIKAWA: Over The Moon For You Season 2","native":"トニカクカワイイ(シーズン2)","synonyms":["Fly Me to the Moon 2","Tonikaku Cawaii 2","Generally Cute 2","总之就是非常可爱2","จะยังไงภรรยาของผมก็น่ารัก ภาค 2","Красавица: Унеси меня на Луну 2"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":8},"status":"FINISHED"},{"index":16,"id":148048,"mal_id":51693,"title":"Kaminaki Sekai no Kamisama Katsudou","english":"KamiKatsu: Working for God in a Godless World","native":"神無き世界のカミサマ活動","synonyms":["What God Does in a World Without Gods","KamiKatsu: Atividades Divinas em um Mundo sem Deuses ","Kamisama : Opération Divine","KamiKatsu","KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt","โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า","KamiKatsu: Как быть богу в мире без богов?","無神世界的神明活動"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":6},"status":"FINISHED"},{"index":17,"id":154967,"mal_id":53129,"title":"Seishun Buta Yarou wa Odekake Sister no Yume wo Minai","english":"Rascal Does Not Dream of a Sister Venturing Out","native":"青春ブタ野郎はおでかけシスターの夢を見ない","synonyms":["Ao Buta","青ブタ","เรื่องฝันปั่นป่วยของผมกับน้องสาวออกนอกบ้าน"],"format":"MOVIE","episodes":1,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":6,"day":23},"status":"FINISHED"},{"index":18,"id":153332,"mal_id":52608,"title":"Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito","english":"The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far","native":"転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜","synonyms":["Chronicles of an Aristocrat Reborn in Another World","เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ","Crônicas de um Aristocrata em Outro Mundo","Noble New World Adventures","Die Parallelwelt-Chroniken des Aristokraten"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":2},"status":"FINISHED"},{"index":19,"id":151847,"mal_id":52308,"title":"Kanojo ga Koushaku-tei ni Itta Riyuu","english":"Why Raeliana Ended Up at the Duke’s Mansion","native":"彼女が公爵邸に行った理由","synonyms":["그녀가 공작저로 가야 했던 사정","Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong","พระเอกของฉันเป็นท่านดยุค","Como Raeliana Foi Parar na Mansão do Duque","Comment Raeliana a survécu au manoir Wynknight","The Reason Why Raeliana Ended up at the Duke's Mansion","Raeliana: Warum sie die Verlobte des Dukes wurde"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":10},"status":"FINISHED"},{"index":20,"id":148098,"mal_id":51705,"title":"Otonari ni Ginga","english":"A Galaxy Next Door","native":"おとなりに銀河","synonyms":["Uma Vizinha de Outro Mundo","鄰人似銀河"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":9},"status":"FINISHED"},{"index":21,"id":140754,"mal_id":50220,"title":"Isekai Shoukan wa Nidome desu","english":"Summoned to Another World for a Second Time","native":"異世界召喚は二度目です","synonyms":["Summoned to Another World... Again?!","Invocado Para Outro Mundo... De Novo?!","Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.","IseNido"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":9},"status":"FINISHED"},{"index":22,"id":154364,"mal_id":52955,"title":"Mahoutsukai no Yome SEASON 2","english":"The Ancient Magus' Bride Season 2","native":"魔法使いの嫁 SEASON2","synonyms":["Mahoyome 2","เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2","Невеста чародея 2"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":6},"status":"FINISHED"},{"index":23,"id":147571,"mal_id":51632,"title":"Isekai wa Smartphone to Tomo ni. 2","english":"In Another World With My Smartphone 2","native":"異世界はスマートフォンとともに。2","synonyms":["Isesuma 2","帶著智慧型手機闖蕩異世界。2"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":3},"status":"FINISHED"},{"index":24,"id":148109,"mal_id":51706,"title":"Yuusha ga Shinda!","english":"The Legendary Hero is Dead!","native":"勇者が死んだ!","synonyms":["勇者死了!","เมื่อผู้กล้าลาโลกแล้ว!","Герой мёртв!"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"year":2023,"month":4,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":51019,"mal_id":51019,"title":"Kimetsu no Yaiba: Katanakaji no Sato-hen","english":"Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc","native":"鬼滅の刃 刀鍛冶の里編","synonyms":[],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"day":9,"month":4,"year":2023},"status":"Finished Airing"},{"index":1,"id":52034,"mal_id":52034,"title":"[Oshi no Ko]","english":"[Oshi No Ko]","native":"【推しの子】","synonyms":["My Star"],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"day":12,"month":4,"year":2023},"status":"Finished Airing"},{"index":2,"id":46569,"mal_id":46569,"title":"Jigokuraku","english":"Hell's Paradise","native":"地獄楽","synonyms":["Paradition","Heavenhell"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"day":1,"month":4,"year":2023},"status":"Finished Airing"},{"index":3,"id":52211,"mal_id":52211,"title":"Mashle","english":"Mashle: Magic and Muscles","native":"マッシュル-MASHLE-","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":8,"month":4,"year":2023},"status":"Finished Airing"},{"index":4,"id":53393,"mal_id":53393,"title":"Tengoku Daimakyou","english":"Heavenly Delusion","native":"天国大魔境","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"day":1,"month":4,"year":2023},"status":"Finished Airing"},{"index":5,"id":48549,"mal_id":48549,"title":"Dr. Stone: New World","english":null,"native":"Dr.STONE NEW WORLD","synonyms":["Dr. Stone 3rd Season"],"format":"TV","episodes":11,"season":"SPRING","year":2023,"start_date":{"day":6,"month":4,"year":2023},"status":"Finished Airing"},{"index":6,"id":53126,"mal_id":53126,"title":"Yamada-kun to Lv999 no Koi wo Suru","english":"My Love Story with Yamada-kun at Lv999","native":"山田くんとLv999の恋をする","synonyms":["Loving Yamada at Lv999"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"day":2,"month":4,"year":2023},"status":"Finished Airing"},{"index":7,"id":52578,"mal_id":52578,"title":"Boku no Kokoro no Yabai Yatsu","english":"The Dangers in My Heart","native":"僕の心のヤバイやつ","synonyms":["Bokuyaba"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":2,"month":4,"year":2023},"status":"Finished Airing"},{"index":8,"id":52830,"mal_id":52830,"title":"Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta","english":"I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too","native":"異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~","synonyms":["Iseleve"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"day":7,"month":4,"year":2023},"status":"Finished Airing"},{"index":9,"id":51958,"mal_id":51958,"title":"Kono Subarashii Sekai ni Bakuen wo!","english":"KonoSuba: An Explosion on This Wonderful World!","native":"この素晴らしい世界に爆焔を!","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":6,"month":4,"year":2023},"status":"Finished Airing"},{"index":10,"id":50416,"mal_id":50416,"title":"Skip to Loafer","english":"Skip and Loafer","native":"スキップとローファー","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":4,"month":4,"year":2023},"status":"Finished Airing"},{"index":11,"id":50307,"mal_id":50307,"title":"Tonikaku Kawaii 2nd Season","english":"Tonikawa: Over The Moon For You Season 2","native":"トニカクカワイイ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":8,"month":4,"year":2023},"status":"Finished Airing"},{"index":12,"id":53613,"mal_id":53613,"title":"Dead Mount Death Play","english":"Dead Mount Death Play","native":"デッドマウント・デスプレイ","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":11,"month":4,"year":2023},"status":"Finished Airing"},{"index":13,"id":50796,"mal_id":50796,"title":"Kimi wa Houkago Insomnia","english":"Insomniacs After School","native":"君は放課後インソムニア","synonyms":["Kimisomu"],"format":"TV","episodes":13,"season":"SPRING","year":2023,"start_date":{"day":11,"month":4,"year":2023},"status":"Finished Airing"},{"index":14,"id":48585,"mal_id":48585,"title":"Black Clover: Mahou Tei no Ken","english":"Black Clover: Sword of the Wizard King","native":"ブラッククローバー 魔法帝の剣","synonyms":["Black Clover: Mahoutei no Ken"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":6,"year":2023},"status":"Finished Airing"},{"index":15,"id":51693,"mal_id":51693,"title":"Kaminaki Sekai no Kamisama Katsudou","english":"Kamikatsu: Working for God in a Godless World","native":"神無き世界のカミサマ活動","synonyms":["Kamikatsu","What God Does in a World Without Gods"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":6,"month":4,"year":2023},"status":"Finished Airing"},{"index":16,"id":52608,"mal_id":52608,"title":"Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito","english":"The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far","native":"転生貴族の異世界冒険録~自重を知らない神々の使徒~","synonyms":["Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":3,"month":4,"year":2023},"status":"Finished Airing"},{"index":17,"id":52955,"mal_id":52955,"title":"Mahoutsukai no Yome Season 2","english":"The Ancient Magus' Bride Season 2","native":"魔法使いの嫁 SEASON2","synonyms":["The Ancient Magus Bride 2","Mahoutsukai no Yome 2","Mahoyome"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":6,"month":4,"year":2023},"status":"Finished Airing"},{"index":18,"id":53129,"mal_id":53129,"title":"Seishun Buta Yarou wa Odekake Sister no Yume wo Minai","english":"Rascal Does Not Dream of a Sister Venturing Out","native":"青春ブタ野郎はおでかけシスターの夢を見ない","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":6,"year":2023},"status":"Finished Airing"},{"index":19,"id":52308,"mal_id":52308,"title":"Kanojo ga Koushaku-tei ni Itta Riyuu","english":"Why Raeliana Ended up at the Duke's Mansion","native":"彼女が公爵邸に行った理由","synonyms":["Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong","그녀가 공작저로 가야 했던 사정"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":10,"month":4,"year":2023},"status":"Finished Airing"},{"index":20,"id":50220,"mal_id":50220,"title":"Isekai Shoukan wa Nidome desu","english":"Summoned to Another World for a Second Time","native":"異世界召喚は二度目です","synonyms":["Isenido"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":9,"month":4,"year":2023},"status":"Finished Airing"},{"index":21,"id":51705,"mal_id":51705,"title":"Otonari ni Ginga","english":"A Galaxy Next Door","native":"おとなりに銀河","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":9,"month":4,"year":2023},"status":"Finished Airing"},{"index":22,"id":51632,"mal_id":51632,"title":"Isekai wa Smartphone to Tomo ni. 2","english":"In Another World With My Smartphone 2","native":"異世界はスマートフォンとともに。","synonyms":["In Another World With My Smartphone 2nd Season","In a Different World with a Smartphone."],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":3,"month":4,"year":2023},"status":"Finished Airing"},{"index":23,"id":52973,"mal_id":52973,"title":"Megami no Café Terrace","english":"The Café Terrace and Its Goddesses","native":"女神のカフェテラス","synonyms":["Goddess Café Terrace"],"format":"TV","episodes":12,"season":"SPRING","year":2023,"start_date":{"day":8,"month":4,"year":2023},"status":"Finished Airing"},{"index":24,"id":52657,"mal_id":52657,"title":"Ousama Ranking: Yuuki no Takarabako","english":"Ranking of Kings: The Treasure Chest of Courage","native":"王様ランキング 勇気の宝箱","synonyms":["Ranking of Kings: Treasure Chest of Courage"],"format":"TV","episodes":10,"season":"SPRING","year":2023,"start_date":{"day":14,"month":4,"year":2023},"status":"Finished Airing"}]},{"year":2025,"season":"spring","anilist":[{"index":0,"id":149118,"mal_id":51818,"title":"Enen no Shouboutai: San no Shou","english":"Fire Force Season 3","native":"炎炎ノ消防隊 参ノ章","synonyms":["Enen no Shouboutai 3rd Season","หน่วยผจญคนไฟลุก ภาค 3"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":5},"status":"FINISHED"},{"index":1,"id":167336,"mal_id":56038,"title":"Lazarus","english":"LAZARUS","native":"ラザロ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":6},"status":"FINISHED"},{"index":2,"id":178680,"mal_id":59160,"title":"WIND BREAKER Season 2","english":"WIND BREAKER Season 2","native":"WIND BREAKER Season 2","synonyms":["WB 2","ウィンブレ2"," WBK 2","ウィンドブレイカー Season 2"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":4},"status":"FINISHED"},{"index":3,"id":180367,"mal_id":59597,"title":"Witch Watch","english":"WITCH WATCH","native":"ウィッチウォッチ","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":6},"status":"FINISHED"},{"index":4,"id":183161,"mal_id":60146,"title":"Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?","english":"The Beginning After the End","native":"最強の王様、二度目の人生は 何をする? ","synonyms":["TBATE","終末起點","Начало после конца"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":3},"status":"FINISHED"},{"index":5,"id":179955,"mal_id":59452,"title":"Katainaka no Ossan, Kensei ni Naru","english":"From Old Country Bumpkin to Master Swordsman","native":"片田舎のおっさん、剣聖になる","synonyms":["Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken","片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~","Wieśniak mistrzem miecza","De Caipira a Mestre Espadachim","Pria Tua Pedesaan Menjadi Pendekar Pedang Elite","Daripada Orang Kampung Biasa kepada Mahaguru Pedang","Vom Landei zum Schwertheiligen","De campesino cuarentón a espadachín legendario","Da campagnolo stagionato a gran maestro di spada","Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor","من ريفي كهل إلى معلّم مبارزة","सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक","ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง","乡下大叔成为剑圣","鄉下大叔成為劍聖","촌구석 아저씨, 검성이 되다"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":5},"status":"FINISHED"},{"index":6,"id":185736,"mal_id":60593,"title":"Vigilante: Boku no Hero Academia ILLEGALS","english":"My Hero Academia: Vigilantes","native":"ヴィジランテ -僕のヒーローアカデミア ILLEGALS-","synonyms":["MHA Vigilantes","BNHA Vigilantes"],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":7},"status":"FINISHED"},{"index":7,"id":175872,"mal_id":58359,"title":"Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru","english":"The Brilliant Healer's New Life in the Shadows","native":"一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる","synonyms":["闇ヒーラー","Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba","瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活","Yami Healer"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":3},"status":"FINISHED"},{"index":8,"id":182814,"mal_id":60083,"title":"Kowloon Generic Romance","english":"KOWLOON GENERIC ROMANCE","native":"九龍ジェネリックロマンス","synonyms":["九龍GR","เกาลูน อุบัติรักปริศนาลับ"],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":5},"status":"FINISHED"},{"index":9,"id":153554,"mal_id":52709,"title":"Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)","english":"Can a Boy-Girl Friendship Survive?","native":"男女の友情は成立する?(いや、 しないっ!!)","synonyms":["だんじょる","Danjoru","Can a Boy and Girl Friendship Hold Up? (No It Can't)","เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":4},"status":"FINISHED"},{"index":10,"id":143598,"mal_id":49778,"title":"Kijin Gentoushou","english":"Sword of the Demon Hunter: Kijin Gentosho","native":"鬼人幻燈抄","synonyms":["Sword of the Demon Hunter: Kijin Gentosho","Le memorie del mezzo demone"],"format":"TV","episodes":24,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":3,"day":31},"status":"FINISHED"},{"index":11,"id":179965,"mal_id":59457,"title":"Haite Kudasai, Takamine-san","english":"Please Put Them On, Takamine-san","native":"履いてください、鷹峰さん","synonyms":["Let Me Put Your Panties On, Takamine-san","Please Put These On, Takamine"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":2},"status":"FINISHED"},{"index":12,"id":174802,"mal_id":58131,"title":"Shiunji-ke no Kodomotachi","english":"The Shiunji Family Children","native":"紫雲寺家の子供たち","synonyms":["รักว้าวุ่นในบ้านชิอุนจิ"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":8},"status":"FINISHED"},{"index":13,"id":143337,"mal_id":50738,"title":"Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni","english":"I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2","native":"スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~","synonyms":["スライム倒して300年、知らないうちにレベルMAXになってました 第2期","Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":5},"status":"FINISHED"},{"index":14,"id":180516,"mal_id":59636,"title":"Uma Musume: Cinderella Gray","english":"Umamusume: Cinderella Gray","native":"ウマ娘 シンデレラグレイ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":6},"status":"FINISHED"},{"index":15,"id":183133,"mal_id":60140,"title":"Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi","english":"The Unaware Atelier Meister","native":"勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~","synonyms":["使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~"],"format":"ONA","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":3,"day":30},"status":"FINISHED"},{"index":16,"id":181244,"mal_id":59833,"title":"Kono Subarashii Sekai ni Shukufuku wo! 3: BONUS STAGE","english":"KONOSUBA -God's Blessing on This Wonderful World! 3 -BONUS STAGE-","native":"この素晴らしい世界に祝福を!3ーBONUS STAGEー","synonyms":["KONOSUBA -God's blessing on this wonderful world! 3 OVA","Kono Subarashii Sekai ni Shukufuku wo! 3 OVA","この素晴らしい世界に祝福を!3 OVA"],"format":"OVA","episodes":2,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":3,"day":14},"status":"FINISHED"},{"index":17,"id":183274,"mal_id":60154,"title":"Ore wa Seikan Kokka no Akutoku Ryoushu! ","english":"I'm the Evil Lord of an Intergalactic Empire!","native":"俺は星間国家の悪徳領主!","synonyms":["OreAku","我是星際國家的惡德領主!","Aku Bangsawan Korup di Kekaisaran Antargalaksi!"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":6},"status":"FINISHED"},{"index":18,"id":179694,"mal_id":59360,"title":"Rock wa Lady no Tashinami Deshite","english":"Rock is a Lady’s Modesty","native":"ロックは淑女の嗜みでして","synonyms":["Rock wa Shukujo no Tashinami de shite"],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":3},"status":"FINISHED"},{"index":19,"id":180675,"mal_id":59675,"title":"Apocalypse Hotel","english":"Apocalypse Hotel","native":"アポカリプスホテル","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":9},"status":"FINISHED"},{"index":20,"id":143200,"mal_id":50694,"title":"Summer Pockets","english":"Summer Pockets","native":"Summer Pockets","synonyms":["サマーポケッツ","Samapoke","サマポケ"],"format":"TV","episodes":26,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":7},"status":"FINISHED"},{"index":21,"id":185213,"mal_id":60449,"title":"Kidou Senshi Gundam GQuuuuuuX","english":"Mobile Suit Gundam GQuuuuuuX","native":"機動戦士Gundam GQuuuuuuX","synonyms":["機動戦士Gundam ジークアクス","Mobile Suit Gundam GQuuuuuuX -Beginning-"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":9},"status":"FINISHED"},{"index":22,"id":183275,"mal_id":60157,"title":"Kanpeki Sugite Kawai-ge ga Nai to Konyaku Haki Sareta Seijo wa Ringoku ni Urareru","english":"The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom","native":"完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる","synonyms":["Kanpekiseijo"],"format":"ONA","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":3},"status":"FINISHED"},{"index":23,"id":179979,"mal_id":59466,"title":"Aharen-san wa Hakarenai Season 2","english":"Aharen-san wa Hakarenai Season 2","native":"阿波連さんははかれない season2","synonyms":["Aharen Is Indecipherable 2","Aharen Is Unfathomable 2"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":7},"status":"FINISHED"},{"index":24,"id":178781,"mal_id":59189,"title":"Sentai Daishikkaku 2nd Season","english":"Go! Go! Loser Ranger! Season 2","native":"戦隊大失格 2nd season","synonyms":["Ranger Reject","ขบวนการกำมะลอ","No Longer Rangers","戦隊大失格 2nd シーズン"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"year":2025,"month":4,"day":13},"status":"FINISHED"}],"jikan":[{"index":0,"id":51818,"mal_id":51818,"title":"Enen no Shouboutai: San no Shou","english":"Fire Force Season 3","native":"炎炎ノ消防隊 参ノ章","synonyms":["Enen no Shouboutai 3rd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":5,"month":4,"year":2025},"status":"Finished Airing"},{"index":1,"id":60489,"mal_id":60489,"title":"Takopii no Genzai","english":"Takopi's Original Sin","native":"タコピーの原罪","synonyms":[],"format":"ONA","episodes":6,"season":null,"year":null,"start_date":{"day":28,"month":6,"year":2025},"status":"Finished Airing"},{"index":2,"id":56038,"mal_id":56038,"title":"Lazarus","english":null,"native":"ラザロ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":3,"id":53447,"mal_id":53447,"title":"Tu Bian Yingxiong X","english":"To Be Hero X","native":"凸变英雄X","synonyms":[],"format":"ONA","episodes":24,"season":null,"year":null,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":4,"id":59160,"mal_id":59160,"title":"Wind Breaker Season 2","english":"Wind Breaker Season 2","native":"WIND BREAKER Season 2","synonyms":["Winbre","WBK"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":4,"month":4,"year":2025},"status":"Finished Airing"},{"index":5,"id":59597,"mal_id":59597,"title":"Witch Watch","english":"Witch Watch","native":"ウィッチウォッチ","synonyms":[],"format":"TV","episodes":25,"season":"SPRING","year":2025,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":6,"id":49818,"mal_id":49818,"title":"Guimi Zhi Zhu: Xiaochou Pian","english":"Lord of Mysteries","native":"诡秘之主 小丑篇","synonyms":["Lord of Mysteries: Clown Arc","Lord of the Mysteries","LOTM"],"format":"ONA","episodes":13,"season":null,"year":null,"start_date":{"day":28,"month":6,"year":2025},"status":"Finished Airing"},{"index":7,"id":59452,"mal_id":59452,"title":"Katainaka no Ossan, Kensei ni Naru","english":"From Old Country Bumpkin to Master Swordsman","native":"片田舎のおっさん、剣聖になる","synonyms":[],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":5,"month":4,"year":2025},"status":"Finished Airing"},{"index":8,"id":60146,"mal_id":60146,"title":"Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?","english":"The Beginning After the End","native":"最強の王様、二度目の人生は何をする?","synonyms":["TBATE"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":2,"month":4,"year":2025},"status":"Finished Airing"},{"index":9,"id":60593,"mal_id":60593,"title":"Vigilante: Boku no Hero Academia Illegals","english":"My Hero Academia: Vigilantes","native":"ヴィジランテ -僕のヒーローアカデミア ILLEGALS-","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"day":7,"month":4,"year":2025},"status":"Finished Airing"},{"index":10,"id":58359,"mal_id":58359,"title":"Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru","english":"The Brilliant Healer's New Life in the Shadows","native":"一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる","synonyms":["Yami Healer"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":3,"month":4,"year":2025},"status":"Finished Airing"},{"index":11,"id":60083,"mal_id":60083,"title":"Kowloon Generic Romance","english":"Kowloon Generic Romance","native":"九龍ジェネリックロマンス","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"day":5,"month":4,"year":2025},"status":"Finished Airing"},{"index":12,"id":52709,"mal_id":52709,"title":"Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)","english":"Can a Boy-Girl Friendship Survive?","native":"男女の友情は成立する?(いや、しないっ!!)","synonyms":["Can a Boy and Girl Friendship Hold Up? (No","It Can't!!)","Danjoru"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":4,"month":4,"year":2025},"status":"Finished Airing"},{"index":13,"id":59457,"mal_id":59457,"title":"Haite Kudasai, Takamine-san","english":"Please Put Them On, Takamine-san","native":"履いてください、鷹峰さん","synonyms":["Let Me Put Your Panties On","Takamine-san","Please Put These On","Takamine-san"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":2,"month":4,"year":2025},"status":"Finished Airing"},{"index":14,"id":50738,"mal_id":50738,"title":"Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni","english":"I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2","native":"スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~","synonyms":["Slime Taoshite 300-nen","Shiranai Uchi ni Level Max ni Nattemashita 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":5,"month":4,"year":2025},"status":"Finished Airing"},{"index":15,"id":58131,"mal_id":58131,"title":"Shiunji-ke no Kodomotachi","english":"The Shiunji Family Children","native":"紫雲寺家の子供たち","synonyms":["The Children of Shiunji Family","The Shiunji Siblings"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":8,"month":4,"year":2025},"status":"Finished Airing"},{"index":16,"id":49778,"mal_id":49778,"title":"Kijin Gentoushou","english":"Sword of the Demon Hunter: Kijin Gentosho","native":"鬼人幻燈抄","synonyms":["Sword of the Demon Hunter"],"format":"TV","episodes":24,"season":"SPRING","year":2025,"start_date":{"day":31,"month":3,"year":2025},"status":"Finished Airing"},{"index":17,"id":59636,"mal_id":59636,"title":"Uma Musume: Cinderella Gray","english":"Umamusume: Cinderella Gray","native":"ウマ娘 シンデレラグレイ","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":18,"id":60140,"mal_id":60140,"title":"Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi","english":"The Unaware Atelier Meister","native":"勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話","synonyms":["Kanchigai no Koubou Nushi","The Unaware Atelier Master"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":19,"id":60154,"mal_id":60154,"title":"Ore wa Seikan Kokka no Akutoku Ryoushu!","english":"I'm the Evil Lord of an Intergalactic Empire!","native":"俺は星間国家の悪徳領主!","synonyms":["I am the Villainous Lord of the Interstellar Nation","OreAku"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":6,"month":4,"year":2025},"status":"Finished Airing"},{"index":20,"id":60157,"mal_id":60157,"title":"Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru","english":"The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom","native":"完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる","synonyms":["Kanpekiseijo"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":10,"month":4,"year":2025},"status":"Finished Airing"},{"index":21,"id":59466,"mal_id":59466,"title":"Aharen-san wa Hakarenai Season 2","english":"Aharen-san wa Hakarenai Season 2","native":"阿波連さんははかれない season2","synonyms":["Aharen Is Indecipherable 2nd Season"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":7,"month":4,"year":2025},"status":"Finished Airing"},{"index":22,"id":59189,"mal_id":59189,"title":"Sentai Daishikkaku 2nd Season","english":"Go! Go! Loser Ranger! Season 2","native":"戦隊大失格 2nd Season","synonyms":["Ranger Reject Season 2"],"format":"TV","episodes":12,"season":"SPRING","year":2025,"start_date":{"day":13,"month":4,"year":2025},"status":"Finished Airing"},{"index":23,"id":59360,"mal_id":59360,"title":"Rock wa Lady no Tashinami deshite","english":"Rock Is a Lady's Modesty","native":"ロックは淑女の嗜みでして","synonyms":[],"format":"TV","episodes":13,"season":"SPRING","year":2025,"start_date":{"day":3,"month":4,"year":2025},"status":"Finished Airing"},{"index":24,"id":59833,"mal_id":59833,"title":"Kono Subarashii Sekai ni Shukufuku wo! 3: Bonus Stage","english":"KonoSuba: God's Blessing on This Wonderful World! 3 OVA","native":"この素晴らしい世界に祝福を!3ーBONUS STAGEー","synonyms":[],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":25,"month":4,"year":2025},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-06.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-06.json new file mode 100644 index 0000000..1ecbd59 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-06.json @@ -0,0 +1 @@ +{"shard":6,"seasons":[{"year":2011,"season":"summer","anilist":[{"index":0,"id":10408,"mal_id":10408,"title":"Hotarubi no Mori e","english":"Into the Forest of Fireflies' Light","native":"蛍火の杜へ","synonyms":["To the Forest of Firefly Lights","สู่ป่าแห่งแสงหิ่งห้อย","Lạc Vào Khu Rừng Đom Đóm"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":9,"day":17},"status":"FINISHED"},{"index":1,"id":10161,"mal_id":10161,"title":"NO.6","english":"No.6","native":"NO.6","synonyms":["ナンバー・シックス"],"format":"TV","episodes":11,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":2,"id":10162,"mal_id":10162,"title":"Usagi Drop","english":"Bunny Drop","native":"うさぎドロップ","synonyms":["白兔糖","Un drôle de père","White Rabbit Candy"],"format":"TV","episodes":11,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":3,"id":10110,"mal_id":10110,"title":"Mayo Chiki!","english":"Mayo Chiki!","native":"まよチキ!","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":4,"id":10490,"mal_id":10490,"title":"BLOOD-C","english":"Blood-C","native":"BLOOD-C","synonyms":["ブラッドシー"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":5,"id":10495,"mal_id":10495,"title":"Yuru Yuri","english":"YuruYuri","native":"ゆるゆり","synonyms":["YRYR"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":5},"status":"FINISHED"},{"index":6,"id":10721,"mal_id":10721,"title":"Mawaru Penguindrum","english":"Penguindrum","native":"輪るピングドラム","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":7,"id":8516,"mal_id":8516,"title":"Baka to Test to Shoukanjuu Ni!","english":"Baka and Test - Summon the Beasts 2","native":"バカとテストと召喚獣 にっ!","synonyms":["Baka to Test to Shoukanjuu 2","The Idiot","the Tests","and the Summoned Creatures 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":8,"id":10029,"mal_id":10029,"title":"Coquelicot-zaka kara","english":"From Up on Poppy Hill","native":"コクリコ坂から","synonyms":["Kokuriko-saka kara","Kokuriko-zaka kara","La Colina de las Amapolas","Da Colina Kokuriko","La collina dei papaveri","A Colina das Papoilas","La Colline aux coquelicots","Der Mohnblumenberg","Makowe wzgórze","من أعلى تلة الخشخاش","Møte på valmueåsen","Uppe på vallmokullen"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":16},"status":"FINISHED"},{"index":9,"id":10012,"mal_id":10012,"title":"Carnival Phantasm","english":null,"native":"カーニバル・ファンタズム","synonyms":["Карнавальный Фантазм"],"format":"OVA","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":8,"day":14},"status":"FINISHED"},{"index":10,"id":10589,"mal_id":10589,"title":"NARUTO: Blood Prison","english":"Naruto Shippuden the Movie: Blood Prison","native":"劇場版 NARUTO -ナルト- ブラッド・プリズン","synonyms":["Naruto Movie 8","Naruto Shippuuden Movie 5","Naruto Shippūden la película: Prisión de sangre","Naruto Shippuden Movie 05: La prigione insanguinata"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":30},"status":"FINISHED"},{"index":11,"id":10568,"mal_id":10568,"title":"Kamisama no Memochou","english":"Heaven's Memo Pad","native":"神様のメモ帳","synonyms":["It's the Only NEET Thing to Do","Kami-sama no Memo-chou","Kamisama no Memo-chou","God's Notebook","Kamisama no Memo-chou: It's the Only NEET Thing to Do.","ผ่าคดีลับนักสืบนีท"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":2},"status":"FINISHED"},{"index":12,"id":10379,"mal_id":10379,"title":"Natsume Yuujinchou San","english":"Natsume's Book of Friends Season 3","native":"夏目友人帳 参","synonyms":["Natsume Yuujinchou Three","Natsume Yuujinchou 3","Natsume Yujincho 3","O Livro de Amigos de Natsume 3"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":5},"status":"FINISHED"},{"index":13,"id":10278,"mal_id":10278,"title":"THE IDOLM@STER","english":"The Idol Master","native":"アイドルマスター","synonyms":["The Idolmaster","The iDOLM@STER"],"format":"TV","episodes":25,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":8},"status":"FINISHED"},{"index":14,"id":9135,"mal_id":9135,"title":"Hagane no Renkinjutsushi: Milos no Seinaru Hoshi","english":"Fullmetal Alchemist: The Sacred Star of Milos","native":"鋼の錬金術師 嘆きの丘の聖なる星","synonyms":["Fullmetal Alchemist Movie 2","Hagane no Renkinjutsushi Movie 2","FMA Movie 2","Fullmetal Alchemist: La Estrella Sagrada de Milos","钢之炼金术师 叹息之丘的圣星","Fullmetal Alchemist – Święta Gwiazda Milos"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":2},"status":"FINISHED"},{"index":15,"id":8915,"mal_id":8915,"title":"Dantalian no Shoka","english":"The Mystic Archives of Dantalian","native":"ダンタリアンの書架","synonyms":["Bibliotheca Mystica de Dantalian","Dantalian's Bookshelf"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":16},"status":"FINISHED"},{"index":16,"id":10321,"mal_id":10321,"title":"Uta no☆Prince-sama♪ Maji LOVE 1000%","english":"Uta no Prince Sama","native":"うたの☆プリンスさまっ♪ マジLOVE1000%","synonyms":["Uta no Prince-sama: Maji Love 1000%","UtaPri"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":3},"status":"FINISHED"},{"index":17,"id":10209,"mal_id":10209,"title":"Kore wa Zombie desu ka? OVA","english":"Is this a Zombie? OVA","native":"これはゾンビですか? OVA","synonyms":["เจ้านี่เหรอซอมบี้ OVA"],"format":"OVA","episodes":2,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":6,"day":10},"status":"FINISHED"},{"index":18,"id":9790,"mal_id":9790,"title":"Sora no Otoshimono: Tokeijikake no Angeloid","english":"Heaven's Lost Property the Movie: The Angeloid of Clockwork","native":"劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド)","synonyms":["Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid","Sora no Otoshimono: The Movie","Lost Property of the Sky Movie","Misplaced by Heaven"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":6,"day":25},"status":"FINISHED"},{"index":19,"id":10805,"mal_id":10805,"title":"Kami nomi zo Shiru Sekai: 4-nin to Idol","english":"The World God Only Knows: 4 Girls and an Idol","native":"神のみぞ知るセカイ 4人とアイドル","synonyms":["Kami nomi zo Shiru Sekai: Yonin to Idol","Kaminomi OVA","Kami Nomi zo Shiru Sekai OVA"],"format":"OVA","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":9,"day":16},"status":"FINISHED"},{"index":20,"id":10049,"mal_id":10049,"title":"Nurarihyon no Mago: Sennen Makyou","english":"Nura: Rise of the Yokai Clan - Demon Capital","native":"ぬらりひょんの孫 千年魔京","synonyms":["Nurarihyon no Mago 2","The Grandson of Nurarihyon 2","Grandchild of Nurarihyon 2","Nura: Rise of the Yokai Clan: Demon Capital"],"format":"TV","episodes":24,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":3},"status":"FINISHED"},{"index":21,"id":9750,"mal_id":9750,"title":"Itsuka Tenma no Kuro Usagi","english":"A Dark Rabbit has Seven Lives","native":"いつか天魔の黒ウサギ","synonyms":["Itsuka Tenma no Kuro-Usagi","Itsuten","Itsu-ten"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":9},"status":"FINISHED"},{"index":22,"id":11077,"mal_id":11077,"title":"HELLSING: THE DAWN","english":null,"native":"HELLSING:THE DAWN","synonyms":["Hellsing: The Dawn: A supplementary of HELLSING","Hellsing OVA Specials","Hellsing Ultimate Specials","漫画:THE DAWN","ヘルシング: THE DAWN"],"format":"SPECIAL","episodes":3,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":27},"status":"FINISHED"},{"index":23,"id":10686,"mal_id":10686,"title":"NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!","english":null,"native":"NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!!","synonyms":["Naruto Shippuden: Chuunin Exam on Fire! Naruto vs. Konohamaru!"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":7,"day":30},"status":"FINISHED"},{"index":24,"id":10389,"mal_id":10389,"title":"Momo e no Tegami","english":"A Letter to Momo","native":"ももへの手紙","synonyms":["Una Carta para Momo","Lettre à Momo"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2011,"start_date":{"year":2011,"month":9,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":10408,"mal_id":10408,"title":"Hotarubi no Mori e","english":"Into the Forest of Fireflies' Light","native":"蛍火の杜へ","synonyms":["The Light of a Firefly Forest"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":17,"month":9,"year":2011},"status":"Finished Airing"},{"index":1,"id":10162,"mal_id":10162,"title":"Usagi Drop","english":"Bunny Drop","native":"うさぎドロップ","synonyms":["Usagi Drop"],"format":"TV","episodes":11,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":2,"id":10110,"mal_id":10110,"title":"Mayo Chiki!","english":"Mayo Chiki!","native":"まよチキ!","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":3,"id":10161,"mal_id":10161,"title":"No.6","english":"No. 6","native":"NO.6[ナンバー・シックス]","synonyms":["Number Six","Number 6","No. Six"],"format":"TV","episodes":11,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":4,"id":10490,"mal_id":10490,"title":"Blood-C","english":"Blood-C","native":"ブラッドシー","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":5,"id":8516,"mal_id":8516,"title":"Baka to Test to Shoukanjuu Ni!","english":"Baka & Test – Summon the Beasts 2","native":"バカとテストと召喚獣 にっ!","synonyms":["Baka to Test to Shoukanjuu 2","The Idiot","the Tests","and the Summoned Creatures 2","Baka and Test - Summon the Beasts","Baka to Test to Shokanju 2","BakaTest 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":6,"id":10495,"mal_id":10495,"title":"Yuru Yuri","english":"YuruYuri: Happy Go Lily","native":"ゆるゆり","synonyms":["YRYR","Yuruyuri"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":5,"month":7,"year":2011},"status":"Finished Airing"},{"index":7,"id":10721,"mal_id":10721,"title":"Mawaru Penguindrum","english":"Penguindrum","native":"輪るピングドラム","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":8,"id":10589,"mal_id":10589,"title":"Naruto: Shippuuden Movie 5 - Blood Prison","english":"Naruto Shippuden the Movie 5: Blood Prison","native":"劇場版NARUTO-ナルト- ブラッド・プリズン","synonyms":["Naruto Movie 8","Gekijouban Naruto: Blood Prison"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":7,"year":2011},"status":"Finished Airing"},{"index":9,"id":10379,"mal_id":10379,"title":"Natsume Yuujinchou San","english":"Natsume's Book of Friends Season 3","native":"夏目友人帳 参","synonyms":["Natsume Yuujinchou Three","Natsume Yuujinchou 3","Natsume Yujincho 3"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"day":5,"month":7,"year":2011},"status":"Finished Airing"},{"index":10,"id":10568,"mal_id":10568,"title":"Kamisama no Memochou","english":"Heaven's Memo Pad","native":"神様のメモ帳","synonyms":["It's the Only NEET Thing to Do","Kami-sama no Memo-chou","Kami-sama no Memo-chou","God's Notebook","Notebook of God"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":2,"month":7,"year":2011},"status":"Finished Airing"},{"index":11,"id":10029,"mal_id":10029,"title":"Coquelicot-zaka kara","english":"From Up on Poppy Hill","native":"コクリコ坂から","synonyms":["Coquelicot-zaka kara","Kokuriko-saka kara","Kokuriko-zaka kara","Coquelicot Saka kara","Kokurikozaka kara"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":7,"year":2011},"status":"Finished Airing"},{"index":12,"id":10012,"mal_id":10012,"title":"Carnival Phantasm","english":null,"native":"カーニバル・ファンタズム","synonyms":[],"format":"OVA","episodes":12,"season":null,"year":null,"start_date":{"day":14,"month":8,"year":2011},"status":"Finished Airing"},{"index":13,"id":10321,"mal_id":10321,"title":"Uta no☆Prince-sama♪ Maji Love 1000%","english":"Uta no Prince Sama","native":"うたの☆プリンスさまっ♪ マジLOVE1000%","synonyms":["Uta no Prince-sama Maji Love 1000%","UtaPri"],"format":"TV","episodes":13,"season":"SUMMER","year":2011,"start_date":{"day":3,"month":7,"year":2011},"status":"Finished Airing"},{"index":14,"id":9135,"mal_id":9135,"title":"Fullmetal Alchemist: The Sacred Star of Milos","english":"Fullmetal Alchemist: The Sacred Star of Milos","native":"劇場版 鋼の錬金術師 嘆きの丘(ミロス)の聖なる星","synonyms":["Fullmetal Alchemist: Milos no Seinaru Hoshi","Fullmetal Alchemist Movie 2","Hagane no Renkinjutsushi Movie 2","FMA Movie 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":7,"year":2011},"status":"Finished Airing"},{"index":15,"id":10049,"mal_id":10049,"title":"Nurarihyon no Mago: Sennen Makyou","english":"Nura: Rise of the Yokai Clan - Demon Capital","native":"ぬらりひょんの孫 千年魔京","synonyms":["Nurarihyon no Mago 2","The Grandson of Nurarihyon 2","Grandchild of Nurarihyon 2"],"format":"TV","episodes":24,"season":"SUMMER","year":2011,"start_date":{"day":3,"month":7,"year":2011},"status":"Finished Airing"},{"index":16,"id":10278,"mal_id":10278,"title":"The iDOLM@STER","english":"THE IDOLM@STER","native":"アイドルマスター","synonyms":["The Idolmaster"],"format":"TV","episodes":25,"season":"SUMMER","year":2011,"start_date":{"day":8,"month":7,"year":2011},"status":"Finished Airing"},{"index":17,"id":8915,"mal_id":8915,"title":"Dantalian no Shoka","english":"The Mystic Archives of Dantalian","native":"ダンタリアンの書架","synonyms":["Bibliotheca Mystica de Dantalian","Dantalian's Bookshelf"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":16,"month":7,"year":2011},"status":"Finished Airing"},{"index":18,"id":9750,"mal_id":9750,"title":"Itsuka Tenma no Kuro Usagi","english":"A Dark Rabbit has Seven Lives","native":"いつか天魔の黒ウサギ","synonyms":["ItsuTen"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":9,"month":7,"year":2011},"status":"Finished Airing"},{"index":19,"id":10897,"mal_id":10897,"title":"Boku wa Tomodachi ga Sukunai: Yaminabe wa Bishoujo ga Zannen na Nioi","english":"Haganai: Black Hotpot Gives Girls a Bad Smell","native":"僕は友達が少ない 闇鍋は美少女が残念な臭い","synonyms":["Boku wa Tomodachi ga Sukunai Episode 0","Boku wa Tomodachi ga Sukunai OVA","Haganai OVA","I Don't Have Many Friends OVA","Boku ha Tomodachi ga Sukunai OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":9,"year":2011},"status":"Finished Airing"},{"index":20,"id":10805,"mal_id":10805,"title":"Kami nomi zo Shiru Sekai: 4-nin to Idol","english":"The World God Only Knows: Four Girls and an Idol","native":"神のみぞ知るセカイ 4人とアイドル","synonyms":["Kami nomi zo Shiru Sekai: Yonin to Idol","Kaminomi OVA","Kami Nomi zo Shiru Sekai OVA","The World God Only Knows: Four People and an Idol"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":9,"year":2011},"status":"Finished Airing"},{"index":21,"id":11077,"mal_id":11077,"title":"Hellsing: The Dawn","english":null,"native":"HELLSING THE DAWN","synonyms":["Hellsing: The Dawn - A supplementary of HELLSING","Hellsing OVA Specials","Hellsing Ultimate Specials","Drifters"],"format":"Special","episodes":3,"season":null,"year":null,"start_date":{"day":27,"month":7,"year":2011},"status":"Finished Airing"},{"index":22,"id":10611,"mal_id":10611,"title":"R-15","english":null,"native":"あーるじゅうご","synonyms":["R-15"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":10,"month":7,"year":2011},"status":"Finished Airing"},{"index":23,"id":10491,"mal_id":10491,"title":"Higurashi no Naku Koro ni Kira","english":null,"native":"ひぐらしのなく頃に煌","synonyms":["Higurashi no Naku Koro ni OVA 2","When They Cry Glitter","Higurashi: When They Cry – Kira"],"format":"OVA","episodes":4,"season":null,"year":null,"start_date":{"day":21,"month":7,"year":2011},"status":"Finished Airing"},{"index":24,"id":10465,"mal_id":10465,"title":"Manyuu Hikenchou","english":"Manyu Scroll","native":"魔乳秘剣帖","synonyms":["Magic Breast Secret Sword Scroll"],"format":"TV","episodes":12,"season":"SUMMER","year":2011,"start_date":{"day":11,"month":7,"year":2011},"status":"Finished Airing"}]},{"year":2013,"season":"summer","anilist":[{"index":0,"id":16592,"mal_id":16592,"title":"Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation","english":"Danganronpa: The Animation","native":"ダンガンロンパ 希望の学園と絶望の高校生 The Animation","synonyms":["ダンガンロンパ The Animation","Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":23},"status":"FINISHED"},{"index":1,"id":15451,"mal_id":15451,"title":"High School DxD NEW","english":null,"native":"ハイスクールD×D NEW","synonyms":["High School DxD 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":29},"status":"FINISHED"},{"index":2,"id":18507,"mal_id":18507,"title":"Free!","english":"Free! -Iwatobi Swim Club-","native":"Free!","synonyms":["フリー!"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":26},"status":"FINISHED"},{"index":3,"id":17074,"mal_id":17074,"title":"Monogatari Series: Second Season","english":"Monogatari Series Second Season","native":"〈物語〉シリーズ セカンドシーズン","synonyms":["Nekomonogatari White","Kabukimonogatari","Otorimonogatari","Onimonogatari","Koimonogatari"],"format":"TV","episodes":26,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":7},"status":"FINISHED"},{"index":4,"id":16742,"mal_id":16742,"title":"Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!","english":"WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!","native":"私がモテないのはどう考えてもお前らが悪い!","synonyms":["Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!","It's Not My Fault That I'm Not Popular!","WataMote"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":9},"status":"FINISHED"},{"index":5,"id":11633,"mal_id":11633,"title":"Blood Lad","english":"Blood Lad","native":"ブラッドラッド","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":8},"status":"FINISHED"},{"index":6,"id":16662,"mal_id":16662,"title":"Kaze Tachinu","english":"The Wind Rises","native":"風立ちぬ","synonyms":["El Viento se Levanta","Si Alza il Vento","Szél támad","Zrywa się wiatr","Wie der Wind sich hebt","Le vent se lève","Vidas ao vento","Vinden Stiger","Det Blåser upp en Vind","Vindurinn Rís","바람은 분다"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":20},"status":"FINISHED"},{"index":7,"id":16762,"mal_id":16762,"title":"Mirai Nikki: Redial","english":"The Future Diary: Redial","native":"未来日記リダイヤル","synonyms":["Mirai Nikki OVA"],"format":"OVA","episodes":1,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":19},"status":"FINISHED"},{"index":8,"id":15037,"mal_id":15037,"title":"Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou","english":"Corpse Party","native":"コープスパーティー Tortured Souls -暴虐された魂の呪叫-","synonyms":["Corpse Party: Tortured Souls – The Curse of Tortured Souls"],"format":"OVA","episodes":4,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":24},"status":"FINISHED"},{"index":9,"id":16934,"mal_id":16934,"title":"Chuunibyou demo Koi ga Shitai!: Kirameki no… Slapstick Noel","english":"Love, Chunibyo & Other Delusions: Glimmering...Explosive Festival (Slapstick Noel)","native":"中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル)","synonyms":[],"format":"OVA","episodes":1,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":19},"status":"FINISHED"},{"index":10,"id":15039,"mal_id":15039,"title":"Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie","english":"Anohana the Movie: The Flower We Saw That Day","native":"劇場版 あの日見た花の名前を僕達はまだ知らない。","synonyms":["ดอกไม้ มิตรภาพ และความทรงจำ เดอะมูฟวี่","Anohana: The Flower We Saw That Day Movie"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":8,"day":31},"status":"FINISHED"},{"index":11,"id":14829,"mal_id":14829,"title":"Fate/kaleid liner Prisma☆Illya","english":"Fate/kaleid liner Prisma☆Illya","native":"Fate/kaleid liner プリズマ☆イリヤ","synonyms":["Судьба: Девочка-волшебница Иллия"],"format":"ONA","episodes":10,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":6},"status":"FINISHED"},{"index":12,"id":16918,"mal_id":16918,"title":"Gin no Saji","english":"Silver Spoon","native":"銀の匙","synonyms":["Ginsaji"],"format":"TV","episodes":11,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":11},"status":"FINISHED"},{"index":13,"id":16706,"mal_id":16706,"title":"Kami nomi zo Shiru Sekai: Megami-hen","english":"The World God Only Knows: Goddesses","native":"神のみぞ知るセカイ 女神篇","synonyms":["Kami nomi zo Shiru Sekai III","Kami nomi zo Shiru Sekai 3","Kaminomi III","Kaminomi 3","Que sa volonté soit faite III"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":9},"status":"FINISHED"},{"index":14,"id":15335,"mal_id":15335,"title":"Gintama: Kanketsu-hen - Yorozuya yo Eien Nare","english":"Gintama: The Final Chapter - Be Forever Yorozuya","native":"劇場版 銀魂 完結篇 万事屋よ永遠なれ","synonyms":["Gintama Movie 2","Gintama the Final Movie"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":6},"status":"FINISHED"},{"index":15,"id":18119,"mal_id":18119,"title":"Servant x Service","english":"Servant x Service","native":"サーバント×サービス","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":5},"status":"FINISHED"},{"index":16,"id":16353,"mal_id":16353,"title":"Love Lab","english":"Love Lab","native":"恋愛ラボ","synonyms":["Renai Lab"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":30},"status":"FINISHED"},{"index":17,"id":16732,"mal_id":16732,"title":"Kiniro Mosaic","english":"KINMOZA!","native":"きんいろモザイク","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":23},"status":"FINISHED"},{"index":18,"id":17909,"mal_id":17909,"title":"Uchouten Kazoku","english":"The Eccentric Family","native":"有頂天家族","synonyms":["Uchoten Kazoku"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":7},"status":"FINISHED"},{"index":19,"id":16009,"mal_id":16009,"title":"Kamisama no Inai Nichiyoubi","english":"Sunday Without God","native":"神さまのいない日曜日","synonyms":["The Sunday without God","Kami-Nai","Kaminai","วันอาทิตย์ที่ไม่มีพระเจ้า"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":29},"status":"FINISHED"},{"index":20,"id":18229,"mal_id":18229,"title":"Gatchaman Crowds","english":null,"native":"ガッチャマン クラウズ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":13},"status":"FINISHED"},{"index":21,"id":18857,"mal_id":18857,"title":"Ore no Imouto ga Konna ni Kawaii Wake ga Nai. (ONA)","english":"Oreimo 2 (ONA)","native":"俺の妹がこんなに可愛いわけがない。","synonyms":["My Little Sister Can't Be This Cute 2 Specials","น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 ตอนพิเศษ"],"format":"ONA","episodes":3,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":8,"day":18},"status":"FINISHED"},{"index":22,"id":16157,"mal_id":16157,"title":"Choujigen Game Neptune THE ANIMATION","english":"Hyperdimension Neptunia","native":"超次元ゲイム ネプテューヌ THE ANIMATION","synonyms":["Kami Jigen Game Neptune V","Hyperdimension Neptunia Victory","Hyperdimension Neptunia: The Animation","초차원 게임 넵튠 : The Animation"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":6,"day":22},"status":"FINISHED"},{"index":23,"id":17831,"mal_id":17831,"title":"Inu to Hasami wa Tsukaiyou","english":"Dog & Scissors","native":"犬とハサミは使いよう","synonyms":["InuHasa"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":2},"status":"FINISHED"},{"index":24,"id":17741,"mal_id":17741,"title":"Kimi no Iru Machi","english":"A Town Where You Live","native":"君のいる町","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"year":2013,"month":7,"day":13},"status":"FINISHED"}],"jikan":[{"index":0,"id":16592,"mal_id":16592,"title":"Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation","english":"Danganronpa: The Animation","native":"ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION","synonyms":["Dangan Ronpa: The Animation"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"day":5,"month":7,"year":2013},"status":"Finished Airing"},{"index":1,"id":15451,"mal_id":15451,"title":"High School DxD New","english":"High School DxD New","native":"ハイスクールD×D NEW","synonyms":["High School DxD Dai 2-ki","High School DxD 2nd Season","High School DxD Second Season","Highschool DxD 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":7,"month":7,"year":2013},"status":"Finished Airing"},{"index":2,"id":18507,"mal_id":18507,"title":"Free!","english":"Free! - Iwatobi Swim Club","native":"Free!","synonyms":["フリー!"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":4,"month":7,"year":2013},"status":"Finished Airing"},{"index":3,"id":11633,"mal_id":11633,"title":"Blood Lad","english":"Blood Lad","native":"ブラッドラッド","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2013,"start_date":{"day":8,"month":7,"year":2013},"status":"Finished Airing"},{"index":4,"id":17074,"mal_id":17074,"title":"Monogatari Series: Second Season","english":"Monogatari Series: Second Season","native":"〈物語〉シリーズ セカンドシーズン","synonyms":["Nekomonogatari: Shiro","Kabukimonogatari","Otorimonogatari","Onimonogatari","Koimonogatari"],"format":"TV","episodes":26,"season":"SUMMER","year":2013,"start_date":{"day":7,"month":7,"year":2013},"status":"Finished Airing"},{"index":5,"id":16742,"mal_id":16742,"title":"Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!","english":"WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!","native":"私がモテないのはどう考えてもお前らが悪い!","synonyms":["Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!","It's Not My Fault That I'm Not Popular!","WataMote"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":9,"month":7,"year":2013},"status":"Finished Airing"},{"index":6,"id":15037,"mal_id":15037,"title":"Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou","english":"Corpse Party: Tortured Souls","native":"コープスパーティー Tortured Souls -暴虐された魂の呪叫-","synonyms":["Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou"],"format":"OVA","episodes":4,"season":null,"year":null,"start_date":{"day":24,"month":7,"year":2013},"status":"Finished Airing"},{"index":7,"id":16662,"mal_id":16662,"title":"Kaze Tachinu","english":"The Wind Rises","native":"風立ちぬ","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":7,"year":2013},"status":"Finished Airing"},{"index":8,"id":16706,"mal_id":16706,"title":"Kami nomi zo Shiru Sekai: Megami-hen","english":"The World God Only Knows: Goddesses","native":"神のみぞ知るセカイ 女神篇","synonyms":["Kami nomi zo Shiru Sekai III","Kami nomi zo Shiru Sekai 3","Kaminomi III","Kaminomi 3","The World God Only Knows III","The World God Only Knows 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":9,"month":7,"year":2013},"status":"Finished Airing"},{"index":9,"id":15039,"mal_id":15039,"title":"Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie","english":"Anohana: The Flower We Saw That Day The Movie","native":"劇場版 あの日見た花の名前を僕達はまだ知らない。","synonyms":["AnoHana Movie","We Still Don't Know the Name of the Flower We Saw That Day. Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":31,"month":8,"year":2013},"status":"Finished Airing"},{"index":10,"id":16918,"mal_id":16918,"title":"Gin no Saji","english":"Silver Spoon","native":"銀の匙","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2013,"start_date":{"day":12,"month":7,"year":2013},"status":"Finished Airing"},{"index":11,"id":14829,"mal_id":14829,"title":"Fate/kaleid liner Prisma☆Illya","english":"Fate/Kaleid Liner Prisma Illya","native":"Fate/kaleid liner プリズマ☆イリヤ","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2013,"start_date":{"day":13,"month":7,"year":2013},"status":"Finished Airing"},{"index":12,"id":18753,"mal_id":18753,"title":"Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA","english":"My Teen Romantic Comedy SNAFU OVA","native":"やはり俺の青春ラブコメはまちがっている。OVA「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」","synonyms":["Oregairu OVA","My youth romantic comedy is wrong as I expected. OVA","Yahari Ore no Seishun Love Comedy wa Machigatteiru.: Kochira Toshite mo Karera Kanojora no Yukusue ni Sachiookaran Koto wo Negawazaru wo Enai."],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":9,"year":2013},"status":"Finished Airing"},{"index":13,"id":15335,"mal_id":15335,"title":"Gintama Movie 2: Kanketsu-hen - Yorozuya yo Eien Nare","english":"Gintama: The Movie: The Final Chapter: Be Forever Yorozuya","native":"劇場版 銀魂 完結篇 万事屋よ永遠なれ","synonyms":["Gintama: The Final Chapter - Be Forever Yorozuya","Gintama Movie 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":7,"year":2013},"status":"Finished Airing"},{"index":14,"id":18119,"mal_id":18119,"title":"Servant x Service","english":"Servant x Service","native":"サーバント×サービス","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"day":6,"month":7,"year":2013},"status":"Finished Airing"},{"index":15,"id":16009,"mal_id":16009,"title":"Kamisama no Inai Nichiyoubi","english":"Sunday Without God","native":"神さまのいない日曜日","synonyms":["The Sunday Without God","Kami-Nai","Kami-sama no Inai Nichiyoubi"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":7,"month":7,"year":2013},"status":"Finished Airing"},{"index":16,"id":16353,"mal_id":16353,"title":"Love Lab","english":"Love Lab","native":"恋愛ラボ","synonyms":["Renai Lab"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"day":5,"month":7,"year":2013},"status":"Finished Airing"},{"index":17,"id":15605,"mal_id":15605,"title":"Brothers Conflict","english":"Brothers Conflict","native":"BROTHERS CONFLICT","synonyms":["BroCon"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":2,"month":7,"year":2013},"status":"Finished Airing"},{"index":18,"id":16732,"mal_id":16732,"title":"Kiniro Mosaic","english":"KINMOZA!","native":"きんいろモザイク","synonyms":["Kinmosa","Golden Mosaic","Kin-iro Mosaic"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":6,"month":7,"year":2013},"status":"Finished Airing"},{"index":19,"id":17909,"mal_id":17909,"title":"Uchouten Kazoku","english":"The Eccentric Family","native":"有頂天家族","synonyms":["Uchoten Kazoku"],"format":"TV","episodes":13,"season":"SUMMER","year":2013,"start_date":{"day":7,"month":7,"year":2013},"status":"Finished Airing"},{"index":20,"id":18229,"mal_id":18229,"title":"Gatchaman Crowds","english":"Gatchaman Crowds","native":"ガッチャマン クラウズ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":13,"month":7,"year":2013},"status":"Finished Airing"},{"index":21,"id":17741,"mal_id":17741,"title":"Kimi no Iru Machi","english":"A Town Where You Live","native":"君のいる町","synonyms":["Kimi no Iru Machi"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":13,"month":7,"year":2013},"status":"Finished Airing"},{"index":22,"id":16157,"mal_id":16157,"title":"Choujigen Game Neptune The Animation","english":"Hyperdimension Neptunia","native":"超次元ゲイム ネプテューヌ THE ANIMATION","synonyms":["Kami Jigen Game Neptune V","Hyperdimension Neptunia Victory"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":12,"month":7,"year":2013},"status":"Finished Airing"},{"index":23,"id":17831,"mal_id":17831,"title":"Inu to Hasami wa Tsukaiyou","english":"Dog & Scissors","native":"犬とハサミは使いよう","synonyms":["InuHasa","Dog and Scissors"],"format":"TV","episodes":12,"season":"SUMMER","year":2013,"start_date":{"day":2,"month":7,"year":2013},"status":"Finished Airing"},{"index":24,"id":17389,"mal_id":17389,"title":"Kingdom 2nd Season","english":"Kingdom Season 2","native":"キングダム 第2シリーズ","synonyms":["Kingdom Hisho Hen","Kingdom: Dai 2 Series"],"format":"TV","episodes":39,"season":"SUMMER","year":2013,"start_date":{"day":8,"month":6,"year":2013},"status":"Finished Airing"}]},{"year":2015,"season":"summer","anilist":[{"index":0,"id":20997,"mal_id":28999,"title":"Charlotte","english":null,"native":"Charlotte(シャーロット)","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":5},"status":"FINISHED"},{"index":1,"id":20832,"mal_id":29803,"title":"Overlord","english":"Overlord","native":"オーバーロード","synonyms":["Over Lord","โอเวอร์ลอร์ด","โอเวอร์ ลอร์ด จอมมารพิชิตโลก"],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":7},"status":"FINISHED"},{"index":2,"id":20807,"mal_id":30240,"title":"Prison School","english":"Prison School","native":"監獄学園〈プリズンスクール〉","synonyms":["โรงเรียนคุกนรก","Kangoku Gakuen"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":11},"status":"FINISHED"},{"index":3,"id":21175,"mal_id":30694,"title":"Dragon Ball Super","english":"Dragon Ball Super","native":"ドラゴンボール超","synonyms":["DBS","Dragonball Super","דרגון בול סופר","Драконий жемчуг: Супер"],"format":"TV","episodes":131,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":5},"status":"FINISHED"},{"index":4,"id":20910,"mal_id":29786,"title":"Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai","english":"SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist","native":"下ネタという概念が存在しない退屈な世界","synonyms":["Shimoseka"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":4},"status":"FINISHED"},{"index":5,"id":20994,"mal_id":28907,"title":"GATE: Jieitai Kanochi nite, Kaku Tatakaeri","english":"Gate","native":"GATE 自衛隊 彼の地にて、斯く戦えり","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":4},"status":"FINISHED"},{"index":6,"id":21058,"mal_id":30123,"title":"Akagami no Shirayuki-hime","english":"Snow White with the Red Hair","native":"赤髪の白雪姫","synonyms":["Shirayuki aux cheveux rouges","สโนว์ไวท์ผมแดง","Красноволосая Белоснежка","Красноволосая принцесса Белоснежка","Die rothaarige Schneeprinzessin","Blancanieves pelirroja","Shirayuki: Śnieżka o czerwonych włosach"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":7},"status":"FINISHED"},{"index":7,"id":20987,"mal_id":28825,"title":"Himouto! Umaru-chan","english":"Himouto! Umaru-chan","native":"干物妹!うまるちゃん","synonyms":["干物妹!小埋"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":9},"status":"FINISHED"},{"index":8,"id":21093,"mal_id":30307,"title":"Monster Musume no Iru Nichijou","english":"Monster Musume: Everyday Life With Monster Girls","native":"モンスター娘のいる日常","synonyms":["MonMusu","Die Monster Mädchen","บันทึกอุ่นรักสาวมอนสเตอร์"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":8},"status":"FINISHED"},{"index":9,"id":20773,"mal_id":25183,"title":"GANGSTA.","english":"GANGSTA.","native":"GANGSTA.","synonyms":["ギャングスタ"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":2},"status":"FINISHED"},{"index":10,"id":20955,"mal_id":28497,"title":"Rokka no Yuusha","english":"Rokka -Braves of the Six Flowers-","native":"六花の勇者","synonyms":["ผู้กล้าแห่งบุปผา"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":5},"status":"FINISHED"},{"index":11,"id":20754,"mal_id":24765,"title":"Gakkou Gurashi!","english":"SCHOOL-LIVE!","native":"がっこうぐらし!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":9},"status":"FINISHED"},{"index":12,"id":20849,"mal_id":27631,"title":"GOD EATER","english":"God Eater","native":"GOD EATER","synonyms":["ゴッドイーター"],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":12},"status":"FINISHED"},{"index":13,"id":20981,"mal_id":28805,"title":"Bakemono no Ko","english":"The Boy and The Beast","native":"バケモノの子","synonyms":["El niño y la bestia","O Rapaz e o Monstro","El nen i la bèstia","Учень чудовиська","Ученик чудовища","Berniukas ir Pabaisa","Құбыжықтың шәкірті","Băiatul și bestia","Əjdahanın şagirdi","Odjuret och hans lärling","Le Garçon et la Bête"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":11},"status":"FINISHED"},{"index":14,"id":21220,"mal_id":28755,"title":"BORUTO: NARUTO THE MOVIE","english":"Boruto: Naruto the Movie","native":"BORUTO -NARUTO THE MOVIE-","synonyms":[],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":8,"day":7},"status":"FINISHED"},{"index":15,"id":20968,"mal_id":28725,"title":"Kokoro ga Sakebitagatterun da.","english":"The Anthem of the Heart","native":"心が叫びたがってるんだ。","synonyms":["Kokosake","El Himno del Corazón","The Anthem of the Heart: Beautiful Word Beautiful World","Jun La voix du Coeur","เมื่อใจกู่ร้องอยากบอกโลก"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":9,"day":19},"status":"FINISHED"},{"index":16,"id":20879,"mal_id":27831,"title":"Durarara!!x2 Ten","english":"Durarara!! X2 The Second Arc","native":"デュラララ!!×2 転","synonyms":["DRRR!! 2 Ten","דורארארה!!2x תפנית"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":4},"status":"FINISHED"},{"index":17,"id":20984,"mal_id":28819,"title":"Okusama ga Seitokaichou!","english":"My Wife is the Student Council President","native":"おくさまが生徒会長!","synonyms":["Okusama ga Seito Kaichou!"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":2},"status":"FINISHED"},{"index":18,"id":21033,"mal_id":29785,"title":"Jitsu wa Watashi wa","english":"Actually, I Am","native":"実は私は","synonyms":["จุ๊จุ๊ จะบอกว่าฉันคือ…","My Monster Secret","Na verdade, eu sou...","En realidad, soy..."],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":7},"status":"FINISHED"},{"index":19,"id":21132,"mal_id":30458,"title":"Tokyo Ghoul: [JACK]","english":null,"native":"東京喰種トーキョーグール [JACK]","synonyms":["Tokyo Kushu: Jack"],"format":"OVA","episodes":1,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":9,"day":30},"status":"FINISHED"},{"index":20,"id":20995,"mal_id":28979,"title":"To LOVE-Ru Darkness 2nd","english":"To Love Ru Darkness 2","native":"To LOVEる -とらぶる- ダークネス2nd","synonyms":["To LOVE-Ru Trouble Darkness 2nd"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":7},"status":"FINISHED"},{"index":21,"id":20694,"mal_id":23623,"title":"Non Non Biyori: Repeat","english":"Non Non Biyori Repeat","native":"のんのんびより りぴーと","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":7},"status":"FINISHED"},{"index":22,"id":20774,"mal_id":25283,"title":"Kuusen Madoushi Kouhosei no Kyoukan","english":"Sky Wizards Academy","native":"空戦魔導士候補生の教官","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":9},"status":"FINISHED"},{"index":23,"id":20741,"mal_id":24655,"title":"Date A Live Movie: Mayuri Judgement","english":"Date A Live Mayuri Judgement","native":"劇場版デート・ア・ライブ 万由里ジャッジメント","synonyms":["Date A Live Movie: Mayuri Judgment","พิชิตรัก พิทักษ์โลก : เดอะมูฟวี่ คำพิพากษาของมายูริ"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":8,"day":22},"status":"FINISHED"},{"index":24,"id":20819,"mal_id":25879,"title":"WORKING!!!","english":"Wagnaria!!3","native":"WORKING!!!","synonyms":["ワーキング!!!"],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"year":2015,"month":7,"day":5},"status":"FINISHED"}],"jikan":[{"index":0,"id":28999,"mal_id":28999,"title":"Charlotte","english":"Charlotte","native":"Charlotte(シャーロット)","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"day":5,"month":7,"year":2015},"status":"Finished Airing"},{"index":1,"id":29803,"mal_id":29803,"title":"Overlord","english":"Overlord","native":"オーバーロード","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"day":7,"month":7,"year":2015},"status":"Finished Airing"},{"index":2,"id":30240,"mal_id":30240,"title":"Prison School","english":"Prison School","native":"監獄学園〈プリズンスクール〉","synonyms":["Kangoku Gakuen"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":11,"month":7,"year":2015},"status":"Finished Airing"},{"index":3,"id":30694,"mal_id":30694,"title":"Dragon Ball Super","english":"Dragon Ball Super","native":"ドラゴンボール超(スーパー)","synonyms":["Dragon Ball Chou","DB Super","DBS"],"format":"TV","episodes":131,"season":"SUMMER","year":2015,"start_date":{"day":5,"month":7,"year":2015},"status":"Finished Airing"},{"index":4,"id":28907,"mal_id":28907,"title":"Gate: Jieitai Kanochi nite, Kaku Tatakaeri","english":"GATE","native":"GATE(ゲート)自衛隊 彼の地にて、斯く戦えり","synonyms":["Gate: Thus the JSDF Fought There!"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":4,"month":7,"year":2015},"status":"Finished Airing"},{"index":5,"id":29786,"mal_id":29786,"title":"Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai","english":"SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist","native":"下ネタという概念が存在しない退屈な世界","synonyms":["Shimoseka"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":4,"month":7,"year":2015},"status":"Finished Airing"},{"index":6,"id":30307,"mal_id":30307,"title":"Monster Musume no Iru Nichijou","english":"Monster Musume: Everyday Life with Monster Girls","native":"モンスター娘のいる日常","synonyms":["MonMusu"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":8,"month":7,"year":2015},"status":"Finished Airing"},{"index":7,"id":28825,"mal_id":28825,"title":"Himouto! Umaru-chan","english":"Himouto! Umaru-chan","native":"干物妹!うまるちゃん","synonyms":["My Two-Faced Little Sister"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":9,"month":7,"year":2015},"status":"Finished Airing"},{"index":8,"id":30123,"mal_id":30123,"title":"Akagami no Shirayuki-hime","english":"Snow White with the Red Hair","native":"赤髪の白雪姫","synonyms":["Akagami no Shirayukihime"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":7,"month":7,"year":2015},"status":"Finished Airing"},{"index":9,"id":28497,"mal_id":28497,"title":"Rokka no Yuusha","english":"Rokka: Braves of the Six Flowers","native":"六花の勇者","synonyms":["Rokka no Yusha"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":5,"month":7,"year":2015},"status":"Finished Airing"},{"index":10,"id":25183,"mal_id":25183,"title":"Gangsta.","english":"Gangsta.","native":"GANGSTA. ギャングスタ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":2,"month":7,"year":2015},"status":"Finished Airing"},{"index":11,"id":27631,"mal_id":27631,"title":"God Eater","english":"God Eater","native":"GOD EATER","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"day":12,"month":7,"year":2015},"status":"Finished Airing"},{"index":12,"id":28755,"mal_id":28755,"title":"Boruto: Naruto the Movie","english":"Boruto: Naruto the Movie","native":"BORUTO -NARUTO THE MOVIE-","synonyms":["Gekijouban Naruto (2015)"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":7,"month":8,"year":2015},"status":"Finished Airing"},{"index":13,"id":24765,"mal_id":24765,"title":"Gakkougurashi!","english":"School-Live!","native":"がっこうぐらし!","synonyms":["Gakkou Gurashi!"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":9,"month":7,"year":2015},"status":"Finished Airing"},{"index":14,"id":28805,"mal_id":28805,"title":"Bakemono no Ko","english":"The Boy and the Beast","native":"バケモノの子","synonyms":["Child of a Beast"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":11,"month":7,"year":2015},"status":"Finished Airing"},{"index":15,"id":27831,"mal_id":27831,"title":"Durarara!!x2 Ten","english":"Durarara!! x2 Ten","native":"デュラララ!!×2 転","synonyms":["Durarara!!x2 Ten"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":4,"month":7,"year":2015},"status":"Finished Airing"},{"index":16,"id":28725,"mal_id":28725,"title":"Kokoro ga Sakebitagatterunda.","english":"The Anthem of the Heart","native":"心が叫びたがってるんだ。","synonyms":["Kokosake"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":9,"year":2015},"status":"Finished Airing"},{"index":17,"id":28819,"mal_id":28819,"title":"Okusama ga Seitokaichou!","english":"My Wife is the Student Council President!","native":"おくさまが生徒会長!","synonyms":["Oku-sama ga Seito Kaichou!"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":2,"month":7,"year":2015},"status":"Finished Airing"},{"index":18,"id":29785,"mal_id":29785,"title":"Jitsu wa Watashi wa","english":"Actually, I am...","native":"実は私は","synonyms":["Jitsuwata","The Truth Is I Am...","I am..."],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"day":7,"month":7,"year":2015},"status":"Finished Airing"},{"index":19,"id":28979,"mal_id":28979,"title":"To LOVE-Ru Darkness 2nd","english":"To LOVE Ru Darkness 2","native":"To LOVEる -とらぶる- ダークネス2nd","synonyms":["To LOVE-Ru Trouble Darkness 2nd"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":7,"month":7,"year":2015},"status":"Finished Airing"},{"index":20,"id":25283,"mal_id":25283,"title":"Kuusen Madoushi Kouhosei no Kyoukan","english":"Sky Wizards Academy","native":"空戦魔導士候補生の教官","synonyms":["The Instructor of Aerial Combat Wizard Candidates"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":9,"month":7,"year":2015},"status":"Finished Airing"},{"index":21,"id":30458,"mal_id":30458,"title":"Tokyo Ghoul: \"Jack\"","english":"Tokyo Ghoul: Jack","native":"東京喰種 トーキョーグール【JACK】","synonyms":[],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":9,"year":2015},"status":"Finished Airing"},{"index":22,"id":25879,"mal_id":25879,"title":"Working!!!","english":"Wagnaria!!3","native":"Working[ワーキング]!!!","synonyms":["Working!! 3rd Season","Working!! Third Season"],"format":"TV","episodes":13,"season":"SUMMER","year":2015,"start_date":{"day":5,"month":7,"year":2015},"status":"Finished Airing"},{"index":23,"id":29854,"mal_id":29854,"title":"Ushio to Tora (TV)","english":"Ushio & Tora (2015)","native":"うしおととら","synonyms":["Ushio and Tora"],"format":"TV","episodes":26,"season":"SUMMER","year":2015,"start_date":{"day":3,"month":7,"year":2015},"status":"Finished Airing"},{"index":24,"id":30205,"mal_id":30205,"title":"Aoharu x Kikanjuu","english":"Aoharu x Machinegun","native":"青春×機関銃","synonyms":["Aoharu x Machine Gun"],"format":"TV","episodes":12,"season":"SUMMER","year":2015,"start_date":{"day":3,"month":7,"year":2015},"status":"Finished Airing"}]},{"year":2017,"season":"summer","anilist":[{"index":0,"id":98314,"mal_id":34933,"title":"Kakegurui","english":"Kakegurui","native":"賭ケグルイ","synonyms":["Kakegurui - Compulsive Gambler","Kakegurui: Das Leben ist ein Spiel","Gambling School","โคตรเซียนโรงเรียนพนัน ","Безумный Азарт"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":1},"status":"FINISHED"},{"index":1,"id":98659,"mal_id":35507,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e","english":"Classroom of the Elite","native":"ようこそ実力至上主義の教室へ","synonyms":["Youjitsu","You-Zitsu","ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน","Cote","歡迎來到實力至上主義的教室","Добро пожаловать в класс для особо одарённых","فصل النخبة"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":12},"status":"FINISHED"},{"index":2,"id":97986,"mal_id":34599,"title":"Made in Abyss","english":"Made in Abyss","native":"メイドインアビス","synonyms":["صنع في الهاوية","Созданный в Бездне","ผ่าเหวนรก","นักบุกเบิกหลุมยักษ์","Đến từ Abyss"],"format":"TV","episodes":13,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":7},"status":"FINISHED"},{"index":3,"id":21875,"mal_id":33674,"title":"No Game No Life Zero","english":"No Game, No Life Zero","native":"ノーゲーム・ノーライフ ゼロ","synonyms":["NO GAME NO LIFE Movie","游戏人生 零","โนเกม โนไลฟ์ เดอะมูฟวี่","โนเกม โนไลฟ์ ซีโร่","NGNL Zero","ノゲノラ ゼロ","nogenora 0"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":15},"status":"FINISHED"},{"index":4,"id":98291,"mal_id":34902,"title":"Tsurezure Children","english":"Tsuredure Children","native":"徒然チルドレン","synonyms":["Tsure x dure children","Признания"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":4},"status":"FINISHED"},{"index":5,"id":97766,"mal_id":34280,"title":"Gamers!","english":"GAMERS!","native":"ゲーマーズ!","synonyms":["Gamers! Amano Keita to Seishun Continue","Gamers! Keita Amano and youth continue"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":13},"status":"FINISHED"},{"index":6,"id":98491,"mal_id":35203,"title":"Isekai wa Smartphone to Tomo ni.","english":"In Another World With My Smartphone","native":"異世界はスマートフォンとともに。","synonyms":["IseSuma","ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ","帶著智慧型手機闖蕩異世界。"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":11},"status":"FINISHED"},{"index":7,"id":97863,"mal_id":34403,"title":"Hajimete no Gal","english":"My First Girlfriend is a Gal","native":"はじめてのギャル","synonyms":["Hajimete no Gyaru","First-Time Gal","My First Gal","แฟนผมเป็นสาวแกล"],"format":"TV","episodes":10,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":12},"status":"FINISHED"},{"index":8,"id":98035,"mal_id":34662,"title":"Fate/Apocrypha","english":"Fate/Apocrypha","native":"Fate/Apocrypha","synonyms":["פייט/אפוקריפה","Судьба/Апокриф"],"format":"TV","episodes":25,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":2},"status":"FINISHED"},{"index":9,"id":98251,"mal_id":34881,"title":"Aho-Girl","english":"AHO-GIRL","native":"アホガール","synonyms":["Ahogaru: Clueless Girl"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":4},"status":"FINISHED"},{"index":10,"id":21745,"mal_id":35247,"title":"Owarimonogatari (Ge)","english":"Owarimonogatari Second Season","native":"終物語(下)","synonyms":["Owarimonogatari 2","End Tale"],"format":"TV","episodes":7,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":8,"day":12},"status":"FINISHED"},{"index":11,"id":98320,"mal_id":34934,"title":"Koi to Uso","english":"LOVE and LIES","native":"恋と嘘","synonyms":["Love & Lies","จะรักหรือจะหลอก"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":4},"status":"FINISHED"},{"index":12,"id":97996,"mal_id":34626,"title":"Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!","english":"KONOSUBA -God's blessing on this wonderful world! 2: God's Blessings on These Wonderful Works of Art!","native":"この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を!","synonyms":["Konosuba 2 OVA","Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!: As Bençãos de Deus Nestas Obras de Arte Maravilhosas!","Konosuba ¡Bendito sea este mundo maravilloso!: ¡Benditas sean estas maravillosas obras de arte!"],"format":"OVA","episodes":1,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":24},"status":"FINISHED"},{"index":13,"id":98005,"mal_id":34636,"title":"Ballroom e Youkoso","english":"Welcome to the Ballroom","native":"ボールルームへようこそ","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":9},"status":"FINISHED"},{"index":14,"id":97617,"mal_id":34012,"title":"Isekai Shokudou","english":"Restaurant to Another World","native":"異世界食堂","synonyms":["异世界食堂"," ร้านอาหารต่างโลก"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":4},"status":"FINISHED"},{"index":15,"id":98580,"mal_id":35363,"title":"Kobayashi-san Chi no Maidragon: Valentine, Soshite Onsen! (Amari Kitai Shinaide Kudasai)","english":"Miss Kobayashi's Dragon Maid: Valentines and Hot Springs! (Please Don't Get Your Hopes Up)","native":"小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)","synonyms":["Miss Kobayashi's Dragon Maid Episode 14","Kobayashi-san Chi no Maid Dragon Episode 14 "],"format":"OVA","episodes":1,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":9,"day":20},"status":"FINISHED"},{"index":16,"id":98292,"mal_id":34914,"title":"NEW GAME!!","english":"NEW GAME!!","native":"NEW GAME!!","synonyms":["Новая игра!!"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":11},"status":"FINISHED"},{"index":17,"id":97908,"mal_id":34498,"title":"Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?","english":"Fireworks","native":"打ち上げ花火、下から見るか?横から見るか?","synonyms":[" Should We See It from the Side or the Bottom?","升起的烟花,从下面看?还是从侧面看?"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":8,"day":18},"status":"FINISHED"},{"index":18,"id":98505,"mal_id":35240,"title":"Princess Principal","english":"Princess Principal","native":"プリンセス・プリンシパル","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":9},"status":"FINISHED"},{"index":19,"id":97663,"mal_id":34104,"title":"Knight's & Magic","english":"Knight's & Magic","native":"ナイツ&マジック","synonyms":["Knight's and Magic","Naitsuma","ไนท์ & แมจิก"],"format":"TV","episodes":13,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":2},"status":"FINISHED"},{"index":20,"id":98205,"mal_id":34825,"title":"Keppeki Danshi! Aoyama-kun","english":"Clean Freak! Aoyama kun","native":"潔癖男子! 青山くん","synonyms":["Cleanliness Boy! Aoyama-kun"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":3},"status":"FINISHED"},{"index":21,"id":21778,"mal_id":33191,"title":"Kishibe Rohan wa Ugokanai","english":"Thus Spoke Rohan Kishibe","native":"岸辺露伴は動かない","synonyms":["Thus Spoke Kishibe Rohan","Assim Falava Kishibe Rohan","Así habló Kishibe Rohan","على لسان كيشيبي روهان","Αυτά Είπε ο Ρόχαν Κίσιμπε"],"format":"OVA","episodes":4,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":9,"day":20},"status":"FINISHED"},{"index":22,"id":21791,"mal_id":33071,"title":"Bungou Stray Dogs: Hitori Ayumu","english":"Bungo Stray Dogs 2: Walking Alone","native":"文豪ストレイドッグス 『独り歩む』;","synonyms":["Bungou Stray Dogs 2 OVA","Bungou Stray Dogs 2: Episode 13"],"format":"OVA","episodes":1,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":8,"day":4},"status":"FINISHED"},{"index":23,"id":87494,"mal_id":33654,"title":"Hitorijime My Hero","english":"Hitorijime My Hero","native":"ひとりじめマイヒーロー","synonyms":["My Very Own Hero"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":8},"status":"FINISHED"},{"index":24,"id":97833,"mal_id":34383,"title":"Netsuzou Trap: NTR","english":"Netsuzou Trap -NTR-","native":"捏造トラップ―NTR―","synonyms":["Netsuzou TRap","กลรักกับดักลวง NTR"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2017,"start_date":{"year":2017,"month":7,"day":5},"status":"FINISHED"}],"jikan":[{"index":0,"id":34933,"mal_id":34933,"title":"Kakegurui","english":"Kakegurui","native":"賭ケグルイ","synonyms":["Kakegurui: Compulsive Gambler","Gambling School"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":1,"month":7,"year":2017},"status":"Finished Airing"},{"index":1,"id":34599,"mal_id":34599,"title":"Made in Abyss","english":"Made in Abyss","native":"メイドインアビス","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2017,"start_date":{"day":7,"month":7,"year":2017},"status":"Finished Airing"},{"index":2,"id":35507,"mal_id":35507,"title":"Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e","english":"Classroom of the Elite","native":"ようこそ実力至上主義の教室へ","synonyms":["Welcome to the Classroom of the Elite","You-jitsu","You-zitsu"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":12,"month":7,"year":2017},"status":"Finished Airing"},{"index":3,"id":33674,"mal_id":33674,"title":"No Game No Life: Zero","english":"No Game, No Life: Zero","native":"ノーゲーム・ノーライフ ゼロ","synonyms":["NGNL Zero","NGNL the Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":7,"year":2017},"status":"Finished Airing"},{"index":4,"id":34902,"mal_id":34902,"title":"Tsurezure Children","english":"Tsuredure Children","native":"徒然チルドレン","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":4,"month":7,"year":2017},"status":"Finished Airing"},{"index":5,"id":34280,"mal_id":34280,"title":"Gamers!","english":"Gamers!","native":"ゲーマーズ!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":13,"month":7,"year":2017},"status":"Finished Airing"},{"index":6,"id":35203,"mal_id":35203,"title":"Isekai wa Smartphone to Tomo ni.","english":"In Another World With My Smartphone","native":"異世界はスマートフォンとともに。","synonyms":["In a Different World with a Smartphone."],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":11,"month":7,"year":2017},"status":"Finished Airing"},{"index":7,"id":34403,"mal_id":34403,"title":"Hajimete no Gal","english":"My First Girlfriend is a Gal","native":"はじめてのギャル","synonyms":["Hajimete no Gyaru"],"format":"TV","episodes":10,"season":"SUMMER","year":2017,"start_date":{"day":12,"month":7,"year":2017},"status":"Finished Airing"},{"index":8,"id":34881,"mal_id":34881,"title":"Aho Girl","english":"AHO-GIRL","native":"アホガール","synonyms":["Ahogaru: Clueless Girl","Dummy Girl"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":4,"month":7,"year":2017},"status":"Finished Airing"},{"index":9,"id":34662,"mal_id":34662,"title":"Fate/Apocrypha","english":null,"native":"Fate/Apocrypha","synonyms":[],"format":"TV","episodes":25,"season":"SUMMER","year":2017,"start_date":{"day":2,"month":7,"year":2017},"status":"Finished Airing"},{"index":10,"id":34934,"mal_id":34934,"title":"Koi to Uso","english":"Love and Lies","native":"恋と嘘","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":4,"month":7,"year":2017},"status":"Finished Airing"},{"index":11,"id":35247,"mal_id":35247,"title":"Owarimonogatari 2nd Season","english":"Owarimonogatari Second Season","native":"終物語","synonyms":["End Story 2nd Season"],"format":"TV Special","episodes":7,"season":null,"year":null,"start_date":{"day":12,"month":8,"year":2017},"status":"Finished Airing"},{"index":12,"id":34626,"mal_id":34626,"title":"Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!","english":"KonoSuba: God's Blessing on This Wonderful World! 2 - God's Blessing on This Wonderful Art!","native":"この素晴らしい世界に祝福を!2 この素晴らしい芸術に祝福を!","synonyms":["KonoSuba: God's Blessing on This Wonderful World! Second Season OVA","Kono Subarashii Sekai ni Shukufuku wo! 2 OVA"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":24,"month":7,"year":2017},"status":"Finished Airing"},{"index":13,"id":34636,"mal_id":34636,"title":"Ballroom e Youkoso","english":"Welcome to the Ballroom","native":"ボールルームへようこそ","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2017,"start_date":{"day":9,"month":7,"year":2017},"status":"Finished Airing"},{"index":14,"id":34104,"mal_id":34104,"title":"Knight's & Magic","english":"Knight's & Magic","native":"ナイツ&マジック","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2017,"start_date":{"day":2,"month":7,"year":2017},"status":"Finished Airing"},{"index":15,"id":34012,"mal_id":34012,"title":"Isekai Shokudou","english":"Restaurant to Another World","native":"異世界食堂","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":4,"month":7,"year":2017},"status":"Finished Airing"},{"index":16,"id":34914,"mal_id":34914,"title":"New Game!!","english":"New Game!!","native":"NEW GAME!!","synonyms":["New Game! Second Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":11,"month":7,"year":2017},"status":"Finished Airing"},{"index":17,"id":35363,"mal_id":35363,"title":"Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai","english":"Miss Kobayashi's Dragon Maid: Valentine's, and Then Hot Springs! (Please Don't Get Your Hopes Up)","native":"小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)","synonyms":["Kobayashi-san Chi no Maid Dragon Episode 14"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":9,"year":2017},"status":"Finished Airing"},{"index":18,"id":34498,"mal_id":34498,"title":"Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?","english":"Fireworks","native":"打ち上げ花火、下から見るか?横から見るか?","synonyms":["Fireworks","Should We See It from the Side or the Bottom?"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":8,"year":2017},"status":"Finished Airing"},{"index":19,"id":35240,"mal_id":35240,"title":"Princess Principal","english":"Princess Principal","native":"プリンセス・プリンシパル","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":9,"month":7,"year":2017},"status":"Finished Airing"},{"index":20,"id":34825,"mal_id":34825,"title":"Keppeki Danshi! Aoyama-kun","english":"Clean Freak! Aoyama-kun","native":"潔癖男子!青山くん","synonyms":["Cleanliness Boy! Aoyama-kun"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":3,"month":7,"year":2017},"status":"Finished Airing"},{"index":21,"id":33071,"mal_id":33071,"title":"Bungou Stray Dogs: Hitori Ayumu","english":"Bungo Stray Dogs 2 - Walking Alone","native":"文豪ストレイドッグス『独り歩む』","synonyms":["Bungou Stray Dogs OVA","Bungou Stray Dogs 2nd Season Episode 13","Bungou Stray Dogs Episode 25"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":8,"year":2017},"status":"Finished Airing"},{"index":22,"id":33654,"mal_id":33654,"title":"Hitorijime My Hero","english":"Hitorijime My Hero","native":"ひとりじめマイヒーロー","synonyms":["My Very Own Hero"],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":8,"month":7,"year":2017},"status":"Finished Airing"},{"index":23,"id":34383,"mal_id":34383,"title":"Netsuzou TRap","english":"Netsuzou Trap -NTR-","native":"捏造トラップ―NTR―","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2017,"start_date":{"day":5,"month":7,"year":2017},"status":"Finished Airing"},{"index":24,"id":33191,"mal_id":33191,"title":"Kishibe Rohan wa Ugokanai","english":"Thus Spoke Kishibe Rohan","native":"岸辺露伴は動かない","synonyms":["Rohan Kishibe Does Not Move"],"format":"OVA","episodes":4,"season":null,"year":null,"start_date":{"day":20,"month":9,"year":2017},"status":"Finished Airing"}]},{"year":2019,"season":"summer","anilist":[{"index":0,"id":105333,"mal_id":38691,"title":"Dr. STONE","english":"Dr. STONE","native":"Dr.STONE","synonyms":["Dcst","石纪元","ドクターストーン","ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก","Доктор Стоун"],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":5},"status":"FINISHED"},{"index":1,"id":101348,"mal_id":37521,"title":"VINLAND SAGA","english":"Vinland Saga","native":"ヴィンランド・サガ","synonyms":["סאגת וינלנד","فينلاند ساغا","สงครามคนทมิฬ","Сага о Винланде"],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":8},"status":"FINISHED"},{"index":2,"id":105310,"mal_id":38671,"title":"Enen no Shouboutai","english":"Fire Force","native":"炎炎ノ消防隊","synonyms":["หน่วยผจญคนไฟลุก","כוח האש","Полум'яні вогнеборці","Пламенный отряд"],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":6},"status":"FINISHED"},{"index":3,"id":106286,"mal_id":38826,"title":"Tenki no Ko","english":"Weathering With You","native":"天気の子","synonyms":["El Tiempo Contigo","Weathering With You - Das Mädchen, das die Sonne berührte","Les enfants du temps","O Tempo Com Você","天气之子","La ragazza del tempo","Дитя погоды"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":19},"status":"FINISHED"},{"index":4,"id":101167,"mal_id":37347,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? II","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅡ","synonyms":["Danmachi II","ダンジョンに出会いを求めるのは間違っているだろうか2","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2","Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II","มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2","ダンまちⅡ"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":13},"status":"FINISHED"},{"index":5,"id":102976,"mal_id":38040,"title":"Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu","english":"KONOSUBA -God's blessing on this wonderful world!- Legend of Crimson","native":"この素晴らしい世界に祝福を!紅伝説","synonyms":["Konosuba Movie","このすば紅伝説","ขอให้โชคดีมีชัยในโลกแฟนตาซี เดอะ มูฟวี่ ตำนานสีชาด","Konosuba! Un mundo maravilloso. La leyenda del carmesí"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":8,"day":30},"status":"FINISHED"},{"index":6,"id":100668,"mal_id":36882,"title":"Arifureta Shokugyou de Sekai Saikyou","english":"Arifureta: From Commonplace to World's Strongest","native":"ありふれた職業で世界最強","synonyms":["平凡职业造就世界最强","อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ"],"format":"TV","episodes":13,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":8},"status":"FINISHED"},{"index":7,"id":108430,"mal_id":39533,"title":"Given","english":"given","native":"ギヴン","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":12},"status":"FINISHED"},{"index":8,"id":109190,"mal_id":39741,"title":"Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou","english":"Violet Evergarden: Eternity and the Auto Memory Doll","native":"ヴァイオレット・エヴァーガーデン 外伝~永遠と自動手記人形~","synonyms":["Violet Evergarden und das Band der Freundschaft","Violet Evergarden Gaiden: La Eternidad y la Muñeca de Recuerdos Automáticos","Violet Evergarden Gaiden: Eternidade e a Boneca de Automemória","فيوليت: الأبدية وذكريات الدمية الآلية","Вайолет Эвергарден: Вечность и призрак пера","Violet Evergarden: Věčnost a Píšící panenka"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":9,"day":6},"status":"FINISHED"},{"index":9,"id":107226,"mal_id":39026,"title":"Dumbbell Nan Kilo Moteru?","english":"How Heavy Are the Dumbbells You Lift?","native":"ダンベル何キロ持てる?","synonyms":["How Many Kilograms are the Dumbbells You Lift?","Danberu Nan Kiro Moteru?","Dumbbell : Combien tu peux soulever ?","แก๊งสาวป่วน ก๊วนฟิตเนส"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":3},"status":"FINISHED"},{"index":10,"id":105932,"mal_id":38753,"title":"Araburu Kisetsu no Otome-domo yo.","english":"O Maidens in Your Savage Season","native":"荒ぶる季節の乙女どもよ。","synonyms":["AraOto","Nuestra Salvaje Juventud","O maiden: Wahai Para Dara dalam Masa Beringas"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":6},"status":"FINISHED"},{"index":11,"id":107663,"mal_id":39198,"title":"Kanata no Astra","english":"ASTRA LOST IN SPACE","native":"彼方のアストラ","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":3},"status":"FINISHED"},{"index":12,"id":107961,"mal_id":39326,"title":"Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?","english":"Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?","native":"可愛ければ変態でも好きになってくれますか?","synonyms":["Would you even fall in love with a pervert as long as it's a cutie?","Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":8},"status":"FINISHED"},{"index":13,"id":101547,"mal_id":37744,"title":"Isekai Cheat Magician","english":"Isekai Cheat Magician","native":"異世界チート魔術師","synonyms":["ผ่ามิติแหกกฎมนตรา"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":10},"status":"FINISHED"},{"index":14,"id":106240,"mal_id":38816,"title":"HELLO WORLD","english":null,"native":"HELLO WORLD","synonyms":["ハロー・ワールド"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":9,"day":20},"status":"FINISHED"},{"index":15,"id":107068,"mal_id":38993,"title":"Karakai Jouzu no Takagi-san 2","english":"Teasing Master Takagi-san Season 2","native":"からかい上手の高木さん 2","synonyms":["Skilled Teaser Takagi-san 2nd Season","טאקאגי-סאן אלופת ההקנטות 2","Nhất quỷ Nhì ma, Thứ ba Takagi 2","แกล้งนัก รักนะ รู้ยัง ภาค 2","Takagi-san, experta en bromas pesadas","Nicht schon wieder, Takagi-san"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":7},"status":"FINISHED"},{"index":16,"id":104723,"mal_id":38573,"title":"Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?","english":"Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?","native":"通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?","synonyms":["Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power","Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?","Okaa-san online","Okaasuki","คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":13},"status":"FINISHED"},{"index":17,"id":106509,"mal_id":38793,"title":"Tensei Shitara Slime Datta Ken OVA","english":"That Time I Got Reincarnated as a Slime OAD","native":"転生したらスライムだった件 OVA","synonyms":["ten·sura","転スラ","Tensei Shitara Slime Datta Ken (2019)","That Time I Got Reincarnated as a Slime OVA","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD","Moi, quand je me réincarne en Slime OAD"],"format":"OVA","episodes":5,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":9},"status":"FINISHED"},{"index":18,"id":105074,"mal_id":38610,"title":"Tejina Senpai","english":"Magical Sempai","native":"手品先輩","synonyms":["Magical Senpai"],"format":"TV_SHORT","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":2},"status":"FINISHED"},{"index":19,"id":104252,"mal_id":38297,"title":"Maou-sama, Retry!","english":"Demon Lord, Retry!","native":"魔王様、リトライ!","synonyms":["จอมมารรีไทร์"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":4},"status":"FINISHED"},{"index":20,"id":104463,"mal_id":38480,"title":"Toaru Kagaku no Accelerator","english":"A Certain Scientific Accelerator","native":"とある科学の一方通行【アクセラレータ】","synonyms":["科学一方通行","แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์","แฟ้มลับคดีเด็กหาย","Máy gia tốc khoa học nhất định","Akselerator Ilmu Pengetahuan Tertentu"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":12},"status":"FINISHED"},{"index":21,"id":107956,"mal_id":39324,"title":"Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.","english":"If It's for My Daughter, I'd Even Defeat a Demon Lord","native":"うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。","synonyms":["For My Daughter, I'd Even Defeat a Demon Lord","Uchinoko","UchiMusume","เพื่อลูกจ๋า ปะป๋าขอลุย"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":4},"status":"FINISHED"},{"index":22,"id":107490,"mal_id":39071,"title":"Machikado Mazoku","english":"The Demon Girl Next Door","native":"まちカドまぞく","synonyms":["Street Corner Demon","街角魔族"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":12},"status":"FINISHED"},{"index":23,"id":105143,"mal_id":38234,"title":"ONE PIECE STAMPEDE","english":"One Piece: Stampede","native":"ONE PIECE STAMPEDE","synonyms":["ワンピース スタンピード","One Piece: Estampida","航海王:狂热行动","One Piece Film 14"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":8,"day":9},"status":"FINISHED"},{"index":24,"id":106918,"mal_id":38959,"title":"Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note","english":"Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note","native":"ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note","synonyms":["Досье лорда Эль-Меллоя II"],"format":"TV","episodes":13,"season":"SUMMER","year":2019,"start_date":{"year":2019,"month":7,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":38691,"mal_id":38691,"title":"Dr. Stone","english":"Dr. Stone","native":"ドクターストーン","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"day":5,"month":7,"year":2019},"status":"Finished Airing"},{"index":1,"id":37521,"mal_id":37521,"title":"Vinland Saga","english":null,"native":"ヴィンランド・サガ","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"day":8,"month":7,"year":2019},"status":"Finished Airing"},{"index":2,"id":38671,"mal_id":38671,"title":"Enen no Shouboutai","english":"Fire Force","native":"炎炎ノ消防隊","synonyms":["Fire Brigade of Flames"],"format":"TV","episodes":24,"season":"SUMMER","year":2019,"start_date":{"day":6,"month":7,"year":2019},"status":"Finished Airing"},{"index":3,"id":38826,"mal_id":38826,"title":"Tenki no Ko","english":"Weathering with You","native":"天気の子","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":7,"year":2019},"status":"Finished Airing"},{"index":4,"id":37347,"mal_id":37347,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? II","native":"ダンジョンに出会いを求めるのは間違っているだろうかII","synonyms":["DanMachi 2nd Season","Is It Wrong That I Want to Meet You in a Dungeon 2nd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":13,"month":7,"year":2019},"status":"Finished Airing"},{"index":5,"id":38040,"mal_id":38040,"title":"Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu","english":"KonoSuba: God's Blessing on This Wonderful World! - Legend of Crimson","native":"映画 この素晴らしい世界に祝福を!紅伝説","synonyms":["KonoSuba Movie","Eiga Kono Subarashii Sekai ni Shukufuku wo!"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":8,"year":2019},"status":"Finished Airing"},{"index":6,"id":36882,"mal_id":36882,"title":"Arifureta Shokugyou de Sekai Saikyou","english":"Arifureta: From Commonplace to World's Strongest","native":"ありふれた職業で世界最強","synonyms":["From Common Job Class to the Strongest in the World"],"format":"TV","episodes":13,"season":"SUMMER","year":2019,"start_date":{"day":8,"month":7,"year":2019},"status":"Finished Airing"},{"index":7,"id":39533,"mal_id":39533,"title":"Given","english":"given","native":"ギヴン","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2019,"start_date":{"day":12,"month":7,"year":2019},"status":"Finished Airing"},{"index":8,"id":39741,"mal_id":39741,"title":"Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou","english":"Violet Evergarden: Eternity and the Auto Memory Doll","native":"ヴァイオレット・エヴァーガーデン 外伝 -永遠と自動手記人形-","synonyms":["Violet Evergarden Side Story: Eternity and the Auto Memory Doll"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":9,"year":2019},"status":"Finished Airing"},{"index":9,"id":39026,"mal_id":39026,"title":"Dumbbell Nan Kilo Moteru?","english":"How Heavy Are the Dumbbells You Lift?","native":"ダンベル何キロ持てる?","synonyms":["How Many Kilograms are the Dumbbells You Lift?"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":3,"month":7,"year":2019},"status":"Finished Airing"},{"index":10,"id":38753,"mal_id":38753,"title":"Araburu Kisetsu no Otome-domo yo.","english":"O Maidens in Your Savage Season","native":"荒ぶる季節の乙女どもよ。","synonyms":["Maidens of the Savage Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":6,"month":7,"year":2019},"status":"Finished Airing"},{"index":11,"id":37744,"mal_id":37744,"title":"Isekai Cheat Magician","english":"Isekai Cheat Magician","native":"異世界チート魔術師〈マジシャン〉","synonyms":["Isekai Cheat Majutsushi"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":10,"month":7,"year":2019},"status":"Finished Airing"},{"index":12,"id":38993,"mal_id":38993,"title":"Karakai Jouzu no Takagi-san 2","english":"Teasing Master Takagi-san 2","native":"からかい上手の高木さん2","synonyms":["Skilled Teaser Takagi-san 2nd Season","Karakai Jouzu no Takagi-san Second Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":7,"month":7,"year":2019},"status":"Finished Airing"},{"index":13,"id":39326,"mal_id":39326,"title":"Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?","english":"Hensuki: Are you willing to Fall in Love with a Pervert, as long as she's a Cutie?","native":"可愛ければ変態でも好きになってくれますか?","synonyms":["Would you love a pervert as long as she's cute?"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":8,"month":7,"year":2019},"status":"Finished Airing"},{"index":14,"id":39198,"mal_id":39198,"title":"Kanata no Astra","english":"Astra Lost in Space","native":"彼方のアストラ","synonyms":["Astra Lost in Space"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":3,"month":7,"year":2019},"status":"Finished Airing"},{"index":15,"id":38573,"mal_id":38573,"title":"Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?","english":"Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?","native":"通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?","synonyms":["Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power","Okaa-san Online"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":13,"month":7,"year":2019},"status":"Finished Airing"},{"index":16,"id":38610,"mal_id":38610,"title":"Tejina-senpai","english":"Magical Sempai","native":"手品先輩","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":2,"month":7,"year":2019},"status":"Finished Airing"},{"index":17,"id":38816,"mal_id":38816,"title":"Hello World","english":null,"native":"ハロー・ワールド","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":20,"month":9,"year":2019},"status":"Finished Airing"},{"index":18,"id":38297,"mal_id":38297,"title":"Maou-sama, Retry!","english":"Demon Lord, Retry!","native":"魔王様、リトライ!","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":4,"month":7,"year":2019},"status":"Finished Airing"},{"index":19,"id":38793,"mal_id":38793,"title":"Tensei shitara Slime Datta Ken OVA","english":"That Time I Got Reincarnated as a Slime OAD","native":"転生したらスライムだった件 OVA","synonyms":["TenSura OVA","That Time I Got Reincarnated as a Slime OVA","Tensei shitara Slime Datta Ken Gaiden","That Time I Got Reincarnated as a Slime Extra"],"format":"OVA","episodes":5,"season":null,"year":null,"start_date":{"day":9,"month":7,"year":2019},"status":"Finished Airing"},{"index":20,"id":38480,"mal_id":38480,"title":"Toaru Kagaku no Accelerator","english":"A Certain Scientific Accelerator","native":"とある科学の一方通行〈アクセラレータ〉","synonyms":["To Aru Majutsu no Index Gaiden","Toaru Kagaku no Ippou Tsuukou"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":12,"month":7,"year":2019},"status":"Finished Airing"},{"index":21,"id":39324,"mal_id":39324,"title":"Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.","english":"If It's for My Daughter, I'd Even Defeat a Demon Lord","native":"うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。","synonyms":["Uchi no Musume no Tame naraba","Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.","UchiMusume"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":4,"month":7,"year":2019},"status":"Finished Airing"},{"index":22,"id":38234,"mal_id":38234,"title":"One Piece Movie 14: Stampede","english":"One Piece: Stampede","native":"劇場版『ONE PIECE STAMPEDE』(スタンピード)","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":8,"year":2019},"status":"Finished Airing"},{"index":23,"id":36903,"mal_id":36903,"title":"Kengan Ashura","english":null,"native":"ケンガンアシュラ","synonyms":[],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":31,"month":7,"year":2019},"status":"Finished Airing"},{"index":24,"id":39071,"mal_id":39071,"title":"Machikado Mazoku","english":"The Demon Girl Next Door","native":"まちカドまぞく","synonyms":["Street Corner Demon"],"format":"TV","episodes":12,"season":"SUMMER","year":2019,"start_date":{"day":12,"month":7,"year":2019},"status":"Finished Airing"}]},{"year":2021,"season":"summer","anilist":[{"index":0,"id":116742,"mal_id":41487,"title":"Tensei Shitara Slime Datta Ken 2nd Season Part 2","english":"That Time I Got Reincarnated as a Slime Season 2 Part 2","native":"転生したらスライムだった件 第2期 第2クール","synonyms":["Tensura 2","关于我转生变成史莱姆这档事第二季(下半)","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2","Moi, quand je me réincarne en Slime Saison 2 Partie 2","О моём перерождении в слизь 2","転スラ 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":6},"status":"FINISHED"},{"index":1,"id":131646,"mal_id":48580,"title":"Vanitas no Carte","english":"The Case Study of Vanitas","native":"ヴァニタスの手記","synonyms":["Vanitas no Karte","Les Mémoires de Vanitas","瓦尼塔斯的手记","บันทึกแวมไพร์วานิทัส"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":3},"status":"FINISHED"},{"index":2,"id":107717,"mal_id":39247,"title":"Kobayashi-san Chi no Maidragon S","english":"Miss Kobayashi's Dragon Maid S","native":"小林さんちのメイドラゴンS","synonyms":["小林家的龙女仆 S","小林家的龍女僕S","น้องเมดมังกรของคุณโคบายาชิ ภาค 2"," Kobayashi-san Chi no Maid Dragon 2nd Season","Дракониха-горничная госпожи Кобаяси S"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":8},"status":"FINISHED"},{"index":3,"id":125206,"mal_id":43523,"title":"Tsuki ga Michibiku Isekai Douchuu","english":"TSUKIMICHI -Moonlit Fantasy-","native":"月が導く異世界道中","synonyms":["Moon-led Journey Across Another World","จันทรานำพาสู่ต่างโลก","月光下的异世界之旅","Благословлённое лунным светом приключение в другом мире"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":7},"status":"FINISHED"},{"index":4,"id":126546,"mal_id":44203,"title":"Seirei Gensouki","english":"Seirei Gensouki: Spirit Chronicles","native":"精霊幻想記","synonyms":["精灵幻想记","ตำนานวิญญาณแฟนซี"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":6},"status":"FINISHED"},{"index":5,"id":117612,"mal_id":41710,"title":"Genjitsu Shugi Yuusha no Oukoku Saikenki","english":"How a Realist Hero Rebuilt the Kingdom","native":"現実主義勇者の王国再建記","synonyms":["Genjitsushugisha no Oukokukaizouki","A Realist's Kingdom Reform Chronicles","Genkoku","ยุทธศาสตร์กู้ชาติของราชามือใหม่"],"format":"TV","episodes":13,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":4},"status":"FINISHED"},{"index":6,"id":132126,"mal_id":48849,"title":"Sonny Boy","english":"Sonny Boy","native":"Sonny Boy","synonyms":["サニーボーイ","ซันนีบอย"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":16},"status":"FINISHED"},{"index":7,"id":126192,"mal_id":43969,"title":"Kanojo mo Kanojo","english":"Girlfriend, Girlfriend","native":"カノジョも彼女","synonyms":["KanoKano","She is also my Girlfriend","จะคนไหนก็แฟนสาว ","Мои девушки"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":3},"status":"FINISHED"},{"index":8,"id":128712,"mal_id":46471,"title":"Tantei wa mou, Shindeiru.","english":"The Detective Is Already Dead","native":"探偵はもう、死んでいる。","synonyms":["La detective esta muerta.","Tanmoshi","侦探已经,死了","侦探已死","นักสืบตายแล้ว","Детектив уже мёртв"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":4},"status":"FINISHED"},{"index":9,"id":114065,"mal_id":40904,"title":"Bokutachi no Remake","english":"Remake Our Life!","native":"ぼくたちのリメイク","synonyms":["Bokurema","我们的重制人生","ย้อนเวลา รีเมคชีวิต","Ремейк нашей жизни!"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":3},"status":"FINISHED"},{"index":10,"id":126659,"mal_id":44200,"title":"Boku no Hero Academia THE MOVIE: World Heroes' Mission","english":"My Hero Academia: World Heroes' Mission","native":"僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション","synonyms":["My Hero Academia the Movie 3","My Hero Academia: Misión Mundial de Héroes","My Hero Academia: Missão Mundial de Heróis","มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":8,"day":6},"status":"FINISHED"},{"index":11,"id":107625,"mal_id":39175,"title":"Cider no You ni Kotoba ga Wakiagaru","english":"Words Bubble Up Like Soda Pop","native":"サイダーのように言葉が湧き上がる","synonyms":["Palavras que Borbulham como Refrigerante","Palabras que burbujean como un refresco","מילים מתפצפצות כמו גזוז","Nos mots comme des bulles","ถ้อยคำเอ่อล้นด้วยหัวใจรัก"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":22},"status":"FINISHED"},{"index":12,"id":112802,"mal_id":40620,"title":"Uramichi Oniisan","english":"Life Lessons with Uramichi Oniisan","native":"うらみちお兄さん","synonyms":["อูรามิจิ โอนีซัง"],"format":"TV","episodes":13,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":6},"status":"FINISHED"},{"index":13,"id":132456,"mal_id":48753,"title":"Jahy-sama wa Kujikenai!","english":"The Great Jahy Will Not Be Defeated!","native":"ジャヒー様はくじけない!","synonyms":["ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!","Niepokonana Jahy"],"format":"TV","episodes":20,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":8,"day":1},"status":"FINISHED"},{"index":14,"id":129277,"mal_id":47257,"title":"Shinigami Bocchan to Kuro Maid","english":"The Duke of Death and His Maid","native":"死神坊ちゃんと黒メイド","synonyms":["คุณชายวิปริตกับเมดสาวรอบจัด"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":4},"status":"FINISHED"},{"index":15,"id":120209,"mal_id":42282,"title":"Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X","english":"My Next Life as a Villainess: All Routes Lead to Doom! X","native":"乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X","synonyms":["Hamefura 2","Hamehura 2","เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X","เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":3},"status":"FINISHED"},{"index":16,"id":120608,"mal_id":42340,"title":"Meikyuu Black Company","english":"The Dungeon of Black Company","native":"迷宮ブラックカンパニー","synonyms":["เมคีว แบล็กคอมพานี"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":9},"status":"FINISHED"},{"index":17,"id":126047,"mal_id":43814,"title":"Deatte 5-byou de Battle","english":"Battle Game in 5 Seconds","native":"出会って5秒でバトル","synonyms":["Battle in 5 seconds after meeting.","ศึกเดือด 5 วิ พลิกชะตา"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":13},"status":"FINISHED"},{"index":18,"id":122052,"mal_id":42544,"title":"Kaizoku Oujo","english":"Fena: Pirate Princess","native":"海賊王女","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":8,"day":15},"status":"FINISHED"},{"index":19,"id":127271,"mal_id":44807,"title":"Ryuu to Sobakasu no Hime","english":"BELLE","native":"竜とそばかすの姫","synonyms":["The Dragon and Freckled Princess","BELLE เจ้าหญิงแห่งเสียงเพลง","Красавица и дракон","Μπελ: Ο Δράκος και Η Πριγκίπισσα","龙与雀斑公主","Дракон та веснянкувата принцеса","Belle: The Dragon and the Freckled Princess","Skaistule un briesmonis","Сұлу қыз бен айдаһар","Gözəl və əjdaha"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":16},"status":"FINISHED"},{"index":20,"id":117989,"mal_id":41812,"title":"Megami-ryou no Ryoubo-kun.","english":"Mother of the Goddess’ Dormitory","native":"女神寮の寮母くん。","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":14},"status":"FINISHED"},{"index":21,"id":128545,"mal_id":46093,"title":"Shiroi Suna no Aquatope","english":"The aquatope on white sand","native":"白い砂のアクアトープ","synonyms":["Aquatope of White Sand","The two girls met in the ruins of damaged dream","อควาโทปแห่งทรายขาว","Aquatope di Atas Pasir Putih","Акватоп на белом песке"],"format":"TV","episodes":24,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":9},"status":"FINISHED"},{"index":22,"id":127371,"mal_id":44931,"title":"Tonikaku Kawaii: SNS","english":"TONIKAWA: Over The Moon For You ~SNS~","native":"トニカクカワイイ ~SNS~","synonyms":["Tonikaku Kawaii OVA","TONIKAWA OVA","Tonikaku Kawaii Episode 13","Красавица: Унеси меня на Луну. Социальная сеть"],"format":"OVA","episodes":1,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":8,"day":18},"status":"FINISHED"},{"index":23,"id":122434,"mal_id":42625,"title":"Heion Sedai no Idaten-tachi","english":"The Idaten Deities Know Only Peace","native":"平穏世代の韋駄天達","synonyms":["Idaten Deities in the Peaceful Generation","อิดะเท็น เทพต่อสู้กู้ยุคสันติ","Боги-стражники не ведали войны"],"format":"TV","episodes":11,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":23},"status":"FINISHED"},{"index":24,"id":122441,"mal_id":42627,"title":"Peach Boy Riverside","english":"Peach Boy Riverside","native":"ピーチボーイリバーサイド","synonyms":["พีชบอยริเวอร์ไซด์"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"year":2021,"month":7,"day":1},"status":"FINISHED"}],"jikan":[{"index":0,"id":41487,"mal_id":41487,"title":"Tensei shitara Slime Datta Ken 2nd Season Part 2","english":"That Time I Got Reincarnated as a Slime Season 2 Part 2","native":"転生したらスライムだった件","synonyms":["Tensura 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":6,"month":7,"year":2021},"status":"Finished Airing"},{"index":1,"id":48580,"mal_id":48580,"title":"Vanitas no Karte","english":"The Case Study of Vanitas","native":"ヴァニタスの手記","synonyms":["Vanitas no Shuki","Memoir of Vanitas","Vanitas no Carte"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":3,"month":7,"year":2021},"status":"Finished Airing"},{"index":2,"id":39247,"mal_id":39247,"title":"Kobayashi-san Chi no Maid Dragon S","english":"Miss Kobayashi's Dragon Maid S","native":"小林さんちのメイドラゴンS","synonyms":["Kobayashi-san Chi no Maid Dragon 2nd Season","Miss Kobayashi's Dragon Maid 2nd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":8,"month":7,"year":2021},"status":"Finished Airing"},{"index":3,"id":43523,"mal_id":43523,"title":"Tsuki ga Michibiku Isekai Douchuu","english":"Tsukimichi: Moonlit Fantasy","native":"月が導く異世界道中","synonyms":["Moon-led Journey Across Another World"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":7,"month":7,"year":2021},"status":"Finished Airing"},{"index":4,"id":41710,"mal_id":41710,"title":"Genjitsu Shugi Yuusha no Oukoku Saikenki","english":"How a Realist Hero Rebuilt the Kingdom","native":"現実主義勇者の王国再建記","synonyms":["Re:Construction the Elfrieden Kingdom Tales of Realistic Brave","A Realist Hero's Kingdom Restoration Chronicle","Genkoku"],"format":"TV","episodes":13,"season":"SUMMER","year":2021,"start_date":{"day":4,"month":7,"year":2021},"status":"Finished Airing"},{"index":5,"id":44203,"mal_id":44203,"title":"Seirei Gensouki","english":"Seirei Gensouki: Spirit Chronicles","native":"精霊幻想記","synonyms":["Spirit Chronicles"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":6,"month":7,"year":2021},"status":"Finished Airing"},{"index":6,"id":43969,"mal_id":43969,"title":"Kanojo mo Kanojo","english":"Girlfriend, Girlfriend","native":"カノジョも彼女","synonyms":["Kanokano"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":3,"month":7,"year":2021},"status":"Finished Airing"},{"index":7,"id":46471,"mal_id":46471,"title":"Tantei wa Mou, Shindeiru.","english":"The Detective Is Already Dead","native":"探偵はもう、死んでいる。","synonyms":["Tanmoshi"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":4,"month":7,"year":2021},"status":"Finished Airing"},{"index":8,"id":40904,"mal_id":40904,"title":"Bokutachi no Remake","english":"Remake Our Life!","native":"ぼくたちのリメイク","synonyms":["Bokurema"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":3,"month":7,"year":2021},"status":"Finished Airing"},{"index":9,"id":48849,"mal_id":48849,"title":"Sonny Boy","english":"Sonny Boy","native":"Sonny Boy (サニーボーイ)","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":16,"month":7,"year":2021},"status":"Finished Airing"},{"index":10,"id":44200,"mal_id":44200,"title":"Boku no Hero Academia the Movie 3: World Heroes' Mission","english":"My Hero Academia: World Heroes' Mission","native":"僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション","synonyms":["My Hero Academia the Movie 3"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":8,"year":2021},"status":"Finished Airing"},{"index":11,"id":47257,"mal_id":47257,"title":"Shinigami Bocchan to Kuro Maid","english":"The Duke of Death and His Maid","native":"死神坊ちゃんと黒メイド","synonyms":["Young Master the Grim Reaper and the Black Maid"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":4,"month":7,"year":2021},"status":"Finished Airing"},{"index":12,"id":42282,"mal_id":42282,"title":"Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X","english":"My Next Life as a Villainess: All Routes Lead to Doom! X","native":"乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X","synonyms":["Hamefura X","I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…","Destruction Flag Otome"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":3,"month":7,"year":2021},"status":"Finished Airing"},{"index":13,"id":40620,"mal_id":40620,"title":"Uramichi Oniisan","english":"Life Lessons with Uramichi-Oniisan","native":"うらみちお兄さん","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2021,"start_date":{"day":6,"month":7,"year":2021},"status":"Finished Airing"},{"index":14,"id":48753,"mal_id":48753,"title":"Jahy-sama wa Kujikenai!","english":"The Great Jahy Will Not Be Defeated!","native":"ジャヒー様はくじけない!","synonyms":["Jahy-sama Won't Be Discouraged!"],"format":"TV","episodes":20,"season":"SUMMER","year":2021,"start_date":{"day":1,"month":8,"year":2021},"status":"Finished Airing"},{"index":15,"id":39175,"mal_id":39175,"title":"Cider no You ni Kotoba ga Wakiagaru","english":"Words Bubble Up Like Soda Pop","native":"サイダーのように言葉が湧き上がる","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":7,"year":2021},"status":"Finished Airing"},{"index":16,"id":42340,"mal_id":42340,"title":"Meikyuu Black Company","english":"The Dungeon of Black Company","native":"迷宮ブラックカンパニー","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":9,"month":7,"year":2021},"status":"Finished Airing"},{"index":17,"id":43814,"mal_id":43814,"title":"Deatte 5-byou de Battle","english":"Battle Game in 5 Seconds","native":"出会って5秒でバトル","synonyms":["Dea5","Battle in 5 seconds after meeting."],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":13,"month":7,"year":2021},"status":"Finished Airing"},{"index":18,"id":41812,"mal_id":41812,"title":"Megami-ryou no Ryoubo-kun.","english":"Mother of the Goddess' Dormitory","native":"女神寮の寮母くん。","synonyms":[],"format":"TV","episodes":10,"season":"SUMMER","year":2021,"start_date":{"day":14,"month":7,"year":2021},"status":"Finished Airing"},{"index":19,"id":42625,"mal_id":42625,"title":"Heion Sedai no Idaten-tachi","english":"The Idaten Deities Know Only Peace","native":"平穏世代の韋駄天達","synonyms":["Idaten Deities in the Peaceful Generation"],"format":"TV","episodes":11,"season":"SUMMER","year":2021,"start_date":{"day":23,"month":7,"year":2021},"status":"Finished Airing"},{"index":20,"id":42627,"mal_id":42627,"title":"Peach Boy Riverside","english":"Peach Boy Riverside","native":"ピーチボーイリバーサイド","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":1,"month":7,"year":2021},"status":"Finished Airing"},{"index":21,"id":42940,"mal_id":42940,"title":"Hanma Baki: Son of Ogre","english":"Baki Hanma","native":"範馬刃牙 SON OF OGRE","synonyms":["The Boy Fascinating the Fighting God"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":30,"month":9,"year":2021},"status":"Finished Airing"},{"index":22,"id":44807,"mal_id":44807,"title":"Ryuu to Sobakasu no Hime","english":"Belle","native":"竜とそばかすの姫","synonyms":["Ryuusoba"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":7,"year":2021},"status":"Finished Airing"},{"index":23,"id":44881,"mal_id":44881,"title":"100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season","english":"I’m Standing on a Million Lives Season 2","native":"100万の命の上に俺は立っている","synonyms":["I'm standing on 1,000,000 lives. Season 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2021,"start_date":{"day":10,"month":7,"year":2021},"status":"Finished Airing"},{"index":24,"id":46093,"mal_id":46093,"title":"Shiroi Suna no Aquatope","english":"The Aquatope on White Sand","native":"白い砂のアクアトープ","synonyms":["Aquatope of White Sand"],"format":"TV","episodes":24,"season":"SUMMER","year":2021,"start_date":{"day":9,"month":7,"year":2021},"status":"Finished Airing"}]},{"year":2023,"season":"summer","anilist":[{"index":0,"id":145064,"mal_id":51009,"title":"Jujutsu Kaisen 2nd Season","english":"JUJUTSU KAISEN Season 2","native":"呪術廻戦 第2期","synonyms":["呪術廻戦 懐玉・玉折/渋谷事変 ","Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen","Jujutsu Kaisen: Hidden Inventory / Premature Death","JJK2","咒術迴戰 第二季","มหาเวทย์ผนึกมาร ภาค 2 ","咒术回战 2","2جوجوتسو كايسن ","Jujutsu Kaisen: Shibuya Incident"],"format":"TV","episodes":23,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":6},"status":"FINISHED"},{"index":1,"id":146065,"mal_id":51179,"title":"Mushoku Tensei II: Isekai Ittara Honki Dasu","english":"Mushoku Tensei: Jobless Reincarnation Season 2","native":"無職転生Ⅱ ~異世界行ったら本気だす~","synonyms":["เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2","Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season","Mushoku Tensei II: Jobless Reincarnation","Mushoku Tensei II: Reencarnación desde cero","无职转生~到了异世界就拿出真本事~第2季"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":3},"status":"FINISHED"},{"index":2,"id":159831,"mal_id":54112,"title":"Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto","english":"Zom 100: Bucket List of the Dead","native":"ゾン100~ゾンビになるまでにしたい100のこと~","synonyms":["Zombie 100 ~100 Things I Want to do Before I Become a Zombie~","Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~","100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้","Зомби-апокалипсис и 100 предсмертных дел","100 Coisas para Fazer Antes de Virar Zumbi"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":9},"status":"FINISHED"},{"index":3,"id":163132,"mal_id":54856,"title":"Horimiya: piece","english":"Horimiya: The Missing Pieces","native":"ホリミヤ -piece-","synonyms":["Хоримия: Фрагменты"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":1},"status":"FINISHED"},{"index":4,"id":147103,"mal_id":51552,"title":"Watashi no Shiawase na Kekkon","english":"My Happy Marriage","native":"わたしの幸せな結婚","synonyms":["WataKon","ขอให้รักเรานี้ได้มีความสุข","Moje szczęśliwe małżeństwo","Hôn nhân hạnh phúc của tôi","Meu Casamento Feliz","Il mio matrimonio felice","Мій щасливий шлюб","Mi feliz matrimonio","Meine ganz besondere Hochzeit"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":5},"status":"FINISHED"},{"index":5,"id":159322,"mal_id":53998,"title":"BLEACH: Sennen Kessen-hen - Ketsubetsu-tan","english":"BLEACH: Thousand-Year Blood War - The Separation","native":"BLEACH 千年血戦篇-訣別譚-","synonyms":["BLEACH: Thousand Year Blood War Part 2","BLEACH 千年血戦篇 第2クール","BLEACH TYBW"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":8},"status":"FINISHED"},{"index":6,"id":160188,"mal_id":54234,"title":"Suki na Ko ga Megane wo Wasureta","english":"The Girl I Like Forgot Her Glasses","native":"好きな子がめがねを忘れた","synonyms":["Sukinako ga Megane wo Wasureta","สาวลืมแว่นแสนวุ่นละมุนรัก","Cô bạn tôi thầm thích lại quên mang kính rồi","Sukimega","Minha Crush Esqueceu os Óculos","La chica que me gusta olvidó sus lentes","Любовь, не скрытая очками"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":4},"status":"FINISHED"},{"index":7,"id":146953,"mal_id":51498,"title":"Masamune-kun no Revenge R","english":"Masamune-kun's Revenge R","native":"政宗くんのリベンジR","synonyms":["Masamune-kun’s Revenge Season 2","Masamune-kun no Revenge 2nd Season","การแก้แค้นของมาซามุเนะคุง ภาค 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":3},"status":"FINISHED"},{"index":8,"id":157397,"mal_id":53632,"title":"Yumemiru Danshi wa Genjitsushugisha","english":"The Dreaming Boy is a Realist","native":"夢見る男子は現実主義者","synonyms":["เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง","My Dreamy Realist","Il giovane sognatore è un realista"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":4},"status":"FINISHED"},{"index":9,"id":163263,"mal_id":54898,"title":"Bungou Stray Dogs 5th Season","english":"Bungo Stray Dogs 5","native":"文豪ストレイドッグス 第5シーズン","synonyms":["BSD 5"],"format":"TV","episodes":11,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":12},"status":"FINISHED"},{"index":10,"id":154391,"mal_id":52969,"title":"Jitsu wa Ore, Saikyou Deshita?","english":"Am I Actually the Strongest?","native":"実は俺、最強でした?","synonyms":["ผมเทพสุดจริงเหรอ?","Я что, сильнейший?","É Sério Que Eu Sou o Mais Forte?"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":2},"status":"FINISHED"},{"index":11,"id":154745,"mal_id":53050,"title":"Kanojo, Okarishimasu 3rd Season","english":"Rent-a-Girlfriend Season 3","native":"彼女、お借りします 第3期","synonyms":["KanoKari 3","สะดุดรักยัยแฟนเช่า ภาค 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":8},"status":"FINISHED"},{"index":12,"id":142598,"mal_id":50582,"title":"Nanatsu no Maken ga Shihai Suru","english":"Reign of the Seven Spellblades","native":"七つの魔剣が支配する","synonyms":["Seven Magic Swords Rule","ซ่อนคมเวทเจ็ดดาบมาร","Nanatsuma","ななつま","O Reino das Sete Magilâminas","Тирания семи разящих клинков"],"format":"TV","episodes":15,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":8},"status":"FINISHED"},{"index":13,"id":153360,"mal_id":52619,"title":"Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou","english":"Reborn as a Vending Machine, I Now Wander the Dungeon","native":"自動販売機に生まれ変わった俺は迷宮を彷徨う","synonyms":["Переродившись в торговый автомат, я блуждаю по подземелью","自動販売機に生まれ変わった俺は迷宮を彷徨う","Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō","Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra","Jihanki","自販機"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":5},"status":"FINISHED"},{"index":14,"id":152802,"mal_id":52505,"title":"Dark Gathering","english":"Dark Gathering","native":"ダークギャザリング","synonyms":["คู่หูต่างขั้วกับภารกิจกำจัดผี"],"format":"TV","episodes":25,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":10},"status":"FINISHED"},{"index":15,"id":131863,"mal_id":48633,"title":"Liar Liar","english":"Liar, Liar","native":"ライアー・ライアー","synonyms":["Ложь на лжи"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":8},"status":"FINISHED"},{"index":16,"id":162983,"mal_id":54790,"title":"Undead Girl Murder Farce","english":"Undead Murder Farce","native":"アンデッドガール・マーダーファルス","synonyms":["Фарс убитой нежити","不死少女的谋杀闹剧"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":6},"status":"FINISHED"},{"index":17,"id":109979,"mal_id":36699,"title":"Kimitachi wa Dou Ikiru ka","english":"The Boy and the Heron","native":"君たちはどう生きるか","synonyms":["How Do You Live?","Il ragazzo e l’airone","Chłopiec i czapla","Le Garçon et le Héron","Gutten og hegren","Pojken och hägern","Poika ja haikara","El chico y la garza","El niño y la garza","Der Junge und der Reiher","เด็กชายกับนกกระสา","그대들은 어떻게 살 것인가 ","הילד והאנפה","O Menino e a Garça","Drengen og hejren"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":14},"status":"FINISHED"},{"index":18,"id":142877,"mal_id":50613,"title":"Rurouni Kenshin: Meiji Kenkaku Romantan (2023)","english":"Rurouni Kenshin (2023)","native":"るろうに剣心 -明治剣客浪漫譚-(2023)","synonyms":["Samurai X (2023)","Kenshin le vagabond (2023)"],"format":"TV","episodes":24,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":7},"status":"FINISHED"},{"index":19,"id":155168,"mal_id":53200,"title":"Hataraku Maou-sama!! 2nd Season","english":"The Devil is a Part-Timer! Season 2 Part 2","native":"はたらく魔王さま!!2nd Season","synonyms":["The Devil is a Part-Timer! Season 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":13},"status":"FINISHED"},{"index":20,"id":136149,"mal_id":49303,"title":"Alice to Therese no Maboroshi Koujou","english":"maboroshi","native":"アリスとテレスのまぼろし工場","synonyms":["Alice and Therese's Illusion Factory","Мабороси"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":9,"day":15},"status":"FINISHED"},{"index":21,"id":139606,"mal_id":49894,"title":"Eiyuu Kyoushitsu","english":"Classroom for Heroes","native":"英雄教室","synonyms":["Класс героев","Sala de Aula dos Heróis"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":9},"status":"FINISHED"},{"index":22,"id":148465,"mal_id":51764,"title":"Level 1 dakedo Unique Skill de Saikyou desu","english":"My Unique Skill Makes Me OP even at Level 1","native":"レベル1だけどユニークスキルで最強です","synonyms":["เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร","Minha Habilidade Única Me Deixa Invencível no Nível 1","Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":8},"status":"FINISHED"},{"index":23,"id":154966,"mal_id":53127,"title":"Fate/strange Fake: Whispers of Dawn","english":"Fate/strange Fake -Whispers of Dawn-","native":"Fate/strange Fake -Whispers of Dawn-","synonyms":["Судьба/Странная подделка. Шёпот рассвета"],"format":"SPECIAL","episodes":1,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":2},"status":"FINISHED"},{"index":24,"id":155730,"mal_id":53379,"title":"Uchi no Kaisha no Chiisai Senpai no Hanashi","english":"My Tiny Senpai","native":"うちの会社の小さい先輩の話","synonyms":["Story of a Small Senior in My Company","My Company's Small Senpai","My Tiny Senpai From Work","A Veterana Pitica da Firma","รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก","МОЯ НЕВЫСОКАЯ КОЛЛЕГА"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"year":2023,"month":7,"day":2},"status":"FINISHED"}],"jikan":[{"index":0,"id":51009,"mal_id":51009,"title":"Jujutsu Kaisen 2nd Season","english":"Jujutsu Kaisen Season 2","native":"呪術廻戦 懐玉・玉折/渋谷事変","synonyms":["Jujutsu Kaisen: Kaigyoku Gyokusetsu","Jujutsu Kaisen: Shibuya Jihen","Jujutsu Kaisen: Hidden Inventory Arc","Jujutsu Kaisen: Shibuya Incident Arc","Sorcery Fight","JJK"],"format":"TV","episodes":23,"season":"SUMMER","year":2023,"start_date":{"day":6,"month":7,"year":2023},"status":"Finished Airing"},{"index":1,"id":51179,"mal_id":51179,"title":"Mushoku Tensei II: Isekai Ittara Honki Dasu","english":"Mushoku Tensei: Jobless Reincarnation Season 2","native":"無職転生 II ~異世界行ったら本気だす~","synonyms":["Jobless Reincarnation: I Will Seriously Try If I Go To Another World","Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":10,"month":7,"year":2023},"status":"Finished Airing"},{"index":2,"id":54112,"mal_id":54112,"title":"Zom 100: Zombie ni Naru made ni Shitai 100 no Koto","english":"Zom 100: Bucket List of the Dead","native":"ゾン100~ゾンビになるまでにしたい100のこと~","synonyms":["Bucket List of The Dead","Zombie 100: 100 Things I Want to do Before I Become a Zombie"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":9,"month":7,"year":2023},"status":"Finished Airing"},{"index":3,"id":54856,"mal_id":54856,"title":"Horimiya: Piece","english":"Horimiya: The Missing Pieces","native":"ホリミヤ -piece-","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"day":1,"month":7,"year":2023},"status":"Finished Airing"},{"index":4,"id":53998,"mal_id":53998,"title":"Bleach: Sennen Kessen-hen - Ketsubetsu-tan","english":"Bleach: Thousand-Year Blood War - The Separation","native":"BLEACH 千年血戦篇-訣別譚-","synonyms":["Bleach: Thousand-Year Blood War Arc Part 2"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"day":8,"month":7,"year":2023},"status":"Finished Airing"},{"index":5,"id":51552,"mal_id":51552,"title":"Watashi no Shiawase na Kekkon","english":"My Happy Marriage","native":"わたしの幸せな結婚","synonyms":["My Blissful Marriage","Watakon"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":5,"month":7,"year":2023},"status":"Finished Airing"},{"index":6,"id":51498,"mal_id":51498,"title":"Masamune-kun no Revenge R","english":"Masamune-kun's Revenge R","native":"政宗くんのリベンジR","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":3,"month":7,"year":2023},"status":"Finished Airing"},{"index":7,"id":54898,"mal_id":54898,"title":"Bungou Stray Dogs 5th Season","english":"Bungo Stray Dogs 5","native":"文豪ストレイドッグス","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2023,"start_date":{"day":12,"month":7,"year":2023},"status":"Finished Airing"},{"index":8,"id":55818,"mal_id":55818,"title":"Mushoku Tensei II: Isekai Ittara Honki Dasu - Shugo Jutsushi Fitz","english":"Mushoku Tensei: Jobless Reincarnation Season 2 - Episode 0 \"Guardian Fitz\"","native":"無職転生Ⅱ ~異世界行ったら本気だす~ 第0話「守護術師フィッツ」","synonyms":["Mushoku Tensei Ⅱ: Isekai Ittara Honki Dasu Episode 0"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":3,"month":7,"year":2023},"status":"Finished Airing"},{"index":9,"id":54234,"mal_id":54234,"title":"Suki na Ko ga Megane wo Wasureta","english":"The Girl I Like Forgot Her Glasses","native":"好きな子がめがねを忘れた","synonyms":["Sukimega"],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"day":4,"month":7,"year":2023},"status":"Finished Airing"},{"index":10,"id":53632,"mal_id":53632,"title":"Yumemiru Danshi wa Genjitsushugisha","english":"The Dreaming Boy is a Realist","native":"夢見る男子は現実主義者","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":4,"month":7,"year":2023},"status":"Finished Airing"},{"index":11,"id":53050,"mal_id":53050,"title":"Kanojo, Okarishimasu 3rd Season","english":"Rent-a-Girlfriend Season 3","native":"彼女、お借りします","synonyms":["Kanokari"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":8,"month":7,"year":2023},"status":"Finished Airing"},{"index":12,"id":52969,"mal_id":52969,"title":"Jitsu wa Ore, Saikyou deshita?","english":"Am I Actually the Strongest?","native":"実は俺、最強でした?","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":2,"month":7,"year":2023},"status":"Finished Airing"},{"index":13,"id":50582,"mal_id":50582,"title":"Nanatsu no Maken ga Shihai suru","english":"Reign of the Seven Spellblades","native":"七つの魔剣が支配する","synonyms":["Nanatsuma"],"format":"TV","episodes":15,"season":"SUMMER","year":2023,"start_date":{"day":8,"month":7,"year":2023},"status":"Finished Airing"},{"index":14,"id":52505,"mal_id":52505,"title":"Dark Gathering","english":"Dark Gathering","native":"ダークギャザリング","synonyms":[],"format":"TV","episodes":25,"season":"SUMMER","year":2023,"start_date":{"day":10,"month":7,"year":2023},"status":"Finished Airing"},{"index":15,"id":54790,"mal_id":54790,"title":"Undead Girl Murder Farce","english":"Undead Murder Farce","native":"アンデッドガール・マーダーファルス","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2023,"start_date":{"day":6,"month":7,"year":2023},"status":"Finished Airing"},{"index":16,"id":52619,"mal_id":52619,"title":"Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou","english":"Reborn as a Vending Machine, I Now Wander the Dungeon","native":"自動販売機に生まれ変わった俺は迷宮を彷徨う","synonyms":["I Was Reborn as a Vending Machine","Wandering in the Dungeon","I Reincarnated Into a Vending Machine","Orejihanki"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":5,"month":7,"year":2023},"status":"Finished Airing"},{"index":17,"id":48633,"mal_id":48633,"title":"Liar Liar","english":null,"native":"ライアー・ライアー","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":8,"month":7,"year":2023},"status":"Finished Airing"},{"index":18,"id":53200,"mal_id":53200,"title":"Hataraku Maou-sama!! 2nd Season","english":"The Devil is a Part-Timer! Season 2 Part 2","native":"はたらく魔王さま!!","synonyms":["The Devil is a Part-Timer! 3rd Season","Hataraku Maou-sama 3"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":13,"month":7,"year":2023},"status":"Finished Airing"},{"index":19,"id":49413,"mal_id":49413,"title":"Shiguang Dailiren II","english":"Link Click Season 2","native":"时光代理人II","synonyms":["LINK CLICK Ⅱ","时光代理人 第二季","Link Click 2nd Season","時光代理人 -LINK CLICK- II"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":14,"month":7,"year":2023},"status":"Finished Airing"},{"index":20,"id":51764,"mal_id":51764,"title":"Level 1 dakedo Unique Skill de Saikyou desu","english":"My Unique Skill Makes Me OP Even at Level 1","native":"レベル1だけどユニークスキルで最強です","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":8,"month":7,"year":2023},"status":"Finished Airing"},{"index":21,"id":50613,"mal_id":50613,"title":"Rurouni Kenshin: Meiji Kenkaku Romantan (2023)","english":"Rurouni Kenshin","native":"るろうに剣心 -明治剣客浪漫譚-","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2023,"start_date":{"day":7,"month":7,"year":2023},"status":"Finished Airing"},{"index":22,"id":53263,"mal_id":53263,"title":"Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi","english":"The Great Cleric","native":"聖者無双","synonyms":["The Great Cleric: A Salaryman's Path to Surviving Another World"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":7,"month":7,"year":2023},"status":"Finished Airing"},{"index":23,"id":36699,"mal_id":36699,"title":"Kimitachi wa Dou Ikiru ka","english":"The Boy and the Heron","native":"君たちはどう生きるか","synonyms":["How Do You Live?"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":14,"month":7,"year":2023},"status":"Finished Airing"},{"index":24,"id":49894,"mal_id":49894,"title":"Eiyuu Kyoushitsu","english":"Classroom for Heroes","native":"英雄教室","synonyms":["Class Room✿For Heroes","Hero Classroom"],"format":"TV","episodes":12,"season":"SUMMER","year":2023,"start_date":{"day":9,"month":7,"year":2023},"status":"Finished Airing"}]},{"year":2025,"season":"summer","anilist":[{"index":0,"id":178025,"mal_id":59062,"title":"Gachiakuta","english":"Gachiakuta","native":"ガチアクタ","synonyms":["Гачиакута"],"format":"TV","episodes":24,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"},{"index":1,"id":185660,"mal_id":60543,"title":"Dandadan 2nd Season","english":"DAN DA DAN Season 2","native":"ダンダダン 第2期","synonyms":["Dan Da Dan: Evil Eye"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":4},"status":"FINISHED"},{"index":2,"id":171627,"mal_id":57555,"title":"Chainsaw Man: Reze-hen","english":"Chainsaw Man – The Movie: Reze Arc","native":"チェンソーマン レゼ篇","synonyms":["CSM: Reze-hen","CSM – The Movie: Reze Arc","Chainsaw Man – O Filme: Arco da Reze","Chainsaw Man - La película: El arco de Reze","Chainsaw Man - Il Film: La Storia di Reze","Человек-бензопила: Фильм – История Резе"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":9,"day":19},"status":"FINISHED"},{"index":3,"id":181444,"mal_id":59845,"title":"Kaoru Hana wa Rin to Saku","english":"The Fragrant Flower Blooms With Dignity","native":"薫る花は凛と咲く","synonyms":["Kaoru i Rin: Rozkwitając z tobą","BLOOM","Благоухающий цветок расцветает с достоинством","La nobleza de las flores","Kaoru und Rin"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"},{"index":4,"id":178788,"mal_id":59192,"title":"Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai","english":"Demon Slayer: Kimetsu no Yaiba Infinity Castle","native":"劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来","synonyms":["Demon Slayer: Kimetsu no Yaiba La Forteresse infinie","Demon Slayer: Kimetsu no Yaiba Castelo Infinito","Клинок, Рассекающий Демонов: Бесконечный Замок"],"format":"MOVIE","episodes":1,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":18},"status":"FINISHED"},{"index":5,"id":154768,"mal_id":53065,"title":"Sono Bisque Doll wa Koi wo Suru Season 2","english":"My Dress-Up Darling Season 2","native":"その着せ替え人形は恋をする Season 2","synonyms":["Sono Kisekae Ningyou wa Koi wo suru","หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2","その着せ替え人形(ビスク・ドール)は恋をする","Kisekoi 2","Si Boneka Rias Sedang Jatuh Cinta","着せ恋 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"},{"index":6,"id":178754,"mal_id":59177,"title":"Kaijuu 8-gou 2nd Season","english":"Kaiju No. 8 Season 2","native":"怪獣8号 第2期","synonyms":["KAIJU No. EIGHT 2"],"format":"TV","episodes":11,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":19},"status":"FINISHED"},{"index":7,"id":177689,"mal_id":58913,"title":"Hikaru ga Shinda Natsu","english":"The Summer Hikaru Died","native":"光が死んだ夏","synonyms":["Lato, kiedy umarł Hikaru","O Verão em que Hikaru Morreu","صيف وفاة هيكارو","光死去的夏天","光逝去的夏天","Der Sommer, in dem Hikaru starb","L'estate in cui Hikaru è morto","히카루가 죽은 여름","El verano en que Hikaru murió","หน้าร้อนที่ฮิคารุจากไป","Лето, когда погас свет","Léto, kdy umřel Hikaru"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"},{"index":8,"id":185407,"mal_id":60489,"title":"Takopii no Genzai","english":"Takopi's Original Sin","native":"タコピーの原罪","synonyms":[],"format":"ONA","episodes":6,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":6,"day":28},"status":"FINISHED"},{"index":9,"id":184237,"mal_id":60285,"title":"SAKAMOTO DAYS Part 2","english":"SAKAMOTO DAYS Part 2","native":"SAKAMOTO DAYS 第2クール","synonyms":["サカモト デイズ 2クール"],"format":"ONA","episodes":11,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":15},"status":"FINISHED"},{"index":10,"id":175914,"mal_id":58390,"title":"Yofukashi no Uta Season 2","english":"Call of the Night Season 2","native":"よふかしのうた Season 2","synonyms":["Zew nocy. Sezon 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":4},"status":"FINISHED"},{"index":11,"id":179966,"mal_id":59459,"title":"Silent Witch: Chinmoku no Majo no Kakushigoto","english":"Secrets of the Silent Witch","native":"サイレント・ウィッチ 沈黙の魔女の隠しごと","synonyms":["ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน","Silent Witch 沉默魔女的祕密"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":5},"status":"FINISHED"},{"index":12,"id":186052,"mal_id":60732,"title":"Mizu Zokusei no Mahou Tsukai","english":"The Water Magician","native":"水属性の魔法使い","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":4},"status":"FINISHED"},{"index":13,"id":171046,"mal_id":57433,"title":"Seishun Buta Yarou wa Santa Claus no Yume wo Minai","english":"Rascal Does Not Dream of Santa Claus","native":"青春ブタ野郎はサンタクロースの夢を見ない","synonyms":["AoButa","青ブタ","Rascal Does Not Dream: University Student Arc","Rascal Series: University Arc","青春ブタ野郎 大学生編","Seishun Buta Yarou: Daigakusei-hen"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":5},"status":"FINISHED"},{"index":14,"id":189117,"mal_id":61322,"title":"Dr. STONE: SCIENCE FUTURE Part 2","english":"Dr. STONE SCIENCE FUTURE Cour 2","native":"Dr.STONE SCIENCE FUTURE 2クール","synonyms":["Dr.STONE Season 4 Part 2","ドクターストーン"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":10},"status":"FINISHED"},{"index":15,"id":178869,"mal_id":59205,"title":"Clevatess: Majuu no Ou to Akago to Kabane no Yuusha","english":"Clevatess","native":"クレバテス-魔獣の王と赤子と屍の勇者","synonyms":["Clevatess: The King of Devil Beasts","The Baby and the Brave of Undead"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":2},"status":"FINISHED"},{"index":16,"id":177474,"mal_id":58811,"title":"Tougen Anki","english":"TOUGEN ANKI","native":"桃源暗鬼","synonyms":["Tougen Anki: Legend of the Cursed Blood","Tougen Anki: Dark Demon of Paradise"],"format":"TV","episodes":24,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":11},"status":"FINISHED"},{"index":17,"id":173780,"mal_id":57907,"title":"Tate no Yuusha no Nariagari Season 4","english":"The Rising of the Shield Hero Season 4","native":"盾の勇者の成り上がり Season 4","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":9},"status":"FINISHED"},{"index":18,"id":182309,"mal_id":59986,"title":"Grand Blue Season 2","english":"Grand Blue Dreaming Season 2","native":"ぐらんぶる Season 2","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":8},"status":"FINISHED"},{"index":19,"id":178090,"mal_id":59095,"title":"Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season","english":"I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2","native":"転生したら第七王子だったので、気ままに魔術を極めます 第2期","synonyms":["Dainanaoji 2","第七王子 第2期","轉生為第七王子,隨心所欲的魔法學習之路 第二季"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":10},"status":"FINISHED"},{"index":20,"id":184591,"mal_id":60326,"title":"Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)","english":"There's No Freaking Way I'll Be Your Lover! Unless…","native":"わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)","synonyms":["WataNare","Um Amor Impossível! Ou não...","ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)","わたなれ"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":8},"status":"FINISHED"},{"index":21,"id":178433,"mal_id":59130,"title":"Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku","english":"Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin","native":"異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~","synonyms":["Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn","Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"},{"index":22,"id":181841,"mal_id":59898,"title":"CITY THE ANIMATION","english":"CITY THE ANIMATION","native":"CITY THE ANIMATION","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":7},"status":"FINISHED"},{"index":23,"id":178886,"mal_id":59207,"title":"Mikadono Sanshimai wa Angai, Choroi.","english":"Dealing with Mikadono Sisters Is a Breeze","native":"帝乃三姉妹は案外、チョロい。","synonyms":["The Mikadono sisters are surprisingly easy to deal with."],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":10},"status":"FINISHED"},{"index":24,"id":180929,"mal_id":59791,"title":"Ruri no Houseki","english":"Ruri Rocks","native":"瑠璃の宝石","synonyms":["Introduction to Mineralogy"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"year":2025,"month":7,"day":6},"status":"FINISHED"}],"jikan":[{"index":0,"id":60543,"mal_id":60543,"title":"Dandadan 2nd Season","english":"Dan Da Dan Season 2","native":"ダンダダン 第2期","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":4,"month":7,"year":2025},"status":"Finished Airing"},{"index":1,"id":59062,"mal_id":59062,"title":"Gachiakuta","english":"Gachiakuta","native":"ガチアクタ","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"},{"index":2,"id":57555,"mal_id":57555,"title":"Chainsaw Man Movie: Reze-hen","english":"Chainsaw Man – The Movie: Reze Arc","native":"劇場版 チェンソーマン レゼ篇","synonyms":["Gekijouban Chainsaw Man: Reze-hen"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":9,"year":2025},"status":"Finished Airing"},{"index":3,"id":53065,"mal_id":53065,"title":"Sono Bisque Doll wa Koi wo Suru Season 2","english":"My Dress-Up Darling Season 2","native":"その着せ替え人形は恋をする Season 2","synonyms":["KiseKoi"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"},{"index":4,"id":59845,"mal_id":59845,"title":"Kaoru Hana wa Rin to Saku","english":"The Fragrant Flower Blooms with Dignity","native":"薫る花は凛と咲く","synonyms":["The Fragrant Flowers Bloom with Dignity"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"},{"index":5,"id":59192,"mal_id":59192,"title":"Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai","english":"Demon Slayer: Kimetsu no Yaiba - The Movie: Infinity Castle - Part 1: Akaza Returns","native":"劇場版 鬼滅の刃 無限城編 第一章 猗窩座再来","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":7,"year":2025},"status":"Finished Airing"},{"index":6,"id":59177,"mal_id":59177,"title":"Kaijuu 8-gou 2nd Season","english":"Kaiju No. 8 Season 2","native":"怪獣8号 第2期","synonyms":["8Kaijuu","Monster #8","Kaiju No. Eight","Kaiju #8"],"format":"TV","episodes":11,"season":"SUMMER","year":2025,"start_date":{"day":19,"month":7,"year":2025},"status":"Finished Airing"},{"index":7,"id":58913,"mal_id":58913,"title":"Hikaru ga Shinda Natsu","english":"The Summer Hikaru Died","native":"光が死んだ夏","synonyms":["Hikanatsu"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"},{"index":8,"id":60285,"mal_id":60285,"title":"Sakamoto Days Part 2","english":"Sakamoto Days Part 2","native":"SAKAMOTO DAYS 第2クール","synonyms":[],"format":"TV","episodes":11,"season":"SUMMER","year":2025,"start_date":{"day":15,"month":7,"year":2025},"status":"Finished Airing"},{"index":9,"id":58390,"mal_id":58390,"title":"Yofukashi no Uta Season 2","english":"Call of the Night Season 2","native":"よふかしのうた Season2","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":4,"month":7,"year":2025},"status":"Finished Airing"},{"index":10,"id":61322,"mal_id":61322,"title":"Dr. Stone: Science Future Part 2","english":"Dr. Stone: Science Future Part 2","native":"Dr.STONE SCIENCE FUTURE 第2クール","synonyms":["Dr. Stone 4th Season Part 2"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":10,"month":7,"year":2025},"status":"Finished Airing"},{"index":11,"id":59459,"mal_id":59459,"title":"Silent Witch: Chinmoku no Majo no Kakushigoto","english":"Secrets of the Silent Witch","native":"サイレント・ウィッチ 沈黙の魔女の隠しごと","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"day":5,"month":7,"year":2025},"status":"Finished Airing"},{"index":12,"id":57433,"mal_id":57433,"title":"Seishun Buta Yarou wa Santa Claus no Yume wo Minai","english":"Rascal Does Not Dream of Santa Claus","native":"青春ブタ野郎はサンタクロースの夢を見ない","synonyms":["Seishun Buta Yarou: Daigakusei-hen"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"day":5,"month":7,"year":2025},"status":"Finished Airing"},{"index":13,"id":59986,"mal_id":59986,"title":"Grand Blue Season 2","english":"Grand Blue Dreaming Season 2","native":"ぐらんぶる Season 2","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":8,"month":7,"year":2025},"status":"Finished Airing"},{"index":14,"id":60732,"mal_id":60732,"title":"Mizu Zokusei no Mahoutsukai","english":"The Water Magician","native":"水属性の魔法使い","synonyms":["The Water Magician: The Central Provinces Arc","Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":4,"month":7,"year":2025},"status":"Finished Airing"},{"index":15,"id":59205,"mal_id":59205,"title":"Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha","english":"Clevatess","native":"クレバテス-魔獣の王と赤子と屍の勇者-","synonyms":["Clevatess: The King of Devil Beasts","The Baby and the Brave of Undead"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":2,"month":7,"year":2025},"status":"Finished Airing"},{"index":16,"id":57907,"mal_id":57907,"title":"Tate no Yuusha no Nariagari Season 4","english":"The Rising of the Shield Hero Season 4","native":"盾の勇者の成り上がり Season 4","synonyms":["Tate no Yuusha no Nariagari 4th Season","The Rising of the Shield Hero 4th Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":9,"month":7,"year":2025},"status":"Finished Airing"},{"index":17,"id":58811,"mal_id":58811,"title":"Tougen Anki","english":"Tougen Anki","native":"桃源暗鬼","synonyms":[],"format":"TV","episodes":24,"season":"SUMMER","year":2025,"start_date":{"day":11,"month":7,"year":2025},"status":"Finished Airing"},{"index":18,"id":59095,"mal_id":59095,"title":"Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season","english":"I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2","native":"転生したら第七王子だったので、気ままに魔術を極めます 第2期","synonyms":["Dainanaoji","I Was Reincarnated as the 7th Prince","so I Will Perfect My Magic as I Please 2nd Season"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":10,"month":7,"year":2025},"status":"Finished Airing"},{"index":19,"id":59130,"mal_id":59130,"title":"Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku","english":"Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin","native":"異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~","synonyms":[],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"},{"index":20,"id":59207,"mal_id":59207,"title":"Mikadono Sanshimai wa Angai, Choroi.","english":"Dealing with Mikadono Sisters Is a Breeze","native":"帝乃三姉妹は案外、チョロい。","synonyms":[],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":10,"month":7,"year":2025},"status":"Finished Airing"},{"index":21,"id":60326,"mal_id":60326,"title":"Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)","english":"There's No Freaking Way I'll be Your Lover! Unless...","native":"わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)","synonyms":["Watanare"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":8,"month":7,"year":2025},"status":"Finished Airing"},{"index":22,"id":59277,"mal_id":59277,"title":"Kanojo, Okarishimasu 4th Season","english":"Rent-a-Girlfriend Season 4","native":"彼女、お借りします 第4期","synonyms":["Kanokari"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":5,"month":7,"year":2025},"status":"Finished Airing"},{"index":23,"id":59424,"mal_id":59424,"title":"Yuusha Party wo Tsuihou sareta Shiromadoushi, S-Rank Boukensha ni Hirowareru: Kono Shiromadoushi ga Kikakugai Sugiru","english":"Scooped Up by an S-Rank Adventurer!","native":"勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~","synonyms":["The White Mage Who Was Banished From the Hero's Party Is Picked Up By an S-Rank Adventurer: This White Mage Is Too Out of the Ordinary!"],"format":"TV","episodes":12,"season":"SUMMER","year":2025,"start_date":{"day":11,"month":7,"year":2025},"status":"Finished Airing"},{"index":24,"id":59791,"mal_id":59791,"title":"Ruri no Houseki","english":"Ruri Rocks","native":"瑠璃の宝石","synonyms":["Introduction to Mineralogy"],"format":"TV","episodes":13,"season":"SUMMER","year":2025,"start_date":{"day":6,"month":7,"year":2025},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-07.json b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-07.json new file mode 100644 index 0000000..2121a87 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/adjudication_inputs/shard-07.json @@ -0,0 +1 @@ +{"shard":7,"seasons":[{"year":2011,"season":"winter","anilist":[{"index":0,"id":9756,"mal_id":9756,"title":"Mahou Shoujo Madoka☆Magica","english":"Puella Magi Madoka Magica","native":"魔法少女まどか☆マギカ","synonyms":["Mahou Shoujo Madoka Magika","Magical Girl Madoka Magica","PMMM","MSMM","הנערה הקסומה מאדוקה מאגיקה","Девочка-волшебница Мадока☆Волшебство","Μάντοκα, το Μαγικό Κορίτσι","สาวน้อยเวทมนตร์ มาโดกะ"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":7},"status":"FINISHED"},{"index":1,"id":9041,"mal_id":9041,"title":"IS: Infinite Stratos","english":"Infinite Stratos","native":"IS〈インフィニット・ストラトス〉","synonyms":["IS ปฏิบัติการรักจักรกลทะยานฟ้า"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":7},"status":"FINISHED"},{"index":2,"id":8425,"mal_id":8425,"title":"GOSICK","english":"Gosick","native":"GOSICK","synonyms":["ゴシック"],"format":"TV","episodes":24,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":8},"status":"FINISHED"},{"index":3,"id":9656,"mal_id":9656,"title":"Kimi ni Todoke 2ND SEASON","english":"Kimi ni Todoke: From Me to You Season 2","native":"君に届け 2ND SEASON","synonyms":["Reaching You 2nd Season","Llegando a ti: Temporada 2"],"format":"TV","episodes":13,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":12},"status":"FINISHED"},{"index":4,"id":8841,"mal_id":8841,"title":"Kore wa Zombie desu ka?","english":"Is this a Zombie?","native":"これはゾンビですか?","synonyms":["เจ้านี่เหรอซอมบี้ "],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":11},"status":"FINISHED"},{"index":5,"id":9513,"mal_id":9513,"title":"Beelzebub","english":"Beelzebub","native":"べるぜバブ","synonyms":[],"format":"TV","episodes":60,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":9},"status":"FINISHED"},{"index":6,"id":9367,"mal_id":9367,"title":"Freezing","english":"Freezing","native":"フリージング","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":8},"status":"FINISHED"},{"index":7,"id":11553,"mal_id":11553,"title":"Toradora!: Bentou no Gokui","english":"Toradora!: Bento Battle","native":"とらドラ! 弁当の極意","synonyms":["Toradora! Special"],"format":"OVA","episodes":1,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":12,"day":21},"status":"FINISHED"},{"index":8,"id":10020,"mal_id":10020,"title":"Ore no Imouto ga Konna ni Kawaii Wake ga Nai (ONA)","english":"Oreimo (ONA)","native":"俺の妹がこんなに可愛いわけがない","synonyms":["My Little Sister Can't Be This Cute Specials","น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ตอนพิเศษ"],"format":"ONA","episodes":4,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":2,"day":22},"status":"FINISHED"},{"index":9,"id":6954,"mal_id":6954,"title":"Kara no Kyoukai: Shuushou","english":"the Garden of sinners Chapter 8: The Final Chapter","native":"空の境界 終章","synonyms":["The Garden of Sinners: Epilogue"],"format":"OVA","episodes":1,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":2,"day":2},"status":"FINISHED"},{"index":10,"id":8426,"mal_id":8426,"title":"Hourou Musuko","english":"Wandering Son","native":"放浪息子","synonyms":["The Transient Son"],"format":"TV","episodes":11,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":14},"status":"FINISHED"},{"index":11,"id":9330,"mal_id":9330,"title":"Dragon Crisis!","english":"Dragon Crisis","native":"ドラゴンクライシス!","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":11},"status":"FINISHED"},{"index":12,"id":10794,"mal_id":10794,"title":"IS: Infinite Stratos Encore - Koi ni Kogareru Sextet","english":"IS: Infinite Stratos Encore: A Sextet Yearning for Love","native":"IS <インフィニット・ストラトス> アンコール『恋に焦がれる六重奏』","synonyms":["Infinite Stratos OVA"],"format":"OVA","episodes":1,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":12,"day":7},"status":"FINISHED"},{"index":13,"id":9471,"mal_id":9471,"title":"Baka to Test to Shoukanjuu: Matsuri","english":"Baka and Test - Summon the Beasts: Matsuri","native":"バカとテストと召喚獣 ~祭~","synonyms":["Baka to Test to Shoukanjuu OVA","Baka to Test to Shokanju OVA","The Idiot, the Tests, and the Summoned Creatures OVA","Baka and Test: Summon the Beasts OVA"],"format":"OVA","episodes":2,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":2,"day":23},"status":"FINISHED"},{"index":14,"id":9331,"mal_id":9331,"title":"Yumekui Merry","english":"Dream Eater Merry","native":"夢喰いメリー","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":7},"status":"FINISHED"},{"index":15,"id":9834,"mal_id":9834,"title":"Level E","english":"Level E","native":"レベルE","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":11},"status":"FINISHED"},{"index":16,"id":10851,"mal_id":10851,"title":"euphoria","english":null,"native":"euphoria","synonyms":[],"format":"OVA","episodes":6,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":12,"day":22},"status":"FINISHED"},{"index":17,"id":9587,"mal_id":9587,"title":"Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!","english":"I don't like my big brother at all!!","native":"お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!","synonyms":["Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!","Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!","Onisuki","Eu não gosto nem um pouco do meu maninho!!","Definitivamente. ¡No me gusta mi hermano para nada!"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":9314,"mal_id":9314,"title":"Fractale","english":"Fractale","native":"フラクタル","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":14},"status":"FINISHED"},{"index":19,"id":10893,"mal_id":10893,"title":"Kyousougiga","english":null,"native":"京騒戯画","synonyms":["Kyousogiga","第一弾"],"format":"ONA","episodes":1,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":12,"day":10},"status":"FINISHED"},{"index":20,"id":9130,"mal_id":9130,"title":"Saint Seiya: THE LOST CANVAS - Meiou Shinwa 2","english":"Saint Seiya: The Lost Canvas 2","native":"聖闘士星矢 THE LOST CANVAS 冥王神話 2","synonyms":["Los Guerreros del Zodiaco: El lienzo perdido - Parte 2"],"format":"OVA","episodes":13,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":2,"day":23},"status":"FINISHED"},{"index":21,"id":9539,"mal_id":9539,"title":"Cardfight!! Vanguard","english":"Cardfight Vanguard","native":"カードファイト!! ヴァンガード","synonyms":[],"format":"TV","episodes":65,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":8},"status":"FINISHED"},{"index":22,"id":10075,"mal_id":10075,"title":"NARUTO×UT","english":null,"native":"NARUTO×UT","synonyms":["NARUTO x UT"],"format":"OVA","episodes":1,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":1},"status":"FINISHED"},{"index":23,"id":9510,"mal_id":9510,"title":"Mitsudomoe Zouryouchuu!","english":null,"native":"みつどもえ増量中!","synonyms":["Mitsudomoe Dai Ni Ki","Mitsudomoe 2-ki"],"format":"TV","episodes":8,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":1,"day":9},"status":"FINISHED"},{"index":24,"id":10330,"mal_id":10330,"title":"Bakugan Battle Brawlers: Mechtanium Surge","english":"Bakugan: Mechtanium Surge","native":"爆丸 バトルブローラーズ メクタニウムサージ","synonyms":["爆丸4 机械波涛","Bakugan: Świat Mechtoganów","Bakugan: El Surgimiento de Mechtanium"],"format":"TV","episodes":46,"season":"WINTER","year":2011,"start_date":{"year":2011,"month":2,"day":13},"status":"FINISHED"}],"jikan":[{"index":0,"id":9756,"mal_id":9756,"title":"Mahou Shoujo Madoka★Magica","english":"Puella Magi Madoka Magica","native":"魔法少女まどか★マギカ","synonyms":["Mahou Shoujo Madoka Magika","Magical Girl Madoka Magica"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":7,"month":1,"year":2011},"status":"Finished Airing"},{"index":1,"id":9041,"mal_id":9041,"title":"IS: Infinite Stratos","english":"Infinite Stratos","native":"IS 〈インフィニット・ストラトス〉","synonyms":["IS"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":7,"month":1,"year":2011},"status":"Finished Airing"},{"index":2,"id":8841,"mal_id":8841,"title":"Kore wa Zombie desu ka?","english":"Is This a Zombie?","native":"これはゾンビですか?","synonyms":["Koreha Zombie Desuka?","Kore ha Zombie Desu ka?","Kore wa Zombie Desuka?"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":11,"month":1,"year":2011},"status":"Finished Airing"},{"index":3,"id":9513,"mal_id":9513,"title":"Beelzebub","english":"Beelzebub","native":"べるぜバブ","synonyms":[],"format":"TV","episodes":60,"season":"WINTER","year":2011,"start_date":{"day":9,"month":1,"year":2011},"status":"Finished Airing"},{"index":4,"id":8425,"mal_id":8425,"title":"Gosick","english":null,"native":"GOSICK -ゴシック-","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2011,"start_date":{"day":8,"month":1,"year":2011},"status":"Finished Airing"},{"index":5,"id":9656,"mal_id":9656,"title":"Kimi ni Todoke 2nd Season","english":"Kimi ni Todoke: From Me to You Season 2","native":"君に届け 2ND SEASON","synonyms":["Kimi ni Todoke: From Me to You 2nd Season","Reaching You 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":12,"month":1,"year":2011},"status":"Finished Airing"},{"index":6,"id":9367,"mal_id":9367,"title":"Freezing","english":"Freezing","native":"フリージング","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":8,"month":1,"year":2011},"status":"Finished Airing"},{"index":7,"id":10020,"mal_id":10020,"title":"Ore no Imouto ga Konnani Kawaii Wake ga Nai Specials","english":"OreImo Specials","native":"俺の妹がこんなに可愛いわけがない","synonyms":["My Little Sister Can't Be This Cute Specials"],"format":"ONA","episodes":4,"season":null,"year":null,"start_date":{"day":22,"month":2,"year":2011},"status":"Finished Airing"},{"index":8,"id":9330,"mal_id":9330,"title":"Dragon Crisis!","english":null,"native":"ドラゴンクライシス!","synonyms":["Dragon Crisis!"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":11,"month":1,"year":2011},"status":"Finished Airing"},{"index":9,"id":9331,"mal_id":9331,"title":"Yumekui Merry","english":"Dream Eater Merry","native":"夢喰いメリー","synonyms":["Yumekui Merry"],"format":"TV","episodes":13,"season":"WINTER","year":2011,"start_date":{"day":7,"month":1,"year":2011},"status":"Finished Airing"},{"index":10,"id":8426,"mal_id":8426,"title":"Hourou Musuko","english":"Wandering Son","native":"放浪息子","synonyms":["The Transient Son"],"format":"TV","episodes":11,"season":"WINTER","year":2011,"start_date":{"day":14,"month":1,"year":2011},"status":"Finished Airing"},{"index":11,"id":9734,"mal_id":9734,"title":"K-On!!: Keikaku!","english":"K-On!!: Plan!","native":"けいおん!! 計画!","synonyms":["Keion 2 Special","K-On!! 2nd Season Special","K-On!! Episode 27"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":16,"month":3,"year":2011},"status":"Finished Airing"},{"index":12,"id":9471,"mal_id":9471,"title":"Baka to Test to Shoukanjuu: Matsuri","english":"Baka & Test - Summon the Beasts OVA","native":"バカとテストと召喚獣 ~祭~","synonyms":["Baka to Test to Shoukanjuu OVA","Baka to Test to Shokanju OVA","The Idiot","the Tests","and the Summoned Creatures OVA","Baka and Test: Summon the Beasts OVA"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":23,"month":2,"year":2011},"status":"Finished Airing"},{"index":13,"id":6954,"mal_id":6954,"title":"Kara no Kyoukai Movie 8: Shuushou","english":"The Garden of Sinners Chapter 8: Epilogue","native":"劇場版 空の境界 the Garden of sinners 終章","synonyms":["Kara no Kyoukai: Epilogue","The Garden of Sinners Epilogue","The Garden of Sinners: the Garden of Sinners"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":2,"year":2011},"status":"Finished Airing"},{"index":14,"id":9834,"mal_id":9834,"title":"Level E","english":"Level E","native":"レベルE","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2011,"start_date":{"day":11,"month":1,"year":2011},"status":"Finished Airing"},{"index":15,"id":9587,"mal_id":9587,"title":"Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!","english":"I Don't Like My Big Brother At All!","native":"お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!","synonyms":["Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!","Onisuki","Because I Don't Like My Big Brother at All!!"],"format":"TV","episodes":12,"season":"WINTER","year":2011,"start_date":{"day":9,"month":1,"year":2011},"status":"Finished Airing"},{"index":16,"id":8857,"mal_id":8857,"title":"Nichijou: Nichijou no 0-wa","english":"Nichijou - My Ordinary Life Episode 0","native":"日常の0話","synonyms":["Nichijou Episode 0","Nichijou OVA","Everyday"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":3,"year":2011},"status":"Finished Airing"},{"index":17,"id":9314,"mal_id":9314,"title":"Fractale","english":"Fractale","native":"フラクタル","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2011,"start_date":{"day":14,"month":1,"year":2011},"status":"Finished Airing"},{"index":18,"id":10152,"mal_id":10152,"title":"Kimi ni Todoke: Kataomoi","english":"Kimi ni Todoke: From Me to You - Unrequited Love","native":"君に届け 片想い","synonyms":["Kimi ni Todoke 2nd Season Episode 00","Unrequited Love","Kimi ni Todoke Recap"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":5,"month":1,"year":2011},"status":"Finished Airing"},{"index":19,"id":9130,"mal_id":9130,"title":"Saint Seiya: The Lost Canvas - Meiou Shinwa 2","english":"Saint Seiya: The Lost Canvas 2","native":"聖闘士星矢 THE LOST CANVAS 冥王神話 2","synonyms":[],"format":"OVA","episodes":13,"season":null,"year":null,"start_date":{"day":23,"month":2,"year":2011},"status":"Finished Airing"},{"index":20,"id":8063,"mal_id":8063,"title":"Sekaiichi Hatsukoi OVA","english":null,"native":"世界一初恋 OVA","synonyms":["Sekaiichi Hatsukoi Episode 0","Sekai-ichi Hatsukoi: Onodera Ritsu no Baai","Sekaiichi Hatsukoi Episode 12.5","Sekaiichi Hatsukoi: Yoshino Chiaki no Baai","Sekai'ichi Hatsukoi"],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":22,"month":3,"year":2011},"status":"Finished Airing"},{"index":21,"id":9999,"mal_id":9999,"title":"One Piece 3D: Mugiwara Chase","english":"One Piece 3D: Straw Hat Chase","native":"ONE PIECE 3D 麦わらチェイス","synonyms":["One Piece 3D: Strawhat Chase","One Piece Movie 11"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":19,"month":3,"year":2011},"status":"Finished Airing"},{"index":22,"id":10076,"mal_id":10076,"title":"Kämpfer für die Liebe","english":"Kämpfer für die Liebe","native":"けんぷファー für die Liebe","synonyms":["Kampfer: Fur die Liebe","Kämpfer episode 13","Kämpfer episode 14"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":6,"month":3,"year":2011},"status":"Finished Airing"},{"index":23,"id":9539,"mal_id":9539,"title":"Cardfight!! Vanguard","english":"Cardfight!! Vanguard","native":"カードファイト!! ヴァンガード","synonyms":[],"format":"TV","episodes":65,"season":"WINTER","year":2011,"start_date":{"day":8,"month":1,"year":2011},"status":"Finished Airing"},{"index":24,"id":9724,"mal_id":9724,"title":"Break Blade Movie 5: Shisen no Hate","english":"Broken Blade 5","native":"ブレイク ブレイド 死線ノ涯","synonyms":["Breaker Blade 5","Break Blade 5: Border of Death"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":1,"year":2011},"status":"Finished Airing"}]},{"year":2013,"season":"winter","anilist":[{"index":0,"id":14749,"mal_id":14749,"title":"Ore no Kanojo to Osananajimi ga Shuraba Sugiru","english":"Oreshura","native":"俺の彼女と幼なじみが修羅場すぎる","synonyms":["My Girlfriend and Childhood Friend Fight Too Much","สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน"],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":6},"status":"FINISHED"},{"index":1,"id":16417,"mal_id":16417,"title":"Tamako Market","english":"Tamako Market","native":"たまこまーけっと","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":10},"status":"FINISHED"},{"index":2,"id":15315,"mal_id":15315,"title":"Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?","english":"Problem Children Are Coming From Another World, Aren't They?","native":"問題児たちが異世界から来るそうですよ?","synonyms":["ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก","문제아들이 이세계에서 온다는 모양인데요?","문제아들이 다른 세계에서 온다는 모양인데요?"],"format":"TV","episodes":10,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":12},"status":"FINISHED"},{"index":3,"id":15051,"mal_id":15051,"title":"Love Live! School idol project","english":"Love Live! School Idol Project","native":"ラブライブ! School idol project","synonyms":["Живая любовь: проект \"Школьный идол\""],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":6},"status":"FINISHED"},{"index":4,"id":14833,"mal_id":14833,"title":"Maoyuu Maou Yuusha","english":"Maoyu: Archenemy & Hero","native":"まおゆう魔王勇者","synonyms":["Maoyu Maou Yusha"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":5},"status":"FINISHED"},{"index":5,"id":14967,"mal_id":14967,"title":"Boku wa Tomodachi ga Sukunai NEXT","english":"Haganai NEXT","native":"僕は友達が少ない NEXT","synonyms":["Boku wa Tomodachi ga Sukunai 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":11},"status":"FINISHED"},{"index":6,"id":14349,"mal_id":14349,"title":"Little Witch Academia","english":"Little Witch Academia","native":"リトルウィッチアカデミア","synonyms":["LWA","Wakate Animator Ikusei Project","2012 Young Animator Training Project","Anime Mirai 2012"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":3,"day":2},"status":"FINISHED"},{"index":7,"id":15379,"mal_id":15379,"title":"Kotoura-san","english":"The Troubled Life of Miss Kotoura","native":"琴浦さん","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":11},"status":"FINISHED"},{"index":8,"id":13271,"mal_id":13271,"title":"HUNTER×HUNTER: Phantom Rouge","english":"Hunter x Hunter: Phantom Rouge","native":"劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)","synonyms":["Gekijouban Hunter x Hunter: Hiiro no Genei","HxH Movie","HxH: Phantom Rogue","Hunter x Hunter: Fantasma Vermelho"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":12},"status":"FINISHED"},{"index":9,"id":14353,"mal_id":14353,"title":"Death Billiards","english":null,"native":"デス・ビリヤード","synonyms":["Wakate Animator Ikusei Project","2012 Young Animator Training Project","Anime Mirai 2012"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":3,"day":2},"status":"FINISHED"},{"index":10,"id":14397,"mal_id":14397,"title":"Chihayafuru 2","english":"Chihayafuru 2","native":"ちはやふる 2","synonyms":["Chihayafull 2"],"format":"TV","episodes":25,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":12},"status":"FINISHED"},{"index":11,"id":12115,"mal_id":12115,"title":"Berserk: Ougon Jidai-hen III - Kourin","english":"Berserk: The Golden Age Arc III - The Advent","native":"ベルセルク 黄金時代篇Ⅲ 降臨","synonyms":["Berserk Movie","Berserk Saga","Berserk: Golden Age Arc III - Descent","Berserk: La Edad de Oro III - El Advenimiento"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":2,"day":1},"status":"FINISHED"},{"index":12,"id":15085,"mal_id":15085,"title":"AMNESIA","english":"AMNESIA","native":"AMNESIA","synonyms":["アムネシア"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":7},"status":"FINISHED"},{"index":13,"id":14811,"mal_id":14811,"title":"GJ-bu","english":"GJ Club","native":"GJ部","synonyms":["Good Job-bu"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":10},"status":"FINISHED"},{"index":14,"id":11743,"mal_id":11743,"title":"Toaru Majutsu no Index: Endymion no Kiseki","english":"A Certain Magical Index: The Miracle of Endymion","native":"劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟","synonyms":["Gekijouban To Aru Majutsu no Kinsho Mokuroku","อินเด็กซ์ คัมภีร์คาถาต้องห้าม เดอะ มูฟวี่ ","Movie Cấm thư ma thuật Index","Daftar Sihir Terlarang The Movie"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":2,"day":23},"status":"FINISHED"},{"index":15,"id":14355,"mal_id":14355,"title":"Yama no Susume","english":"Encouragement of Climb","native":"ヤマノススメ","synonyms":[],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":3},"status":"FINISHED"},{"index":16,"id":15119,"mal_id":15119,"title":"Senran Kagura","english":"Senran Kagura: Ninja Flash!","native":"閃乱カグラ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":6},"status":"FINISHED"},{"index":17,"id":16005,"mal_id":16005,"title":"Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke","english":"Unlimited Psychic Squad","native":"絶対可憐チルドレン THE UNLIMITED 兵部京介","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":8},"status":"FINISHED"},{"index":18,"id":15751,"mal_id":15751,"title":"Senyuu.","english":"Senyuu","native":"戦勇.","synonyms":["Senyu.","Senyu"],"format":"TV_SHORT","episodes":13,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":9},"status":"FINISHED"},{"index":19,"id":16916,"mal_id":16916,"title":"Kuroko no Basket: Tip Off","english":"Kuroko's Basketball: Tip Off","native":"黒子のバスケ 第22.5Q 「Tip off」","synonyms":["Kuroko no Basket Special","Kuroko no Basket Episode 22.5"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":2,"day":22},"status":"FINISHED"},{"index":20,"id":15879,"mal_id":15879,"title":"Chuunibyou demo Koi ga Shitai!: DEPTH OF FIELD - Ai to Nikushimi Gekijou","english":"Love, Chunibyo & Other Delusions: Depth of Field - Ai to Nikushimi Gekijou","native":"中二病でも恋がしたい!DEPTH OF FIELD ~ 愛と憎しみ劇場","synonyms":[],"format":"SPECIAL","episodes":7,"season":"WINTER","year":2013,"start_date":{"year":2012,"month":12,"day":19},"status":"FINISHED"},{"index":21,"id":14515,"mal_id":14515,"title":"Sasami-san@Ganbaranai","english":null,"native":"ささみさん@がんばらない","synonyms":["Sasami-san at Ganbaranai","Sasami-san@Unmotivated"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":11},"status":"FINISHED"},{"index":22,"id":15109,"mal_id":15109,"title":"Cuticle Tantei Inaba","english":"Cuticle Detective Inaba","native":"キューティクル探偵因幡","synonyms":["Inaba, detective cuticular"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":4},"status":"FINISHED"},{"index":23,"id":15613,"mal_id":15613,"title":"Hakkenden: Touhou Hakken Ibun","english":"Hakkenden: Eight Dogs of the East","native":"八犬伝 -東方八犬異聞-","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":1,"day":6},"status":"FINISHED"},{"index":24,"id":17121,"mal_id":17121,"title":"Dareka no Manazashi","english":null,"native":"だれかのまなざし","synonyms":["Someone's Gaze"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2013,"start_date":{"year":2013,"month":2,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":15315,"mal_id":15315,"title":"Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?","english":"Problem Children Are Coming from Another World, Aren't They?","native":"問題児たちが異世界から来るそうですよ?","synonyms":[],"format":"TV","episodes":10,"season":"WINTER","year":2013,"start_date":{"day":12,"month":1,"year":2013},"status":"Finished Airing"},{"index":1,"id":14749,"mal_id":14749,"title":"Ore no Kanojo to Osananajimi ga Shuraba Sugiru","english":"Oreshura","native":"俺の彼女と幼なじみが修羅場すぎる","synonyms":["Ore no Kanojo to Osananajimi ga Shuraba Sugiru"],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"day":6,"month":1,"year":2013},"status":"Finished Airing"},{"index":2,"id":14967,"mal_id":14967,"title":"Boku wa Tomodachi ga Sukunai Next","english":"Haganai: I don't have many friends NEXT","native":"僕は友達が少ないNEXT","synonyms":["Boku wa Tomodachi ga Sukunai 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":11,"month":1,"year":2013},"status":"Finished Airing"},{"index":3,"id":14833,"mal_id":14833,"title":"Maoyuu Maou Yuusha","english":"Maoyu","native":"まおゆう魔王勇者","synonyms":["Maoyu Maou Yusha"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":5,"month":1,"year":2013},"status":"Finished Airing"},{"index":4,"id":15051,"mal_id":15051,"title":"Love Live! School Idol Project","english":"Love Live! School Idol Project","native":"ラブライブ! School idol project","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"day":6,"month":1,"year":2013},"status":"Finished Airing"},{"index":5,"id":16417,"mal_id":16417,"title":"Tamako Market","english":"Tamako Market","native":"たまこまーけっと","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":10,"month":1,"year":2013},"status":"Finished Airing"},{"index":6,"id":15379,"mal_id":15379,"title":"Kotoura-san","english":"The Troubled Life of Miss Kotoura","native":"琴浦さん","synonyms":["Kotoura-san"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":11,"month":1,"year":2013},"status":"Finished Airing"},{"index":7,"id":14349,"mal_id":14349,"title":"Little Witch Academia","english":null,"native":"リトルウィッチアカデミア","synonyms":["Wakate Animator Ikusei Project","2012 Young Animator Training Project","Anime Mirai 2012","LWA"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":3,"year":2013},"status":"Finished Airing"},{"index":8,"id":15085,"mal_id":15085,"title":"Amnesia","english":"Amnesia","native":"AMNESIA","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":7,"month":1,"year":2013},"status":"Finished Airing"},{"index":9,"id":14397,"mal_id":14397,"title":"Chihayafuru 2","english":null,"native":"ちはやふる 2","synonyms":["Chihayafull 2"],"format":"TV","episodes":25,"season":"WINTER","year":2013,"start_date":{"day":12,"month":1,"year":2013},"status":"Finished Airing"},{"index":10,"id":14353,"mal_id":14353,"title":"Death Billiards","english":"Death Billiards","native":"デス・ビリヤード","synonyms":["Wakate Animator Ikusei Project","2012 Young Animator Training Project","Anime Mirai 2012"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":2,"month":3,"year":2013},"status":"Finished Airing"},{"index":11,"id":12115,"mal_id":12115,"title":"Berserk: Ougon Jidai-hen III - Kourin","english":"Berserk: The Golden Age Arc III - The Advent","native":"ベルセルク 黄金時代篇Ⅲ 降臨","synonyms":["Berserk Movie","Berserk Saga","Berserk: Golden Age Arc III - Descent"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":1,"month":2,"year":2013},"status":"Finished Airing"},{"index":12,"id":14837,"mal_id":14837,"title":"Dragon Ball Z Movie 14: Kami to Kami","english":"Dragon Ball Z: Battle of Gods","native":"ドラゴンボールZ 神と神","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":30,"month":3,"year":2013},"status":"Finished Airing"},{"index":13,"id":13271,"mal_id":13271,"title":"Hunter x Hunter Movie 1: Phantom Rouge","english":"Hunter x Hunter: Phantom Rouge","native":"劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)","synonyms":["Gekijouban Hunter x Hunter: Hiiro no Genei","HxH Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":1,"year":2013},"status":"Finished Airing"},{"index":14,"id":14811,"mal_id":14811,"title":"GJ-bu","english":"GJ Club","native":"GJ部","synonyms":["Good Job-bu"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":10,"month":1,"year":2013},"status":"Finished Airing"},{"index":15,"id":16005,"mal_id":16005,"title":"Zettai Karen Children: The Unlimited - Hyoubu Kyousuke","english":"Unlimited Psychic Squad","native":"絶対可憐チルドレン THE UNLIMITED 兵部京介","synonyms":["The Unlimited Hyobu Kyosuke"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":8,"month":1,"year":2013},"status":"Finished Airing"},{"index":16,"id":15119,"mal_id":15119,"title":"Senran Kagura","english":"Senran Kagura: Ninja Flash","native":"閃乱カグラ","synonyms":["Senran Kagura"],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":6,"month":1,"year":2013},"status":"Finished Airing"},{"index":17,"id":11743,"mal_id":11743,"title":"Toaru Majutsu no Index Movie: Endymion no Kiseki","english":"A Certain Magical Index the Movie: The Miracle of Endymion","native":"劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟","synonyms":["Gekijouban Toaru Majutsu no Kinsho Mokuroku"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":23,"month":2,"year":2013},"status":"Finished Airing"},{"index":18,"id":15751,"mal_id":15751,"title":"Senyuu.","english":null,"native":"戦勇。","synonyms":["Senyu."],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"day":9,"month":1,"year":2013},"status":"Finished Airing"},{"index":19,"id":15613,"mal_id":15613,"title":"Hakkenden: Touhou Hakken Ibun","english":"Hakkenden -Eight Dogs of the East-","native":"八犬伝 -東方八犬異聞-","synonyms":["Hakkenden: Touhou Hakken Ibun"],"format":"TV","episodes":13,"season":"WINTER","year":2013,"start_date":{"day":6,"month":1,"year":2013},"status":"Finished Airing"},{"index":20,"id":15109,"mal_id":15109,"title":"Cuticle Tantei Inaba","english":"Cuticle Detective Inaba","native":"キューティクル探偵因幡","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":4,"month":1,"year":2013},"status":"Finished Airing"},{"index":21,"id":16916,"mal_id":16916,"title":"Kuroko no Basket: Tip Off","english":"Kuroko's Basketball: Tip Off","native":"黒子のバスケ 第22.5Q 「Tip Off」","synonyms":["Kuroko no Basket Special","Kuroko no Basket Episode 22.5"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":22,"month":2,"year":2013},"status":"Finished Airing"},{"index":22,"id":14175,"mal_id":14175,"title":"Hanasaku Iroha Movie: Home Sweet Home","english":"Hanasaku Iroha the Movie: Home Sweet Home","native":"劇場版 花咲くいろは HOME SWEET HOME","synonyms":["Hanasaku Iroha: Home Sweet Home"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":3,"year":2013},"status":"Finished Airing"},{"index":23,"id":17535,"mal_id":17535,"title":"Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa","english":"Fairy Tail the Movie: The Phoenix Priestess - The First Morning","native":"フェアリーテイル: 序章「はじまりの朝」","synonyms":["Fairy Tail: Houou no Miko Prologue"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":2,"year":2013},"status":"Finished Airing"},{"index":24,"id":14355,"mal_id":14355,"title":"Yama no Susume","english":"Encouragement of Climb","native":"ヤマノススメ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2013,"start_date":{"day":3,"month":1,"year":2013},"status":"Finished Airing"}]},{"year":2015,"season":"winter","anilist":[{"index":0,"id":20755,"mal_id":24833,"title":"Ansatsu Kyoushitsu","english":"Assassination Classroom","native":"暗殺教室","synonyms":["כיתת ההתנקשות","فصل الاغتيال","Klasa skrytobójców"],"format":"TV","episodes":22,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":10},"status":"FINISHED"},{"index":1,"id":20931,"mal_id":28223,"title":"Death Parade","english":"Death Parade","native":"デス・パレード","synonyms":["תהלוכת המוות"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":10},"status":"FINISHED"},{"index":2,"id":20850,"mal_id":27899,"title":"Tokyo Ghoul √A","english":"Tokyo Ghoul √A","native":"東京喰種[トーキョーグール]√A","synonyms":["Tokyo Kushu 2","Tokyo Ghoul Root A"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":9},"status":"FINISHED"},{"index":3,"id":20799,"mal_id":26055,"title":"JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen","english":"JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt","native":"ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編","synonyms":["Dai San Bu Kujo Jotaro: Mirai e no Isan","JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season","JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season","JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt","JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen","JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc","Le bizzarre avventure di JoJo: Stardust Crusaders"],"format":"TV","episodes":24,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":11},"status":"FINISHED"},{"index":4,"id":20657,"mal_id":23277,"title":"Saenai Heroine no Sodatekata","english":"Saekano: How to Raise a Boring Girlfriend","native":"冴えない彼女の育てかた","synonyms":["Saekano","路人女主的养成方法","วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม"],"format":"TV","episodes":13,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":9},"status":"FINISHED"},{"index":5,"id":20725,"mal_id":24415,"title":"Kuroko no Basket 3rd SEASON","english":"Kuroko's Basketball 3","native":"黒子のバスケ 3rd SEASON","synonyms":["Kuroko no Basuke 3","הכדורסל של קורוקו 3","Баскетбол Куроко 3"],"format":"TV","episodes":25,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":12},"status":"FINISHED"},{"index":6,"id":20678,"mal_id":23233,"title":"Shinmai Maou no Testament","english":"The Testament of Sister New Devil","native":"新妹魔王の契約者","synonyms":["Shinmai Maou no Keiyakusha"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":8},"status":"FINISHED"},{"index":7,"id":20811,"mal_id":25781,"title":"Shingeki no Kyojin Gaiden: Kuinaki Sentaku","english":"Attack on Titan: No Regrets","native":"進撃の巨人 外伝 悔いなき選択","synonyms":["SnK","AoT","ผ่าพิภพไททัน ภาค OAD No Regret","ผ่าพิภพไททัน OAD ","Атака титанов: Выбор без сожалений"],"format":"OVA","episodes":2,"season":"WINTER","year":2015,"start_date":{"year":2014,"month":12,"day":9},"status":"FINISHED"},{"index":8,"id":20785,"mal_id":25397,"title":"Absolute Duo","english":"Absolute Duo","native":"アブソリュート・デュオ","synonyms":["แอบโซลูท ดูโอ "],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":4},"status":"FINISHED"},{"index":9,"id":20652,"mal_id":23199,"title":"Durarara!!x2 Shou","english":"Durarara!! X2","native":"デュラララ!!×2 承","synonyms":["DRRR!! 2 Shou","דורארארה!!2x התפתחות"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":10},"status":"FINISHED"},{"index":10,"id":20801,"mal_id":25681,"title":"Kamisama Hajimemashita◎","english":"Kamisama Kiss◎","native":"神様はじめました◎","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":6},"status":"FINISHED"},{"index":11,"id":20627,"mal_id":22663,"title":"Seiken Tsukai no World Break","english":"World Break: Aria of Curse for a Holy Swordsman","native":"聖剣使いの禁呪詠唱<ワールドブレイク>","synonyms":["World Break เทพนักดาบข้ามภพ"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":12},"status":"FINISHED"},{"index":12,"id":20514,"mal_id":21339,"title":"PSYCHO-PASS Movie","english":"PSYCHO-PASS: The Movie","native":"劇場版 PSYCHO-PASS サイコパス","synonyms":["PSYCHO-PASS: La Película"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":9},"status":"FINISHED"},{"index":13,"id":20853,"mal_id":27655,"title":"Aldnoah.Zero Part 2","english":"ALDNOAH.ZERO Season 2","native":"アルドノア・ゼロ 第2クール","synonyms":["A/Z 2","ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall."],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":11},"status":"FINISHED"},{"index":14,"id":20553,"mal_id":21511,"title":"Kantai Collection: KanColle","english":"KanColle","native":"艦隊これくしょん -艦これ-","synonyms":["KanKore"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":8},"status":"FINISHED"},{"index":15,"id":21103,"mal_id":30300,"title":"High School DxD NEW OVA Oppai, Tsutsumimasu!","english":null,"native":"ハイスクールD×D NEW OVA おっぱい、包みます!","synonyms":["High School DxD New Episode 13"],"format":"OVA","episodes":1,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":3,"day":10},"status":"FINISHED"},{"index":16,"id":20768,"mal_id":25015,"title":"Kyoukai no Kanata: I'LL BE HERE - Kako-hen","english":"Beyond the Boundary -I'LL BE HERE-: Past","native":"劇場版 境界の彼方 I'LL BE HERE 過去篇","synonyms":["Kyoukai no Kanata: I’ll Be Here – przeszłość"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":3,"day":14},"status":"FINISHED"},{"index":17,"id":20840,"mal_id":26441,"title":"Junketsu no Maria","english":"Maria the Virgin Witch","native":"純潔のマリア","synonyms":["Sorcière de gré"," pucelle de force"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":11},"status":"FINISHED"},{"index":18,"id":20758,"mal_id":24873,"title":"Juuou Mujin no Fafnir","english":"Unlimited Fafnir","native":"銃皇無尽のファフニール","synonyms":["Unlimited Fafnir School Battle"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":9},"status":"FINISHED"},{"index":19,"id":21064,"mal_id":28285,"title":"Trinity Seven: Nanatsu no Taizai to Nana Madoushi","english":null,"native":"トリニティセブン 七つの大罪と七魔道士","synonyms":[],"format":"OVA","episodes":1,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":3,"day":25},"status":"FINISHED"},{"index":20,"id":20827,"mal_id":26165,"title":"Yuri Kuma Arashi","english":"Yurikuma Arashi","native":"ユリ熊嵐","synonyms":["Love Bullet: Yuri Kuma Arashi"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":6},"status":"FINISHED"},{"index":21,"id":20746,"mal_id":25429,"title":"Isuca","english":"Isuca","native":"イスカ","synonyms":["Isuka"],"format":"TV","episodes":10,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":24},"status":"FINISHED"},{"index":22,"id":20815,"mal_id":25867,"title":"Rolling☆Girls","english":"The Rolling Girls","native":"ローリング☆ガールズ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":11},"status":"FINISHED"},{"index":23,"id":20740,"mal_id":24627,"title":"Yamada-kun to 7-nin no Majo (OVA)","english":"Yamada and the Seven Witches (OVA)","native":"山田くんと7人の魔女 OAD","synonyms":["Yamajo OVA"],"format":"OVA","episodes":2,"season":"WINTER","year":2015,"start_date":{"year":2014,"month":12,"day":17},"status":"FINISHED"},{"index":24,"id":20693,"mal_id":23587,"title":"THE IDOLM@STER Cinderella Girls","english":"THE IDOLM@STER CINDERELLA GIRLS","native":"アイドルマスターシンデレラガールズ","synonyms":["The Idolmaster: Cinderella Girls","The iDOLM@STER Cinderella Girls"],"format":"TV","episodes":13,"season":"WINTER","year":2015,"start_date":{"year":2015,"month":1,"day":10},"status":"FINISHED"}],"jikan":[{"index":0,"id":24833,"mal_id":24833,"title":"Ansatsu Kyoushitsu","english":"Assassination Classroom","native":"暗殺教室","synonyms":[],"format":"TV","episodes":22,"season":"WINTER","year":2015,"start_date":{"day":10,"month":1,"year":2015},"status":"Finished Airing"},{"index":1,"id":28223,"mal_id":28223,"title":"Death Parade","english":"Death Parade","native":"デス・パレード","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":10,"month":1,"year":2015},"status":"Finished Airing"},{"index":2,"id":27899,"mal_id":27899,"title":"Tokyo Ghoul √A","english":"Tokyo Ghoul √A","native":"東京喰種√A","synonyms":["Tokyo Ghoul Root A","Tokyo Ghoul 2nd Season","Tokyo Ghoul Second Season"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":9,"month":1,"year":2015},"status":"Finished Airing"},{"index":3,"id":26055,"mal_id":26055,"title":"JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen","english":"JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt","native":"ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編","synonyms":["JoJo's Bizarre Adventure Part 3","JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc"],"format":"TV","episodes":24,"season":"WINTER","year":2015,"start_date":{"day":10,"month":1,"year":2015},"status":"Finished Airing"},{"index":4,"id":24415,"mal_id":24415,"title":"Kuroko no Basket 3rd Season","english":"Kuroko's Basketball 3","native":"黒子のバスケ","synonyms":["Kuroko no Basuke 3rd Season","The Basketball Which Kuroko Plays"],"format":"TV","episodes":25,"season":"WINTER","year":2015,"start_date":{"day":11,"month":1,"year":2015},"status":"Finished Airing"},{"index":5,"id":23233,"mal_id":23233,"title":"Shinmai Maou no Testament","english":"The Testament of Sister New Devil","native":"新妹魔王の契約者〈テスタメント〉","synonyms":["Shinmai Maou no Keiyakusha"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":8,"month":1,"year":2015},"status":"Finished Airing"},{"index":6,"id":23277,"mal_id":23277,"title":"Saenai Heroine no Sodatekata","english":"Saekano: How to Raise a Boring Girlfriend","native":"冴えない彼女〈ヒロイン〉の育てかた","synonyms":["Saenai Kanojo no Sodate-kata"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":16,"month":1,"year":2015},"status":"Finished Airing"},{"index":7,"id":25397,"mal_id":25397,"title":"Absolute Duo","english":"Absolute Duo","native":"アブソリュート・デュオ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":4,"month":1,"year":2015},"status":"Finished Airing"},{"index":8,"id":23199,"mal_id":23199,"title":"Durarara!!x2 Shou","english":"Durarara!! x2 Shou","native":"デュラララ!!×2 承","synonyms":["Durarara!! 2nd Season","DRRR!! 2nd Season","Durararax2 1st Arc"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":10,"month":1,"year":2015},"status":"Finished Airing"},{"index":9,"id":25681,"mal_id":25681,"title":"Kamisama Hajimemashita◎","english":"Kamisama Kiss Season 2","native":"神様はじめました◎","synonyms":["Kamisama Hajimemashita 2nd Season","Kami-sama Hajimemashita 2nd Season","Kamisama Kiss 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":6,"month":1,"year":2015},"status":"Finished Airing"},{"index":10,"id":22663,"mal_id":22663,"title":"Seiken Tsukai no World Break","english":"World Break: Aria of Curse for a Holy Swordsman","native":"聖剣使いの禁呪詠唱〈ワールドブレイク〉","synonyms":["Seiken Tsukai no Kinshuu Eishou","Warubure"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":12,"month":1,"year":2015},"status":"Finished Airing"},{"index":11,"id":27655,"mal_id":27655,"title":"Aldnoah.Zero Part 2","english":"Aldnoah.Zero Part 2","native":"アルドノア・ゼロ(第2クール)","synonyms":["Aldnoah.Zero 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":11,"month":1,"year":2015},"status":"Finished Airing"},{"index":12,"id":21339,"mal_id":21339,"title":"Psycho-Pass Movie 1","english":"Psycho-Pass: The Movie","native":"劇場版 サイコパス","synonyms":["Psychopath Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":1,"year":2015},"status":"Finished Airing"},{"index":13,"id":23317,"mal_id":23317,"title":"Kuroshitsuji: Book of Murder","english":"Black Butler: Book of Murder","native":"黒執事 Book of Murder","synonyms":[],"format":"OVA","episodes":2,"season":null,"year":null,"start_date":{"day":28,"month":1,"year":2015},"status":"Finished Airing"},{"index":14,"id":21511,"mal_id":21511,"title":"Kantai Collection: KanColle","english":"KanColle","native":"艦隊これくしょん -艦これ-","synonyms":["Kankore","Kantai Collection"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":8,"month":1,"year":2015},"status":"Finished Airing"},{"index":15,"id":30300,"mal_id":30300,"title":"High School DxD New: Oppai, Tsutsumimasu!","english":"High School DxD New OVA","native":"ハイスクールD×D NEW OVA おっぱい、包みます!","synonyms":["High School DxD New OVA","High School DxD New Episode 13"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":10,"month":3,"year":2015},"status":"Finished Airing"},{"index":16,"id":25015,"mal_id":25015,"title":"Kyoukai no Kanata Movie 1: I'll Be Here - Kako-hen","english":"Beyond the Boundary: I'll Be Here - Past","native":"劇場版 境界の彼方 I'LL BE HERE 過去篇","synonyms":["Beyond the Boundary Movie","Kyokai no Kanata Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":14,"month":3,"year":2015},"status":"Finished Airing"},{"index":17,"id":24873,"mal_id":24873,"title":"Juuou Mujin no Fafnir","english":"Unlimited Fafnir","native":"銃皇無尽のファフニール","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":9,"month":1,"year":2015},"status":"Finished Airing"},{"index":18,"id":26441,"mal_id":26441,"title":"Junketsu no Maria","english":"Maria the Virgin Witch","native":"純潔のマリア","synonyms":["Junketsu no Maria: Sorcière de gré","pucelle de force"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":11,"month":1,"year":2015},"status":"Finished Airing"},{"index":19,"id":25429,"mal_id":25429,"title":"Isuca","english":"Isuca","native":"ISUCA [イスカ]","synonyms":["Isuka"],"format":"TV","episodes":10,"season":"WINTER","year":2015,"start_date":{"day":24,"month":1,"year":2015},"status":"Finished Airing"},{"index":20,"id":28285,"mal_id":28285,"title":"Trinity Seven: Nanatsu no Taizai to Nana Madoushi","english":"Trinity Seven OVA","native":"トリニティセブン 七つの大罪と七魔道士","synonyms":["Trinity Seven (2015)","Trinity Seven: The Seven Deadly Sins and The Seven Mages"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":3,"year":2015},"status":"Finished Airing"},{"index":21,"id":25303,"mal_id":25303,"title":"Haikyuu!! Lev Genzan!","english":"Haikyu!!: Lev Appears!","native":"ハイキュー!! リエーフ見参!","synonyms":["Haikyuu!!: Jump Festa 2014 Special","Haikyuu!! OVA","Haikyuu!! The Arrival of Haiba Lev"],"format":"OVA","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":3,"year":2015},"status":"Finished Airing"},{"index":22,"id":29317,"mal_id":29317,"title":"Saenai Heroine no Sodatekata: Ai to Seishun no Service-kai","english":"Saekano: Fan Service of Love and Youth","native":"冴えない彼女の育てかた #0 「愛と青春のサービス回」","synonyms":["Saenai Heroine no Sodatekata Special: Episode 0","Saekano: How to Raise a Boring Girlfriend: Prologue"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":1,"year":2015},"status":"Finished Airing"},{"index":23,"id":26165,"mal_id":26165,"title":"Yuri Kuma Arashi","english":"Yurikuma Arashi","native":"ユリ熊嵐","synonyms":["Yuri Bear Storm","Love Bullet: Yurikuma Arashi"],"format":"TV","episodes":12,"season":"WINTER","year":2015,"start_date":{"day":6,"month":1,"year":2015},"status":"Finished Airing"},{"index":24,"id":26213,"mal_id":26213,"title":"Free! Eternal Summer: Kindan no All Hard!","english":null,"native":"Free! -Eternal Summer- 禁断のオールハード!","synonyms":["Free! Eternal Summer Special","Free! Iwatobi Swim Club 2 Special","Free! 2nd Season Special"],"format":"Special","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":3,"year":2015},"status":"Finished Airing"}]},{"year":2017,"season":"winter","anilist":[{"index":0,"id":21699,"mal_id":32937,"title":"Kono Subarashii Sekai ni Shukufuku wo! 2","english":"KONOSUBA -God's blessing on this wonderful world! 2","native":"この素晴らしい世界に祝福を!2","synonyms":["Konosuba 2","Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!","为美好的世界献上祝福!2","为美好的世界献上祝福第二季","ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2","Konosuba : Une explosion dans ce monde merveilleux !","Да благословят боги сей расчудесный мир! 2","Konosuba! Un mundo maravilloso 2"],"format":"TV","episodes":10,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":12},"status":"FINISHED"},{"index":1,"id":21776,"mal_id":33206,"title":"Kobayashi-san Chi no Maidragon","english":"Miss Kobayashi's Dragon Maid","native":"小林さんちのメイドラゴン","synonyms":["Kobayashi-san Chi no Maid Dragon","小林家的龙女仆","น้องเมดมังกรของคุณโคบายาชิ","Дракониха-горничная госпожи Кобаяси"],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":12},"status":"FINISHED"},{"index":2,"id":21613,"mal_id":32615,"title":"Youjo Senki","english":"Saga of Tanya the Evil","native":"幼女戦記","synonyms":["幼女战记","Колдунья в погонах"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":6},"status":"FINISHED"},{"index":3,"id":21857,"mal_id":33487,"title":"Masamune-kun no Revenge","english":"Masamune-kun's Revenge","native":"政宗くんのリベンジ","synonyms":["การแก้แค้นของมาซามุเนะคุง","Месть Масамунэ"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":5},"status":"FINISHED"},{"index":4,"id":21403,"mal_id":31765,"title":"Sword Art Online: Ordinal Scale","english":"Sword Art Online the Movie: Ordinal Scale","native":"ソードアート・オンライン -オーディナル・スケール-","synonyms":["SAO THE MOVIE"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":2,"day":18},"status":"FINISHED"},{"index":5,"id":21701,"mal_id":32949,"title":"Kuzu no Honkai","english":"Scum's Wish","native":"クズの本懐","synonyms":["Desejos Proibidos","El deseo de la escoria"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":13},"status":"FINISHED"},{"index":6,"id":21861,"mal_id":33506,"title":"Ao no Exorcist: Kyoto Fujouou-hen","english":"Blue Exorcist: Kyoto Saga","native":"青の祓魔師 京都不浄王篇","synonyms":["Blue Exorcist: Kyoto Impure King Arc","Blue Exorcist Season 2"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":7},"status":"FINISHED"},{"index":7,"id":21858,"mal_id":33489,"title":"Little Witch Academia (TV)","english":"Little Witch Academia (TV)","native":"リトルウィッチアカデミア (TV)","synonyms":["LWA (TV)","小魔女学园","Det lille hekseakademiet","האקדמיה למכשפות קטנות"],"format":"TV","episodes":25,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":9},"status":"FINISHED"},{"index":8,"id":21400,"mal_id":31758,"title":"Kizumonogatari III: Reiketsu-hen","english":"Kizumonogatari Part 3: Reiketsu","native":"傷物語〈Ⅲ冷血篇〉","synonyms":["Wound Tale 3: Cold Blood"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":6},"status":"FINISHED"},{"index":9,"id":21878,"mal_id":33731,"title":"Gabriel Dropout","english":"Gabriel DropOut","native":"ガヴリールドロップアウト","synonyms":["GabDro","珈百璃的堕落"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":9},"status":"FINISHED"},{"index":10,"id":97592,"mal_id":33988,"title":"Demi-chan wa Kataritai","english":"Interviews with Monster Girls","native":"亜人ちゃんは語りたい","synonyms":["Entrevistas con chicas monstruo","Interviews mit Monster-Mädchen"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":8},"status":"FINISHED"},{"index":11,"id":97889,"mal_id":34096,"title":"Gintama.","english":"Gintama Season 4","native":"銀魂。","synonyms":["Gintama. (2017)"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":9},"status":"FINISHED"},{"index":12,"id":21887,"mal_id":33743,"title":"Fuuka","english":"Fuuka","native":"風夏","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":6},"status":"FINISHED"},{"index":13,"id":97730,"mal_id":33836,"title":"Seiren","english":"Seiren","native":"セイレン","synonyms":["Divina Juventud"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":6},"status":"FINISHED"},{"index":14,"id":21733,"mal_id":33095,"title":"Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen","english":"Descending Stories: Showa Genroku Rakugo Shinju","native":"昭和元禄落語心中~助六再び篇~","synonyms":["Le Rakugo ou la vie 2","Shouwa Genroku Rakugo Shinjuu 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":7},"status":"FINISHED"},{"index":15,"id":21823,"mal_id":33337,"title":"ACCA: 13-ku Kansatsu-ka","english":"ACCA: 13-Territory Inspection Dept.","native":"ACCA 13区監察課","synonyms":["ACCA: Jusan-ku Kansatsu-ka"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":10},"status":"FINISHED"},{"index":16,"id":21425,"mal_id":31812,"title":"Kuroshitsuji: Book of the Atlantic","english":"Black Butler: Book of the Atlantic","native":"黒執事 Book of the Atlantic","synonyms":["Kuroshitsuji","Black Butler","Book of Atlantic","คนลึกไขปริศนาลับ: Book of the Atlantic"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":21},"status":"FINISHED"},{"index":17,"id":21874,"mal_id":33581,"title":"Trinity Seven Movie - Yuukyuu Toshokan to Renkinjutsu Shoujo","english":"Trinity Seven: Eternal Library & Alchemic Girl","native":"劇場版 トリニティセブン -悠久図書館と錬金術少女-","synonyms":[],"format":"MOVIE","episodes":1,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":2,"day":25},"status":"FINISHED"},{"index":18,"id":97857,"mal_id":34392,"title":"One Room","english":"OneRoom","native":"One Room","synonyms":["ワンルーム","В одной комнате"],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":11},"status":"FINISHED"},{"index":19,"id":87435,"mal_id":33573,"title":"BanG Dream!","english":"BanG Dream!","native":"BanG Dream!(バンドリ!)","synonyms":["Bandori"],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":21},"status":"FINISHED"},{"index":20,"id":21696,"mal_id":32924,"title":"Urara Meirochou","english":"Urara Meirocho","native":"うらら迷路帖","synonyms":["Adivina como puedas","우라라 미로첩","uramei"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":6},"status":"FINISHED"},{"index":21,"id":97645,"mal_id":34086,"title":"Tales of Zestiria the Cross 2","english":"Tales of Zestiria the X Season 2","native":"テイルズ オブ ゼスティリア ザ クロス 2","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":8},"status":"FINISHED"},{"index":22,"id":97636,"mal_id":34051,"title":"Akiba's Trip: The Animation","english":"Akiba's Trip the Animation","native":"Akiba's Trip -The Animation-","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":4},"status":"FINISHED"},{"index":23,"id":97875,"mal_id":34414,"title":"Nanbaka 2","english":"NANBAKA - Part Two","native":"ナンバカ 2","synonyms":["Nambaka 2"],"format":"ONA","episodes":12,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":4},"status":"FINISHED"},{"index":24,"id":98153,"mal_id":34152,"title":"Super Danganronpa 2.5 Komaeda Nagito to Sekai no Hakaimono","english":null,"native":"スーパーダンガンロンパ2.5 狛枝凪斗と世界の破壊者","synonyms":["Super Danganronpa 2.5: Nagito Komaeda and the Destroyer of the World","Super Danganronpa 2.5: Nagito Komaeda and the World Destroyer"],"format":"OVA","episodes":1,"season":"WINTER","year":2017,"start_date":{"year":2017,"month":1,"day":12},"status":"FINISHED"}],"jikan":[{"index":0,"id":32937,"mal_id":32937,"title":"Kono Subarashii Sekai ni Shukufuku wo! 2","english":"KonoSuba: God's Blessing on This Wonderful World! 2","native":"この素晴らしい世界に祝福を! 2","synonyms":["Give Blessings to This Wonderful World! 2"],"format":"TV","episodes":10,"season":"WINTER","year":2017,"start_date":{"day":12,"month":1,"year":2017},"status":"Finished Airing"},{"index":1,"id":33206,"mal_id":33206,"title":"Kobayashi-san Chi no Maid Dragon","english":"Miss Kobayashi's Dragon Maid","native":"小林さんちのメイドラゴン","synonyms":["The maid dragon of Kobayashi-san"],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"day":12,"month":1,"year":2017},"status":"Finished Airing"},{"index":2,"id":32615,"mal_id":32615,"title":"Youjo Senki","english":"Saga of Tanya the Evil","native":"幼女戦記","synonyms":["The Military Chronicles of a Little Girl"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":6,"month":1,"year":2017},"status":"Finished Airing"},{"index":3,"id":33487,"mal_id":33487,"title":"Masamune-kun no Revenge","english":"Masamune-kun's Revenge","native":"政宗くんのリベンジ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":5,"month":1,"year":2017},"status":"Finished Airing"},{"index":4,"id":33506,"mal_id":33506,"title":"Ao no Exorcist: Kyoto Fujouou-hen","english":"Blue Exorcist: Kyoto Saga","native":"青の祓魔師 京都不浄王篇","synonyms":["Blue Exorcist: Kyoto Impure King Arc"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":7,"month":1,"year":2017},"status":"Finished Airing"},{"index":5,"id":31765,"mal_id":31765,"title":"Sword Art Online Movie: Ordinal Scale","english":"Sword Art Online the Movie: Ordinal Scale","native":"劇場版 ソードアート・オンライン -オーディナル・スケール-","synonyms":["Gekijouban Sword Art Online"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":2,"year":2017},"status":"Finished Airing"},{"index":6,"id":32949,"mal_id":32949,"title":"Kuzu no Honkai","english":"Scum's Wish","native":"クズの本懐","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":13,"month":1,"year":2017},"status":"Finished Airing"},{"index":7,"id":33489,"mal_id":33489,"title":"Little Witch Academia (TV)","english":"Little Witch Academia","native":"リトルウィッチアカデミア","synonyms":[],"format":"TV","episodes":25,"season":"WINTER","year":2017,"start_date":{"day":9,"month":1,"year":2017},"status":"Finished Airing"},{"index":8,"id":31758,"mal_id":31758,"title":"Kizumonogatari III: Reiketsu-hen","english":"Kizumonogatari Part 3: Cold-Blooded","native":"傷物語〈Ⅲ冷血篇〉","synonyms":["Koyomi Vamp"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":6,"month":1,"year":2017},"status":"Finished Airing"},{"index":9,"id":33731,"mal_id":33731,"title":"Gabriel DropOut","english":"Gabriel DropOut","native":"ガヴリールドロップアウト","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":9,"month":1,"year":2017},"status":"Finished Airing"},{"index":10,"id":33988,"mal_id":33988,"title":"Demi-chan wa Kataritai","english":"Interviews With Monster Girls","native":"亜人ちゃんは語りたい","synonyms":["Ajin-chan wa Kataritai"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":8,"month":1,"year":2017},"status":"Finished Airing"},{"index":11,"id":34096,"mal_id":34096,"title":"Gintama.","english":"Gintama Season 5","native":"銀魂。","synonyms":["Gintama (2017)"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":9,"month":1,"year":2017},"status":"Finished Airing"},{"index":12,"id":31658,"mal_id":31658,"title":"Kuroko no Basket Movie 4: Last Game","english":"Kuroko's Basketball the Movie: Last Game","native":"劇場版 黒子のバスケ LAST GAME","synonyms":["Gekijouban Kuroko no Basuke: Last Game","The Basketball Which Kuroko Plays"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":3,"year":2017},"status":"Finished Airing"},{"index":13,"id":33743,"mal_id":33743,"title":"Fuuka","english":"Fuuka","native":"風夏","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":6,"month":1,"year":2017},"status":"Finished Airing"},{"index":14,"id":33836,"mal_id":33836,"title":"Seiren","english":"Seiren","native":"セイレン","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":6,"month":1,"year":2017},"status":"Finished Airing"},{"index":15,"id":31812,"mal_id":31812,"title":"Kuroshitsuji Movie: Book of the Atlantic","english":"Black Butler: Book of the Atlantic","native":"劇場版 黒執事 Book of the Atlantic","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":21,"month":1,"year":2017},"status":"Finished Airing"},{"index":16,"id":33095,"mal_id":33095,"title":"Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen","english":"Descending Stories: Showa Genroku Rakugo Shinju","native":"昭和元禄落語心中~助六再び篇~","synonyms":["Shouwa Genroku Rakugo Shinjuu 2nd Season","Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":7,"month":1,"year":2017},"status":"Finished Airing"},{"index":17,"id":35262,"mal_id":35262,"title":"Boku no Hero Academia: Hero Note","english":"My Hero Academia: Hero Notebook","native":"僕のヒーローアカデミア ヒーローノート","synonyms":["Boku no Hero Academia Recap","Boku no Hero Academia 13.5"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":3,"year":2017},"status":"Finished Airing"},{"index":18,"id":33581,"mal_id":33581,"title":"Trinity Seven Movie 1: Eternity Library to Alchemic Girl","english":"Trinity Seven: Eternity Library & Alchemic Girl","native":"劇場版 トリニティセブン -悠久図書館〈エターニティライブラリー〉と錬金術少女〈アルケミックガール〉-","synonyms":["Gekijouban Trinity Seven","Trinity Seven Movie: Yuukyuu Toshokan to Rekinjutsu Shoujo"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":2,"year":2017},"status":"Finished Airing"},{"index":19,"id":33337,"mal_id":33337,"title":"ACCA: 13-ku Kansatsu-ka","english":"ACCA: 13-Territory Inspection Dept.","native":"ACCA 13区監察課","synonyms":["ACCA: 13th Territory Inspection Department","ACCA: 13th Ward Observation Department","ACCA Jusanku Kansatsuka"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":10,"month":1,"year":2017},"status":"Finished Airing"},{"index":20,"id":34086,"mal_id":34086,"title":"Tales of Zestiria the Cross 2nd Season","english":"Tales of Zestiria the X Season 2","native":"テイルズ オブ ゼスティリア ザ クロス 第2期","synonyms":["Tales of Zestiria The X Second Season"],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"day":8,"month":1,"year":2017},"status":"Finished Airing"},{"index":21,"id":34051,"mal_id":34051,"title":"Akiba's Trip The Animation","english":"Akiba's Trip The Animation","native":"AKIBA'S TRIP THE ANIMATION","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2017,"start_date":{"day":4,"month":1,"year":2017},"status":"Finished Airing"},{"index":22,"id":34414,"mal_id":34414,"title":"Nanbaka 2","english":"Nanbaka Season 2","native":"ナンバカ 2期","synonyms":[],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":4,"month":1,"year":2017},"status":"Finished Airing"},{"index":23,"id":30485,"mal_id":30485,"title":"ChäoS;Child","english":"ChäoS;Child","native":"CHAOS;CHILD","synonyms":["Chaos Child"],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":11,"month":1,"year":2017},"status":"Finished Airing"},{"index":24,"id":32924,"mal_id":32924,"title":"Urara Meirochou","english":"Urara Meirocho","native":"うらら迷路帖","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2017,"start_date":{"day":6,"month":1,"year":2017},"status":"Finished Airing"}]},{"year":2019,"season":"winter","anilist":[{"index":0,"id":101759,"mal_id":37779,"title":"Yakusoku no Neverland","english":"The Promised Neverland","native":"約束のネバーランド","synonyms":["YakuNeba","TPN","نيفرلاند الموعودة","约定的梦幻岛","พันธสัญญาเนเวอร์แลนด์","約定的夢幻島"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":10},"status":"FINISHED"},{"index":1,"id":101921,"mal_id":37999,"title":"Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen","english":"Kaguya-sama: Love is War","native":"かぐや様は告らせたい~天才たちの恋愛頭脳戦~","synonyms":["Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains","קאגויה סאמה","辉夜大小姐想让我告白~天才们的恋爱头脑战~","辉夜姬想让人告白","辉夜姬想让人告白~天才们的恋爱头脑战~","辉告","Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen","Kaguya-sama : L'Amour est une guerre","สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~","Госпожа Кагуя: В любви как на войне"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":12},"status":"FINISHED"},{"index":2,"id":99263,"mal_id":35790,"title":"Tate no Yuusha no Nariagari","english":"The Rising of the Shield Hero","native":"盾の勇者の成り上がり","synonyms":["盾之勇者成名录","ผู้กล้าโล่ผงาด","Восхождение героя щита"],"format":"TV","episodes":25,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":9},"status":"FINISHED"},{"index":3,"id":101338,"mal_id":37510,"title":"Mob Psycho 100 II","english":"Mob Psycho 100 II","native":"モブサイコ100 II","synonyms":["Mob Psycho Hyaku","ม็อบไซโค 100 คนพลังจิต ภาค 2","Моб Психо 100 II"],"format":"TV","episodes":13,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":7},"status":"FINISHED"},{"index":4,"id":101347,"mal_id":37520,"title":"Dororo","english":"Dororo","native":"どろろ","synonyms":["Дороро"],"format":"TV","episodes":24,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":7},"status":"FINISHED"},{"index":5,"id":103572,"mal_id":38101,"title":"Go-toubun no Hanayome","english":"The Quintessential Quintuplets","native":"五等分の花嫁","synonyms":["5-toubun no Hanayome","The Five Wedded Brides","เจ้าสาวผมเป็นแฝดห้า","五等分的新娘","Eşsiz Beşizler","Sposób na pięcioraczki","Пять невест","Квинтэссенция пяти близнецов","Las Quintillizas"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":11},"status":"FINISHED"},{"index":6,"id":100876,"mal_id":37086,"title":"Kakegurui ××","english":"Kakegurui xx","native":"賭ケグルイ××","synonyms":["Kakegurui - Compulsive Gambler 2","โคตรเซียนโรงเรียนพนัน ภาค 2"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":9},"status":"FINISHED"},{"index":7,"id":103139,"mal_id":37982,"title":"Domestic na Kanojo","english":"Domestic Girlfriend","native":"ドメスティックな彼女","synonyms":["DomeKano","บทเรียนรักเส้นทางหัวใจ"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":12},"status":"FINISHED"},{"index":8,"id":21718,"mal_id":33049,"title":"Fate/stay night [Heaven's Feel] II. lost butterfly","english":"Fate/stay night [Heaven's Feel] II. lost butterfly","native":"Fate/stay night[Heaven's Feel] ⅠⅠ.lost butterfly","synonyms":["Fate/HF II","Судьба/Ночь схватки: Прикосновение небес 2"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":12},"status":"FINISHED"},{"index":9,"id":100722,"mal_id":36633,"title":"Date A Live III","english":"Date A Live III","native":"デート・ア・ライブⅢ","synonyms":["Date a Live 3rd Season","Date a Live 3","DAL 3","พิชิตรัก พิทักษ์โลก ภาค 3","Рандеву с Жизнью 3"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":11},"status":"FINISHED"},{"index":10,"id":97880,"mal_id":34437,"title":"Code Geass: Fukkatsu no Lelouch","english":"Code Geass: Lelouch of the Re;surrection","native":"コードギアス 復活のルルーシュ","synonyms":[],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":2,"day":9},"status":"FINISHED"},{"index":11,"id":100878,"mal_id":37055,"title":"Youjo Senki Movie","english":"Saga of Tanya the Evil - the Movie -","native":"劇場版 幼女戦記","synonyms":["Колдунья в погонах. Фильм"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":2,"day":8},"status":"FINISHED"},{"index":12,"id":100815,"mal_id":36999,"title":"Zoku Owarimonogatari","english":"Zoku Owarimonogatari","native":"続・終物語","synonyms":["Continued End Tale"],"format":"OVA","episodes":6,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":2,"day":27},"status":"FINISHED"},{"index":13,"id":101283,"mal_id":37451,"title":"Boogiepop wa Warawanai","english":"Boogiepop and Others","native":"ブギーポップは笑わない","synonyms":["Boogiepop wa Warawanai (2019)"],"format":"TV","episodes":18,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":4},"status":"FINISHED"},{"index":14,"id":101166,"mal_id":37348,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Orion no Ya","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion","native":"ダンジョンに出会いを求めるのは間違っているだろうか ─ オリオンの矢 ─","synonyms":["DanMachi: Arrow of the Orion"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":2,"day":15},"status":"FINISHED"},{"index":15,"id":102680,"mal_id":37993,"title":"Watashi ni Tenshi ga Maiorita!","english":"WATATEN!: an Angel Flew Down to Me","native":"私に天使が舞い降りた!","synonyms":["Wataten","An Angel Swooped Down on Me!","นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":8},"status":"FINISHED"},{"index":16,"id":103874,"mal_id":38145,"title":"Doukyonin wa Hiza, Tokidoki, Atama no Ue.","english":"My Roommate is a Cat","native":"同居人はひざ、時々、頭のうえ。","synonyms":["Hizaue","นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":9},"status":"FINISHED"},{"index":17,"id":102882,"mal_id":37956,"title":"3D Kanojo: Real Girl 2","english":"Real Girl 2","native":"3D彼女 リアルガール 2","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":101344,"mal_id":37515,"title":"Made in Abyss: Hourou Suru Tasogare","english":"Made in Abyss: Wandering Twilight","native":"メイドインアビス 放浪する黄昏","synonyms":[],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":18},"status":"FINISHED"},{"index":19,"id":105893,"mal_id":38699,"title":"Boku no Hero Academia THE MOVIE: Futari no Hero Specials","english":"My Hero Academia the Movie: Two Heroes Specials","native":"僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典","synonyms":["All Might: Rising The Animation"],"format":"OVA","episodes":2,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":2,"day":13},"status":"FINISHED"},{"index":20,"id":101343,"mal_id":37514,"title":"Made in Abyss: Tabidachi no Yoake","english":"Made in Abyss: Journey's Dawn","native":"メイドインアビス 旅立ちの夜明け","synonyms":[],"format":"MOVIE","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":4},"status":"FINISHED"},{"index":21,"id":101773,"mal_id":37920,"title":"Ueno-san wa Bukiyou","english":"How clumsy you are, Miss Ueno.","native":"上野さんは不器用","synonyms":["笨拙之极的上野 "],"format":"TV_SHORT","episodes":12,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":7},"status":"FINISHED"},{"index":22,"id":21322,"mal_id":31537,"title":"Manaria Friends","english":"Mysteria Friends","native":"マナリアフレンズ","synonyms":["Shingeki no Bahamut: Manaria Friends"],"format":"TV_SHORT","episodes":10,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":21},"status":"FINISHED"},{"index":23,"id":104174,"mal_id":37492,"title":"Steins;Gate 0: Kesshou Takei no Valentine - Bittersweet Day","english":"Steins;Gate 0: Valentine's of Crystal Polymorphism -Bittersweet Intermedio-","native":"シュタインズ・ゲート ゼロ 結晶多形のバレンタイン","synonyms":["Steins;Gate 0 Special","San Valentín de polimorfismo de cristal: Intermedio agridulce"],"format":"OVA","episodes":1,"season":"WINTER","year":2019,"start_date":{"year":2018,"month":12,"day":21},"status":"FINISHED"},{"index":24,"id":100523,"mal_id":36792,"title":"Eromanga Sensei OVA","english":null,"native":"エロマンガ先生 OVA","synonyms":["Ero Manga Sensei"],"format":"OVA","episodes":2,"season":"WINTER","year":2019,"start_date":{"year":2019,"month":1,"day":16},"status":"FINISHED"}],"jikan":[{"index":0,"id":37779,"mal_id":37779,"title":"Yakusoku no Neverland","english":"The Promised Neverland","native":"約束のネバーランド","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":11,"month":1,"year":2019},"status":"Finished Airing"},{"index":1,"id":37999,"mal_id":37999,"title":"Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen","english":"Kaguya-sama: Love is War","native":"かぐや様は告らせたい~天才たちの恋愛頭脳戦~","synonyms":["Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":12,"month":1,"year":2019},"status":"Finished Airing"},{"index":2,"id":35790,"mal_id":35790,"title":"Tate no Yuusha no Nariagari","english":"The Rising of the Shield Hero","native":"盾の勇者の成り上がり","synonyms":[],"format":"TV","episodes":25,"season":"WINTER","year":2019,"start_date":{"day":9,"month":1,"year":2019},"status":"Finished Airing"},{"index":3,"id":37510,"mal_id":37510,"title":"Mob Psycho 100 II","english":"Mob Psycho 100 II","native":"モブサイコ100 II","synonyms":["Mob Psycho 100 2nd Season","Mob Psycho Hyaku","Mob Psycho One Hundred"],"format":"TV","episodes":13,"season":"WINTER","year":2019,"start_date":{"day":7,"month":1,"year":2019},"status":"Finished Airing"},{"index":4,"id":37520,"mal_id":37520,"title":"Dororo","english":"Dororo","native":"どろろ","synonyms":["Dororo to Hyakkimaru"],"format":"TV","episodes":24,"season":"WINTER","year":2019,"start_date":{"day":7,"month":1,"year":2019},"status":"Finished Airing"},{"index":5,"id":38101,"mal_id":38101,"title":"5-toubun no Hanayome","english":"The Quintessential Quintuplets","native":"五等分の花嫁","synonyms":["Gotoubun no Hanayome","The Five Wedded Brides"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":11,"month":1,"year":2019},"status":"Finished Airing"},{"index":6,"id":37086,"mal_id":37086,"title":"Kakegurui××","english":null,"native":"賭ケグルイ××","synonyms":["Kakegurui 2nd Season","Kakegurui: Compulsive Gambler 2nd Season","Gambling School 2nd Season,"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":9,"month":1,"year":2019},"status":"Finished Airing"},{"index":7,"id":37982,"mal_id":37982,"title":"Domestic na Kanojo","english":"Domestic Girlfriend","native":"ドメスティックな彼女","synonyms":["Dome x Kano","Domekano"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":12,"month":1,"year":2019},"status":"Finished Airing"},{"index":8,"id":33049,"mal_id":33049,"title":"Fate/stay night Movie: Heaven's Feel - II. Lost Butterfly","english":"Fate/stay night: Heaven's Feel - II. Lost Butterfly","native":"劇場版「Fate/stay night [Heaven's Feel] II.lost butterfly」","synonyms":["Fate/stay night Movie: Heaven's Feel 2"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":12,"month":1,"year":2019},"status":"Finished Airing"},{"index":9,"id":36633,"mal_id":36633,"title":"Date A Live III","english":"Date A Live III","native":"デート・ア・ライブⅢ","synonyms":["Date A Live 3","Date A Live 3rd Season","DAL 3"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":11,"month":1,"year":2019},"status":"Finished Airing"},{"index":10,"id":34437,"mal_id":34437,"title":"Code Geass: Fukkatsu no Lelouch","english":"Code Geass: Lelouch of the Re;surrection","native":"コードギアス 復活のルルーシュ","synonyms":["Code Geass: Lelouch of the Resurrection"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":9,"month":2,"year":2019},"status":"Finished Airing"},{"index":11,"id":37055,"mal_id":37055,"title":"Youjo Senki Movie","english":"Saga of Tanya the Evil: The Movie","native":"劇場版 幼女戦記","synonyms":["Gekijouban Youjo Senki"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":2,"year":2019},"status":"Finished Airing"},{"index":12,"id":37451,"mal_id":37451,"title":"Boogiepop wa Warawanai (2019)","english":"Boogiepop and Others","native":"ブギーポップは笑わない","synonyms":["Boogiepop Never Laughs","Boogiepop Doesn't Laugh"],"format":"TV","episodes":18,"season":"WINTER","year":2019,"start_date":{"day":4,"month":1,"year":2019},"status":"Finished Airing"},{"index":13,"id":38349,"mal_id":38349,"title":"Wotaku ni Koi wa Muzukashii OVA","english":"Wotakoi: Love is Hard for Otaku OVA","native":"ヲタクに恋は難しい OAD","synonyms":["Wotaku ni Koi wa Muzukashii: Youth","It's Difficult to Love an Otaku OVA","Wotakoi: Love is Hard for Otaku OVA"],"format":"OVA","episodes":3,"season":null,"year":null,"start_date":{"day":29,"month":3,"year":2019},"status":"Finished Airing"},{"index":14,"id":37348,"mal_id":37348,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion","native":"劇場版 ダンジョンに出会いを求めるのは間違っているだろうか -オリオンの矢-","synonyms":["DanMachi Movie","Is It Wrong That I Want to Meet You in a Dungeon Movie"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":15,"month":2,"year":2019},"status":"Finished Airing"},{"index":15,"id":37993,"mal_id":37993,"title":"Watashi ni Tenshi ga Maiorita!","english":"Wataten! an Angel Flew Down to Me","native":"私に天使が舞い降りた!","synonyms":["Wataten"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":8,"month":1,"year":2019},"status":"Finished Airing"},{"index":16,"id":38145,"mal_id":38145,"title":"Doukyonin wa Hiza, Tokidoki, Atama no Ue.","english":"My Roommate is a Cat","native":"同居人はひざ、時々、頭のうえ。","synonyms":["My roommate is sometimes on my knees","sometimes on my head","Hizaue"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":9,"month":1,"year":2019},"status":"Finished Airing"},{"index":17,"id":37956,"mal_id":37956,"title":"3D Kanojo: Real Girl 2nd Season","english":"Real Girl Season 2","native":"3D彼女 リアルガール(第2シーズン)","synonyms":["3D Girlfriend 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":9,"month":1,"year":2019},"status":"Finished Airing"},{"index":18,"id":37515,"mal_id":37515,"title":"Made in Abyss Movie 2: Hourou Suru Tasogare","english":"Made in Abyss: Wandering Twilight","native":"劇場版総集編【後編】メイドインアビス 放浪する黄昏","synonyms":["Made in Abyss Movie 2: Wandering Twilight"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":18,"month":1,"year":2019},"status":"Finished Airing"},{"index":19,"id":37514,"mal_id":37514,"title":"Made in Abyss Movie 1: Tabidachi no Yoake","english":"Made in Abyss: Journey's Dawn","native":"劇場版総集編【前編】メイドインアビス 旅立ちの夜明け","synonyms":["Made in Abyss Movie 1: Journey's Dawn"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":4,"month":1,"year":2019},"status":"Finished Airing"},{"index":20,"id":38699,"mal_id":38699,"title":"Boku no Hero Academia the Movie 1: Futari no Hero Specials","english":"My Hero Academia: Two Heroes Specials","native":"僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ 特典","synonyms":["All Might: Rising - The Animation","Boku no Hero Academia Picture Drama","My Hero Academia: All Might Rising"],"format":"Special","episodes":2,"season":null,"year":null,"start_date":{"day":13,"month":2,"year":2019},"status":"Finished Airing"},{"index":21,"id":39607,"mal_id":39607,"title":"Tensei shitara Slime Datta Ken: Kanwa - Veldora Nikki","english":"That Time I Got Reincarnated as a Slime: Tales - Veldora's Journal","native":"転生したらスライムだった件 閑話: ヴェルドラ日記","synonyms":["Tensei shitara Slime Datta Ken Recap","That Time I got Reincarnated as a Slime Episode 24.5"],"format":"TV Special","episodes":1,"season":null,"year":null,"start_date":{"day":26,"month":3,"year":2019},"status":"Finished Airing"},{"index":22,"id":31537,"mal_id":31537,"title":"Manaria Friends","english":"Mysteria Friends","native":"マナリアフレンズ","synonyms":["Rage of Bahamut: Manaria Friends","Shingeki no Bahamut: Manaria Friends"],"format":"TV","episodes":10,"season":"WINTER","year":2019,"start_date":{"day":21,"month":1,"year":2019},"status":"Finished Airing"},{"index":23,"id":37920,"mal_id":37920,"title":"Ueno-san wa Bukiyou","english":"How clumsy you are, Miss Ueno.","native":"上野さんは不器用","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2019,"start_date":{"day":7,"month":1,"year":2019},"status":"Finished Airing"},{"index":24,"id":37440,"mal_id":37440,"title":"Psycho-Pass: Sinners of the System Case.1 - Tsumi to Batsu","english":"Psycho-Pass: Sinners of the System Case.1 - Crime and Punishment","native":"PSYCHO-PASS サイコパス|SS(Sinners of the System) Case.1「罪と罰」","synonyms":["Psycho-Pass SS Case 1: Tsumi to Batsu"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":25,"month":1,"year":2019},"status":"Finished Airing"}]},{"year":2021,"season":"winter","anilist":[{"index":0,"id":110277,"mal_id":40028,"title":"Shingeki no Kyojin: The Final Season","english":"Attack on Titan Final Season","native":"進撃の巨人 The Final Season","synonyms":["SnK 4","AoT 4","Shingeki no Kyojin 4","進撃の巨人4","Attack on Titan Season 4","진격의 거인 더 파이널 시즌","מתקפת הטיטאנים העונה האחרונה","L'Attaque des Titans Saison Finale","L'Attacco dei Giganti 4","L'Attacco dei Giganti - La Stagione Finale","حمله به تایتان فصل 4 "," ผ่าพิภพไททัน ไฟนอล ซีซั่น","ผ่าพิภพไททัน Final Season","ผ่าพิภพไททัน ภาค 4","هجوم العملاقة الجزء الأخير","Атака Титанов: Финал"],"format":"TV","episodes":16,"season":"WINTER","year":2021,"start_date":{"year":2020,"month":12,"day":7},"status":"FINISHED"},{"index":1,"id":124080,"mal_id":42897,"title":"Horimiya","english":"Horimiya","native":"ホリミヤ","synonyms":["堀与宫村","โฮริมิยะ สาวมั่นกับนายมืดมน","Хоримия"],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":10},"status":"FINISHED"},{"index":2,"id":108465,"mal_id":39535,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu","english":"Mushoku Tensei: Jobless Reincarnation","native":"無職転生 ~異世界行ったら本気だす~","synonyms":["Jobless Reincarnation: I Will Seriously Try If I Go To Another World","无职转生 ~到了异世界就拿出真本事~","เกิดชาตินี้พี่ต้องเทพ","Thất nghiệp chuyển sinh"],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":11},"status":"FINISHED"},{"index":3,"id":113936,"mal_id":40852,"title":"Dr. STONE: STONE WARS","english":"Dr. STONE: STONE WARS","native":"Dr.STONE STONE WARS","synonyms":["ドクターストーン STONE WARS","Dr.STONE第2期","Dr. STONE 2","닥터 스톤 STONE WARS","石纪元第二季","DR.STONE ภาค 2","Доктор Стоун: Каменные войны"],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":14},"status":"FINISHED"},{"index":4,"id":108725,"mal_id":39617,"title":"Yakusoku no Neverland 2","english":"The Promised Neverland Season 2","native":"約束のネバーランド2","synonyms":["YakuNeba","TPN2","พันธสัญญาเนเวอร์แลนด์ ภาค 2","約定的夢幻島 第二季"],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":5,"id":108511,"mal_id":39551,"title":"Tensei Shitara Slime Datta Ken 2nd Season","english":"That Time I Got Reincarnated as a Slime Season 2","native":"転生したらスライムだった件 第2期","synonyms":["転スラ2","TenSura 2","关于我转生变成史莱姆这档事第二季(上半)","เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2","Moi, quand je me réincarne en Slime Saison 2","Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2","О моём перерождении в слизь 2"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":12},"status":"FINISHED"},{"index":6,"id":119661,"mal_id":42203,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2","english":"Re:ZERO -Starting Life in Another World- Season 2 Part 2","native":"Re:ゼロから始める異世界生活 2nd Season Part 2","synonyms":["Re:Zero kara Hajimeru Isekai Seikatsu (2021)","Re: 제로부터 시작하는 이세계 생활 2기 파트 2","Re:从零开始的异世界生活第二季(下半)","Re:从零开始的异世界生活 2 下半","Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2","Re:Zero — жизнь с нуля в другом мире. Второй сезон"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":6},"status":"FINISHED"},{"index":7,"id":124845,"mal_id":43299,"title":"Wonder Egg Priority","english":"WONDER EGG PRIORITY","native":"ワンダーエッグ・プライオリティ","synonyms":["WonEgg","WEP","奇蛋物语","วันเดอร์เอ็ก ไพรออริตี","Приоритет чудо-яйца"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":13},"status":"FINISHED"},{"index":8,"id":124153,"mal_id":42923,"title":"SK∞","english":"SK8 the Infinity","native":"SK∞ エスケーエイト","synonyms":["SK Eight","เอสเคเอท สเกตบอร์ดล้างเมือง","Hội Thanh Niên Lướt Ván SK∞","Ski Tak Terbatas SK∞"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":10},"status":"FINISHED"},{"index":9,"id":109261,"mal_id":39783,"title":"Go-toubun no Hanayome ∬","english":"The Quintessential Quintuplets 2","native":"五等分の花嫁∬","synonyms":["5-toubun no Hanayome ∬","Go-toubun no Hanayome 2nd Season","The Five Wedded Brides 2nd Season","五等分的新娘∬","เจ้าสาวผมเป็นแฝดห้า ภาค 2"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":10,"id":103632,"mal_id":37984,"title":"Kumo desu ga, Nani ka?","english":"So I'm a Spider, So What?","native":"蜘蛛ですが、なにか?","synonyms":["转生成蜘蛛又怎样!","حسنا أنا عنكبوت، ماذا في ذلك؟","แมงมุมแล้วไง ข้องใจเหรอคะ ","Tôi Là Nhện Đấy, Có Sao Không?"],"format":"TV","episodes":24,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":11,"id":113425,"mal_id":40750,"title":"Kaifuku Jutsushi no Yarinaoshi","english":"Redo of Healer","native":"回復術士のやり直し","synonyms":["回复术士的重启人生","La Venganza del Sanador"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":13},"status":"FINISHED"},{"index":12,"id":114194,"mal_id":40935,"title":"BEASTARS 2nd Season","english":"BEASTARS Season 2","native":"BEASTARS 第2期","synonyms":["บีสตาร์ ภาค 2","Выдающиеся звери 2","ビースターズ 2"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":7},"status":"FINISHED"},{"index":13,"id":112443,"mal_id":40530,"title":"Jaku-Chara Tomozaki-kun","english":"Bottom-Tier Character Tomozaki","native":"弱キャラ友崎くん","synonyms":["เกมพลิกโฉมนายกระจอก","Низкоуровневый Томодзаки"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":14,"id":116752,"mal_id":41491,"title":"Nanatsu no Taizai: Funnu no Shinpan","english":"The Seven Deadly Sins: Dragon's Judgement","native":"七つの大罪 憤怒の審判","synonyms":["七大罪:愤怒的审判","The Seven Deadly Sins: Dragens dom","ศึกตำนาน 7 อัศวิน ภาค 4","Сім смертних гріхів: Правосуддя Дракона","Семь смертных грехов: Яростное правосудие"],"format":"TV","episodes":24,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":13},"status":"FINISHED"},{"index":15,"id":125428,"mal_id":43690,"title":"Tenkuu Shinpan","english":"High-Rise Invasion","native":"天空侵犯","synonyms":["Sky-High Survival ","Tenku Shinpan - Sem Saída","غزاة ناطحات السحاب","หน้ากากเดนนรก","Invasión en las Alturas"],"format":"ONA","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":2,"day":25},"status":"FINISHED"},{"index":16,"id":114085,"mal_id":40908,"title":"Kemono Jihen","english":"Kemono Jihen","native":"怪物事変","synonyms":["けものじへん","Monster Incidents","Kemono Incidents","คดีประหลาดคนปีศาจ"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":10},"status":"FINISHED"},{"index":17,"id":118375,"mal_id":41899,"title":"Ore dake Haireru Kakushi Dungeon","english":"The Hidden Dungeon Only I Can Enter","native":"俺だけ入れる隠しダンジョン","synonyms":["Special training in the Secret Dungeon!","ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":3786,"mal_id":3786,"title":"Shin Evangelion Movie:||","english":"Evangelion: 3.0+1.0 Thrice Upon a Time","native":"シン・エヴァンゲリオン劇場版:||","synonyms":["Rebuild of Evangelion 4.0","EVANGELION:3.0+1.01 THRICE UPON A TIME ","EVANGELION:3.0+1.01 A ESPERANÇA","อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว","Evangelion 3.0+1.11","EVANGELION:3.0+1.01 TRIPLE","Evangelion 3.0+1.01 Od-nowa"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":3,"day":8},"status":"FINISHED"},{"index":19,"id":112649,"mal_id":40594,"title":"Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari","english":"Suppose a Kid from the Last Dungeon Boonies moved to a starter town?","native":"たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語","synonyms":["LASDAN","Imagine, un cambrousard du dernier donjon dans la ville de départ !","หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":4},"status":"FINISHED"},{"index":20,"id":108631,"mal_id":39586,"title":"Hataraku Saibou!!","english":"Cells at Work!!","native":"はたらく細胞!!","synonyms":["Les brigades immunitaires 2","เซลล์ขยัน พันธุ์เดือด ภาค 2"],"format":"TV","episodes":8,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":21,"id":104459,"mal_id":38474,"title":"Yuru Camp△ SEASON 2","english":"LAID-BACK CAMP SEASON2","native":"ゆるキャン△ SEASON2","synonyms":["Yurucamp","Yurukyan△","摇曳露营△第二季","摇曳露营△ 2","โลลิตั้งแคมป์ ภาค 2","แคมป์สบายสไตล์สาวๆ ภาค 2","Laid-Back Camp Season 2"],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":7},"status":"FINISHED"},{"index":22,"id":114862,"mal_id":41109,"title":"Log Horizon: Entaku Houkai","english":"Log Horizon: Destruction of the Round Table","native":"ログ・ホライズン 円卓崩壊","synonyms":["Log Horizon 3","รวมพลคนติดอยู่ในเกมส์ ภาค 3"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":13},"status":"FINISHED"},{"index":23,"id":117533,"mal_id":41694,"title":"Hataraku Saibou BLACK","english":"Cells at Work! CODE BLACK","native":"はたらく細胞BLACK","synonyms":["Les brigades immunitaires BLACK","เซลล์ขยันพันธุ์เดือด BLACK","Клетки за работой! КОД: ТЬМА"],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"},{"index":24,"id":114129,"mal_id":39486,"title":"Gintama: THE FINAL","english":"Gintama: THE VERY FINAL","native":"銀魂 THE FINAL","synonyms":["กินทามะ THE FINAL"],"format":"MOVIE","episodes":1,"season":"WINTER","year":2021,"start_date":{"year":2021,"month":1,"day":8},"status":"FINISHED"}],"jikan":[{"index":0,"id":40028,"mal_id":40028,"title":"Shingeki no Kyojin: The Final Season","english":"Attack on Titan: Final Season","native":"進撃の巨人 The Final Season","synonyms":["Shingeki no Kyojin Season 4","Attack on Titan Season 4"],"format":"TV","episodes":16,"season":"WINTER","year":2021,"start_date":{"day":7,"month":12,"year":2020},"status":"Finished Airing"},{"index":1,"id":42897,"mal_id":42897,"title":"Horimiya","english":"Horimiya","native":"ホリミヤ","synonyms":["Hori-san and Miyamura-kun"],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"day":10,"month":1,"year":2021},"status":"Finished Airing"},{"index":2,"id":39535,"mal_id":39535,"title":"Mushoku Tensei: Isekai Ittara Honki Dasu","english":"Mushoku Tensei: Jobless Reincarnation","native":"無職転生 ~異世界行ったら本気だす~","synonyms":["Jobless Reincarnation: I Will Seriously Try If I Go To Another World"],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"day":11,"month":1,"year":2021},"status":"Finished Airing"},{"index":3,"id":40852,"mal_id":40852,"title":"Dr. Stone: Stone Wars","english":null,"native":"ドクターストーン STONE WARS","synonyms":["Dr. Stone 2nd Season","Dr. Stone Second Season"],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"day":14,"month":1,"year":2021},"status":"Finished Airing"},{"index":4,"id":39551,"mal_id":39551,"title":"Tensei shitara Slime Datta Ken 2nd Season","english":"That Time I Got Reincarnated as a Slime Season 2","native":"転生したらスライムだった件","synonyms":["Tensura 2"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":12,"month":1,"year":2021},"status":"Finished Airing"},{"index":5,"id":42203,"mal_id":42203,"title":"Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2","english":"Re:ZERO -Starting Life in Another World- Season 2 Part 2","native":"Re:ゼロから始める異世界生活 2 part 2","synonyms":["Re: Life in a different world from zero 2nd Season","ReZero 2nd Season","Re:Zero - Starting Life in Another World 2"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":6,"month":1,"year":2021},"status":"Finished Airing"},{"index":6,"id":39617,"mal_id":39617,"title":"Yakusoku no Neverland 2nd Season","english":"The Promised Neverland Season 2","native":"約束のネバーランド","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2021,"start_date":{"day":8,"month":1,"year":2021},"status":"Finished Airing"},{"index":7,"id":43299,"mal_id":43299,"title":"Wonder Egg Priority","english":"Wonder Egg Priority","native":"ワンダーエッグ・プライオリティ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":13,"month":1,"year":2021},"status":"Finished Airing"},{"index":8,"id":39783,"mal_id":39783,"title":"5-toubun no Hanayome ∬","english":"The Quintessential Quintuplets 2","native":"五等分の花嫁∬","synonyms":["Gotoubun no Hanayome 2nd Season","The Five Wedded Brides 2nd Season","5-toubun no Hanayome 2nd Season","The Quintessential Quintuplets 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":8,"month":1,"year":2021},"status":"Finished Airing"},{"index":9,"id":40750,"mal_id":40750,"title":"Kaifuku Jutsushi no Yarinaoshi","english":"Redo of Healer","native":"回復術士のやり直し","synonyms":["Kaiyari"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":13,"month":1,"year":2021},"status":"Finished Airing"},{"index":10,"id":42923,"mal_id":42923,"title":"SK∞","english":"SK8 the Infinity","native":"SK∞ エスケーエイト","synonyms":["SK Eight","Skate"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":10,"month":1,"year":2021},"status":"Finished Airing"},{"index":11,"id":37984,"mal_id":37984,"title":"Kumo desu ga, Nani ka?","english":"So I'm a Spider, So What?","native":"蜘蛛ですが、なにか?","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2021,"start_date":{"day":8,"month":1,"year":2021},"status":"Finished Airing"},{"index":12,"id":40935,"mal_id":40935,"title":"Beastars 2nd Season","english":null,"native":"BEASTARS 2期","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":7,"month":1,"year":2021},"status":"Finished Airing"},{"index":13,"id":41491,"mal_id":41491,"title":"Nanatsu no Taizai: Funnu no Shinpan","english":"The Seven Deadly Sins: Dragon's Judgement","native":"七つの大罪 憤怒の審判","synonyms":["Nanatsu no Taizai: Fundo no Shinpan"],"format":"TV","episodes":24,"season":"WINTER","year":2021,"start_date":{"day":13,"month":1,"year":2021},"status":"Finished Airing"},{"index":14,"id":40530,"mal_id":40530,"title":"Jaku-Chara Tomozaki-kun","english":"Bottom-Tier Character Tomozaki","native":"弱キャラ友崎くん","synonyms":["Jakusha Character Tomozaki-kun","The Low Tier Character \"Tomozaki-kun\""],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":8,"month":1,"year":2021},"status":"Finished Airing"},{"index":15,"id":41899,"mal_id":41899,"title":"Ore dake Haireru Kakushi Dungeon","english":"The Hidden Dungeon Only I Can Enter","native":"俺だけ入れる隠しダンジョン","synonyms":["Special training in the Secret Dungeon"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":9,"month":1,"year":2021},"status":"Finished Airing"},{"index":16,"id":3786,"mal_id":3786,"title":"Shin Evangelion Movie:||","english":"Evangelion: 3.0+1.0 Thrice Upon a Time","native":"シン・エヴァンゲリオン劇場版𝄇","synonyms":["Evangelion: 4.0","Rebuild of Evangelion","Shin Evangelion Gekijouban𝄇","Rebuild of Evangelion: Final"],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":3,"year":2021},"status":"Finished Airing"},{"index":17,"id":40908,"mal_id":40908,"title":"Kemono Jihen","english":"Kemono Jihen","native":"怪物事変","synonyms":["Monster Incidents"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":10,"month":1,"year":2021},"status":"Finished Airing"},{"index":18,"id":43690,"mal_id":43690,"title":"Tenkuu Shinpan","english":"High-Rise Invasion","native":"天空侵犯","synonyms":["Sky-High Survival","Sky Violation"],"format":"ONA","episodes":12,"season":null,"year":null,"start_date":{"day":25,"month":2,"year":2021},"status":"Finished Airing"},{"index":19,"id":40594,"mal_id":40594,"title":"Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari","english":"Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?","native":"たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語","synonyms":["Last Dungeon Boonies Kid"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":4,"month":1,"year":2021},"status":"Finished Airing"},{"index":20,"id":39586,"mal_id":39586,"title":"Hataraku Saibou!!","english":"Cells at Work!!","native":"はたらく細胞!!","synonyms":["Cells at Work!! 2nd Season","Hataraku Saibou 2nd Season"],"format":"TV","episodes":8,"season":"WINTER","year":2021,"start_date":{"day":9,"month":1,"year":2021},"status":"Finished Airing"},{"index":21,"id":41109,"mal_id":41109,"title":"Log Horizon: Entaku Houkai","english":"Log Horizon: Destruction of the Round Table","native":"ログ・ホライズン 円卓崩壊","synonyms":["Log Horizon 3rd Season","Log Horizon Third Season"],"format":"TV","episodes":12,"season":"WINTER","year":2021,"start_date":{"day":13,"month":1,"year":2021},"status":"Finished Airing"},{"index":22,"id":38474,"mal_id":38474,"title":"Yuru Camp△ Season 2","english":"Laid-Back Camp Season 2","native":"ゆるキャン△ SEASON2","synonyms":["Yuru Camp 2nd Season","Yurukyan"],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"day":7,"month":1,"year":2021},"status":"Finished Airing"},{"index":23,"id":41694,"mal_id":41694,"title":"Hataraku Saibou Black","english":"Cells at Work! CODE BLACK!","native":"はたらく細胞BLACK","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2021,"start_date":{"day":10,"month":1,"year":2021},"status":"Finished Airing"},{"index":24,"id":39486,"mal_id":39486,"title":"Gintama: The Final","english":"Gintama: The Very Final","native":"銀魂 THE FINAL","synonyms":[],"format":"Movie","episodes":1,"season":null,"year":null,"start_date":{"day":8,"month":1,"year":2021},"status":"Finished Airing"}]},{"year":2023,"season":"winter","anilist":[{"index":0,"id":136430,"mal_id":49387,"title":"VINLAND SAGA SEASON 2","english":"Vinland Saga Season 2","native":"ヴィンランド・サガ SEASON2","synonyms":["Сага о Винланде 2"],"format":"TV","episodes":24,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":10},"status":"FINISHED"},{"index":1,"id":146984,"mal_id":51535,"title":"Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen","english":"Attack on Titan Final Season THE FINAL CHAPTERS Special 1","native":"進撃の巨人 The Final Season完結編 前編","synonyms":["Shingeki no Kyojin: The Final Season Final Edition","Shingeki no Kyojin: The Final Season Part 3","ผ่าพิภพไททัน ภาค 4","ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3","Attack on Titan Final Season Part 3 Final Arc Part 1","Attack on Titan The Final Season The Final Part Special","Attack on Titan The Final Season The Final Part Part 1","حمله به تایتان فصل آخر قسمت ویژه 1 ","SnK 4","AoT 4"],"format":"SPECIAL","episodes":1,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":3,"day":4},"status":"FINISHED"},{"index":2,"id":151806,"mal_id":52305,"title":"Tomo-chan wa Onnanoko!","english":"Tomo-chan Is a Girl!","native":"トモちゃんは女の子!","synonyms":["Tomo-chan wa Onna no ko!","小智是女孩啦!","Томо — девушка!"],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":5},"status":"FINISHED"},{"index":3,"id":143338,"mal_id":50739,"title":"Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken","english":"The Angel Next Door Spoils Me Rotten","native":"お隣の天使様にいつの間にか駄目人間にされていた件","synonyms":["ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว","Meu Anjo de Vizinha Me Mima Demais","Chouchouté par l’ange d’à côté","Ангел по соседству меня балует","關於我在無意間被隔壁的天使變成廢柴這件事","Aku Dimanjakan Tetanggaku yang Seperti Malaikat"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":7},"status":"FINISHED"},{"index":4,"id":142853,"mal_id":50608,"title":"Tokyo Revengers: Seiya Kessen-hen","english":"Tokyo Revengers Season 2","native":"東京リベンジャーズ 聖夜決戦編","synonyms":["Tokyo Revengers: Christmas Showdown","Os Vingadores de Tóquio"],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":5,"id":130588,"mal_id":48417,"title":"Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II","english":"The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants","native":"魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ","synonyms":["The Misfit of Demon King Academy II","The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2","ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2","Непригодный для Академии владыки тьмы II"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":6,"id":155907,"mal_id":53411,"title":"Buddy Daddies","english":"Buddy Daddies","native":"Buddy Daddies","synonyms":["バディダディ","Напарники-папаши"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":7},"status":"FINISHED"},{"index":7,"id":145665,"mal_id":51105,"title":"NieR:Automata Ver1.1a","english":"NieR:Automata Ver1.1a","native":"NieR:Automata Ver1.1a","synonyms":["ニーア オートマタ","NieR Automata Ver1.1a"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":8,"id":156067,"mal_id":53446,"title":"Tondemo Skill de Isekai Hourou Meshi","english":"Campfire Cooking in Another World with my Absurd Skill","native":"とんでもスキルで異世界放浪メシ","synonyms":["Regarding the Display of an Outrageous Skill Which Has Incredible Powers","Gourmet Adventure of Legendary Tamer","สกิลสุดพิสดารกับมื้ออาหารในต่างโลก","Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd","Hero Skill - Achats en ligne","擁有超常技能的異世界流浪美食家","Кулинар со странными навыками в параллельном мире"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":10},"status":"FINISHED"},{"index":9,"id":141249,"mal_id":50330,"title":"Bungou Stray Dogs 4th Season","english":"Bungo Stray Dogs 4","native":"文豪ストレイドッグス 第4シーズン","synonyms":["BSD 4","BungouSD 4","คณะประพันธกรจรจัด ภาค 4","文豪野犬第四季"],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":4},"status":"FINISHED"},{"index":10,"id":146850,"mal_id":51462,"title":"Isekai Nonbiri Nouka","english":"Farming Life in Another World","native":"異世界のんびり農家","synonyms":[" ISEKAI FARMING - Vita contadina in un altro mondo","異世界悠閒農家"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":6},"status":"FINISHED"},{"index":11,"id":140596,"mal_id":50197,"title":"Ijiranaide, Nagatoro-san 2nd Attack","english":"DON'T TOY WITH ME, MISS NAGATORO 2nd Attack","native":"イジらないで、長瀞さん 2nd Attack","synonyms":["Don't Toy With Me, Miss Nagatoro Season 2","ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2","Не издевайся надо мной, Нагаторо! 2 раунд"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":12,"id":155211,"mal_id":53111,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇","synonyms":["มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2","Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2","Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2","Danmachi IV Part 2","ダンまちⅣ"],"format":"TV","episodes":11,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":5},"status":"FINISHED"},{"index":13,"id":144553,"mal_id":50932,"title":"Saikyou Onmyouji no Isekai Tenseiki","english":"The Reincarnation of the Strongest Exorcist in Another World","native":"最強陰陽師の異世界転生記","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":14,"id":151252,"mal_id":52173,"title":"Koori Zokusei Danshi to Cool na Douryou Joshi","english":"The Ice Guy and His Cool Female Colleague","native":"氷属性男子とクールな同僚女子","synonyms":["บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล","Pria Es dan Rekan Wanitanya yang Keren"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":3},"status":"FINISHED"},{"index":15,"id":148969,"mal_id":51815,"title":"Kubo-san wa Mob wo Yurusanai","english":"Kubo Won't Let Me Be Invisible","native":"久保さんは僕を許さない","synonyms":["Kubo Tidak Akan Membiarkanku Tak Terlihat","คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":10},"status":"FINISHED"},{"index":16,"id":151040,"mal_id":52093,"title":"TRIGUN STAMPEDE","english":"TRIGUN STAMPEDE","native":"TRIGUN STAMPEDE","synonyms":["トライガン スタンピード"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":7},"status":"FINISHED"},{"index":17,"id":153629,"mal_id":52736,"title":"Tensei Oujo to Tensai Reijou no Mahou Kakumei","english":"The Magical Revolution of the Reincarnated Princess and the Genius Young Lady","native":"転生王女と天才令嬢の魔法革命","synonyms":["MagiRevo","転天","TenTen","轉生公主與天才千金的魔法革命","Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius","การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ","TenTen Kakumei","Магическая революция перерождённой принцессы и гениальной дочери благородного дома"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":4},"status":"FINISHED"},{"index":18,"id":116867,"mal_id":41514,"title":"Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2","english":"BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2","native":"痛いのは嫌なので防御力に極振りしたいと思います。2","synonyms":["น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2","Bofuri 2","Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2","Бофури. Я боюсь боли, так что качаю только защиту 2"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":11},"status":"FINISHED"},{"index":19,"id":148116,"mal_id":51711,"title":"Hyouken no Majutsushi ga Sekai wo Suberu","english":"The Iceblade Sorcerer Shall Rule the World","native":"冰剣の魔術師が世界を統べる","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":6},"status":"FINISHED"},{"index":20,"id":147864,"mal_id":51678,"title":"Onii-chan wa Oshimai!","english":"ONIMAI: I'm Now Your Sister!","native":"お兄ちゃんはおしまい!","synonyms":["Onii-chan is Done For!","ONIMAI: Sekarang Aku Kakak Perempuanmu!","อวสานพี่ชาย กลายเป็นพี่สาว","不當哥哥了!","Я стал сестрой!","ONIMAI: Ab sofort Schwester!"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":5},"status":"FINISHED"},{"index":21,"id":144092,"mal_id":50854,"title":"Benriya Saitou-san, Isekai ni Iku","english":"Handyman Saitou in Another World","native":"便利屋斎藤さん、異世界に行く","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":8},"status":"FINISHED"},{"index":22,"id":137909,"mal_id":49612,"title":"Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu","english":"Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World","native":"人間不信の冒険者たちが世界を救うようです","synonyms":["Apparently, Disillusioned Adventurers Will Save the World","Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia"],"format":"ONA","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":3},"status":"FINISHED"},{"index":23,"id":146323,"mal_id":51252,"title":"Spy Kyoushitsu","english":"Spy Classroom","native":"スパイ教室","synonyms":["Spy Room","ห้องเรียนจารชน"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":5},"status":"FINISHED"},{"index":24,"id":152523,"mal_id":52446,"title":"Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life","english":"Chillin’ in My 30s after Getting Fired from the Demon King’s Army","native":"解雇された暗黒兵士(30代)のスローなセカンドライフ","synonyms":["被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"year":2023,"month":1,"day":7},"status":"FINISHED"}],"jikan":[{"index":0,"id":51535,"mal_id":51535,"title":"Shingeki no Kyojin: The Final Season - Kanketsu-hen","english":"Attack on Titan: Final Season - The Final Chapters","native":"進撃の巨人 The Final Season完結編","synonyms":["Shingeki no Kyojin: The Final Season Part 3","Shingeki no Kyojin Season 4","Attack on Titan Season 4"],"format":"TV Special","episodes":2,"season":null,"year":null,"start_date":{"day":4,"month":3,"year":2023},"status":"Finished Airing"},{"index":1,"id":49387,"mal_id":49387,"title":"Vinland Saga Season 2","english":"Vinland Saga Season 2","native":"ヴィンランド・サガ SEASON2","synonyms":[],"format":"TV","episodes":24,"season":"WINTER","year":2023,"start_date":{"day":10,"month":1,"year":2023},"status":"Finished Airing"},{"index":2,"id":52305,"mal_id":52305,"title":"Tomo-chan wa Onnanoko!","english":"Tomo-chan Is a Girl!","native":"トモちゃんは女の子!","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"day":5,"month":1,"year":2023},"status":"Finished Airing"},{"index":3,"id":50739,"mal_id":50739,"title":"Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken","english":"The Angel Next Door Spoils Me Rotten","native":"お隣の天使様にいつの間にか駄目人間にされていた件","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":4,"id":50608,"mal_id":50608,"title":"Tokyo Revengers: Seiya Kessen-hen","english":"Tokyo Revengers: Christmas Showdown","native":"東京リベンジャーズ 聖夜決戦編","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"day":8,"month":1,"year":2023},"status":"Finished Airing"},{"index":5,"id":48417,"mal_id":48417,"title":"Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou","english":"The Misfit of Demon King Academy Ⅱ","native":"魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~","synonyms":["Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso","Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season","The Misfit of Demon King Academy 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":8,"month":1,"year":2023},"status":"Finished Airing"},{"index":6,"id":50330,"mal_id":50330,"title":"Bungou Stray Dogs 4th Season","english":"Bungo Stray Dogs 4","native":"文豪ストレイドッグス","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"day":4,"month":1,"year":2023},"status":"Finished Airing"},{"index":7,"id":53411,"mal_id":53411,"title":"Buddy Daddies","english":null,"native":"Buddy Daddies","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":8,"id":53446,"mal_id":53446,"title":"Tondemo Skill de Isekai Hourou Meshi","english":"Campfire Cooking in Another World with My Absurd Skill","native":"とんでもスキルで異世界放浪メシ","synonyms":["Regarding the Display of an Outrageous Skill Which Has Incredible Powers","Tonsuki"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":11,"month":1,"year":2023},"status":"Finished Airing"},{"index":9,"id":51105,"mal_id":51105,"title":"NieR:Automata Ver1.1a","english":"NieR:Automata Ver1.1a","native":"NieR:Automata Ver1.1a","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":8,"month":1,"year":2023},"status":"Finished Airing"},{"index":10,"id":50197,"mal_id":50197,"title":"Ijiranaide, Nagatoro-san 2nd Attack","english":"Don't Toy with Me, Miss Nagatoro 2nd Attack","native":"イジらないで、長瀞さん 2nd Attack","synonyms":["Don't Toy with Me","Miss Nagatoro 2nd Season","Ijiranaide","Nagatoro-san 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":8,"month":1,"year":2023},"status":"Finished Airing"},{"index":11,"id":51462,"mal_id":51462,"title":"Isekai Nonbiri Nouka","english":"Farming Life in Another World","native":"異世界のんびり農家","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":6,"month":1,"year":2023},"status":"Finished Airing"},{"index":12,"id":53111,"mal_id":53111,"title":"Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen","english":"Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2","native":"ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇","synonyms":["DanMachi 4th Season Part 2","Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2"],"format":"TV","episodes":11,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":13,"id":50932,"mal_id":50932,"title":"Saikyou Onmyouji no Isekai Tenseiki","english":"The Reincarnation of the Strongest Exorcist in Another World","native":"最強陰陽師の異世界転生記","synonyms":["The Reincarnation of the Strongest Onmyouji in Another World"],"format":"TV","episodes":13,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":14,"id":41514,"mal_id":41514,"title":"Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2","english":"BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2","native":"痛いのは嫌なので防御力に極振りしたいと思います。2","synonyms":["BOFURI: I Don't Want to Get Hurt","so I'll Max Out My Defense 2nd Season","I hate being in pain","so I think I'll make a full defense build 2","I Hate Getting Hurt","So I Put All My Skill Points Into Defense 2"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":11,"month":1,"year":2023},"status":"Finished Airing"},{"index":15,"id":52173,"mal_id":52173,"title":"Koori Zokusei Danshi to Cool na Douryou Joshi","english":"The Ice Guy and His Cool Female Colleague","native":"氷属性男子とクールな同僚女子","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":4,"month":1,"year":2023},"status":"Finished Airing"},{"index":16,"id":51815,"mal_id":51815,"title":"Kubo-san wa Mob wo Yurusanai","english":"Kubo Won't Let Me Be Invisible","native":"久保さんは僕を許さない","synonyms":["Kubo-san wa Boku wo Yurusanai","Kubo-san Doesn't Leave Me Be (a Mob)"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":10,"month":1,"year":2023},"status":"Finished Airing"},{"index":17,"id":52093,"mal_id":52093,"title":"Trigun Stampede","english":"Trigun Stampede","native":"TRIGUN STAMPEDE","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":18,"id":52736,"mal_id":52736,"title":"Tensei Oujo to Tensai Reijou no Mahou Kakumei","english":"The Magical Revolution of the Reincarnated Princess and the Genius Young Lady","native":"転生王女と天才令嬢の魔法革命","synonyms":["Tenten Kakumei","MagiRevo"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":4,"month":1,"year":2023},"status":"Finished Airing"},{"index":19,"id":50854,"mal_id":50854,"title":"Benriya Saitou-san, Isekai ni Iku","english":"Handyman Saitou in Another World","native":"便利屋斎藤さん、異世界に行く","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":8,"month":1,"year":2023},"status":"Finished Airing"},{"index":20,"id":51711,"mal_id":51711,"title":"Hyouken no Majutsushi ga Sekai wo Suberu","english":"The Iceblade Sorcerer Shall Rule the World","native":"冰剣の魔術師が世界を統べる","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":6,"month":1,"year":2023},"status":"Finished Airing"},{"index":21,"id":49612,"mal_id":49612,"title":"Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu","english":"Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World","native":"人間不信の冒険者たちが世界を救うようです","synonyms":["Apparently","Disillusioned Adventurers Will Save the World"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":10,"month":1,"year":2023},"status":"Finished Airing"},{"index":22,"id":52446,"mal_id":52446,"title":"Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life","english":"Chillin' in My 30s after Getting Fired from the Demon King's Army","native":"解雇された暗黒兵士(30代)のスローなセカンドライフ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":7,"month":1,"year":2023},"status":"Finished Airing"},{"index":23,"id":51678,"mal_id":51678,"title":"Oniichan wa Oshimai!","english":"Onimai: I'm Now Your Sister!","native":"お兄ちゃんはおしまい!","synonyms":["Onimai","Onii-chan is Done For"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":5,"month":1,"year":2023},"status":"Finished Airing"},{"index":24,"id":44204,"mal_id":44204,"title":"Kyokou Suiri Season 2","english":"In/Spectre 2","native":"虚構推理 Season2","synonyms":["In/Spectre 2nd Season","Kyokou Suiri 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2023,"start_date":{"day":9,"month":1,"year":2023},"status":"Finished Airing"}]},{"year":2025,"season":"winter","anilist":[{"index":0,"id":176496,"mal_id":58567,"title":"Ore dake Level Up na Ken: Season 2 - Arise from the Shadow","english":"Solo Leveling Season 2 -Arise from the Shadow-","native":"俺だけレベルアップな件 Season 2 -Arise from the Shadow-","synonyms":["Na Honjaman Level Up 2","나 혼자만 레벨업 2","俺だけレベルアップな件 第2期","Ore dake Level Up na Ken 2nd Season","Solo Leveling 2ª Temporada -Ergam-se das Sombras-","나 혼자만 레벨업 -ARISE FROM THE SHADOW-"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":5},"status":"FINISHED"},{"index":1,"id":177709,"mal_id":58939,"title":"SAKAMOTO DAYS","english":"SAKAMOTO DAYS","native":"SAKAMOTO DAYS","synonyms":["サカモト デイズ","أيام ساكاموتو","사카모토 데이즈","坂本日常","Дни Сакамото"],"format":"ONA","episodes":11,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":11},"status":"FINISHED"},{"index":2,"id":176301,"mal_id":58514,"title":"Kusuriya no Hitorigoto 2nd Season","english":"The Apothecary Diaries Season 2","native":"薬屋のひとりごと 第2期","synonyms":["Die Tagebücher der Apothekerin Season 2","Diários de uma Apotecária 2ª Temporada","Монолог фармацевта 2","Les Carnets de l'apothicaire Saison 2","Los diarios de la boticaria temporada 2"],"format":"TV","episodes":24,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":10},"status":"FINISHED"},{"index":3,"id":172019,"mal_id":57592,"title":"Dr. STONE: SCIENCE FUTURE","english":"Dr. STONE SCIENCE FUTURE","native":"Dr.STONE SCIENCE FUTURE","synonyms":["Dr.STONE Season 4","Dr.STONE 第4期","ドクターストーン"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":9},"status":"FINISHED"},{"index":4,"id":172258,"mal_id":57616,"title":"Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season","english":"The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2","native":"君のことが大大大大大好きな100人の彼女 第2期","synonyms":["100 Kanojo 2","100Kano 2","Hyakkano 2"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":12},"status":"FINISHED"},{"index":5,"id":176273,"mal_id":58502,"title":"Zenshuu.","english":"ZENSHU","native":"全修。","synonyms":["เซ็นชู"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":5},"status":"FINISHED"},{"index":6,"id":178462,"mal_id":59135,"title":"Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.","english":"I'm Getting Married to a Girl I Hate in My Class","native":"クラスの大嫌いな女子と結婚することになった。","synonyms":["Kurakon","クラ婚","クラコン","Cla-Kon"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":3},"status":"FINISHED"},{"index":7,"id":167143,"mal_id":55997,"title":"Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu","english":"I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time","native":"ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います","synonyms":["Uketsukejou Saikyou","Girumasu","ギルます","雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":11},"status":"FINISHED"},{"index":8,"id":175443,"mal_id":58271,"title":"Honey Lemon Soda","english":"Honey Lemon Soda","native":"ハニーレモンソーダ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":9},"status":"FINISHED"},{"index":9,"id":169441,"mal_id":56701,"title":"Watashi no Shiawase na Kekkon 2nd Season","english":"My Happy Marriage Season 2","native":"わたしの幸せな結婚 第二期","synonyms":["WataKon 2","ขอให้รักเรานี้ได้มีความสุข","Moje szczęśliwe małżeństwo. Sezon 2","Hôn nhân hạnh phúc của tôi","Meu Casamento Feliz","Il mio matrimonio felice","Мій щасливий шлюб","Mi feliz matrimonio","わた婚2","Мой счастливый брак 2"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":6},"status":"FINISHED"},{"index":10,"id":178548,"mal_id":59144,"title":"Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru","english":"Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest","native":"不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~","synonyms":["FuguKan","ふぐ鑑","Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":9},"status":"FINISHED"},{"index":11,"id":179696,"mal_id":59361,"title":"Kono Kaisha ni Suki na Hito ga Imasu","english":"I Have a Crush at Work","native":"この会社に好きな人がいます","synonyms":["I Have a Crush at Work","Can You Keep a Secret?","บริษัทนี้มีความรัก","KonoSuki","Ты умеешь хранить секреты?","Bí mật Tình yêu nơi Công sở"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":6},"status":"FINISHED"},{"index":12,"id":177506,"mal_id":58822,"title":"Izure Saikyou no Renkinjutsushi?","english":"Possibly the Greatest Alchemist of All Time","native":"いずれ最強の錬金術師?","synonyms":["Someday Will I Be The Greatest Alchemist?","遲早是最強的鍊金術師?"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":1},"status":"FINISHED"},{"index":13,"id":177552,"mal_id":58853,"title":"Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai","english":"Medaka Kuroiwa is Impervious to My Charms","native":"黒岩メダカに私の可愛いが通じない","synonyms":["メダかわ","Medakawa","Мэдака Куроива не понимает моей привлекательности"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":7},"status":"FINISHED"},{"index":14,"id":180812,"mal_id":59730,"title":"A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.","english":"I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!","native":"Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。","synonyms":["After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students","Aparida","Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта","Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku","Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ"],"format":"TV","episodes":24,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":12},"status":"FINISHED"},{"index":15,"id":179689,"mal_id":59349,"title":"Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi","english":"Headhunted to Another World: From Salaryman to Big Four!","native":"サラリーマンが異世界に行ったら四天王になった話","synonyms":["Salaryman Big 4","Nhân viên Văn phòng được Triệu hồi thành Tứ Đại Thiên Vương ở Thế giới khác","平凡上班族到異世界當上了四天王的故事"],"format":"ONA","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":1},"status":"FINISHED"},{"index":16,"id":178100,"mal_id":59002,"title":"Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite","english":"Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~","native":"外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~","synonyms":["Kinomi Master"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":1},"status":"FINISHED"},{"index":17,"id":180292,"mal_id":59561,"title":"Arafou Otoko no Isekai Tsuuhan Seikatsu","english":"The Daily Life of a Middle-Aged Online Shopper in Another World","native":"アラフォー男の異世界通販生活","synonyms":["Around 40 Otoko no Isekai Tsuuhan Seikatsu","ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":9},"status":"FINISHED"},{"index":18,"id":176642,"mal_id":58600,"title":"Ameku Takao no Suiri Karte","english":"Ameku M.D.: Doctor Detective","native":"天久鷹央の推理カルテ","synonyms":["Ameku Takao's Detective Karte","Ameku Takao no Suiri Karute","天久鷹央的推理病歷表"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":2},"status":"FINISHED"},{"index":19,"id":172439,"mal_id":57648,"title":"Nihon e Youkoso Elf-san.","english":"Welcome to Japan, Ms. Elf!","native":"日本へようこそエルフさん。","synonyms":["歡迎來到日本,妖精小姐。"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":10},"status":"FINISHED"},{"index":20,"id":172453,"mal_id":57719,"title":"Akuyaku Reijou Tensei Oji-san","english":"From Bureaucrat to Villainess: Dad's Been Reincarnated!","native":"悪役令嬢転生おじさん","synonyms":["The Middle-Aged Man that Reincarnated as a Villainess"," Om-om yang Bereinkarnasi Menjadi Putri Jahat","中年大叔轉生反派千金"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":10},"status":"FINISHED"},{"index":21,"id":165171,"mal_id":55318,"title":"Medalist","english":"Medalist","native":"メダリスト","synonyms":["金牌得主"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":5},"status":"FINISHED"},{"index":22,"id":170892,"mal_id":53924,"title":"Jibaku Shounen Hanako-kun 2","english":"Toilet-bound Hanako-kun Season 2","native":"地縛少年花子くん2","synonyms":["ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":12},"status":"FINISHED"},{"index":23,"id":176063,"mal_id":58437,"title":"Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita","english":"I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic","native":"没落予定の貴族だけど、暇だったから魔法を極めてみた","synonyms":["BotsurakuKizoku","没落貴族"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":7},"status":"FINISHED"},{"index":24,"id":179297,"mal_id":59265,"title":"Magic Maker: Isekai Mahou no Tsukurikata","english":"Magic Maker: How to Make Magic in Another World","native":"マジック・メイカー ~異世界魔法の作り方~","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"year":2025,"month":1,"day":9},"status":"FINISHED"}],"jikan":[{"index":0,"id":58567,"mal_id":58567,"title":"Ore dake Level Up na Ken Season 2: Arise from the Shadow","english":"Solo Leveling Season 2: Arise from the Shadow","native":"俺だけレベルアップな件 Season 2 -Arise from the Shadow-","synonyms":["Solo Leveling Second Season"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"day":5,"month":1,"year":2025},"status":"Finished Airing"},{"index":1,"id":58939,"mal_id":58939,"title":"Sakamoto Days","english":"Sakamoto Days","native":"SAKAMOTO DAYS","synonyms":[],"format":"TV","episodes":11,"season":"WINTER","year":2025,"start_date":{"day":11,"month":1,"year":2025},"status":"Finished Airing"},{"index":2,"id":58514,"mal_id":58514,"title":"Kusuriya no Hitorigoto 2nd Season","english":"The Apothecary Diaries Season 2","native":"薬屋のひとりごと 第2期","synonyms":["The Pharmacist's Monologue","Drugstore Soliloquy"],"format":"TV","episodes":24,"season":"WINTER","year":2025,"start_date":{"day":10,"month":1,"year":2025},"status":"Finished Airing"},{"index":3,"id":57592,"mal_id":57592,"title":"Dr. Stone: Science Future","english":"Dr. Stone: Science Future","native":"Dr.STONE SCIENCE FUTURE","synonyms":["Dr. Stone 4th Season"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":9,"month":1,"year":2025},"status":"Finished Airing"},{"index":4,"id":57616,"mal_id":57616,"title":"Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season","english":"The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2","native":"君のことが大大大大大好きな100人の彼女 2期","synonyms":["Hyakkano 2nd Season"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":12,"month":1,"year":2025},"status":"Finished Airing"},{"index":5,"id":58502,"mal_id":58502,"title":"Zenshuu.","english":"Zenshu","native":"全修。","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":5,"month":1,"year":2025},"status":"Finished Airing"},{"index":6,"id":59135,"mal_id":59135,"title":"Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.","english":"I'm Getting Married to a Girl I Hate in My Class","native":"クラスの大嫌いな女子と結婚することになった。","synonyms":["Kurakon","I Got Married to the Girl I Hate Most in Class"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":3,"month":1,"year":2025},"status":"Finished Airing"},{"index":7,"id":56701,"mal_id":56701,"title":"Watashi no Shiawase na Kekkon 2nd Season","english":"My Happy Marriage Season 2","native":"わたしの幸せな結婚","synonyms":["My Blissful Marriage"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"day":6,"month":1,"year":2025},"status":"Finished Airing"},{"index":8,"id":55997,"mal_id":55997,"title":"Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu","english":"I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time","native":"ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います","synonyms":["Girumasu"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":11,"month":1,"year":2025},"status":"Finished Airing"},{"index":9,"id":59361,"mal_id":59361,"title":"Kono Kaisha ni Suki na Hito ga Imasu","english":"I Have a Crush at Work","native":"この会社に好きな人がいます","synonyms":["Can You Keep a Secret?"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":6,"month":1,"year":2025},"status":"Finished Airing"},{"index":10,"id":59144,"mal_id":59144,"title":"Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta","english":"Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest","native":"不遇職【鑑定士】が実は最強だった","synonyms":["The Unfavorable Job \"Appraiser\" Is Actually the Strongest","Fugukan"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":9,"month":1,"year":2025},"status":"Finished Airing"},{"index":11,"id":58271,"mal_id":58271,"title":"Honey Lemon Soda","english":"Honey Lemon Soda","native":"ハニーレモンソーダ","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":9,"month":1,"year":2025},"status":"Finished Airing"},{"index":12,"id":58853,"mal_id":58853,"title":"Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai","english":"Medaka Kuroiwa is Impervious to My Charms","native":"黒岩メダカに私の可愛いが通じない","synonyms":["Medakawa","My Charms Are Wasted On Kuroiwa Medaka","Kuroiwa Medaka is Proof Against My Cuteness."],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":7,"month":1,"year":2025},"status":"Finished Airing"},{"index":13,"id":58822,"mal_id":58822,"title":"Izure Saikyou no Renkinjutsushi?","english":"Possibly the Greatest Alchemist of All Time","native":"いずれ最強の錬金術師?","synonyms":["Someday Will I Be the Greatest Alchemist?"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":8,"month":1,"year":2025},"status":"Finished Airing"},{"index":14,"id":59349,"mal_id":59349,"title":"Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi","english":"Headhunted to Another World: From Salaryman to Big Four!","native":"サラリーマンが異世界に行ったら四天王になった話","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":6,"month":1,"year":2025},"status":"Finished Airing"},{"index":15,"id":59730,"mal_id":59730,"title":"A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu.","english":"I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!","native":"Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。","synonyms":["Aparida"],"format":"TV","episodes":24,"season":"WINTER","year":2025,"start_date":{"day":12,"month":1,"year":2025},"status":"Finished Airing"},{"index":16,"id":57719,"mal_id":57719,"title":"Akuyaku Reijou Tensei Ojisan","english":"From Bureaucrat to Villainess: Dad's Been Reincarnated!","native":"悪役令嬢転生おじさん","synonyms":["Middle-Aged Man's Noble Daughter Reincarnation","The Old Man Reincarnated as a Villainess"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":10,"month":1,"year":2025},"status":"Finished Airing"},{"index":17,"id":59002,"mal_id":59002,"title":"Hazure Skill \"Kinomi Master\": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite","english":"Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)","native":"外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~","synonyms":["Failure Skill \"Nut Master\": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You Would Normally Die)"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":7,"month":1,"year":2025},"status":"Finished Airing"},{"index":18,"id":53924,"mal_id":53924,"title":"Jibaku Shounen Hanako-kun 2","english":"Toilet-Bound Hanako-kun Season 2","native":"地縛少年花子くん2","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":12,"month":1,"year":2025},"status":"Finished Airing"},{"index":19,"id":59561,"mal_id":59561,"title":"Around 40 Otoko no Isekai Tsuuhan","english":"The Daily Life of a Middle-Aged Online Shopper in Another World","native":"アラフォー男の異世界通販","synonyms":["Arafoo Otoko no Isekai Tsuuhan Seikatsu","The Mail Order Life of a Man Around 40 in Another World"],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"day":9,"month":1,"year":2025},"status":"Finished Airing"},{"index":20,"id":58600,"mal_id":58600,"title":"Ameku Takao no Suiri Karte","english":"Ameku M.D.: Doctor Detective","native":"天久鷹央の推理カルテ","synonyms":["Ameku Takao's Detective Karte"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":2,"month":1,"year":2025},"status":"Finished Airing"},{"index":21,"id":57648,"mal_id":57648,"title":"Nihon e Youkoso Elf-san.","english":"Welcome to Japan, Ms. Elf!","native":"日本へようこそエルフさん。","synonyms":[],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":10,"month":1,"year":2025},"status":"Finished Airing"},{"index":22,"id":55318,"mal_id":55318,"title":"Medalist","english":null,"native":"メダリスト","synonyms":[],"format":"TV","episodes":13,"season":"WINTER","year":2025,"start_date":{"day":5,"month":1,"year":2025},"status":"Finished Airing"},{"index":23,"id":58437,"mal_id":58437,"title":"Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita","english":"I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic","native":"没落予定の貴族だけど、暇だったから魔法を極めてみた","synonyms":["I Am a Noble about to Be Ruined","but Reached the Summit of Magic Because I Had a Lot of Free Time."],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":7,"month":1,"year":2025},"status":"Finished Airing"},{"index":24,"id":59226,"mal_id":59226,"title":"Ao no Exorcist: Yosuga-hen","english":"Blue Exorcist: The Blue Night Saga","native":"青の祓魔師 終夜篇","synonyms":["Blue Exorcist Season 5"],"format":"TV","episodes":12,"season":"WINTER","year":2025,"start_date":{"day":5,"month":1,"year":2025},"status":"Finished Airing"}]}]} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2010-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2010-fall.json new file mode 100644 index 0000000..7db5822 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2010-fall.json @@ -0,0 +1,6579 @@ +{ + "year": 2010, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Бакуман." + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 9062, + "mal_id": 9062, + "title": "Angel Beats! Specials", + "english": "Angel Beats! Specials", + "native": "エンジェルビーツ 特別篇", + "synonyms": [ + "Angel Beats!: Stairway to Heaven", + "Angel Beats!: Hell's Kitchen" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 10067, + "mal_id": 10067, + "title": "Angel Beats!: Another Epilogue", + "english": null, + "native": "エンジェルビーツ! アナザーエピローグ", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 8460, + "mal_id": 8460, + "title": "Mirai Nikki OVA", + "english": null, + "native": "未来日記", + "synonyms": [ + "The Future Diary OVA", + "The Future Diary Pilot" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 8247, + "mal_id": 8247, + "title": "BLEACH: Jigoku-hen", + "english": "Bleach the Movie: Hell Verse", + "native": "BLEACH 地獄篇", + "synonyms": [ + "Bleach Movie 4", + "Bleach: The Hell Chapter", + "بليتش: قصيدة الجحيم" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II OVA", + "english": "Black Butler II OVA", + "native": "黒執事II OVA", + "synonyms": [ + "Welcome to the Phantomhive Family", + "Ciel in Wonderland", + "คนลึกไขปริศนาลับ ภาค 2 OVA", + "คนลึกไขปริศนาลับ II OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto!: The ANIMATION", + "english": "Koe de Oshigoto", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Koe de Oshigoto! The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono OVA", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの", + "synonyms": [ + "Sora no Otoshimono: Project Pink", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai", + "english": "OreImo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude, Where We Are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録Ⅱ", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 9062, + "mal_id": 9062, + "title": "Angel Beats! Specials", + "english": null, + "native": "エンジェルビーツ", + "synonyms": [ + "Angel Beats!: Stairway to Heaven", + "Angel Beats!: Hell's Kitchen" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Kuragehime" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 15, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 8460, + "mal_id": 8460, + "title": "Mirai Nikki", + "english": "The Future Diary OVA", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 10067, + "mal_id": 10067, + "title": "Angel Beats! Another Epilogue", + "english": null, + "native": "エンジェルビーツ! アナザーエピローグ", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 8247, + "mal_id": 8247, + "title": "Bleach Movie 4: Jigoku-hen", + "english": "Bleach the Movie: Hell Verse", + "native": "劇場版 BLEACH 地獄篇", + "synonyms": [ + "Bleach: The Hell Chapter" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [ + "Shinrei Tantei Yakumo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II Specials", + "english": "Black Butler II Specials", + "native": "黒執事II: シエル・イン・ワンダーランド", + "synonyms": [ + "Ciel in Wonderland", + "Welcome to the Phantomhive Family" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 8536, + "mal_id": 8536, + "title": "Fortune Arterial: Akai Yakusoku", + "english": null, + "native": "FORTUNE ARTERIAL 赤い約束", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 9, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto! The Animation", + "english": "Koe de Oshigoto!", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Working with Voice!" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai", + "english": "OreImo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Kuragehime" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 15, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai", + "english": "Oreimo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute", + "我的妹妹哪有这么可爱!", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi", + "Que sa volonté soit faite" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Бакуман." + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Бакуман." + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Бакуман." + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Бакуман." + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 8795, + "mal_id": 8795, + "title": "Panty & Stocking with Garterbelt", + "english": "Panty & Stocking with Garterbelt", + "native": "パンティ&ストッキングwithガーターベルト", + "synonyms": [ + "PanSto", + "PSG", + "P&SWG" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude, Where We Are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録Ⅱ", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II Specials", + "english": "Black Butler II Specials", + "native": "黒執事II: シエル・イン・ワンダーランド", + "synonyms": [ + "Ciel in Wonderland", + "Welcome to the Phantomhive Family" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 24, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude, Where We Are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録II", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2", + "魔法禁书目录第二季", + "魔法禁书目录 2", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2", + "Cấm thư ma thuật Index II", + "Daftar Sihir Terlarang II" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude, Where We Are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude Where We are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection", + "缘之空" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8536, + "mal_id": 8536, + "title": "Fortune Arterial: Akai Yakusoku", + "english": null, + "native": "FORTUNE ARTERIAL 赤い約束", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 9, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To Love Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai", + "english": "OreImo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Kuragehime" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 15, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai", + "english": "OreImo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Princesa Água Viva" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9062, + "mal_id": 9062, + "title": "Angel Beats! Specials", + "english": "Angel Beats! Specials", + "native": "エンジェルビーツ 特別篇", + "synonyms": [ + "Angel Beats!: Stairway to Heaven", + "Angel Beats!: Hell's Kitchen" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9062, + "mal_id": 9062, + "title": "Angel Beats! Specials", + "english": null, + "native": "エンジェルビーツ", + "synonyms": [ + "Angel Beats!: Stairway to Heaven", + "Angel Beats!: Hell's Kitchen" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9062, + "mal_id": 9062, + "title": "Angel Beats! Specials", + "english": "Angel Beats! Specials", + "native": "エンジェルビーツ 特別篇", + "synonyms": [ + "Angel Beats!: Stairway to Heaven", + "Angel Beats!: Hell's Kitchen" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8861, + "mal_id": 8861, + "title": "Yosuga no Sora", + "english": "Yosuga no Sora: In Solitude, Where We Are Least Alone", + "native": "ヨスガノソラ", + "synonyms": [ + "Sky of Connection" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono: Forte", + "english": "Heaven's Lost Property: Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10067, + "mal_id": 10067, + "title": "Angel Beats!: Another Epilogue", + "english": null, + "native": "エンジェルビーツ! アナザーエピローグ", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10067, + "mal_id": 10067, + "title": "Angel Beats! Another Epilogue", + "english": null, + "native": "エンジェルビーツ! アナザーエピローグ", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [ + "Shinrei Tantei Yakumo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9051, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 8460, + "mal_id": 8460, + "title": "Mirai Nikki OVA", + "english": null, + "native": "未来日記", + "synonyms": [ + "The Future Diary OVA", + "The Future Diary Pilot" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8460, + "mal_id": 8460, + "title": "Mirai Nikki", + "english": "The Future Diary OVA", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.9116, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 8460, + "mal_id": 8460, + "title": "Mirai Nikki OVA", + "english": null, + "native": "未来日記", + "synonyms": [ + "The Future Diary OVA", + "The Future Diary Pilot" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 8424, + "mal_id": 8424, + "title": "MM!", + "english": "MM!", + "native": "えむえむっ!", + "synonyms": [ + "MM! Group", + "Emu Emu!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 8247, + "mal_id": 8247, + "title": "BLEACH: Jigoku-hen", + "english": "Bleach the Movie: Hell Verse", + "native": "BLEACH 地獄篇", + "synonyms": [ + "Bleach Movie 4", + "Bleach: The Hell Chapter", + "بليتش: قصيدة الجحيم" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 8247, + "mal_id": 8247, + "title": "Bleach Movie 4: Jigoku-hen", + "english": "Bleach the Movie: Hell Verse", + "native": "劇場版 BLEACH 地獄篇", + "synonyms": [ + "Bleach: The Hell Chapter" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 8247, + "mal_id": 8247, + "title": "BLEACH: Jigoku-hen", + "english": "Bleach the Movie: Hell Verse", + "native": "BLEACH 地獄篇", + "synonyms": [ + "Bleach Movie 4", + "Bleach: The Hell Chapter", + "بليتش: قصيدة الجحيم" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録Ⅱ", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録Ⅱ", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザ ブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7674, + "mal_id": 7674, + "title": "Bakuman.", + "english": "Bakuman.", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Kuragehime" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 15, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 9074, + "mal_id": 9074, + "title": "Arakawa Under the Bridge x Bridge", + "english": "Arakawa Under the Bridge x Bridge", + "native": "荒川アンダー ザブリッジ×ブリッジ", + "synonyms": [ + "Arakawa Under the Bridge*2", + "Arakawa Under the Bridge x2", + "Arakawa Under the Bridge 2nd season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9107, + "mal_id": 9107, + "title": "Pocket Monsters Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pokemon: Best Wishes!", + "Black & White", + "Pokemon: Black & White", + "Pokemon: Bianco e Nero" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8536, + "mal_id": 8536, + "title": "Fortune Arterial: Akai Yakusoku", + "english": null, + "native": "FORTUNE ARTERIAL 赤い約束", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 9, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8934, + "mal_id": 8934, + "title": "STAR DRIVER: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 8277, + "mal_id": 8277, + "title": "Hyakka Ryouran: Samurai Girls", + "english": "Samurai Girls", + "native": "百花繚乱 サムライガールズ", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 4, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8769, + "mal_id": 8769, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai", + "english": "OreImo", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 14, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8726, + "mal_id": 8726, + "title": "Soredemo Machi wa Mawatteiru", + "english": "And Yet The Town Moves", + "native": "それでも町は廻っている", + "synonyms": [ + "SoreMachi", + "それ町" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 8129, + "mal_id": 8129, + "title": "Kuragehime", + "english": "Princess Jellyfish", + "native": "海月姫", + "synonyms": [ + "Kuragehime" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 15, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [ + "Shinrei Tantei Yakumo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8536, + "mal_id": 8536, + "title": "Fortune Arterial: Akai Yakusoku", + "english": null, + "native": "FORTUNE ARTERIAL 赤い約束", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 9, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II OVA", + "english": "Black Butler II OVA", + "native": "黒執事II OVA", + "synonyms": [ + "Welcome to the Phantomhive Family", + "Ciel in Wonderland", + "คนลึกไขปริศนาลับ ภาค 2 OVA", + "คนลึกไขปริศนาลับ II OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II Specials", + "english": "Black Butler II Specials", + "native": "黒執事II: シエル・イン・ワンダーランド", + "synonyms": [ + "Ciel in Wonderland", + "Welcome to the Phantomhive Family" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II OVA", + "english": "Black Butler II OVA", + "native": "黒執事II OVA", + "synonyms": [ + "Welcome to the Phantomhive Family", + "Ciel in Wonderland", + "คนลึกไขปริศนาลับ ภาค 2 OVA", + "คนลึกไขปริศนาลับ II OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9181, + "mal_id": 9181, + "title": "Motto To LOVE-Ru", + "english": "Motto To LOVE Ru", + "native": "もっと To LOVEる -とらぶる-", + "synonyms": [ + "Motto To-Love-Ru", + "More Trouble", + "More ToLoveRu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 6, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 0.8935, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II OVA", + "english": "Black Butler II OVA", + "native": "黒執事II OVA", + "synonyms": [ + "Welcome to the Phantomhive Family", + "Ciel in Wonderland", + "คนลึกไขปริศนาลับ ภาค 2 OVA", + "คนลึกไขปริศนาลับ II OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9136, + "mal_id": 9136, + "title": "Kuroshitsuji II OVA", + "english": "Black Butler II OVA", + "native": "黒執事II OVA", + "synonyms": [ + "Welcome to the Phantomhive Family", + "Ciel in Wonderland", + "คนลึกไขปริศนาลับ ภาค 2 OVA", + "คนลึกไขปริศนาลับ II OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto!: The ANIMATION", + "english": "Koe de Oshigoto", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Koe de Oshigoto! The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto! The Animation", + "english": "Koe de Oshigoto!", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Working with Voice!" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto!: The ANIMATION", + "english": "Koe de Oshigoto", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Koe de Oshigoto! The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.8878, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto!: The ANIMATION", + "english": "Koe de Oshigoto", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Koe de Oshigoto! The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8876, + "mal_id": 8876, + "title": "Koe de Oshigoto!: The ANIMATION", + "english": "Koe de Oshigoto", + "native": "こえでおしごと! The ANIMATION", + "synonyms": [ + "Koe de Oshigoto! The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 9107, + "mal_id": 9107, + "title": "Pokemon Best Wishes!", + "english": "Pokémon: Black & White", + "native": "ポケットモンスターベストウイッシュ", + "synonyms": [ + "Pocket Monsters: Best Wishes!", + "Black & White", + "BW: Rival Destinies" + ], + "format": "TV", + "episodes": 84, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 23, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8536, + "mal_id": 8536, + "title": "Fortune Arterial: Akai Yakusoku", + "english": null, + "native": "FORTUNE ARTERIAL 赤い約束", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 9, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 7662, + "mal_id": 7662, + "title": "Shinrei Tantei Yakumo", + "english": "Psychic Detective Yakumo", + "native": "心霊探偵 八雲", + "synonyms": [ + "Shinrei Tantei Yakumo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8934, + "mal_id": 8934, + "title": "Star Driver: Kagayaki no Takuto", + "english": "Star Driver", + "native": "STAR DRIVER 輝きのタクト", + "synonyms": [ + "STAR DRIVER: Shining Takuto" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 3, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 8476, + "mal_id": 8476, + "title": "Otome Youkai Zakuro", + "english": "Zakuro", + "native": "おとめ妖怪 ざくろ", + "synonyms": [ + "Otome Yokai Zakuro", + "Girl Demon Zakuro" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8937, + "mal_id": 8937, + "title": "Toaru Majutsu no Index II", + "english": "A Certain Magical Index II", + "native": "とある魔術の禁書目録Ⅱ", + "synonyms": [ + "Toaru Majutsu no Index 2", + "Toaru Majutsu no Kinsho Mokuroku 2" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 1.3259, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono OVA", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの", + "synonyms": [ + "Sora no Otoshimono: Project Pink", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8407, + "mal_id": 8407, + "title": "Sora no Otoshimono Forte", + "english": "Heaven's Lost Property Forte", + "native": "そらのおとしものf(フォルテ)", + "synonyms": [ + "Sora no Otoshimono: f", + "Lost Property of the Sky 2", + "Misplaced by Heaven 2", + "Heaven's Lost Property 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 2, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 1, + "score": 0.92, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono OVA", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの", + "synonyms": [ + "Sora no Otoshimono: Project Pink", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 8525, + "mal_id": 8525, + "title": "Kami nomi zo Shiru Sekai", + "english": "The World God Only Knows", + "native": "神のみぞ知るセカイ", + "synonyms": [ + "Kaminomi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 7, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.8722, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono OVA", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの", + "synonyms": [ + "Sora no Otoshimono: Project Pink", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8557, + "mal_id": 8557, + "title": "Shinryaku! Ika Musume", + "english": "The Squid Girl", + "native": "侵略!イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 5, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.8643, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono OVA", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの", + "synonyms": [ + "Sora no Otoshimono: Project Pink", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2010, + "start_date": { + "year": 2010, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 8449, + "mal_id": 8449, + "title": "Togainu no Chi", + "english": "Togainu no Chi", + "native": "咎狗の血", + "synonyms": [ + "Blood of the Reprimanded Dog" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2010, + "start_date": { + "day": 8, + "month": 10, + "year": 2010 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2010-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2010-spring.json new file mode 100644 index 0000000..0ce0743 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2010-spring.json @@ -0,0 +1,5700 @@ +{ + "year": 2010, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!", + "synonyms": [ + "エンジェルビーツ", + "פעימות מלאך", + "الملاك الوحش", + "Ангельские ритмы" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 7593, + "mal_id": 7593, + "title": "kiss×sis (TV)", + "english": null, + "native": "kiss×sis (TV)", + "synonyms": [ + "キスシス", + "kiss x sis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 7472, + "mal_id": 7472, + "title": "Gintama: Shinyaku Benizakura-hen", + "english": "Gintama - The Movie", + "native": "銀魂 新訳紅桜篇", + "synonyms": [ + "Gintama: Benizakura Arc - A New Retelling", + "Gintama Movie: Crimson Sakura Chapter New Edition", + "Gintama: Shin-yaku Benizakura-hen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 4106, + "mal_id": 4106, + "title": "TRIGUN: Badlands Rumble", + "english": "Trigun: Badlands Rumble", + "native": "TRIGUN Badlands Rumble", + "synonyms": [ + "劇場版トライガン", + "Trigun Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 7465, + "mal_id": 7465, + "title": "Eve no Jikan Movie", + "english": "Time of Eve: The Movie", + "native": "イヴの時間 劇場版", + "synonyms": [ + "Eve no Jikan - Are you enjoying the time of EVE ? Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 3, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 6637, + "mal_id": 6637, + "title": "Higashi no Eden Movie II: Paradise Lost", + "english": "Eden of the East the Movie II: Paradise Lost", + "native": "東のエデン 劇場版II Paradise Lost", + "synonyms": [ + "Higashi no Eden: Gekijouban II Paradise Lost" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 3, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 8740, + "mal_id": 8740, + "title": "ONE PIECE FILM: STRONG WORLD - EPISODE:0", + "english": null, + "native": "ONE PIECE FILM STRONG WORLD EPISODE:0", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 8479, + "mal_id": 8479, + "title": "Hetalia World Series", + "english": "Hetalia World Series", + "native": "ヘタリア World Series", + "synonyms": [], + "format": "ONA", + "episodes": 48, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 3, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 6408, + "mal_id": 6408, + "title": "Bungaku Shoujo", + "english": null, + "native": "文学少女", + "synonyms": [ + "Book Girl", + "Literature Girl", + "Book Girl: La chica de los libros", + "Book Girl, La Chica que Devoraba Libros", + "Bungaku Shoujo - O Filme", + "Garota dos Livros: O Filme", + "Буквоежка" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 7661, + "mal_id": 7661, + "title": "GIANT KILLING", + "english": "Giant Killing", + "native": "GIANT KILLING", + "synonyms": [ + "ジャイアントキリング" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!(エンジェルビーツ!)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 7593, + "mal_id": 7593, + "title": "Kiss x Sis (TV)", + "english": null, + "native": "キスシス", + "synonyms": [ + "Kiss x Sis (2010)", + "Kissxsis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "Rainbow: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW 二舎六房の七人", + "synonyms": [ + "Rainbow: Criminal Seven of Compound Two Cell Six" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 4901, + "mal_id": 4901, + "title": "Black Lagoon: Roberta's Blood Trail", + "english": "Black Lagoon: Roberta's Blood Trail", + "native": "BLACK LAGOON Roberta's Blood Trail", + "synonyms": [ + "Black Lagoon 3" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 6, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 7472, + "mal_id": 7472, + "title": "Gintama Movie 1: Shinyaku Benizakura-hen", + "english": "Gintama: The Movie", + "native": "劇場版 銀魂 新訳紅桜篇", + "synonyms": [ + "Gintama: Benizakura Arc - A New Retelling", + "Gintama Movie: Crimson Sakura Chapter New Edition", + "Gintama: Shin-yaku Benizakura-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 4106, + "mal_id": 4106, + "title": "Trigun: Badlands Rumble", + "english": "Trigun: Badlands Rumble", + "native": "トライガン", + "synonyms": [ + "Trigun the Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": "Stray Cats Overrun!", + "native": "迷い猫オーバーラン!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 6, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 8740, + "mal_id": 8740, + "title": "One Piece Film: Strong World Episode 0", + "english": null, + "native": "ワンピース フィルム ストロングワールド エピソードゼロ", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade Movie 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 5, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 6864, + "mal_id": 6864, + "title": "xxxHOLiC Rou", + "english": null, + "native": "xxxHOLiC 籠", + "synonyms": [ + "xxxHOLiC Rou: Adayume" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou", + "Detective Conan Special: Secret Birth of Kaito Kid", + "Kaitou Kid Tanjou no Himitsu" + ], + "format": "TV Special", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 7661, + "mal_id": 7661, + "title": "Giant Killing", + "english": "Giant Killing", + "native": "ジャイアントキリング", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 8634, + "mal_id": 8634, + "title": "Koisuru Boukun", + "english": "The Tyrant Falls In Love", + "native": "恋する暴君", + "synonyms": [ + "Koi Suru Boukun", + "Koisuru Bokun" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 6, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 6408, + "mal_id": 6408, + "title": "\"Bungaku Shoujo\" Movie", + "english": null, + "native": "劇場版“文学少女”", + "synonyms": [ + "Book Girl", + "Literature Girl" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 5, + "year": 2010 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!", + "synonyms": [ + "エンジェルビーツ", + "פעימות מלאך", + "الملاك الوحش", + "Ангельские ритмы" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!(エンジェルビーツ!)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!", + "synonyms": [ + "エンジェルビーツ", + "פעימות מלאך", + "الملاك الوحش", + "Ангельские ритмы" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 6547, + "mal_id": 6547, + "title": "Angel Beats!", + "english": "Angel Beats!", + "native": "Angel Beats!", + "synonyms": [ + "エンジェルビーツ", + "פעימות מלאך", + "الملاك الوحش", + "Ангельские ритмы" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid-Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Kaicho wa Maidsama", + "Kaichou wa Meido Sama", + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 7593, + "mal_id": 7593, + "title": "Kiss x Sis (TV)", + "english": null, + "native": "キスシス", + "synonyms": [ + "Kiss x Sis (2010)", + "Kissxsis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 7593, + "mal_id": 7593, + "title": "Kiss x Sis (TV)", + "english": null, + "native": "キスシス", + "synonyms": [ + "Kiss x Sis (2010)", + "Kissxsis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-ON!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season", + "K on 2", + "케이온!!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei", + "四叠半神话大系", + "4½ Tatami Mythological Chronicles" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "Rainbow: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW 二舎六房の七人", + "synonyms": [ + "Rainbow: Criminal Seven of Compound Two Cell Six" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 7593, + "mal_id": 7593, + "title": "kiss×sis (TV)", + "english": null, + "native": "kiss×sis (TV)", + "synonyms": [ + "キスシス", + "kiss x sis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 7593, + "mal_id": 7593, + "title": "Kiss x Sis (TV)", + "english": null, + "native": "キスシス", + "synonyms": [ + "Kiss x Sis (2010)", + "Kissxsis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 7593, + "mal_id": 7593, + "title": "kiss×sis (TV)", + "english": null, + "native": "kiss×sis (TV)", + "synonyms": [ + "キスシス", + "kiss x sis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 12, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 7593, + "mal_id": 7593, + "title": "kiss×sis (TV)", + "english": null, + "native": "kiss×sis (TV)", + "synonyms": [ + "キスシス", + "kiss x sis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 7593, + "mal_id": 7593, + "title": "kiss×sis (TV)", + "english": null, + "native": "kiss×sis (TV)", + "synonyms": [ + "キスシス", + "kiss x sis" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao", + "Rei Demônio Daimao", + "El Gran Rey Demonio" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "Rainbow: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW 二舎六房の七人", + "synonyms": [ + "Rainbow: Criminal Seven of Compound Two Cell Six" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "WORKING!!", + "english": "Wagnaria!!", + "native": "WORKING!!", + "synonyms": [ + "ワーキング!!", + "워킹!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 7661, + "mal_id": 7661, + "title": "Giant Killing", + "english": "Giant Killing", + "native": "ジャイアントキリング", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "Rainbow: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW 二舎六房の七人", + "synonyms": [ + "Rainbow: Criminal Seven of Compound Two Cell Six" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "RAINBOW: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW -二舎六房の七人-", + "synonyms": [ + "Rainbow: The Seven From Compound Two, Cell Six", + "Rainbow, os sete do bloco 2, cela 6" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 15, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 12, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 21, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 7661, + "mal_id": 7661, + "title": "Giant Killing", + "english": "Giant Killing", + "native": "ジャイアントキリング", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7817, + "mal_id": 7817, + "title": "B Gata H Kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [ + "Yamada ma première fois" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7472, + "mal_id": 7472, + "title": "Gintama: Shinyaku Benizakura-hen", + "english": "Gintama - The Movie", + "native": "銀魂 新訳紅桜篇", + "synonyms": [ + "Gintama: Benizakura Arc - A New Retelling", + "Gintama Movie: Crimson Sakura Chapter New Edition", + "Gintama: Shin-yaku Benizakura-hen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 7472, + "mal_id": 7472, + "title": "Gintama Movie 1: Shinyaku Benizakura-hen", + "english": "Gintama: The Movie", + "native": "劇場版 銀魂 新訳紅桜篇", + "synonyms": [ + "Gintama: Benizakura Arc - A New Retelling", + "Gintama Movie: Crimson Sakura Chapter New Edition", + "Gintama: Shin-yaku Benizakura-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7472, + "mal_id": 7472, + "title": "Gintama: Shinyaku Benizakura-hen", + "english": "Gintama - The Movie", + "native": "銀魂 新訳紅桜篇", + "synonyms": [ + "Gintama: Benizakura Arc - A New Retelling", + "Gintama Movie: Crimson Sakura Chapter New Edition", + "Gintama: Shin-yaku Benizakura-hen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 4106, + "mal_id": 4106, + "title": "TRIGUN: Badlands Rumble", + "english": "Trigun: Badlands Rumble", + "native": "TRIGUN Badlands Rumble", + "synonyms": [ + "劇場版トライガン", + "Trigun Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 4106, + "mal_id": 4106, + "title": "Trigun: Badlands Rumble", + "english": "Trigun: Badlands Rumble", + "native": "トライガン", + "synonyms": [ + "Trigun the Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.9366, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 7465, + "mal_id": 7465, + "title": "Eve no Jikan Movie", + "english": "Time of Eve: The Movie", + "native": "イヴの時間 劇場版", + "synonyms": [ + "Eve no Jikan - Are you enjoying the time of EVE ? Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 3, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6637, + "mal_id": 6637, + "title": "Higashi no Eden Movie II: Paradise Lost", + "english": "Eden of the East the Movie II: Paradise Lost", + "native": "東のエデン 劇場版II Paradise Lost", + "synonyms": [ + "Higashi no Eden: Gekijouban II Paradise Lost" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 3, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": "Stray Cats Overrun!", + "native": "迷い猫オーバーラン!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 6, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 5337, + "mal_id": 5337, + "title": "Bakugan Battle Brawlers: New Vestroia", + "english": "Bakugan: New Vestroia", + "native": "爆丸バトルブローラーズ New Vestroia", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": null, + "native": "迷い猫オーバーラン!", + "synonyms": [ + "Stray Cats Overrun!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 7590, + "mal_id": 7590, + "title": "Mayoi Neko Overrun!", + "english": "Stray Cats Overrun!", + "native": "迷い猫オーバーラン!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 6, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki", + "Hakuouki Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 8410, + "mal_id": 8410, + "title": "Metal Fight Beyblade: Baku", + "english": "Beyblade: Metal Masters", + "native": "メタルファイト ベイブレード~爆~", + "synonyms": [ + "Metal Fight Beyblade: Explosion", + "Metal Fight Beyblade 2", + "Beyblade: Metal Fusion 2" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 8740, + "mal_id": 8740, + "title": "ONE PIECE FILM: STRONG WORLD - EPISODE:0", + "english": null, + "native": "ONE PIECE FILM STRONG WORLD EPISODE:0", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8740, + "mal_id": 8740, + "title": "One Piece Film: Strong World Episode 0", + "english": null, + "native": "ワンピース フィルム ストロングワールド エピソードゼロ", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou", + "Detective Conan Special: Secret Birth of Kaito Kid", + "Kaitou Kid Tanjou no Himitsu" + ], + "format": "TV Special", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6895, + "mal_id": 6895, + "title": "Hakuouki", + "english": "Hakuoki ~Demon of the Fleeting Blossom~", + "native": "薄桜鬼", + "synonyms": [ + "Hakuoki,Hakuouki: Shinsengumi Kitan" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7054, + "mal_id": 7054, + "title": "Kaichou wa Maid-sama!", + "english": "Maid Sama!", + "native": "会長はメイド様!", + "synonyms": [ + "Class President is a Maid!" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7791, + "mal_id": 7791, + "title": "K-On!!", + "english": "K-ON! Season 2", + "native": "けいおん!!", + "synonyms": [ + "Keion 2", + "K-On!! 2nd Season" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8310, + "mal_id": 8310, + "title": "Magic Kaito", + "english": null, + "native": "まじっく快斗", + "synonyms": [ + "Kaito Kid", + "Majikku Kaito", + "Kaitou Kid", + "Magic Kaitou" + ], + "format": "SPECIAL", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade Movie 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 5, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9373, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 9, + "score": 0.8865, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 6772, + "mal_id": 6772, + "title": "Break Blade 1: Kakusei no Toki", + "english": "Broken Blade", + "native": "ブレイク ブレイド 覚醒ノ刻", + "synonyms": [ + "Breaker Blade", + "Break Blade 1: The Time of Awakening" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7647, + "mal_id": 7647, + "title": "Arakawa Under the Bridge", + "english": "Arakawa Under the Bridge", + "native": "荒川アンダー ザ ブリッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 5, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 12, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6114, + "mal_id": 6114, + "title": "Rainbow: Nisha Rokubou no Shichinin", + "english": "Rainbow", + "native": "RAINBOW 二舎六房の七人", + "synonyms": [ + "Rainbow: Criminal Seven of Compound Two Cell Six" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 7, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7785, + "mal_id": 7785, + "title": "Yojouhan Shinwa Taikei", + "english": "The Tatami Galaxy", + "native": "四畳半神話大系", + "synonyms": [ + "Yojo-Han Shinwa Taikei", + "Yojou-Han Shinwa Taikei", + "Yojohan Shinwa Taikei" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 23, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 7058, + "mal_id": 7058, + "title": "Uragiri wa Boku no Namae wo Shitteiru", + "english": "The Betrayal Knows My Name", + "native": "裏切りは僕の名前を知っている", + "synonyms": [ + "Uraboku" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 6408, + "mal_id": 6408, + "title": "Bungaku Shoujo", + "english": null, + "native": "文学少女", + "synonyms": [ + "Book Girl", + "Literature Girl", + "Book Girl: La chica de los libros", + "Book Girl, La Chica que Devoraba Libros", + "Bungaku Shoujo - O Filme", + "Garota dos Livros: O Filme", + "Буквоежка" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 6408, + "mal_id": 6408, + "title": "\"Bungaku Shoujo\" Movie", + "english": null, + "native": "劇場版“文学少女”", + "synonyms": [ + "Book Girl", + "Literature Girl" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 5, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 6408, + "mal_id": 6408, + "title": "Bungaku Shoujo", + "english": null, + "native": "文学少女", + "synonyms": [ + "Book Girl", + "Literature Girl", + "Book Girl: La chica de los libros", + "Book Girl, La Chica que Devoraba Libros", + "Bungaku Shoujo - O Filme", + "Garota dos Livros: O Filme", + "Буквоежка" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 5, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 7588, + "mal_id": 7588, + "title": "Saraiya Goyou", + "english": "House of Five Leaves", + "native": "さらい屋 五葉", + "synonyms": [ + "Sarai-ya Goyou" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 16, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7661, + "mal_id": 7661, + "title": "GIANT KILLING", + "english": "Giant Killing", + "native": "GIANT KILLING", + "synonyms": [ + "ジャイアントキリング" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 7661, + "mal_id": 7661, + "title": "Giant Killing", + "english": "Giant Killing", + "native": "ジャイアントキリング", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7661, + "mal_id": 7661, + "title": "GIANT KILLING", + "english": "Giant Killing", + "native": "GIANT KILLING", + "synonyms": [ + "ジャイアントキリング" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7817, + "mal_id": 7817, + "title": "B-gata H-kei", + "english": "Yamada's First Time: B Gata H Kei", + "native": "B型H系", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 2, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7661, + "mal_id": 7661, + "title": "GIANT KILLING", + "english": "Giant Killing", + "native": "GIANT KILLING", + "synonyms": [ + "ジャイアントキリング" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6956, + "mal_id": 6956, + "title": "Working!!", + "english": "Wagnaria!!", + "native": "WORKING [ワーキング]!!", + "synonyms": [ + "Working!!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 4, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 7661, + "mal_id": 7661, + "title": "GIANT KILLING", + "english": "Giant Killing", + "native": "GIANT KILLING", + "synonyms": [ + "ジャイアントキリング" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2010, + "start_date": { + "year": 2010, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 7088, + "mal_id": 7088, + "title": "Ichiban Ushiro no Daimaou", + "english": "Demon King Daimao", + "native": "いちばんうしろの大魔王", + "synonyms": [ + "Ichiban Ushiro no Dai Mao" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2010, + "start_date": { + "day": 3, + "month": 4, + "year": 2010 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2010-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2010-summer.json new file mode 100644 index 0000000..a8f49e1 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2010-summer.json @@ -0,0 +1,5334 @@ +{ + "year": 2010, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", + "english": "High School of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "HOTD", + "HSOTD", + "High School of the Dead: Apocalipsis en el Instituto" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [ + "圣诞之吻SS", + "아마가미 SS", + "Амагами СС" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 4901, + "mal_id": 4901, + "title": "BLACK LAGOON: Roberta's Blood Trail", + "english": "Black Lagoon: Roberta's Blood Trail", + "native": "BLACK LAGOON Roberta's Blood Trail", + "synonyms": [ + "Black Lagoon 3" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 8142, + "mal_id": 8142, + "title": "Colorful", + "english": "Colorful ~ The Motion Picture", + "native": "カラフル", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 8, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 8246, + "mal_id": 8246, + "title": "NARUTO: Shippuuden - The Lost Tower", + "english": "Naruto Shippuden the Movie: The Lost Tower", + "native": "劇場版 NARUTO -ナルト- 疾風伝 ザ・ロストタワー", + "synonyms": [ + "Naruto Movie 7", + "Gekijouban Naruto Shippuuden: The Lost Tower", + "Naruto Shippūden la película: La torre perdida", + "Naruto Shippuden Movie 04: La torre perduta" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-san and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 8408, + "mal_id": 8408, + "title": "Durarara!! Specials", + "english": null, + "native": "デュラララ!!", + "synonyms": [ + "Durarara!! Episode 12.5", + "Durarara!! Episode 25", + "Dhurarara!!", + "Dyurarara!!" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 8, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター (OVA)", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": null, + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 7695, + "mal_id": 7695, + "title": "Pocket Monsters Diamond & Pearl: Genei no Hasha Zoroark", + "english": "Pokémon: Zoroark—Master of Illusions", + "native": "ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク", + "synonyms": [ + "Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark", + "Pokemon Movie 13", + "Pokémon: Zoroark, Illusjonens mester", + "Pokémon: Zoroark, el maestro de ilusiones", + "Pokémon: Zoroark – Illuusioiden mestari", + "Pokémon: Zoroark, mistrz iluzji", + "Pokémon 13: Zoroark - Meester der Illusie", + "Pokémon Zororark: illusionernas mästare" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 10298, + "mal_id": 10298, + "title": "Kaichou wa Maid-sama!: Goshujin-sama to Asonjao♥", + "english": "Maid-Sama! LaLa Special", + "native": "会長はメイド様! ご主人様と遊んじゃお♥", + "synonyms": [ + "Kaichou wa Maid-sama LaLa Special", + "Kaicho wa Maidsama LaLa Special", + "Kaichou wa Meido Sama LaLa Special", + "Class President is a Maid! LaLa Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki Sora", + "native": "あきそら~夢の中~", + "synonyms": [ + "Akisora: Yume no Naka", + "Aki-Sora: In a Dream" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 8768, + "mal_id": 8768, + "title": "Hiyokoi", + "english": null, + "native": "ひよ恋", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 10659, + "mal_id": 10659, + "title": "NARUTO: Soyokazeden - Naruto to Mashin to Mitsu no Onegai Dattebayo!!", + "english": null, + "native": "劇場版 NARUTO -ナルト- そよかぜ伝 ナルトと魔神と3つのお願いだってばよ!!", + "synonyms": [ + "Gekijouban Naruto Soyokazeden: Naruto to Mashin to Mitsu no Onegai Dattebayo!!", + "Naruto: Gentle Breeze Chronicles the Film: Naruto", + "the Genie", + "and the Three Wishes Dattebayo!!" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 9063, + "mal_id": 9063, + "title": "Toaru Kagaku no Railgun: Entenka no Satsuei Model mo Raku ja Arimasen wa ne.", + "english": null, + "native": "とある科学の超電磁砲 炎天下の撮影モデルも楽じゃありませんわね.", + "synonyms": [ + "Toaru Beach no Tokuten Eizo", + "Toaru Kagaku no Railgun Episode 13", + "A Certain Scientific Railgun Episode 13", + "A Certain Scientific Railgun: Being a Photo Shoot Model Under the Blazing Sun Isn't Easy, Is It?" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 8246, + "mal_id": 8246, + "title": "Naruto: Shippuuden Movie 4 - The Lost Tower", + "english": "Naruto Shippuden the Movie 4: The Lost Tower", + "native": "劇場版 NARUTO-ナルト-疾風伝 ザ・ロストタワー", + "synonyms": [ + "Naruto Movie 7", + "Gekijouban Naruto Shippuuden: The Lost Tower" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": "Sekirei: Pure Engagement", + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 8142, + "mal_id": 8142, + "title": "Colorful (Movie)", + "english": "Colorful: The Motion Picture", + "native": "カラフル", + "synonyms": [ + "Colourful" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 8, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 8408, + "mal_id": 8408, + "title": "Durarara!! Specials", + "english": "Durarara!! Specials", + "native": "デュラララ!!", + "synonyms": [ + "Durarara!! Episode 12.5", + "Durarara!! Episode 25", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!! OVA" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 8, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": "Mitsudomoe", + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 3, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 7858, + "mal_id": 7858, + "title": "Sora no Otoshimono: Project Pink", + "english": "Heaven's Lost Property OVA", + "native": "そらのおとしもの プロジェクト桃源郷[ピンク]", + "synonyms": [ + "Sora no Otoshimono OVA", + "Sora no Otoshimono Special", + "Lost Property of the Sky OVA", + "Misplaced by Heaven OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 10298, + "mal_id": 10298, + "title": "Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥", + "english": "Maid Sama! Play with Your Husband ♥", + "native": "会長はメイド様! ご主人様と遊んじゃお♥", + "synonyms": [ + "Kaichou wa Maid-sama LaLa Special", + "Kaicho wa Maidsama LaLa Special", + "Kaichou wa Meido Sama LaLa Special", + "Class President is a Maid! LaLa Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 8768, + "mal_id": 8768, + "title": "Hiyokoi", + "english": null, + "native": "ひよ恋", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 8, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki-Sora: In a Dream", + "native": "あきそら~夢の中~", + "synonyms": [ + "Aki-Sora: Yume no Naka" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 7695, + "mal_id": 7695, + "title": "Pokemon Movie 13: Genei no Hasha Zoroark", + "english": "Pokémon: Zoroark: Master of Illusions", + "native": "ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク", + "synonyms": [ + "Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark", + "Pokemon Diamond & Pearl: Genei no Hasha Zoroark" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 6634, + "mal_id": 6634, + "title": "Sengoku Basara Ni", + "english": "Sengoku Basara: Samurai Kings 2", + "native": "戦国BASARA 弐", + "synonyms": [ + "Sengoku Basara Two", + "Sengoku Basara 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 9047, + "mal_id": 9047, + "title": "Toaru Kagaku no Railgun: Misaka-san wa Ima Chuumoku no Mato desu kara", + "english": "A Certain Scientific Railgun OVA: Since Misaka-san is the Center of Attention Right Now...", + "native": "とある科学の超電磁砲 御坂さんはいま注目の的ですから", + "synonyms": [ + "Toaru Kagaku no Railgun OVA", + "Toaru Kagaku no Choudenjihou OVA", + "A Certain Scientific Railgun OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", + "english": "High School of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "HOTD", + "HSOTD", + "High School of the Dead: Apocalipsis en el Instituto" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", + "english": "High School of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "HOTD", + "HSOTD", + "High School of the Dead: Apocalipsis en el Instituto" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", + "english": "High School of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "HOTD", + "HSOTD", + "High School of the Dead: Apocalipsis en el Instituto" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD", + "english": "High School of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "HOTD", + "HSOTD", + "High School of the Dead: Apocalipsis en el Instituto" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": "Sekirei: Pure Engagement", + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 17, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": "Mitsudomoe", + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 3, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Seitokai Yakuindomo", + "native": "生徒会役員共", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 7711, + "mal_id": 7711, + "title": "Karigurashi no Arrietty", + "english": "The Secret World of Arrietty", + "native": "借りぐらしのアリエッティ", + "synonyms": [ + "Karigurashi no Arrietti", + "The Borrower Arrietty", + "Arrietty: Le Petit Monde des Chapardeurs", + "Arrietty y el Mundo de los Diminutos", + "O Mundo dos Pequeninos", + "Arrietty", + "Tajemniczy świat Arrietty", + "العالم السري لآريتي", + "Arrietty - Die wundersame Welt der Borger", + "Arriettas hemmelige verden", + "Arrietty - Il mondo segreto sotto il pavimento", + "Lånaren Arrietty" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 8, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2", + "คนลึกไขปริศนาลับ ภาค 2", + "คนลึกไขปริศนาลับ II", + "Hắc quản gia 2", + "黑执事 第2季", + "黑執事 第2季", + "Hắc Quản Gia – Phần 2", + "흑집사 2기", + "Diácono Negro temporada 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": "Sekirei: Pure Engagement", + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [ + "圣诞之吻SS", + "아마가미 SS", + "Амагами СС" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [ + "圣诞之吻SS", + "아마가미 SS", + "Амагами СС" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 8676, + "mal_id": 8676, + "title": "Amagami SS", + "english": "Amagami SS", + "native": "アマガミSS", + "synonyms": [ + "圣诞之吻SS", + "아마가미 SS", + "Амагами СС" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 6634, + "mal_id": 6634, + "title": "Sengoku Basara Ni", + "english": "Sengoku Basara: Samurai Kings 2", + "native": "戦国BASARA 弐", + "synonyms": [ + "Sengoku Basara Two", + "Sengoku Basara 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 4901, + "mal_id": 4901, + "title": "BLACK LAGOON: Roberta's Blood Trail", + "english": "Black Lagoon: Roberta's Blood Trail", + "native": "BLACK LAGOON Roberta's Blood Trail", + "synonyms": [ + "Black Lagoon 3" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH", + "传说的勇者的传说" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8142, + "mal_id": 8142, + "title": "Colorful", + "english": "Colorful ~ The Motion Picture", + "native": "カラフル", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 8, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 8142, + "mal_id": 8142, + "title": "Colorful (Movie)", + "english": "Colorful: The Motion Picture", + "native": "カラフル", + "synonyms": [ + "Colourful" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 8, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 8246, + "mal_id": 8246, + "title": "NARUTO: Shippuuden - The Lost Tower", + "english": "Naruto Shippuden the Movie: The Lost Tower", + "native": "劇場版 NARUTO -ナルト- 疾風伝 ザ・ロストタワー", + "synonyms": [ + "Naruto Movie 7", + "Gekijouban Naruto Shippuuden: The Lost Tower", + "Naruto Shippūden la película: La torre perdida", + "Naruto Shippuden Movie 04: La torre perduta" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 8246, + "mal_id": 8246, + "title": "Naruto: Shippuuden Movie 4 - The Lost Tower", + "english": "Naruto Shippuden the Movie 4: The Lost Tower", + "native": "劇場版 NARUTO-ナルト-疾風伝 ザ・ロストタワー", + "synonyms": [ + "Naruto Movie 7", + "Gekijouban Naruto Shippuuden: The Lost Tower" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-san and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-san and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-san and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-san and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 6, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": "Sekirei: Pure Engagement", + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 6634, + "mal_id": 6634, + "title": "Sengoku Basara Ni", + "english": "Sengoku Basara: Samurai Kings 2", + "native": "戦国BASARA 弐", + "synonyms": [ + "Sengoku Basara Two", + "Sengoku Basara 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 8, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": null, + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6166, + "mal_id": 6166, + "title": "Asobi ni Iku yo!", + "english": "Cat Planet Cuties", + "native": "あそびにいくヨ!", + "synonyms": [ + "Asobi ni Ikuyo!", + "Let's Go Play!", + "Asobi ni Ikuyo: Bombshells from the Sky" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 8408, + "mal_id": 8408, + "title": "Durarara!! Specials", + "english": null, + "native": "デュラララ!!", + "synonyms": [ + "Durarara!! Episode 12.5", + "Durarara!! Episode 25", + "Dhurarara!!", + "Dyurarara!!" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 8, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 8408, + "mal_id": 8408, + "title": "Durarara!! Specials", + "english": "Durarara!! Specials", + "native": "デュラララ!!", + "synonyms": [ + "Durarara!! Episode 12.5", + "Durarara!! Episode 25", + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!! OVA" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 8, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター (OVA)", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター (OVA)", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 7059, + "mal_id": 7059, + "title": "Black★Rock Shooter (OVA)", + "english": null, + "native": "ブラック★ロックシューター (OVA)", + "synonyms": [ + "BRS OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 6634, + "mal_id": 6634, + "title": "Sengoku Basara Ni", + "english": "Sengoku Basara: Samurai Kings 2", + "native": "戦国BASARA 弐", + "synonyms": [ + "Sengoku Basara Two", + "Sengoku Basara 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": null, + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": "Mitsudomoe", + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 3, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 3, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": null, + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 7627, + "mal_id": 7627, + "title": "Mitsudomoe", + "english": null, + "native": "みつどもえ", + "synonyms": [ + "Three Way Struggle" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 7695, + "mal_id": 7695, + "title": "Pocket Monsters Diamond & Pearl: Genei no Hasha Zoroark", + "english": "Pokémon: Zoroark—Master of Illusions", + "native": "ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク", + "synonyms": [ + "Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark", + "Pokemon Movie 13", + "Pokémon: Zoroark, Illusjonens mester", + "Pokémon: Zoroark, el maestro de ilusiones", + "Pokémon: Zoroark – Illuusioiden mestari", + "Pokémon: Zoroark, mistrz iluzji", + "Pokémon 13: Zoroark - Meester der Illusie", + "Pokémon Zororark: illusionernas mästare" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 7695, + "mal_id": 7695, + "title": "Pokemon Movie 13: Genei no Hasha Zoroark", + "english": "Pokémon: Zoroark: Master of Illusions", + "native": "ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク", + "synonyms": [ + "Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark", + "Pokemon Diamond & Pearl: Genei no Hasha Zoroark" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10298, + "mal_id": 10298, + "title": "Kaichou wa Maid-sama!: Goshujin-sama to Asonjao♥", + "english": "Maid-Sama! LaLa Special", + "native": "会長はメイド様! ご主人様と遊んじゃお♥", + "synonyms": [ + "Kaichou wa Maid-sama LaLa Special", + "Kaicho wa Maidsama LaLa Special", + "Kaichou wa Meido Sama LaLa Special", + "Class President is a Maid! LaLa Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 10298, + "mal_id": 10298, + "title": "Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥", + "english": "Maid Sama! Play with Your Husband ♥", + "native": "会長はメイド様! ご主人様と遊んじゃお♥", + "synonyms": [ + "Kaichou wa Maid-sama LaLa Special", + "Kaicho wa Maidsama LaLa Special", + "Kaichou wa Meido Sama LaLa Special", + "Class President is a Maid! LaLa Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 8675, + "mal_id": 8675, + "title": "Seitokai Yakuindomo", + "english": "Student Council Staff Members", + "native": "生徒会役員共", + "synonyms": [ + "SYD" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 8086, + "mal_id": 8086, + "title": "Densetsu no Yuusha no Densetsu", + "english": "The Legend of the Legendary Heroes", + "native": "伝説の勇者の伝説", + "synonyms": [ + "DenYuDen", + "DenYuuDen", + "Densetsu no Yusha no Densetsu", + "LOLH" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.8836, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6974, + "mal_id": 6974, + "title": "Seikimatsu Occult Gakuin", + "english": "Occult Academy", + "native": "世紀末オカルト学院", + "synonyms": [ + "Zaidanhoujin Occult Designer Gakuin", + "Seikimatsu Occult Academy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 8, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 5277, + "mal_id": 5277, + "title": "Sekirei: Pure Engagement", + "english": "Sekirei: Pure Engagement", + "native": "セキレイ~Pure Engagement~", + "synonyms": [ + "Sekirei 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 4, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 6707, + "mal_id": 6707, + "title": "Kuroshitsuji II", + "english": "Black Butler II", + "native": "黒執事II", + "synonyms": [ + "Kuroshitsuji 2", + "Black Butler 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 2, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 6381, + "mal_id": 6381, + "title": "Strike Witches 2", + "english": "Strike Witches 2", + "native": "ストライクウィッチーズ 2", + "synonyms": [ + "强袭魔女2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 7592, + "mal_id": 7592, + "title": "Nurarihyon no Mago", + "english": "Nura: Rise of the Yokai Clan", + "native": "ぬらりひょんの孫", + "synonyms": [ + "The Grandson of Nurarihyon", + "Grandchild of Nurarihyon" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 6, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki Sora", + "native": "あきそら~夢の中~", + "synonyms": [ + "Akisora: Yume no Naka", + "Aki-Sora: In a Dream" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki-Sora: In a Dream", + "native": "あきそら~夢の中~", + "synonyms": [ + "Aki-Sora: Yume no Naka" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki Sora", + "native": "あきそら~夢の中~", + "synonyms": [ + "Akisora: Yume no Naka", + "Aki-Sora: In a Dream" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 6634, + "mal_id": 6634, + "title": "Sengoku Basara Ni", + "english": "Sengoku Basara: Samurai Kings 2", + "native": "戦国BASARA 弐", + "synonyms": [ + "Sengoku Basara Two", + "Sengoku Basara 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 11, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki Sora", + "native": "あきそら~夢の中~", + "synonyms": [ + "Akisora: Yume no Naka", + "Aki-Sora: In a Dream" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 8074, + "mal_id": 8074, + "title": "Highschool of the Dead", + "english": "High School of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD", + "synonyms": [ + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 5, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 0.8746, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 8577, + "mal_id": 8577, + "title": "Aki-Sora: Yume no Naka", + "english": "Aki Sora", + "native": "あきそら~夢の中~", + "synonyms": [ + "Akisora: Yume no Naka", + "Aki-Sora: In a Dream" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 7769, + "mal_id": 7769, + "title": "Ookami-san to Shichinin no Nakama-tachi", + "english": "Okami-San and Her Seven Companions", + "native": "オオカミさんと七人の仲間たち", + "synonyms": [ + "Ookami-san to Shichinin no Nakamatachi", + "Okamisan and Seven Companions" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 1, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8768, + "mal_id": 8768, + "title": "Hiyokoi", + "english": null, + "native": "ひよ恋", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 8768, + "mal_id": 8768, + "title": "Hiyokoi", + "english": null, + "native": "ひよ恋", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8768, + "mal_id": 8768, + "title": "Hiyokoi", + "english": null, + "native": "ひよ恋", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 7724, + "mal_id": 7724, + "title": "Shiki", + "english": "Shiki", + "native": "屍鬼", + "synonyms": [ + "Corpse Demon" + ], + "format": "TV", + "episodes": 22, + "season": "SUMMER", + "year": 2010, + "start_date": { + "day": 9, + "month": 7, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.9451, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 9063, + "mal_id": 9063, + "title": "Toaru Kagaku no Railgun: Entenka no Satsuei Model mo Raku ja Arimasen wa ne.", + "english": null, + "native": "とある科学の超電磁砲 炎天下の撮影モデルも楽じゃありませんわね.", + "synonyms": [ + "Toaru Beach no Tokuten Eizo", + "Toaru Kagaku no Railgun Episode 13", + "A Certain Scientific Railgun Episode 13", + "A Certain Scientific Railgun: Being a Photo Shoot Model Under the Blazing Sun Isn't Easy, Is It?" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 9047, + "mal_id": 9047, + "title": "Toaru Kagaku no Railgun: Misaka-san wa Ima Chuumoku no Mato desu kara", + "english": "A Certain Scientific Railgun OVA: Since Misaka-san is the Center of Attention Right Now...", + "native": "とある科学の超電磁砲 御坂さんはいま注目の的ですから", + "synonyms": [ + "Toaru Kagaku no Railgun OVA", + "Toaru Kagaku no Choudenjihou OVA", + "A Certain Scientific Railgun OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 9, + "year": 2010 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2010-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2010-winter.json new file mode 100644 index 0000000..af9528f --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2010-winter.json @@ -0,0 +1,4719 @@ +{ + "year": 2010, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "DRRR!!", + "דורארארה!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 7311, + "mal_id": 7311, + "title": "Suzumiya Haruhi no Shoushitsu", + "english": "The Disappearance of Haruhi Suzumiya", + "native": "涼宮ハルヒの消失", + "synonyms": [ + "스즈미야 하루히의 소실", + "La Disparition de Haruhi Suzumiya", + "La Scomparsa di Haruhi Suzumiya", + "Исчезновение Харухи Судзумии " + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 6922, + "mal_id": 6922, + "title": "Fate/stay night Movie: UNLIMITED BLADE WORKS", + "english": "Fate/stay night: Unlimited Blade Works (Movie)", + "native": "劇場版 Fate/stay night UNLIMITED BLADE WORKS", + "synonyms": [ + "Gekijouban Fate/Stay Night: Unlimited Blade Works", + "Fate/stay night UBW", + "Судaьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 6862, + "mal_id": 6862, + "title": "K-ON!: Live House!", + "english": "K-ON!: Live House!", + "native": "けいおん!「ライブハウス!」", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 7338, + "mal_id": 7338, + "title": "DARKER THAN BLACK: Kuro no Keiyakusha - Gaiden", + "english": "Darker than Black: Origins", + "native": "DARKER THAN BLACK -黒の契約者- 外伝", + "synonyms": [ + "Darker than BLACK: Origin" + ], + "format": "SPECIAL", + "episodes": 4, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 6336, + "mal_id": 6336, + "title": "Kidou Senshi Gundam UC", + "english": "Mobile Suit Gundam UC", + "native": "機動戦士ガンダムUC", + "synonyms": [ + "Kidou Senshi Gundam Unicorn", + "Mobile Suit Gundam Unicorn" + ], + "format": "OVA", + "episodes": 7, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3", + "Nodame Cantabile: Finale" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 6951, + "mal_id": 6951, + "title": "Yu☆Gi☆Oh!: Chou Yuugou! Toki wo Koeta Kizuna", + "english": "Yu-Gi-Oh! 3D: Bonds Beyond Time", + "native": "劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~", + "synonyms": [ + "Yugioh", + "Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space", + "Yu-Gi-Oh! 10th Anniversary Special", + "10th Anniversary Gekijouban", + "Yu-Gi-Oh!: Vínculos Além do Tempo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 8023, + "mal_id": 8023, + "title": "Toaru Kagaku no Railgun: Motto Marutto Railgun", + "english": null, + "native": "とある科学の超電磁砲 もっとまるっと超電磁砲", + "synonyms": [ + "Toaru Kagaku no Railgun MMR", + "A Certain Scientific Railgun Specials" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": "Heartcatch Precure!", + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!: Panty Appreciation Society", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chu-Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 4985, + "mal_id": 4985, + "title": "Mahou Shoujo Lyrical Nanoha: The MOVIE 1st", + "english": "Magical Girl Lyrical Nanoha: The Movie 1st", + "native": "魔法少女リリカルなのは The MOVIE 1st", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 8115, + "mal_id": 8115, + "title": "Uchuu Show e Youkoso", + "english": "Welcome to THE SPACE SHOW", + "native": "宇宙ショーへようこそ", + "synonyms": [ + "Uchu Show e Youkoso" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 9213, + "mal_id": 9213, + "title": "Kowarekake no Orgel", + "english": null, + "native": "こわれかけのオルゴール", + "synonyms": [ + "Kowarekake no Orgol", + "Half-Broken Music Box" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2009, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 7762, + "mal_id": 7762, + "title": "Yondemasu yo, Azazel-san.", + "english": null, + "native": "よんでますよ、アザゼルさん。", + "synonyms": [], + "format": "OVA", + "episodes": 4, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 7311, + "mal_id": 7311, + "title": "Suzumiya Haruhi no Shoushitsu", + "english": "The Disappearance of Haruhi Suzumiya", + "native": "涼宮ハルヒの消失", + "synonyms": [ + "The Vanishment of Haruhi Suzumiya", + "Suzumiya Haruhi no Syoshitsu", + "Haruhi Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 2, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 10, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 7338, + "mal_id": 7338, + "title": "Darker than Black: Kuro no Keiyakusha Gaiden", + "english": "Darker Than Black: Gemini of the Meteor OVAs", + "native": "Darker than BLACK -黒の契約者 外伝", + "synonyms": [ + "Darker than Black: Ryuusei no Gemini Specials", + "Darker than BLACK 2 OVA", + "DTB", + "Darker than Black: Ryuusei no Gemini Episode 12" + ], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [ + "Protective Charm Himari", + "OmaHima" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 6922, + "mal_id": 6922, + "title": "Fate/stay night Movie: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "劇場版 Fate/stay night UNLIMITED BLADE WORKS", + "synonyms": [ + "Gekijouban Fate/Stay Night: Unlimited Blade Works", + "Fate/stay night Movie", + "Fate/stay night UBW" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies versus Butlers!", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redi x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 6862, + "mal_id": 6862, + "title": "K-On!: Live House!", + "english": "K-ON! Live House!", + "native": "けいおん! ライブハウス!", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 6637, + "mal_id": 6637, + "title": "Higashi no Eden Movie II: Paradise Lost", + "english": "Eden of The East the Movie II: Paradise Lost", + "native": "東のエデン 劇場版II Paradise Lost", + "synonyms": [ + "Higashi no Eden: Gekijouban II Paradise Lost" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 7465, + "mal_id": 7465, + "title": "Eve no Jikan (Movie)", + "english": "Time of Eve", + "native": "イヴの時間", + "synonyms": [ + "Eve's Time", + "Eve no Jikan 1st Season Complete Edition", + "Gekijouban Eve no Jikan" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 8479, + "mal_id": 8479, + "title": "Hetalia World Series", + "english": "Hetalia World Series", + "native": "ヘタリア World Series", + "synonyms": [], + "format": "ONA", + "episodes": 48, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 6336, + "mal_id": 6336, + "title": "Kidou Senshi Gundam Unicorn", + "english": "Mobile Suit Gundam Unicorn", + "native": "機動戦士ガンダムUC(ユニコーン)", + "synonyms": [ + "Mobile Suit Gundam UC" + ], + "format": "OVA", + "episodes": 7, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 6951, + "mal_id": 6951, + "title": "Yu☆Gi☆Oh! Movie: Chou Yuugou! Toki wo Koeta Kizuna", + "english": "Yu-Gi-Oh! 3D: Bonds Beyond Time", + "native": "劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~", + "synonyms": [ + "Yugioh", + "Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space", + "Yu-Gi-Oh! 10th Anniversary Special", + "10th Anniversary Gekijouban", + "Yu-Gi-Oh! The Movie: Super Fusion! Bonds That Transcend Time", + "Yu-Gi-Oh! Bonds Beyond Time" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!!", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chuu Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 4, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 8023, + "mal_id": 8023, + "title": "Toaru Kagaku no Railgun: Motto Marutto Railgun", + "english": "A Certain Scientific Railgun Specials", + "native": "もっとまるっと超電磁砲", + "synonyms": [ + "Toaru Kagaku no Railgun MMR", + "Motto Marutto Railgun Specials" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 7559, + "mal_id": 7559, + "title": "Fate/stay night TV Reproduction", + "english": null, + "native": "Fate/stay night", + "synonyms": [ + "Fate/stay night Recap", + "Fate/stay night OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 10643, + "mal_id": 10643, + "title": "Gintama: Dai Hanseikai", + "english": null, + "native": "アニメ銀魂 大反省会", + "synonyms": [ + "Gintama Harumatsuri 2010" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": null, + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 2, + "year": 2010 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "DRRR!!", + "דורארארה!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "DRRR!!", + "דורארארה!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!!", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chuu Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 4, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 7311, + "mal_id": 7311, + "title": "Suzumiya Haruhi no Shoushitsu", + "english": "The Disappearance of Haruhi Suzumiya", + "native": "涼宮ハルヒの消失", + "synonyms": [ + "스즈미야 하루히의 소실", + "La Disparition de Haruhi Suzumiya", + "La Scomparsa di Haruhi Suzumiya", + "Исчезновение Харухи Судзумии " + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 7311, + "mal_id": 7311, + "title": "Suzumiya Haruhi no Shoushitsu", + "english": "The Disappearance of Haruhi Suzumiya", + "native": "涼宮ハルヒの消失", + "synonyms": [ + "The Vanishment of Haruhi Suzumiya", + "Suzumiya Haruhi no Syoshitsu", + "Haruhi Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 2, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies versus Butlers!", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redi x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 17, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 10, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka and Test - Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 10, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [ + "Protective Charm Himari", + "OmaHima" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [ + "Seikon no Quasar" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 6922, + "mal_id": 6922, + "title": "Fate/stay night Movie: UNLIMITED BLADE WORKS", + "english": "Fate/stay night: Unlimited Blade Works (Movie)", + "native": "劇場版 Fate/stay night UNLIMITED BLADE WORKS", + "synonyms": [ + "Gekijouban Fate/Stay Night: Unlimited Blade Works", + "Fate/stay night UBW", + "Судaьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 6922, + "mal_id": 6922, + "title": "Fate/stay night Movie: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "劇場版 Fate/stay night UNLIMITED BLADE WORKS", + "synonyms": [ + "Gekijouban Fate/Stay Night: Unlimited Blade Works", + "Fate/stay night Movie", + "Fate/stay night UBW" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.8824, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 6922, + "mal_id": 6922, + "title": "Fate/stay night Movie: UNLIMITED BLADE WORKS", + "english": "Fate/stay night: Unlimited Blade Works (Movie)", + "native": "劇場版 Fate/stay night UNLIMITED BLADE WORKS", + "synonyms": [ + "Gekijouban Fate/Stay Night: Unlimited Blade Works", + "Fate/stay night UBW", + "Судaьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 7559, + "mal_id": 7559, + "title": "Fate/stay night TV Reproduction", + "english": null, + "native": "Fate/stay night", + "synonyms": [ + "Fate/stay night Recap", + "Fate/stay night OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6862, + "mal_id": 6862, + "title": "K-ON!: Live House!", + "english": "K-ON!: Live House!", + "native": "けいおん!「ライブハウス!」", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 6862, + "mal_id": 6862, + "title": "K-On!: Live House!", + "english": "K-ON! Live House!", + "native": "けいおん! ライブハウス!", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6862, + "mal_id": 6862, + "title": "K-ON!: Live House!", + "english": "K-ON!: Live House!", + "native": "けいおん!「ライブハウス!」", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 10, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 6862, + "mal_id": 6862, + "title": "K-ON!: Live House!", + "english": "K-ON!: Live House!", + "native": "けいおん!「ライブハウス!」", + "synonyms": [ + "K-On! OVA", + "Keion OVA", + "K-On! Episode 14", + "Keion OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 6500, + "mal_id": 6500, + "title": "Seikon no Qwaser", + "english": "The Qwaser of Stigmata", + "native": "聖痕のクェイサー", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 10, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "Sora no Oto", + "Soranowoto", + "Sora no Woto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies versus Butlers!", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redi x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies Versus Butlers", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redei x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 7338, + "mal_id": 7338, + "title": "DARKER THAN BLACK: Kuro no Keiyakusha - Gaiden", + "english": "Darker than Black: Origins", + "native": "DARKER THAN BLACK -黒の契約者- 外伝", + "synonyms": [ + "Darker than BLACK: Origin" + ], + "format": "SPECIAL", + "episodes": 4, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 7338, + "mal_id": 7338, + "title": "Darker than Black: Kuro no Keiyakusha Gaiden", + "english": "Darker Than Black: Gemini of the Meteor OVAs", + "native": "Darker than BLACK -黒の契約者 外伝", + "synonyms": [ + "Darker than Black: Ryuusei no Gemini Specials", + "Darker than BLACK 2 OVA", + "DTB", + "Darker than Black: Ryuusei no Gemini Episode 12" + ], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [ + "Protective Charm Himari", + "OmaHima" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 6336, + "mal_id": 6336, + "title": "Kidou Senshi Gundam UC", + "english": "Mobile Suit Gundam UC", + "native": "機動戦士ガンダムUC", + "synonyms": [ + "Kidou Senshi Gundam Unicorn", + "Mobile Suit Gundam Unicorn" + ], + "format": "OVA", + "episodes": 7, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 6336, + "mal_id": 6336, + "title": "Kidou Senshi Gundam Unicorn", + "english": "Mobile Suit Gundam Unicorn", + "native": "機動戦士ガンダムUC(ユニコーン)", + "synonyms": [ + "Mobile Suit Gundam UC" + ], + "format": "OVA", + "episodes": 7, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 3, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3", + "Nodame Cantabile: Finale" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3", + "Nodame Cantabile: Finale" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3", + "Nodame Cantabile: Finale" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3", + "Nodame Cantabile: Finale" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 6951, + "mal_id": 6951, + "title": "Yu☆Gi☆Oh!: Chou Yuugou! Toki wo Koeta Kizuna", + "english": "Yu-Gi-Oh! 3D: Bonds Beyond Time", + "native": "劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~", + "synonyms": [ + "Yugioh", + "Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space", + "Yu-Gi-Oh! 10th Anniversary Special", + "10th Anniversary Gekijouban", + "Yu-Gi-Oh!: Vínculos Além do Tempo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 6951, + "mal_id": 6951, + "title": "Yu☆Gi☆Oh! Movie: Chou Yuugou! Toki wo Koeta Kizuna", + "english": "Yu-Gi-Oh! 3D: Bonds Beyond Time", + "native": "劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~", + "synonyms": [ + "Yugioh", + "Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space", + "Yu-Gi-Oh! 10th Anniversary Special", + "10th Anniversary Gekijouban", + "Yu-Gi-Oh! The Movie: Super Fusion! Bonds That Transcend Time", + "Yu-Gi-Oh! Bonds Beyond Time" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 8023, + "mal_id": 8023, + "title": "Toaru Kagaku no Railgun: Motto Marutto Railgun", + "english": null, + "native": "とある科学の超電磁砲 もっとまるっと超電磁砲", + "synonyms": [ + "Toaru Kagaku no Railgun MMR", + "A Certain Scientific Railgun Specials" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 8023, + "mal_id": 8023, + "title": "Toaru Kagaku no Railgun: Motto Marutto Railgun", + "english": "A Certain Scientific Railgun Specials", + "native": "もっとまるっと超電磁砲", + "synonyms": [ + "Toaru Kagaku no Railgun MMR", + "Motto Marutto Railgun Specials" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": "Heartcatch Precure!", + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": null, + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 2, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": "Heartcatch Precure!", + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": "Heartcatch Precure!", + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookamikakushi", + "english": "Okamikakushi: Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [ + "Protective Charm Himari", + "OmaHima" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6594, + "mal_id": 6594, + "title": "Katanagatari", + "english": "Katanagatari", + "native": "刀語", + "synonyms": [ + "Sword Story" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 26, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 10, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 7079, + "mal_id": 7079, + "title": "Ookami Kakushi", + "english": "Okamikakushi ~ Masque of the Wolf", + "native": "おおかみかくし", + "synonyms": [ + "Ookamikakushi", + "Wolfed Away" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!: Panty Appreciation Society", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chu-Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!!", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chuu Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 4, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!: Panty Appreciation Society", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chu-Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 6746, + "mal_id": 6746, + "title": "Durarara!!", + "english": "Durarara!!", + "native": "デュラララ!!", + "synonyms": [ + "Dhurarara!!", + "Dyurarara!!", + "Dulalala!!", + "Dullalala!!", + "DRRR!!" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 8, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.8692, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!: Panty Appreciation Society", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chu-Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 6645, + "mal_id": 6645, + "title": "Chuu Bra!!", + "english": "Chu-Bra!: Panty Appreciation Society", + "native": "ちゅーぶら!!", + "synonyms": [ + "Chu-Bra!!", + "Chubra!!", + "Chuubra!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 6747, + "mal_id": 6747, + "title": "Dance in the Vampire Bund", + "english": "Dance in the Vampire Bund", + "native": "ダンスインザヴァンパイアバンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 7148, + "mal_id": 7148, + "title": "Ladies versus Butlers!", + "english": "Ladies versus Butlers!", + "native": "れでぃ×ばと!", + "synonyms": [ + "Ladies vs. Butlers!", + "Redi x Bato" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 6574, + "mal_id": 6574, + "title": "Hanamaru Youchien", + "english": "Hanamaru Kindergarten", + "native": "はなまる幼稚園", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 11, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 7645, + "mal_id": 7645, + "title": "Heartcatch Precure!", + "english": null, + "native": "ハートキャッチプリキュア!", + "synonyms": [ + "Heartcatch Pretty Cure!" + ], + "format": "TV", + "episodes": 49, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 2, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 7062, + "mal_id": 7062, + "title": "Hidamari Sketch x ☆☆☆", + "english": "Hidamari Sketch x Hoshimittsu", + "native": "ひだまりスケッチ x ☆☆☆", + "synonyms": [ + "Hidamari Sketch S3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 6324, + "mal_id": 6324, + "title": "Omamori Himari", + "english": "Omamori Himari", + "native": "おまもりひまり", + "synonyms": [ + "Protective Charm Himari", + "OmaHima" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 1.0364, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 4985, + "mal_id": 4985, + "title": "Mahou Shoujo Lyrical Nanoha: The MOVIE 1st", + "english": "Magical Girl Lyrical Nanoha: The Movie 1st", + "native": "魔法少女リリカルなのは The MOVIE 1st", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 1, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 6347, + "mal_id": 6347, + "title": "Baka to Test to Shoukanjuu", + "english": "Baka & Test: Summon the Beasts", + "native": "バカとテストと召喚獣", + "synonyms": [ + "The Idiot", + "the Tests", + "and the Summoned Creatures", + "Baka to Test to Shokanju", + "BakaTest" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 7, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 13, + "score": 0.8815, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 8115, + "mal_id": 8115, + "title": "Uchuu Show e Youkoso", + "english": "Welcome to THE SPACE SHOW", + "native": "宇宙ショーへようこそ", + "synonyms": [ + "Uchu Show e Youkoso" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2010, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 5690, + "mal_id": 5690, + "title": "Nodame Cantabile Finale", + "english": null, + "native": "のだめカンタービレ フィナーレ", + "synonyms": [ + "Nodame Cantabile Third Season", + "Nodame Cantabile Season 3" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 15, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9213, + "mal_id": 9213, + "title": "Kowarekake no Orgel", + "english": null, + "native": "こわれかけのオルゴール", + "synonyms": [ + "Kowarekake no Orgol", + "Half-Broken Music Box" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2010, + "start_date": { + "year": 2009, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 6802, + "mal_id": 6802, + "title": "So Ra No Wo To", + "english": "Sound of the Sky", + "native": "ソ・ラ・ノ・ヲ・ト", + "synonyms": [ + "So-Ra-No-Wo-To", + "Soranowoto", + "Sora no Woto", + "Sora no Oto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2010, + "start_date": { + "day": 5, + "month": 1, + "year": 2010 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2011-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2011-fall.json new file mode 100644 index 0000000..eb7d362 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2011-fall.json @@ -0,0 +1,6074 @@ +{ + "year": 2011, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "HUNTER×HUNTER (2011)", + "english": "Hunter x Hunter (2011)", + "native": "HUNTER×HUNTER (2011)", + "synonyms": [ + "ハンター×ハンター", + "HxH", + "全职猎人", + "האנטר האנטר", + "ฮันเตอร์ x ฮันเตอร์", + "القناص ", + "Мисливець X Мисливець" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "المُلك المُدان" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 10800, + "mal_id": 10800, + "title": "Chihayafuru", + "english": "Chihayafuru", + "native": "ちはやふる", + "synonyms": [ + "Chihayafull" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 10521, + "mal_id": 10521, + "title": "WORKING'!!", + "english": "Wagnaria!!2", + "native": "WORKING'!!", + "synonyms": [ + "ワーキング’!!", + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 12565, + "mal_id": 12565, + "title": "Fate/Prototype", + "english": null, + "native": "Fate/Prototype", + "synonyms": [ + "フェイト/プロトタイプ", + "Судьба/Прототип" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 12231, + "mal_id": 12231, + "title": "Dragon Ball: Episode of Bardock", + "english": "Dragon Ball: Episode of Bardock", + "native": "ドラゴンボール エピソード オブ バーダック", + "synonyms": [ + "Драконий жемчуг: Эпизод Бардока" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Episode 0", + "native": "僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 11266, + "mal_id": 11266, + "title": "Ao no Exorcist: Kuro no Iede", + "english": "Blue Exorcist: Runaway Kuro", + "native": "青の祓魔師 クロの家出", + "synonyms": [ + "Ao no Exorcist Special", + "Ao no Futsumashi: Kuro no Iede" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 10418, + "mal_id": 10418, + "title": "Deadman Wonderland: Akai Knife Tsukai", + "english": "Deadman Wonderland: The Red Knife Wielder", + "native": "デッドマン・ワンダーランド 赤いナイフ使い", + "synonyms": [ + "Deadman Wonderland OAD", + "Deadman Wonderland OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "Hunter x Hunter (2011)", + "english": "Hunter x Hunter", + "native": "HUNTER×HUNTER(ハンター×ハンター)", + "synonyms": [ + "HxH (2011)" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "フェイト/ゼロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "GUILTY CROWN" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 10800, + "mal_id": 10800, + "title": "Chihayafuru", + "english": "Chihayafuru", + "native": "ちはやふる", + "synonyms": [ + "Chihayafull" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 9617, + "mal_id": 9617, + "title": "K-On! Movie", + "english": "K-ON! The Movie", + "native": "映画 けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 11553, + "mal_id": 11553, + "title": "Toradora!: Bentou no Gokui", + "english": "Toradora! Special", + "native": "とらドラ! 弁当の極意", + "synonyms": [ + "Toradora!: The True Meaning of Bento", + "Toradora!: Bentou Battle" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C³ - CubexCursedxCurious", + "native": "シーキューブ", + "synonyms": [ + "C3", + "C Cube", + "C^3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 10798, + "mal_id": 10798, + "title": "Un-Go", + "english": "Un-Go", + "native": "UN-GO アン ゴ", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 11266, + "mal_id": 11266, + "title": "Ao no Exorcist: Kuro no Iede", + "english": "Blue Exorcist: Runaway Kuro", + "native": "青の祓魔師(エクソシスト) クロの家出", + "synonyms": [ + "Ao no Exorcist Special", + "Ao no Futsumashi: Kuro no Iede" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 10418, + "mal_id": 10418, + "title": "Deadman Wonderland: Akai Knife Tsukai", + "english": "Deadman Wonderland: The Red Knife Wielder", + "native": "デッドマン・ワンダーランド 赤いナイフ使い", + "synonyms": [ + "Deadman Wonderland OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 10794, + "mal_id": 10794, + "title": "IS: Infinite Stratos Encore - Koi ni Kogareru Rokujuusou", + "english": "Infinite Stratos Encore: A Sextet Yearning for Love", + "native": "IS 〈インフィニット・ストラトス〉 アンコール『恋に焦がれる六重奏』", + "synonyms": [ + "IS: Infinite Stratos Encore - Koi ni Kogareru Sextet" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 12231, + "mal_id": 12231, + "title": "Dragon Ball: Episode of Bardock", + "english": "Dragon Ball: Episode of Bardock", + "native": "ドラゴンボール エピソード オブ バーダック", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "HUNTER×HUNTER (2011)", + "english": "Hunter x Hunter (2011)", + "native": "HUNTER×HUNTER (2011)", + "synonyms": [ + "ハンター×ハンター", + "HxH", + "全职猎人", + "האנטר האנטר", + "ฮันเตอร์ x ฮันเตอร์", + "القناص ", + "Мисливець X Мисливець" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "Hunter x Hunter (2011)", + "english": "Hunter x Hunter", + "native": "HUNTER×HUNTER(ハンター×ハンター)", + "synonyms": [ + "HxH (2011)" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "HUNTER×HUNTER (2011)", + "english": "Hunter x Hunter (2011)", + "native": "HUNTER×HUNTER (2011)", + "synonyms": [ + "ハンター×ハンター", + "HxH", + "全职猎人", + "האנטר האנטר", + "ฮันเตอร์ x ฮันเตอร์", + "القناص ", + "Мисливець X Мисливець" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "未来日记", + "יומן העתיד" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "フェイト/ゼロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "Hunter x Hunter (2011)", + "english": "Hunter x Hunter", + "native": "HUNTER×HUNTER(ハンター×ハンター)", + "synonyms": [ + "HxH (2011)" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "GUILTY CROWN" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "Fate/Zero", + "synonyms": [ + "フェイト/ゼロ", + "F/Z", + "القدر/زيرو", + "פייט/זירו", + "Судьба/Начало" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "المُلك المُدان" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "GUILTY CROWN" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 19, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "المُلك المُدان" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10793, + "mal_id": 10793, + "title": "Guilty Crown", + "english": "Guilty Crown", + "native": "ギルティクラウン", + "synonyms": [ + "المُلك المُدان" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "フェイト/ゼロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends", + "Boku ha Tomodachi ga Sukunai", + "我的朋友很少" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10800, + "mal_id": 10800, + "title": "Chihayafuru", + "english": "Chihayafuru", + "native": "ちはやふる", + "synonyms": [ + "Chihayafull" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 10800, + "mal_id": 10800, + "title": "Chihayafuru", + "english": "Chihayafuru", + "native": "ちはやふる", + "synonyms": [ + "Chihayafull" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 18, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10800, + "mal_id": 10800, + "title": "Chihayafuru", + "english": "Chihayafuru", + "native": "ちはやふる", + "synonyms": [ + "Chihayafull" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 9617, + "mal_id": 9617, + "title": "K-On! Movie", + "english": "K-ON! The Movie", + "native": "映画 けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9641, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9263, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.8865, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9617, + "mal_id": 9617, + "title": "K-ON! Movie", + "english": "K-ON!: The Movie", + "native": "映画けいおん!", + "synonyms": [ + "Eiga K-On!", + "Keion Movie", + "K on Movie", + "Film K-On!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 10798, + "mal_id": 10798, + "title": "Un-Go", + "english": "Un-Go", + "native": "UN-GO アン ゴ", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": "Maken-Ki! Battling Venus", + "native": "マケン姫っ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9936, + "mal_id": 9936, + "title": "Maken-Ki!", + "english": null, + "native": "マケン姫っ!", + "synonyms": [ + "Maken-Ki! Battling Venus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2", + "english": null, + "native": "バクマン。2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 10798, + "mal_id": 10798, + "title": "Un-Go", + "english": "Un-Go", + "native": "UN-GO アン ゴ", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 19, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10521, + "mal_id": 10521, + "title": "WORKING'!!", + "english": "Wagnaria!!2", + "native": "WORKING'!!", + "synonyms": [ + "ワーキング’!!", + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10521, + "mal_id": 10521, + "title": "WORKING'!!", + "english": "Wagnaria!!2", + "native": "WORKING'!!", + "synonyms": [ + "ワーキング’!!", + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10521, + "mal_id": 10521, + "title": "WORKING'!!", + "english": "Wagnaria!!2", + "native": "WORKING'!!", + "synonyms": [ + "ワーキング’!!", + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C³ - CubexCursedxCurious", + "native": "シーキューブ", + "synonyms": [ + "C3", + "C Cube", + "C^3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 1.1087, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII (Final)", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3", + "Shakugan no Shana Final", + "ชานะ นักรบเนตรอัคคี ภาคที่ 3 ", + "Hoả nhãn của Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 10588, + "mal_id": 10588, + "title": "Persona 4 the Animation", + "english": "Persona 4 the Animation", + "native": "ペルソナ4アニメーション", + "synonyms": [ + "P4A" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Horizon on the Middle of Nowhere", + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C³ - CubexCursedxCurious", + "native": "シーキューブ", + "synonyms": [ + "C3", + "C Cube", + "C^3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10620, + "mal_id": 10620, + "title": "Mirai Nikki (TV)", + "english": "The Future Diary", + "native": "未来日記", + "synonyms": [ + "Mirai Nikki", + "Mirai Nikki (2011)" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10578, + "mal_id": 10578, + "title": "C³", + "english": "C3", + "native": "シーキューブ", + "synonyms": [ + "C Cube", + "C^3", + "C³ - CubexCursedxCurious", + "C3 Anime" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 1.0087, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 12565, + "mal_id": 12565, + "title": "Fate/Prototype", + "english": null, + "native": "Fate/Prototype", + "synonyms": [ + "フェイト/プロトタイプ", + "Судьба/Прототип" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 10087, + "mal_id": 10087, + "title": "Fate/Zero", + "english": "Fate/Zero", + "native": "フェイト/ゼロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 10798, + "mal_id": 10798, + "title": "Un-Go", + "english": "Un-Go", + "native": "UN-GO アン ゴ", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 14, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10396, + "mal_id": 10396, + "title": "Ben-To", + "english": "Ben-To", + "native": "ベン・トー", + "synonyms": [ + "Bento", + "Ben-Tou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 9, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 11, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10798, + "mal_id": 10798, + "title": "UN-GO", + "english": "UN-GO", + "native": "UN-GO アン ゴ", + "synonyms": [ + "Un Go", + "Ungo" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 12231, + "mal_id": 12231, + "title": "Dragon Ball: Episode of Bardock", + "english": "Dragon Ball: Episode of Bardock", + "native": "ドラゴンボール エピソード オブ バーダック", + "synonyms": [ + "Драконий жемчуг: Эпизод Бардока" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12231, + "mal_id": 12231, + "title": "Dragon Ball: Episode of Bardock", + "english": "Dragon Ball: Episode of Bardock", + "native": "ドラゴンボール エピソード オブ バーダック", + "synonyms": [], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 12, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11061, + "mal_id": 11061, + "title": "Hunter x Hunter (2011)", + "english": "Hunter x Hunter", + "native": "HUNTER×HUNTER(ハンター×ハンター)", + "synonyms": [ + "HxH (2011)" + ], + "format": "TV", + "episodes": 148, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10397, + "mal_id": 10397, + "title": "Mashiroiro Symphony: The color of lovers", + "english": "Mashiroiro Symphony", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiroiro Symphony: Love Is Pure White", + "Mashiro-iro Symphony", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 1.3333, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Episode 0", + "native": "僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10719, + "mal_id": 10719, + "title": "Boku wa Tomodachi ga Sukunai", + "english": "Haganai: I don't have many friends", + "native": "僕は友達が少ない", + "synonyms": [ + "I Don't Have Many Friends" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 7, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Episode 0", + "native": "僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10521, + "mal_id": 10521, + "title": "Working'!!", + "english": "Wagnaria!!2", + "native": "Working[ワーキング]’!!", + "synonyms": [ + "Working!! 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Episode 0", + "native": "僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6773, + "mal_id": 6773, + "title": "Shakugan no Shana III (Final)", + "english": "Shakugan no Shana: Season III", + "native": "灼眼のシャナIII –Final–", + "synonyms": [ + "Shakugan no Shana Third", + "Shakugan no Shana 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Episode 0", + "native": "僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`)", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11123, + "mal_id": 11123, + "title": "Sekaiichi Hatsukoi 2", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love 2", + "native": "世界一初恋 2", + "synonyms": [ + "Sekai-ichi Hatsukoi 2", + "Sekai'ichi Hatsukoi 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11266, + "mal_id": 11266, + "title": "Ao no Exorcist: Kuro no Iede", + "english": "Blue Exorcist: Runaway Kuro", + "native": "青の祓魔師 クロの家出", + "synonyms": [ + "Ao no Exorcist Special", + "Ao no Futsumashi: Kuro no Iede" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11266, + "mal_id": 11266, + "title": "Ao no Exorcist: Kuro no Iede", + "english": "Blue Exorcist: Runaway Kuro", + "native": "青の祓魔師(エクソシスト) クロの家出", + "synonyms": [ + "Ao no Exorcist Special", + "Ao no Futsumashi: Kuro no Iede" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11266, + "mal_id": 11266, + "title": "Ao no Exorcist: Kuro no Iede", + "english": "Blue Exorcist: Runaway Kuro", + "native": "青の祓魔師 クロの家出", + "synonyms": [ + "Ao no Exorcist Special", + "Ao no Futsumashi: Kuro no Iede" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 10418, + "mal_id": 10418, + "title": "Deadman Wonderland: Akai Knife Tsukai", + "english": "Deadman Wonderland: The Red Knife Wielder", + "native": "デッドマン・ワンダーランド 赤いナイフ使い", + "synonyms": [ + "Deadman Wonderland OAD", + "Deadman Wonderland OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10418, + "mal_id": 10418, + "title": "Deadman Wonderland: Akai Knife Tsukai", + "english": "Deadman Wonderland: The Red Knife Wielder", + "native": "デッドマン・ワンダーランド 赤いナイフ使い", + "synonyms": [ + "Deadman Wonderland OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 10460, + "mal_id": 10460, + "title": "Kimi to Boku.", + "english": "You and Me.", + "native": "君と僕。", + "synonyms": [ + "Kimi to Boku." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 4, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9524, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10397, + "mal_id": 10397, + "title": "Mashiro-iro Symphony: The Color of Lovers", + "english": "Mashiroiro Symphony: The Color of Lovers", + "native": "ましろ色シンフォニー -The color of lovers-", + "synonyms": [ + "Mashiro-iro Symphony: Love Is Pure White", + "Mashiroiro Symphony: The Color of Lovers", + "Pure White Symphony" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 5, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 16, + "score": 0.9474, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10456, + "mal_id": 10456, + "title": "Kyoukaisenjou no Horizon", + "english": "Horizon in the Middle of Nowhere", + "native": "境界線上のホライゾン", + "synonyms": [ + "Kyoukai Senjou no Horizon" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10213, + "mal_id": 10213, + "title": "Maji de Watashi ni Koi Shinasai!", + "english": "Majikoi: Oh! Samurai Girls", + "native": "真剣で私に恋しなさい!", + "synonyms": [ + "Love Me", + "Seriously!!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 2, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10378, + "mal_id": 10378, + "title": "Shinryaku!? Ika Musume", + "english": "Squid Girl 2", + "native": "侵略!?イカ娘", + "synonyms": [ + "The Invader Comes From the Bottom of the Sea!", + "Shinryaku! Ika Musume 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10030, + "mal_id": 10030, + "title": "Bakuman. 2nd Season", + "english": "Bakuman. Season 2", + "native": "バクマン。2ndシーズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2011, + "start_date": { + "day": 1, + "month": 10, + "year": 2011 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2011-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2011-spring.json new file mode 100644 index 0000000..3f608fe --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2011-spring.json @@ -0,0 +1,6023 @@ +{ + "year": 2011, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 9515, + "mal_id": 9515, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead", + "english": "High School of the Dead: Drifters of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド", + "synonyms": [ + "High School of the Dead OVA", + "HOTD", + "HSOTD" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha", + "Viaje a Agartha", + "Csillaghajsza", + "Voyage vers Agartha", + "Die Reise nach Agartha", + "Viaggio verso Agartha", + "I bambini che inseguono le stelle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 10711, + "mal_id": 10711, + "title": "Plastic Nee-san", + "english": "Plastic Elder Sister", + "native": "+チック姉さん", + "synonyms": [ + "+tic Nee-san", + "+tic Elder Sister", + "Plustic Neesan", + "Plastic Nesan" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 9863, + "mal_id": 9863, + "title": "SKET DANCE", + "english": "SKET Dance", + "native": "SKET DANCE", + "synonyms": [ + "スケットダンス" + ], + "format": "TV", + "episodes": 77, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 9734, + "mal_id": 9734, + "title": "K-ON!!: Keikaku!", + "english": "K-ON! Season 2: Plan!", + "native": "けいおん!! 計画!", + "synonyms": [ + "Keion 2 Special", + "K-On!! 2nd Season Special" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": "Dog Days", + "native": "ドッグデイズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 9982, + "mal_id": 9982, + "title": "FAIRY TAIL OVA", + "english": null, + "native": "FAIRY TAIL OVA", + "synonyms": [], + "format": "OVA", + "episodes": 5, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 10119, + "mal_id": 10119, + "title": "Seitokai Yakuindomo OVA", + "english": null, + "native": "生徒会役員共 OVA", + "synonyms": [ + "Seitokai Yakuindomo (2011)", + "Seitokai Yakuindomo (2012)" + ], + "format": "OVA", + "episodes": 8, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 9366, + "mal_id": 9366, + "title": "Kaichou wa Maid-sama!: Omake dayo!", + "english": "Maid-Sama! It's an extra!", + "native": "会長はメイド様!おまけだよ!", + "synonyms": [ + "Kaicho wa Maid-sama! Special", + "Kaicho wa Maidsama! Special", + "Kaichou wa Meido Sama Special", + "Class President is a Maid! Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 11 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "STEINS;GATE", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [ + "DEADMAN WONDERLAND" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha: Blossoms for Tomorrow", + "native": "花咲くいろは", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 10163, + "mal_id": 10163, + "title": "C: The Money of Soul and Possibility Control", + "english": "[C] CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 9515, + "mal_id": 9515, + "title": "Highschool of the Dead: Drifters of the Dead", + "english": "High School of the Dead: Drifters of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド", + "synonyms": [ + "High School of the Dead OVA", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "Drifters of the Dead" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 9863, + "mal_id": 9863, + "title": "SKET Dance", + "english": "SKET Dance", + "native": "スケットダンス", + "synonyms": [], + "format": "TV", + "episodes": 77, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 7, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children Who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 5, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji: Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "Gyakkyou Burai Kaiji S2", + "The Suffering Pariah Kaiji: Backslide Arc" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 10711, + "mal_id": 10711, + "title": "Plastic Neesan", + "english": null, + "native": "+チック姉さん", + "synonyms": [ + "+tic Nee-san", + "+tic Elder Sister", + "Plustic Neesan", + "Plastic Nee-san", + "Purasu Chikku Neesan", + "Plastic Elder Sister" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 5, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": null, + "native": "ドッグデイズ", + "synonyms": [ + "Dog Days" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 2, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 9982, + "mal_id": 9982, + "title": "Fairy Tail OVA", + "english": null, + "native": "フェアリーテイル OVA", + "synonyms": [ + "Fairy Tail: Youkoso Fairy Hills!", + "Yousei Gakuen: Yankee-kun to Yankee-chan" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 9790, + "mal_id": 9790, + "title": "Sora no Otoshimono: Tokeijikake no Angeloid", + "english": "Heaven's Lost Property the Movie: The Angeloid of Clockwork", + "native": "劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド)", + "synonyms": [ + "Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid", + "Sora no Otoshimono: The Movie", + "Lost Property of the Sky Movie", + "Misplaced by Heaven" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 6, + "year": 2011 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "STEINS;GATE", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 21, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "シュタインズ・ゲート", + "synonyms": [ + "S;G", + "סטיינס;גייט", + "命运石之门", + "Врата;Штейна" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi", + "اللهب الأزرق", + "Ο Γαλάζιος Εξορκιστής " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [ + "DEADMAN WONDERLAND" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.8951, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day.", + "אנוהאנה: הפרח שראינו ביום ההוא", + "อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ", + "あの花", + "AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [ + "DEADMAN WONDERLAND" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 6880, + "mal_id": 6880, + "title": "Deadman Wonderland", + "english": "Deadman Wonderland", + "native": "デッドマン・ワンダーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday", + "Мелочи Жизни", + "Повсякденнощі" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": null, + "native": "ドッグデイズ", + "synonyms": [ + "Dog Days" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 2, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂’", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha: Blossoms for Tomorrow", + "native": "花咲くいろは", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 9989, + "mal_id": 9989, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai.", + "english": "Anohana: The Flower We Saw That Day", + "native": "あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana", + "We Still Don't Know the Name of the Flower We Saw That Day." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha ~Blossoms for Tomorrow~", + "native": "花咲くいろは", + "synonyms": [ + "Hana-Saku Iroha", + "Hanairo", + "花开伊吕波" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイⅡ", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2", + "Que sa volonté soit faite II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Aria da Bala Escarlate" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10163, + "mal_id": 10163, + "title": "C: The Money of Soul and Possibility Control", + "english": "[C] CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.8944, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man", + "หนุ่มสามัญกับสาวหลุดโลก", + "电波女与青春男", + "電波女與青春男", + "전파녀와 청춘남", + "Дівчинка-Електромагнітна хвиля і хлопець-підліток", + "Радиодевушка и юноша", + "Радиосигнал от чудачки. Юноша на связи", + "امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 9515, + "mal_id": 9515, + "title": "Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead", + "english": "High School of the Dead: Drifters of the Dead", + "native": "学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド", + "synonyms": [ + "High School of the Dead OVA", + "HOTD", + "HSOTD" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 9515, + "mal_id": 9515, + "title": "Highschool of the Dead: Drifters of the Dead", + "english": "High School of the Dead: Drifters of the Dead", + "native": "学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド", + "synonyms": [ + "High School of the Dead OVA", + "Gakuen Mokushiroku: Highschool of the Dead", + "HOTD", + "HSOTD", + "Drifters of the Dead" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10163, + "mal_id": 10163, + "title": "C: The Money of Soul and Possibility Control", + "english": "[C] CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 9379, + "mal_id": 9379, + "title": "Denpa Onna to Seishun Otoko", + "english": "Ground Control to Psychoelectric Girl", + "native": "電波女と青春男", + "synonyms": [ + "Electromagnetic Wave Woman and Adolescent Man" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 22, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10163, + "mal_id": 10163, + "title": "C: THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "english": "[C] - CONTROL - The Money and Soul of Possibility", + "native": "「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL", + "synonyms": [ + "[C] The Money of Soul and Possibility Control", + "[C] - Control", + "C-Control", + "The Money of Souland Possibility Controul", + "Dusza na sprzedaż", + "C" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha", + "Viaje a Agartha", + "Csillaghajsza", + "Voyage vers Agartha", + "Die Reise nach Agartha", + "Viaggio verso Agartha", + "I bambini che inseguono le stelle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children Who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 5, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9172, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha", + "Viaje a Agartha", + "Csillaghajsza", + "Voyage vers Agartha", + "Die Reise nach Agartha", + "Viaggio verso Agartha", + "I bambini che inseguono le stelle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 0.8727, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 9760, + "mal_id": 9760, + "title": "Hoshi wo Ou Kodomo", + "english": "Children who Chase Lost Voices", + "native": "星を追う子ども", + "synonyms": [ + "Children who Chase Lost Voices from Deep Below", + "Journey to Agartha", + "Viaje a Agartha", + "Csillaghajsza", + "Voyage vers Agartha", + "Die Reise nach Agartha", + "Viaggio verso Agartha", + "I bambini che inseguono le stelle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji: Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "Gyakkyou Burai Kaiji S2", + "The Suffering Pariah Kaiji: Backslide Arc" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji - Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "The Suffering Pariah Kaiji: Backslide Arc", + "Kaiji 2" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 10711, + "mal_id": 10711, + "title": "Plastic Nee-san", + "english": "Plastic Elder Sister", + "native": "+チック姉さん", + "synonyms": [ + "+tic Nee-san", + "+tic Elder Sister", + "Plustic Neesan", + "Plastic Nesan" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 10711, + "mal_id": 10711, + "title": "Plastic Neesan", + "english": null, + "native": "+チック姉さん", + "synonyms": [ + "+tic Nee-san", + "+tic Elder Sister", + "Plustic Neesan", + "Plastic Nee-san", + "Purasu Chikku Neesan", + "Plastic Elder Sister" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 5, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 9941, + "mal_id": 9941, + "title": "Tiger & Bunny", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY (タイガー・アンド・バニー)", + "synonyms": [ + "Tiger and Bunny", + "Taibani" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9941, + "mal_id": 9941, + "title": "TIGER & BUNNY", + "english": "Tiger & Bunny", + "native": "TIGER & BUNNY", + "synonyms": [ + "タイガー・アンド・バニー", + "Tiger and Bunny", + "Taibani", + "Тигр та Кролик" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9863, + "mal_id": 9863, + "title": "SKET DANCE", + "english": "SKET Dance", + "native": "SKET DANCE", + "synonyms": [ + "スケットダンス" + ], + "format": "TV", + "episodes": 77, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 9863, + "mal_id": 9863, + "title": "SKET Dance", + "english": "SKET Dance", + "native": "スケットダンス", + "synonyms": [], + "format": "TV", + "episodes": 77, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 7, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 9863, + "mal_id": 9863, + "title": "SKET DANCE", + "english": "SKET Dance", + "native": "SKET DANCE", + "synonyms": [ + "スケットダンス" + ], + "format": "TV", + "episodes": 77, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "STEINS;GATE", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 0.9882, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9734, + "mal_id": 9734, + "title": "K-ON!!: Keikaku!", + "english": "K-ON! Season 2: Plan!", + "native": "けいおん!! 計画!", + "synonyms": [ + "Keion 2 Special", + "K-On!! 2nd Season Special" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 0.9614, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9734, + "mal_id": 9734, + "title": "K-ON!!: Keikaku!", + "english": "K-ON! Season 2: Plan!", + "native": "けいおん!! 計画!", + "synonyms": [ + "Keion 2 Special", + "K-On!! 2nd Season Special" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9734, + "mal_id": 9734, + "title": "K-ON!!: Keikaku!", + "english": "K-ON! Season 2: Plan!", + "native": "けいおん!! 計画!", + "synonyms": [ + "Keion 2 Special", + "K-On!! 2nd Season Special" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10073, + "mal_id": 10073, + "title": "Seikon no Qwaser II", + "english": "The Qwaser of Stigmata II", + "native": "聖痕のクェイサー II", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": "Dog Days", + "native": "ドッグデイズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": null, + "native": "ドッグデイズ", + "synonyms": [ + "Dog Days" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 2, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 10155, + "mal_id": 10155, + "title": "Dog Days", + "english": "Dog Days", + "native": "ドッグデイズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10165, + "mal_id": 10165, + "title": "Nichijou", + "english": "Nichijou - My Ordinary Life", + "native": "日常", + "synonyms": [ + "Everyday" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 9982, + "mal_id": 9982, + "title": "FAIRY TAIL OVA", + "english": null, + "native": "FAIRY TAIL OVA", + "synonyms": [], + "format": "OVA", + "episodes": 5, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 9982, + "mal_id": 9982, + "title": "Fairy Tail OVA", + "english": null, + "native": "フェアリーテイル OVA", + "synonyms": [ + "Fairy Tail: Youkoso Fairy Hills!", + "Yousei Gakuen: Yankee-kun to Yankee-chan" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha: Blossoms for Tomorrow", + "native": "花咲くいろは", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "星架か", + "HoshiKaka", + "Hoshizora - Ponte para o Céu Estrelado", + "Un puente al cielo estrellado" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10271, + "mal_id": 10271, + "title": "Gyakkyou Burai Kaiji: Hakairoku-hen", + "english": "Kaiji: Against All Rules", + "native": "逆境無頼カイジ 破戒録篇", + "synonyms": [ + "Gyakkyou Burai Kaiji S2", + "The Suffering Pariah Kaiji: Backslide Arc" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 9, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 10079, + "mal_id": 10079, + "title": "Hoshizora e Kakaru Hashi", + "english": "A Bridge to the Starry Skies", + "native": "星空へ架かる橋", + "synonyms": [ + "Hoshizora e Kakaru Hashi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9253, + "mal_id": 9253, + "title": "Steins;Gate", + "english": "Steins;Gate", + "native": "STEINS;GATE", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 6, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10080, + "mal_id": 10080, + "title": "Kami nomi zo Shiru Sekai II", + "english": "The World God Only Knows II", + "native": "神のみぞ知るセカイ II", + "synonyms": [ + "Kami nomi zo Shiru Sekai 2", + "Kaminomi II", + "The World God Only Knows 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 12, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9926, + "mal_id": 9926, + "title": "Sekaiichi Hatsukoi", + "english": "Sekai Ichi Hatsukoi - The World's Greatest First Love", + "native": "世界一初恋 TV", + "synonyms": [ + "Sekai-ichi Hatsukoi", + "Sekai'ichi Hatsukoi", + "World's Greatest First Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 11, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9919, + "mal_id": 9919, + "title": "Ao no Exorcist", + "english": "Blue Exorcist", + "native": "青の祓魔師", + "synonyms": [ + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 17, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 8630, + "mal_id": 8630, + "title": "Hidan no Aria", + "english": "Aria the Scarlet Ammo", + "native": "緋弾のアリア", + "synonyms": [ + "Hidan no Aria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9289, + "mal_id": 9289, + "title": "Hanasaku Iroha", + "english": "Hanasaku Iroha: Blossoms for Tomorrow", + "native": "花咲くいろは", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 9736, + "mal_id": 9736, + "title": "Astarotte no Omocha!", + "english": "Astarotte's Toy", + "native": "アスタロッテのおもちゃ!", + "synonyms": [ + "Lotte no Omocha!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 10119, + "mal_id": 10119, + "title": "Seitokai Yakuindomo OVA", + "english": null, + "native": "生徒会役員共 OVA", + "synonyms": [ + "Seitokai Yakuindomo (2011)", + "Seitokai Yakuindomo (2012)" + ], + "format": "OVA", + "episodes": 8, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 9982, + "mal_id": 9982, + "title": "Fairy Tail OVA", + "english": null, + "native": "フェアリーテイル OVA", + "synonyms": [ + "Fairy Tail: Youkoso Fairy Hills!", + "Yousei Gakuen: Yankee-kun to Yankee-chan" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 10119, + "mal_id": 10119, + "title": "Seitokai Yakuindomo OVA", + "english": null, + "native": "生徒会役員共 OVA", + "synonyms": [ + "Seitokai Yakuindomo (2011)", + "Seitokai Yakuindomo (2012)" + ], + "format": "OVA", + "episodes": 8, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10033, + "mal_id": 10033, + "title": "Toriko", + "english": "Toriko", + "native": "トリコ", + "synonyms": [ + "Toriko (2011)", + "Toriko (TV)", + "Toriko x One Piece Collabo Special" + ], + "format": "TV", + "episodes": 147, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 3, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 9366, + "mal_id": 9366, + "title": "Kaichou wa Maid-sama!: Omake dayo!", + "english": "Maid-Sama! It's an extra!", + "native": "会長はメイド様!おまけだよ!", + "synonyms": [ + "Kaicho wa Maid-sama! Special", + "Kaicho wa Maidsama! Special", + "Kaichou wa Meido Sama Special", + "Class President is a Maid! Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2011, + "start_date": { + "year": 2011, + "month": 5, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9969, + "mal_id": 9969, + "title": "Gintama'", + "english": "Gintama Season 2", + "native": "銀魂'", + "synonyms": [ + "Gintama (2011)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2011, + "start_date": { + "day": 4, + "month": 4, + "year": 2011 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2011-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2011-summer.json new file mode 100644 index 0000000..fd5b1de --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2011-summer.json @@ -0,0 +1,5609 @@ +{ + "year": 2011, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "To the Forest of Firefly Lights", + "สู่ป่าแห่งแสงหิ่งห้อย", + "Lạc Vào Khu Rừng Đom Đóm" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 10161, + "mal_id": 10161, + "title": "NO.6", + "english": "No.6", + "native": "NO.6", + "synonyms": [ + "ナンバー・シックス" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "BLOOD-C", + "english": "Blood-C", + "native": "BLOOD-C", + "synonyms": [ + "ブラッドシー" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 10029, + "mal_id": 10029, + "title": "Coquelicot-zaka kara", + "english": "From Up on Poppy Hill", + "native": "コクリコ坂から", + "synonyms": [ + "Kokuriko-saka kara", + "Kokuriko-zaka kara", + "La Colina de las Amapolas", + "Da Colina Kokuriko", + "La collina dei papaveri", + "A Colina das Papoilas", + "La Colline aux coquelicots", + "Der Mohnblumenberg", + "Makowe wzgórze", + "من أعلى تلة الخشخاش", + "Møte på valmueåsen", + "Uppe på vallmokullen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 10012, + "mal_id": 10012, + "title": "Carnival Phantasm", + "english": null, + "native": "カーニバル・ファンタズム", + "synonyms": [ + "Карнавальный Фантазм" + ], + "format": "OVA", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 8, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 10589, + "mal_id": 10589, + "title": "NARUTO: Blood Prison", + "english": "Naruto Shippuden the Movie: Blood Prison", + "native": "劇場版 NARUTO -ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Naruto Shippuuden Movie 5", + "Naruto Shippūden la película: Prisión de sangre", + "Naruto Shippuden Movie 05: La prigione insanguinata" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 9135, + "mal_id": 9135, + "title": "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", + "english": "Fullmetal Alchemist: The Sacred Star of Milos", + "native": "鋼の錬金術師 嘆きの丘の聖なる星", + "synonyms": [ + "Fullmetal Alchemist Movie 2", + "Hagane no Renkinjutsushi Movie 2", + "FMA Movie 2", + "Fullmetal Alchemist: La Estrella Sagrada de Milos", + "钢之炼金术师 叹息之丘的圣星", + "Fullmetal Alchemist – Święta Gwiazda Milos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 10209, + "mal_id": 10209, + "title": "Kore wa Zombie desu ka? OVA", + "english": "Is this a Zombie? OVA", + "native": "これはゾンビですか? OVA", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 6, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 9790, + "mal_id": 9790, + "title": "Sora no Otoshimono: Tokeijikake no Angeloid", + "english": "Heaven's Lost Property the Movie: The Angeloid of Clockwork", + "native": "劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド)", + "synonyms": [ + "Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid", + "Sora no Otoshimono: The Movie", + "Lost Property of the Sky Movie", + "Misplaced by Heaven" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 10805, + "mal_id": 10805, + "title": "Kami nomi zo Shiru Sekai: 4-nin to Idol", + "english": "The World God Only Knows: 4 Girls and an Idol", + "native": "神のみぞ知るセカイ 4人とアイドル", + "synonyms": [ + "Kami nomi zo Shiru Sekai: Yonin to Idol", + "Kaminomi OVA", + "Kami Nomi zo Shiru Sekai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 11077, + "mal_id": 11077, + "title": "HELLSING: THE DAWN", + "english": null, + "native": "HELLSING:THE DAWN", + "synonyms": [ + "Hellsing: The Dawn: A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "漫画:THE DAWN", + "ヘルシング: THE DAWN" + ], + "format": "SPECIAL", + "episodes": 3, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 10686, + "mal_id": 10686, + "title": "NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!", + "english": null, + "native": "NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!!", + "synonyms": [ + "Naruto Shippuden: Chuunin Exam on Fire! Naruto vs. Konohamaru!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 10389, + "mal_id": 10389, + "title": "Momo e no Tegami", + "english": "A Letter to Momo", + "native": "ももへの手紙", + "synonyms": [ + "Una Carta para Momo", + "Lettre à Momo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "The Light of a Firefly Forest" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 9, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "Usagi Drop" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "Blood-C", + "english": "Blood-C", + "native": "ブラッドシー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri: Happy Go Lily", + "native": "ゆるゆり", + "synonyms": [ + "YRYR", + "Yuruyuri" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 10589, + "mal_id": 10589, + "title": "Naruto: Shippuuden Movie 5 - Blood Prison", + "english": "Naruto Shippuden the Movie 5: Blood Prison", + "native": "劇場版NARUTO-ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Gekijouban Naruto: Blood Prison" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 10029, + "mal_id": 10029, + "title": "Coquelicot-zaka kara", + "english": "From Up on Poppy Hill", + "native": "コクリコ坂から", + "synonyms": [ + "Coquelicot-zaka kara", + "Kokuriko-saka kara", + "Kokuriko-zaka kara", + "Coquelicot Saka kara", + "Kokurikozaka kara" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 10012, + "mal_id": 10012, + "title": "Carnival Phantasm", + "english": null, + "native": "カーニバル・ファンタズム", + "synonyms": [], + "format": "OVA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 8, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 9135, + "mal_id": 9135, + "title": "Fullmetal Alchemist: The Sacred Star of Milos", + "english": "Fullmetal Alchemist: The Sacred Star of Milos", + "native": "劇場版 鋼の錬金術師 嘆きの丘(ミロス)の聖なる星", + "synonyms": [ + "Fullmetal Alchemist: Milos no Seinaru Hoshi", + "Fullmetal Alchemist Movie 2", + "Hagane no Renkinjutsushi Movie 2", + "FMA Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 10278, + "mal_id": 10278, + "title": "The iDOLM@STER", + "english": "THE IDOLM@STER", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 10897, + "mal_id": 10897, + "title": "Boku wa Tomodachi ga Sukunai: Yaminabe wa Bishoujo ga Zannen na Nioi", + "english": "Haganai: Black Hotpot Gives Girls a Bad Smell", + "native": "僕は友達が少ない 闇鍋は美少女が残念な臭い", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai Episode 0", + "Boku wa Tomodachi ga Sukunai OVA", + "Haganai OVA", + "I Don't Have Many Friends OVA", + "Boku ha Tomodachi ga Sukunai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 9, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 10805, + "mal_id": 10805, + "title": "Kami nomi zo Shiru Sekai: 4-nin to Idol", + "english": "The World God Only Knows: Four Girls and an Idol", + "native": "神のみぞ知るセカイ 4人とアイドル", + "synonyms": [ + "Kami nomi zo Shiru Sekai: Yonin to Idol", + "Kaminomi OVA", + "Kami Nomi zo Shiru Sekai OVA", + "The World God Only Knows: Four People and an Idol" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 9, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 11077, + "mal_id": 11077, + "title": "Hellsing: The Dawn", + "english": null, + "native": "HELLSING THE DAWN", + "synonyms": [ + "Hellsing: The Dawn - A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "Drifters" + ], + "format": "Special", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 10611, + "mal_id": 10611, + "title": "R-15", + "english": null, + "native": "あーるじゅうご", + "synonyms": [ + "R-15" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 10, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 10491, + "mal_id": 10491, + "title": "Higurashi no Naku Koro ni Kira", + "english": null, + "native": "ひぐらしのなく頃に煌", + "synonyms": [ + "Higurashi no Naku Koro ni OVA 2", + "When They Cry Glitter", + "Higurashi: When They Cry – Kira" + ], + "format": "OVA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "To the Forest of Firefly Lights", + "สู่ป่าแห่งแสงหิ่งห้อย", + "Lạc Vào Khu Rừng Đom Đóm" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "The Light of a Firefly Forest" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 9, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9263, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "To the Forest of Firefly Lights", + "สู่ป่าแห่งแสงหิ่งห้อย", + "Lạc Vào Khu Rừng Đom Đóm" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 10408, + "mal_id": 10408, + "title": "Hotarubi no Mori e", + "english": "Into the Forest of Fireflies' Light", + "native": "蛍火の杜へ", + "synonyms": [ + "To the Forest of Firefly Lights", + "สู่ป่าแห่งแสงหิ่งห้อย", + "Lạc Vào Khu Rừng Đom Đóm" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10161, + "mal_id": 10161, + "title": "NO.6", + "english": "No.6", + "native": "NO.6", + "synonyms": [ + "ナンバー・シックス" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 10161, + "mal_id": 10161, + "title": "NO.6", + "english": "No.6", + "native": "NO.6", + "synonyms": [ + "ナンバー・シックス" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "Blood-C", + "english": "Blood-C", + "native": "ブラッドシー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "Usagi Drop" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "白兔糖", + "Un drôle de père", + "White Rabbit Candy" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 10110, + "mal_id": 10110, + "title": "Mayo Chiki!", + "english": "Mayo Chiki!", + "native": "まよチキ!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "BLOOD-C", + "english": "Blood-C", + "native": "BLOOD-C", + "synonyms": [ + "ブラッドシー" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "Blood-C", + "english": "Blood-C", + "native": "ブラッドシー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "BLOOD-C", + "english": "Blood-C", + "native": "BLOOD-C", + "synonyms": [ + "ブラッドシー" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "BLOOD-C", + "english": "Blood-C", + "native": "BLOOD-C", + "synonyms": [ + "ブラッドシー" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri: Happy Go Lily", + "native": "ゆるゆり", + "synonyms": [ + "YRYR", + "Yuruyuri" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri", + "native": "ゆるゆり", + "synonyms": [ + "YRYR" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 10162, + "mal_id": 10162, + "title": "Usagi Drop", + "english": "Bunny Drop", + "native": "うさぎドロップ", + "synonyms": [ + "Usagi Drop" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 10721, + "mal_id": 10721, + "title": "Mawaru Penguindrum", + "english": "Penguindrum", + "native": "輪るピングドラム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri: Happy Go Lily", + "native": "ゆるゆり", + "synonyms": [ + "YRYR", + "Yuruyuri" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10278, + "mal_id": 10278, + "title": "The iDOLM@STER", + "english": "THE IDOLM@STER", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka and Test - Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 10029, + "mal_id": 10029, + "title": "Coquelicot-zaka kara", + "english": "From Up on Poppy Hill", + "native": "コクリコ坂から", + "synonyms": [ + "Kokuriko-saka kara", + "Kokuriko-zaka kara", + "La Colina de las Amapolas", + "Da Colina Kokuriko", + "La collina dei papaveri", + "A Colina das Papoilas", + "La Colline aux coquelicots", + "Der Mohnblumenberg", + "Makowe wzgórze", + "من أعلى تلة الخشخاش", + "Møte på valmueåsen", + "Uppe på vallmokullen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 10029, + "mal_id": 10029, + "title": "Coquelicot-zaka kara", + "english": "From Up on Poppy Hill", + "native": "コクリコ坂から", + "synonyms": [ + "Coquelicot-zaka kara", + "Kokuriko-saka kara", + "Kokuriko-zaka kara", + "Coquelicot Saka kara", + "Kokurikozaka kara" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 0.9116, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 10029, + "mal_id": 10029, + "title": "Coquelicot-zaka kara", + "english": "From Up on Poppy Hill", + "native": "コクリコ坂から", + "synonyms": [ + "Kokuriko-saka kara", + "Kokuriko-zaka kara", + "La Colina de las Amapolas", + "Da Colina Kokuriko", + "La collina dei papaveri", + "A Colina das Papoilas", + "La Colline aux coquelicots", + "Der Mohnblumenberg", + "Makowe wzgórze", + "من أعلى تلة الخشخاش", + "Møte på valmueåsen", + "Uppe på vallmokullen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10012, + "mal_id": 10012, + "title": "Carnival Phantasm", + "english": null, + "native": "カーニバル・ファンタズム", + "synonyms": [ + "Карнавальный Фантазм" + ], + "format": "OVA", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 8, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 10012, + "mal_id": 10012, + "title": "Carnival Phantasm", + "english": null, + "native": "カーニバル・ファンタズム", + "synonyms": [], + "format": "OVA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 8, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10589, + "mal_id": 10589, + "title": "NARUTO: Blood Prison", + "english": "Naruto Shippuden the Movie: Blood Prison", + "native": "劇場版 NARUTO -ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Naruto Shippuuden Movie 5", + "Naruto Shippūden la película: Prisión de sangre", + "Naruto Shippuden Movie 05: La prigione insanguinata" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10589, + "mal_id": 10589, + "title": "Naruto: Shippuuden Movie 5 - Blood Prison", + "english": "Naruto Shippuden the Movie 5: Blood Prison", + "native": "劇場版NARUTO-ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Gekijouban Naruto: Blood Prison" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 0.8906, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10589, + "mal_id": 10589, + "title": "NARUTO: Blood Prison", + "english": "Naruto Shippuden the Movie: Blood Prison", + "native": "劇場版 NARUTO -ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Naruto Shippuuden Movie 5", + "Naruto Shippūden la película: Prisión de sangre", + "Naruto Shippuden Movie 05: La prigione insanguinata" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10589, + "mal_id": 10589, + "title": "NARUTO: Blood Prison", + "english": "Naruto Shippuden the Movie: Blood Prison", + "native": "劇場版 NARUTO -ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Naruto Shippuuden Movie 5", + "Naruto Shippūden la película: Prisión de sangre", + "Naruto Shippuden Movie 05: La prigione insanguinata" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 10589, + "mal_id": 10589, + "title": "NARUTO: Blood Prison", + "english": "Naruto Shippuden the Movie: Blood Prison", + "native": "劇場版 NARUTO -ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Naruto Shippuuden Movie 5", + "Naruto Shippūden la película: Prisión de sangre", + "Naruto Shippuden Movie 05: La prigione insanguinata" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 10490, + "mal_id": 10490, + "title": "Blood-C", + "english": "Blood-C", + "native": "ブラッドシー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kamisama no Memo-chou", + "God's Notebook", + "Kamisama no Memo-chou: It's the Only NEET Thing to Do.", + "ผ่าคดีลับนักสืบนีท" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 10465, + "mal_id": 10465, + "title": "Manyuu Hikenchou", + "english": "Manyu Scroll", + "native": "魔乳秘剣帖", + "synonyms": [ + "Magic Breast Secret Sword Scroll" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 11, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3", + "O Livro de Amigos de Natsume 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10278, + "mal_id": 10278, + "title": "The iDOLM@STER", + "english": "THE IDOLM@STER", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 10379, + "mal_id": 10379, + "title": "Natsume Yuujinchou San", + "english": "Natsume's Book of Friends Season 3", + "native": "夏目友人帳 参", + "synonyms": [ + "Natsume Yuujinchou Three", + "Natsume Yuujinchou 3", + "Natsume Yujincho 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 10, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 10278, + "mal_id": 10278, + "title": "THE IDOLM@STER", + "english": "The Idol Master", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster", + "The iDOLM@STER" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 9135, + "mal_id": 9135, + "title": "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", + "english": "Fullmetal Alchemist: The Sacred Star of Milos", + "native": "鋼の錬金術師 嘆きの丘の聖なる星", + "synonyms": [ + "Fullmetal Alchemist Movie 2", + "Hagane no Renkinjutsushi Movie 2", + "FMA Movie 2", + "Fullmetal Alchemist: La Estrella Sagrada de Milos", + "钢之炼金术师 叹息之丘的圣星", + "Fullmetal Alchemist – Święta Gwiazda Milos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 9135, + "mal_id": 9135, + "title": "Fullmetal Alchemist: The Sacred Star of Milos", + "english": "Fullmetal Alchemist: The Sacred Star of Milos", + "native": "劇場版 鋼の錬金術師 嘆きの丘(ミロス)の聖なる星", + "synonyms": [ + "Fullmetal Alchemist: Milos no Seinaru Hoshi", + "Fullmetal Alchemist Movie 2", + "Hagane no Renkinjutsushi Movie 2", + "FMA Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 9135, + "mal_id": 9135, + "title": "Hagane no Renkinjutsushi: Milos no Seinaru Hoshi", + "english": "Fullmetal Alchemist: The Sacred Star of Milos", + "native": "鋼の錬金術師 嘆きの丘の聖なる星", + "synonyms": [ + "Fullmetal Alchemist Movie 2", + "Hagane no Renkinjutsushi Movie 2", + "FMA Movie 2", + "Fullmetal Alchemist: La Estrella Sagrada de Milos", + "钢之炼金术师 叹息之丘的圣星", + "Fullmetal Alchemist – Święta Gwiazda Milos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri: Happy Go Lily", + "native": "ゆるゆり", + "synonyms": [ + "YRYR", + "Yuruyuri" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji LOVE 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama: Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 0.9085, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 9790, + "mal_id": 9790, + "title": "Sora no Otoshimono: Tokeijikake no Angeloid", + "english": "Heaven's Lost Property the Movie: The Angeloid of Clockwork", + "native": "劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド)", + "synonyms": [ + "Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid", + "Sora no Otoshimono: The Movie", + "Lost Property of the Sky Movie", + "Misplaced by Heaven" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 10805, + "mal_id": 10805, + "title": "Kami nomi zo Shiru Sekai: 4-nin to Idol", + "english": "The World God Only Knows: 4 Girls and an Idol", + "native": "神のみぞ知るセカイ 4人とアイドル", + "synonyms": [ + "Kami nomi zo Shiru Sekai: Yonin to Idol", + "Kaminomi OVA", + "Kami Nomi zo Shiru Sekai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 10805, + "mal_id": 10805, + "title": "Kami nomi zo Shiru Sekai: 4-nin to Idol", + "english": "The World God Only Knows: Four Girls and an Idol", + "native": "神のみぞ知るセカイ 4人とアイドル", + "synonyms": [ + "Kami nomi zo Shiru Sekai: Yonin to Idol", + "Kaminomi OVA", + "Kami Nomi zo Shiru Sekai OVA", + "The World God Only Knows: Four People and an Idol" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 9, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 10805, + "mal_id": 10805, + "title": "Kami nomi zo Shiru Sekai: 4-nin to Idol", + "english": "The World God Only Knows: 4 Girls and an Idol", + "native": "神のみぞ知るセカイ 4人とアイドル", + "synonyms": [ + "Kami nomi zo Shiru Sekai: Yonin to Idol", + "Kaminomi OVA", + "Kami Nomi zo Shiru Sekai OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 10495, + "mal_id": 10495, + "title": "Yuru Yuri", + "english": "YuruYuri: Happy Go Lily", + "native": "ゆるゆり", + "synonyms": [ + "YRYR", + "Yuruyuri" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 5, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10049, + "mal_id": 10049, + "title": "Nurarihyon no Mago: Sennen Makyou", + "english": "Nura: Rise of the Yokai Clan - Demon Capital", + "native": "ぬらりひょんの孫 千年魔京", + "synonyms": [ + "Nurarihyon no Mago 2", + "The Grandson of Nurarihyon 2", + "Grandchild of Nurarihyon 2", + "Nura: Rise of the Yokai Clan: Demon Capital" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "ItsuTen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 9, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 10321, + "mal_id": 10321, + "title": "Uta no☆Prince-sama♪ Maji Love 1000%", + "english": "Uta no Prince Sama", + "native": "うたの☆プリンスさまっ♪ マジLOVE1000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000%", + "UtaPri" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 3, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 17, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9750, + "mal_id": 9750, + "title": "Itsuka Tenma no Kuro Usagi", + "english": "A Dark Rabbit has Seven Lives", + "native": "いつか天魔の黒ウサギ", + "synonyms": [ + "Itsuka Tenma no Kuro-Usagi", + "Itsuten", + "Itsu-ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 8915, + "mal_id": 8915, + "title": "Dantalian no Shoka", + "english": "The Mystic Archives of Dantalian", + "native": "ダンタリアンの書架", + "synonyms": [ + "Bibliotheca Mystica de Dantalian", + "Dantalian's Bookshelf" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 16, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11077, + "mal_id": 11077, + "title": "HELLSING: THE DAWN", + "english": null, + "native": "HELLSING:THE DAWN", + "synonyms": [ + "Hellsing: The Dawn: A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "漫画:THE DAWN", + "ヘルシング: THE DAWN" + ], + "format": "SPECIAL", + "episodes": 3, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11077, + "mal_id": 11077, + "title": "Hellsing: The Dawn", + "english": null, + "native": "HELLSING THE DAWN", + "synonyms": [ + "Hellsing: The Dawn - A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "Drifters" + ], + "format": "Special", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.9882, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11077, + "mal_id": 11077, + "title": "HELLSING: THE DAWN", + "english": null, + "native": "HELLSING:THE DAWN", + "synonyms": [ + "Hellsing: The Dawn: A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "漫画:THE DAWN", + "ヘルシング: THE DAWN" + ], + "format": "SPECIAL", + "episodes": 3, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 8516, + "mal_id": 8516, + "title": "Baka to Test to Shoukanjuu Ni!", + "english": "Baka & Test – Summon the Beasts 2", + "native": "バカとテストと召喚獣 にっ!", + "synonyms": [ + "Baka to Test to Shoukanjuu 2", + "The Idiot", + "the Tests", + "and the Summoned Creatures 2", + "Baka and Test - Summon the Beasts", + "Baka to Test to Shokanju 2", + "BakaTest 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11077, + "mal_id": 11077, + "title": "HELLSING: THE DAWN", + "english": null, + "native": "HELLSING:THE DAWN", + "synonyms": [ + "Hellsing: The Dawn: A supplementary of HELLSING", + "Hellsing OVA Specials", + "Hellsing Ultimate Specials", + "漫画:THE DAWN", + "ヘルシング: THE DAWN" + ], + "format": "SPECIAL", + "episodes": 3, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10278, + "mal_id": 10278, + "title": "The iDOLM@STER", + "english": "THE IDOLM@STER", + "native": "アイドルマスター", + "synonyms": [ + "The Idolmaster" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 10686, + "mal_id": 10686, + "title": "NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!", + "english": null, + "native": "NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!!", + "synonyms": [ + "Naruto Shippuden: Chuunin Exam on Fire! Naruto vs. Konohamaru!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 10161, + "mal_id": 10161, + "title": "No.6", + "english": "No. 6", + "native": "NO.6[ナンバー・シックス]", + "synonyms": [ + "Number Six", + "Number 6", + "No. Six" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 8, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 10686, + "mal_id": 10686, + "title": "NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!", + "english": null, + "native": "NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!!", + "synonyms": [ + "Naruto Shippuden: Chuunin Exam on Fire! Naruto vs. Konohamaru!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 7, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10589, + "mal_id": 10589, + "title": "Naruto: Shippuuden Movie 5 - Blood Prison", + "english": "Naruto Shippuden the Movie 5: Blood Prison", + "native": "劇場版NARUTO-ナルト- ブラッド・プリズン", + "synonyms": [ + "Naruto Movie 8", + "Gekijouban Naruto: Blood Prison" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10389, + "mal_id": 10389, + "title": "Momo e no Tegami", + "english": "A Letter to Momo", + "native": "ももへの手紙", + "synonyms": [ + "Una Carta para Momo", + "Lettre à Momo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 9, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10568, + "mal_id": 10568, + "title": "Kamisama no Memochou", + "english": "Heaven's Memo Pad", + "native": "神様のメモ帳", + "synonyms": [ + "It's the Only NEET Thing to Do", + "Kami-sama no Memo-chou", + "Kami-sama no Memo-chou", + "God's Notebook", + "Notebook of God" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2011, + "start_date": { + "day": 2, + "month": 7, + "year": 2011 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2011-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2011-winter.json new file mode 100644 index 0000000..1c2b382 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2011-winter.json @@ -0,0 +1,4167 @@ +{ + "year": 2011, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka☆Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか☆マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica", + "PMMM", + "MSMM", + "הנערה הקסומה מאדוקה מאגיקה", + "Девочка-волшебница Мадока☆Волшебство", + "Μάντοκα, το Μαγικό Κορίτσι", + "สาวน้อยเวทมนตร์ มาโดกะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS〈インフィニット・ストラトス〉", + "synonyms": [ + "IS ปฏิบัติการรักจักรกลทะยานฟ้า" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 8425, + "mal_id": 8425, + "title": "GOSICK", + "english": "Gosick", + "native": "GOSICK", + "synonyms": [ + "ゴシック" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is this a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 11553, + "mal_id": 11553, + "title": "Toradora!: Bentou no Gokui", + "english": "Toradora!: Bento Battle", + "native": "とらドラ! 弁当の極意", + "synonyms": [ + "Toradora! Special" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 10020, + "mal_id": 10020, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai (ONA)", + "english": "Oreimo (ONA)", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute Specials", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ตอนพิเศษ" + ], + "format": "ONA", + "episodes": 4, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 6954, + "mal_id": 6954, + "title": "Kara no Kyoukai: Shuushou", + "english": "the Garden of sinners Chapter 8: The Final Chapter", + "native": "空の境界 終章", + "synonyms": [ + "The Garden of Sinners: Epilogue" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": "Dragon Crisis", + "native": "ドラゴンクライシス!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 10794, + "mal_id": 10794, + "title": "IS: Infinite Stratos Encore - Koi ni Kogareru Sextet", + "english": "IS: Infinite Stratos Encore: A Sextet Yearning for Love", + "native": "IS <インフィニット・ストラトス> アンコール『恋に焦がれる六重奏』", + "synonyms": [ + "Infinite Stratos OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 9471, + "mal_id": 9471, + "title": "Baka to Test to Shoukanjuu: Matsuri", + "english": "Baka and Test - Summon the Beasts: Matsuri", + "native": "バカとテストと召喚獣 ~祭~", + "synonyms": [ + "Baka to Test to Shoukanjuu OVA", + "Baka to Test to Shokanju OVA", + "The Idiot, the Tests, and the Summoned Creatures OVA", + "Baka and Test: Summon the Beasts OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 10851, + "mal_id": 10851, + "title": "euphoria", + "english": null, + "native": "euphoria", + "synonyms": [], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 10893, + "mal_id": 10893, + "title": "Kyousougiga", + "english": null, + "native": "京騒戯画", + "synonyms": [ + "Kyousogiga", + "第一弾" + ], + "format": "ONA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 9130, + "mal_id": 9130, + "title": "Saint Seiya: THE LOST CANVAS - Meiou Shinwa 2", + "english": "Saint Seiya: The Lost Canvas 2", + "native": "聖闘士星矢 THE LOST CANVAS 冥王神話 2", + "synonyms": [ + "Los Guerreros del Zodiaco: El lienzo perdido - Parte 2" + ], + "format": "OVA", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 9539, + "mal_id": 9539, + "title": "Cardfight!! Vanguard", + "english": "Cardfight Vanguard", + "native": "カードファイト!! ヴァンガード", + "synonyms": [], + "format": "TV", + "episodes": 65, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 10075, + "mal_id": 10075, + "title": "NARUTO×UT", + "english": null, + "native": "NARUTO×UT", + "synonyms": [ + "NARUTO x UT" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 10330, + "mal_id": 10330, + "title": "Bakugan Battle Brawlers: Mechtanium Surge", + "english": "Bakugan: Mechtanium Surge", + "native": "爆丸 バトルブローラーズ メクタニウムサージ", + "synonyms": [ + "爆丸4 机械波涛", + "Bakugan: Świat Mechtoganów", + "Bakugan: El Surgimiento de Mechtanium" + ], + "format": "TV", + "episodes": 46, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 8425, + "mal_id": 8425, + "title": "Gosick", + "english": null, + "native": "GOSICK -ゴシック-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 10020, + "mal_id": 10020, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai Specials", + "english": "OreImo Specials", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute Specials" + ], + "format": "ONA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": null, + "native": "ドラゴンクライシス!", + "synonyms": [ + "Dragon Crisis!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [ + "Yumekui Merry" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 9734, + "mal_id": 9734, + "title": "K-On!!: Keikaku!", + "english": "K-On!!: Plan!", + "native": "けいおん!! 計画!", + "synonyms": [ + "Keion 2 Special", + "K-On!! 2nd Season Special", + "K-On!! Episode 27" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 3, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 9471, + "mal_id": 9471, + "title": "Baka to Test to Shoukanjuu: Matsuri", + "english": "Baka & Test - Summon the Beasts OVA", + "native": "バカとテストと召喚獣 ~祭~", + "synonyms": [ + "Baka to Test to Shoukanjuu OVA", + "Baka to Test to Shokanju OVA", + "The Idiot", + "the Tests", + "and the Summoned Creatures OVA", + "Baka and Test: Summon the Beasts OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 6954, + "mal_id": 6954, + "title": "Kara no Kyoukai Movie 8: Shuushou", + "english": "The Garden of Sinners Chapter 8: Epilogue", + "native": "劇場版 空の境界 the Garden of sinners 終章", + "synonyms": [ + "Kara no Kyoukai: Epilogue", + "The Garden of Sinners Epilogue", + "The Garden of Sinners: the Garden of Sinners" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 8857, + "mal_id": 8857, + "title": "Nichijou: Nichijou no 0-wa", + "english": "Nichijou - My Ordinary Life Episode 0", + "native": "日常の0話", + "synonyms": [ + "Nichijou Episode 0", + "Nichijou OVA", + "Everyday" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 3, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 10152, + "mal_id": 10152, + "title": "Kimi ni Todoke: Kataomoi", + "english": "Kimi ni Todoke: From Me to You - Unrequited Love", + "native": "君に届け 片想い", + "synonyms": [ + "Kimi ni Todoke 2nd Season Episode 00", + "Unrequited Love", + "Kimi ni Todoke Recap" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 5, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 9130, + "mal_id": 9130, + "title": "Saint Seiya: The Lost Canvas - Meiou Shinwa 2", + "english": "Saint Seiya: The Lost Canvas 2", + "native": "聖闘士星矢 THE LOST CANVAS 冥王神話 2", + "synonyms": [], + "format": "OVA", + "episodes": 13, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 8063, + "mal_id": 8063, + "title": "Sekaiichi Hatsukoi OVA", + "english": null, + "native": "世界一初恋 OVA", + "synonyms": [ + "Sekaiichi Hatsukoi Episode 0", + "Sekai-ichi Hatsukoi: Onodera Ritsu no Baai", + "Sekaiichi Hatsukoi Episode 12.5", + "Sekaiichi Hatsukoi: Yoshino Chiaki no Baai", + "Sekai'ichi Hatsukoi" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 3, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 9999, + "mal_id": 9999, + "title": "One Piece 3D: Mugiwara Chase", + "english": "One Piece 3D: Straw Hat Chase", + "native": "ONE PIECE 3D 麦わらチェイス", + "synonyms": [ + "One Piece 3D: Strawhat Chase", + "One Piece Movie 11" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 3, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 10076, + "mal_id": 10076, + "title": "Kämpfer für die Liebe", + "english": "Kämpfer für die Liebe", + "native": "けんぷファー für die Liebe", + "synonyms": [ + "Kampfer: Fur die Liebe", + "Kämpfer episode 13", + "Kämpfer episode 14" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 3, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 9539, + "mal_id": 9539, + "title": "Cardfight!! Vanguard", + "english": "Cardfight!! Vanguard", + "native": "カードファイト!! ヴァンガード", + "synonyms": [], + "format": "TV", + "episodes": 65, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 9724, + "mal_id": 9724, + "title": "Break Blade Movie 5: Shisen no Hate", + "english": "Broken Blade 5", + "native": "ブレイク ブレイド 死線ノ涯", + "synonyms": [ + "Breaker Blade 5", + "Break Blade 5: Border of Death" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka☆Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか☆マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica", + "PMMM", + "MSMM", + "הנערה הקסומה מאדוקה מאגיקה", + "Девочка-волшебница Мадока☆Волшебство", + "Μάντοκα, το Μαγικό Κορίτσι", + "สาวน้อยเวทมนตร์ มาโดกะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka☆Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか☆マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica", + "PMMM", + "MSMM", + "הנערה הקסומה מאדוקה מאגיקה", + "Девочка-волшебница Мадока☆Волшебство", + "Μάντοκα, το Μαγικό Κορίτσι", + "สาวน้อยเวทมนตร์ มาโดกะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka☆Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか☆マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica", + "PMMM", + "MSMM", + "הנערה הקסומה מאדוקה מאגיקה", + "Девочка-волшебница Мадока☆Волшебство", + "Μάντοκα, το Μαγικό Κορίτσι", + "สาวน้อยเวทมนตร์ มาโดกะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka☆Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか☆マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica", + "PMMM", + "MSMM", + "הנערה הקסומה מאדוקה מאגיקה", + "Девочка-волшебница Мадока☆Волшебство", + "Μάντοκα, το Μαγικό Κορίτσι", + "สาวน้อยเวทมนตร์ มาโดกะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS〈インフィニット・ストラトス〉", + "synonyms": [ + "IS ปฏิบัติการรักจักรกลทะยานฟ้า" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS〈インフィニット・ストラトス〉", + "synonyms": [ + "IS ปฏิบัติการรักจักรกลทะยานฟ้า" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS〈インフィニット・ストラトス〉", + "synonyms": [ + "IS ปฏิบัติการรักจักรกลทะยานฟ้า" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS〈インフィニット・ストラトス〉", + "synonyms": [ + "IS ปฏิบัติการรักจักรกลทะยานฟ้า" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8425, + "mal_id": 8425, + "title": "GOSICK", + "english": "Gosick", + "native": "GOSICK", + "synonyms": [ + "ゴシック" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8425, + "mal_id": 8425, + "title": "Gosick", + "english": null, + "native": "GOSICK -ゴシック-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8425, + "mal_id": 8425, + "title": "GOSICK", + "english": "Gosick", + "native": "GOSICK", + "synonyms": [ + "ゴシック" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 8425, + "mal_id": 8425, + "title": "GOSICK", + "english": "Gosick", + "native": "GOSICK", + "synonyms": [ + "ゴシック" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": null, + "native": "ドラゴンクライシス!", + "synonyms": [ + "Dragon Crisis!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2ND SEASON", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Reaching You 2nd Season", + "Llegando a ti: Temporada 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [ + "Yumekui Merry" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is this a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is this a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is this a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is this a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "เจ้านี่เหรอซอมบี้ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 17, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 10020, + "mal_id": 10020, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai (ONA)", + "english": "Oreimo (ONA)", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute Specials", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ตอนพิเศษ" + ], + "format": "ONA", + "episodes": 4, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 10020, + "mal_id": 10020, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai Specials", + "english": "OreImo Specials", + "native": "俺の妹がこんなに可愛いわけがない", + "synonyms": [ + "My Little Sister Can't Be This Cute Specials" + ], + "format": "ONA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 6954, + "mal_id": 6954, + "title": "Kara no Kyoukai: Shuushou", + "english": "the Garden of sinners Chapter 8: The Final Chapter", + "native": "空の境界 終章", + "synonyms": [ + "The Garden of Sinners: Epilogue" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 6954, + "mal_id": 6954, + "title": "Kara no Kyoukai Movie 8: Shuushou", + "english": "The Garden of Sinners Chapter 8: Epilogue", + "native": "劇場版 空の境界 the Garden of sinners 終章", + "synonyms": [ + "Kara no Kyoukai: Epilogue", + "The Garden of Sinners Epilogue", + "The Garden of Sinners: the Garden of Sinners" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 2, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": "Dragon Crisis", + "native": "ドラゴンクライシス!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": null, + "native": "ドラゴンクライシス!", + "synonyms": [ + "Dragon Crisis!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": "Dragon Crisis", + "native": "ドラゴンクライシス!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": "Dragon Crisis", + "native": "ドラゴンクライシス!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8425, + "mal_id": 8425, + "title": "Gosick", + "english": null, + "native": "GOSICK -ゴシック-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": "Dragon Crisis", + "native": "ドラゴンクライシス!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10794, + "mal_id": 10794, + "title": "IS: Infinite Stratos Encore - Koi ni Kogareru Sextet", + "english": "IS: Infinite Stratos Encore: A Sextet Yearning for Love", + "native": "IS <インフィニット・ストラトス> アンコール『恋に焦がれる六重奏』", + "synonyms": [ + "Infinite Stratos OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10794, + "mal_id": 10794, + "title": "IS: Infinite Stratos Encore - Koi ni Kogareru Sextet", + "english": "IS: Infinite Stratos Encore: A Sextet Yearning for Love", + "native": "IS <インフィニット・ストラトス> アンコール『恋に焦がれる六重奏』", + "synonyms": [ + "Infinite Stratos OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 9471, + "mal_id": 9471, + "title": "Baka to Test to Shoukanjuu: Matsuri", + "english": "Baka and Test - Summon the Beasts: Matsuri", + "native": "バカとテストと召喚獣 ~祭~", + "synonyms": [ + "Baka to Test to Shoukanjuu OVA", + "Baka to Test to Shokanju OVA", + "The Idiot, the Tests, and the Summoned Creatures OVA", + "Baka and Test: Summon the Beasts OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 9471, + "mal_id": 9471, + "title": "Baka to Test to Shoukanjuu: Matsuri", + "english": "Baka & Test - Summon the Beasts OVA", + "native": "バカとテストと召喚獣 ~祭~", + "synonyms": [ + "Baka to Test to Shoukanjuu OVA", + "Baka to Test to Shokanju OVA", + "The Idiot", + "the Tests", + "and the Summoned Creatures OVA", + "Baka and Test: Summon the Beasts OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [ + "Yumekui Merry" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 9331, + "mal_id": 9331, + "title": "Yumekui Merry", + "english": "Dream Eater Merry", + "native": "夢喰いメリー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 9834, + "mal_id": 9834, + "title": "Level E", + "english": "Level E", + "native": "レベルE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 9513, + "mal_id": 9513, + "title": "Beelzebub", + "english": "Beelzebub", + "native": "べるぜバブ", + "synonyms": [], + "format": "TV", + "episodes": 60, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": null, + "native": "ドラゴンクライシス!", + "synonyms": [ + "Dragon Crisis!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 8425, + "mal_id": 8425, + "title": "Gosick", + "english": null, + "native": "GOSICK -ゴシック-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 9041, + "mal_id": 9041, + "title": "IS: Infinite Stratos", + "english": "Infinite Stratos", + "native": "IS 〈インフィニット・ストラトス〉", + "synonyms": [ + "IS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 9587, + "mal_id": 9587, + "title": "Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "english": "I don't like my big brother at all!!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!!", + "Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!!", + "Onisuki", + "Eu não gosto nem um pouco do meu maninho!!", + "Definitivamente. ¡No me gusta mi hermano para nada!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 9314, + "mal_id": 9314, + "title": "Fractale", + "english": "Fractale", + "native": "フラクタル", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 9367, + "mal_id": 9367, + "title": "Freezing", + "english": "Freezing", + "native": "フリージング", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 9130, + "mal_id": 9130, + "title": "Saint Seiya: THE LOST CANVAS - Meiou Shinwa 2", + "english": "Saint Seiya: The Lost Canvas 2", + "native": "聖闘士星矢 THE LOST CANVAS 冥王神話 2", + "synonyms": [ + "Los Guerreros del Zodiaco: El lienzo perdido - Parte 2" + ], + "format": "OVA", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 9130, + "mal_id": 9130, + "title": "Saint Seiya: The Lost Canvas - Meiou Shinwa 2", + "english": "Saint Seiya: The Lost Canvas 2", + "native": "聖闘士星矢 THE LOST CANVAS 冥王神話 2", + "synonyms": [], + "format": "OVA", + "episodes": 13, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 9130, + "mal_id": 9130, + "title": "Saint Seiya: THE LOST CANVAS - Meiou Shinwa 2", + "english": "Saint Seiya: The Lost Canvas 2", + "native": "聖闘士星矢 THE LOST CANVAS 冥王神話 2", + "synonyms": [ + "Los Guerreros del Zodiaco: El lienzo perdido - Parte 2" + ], + "format": "OVA", + "episodes": 13, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 9539, + "mal_id": 9539, + "title": "Cardfight!! Vanguard", + "english": "Cardfight Vanguard", + "native": "カードファイト!! ヴァンガード", + "synonyms": [], + "format": "TV", + "episodes": 65, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 9539, + "mal_id": 9539, + "title": "Cardfight!! Vanguard", + "english": "Cardfight!! Vanguard", + "native": "カードファイト!! ヴァンガード", + "synonyms": [], + "format": "TV", + "episodes": 65, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 8, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 9587, + "mal_id": 9587, + "title": "Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!!", + "english": "I Don't Like My Big Brother At All!", + "native": "お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!!", + "synonyms": [ + "Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!!", + "Onisuki", + "Because I Don't Like My Big Brother at All!!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 9, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 8426, + "mal_id": 8426, + "title": "Hourou Musuko", + "english": "Wandering Son", + "native": "放浪息子", + "synonyms": [ + "The Transient Son" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 14, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 9510, + "mal_id": 9510, + "title": "Mitsudomoe Zouryouchuu!", + "english": null, + "native": "みつどもえ増量中!", + "synonyms": [ + "Mitsudomoe Dai Ni Ki", + "Mitsudomoe 2-ki" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 8841, + "mal_id": 8841, + "title": "Kore wa Zombie desu ka?", + "english": "Is This a Zombie?", + "native": "これはゾンビですか?", + "synonyms": [ + "Koreha Zombie Desuka?", + "Kore ha Zombie Desu ka?", + "Kore wa Zombie Desuka?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10330, + "mal_id": 10330, + "title": "Bakugan Battle Brawlers: Mechtanium Surge", + "english": "Bakugan: Mechtanium Surge", + "native": "爆丸 バトルブローラーズ メクタニウムサージ", + "synonyms": [ + "爆丸4 机械波涛", + "Bakugan: Świat Mechtoganów", + "Bakugan: El Surgimiento de Mechtanium" + ], + "format": "TV", + "episodes": 46, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 9656, + "mal_id": 9656, + "title": "Kimi ni Todoke 2nd Season", + "english": "Kimi ni Todoke: From Me to You Season 2", + "native": "君に届け 2ND SEASON", + "synonyms": [ + "Kimi ni Todoke: From Me to You 2nd Season", + "Reaching You 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 12, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10330, + "mal_id": 10330, + "title": "Bakugan Battle Brawlers: Mechtanium Surge", + "english": "Bakugan: Mechtanium Surge", + "native": "爆丸 バトルブローラーズ メクタニウムサージ", + "synonyms": [ + "爆丸4 机械波涛", + "Bakugan: Świat Mechtoganów", + "Bakugan: El Surgimiento de Mechtanium" + ], + "format": "TV", + "episodes": 46, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 9330, + "mal_id": 9330, + "title": "Dragon Crisis!", + "english": null, + "native": "ドラゴンクライシス!", + "synonyms": [ + "Dragon Crisis!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 11, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 10330, + "mal_id": 10330, + "title": "Bakugan Battle Brawlers: Mechtanium Surge", + "english": "Bakugan: Mechtanium Surge", + "native": "爆丸 バトルブローラーズ メクタニウムサージ", + "synonyms": [ + "爆丸4 机械波涛", + "Bakugan: Świat Mechtoganów", + "Bakugan: El Surgimiento de Mechtanium" + ], + "format": "TV", + "episodes": 46, + "season": "WINTER", + "year": 2011, + "start_date": { + "year": 2011, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 9756, + "mal_id": 9756, + "title": "Mahou Shoujo Madoka★Magica", + "english": "Puella Magi Madoka Magica", + "native": "魔法少女まどか★マギカ", + "synonyms": [ + "Mahou Shoujo Madoka Magika", + "Magical Girl Madoka Magica" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2011, + "start_date": { + "day": 7, + "month": 1, + "year": 2011 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2012-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2012-fall.json new file mode 100644 index 0000000..a7e2127 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2012-fall.json @@ -0,0 +1,6243 @@ +{ + "year": 2012, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 13601, + "mal_id": 13601, + "title": "PSYCHO-PASS", + "english": "PSYCHO-PASS", + "native": "PSYCHO-PASS サイコパス", + "synonyms": [ + "Психопаспорт" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project (K-プロジェクト)", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 14345, + "mal_id": 14345, + "title": "BTOOOM!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 3785, + "mal_id": 3785, + "title": "Evangelion Shin Movie: Kyuu", + "english": "Evangelion: 3.0 You Can (Not) Redo", + "native": "ヱヴァンゲリヲン新劇場版:Q", + "synonyms": [ + "Rebuild of Evangelion 3.33", + "Rebuild of Evangelion 3.0 Q Quickening", + "EVANGELION:3.33 VOCÊ (NÃO) PODE REFAZER", + "EVANGELION: 3.33 TÚ (NO) LO PUEDES REHACER", + "Evangelion 3.33 (Nie) możesz powtórzyć" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 14199, + "mal_id": 14199, + "title": "Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 11703, + "mal_id": 11703, + "title": "CØDE:BREAKER", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 12859, + "mal_id": 12859, + "title": "ONE PIECE FILM: Z", + "english": "One Piece Film: Z", + "native": "ONE PIECE FILM Z", + "synonyms": [ + "One Piece Film 12: Z", + "海贼王剧场版Z", + "One Piece Gold - Il film" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 16001, + "mal_id": 16001, + "title": "Kokoro Connect: Michi Random", + "english": "Kokoro Connect ~ The OVAs", + "native": "ココロコネクト ミチランダム", + "synonyms": [ + "Kokoro Connect Episodes 14, 15, 16 and 17", + "Kokoroco: Michi Random" + ], + "format": "OVA", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 11, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 11977, + "mal_id": 11977, + "title": "Mahou Shoujo Madoka☆Magica: Hajimari no Monogatari", + "english": "Puella Magi Madoka Magica the Movie Part 1: Beginnings", + "native": "劇場版 魔法少女まどか☆マギカ 始まりの物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 1", + "Magical Girl Madoka Magica Movie 1", + "Puella Magi Madoka Magica the Movie Part I: Beginnings" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 13601, + "mal_id": 13601, + "title": "Psycho-Pass", + "english": "Psycho-Pass", + "native": "サイコパス", + "synonyms": [ + "Psychopath" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 12, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions!", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 14345, + "mal_id": 14345, + "title": "Btooom!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari: Kuro", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [ + "Nekomonogatari Black: Tsubasa Family" + ], + "format": "TV Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 3785, + "mal_id": 3785, + "title": "Evangelion Movie 3: Q", + "english": "Evangelion: 3.0 You Can (Not) Redo", + "native": "ヱヴァンゲリヲン新劇場版:Q", + "synonyms": [ + "Evangelion Shin Gekijouban: Kyuu", + "Rebuild of Evangelion: 3.0", + "Evangelion: 3.0 Q Quickening", + "Evangelion 3.33" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 11703, + "mal_id": 11703, + "title": "Code:Breaker", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [ + "Code Breaker" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3rd Season", + "english": "Bakuman. Season 3", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 14131, + "mal_id": 14131, + "title": "Girls & Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "Girls und Panzer" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 14199, + "mal_id": 14199, + "title": "Oniichan dakedo Ai sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [ + "As Long as There's Love", + "It Doesn't Matter If He Is My Brother", + "Right?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 12859, + "mal_id": 12859, + "title": "One Piece Film: Z", + "english": "One Piece Film: Z", + "native": "ワンピース フィルム Z", + "synonyms": [ + "One Piece Movie 12" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "劇場版 青の祓魔師(エクソシスト)", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie", + "Blue Exorcist Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 16001, + "mal_id": 16001, + "title": "Kokoro Connect: Michi Random", + "english": "Kokoro Connect OVA", + "native": "ココロコネクト ミチランダム", + "synonyms": [ + "Kokoro Connect Episodes 14", + "15", + "16", + "and 17", + "Kokoroco: Michi Random" + ], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 11, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 11979, + "mal_id": 11979, + "title": "Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari", + "english": "Puella Magi Madoka Magica the Movie Part 2: Eternal", + "native": "劇場版 魔法少女まどか☆マギカ 永遠の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 2", + "Magical Girl Madoka Magica Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11703, + "mal_id": 11703, + "title": "Code:Breaker", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [ + "Code Breaker" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (TV)", + "native": "ジョジョの奇妙な冒険 (TV)", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "JoJo no Kimyou na Bouken: Sentou Chouryuu", + "JoJo's Bizarre Adventure: Phantom Blood", + "JoJo's Bizarre Adventure: Battle Tendency", + "مغامرات جوجو العجيبة", + "مغامرات جوجو العجيبة:الدماء الوهمية", + "مغامرات جوجو العجيبة:حمى القتال", + "Le bizzarre avventure di JoJo (2012)", + "Le bizzarre avventure di JoJo: Phantom Blood", + "Le bizzarre avventure di JoJo: Battle Tendency", + "Химерні пригоди ДжоДжо: Тяжіння до бою", + "Химерні пригоди ДжоДжо: Примарна кров", + "JJBA", + "Невероятные приключения ДжоДжо: Призрачная кровь", + "Невероятные приключения ДжоДжо: Стремление к бою" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 13601, + "mal_id": 13601, + "title": "PSYCHO-PASS", + "english": "PSYCHO-PASS", + "native": "PSYCHO-PASS サイコパス", + "synonyms": [ + "Психопаспорт" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 13601, + "mal_id": 13601, + "title": "Psycho-Pass", + "english": "Psycho-Pass", + "native": "サイコパス", + "synonyms": [ + "Psychopath" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 12, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions!", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur, I Want a Date!", + "Miłość, gimbaza i kosmiczna faza", + "中二病也要谈恋爱!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakurasou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakura-sou no Pet na Kanojo", + "樱花庄的宠物女孩" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 21, + "score": 1.2097, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun", + "Le Garçon d'à coté", + "Bestia z ławki obok" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The labyrinth of magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions!", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori", + "Del nuevo mundo" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project (K-プロジェクト)", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project (K-プロジェクト)", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project (K-プロジェクト)", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14199, + "mal_id": 14199, + "title": "Oniichan dakedo Ai sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [ + "As Long as There's Love", + "It Doesn't Matter If He Is My Brother", + "Right?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 14467, + "mal_id": 14467, + "title": "K", + "english": "K", + "native": "K", + "synonyms": [ + "K-Project (K-プロジェクト)", + "K -eine weitere Geschichte-" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 15, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [ + "Kami-sama Hajimemashita", + "Kami-sama Kiss", + "Soy Una Diosa ¿Y ahora qué?", + "Приємно познайомитись, Бог", + "Очень приятно, Бог", + "The Girl In The World Of Spirit", + "Jak zostałam bóstwem!?" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14345, + "mal_id": 14345, + "title": "BTOOOM!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 14345, + "mal_id": 14345, + "title": "Btooom!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14345, + "mal_id": 14345, + "title": "BTOOOM!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14345, + "mal_id": 14345, + "title": "BTOOOM!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14345, + "mal_id": 14345, + "title": "BTOOOM!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Sukitte Ii na yo.", + "english": "Say \"I love you\".", + "native": "好きっていいなよ。", + "synonyms": [ + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari: Kuro", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [ + "Nekomonogatari Black: Tsubasa Family" + ], + "format": "TV Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 1.0238, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions!", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 15689, + "mal_id": 15689, + "title": "Nekomonogatari (Kuro)", + "english": "Nekomonogatari Black", + "native": "猫物語(黒)", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13125, + "mal_id": 13125, + "title": "Shinsekai yori", + "english": "From the New World", + "native": "新世界より", + "synonyms": [ + "Shin Sekai Yori" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 29, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 3785, + "mal_id": 3785, + "title": "Evangelion Shin Movie: Kyuu", + "english": "Evangelion: 3.0 You Can (Not) Redo", + "native": "ヱヴァンゲリヲン新劇場版:Q", + "synonyms": [ + "Rebuild of Evangelion 3.33", + "Rebuild of Evangelion 3.0 Q Quickening", + "EVANGELION:3.33 VOCÊ (NÃO) PODE REFAZER", + "EVANGELION: 3.33 TÚ (NO) LO PUEDES REHACER", + "Evangelion 3.33 (Nie) możesz powtórzyć" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 3785, + "mal_id": 3785, + "title": "Evangelion Movie 3: Q", + "english": "Evangelion: 3.0 You Can (Not) Redo", + "native": "ヱヴァンゲリヲン新劇場版:Q", + "synonyms": [ + "Evangelion Shin Gekijouban: Kyuu", + "Rebuild of Evangelion: 3.0", + "Evangelion: 3.0 Q Quickening", + "Evangelion 3.33" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14199, + "mal_id": 14199, + "title": "Oniichan dakedo Ai sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [ + "As Long as There's Love", + "It Doesn't Matter If He Is My Brother", + "Right?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster", + "絶園のテンペスト ~THE CIVILIZATION BLASTER~", + "Penghancuran Peradaban" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 14131, + "mal_id": 14131, + "title": "Girls & Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "Girls und Panzer" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 14131, + "mal_id": 14131, + "title": "Girls und Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "少女与战车", + "GuP", + "Девушки и танки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14741, + "mal_id": 14741, + "title": "Chuunibyou demo Koi ga Shitai!", + "english": "Love, Chunibyo & Other Delusions!", + "native": "中二病でも恋がしたい!", + "synonyms": [ + "Chu-2 Byo demo Koi ga Shitai!", + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 1.0641, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3rd Season", + "english": "Bakuman. Season 3", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama Season 2 Part 2", + "native": "銀魂’延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To LOVE Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14289, + "mal_id": 14289, + "title": "Suki tte Ii na yo.", + "english": "Say \"I Love You.\"", + "native": "好きっていいなよ。", + "synonyms": [ + "Suki-tte Ii na yo.", + "Sukinayo" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 13663, + "mal_id": 13663, + "title": "To LOVE-Ru Darkness", + "english": "To Love Ru Darkness", + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness", + "To-Love-Ru Darkness", + "ToLoveRu Darkness" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 14345, + "mal_id": 14345, + "title": "Btooom!", + "english": "BTOOOM!", + "native": "BTOOOM!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 14199, + "mal_id": 14199, + "title": "Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14199, + "mal_id": 14199, + "title": "Oniichan dakedo Ai sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [ + "As Long as There's Love", + "It Doesn't Matter If He Is My Brother", + "Right?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 14199, + "mal_id": 14199, + "title": "Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 1.2097, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 14719, + "mal_id": 14719, + "title": "JoJo no Kimyou na Bouken (TV)", + "english": "JoJo's Bizarre Adventure (2012)", + "native": "ジョジョの奇妙な冒険", + "synonyms": [ + "JoJo no Kimyou na Bouken (2012)", + "Battle Tendency", + "Phantom Blood", + "Sentou Chouryuu", + "JoJo's Bizarre Adventure The Animation" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11703, + "mal_id": 11703, + "title": "Code:Breaker", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [ + "Code Breaker" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 11703, + "mal_id": 11703, + "title": "CØDE:BREAKER", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11703, + "mal_id": 11703, + "title": "Code:Breaker", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [ + "Code Breaker" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 11703, + "mal_id": 11703, + "title": "CØDE:BREAKER", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 14131, + "mal_id": 14131, + "title": "Girls & Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "Girls und Panzer" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 11703, + "mal_id": 11703, + "title": "CØDE:BREAKER", + "english": "Code:Breaker", + "native": "CØDE:BREAKER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 13655, + "mal_id": 13655, + "title": "Little Busters!", + "english": "Little Busters!", + "native": "リトルバスターズ!", + "synonyms": [ + "LB!" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 12859, + "mal_id": 12859, + "title": "ONE PIECE FILM: Z", + "english": "One Piece Film: Z", + "native": "ONE PIECE FILM Z", + "synonyms": [ + "One Piece Film 12: Z", + "海贼王剧场版Z", + "One Piece Gold - Il film" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12859, + "mal_id": 12859, + "title": "One Piece Film: Z", + "english": "One Piece Film: Z", + "native": "ワンピース フィルム Z", + "synonyms": [ + "One Piece Movie 12" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 16001, + "mal_id": 16001, + "title": "Kokoro Connect: Michi Random", + "english": "Kokoro Connect ~ The OVAs", + "native": "ココロコネクト ミチランダム", + "synonyms": [ + "Kokoro Connect Episodes 14, 15, 16 and 17", + "Kokoroco: Michi Random" + ], + "format": "OVA", + "episodes": 4, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 11, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 16001, + "mal_id": 16001, + "title": "Kokoro Connect: Michi Random", + "english": "Kokoro Connect OVA", + "native": "ココロコネクト ミチランダム", + "synonyms": [ + "Kokoro Connect Episodes 14", + "15", + "16", + "and 17", + "Kokoroco: Michi Random" + ], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 11, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3rd Season", + "english": "Bakuman. Season 3", + "native": "バクマン。", + "synonyms": [ + "Bakuman Season 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 6, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 14131, + "mal_id": 14131, + "title": "Girls & Panzer", + "english": "Girls und Panzer", + "native": "ガールズ&パンツァー", + "synonyms": [ + "Garupan", + "Girls und Panzer" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 15417, + "mal_id": 15417, + "title": "Gintama': Enchousen", + "english": "Gintama: Enchousen", + "native": "銀魂' 延長戦", + "synonyms": [ + "Gintama' (2012)", + "Gintama' Overdrive", + "Kintama", + "Gintama Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 4, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14713, + "mal_id": 14713, + "title": "Kamisama Hajimemashita", + "english": "Kamisama Kiss", + "native": "神様はじめました", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 12365, + "mal_id": 12365, + "title": "Bakuman. 3", + "english": null, + "native": "バクマン。3", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 14513, + "mal_id": 14513, + "title": "Magi: The Labyrinth of Magic", + "english": "Magi: The Labyrinth of Magic", + "native": "マギ The labyrinth of magic", + "synonyms": [ + "Magi Season 1" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 7, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "劇場版 青の祓魔師(エクソシスト)", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie", + "Blue Exorcist Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 12, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 0.9116, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14199, + "mal_id": 14199, + "title": "Oniichan dakedo Ai sae Areba Kankeinai yo ne!", + "english": "OniAi", + "native": "お兄ちゃんだけど愛さえあれば関係ないよねっ", + "synonyms": [ + "As Long as There's Love", + "It Doesn't Matter If He Is My Brother", + "Right?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13759, + "mal_id": 13759, + "title": "Sakura-sou no Pet na Kanojo", + "english": "The Pet Girl of Sakurasou", + "native": "さくら荘のペットな彼女", + "synonyms": [ + "Sakurasou no Pet na Kanojo" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 9, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 14227, + "mal_id": 14227, + "title": "Tonari no Kaibutsu-kun", + "english": "My Little Monster", + "native": "となりの怪物くん", + "synonyms": [ + "Tonari no Kaibutsukun", + "The Monster Next Door", + "My Neighbor Monster-kun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 2, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11737, + "mal_id": 11737, + "title": "Ao no Exorcist Movie", + "english": "Blue Exorcist: The Movie", + "native": "青の祓魔師 -劇場版-", + "synonyms": [ + "Ao no Exorcist Gekijouban", + "Ao no Futsumashi Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14075, + "mal_id": 14075, + "title": "Zetsuen no Tempest", + "english": "Blast of Tempest", + "native": "絶園のテンペスト", + "synonyms": [ + "Zetsuen no Tempest: The Civilization Blaster" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2012, + "start_date": { + "day": 5, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 1.0706, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11977, + "mal_id": 11977, + "title": "Mahou Shoujo Madoka☆Magica: Hajimari no Monogatari", + "english": "Puella Magi Madoka Magica the Movie Part 1: Beginnings", + "native": "劇場版 魔法少女まどか☆マギカ 始まりの物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 1", + "Magical Girl Madoka Magica Movie 1", + "Puella Magi Madoka Magica the Movie Part I: Beginnings" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2012, + "start_date": { + "year": 2012, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 11979, + "mal_id": 11979, + "title": "Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari", + "english": "Puella Magi Madoka Magica the Movie Part 2: Eternal", + "native": "劇場版 魔法少女まどか☆マギカ 永遠の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 2", + "Magical Girl Madoka Magica Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 10, + "year": 2012 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2012-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2012-spring.json new file mode 100644 index 0000000..fe5ce9a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2012-spring.json @@ -0,0 +1,6196 @@ +{ + "year": 2012, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 12355, + "mal_id": 12355, + "title": "Ookami Kodomo no Ame to Yuki", + "english": "Wolf Children", + "native": "おおかみこどもの雨と雪", + "synonyms": [ + "The Wolf Children Ame and Yuki", + "Los Niños Lobo", + "Les Enfants loups, Ame & Yuki", + "Wilcze Dzieci", + "Ame e Yuki i bambini lupo", + "Crianças Lobo", + "Vargbarnen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 13357, + "mal_id": 13357, + "title": "High School DxD Specials", + "english": "High School DxD: Fantasy Jiggles Unleashed", + "native": "ハイスクールD×Dスペシャル", + "synonyms": [ + "Highschool DxD Specials" + ], + "format": "SPECIAL", + "episodes": 6, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 12893, + "mal_id": 12893, + "title": "Danshi Koukousei no Nichijou Specials", + "english": "Daily Lives of High School Boys Specials", + "native": "男子高校生の日常", + "synonyms": [], + "format": "SPECIAL", + "episodes": 6, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 12029, + "mal_id": 12029, + "title": "Uchuu Senkan Yamato 2199", + "english": "Star Blazers: Space Battleship Yamato 2199", + "native": "宇宙戦艦ヤマト2199", + "synonyms": [], + "format": "OVA", + "episodes": 26, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 10681, + "mal_id": 10681, + "title": "BLOOD-C: The Last Dark", + "english": "BLOOD-C: The Last Dark", + "native": "劇場版 BLOOD-C The Last Dark", + "synonyms": [ + "Blood-C Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "KuroBas", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 11, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 12113, + "mal_id": 12113, + "title": "Berserk: Ougon Jidai-hen II - Doldrey Kouryaku", + "english": "Berserk: The Golden Age Arc II - The Battle for Doldrey", + "native": "ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略", + "synonyms": [ + "Berserk Movie", + "Berserk Saga" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 5, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [ + "Fishing Ball" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 12893, + "mal_id": 12893, + "title": "Danshi Koukousei no Nichijou Specials", + "english": "Daily Lives of High School Boys Specials", + "native": "男子高校生の日常", + "synonyms": [], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 12029, + "mal_id": 12029, + "title": "Uchuu Senkan Yamato 2199", + "english": "Star Blazers: Space Battleship Yamato 2199", + "native": "宇宙戦艦ヤマト2199", + "synonyms": [], + "format": "OVA", + "episodes": 26, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 5, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 13055, + "mal_id": 13055, + "title": "Sankarea OVA", + "english": null, + "native": "さんかれあ", + "synonyms": [ + "Sankarea Episodes 00 & 14" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 10681, + "mal_id": 10681, + "title": "Blood-C: The Last Dark", + "english": "Blood-C: The Last Dark", + "native": "劇場版 ブラッドシー ザ ラスト ダーク", + "synonyms": [ + "Blood-C Movie", + "Gekijouban Blood-C" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 12979, + "mal_id": 12979, + "title": "Naruto SD: Rock Lee no Seishun Full-Power Ninden", + "english": "Naruto Spin-Off: Rock Lee & His Ninja Pals", + "native": "ナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 9, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyouka: Forbidden Secrets", + "เฮียวกะปริศนาความทรงจำ", + "Хёка", + "빙과", + "冰菓" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "KuroBas", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "The Basketball Which Kuroko Plays", + "הכדורסל של קורוקו", + "Баскетбол Куроко", + "Το Μπάσκετ του Κουρόκο" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "Fate/Zero 2ndシーズン", + "synonyms": [ + "フェイト/ゼロ 2ndシーズン", + "F/Z", + "Судьба/Начало 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12355, + "mal_id": 12355, + "title": "Ookami Kodomo no Ame to Yuki", + "english": "Wolf Children", + "native": "おおかみこどもの雨と雪", + "synonyms": [ + "The Wolf Children Ame and Yuki", + "Los Niños Lobo", + "Les Enfants loups, Ame & Yuki", + "Wilcze Dzieci", + "Ame e Yuki i bambini lupo", + "Crianças Lobo", + "Vargbarnen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12355, + "mal_id": 12355, + "title": "Ookami Kodomo no Ame to Yuki", + "english": "Wolf Children", + "native": "おおかみこどもの雨と雪", + "synonyms": [ + "The Wolf Children Ame and Yuki", + "Los Niños Lobo", + "Les Enfants loups, Ame & Yuki", + "Wilcze Dzieci", + "Ame e Yuki i bambini lupo", + "Crianças Lobo", + "Vargbarnen" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 11, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11499, + "mal_id": 11499, + "title": "Sankarea", + "english": "Sankarea: Undying Love", + "native": "さんかれあ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 0.9932, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling with Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Haiyoru! Nyaruko-san", + "Nyarko-san: Another Crawling Chaos" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKanoX" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 6, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is this A Zombie? of the Dead", + "native": "これはゾンビですか?オブ・ザ・デッド", + "synonyms": [ + "Kore wa Zombie Desu ka? Jigoku-hen" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11761, + "mal_id": 11761, + "title": "Medaka Box", + "english": "Medaka Box", + "native": "めだかボックス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 12291, + "mal_id": 12291, + "title": "Acchi Kocchi", + "english": "Place to Place", + "native": "あっちこっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 6, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchu Kyodai", + "Space Bros" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 5, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 1.0364, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 1.0087, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11701, + "mal_id": 11701, + "title": "Another: The Other - Inga", + "english": "Another: The Other", + "native": "アナザー The Other -因果-", + "synonyms": [ + "Another 00", + "Another: The Other -Inga-", + "Another OAD", + "Another OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 5, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [ + "Fishing Ball" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11771, + "mal_id": 11771, + "title": "Kuroko no Basket", + "english": "Kuroko's Basketball", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke", + "KuroBas", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 24, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12893, + "mal_id": 12893, + "title": "Danshi Koukousei no Nichijou Specials", + "english": "Daily Lives of High School Boys Specials", + "native": "男子高校生の日常", + "synonyms": [], + "format": "SPECIAL", + "episodes": 6, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 12893, + "mal_id": 12893, + "title": "Danshi Koukousei no Nichijou Specials", + "english": "Daily Lives of High School Boys Specials", + "native": "男子高校生の日常", + "synonyms": [], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 12029, + "mal_id": 12029, + "title": "Uchuu Senkan Yamato 2199", + "english": "Star Blazers: Space Battleship Yamato 2199", + "native": "宇宙戦艦ヤマト2199", + "synonyms": [], + "format": "OVA", + "episodes": 26, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 12029, + "mal_id": 12029, + "title": "Uchuu Senkan Yamato 2199", + "english": "Star Blazers: Space Battleship Yamato 2199", + "native": "宇宙戦艦ヤマト2199", + "synonyms": [], + "format": "OVA", + "episodes": 26, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 5, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10681, + "mal_id": 10681, + "title": "BLOOD-C: The Last Dark", + "english": "BLOOD-C: The Last Dark", + "native": "劇場版 BLOOD-C The Last Dark", + "synonyms": [ + "Blood-C Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 10681, + "mal_id": 10681, + "title": "Blood-C: The Last Dark", + "english": "Blood-C: The Last Dark", + "native": "劇場版 ブラッドシー ザ ラスト ダーク", + "synonyms": [ + "Blood-C Movie", + "Gekijouban Blood-C" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10681, + "mal_id": 10681, + "title": "BLOOD-C: The Last Dark", + "english": "BLOOD-C: The Last Dark", + "native": "劇場版 BLOOD-C The Last Dark", + "synonyms": [ + "Blood-C Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12467, + "mal_id": 12467, + "title": "Nazo no Kanojo X", + "english": "Mysterious Girlfriend X", + "native": "謎の彼女X", + "synonyms": [ + "MGX", + "NazoKano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 12883, + "mal_id": 12883, + "title": "Tsuritama", + "english": "Tsuritama", + "native": "つり球", + "synonyms": [ + "Fishing Ball" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 12413, + "mal_id": 12413, + "title": "Jormungand", + "english": "Jormungand", + "native": "ヨルムンガンド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 11, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 11837, + "mal_id": 11837, + "title": "Zetman", + "english": "Zetman", + "native": "ゼットマン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 10790, + "mal_id": 10790, + "title": "Kore wa Zombie desu ka? of the Dead", + "english": "Is This a Zombie? of the Dead", + "native": "これはゾンビですか? OF THE DEAD", + "synonyms": [ + "Kore wa Zombie Desu ka? 2", + "Koreha Zombie Desu ka? Jigokuhen", + "Kore ha Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desu ka? Jigokuhen", + "Kore wa Zombie Desuka? of the Dead" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13203, + "mal_id": 13203, + "title": "LUPIN the Third: Mine Fujiko to Iu Onna", + "english": "Lupin the Third: The Woman Called Fujiko Mine", + "native": "LUPIN the Third ~峰不二子という女~", + "synonyms": [ + "Lupin III", + "Lupin III~Mine Fujiko to Iu Onna~", + "Lupin the Third: La donna chiamata Fujiko Mine" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear Cafe", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Café", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 5, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 12461, + "mal_id": 12461, + "title": "Hiiro no Kakera", + "english": "Hiiro no Kakera: The Tamayori Princess Saga", + "native": "緋色の欠片", + "synonyms": [ + "Scarlet Fragment", + "Hiiro no Kakera: Tamayori Hime Kitan" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 14, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12431, + "mal_id": 12431, + "title": "Uchuu Kyoudai", + "english": "Space Brothers", + "native": "宇宙兄弟", + "synonyms": [ + "Uchuu Kyodai" + ], + "format": "TV", + "episodes": 99, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 1, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 12189, + "mal_id": 12189, + "title": "Hyouka", + "english": "Hyouka", + "native": "氷菓", + "synonyms": [ + "Hyou-ka", + "Hyouka: You can't escape", + "Hyou-ka: You can't escape", + "Hyoka" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 23, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 6, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 12815, + "mal_id": 12815, + "title": "Shirokuma Cafe", + "english": "Polar Bear's Café", + "native": "しろくまカフェ", + "synonyms": [ + "Polar Bear Cafe", + "Shirokuma Café" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 12531, + "mal_id": 12531, + "title": "Sakamichi no Apollon", + "english": "Kids on the Slope", + "native": "坂道のアポロン", + "synonyms": [ + "Sakamichi no Aporon", + "Apollo on the Slope" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 13, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 12979, + "mal_id": 12979, + "title": "Naruto SD: Rock Lee no Seishun Full-Power Ninden", + "english": "Naruto Spin-Off: Rock Lee & His Ninja Pals", + "native": "ナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 3, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11785, + "mal_id": 11785, + "title": "Haiyore! Nyaruko-san", + "english": "Nyaruko: Crawling With Love!", + "native": "這いよれ!ニャル子さん", + "synonyms": [ + "Nyarko-san: Another Crawling Chaos", + "Haiyoru! Nyaruko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 10, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11759, + "mal_id": 11759, + "title": "Accel World", + "english": "Accel World", + "native": "アクセル・ワールド", + "synonyms": [ + "Accelerated World" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 7, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11741, + "mal_id": 11741, + "title": "Fate/Zero 2nd Season", + "english": "Fate/Zero Season 2", + "native": "フェイト/ゼロ 2ndシーズン", + "synonyms": [ + "Fate/Zero Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 8, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 12979, + "mal_id": 12979, + "title": "NARUTO SD Rock Lee no Seishun Full-Power Ninden", + "english": "NARUTO Spin-Off: Rock Lee & His Ninja Pals", + "native": "NARUTOナルトSD ロック・リーの青春フルパワー忍伝", + "synonyms": [ + "Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2012, + "start_date": { + "year": 2012, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12445, + "mal_id": 12445, + "title": "Tasogare Otome x Amnesia", + "english": "Dusk Maiden of Amnesia", + "native": "黄昏乙女×アムネジア", + "synonyms": [ + "Tasogare Otome x Amnesia" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2012, + "start_date": { + "day": 9, + "month": 4, + "year": 2012 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2012-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2012-summer.json new file mode 100644 index 0000000..c6520cb --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2012-summer.json @@ -0,0 +1,5319 @@ +{ + "year": 2012, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 13667, + "mal_id": 13667, + "title": "ROAD TO NINJA: NARUTO THE MOVIE", + "english": "Road to Ninja: Naruto the Movie", + "native": "ROAD TO NINJA -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 9", + "Naruto Shippūden la película: El camino Ninja", + "Naruto Shippuden Movie 06: La via del Ninja", + "Naruto Shippuden the Movie 6: Road to Ninja", + "Naruto Shippuden O Filme: Caminho do Ninja", + "Naruto Shippuden 6: O Caminho Ninja" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 12729, + "mal_id": 12729, + "title": "High School DxD OVA", + "english": null, + "native": "ハイスクールD×D OVA", + "synonyms": [ + "High School DxD Episodes 13, 14 and 15", + "Highschool DxD OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [ + "Царство" + ], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 12113, + "mal_id": 12113, + "title": "Berserk: Ougon Jidai-hen II - Doldrey Kouryaku", + "english": "Berserk: The Golden Age Arc II - The Battle for Doldrey", + "native": "ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: La Edad de Oro II - La Batalla por Doldrey" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri Season 2", + "native": "ゆるゆり♪♪", + "synonyms": [ + "YRYR 2", + "ゆるゆり 第2期" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 12049, + "mal_id": 12049, + "title": "FAIRY TAIL: Houou no Miko", + "english": "Fairy Tail: Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Fairy Tail - 1er Film - La prêtresse du Phoenix" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人, 妹がいる!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 14753, + "mal_id": 14753, + "title": "Hori-san to Miyamura-kun", + "english": null, + "native": "堀さんと宮村くん", + "synonyms": [ + "Horimiya" + ], + "format": "OVA", + "episodes": 6, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 13333, + "mal_id": 13333, + "title": "TARI TARI", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 8888, + "mal_id": 8888, + "title": "Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita", + "english": "Code Geass: Akito the Exiled - The Wyvern Arrives", + "native": "コードギアス 亡国のアキト 第1章 翼竜は舞い降りた", + "synonyms": [ + "Code Geass: Akito the Exiled – Przybycie Wiwerny" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia: La storia della Arcana Famiglia", + "english": "La Storia Della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 13807, + "mal_id": 13807, + "title": "Corpse Party: Missing Footage", + "english": null, + "native": "コープスパーティー Missing Footage", + "synonyms": [ + "Corpse Party OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 13851, + "mal_id": 13851, + "title": "To LOVE-Ru Darkness OVA", + "english": null, + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness OVA", + "To-Love-Ru Darkness OVA", + "ToLoveRu Darkness OVA", + "To Love Ru Darkness OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 13055, + "mal_id": 13055, + "title": "Sankarea (OVA)", + "english": null, + "native": "さんかれあ (OVA)", + "synonyms": [ + "Sankarea Episode 0", + "Sankarea Episode 14" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 12355, + "mal_id": 12355, + "title": "Ookami Kodomo no Ame to Yuki", + "english": "Wolf Children", + "native": "おおかみこどもの雨と雪", + "synonyms": [ + "The Wolf Children Ame and Yuki" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Aesthetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学〈エステティカ〉", + "synonyms": [ + "Hagure Yuusha no Estetica" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 12293, + "mal_id": 12293, + "title": "Campione! Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [ + "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 13667, + "mal_id": 13667, + "title": "Naruto: Shippuuden Movie 6 - Road to Ninja", + "english": "Naruto Shippuden the Movie 6: Road to Ninja", + "native": "ROAD TO NINJA NARUTO THE MOVIE", + "synonyms": [ + "Naruto Movie 9" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 12729, + "mal_id": 12729, + "title": "High School DxD OVA", + "english": null, + "native": "ハイスクールD×D OVA", + "synonyms": [ + "High School DxD Episodes 13 and 14", + "Highschool DxD OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 4, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 12049, + "mal_id": 12049, + "title": "Fairy Tail Movie 1: Houou no Miko", + "english": "Fairy Tail the Movie: The Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Gekijouban Fairy Tail: Houou no Miko", + "Priestess of the Phoenix", + "Fairy Tail: The Phoenix Priestess" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri: Happy Go Lily ♪♪", + "native": "ゆるゆり♪♪", + "synonyms": [ + "Yuru Yuri S2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 3, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA", + "Hyou-ka: You can't escape OVA", + "Hyoka OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 8888, + "mal_id": 8888, + "title": "Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita", + "english": "Code Geass: Akito the Exiled - The Wyvern Arrives", + "native": "コードギアス 亡国のアキト 第1章「翼竜は舞い降りた」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [ + "Rakugo Girls" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 13333, + "mal_id": 13333, + "title": "Tari Tari", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 15687, + "mal_id": 15687, + "title": "Chuunibyou demo Koi ga Shitai! Lite", + "english": "Love, Chunibyo & Other Delusions!: Chuni-Shorts", + "native": "中二病でも恋がしたい!Lite", + "synonyms": [ + "Regardless of My Adolescent Delusions of Grandeur", + "I Want a Date! Lite", + "Chu-2 Byo demo Koi ga Shitai! Lite", + "Love", + "Chunibyo & Other Delusions Lite" + ], + "format": "ONA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 13807, + "mal_id": 13807, + "title": "Corpse Party: Missing Footage", + "english": null, + "native": "コープスパーティー Missing Footage", + "synonyms": [ + "Corpse Party OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 13851, + "mal_id": 13851, + "title": "To LOVE-Ru Darkness OVA", + "english": null, + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness OVA", + "To-Love-Ru Darkness OVA", + "ToLoveRu Darkness OVA" + ], + "format": "OVA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 14753, + "mal_id": 14753, + "title": "Hori-san to Miyamura-kun", + "english": "Hori and Miyamura", + "native": "堀さんと宮村くん", + "synonyms": [ + "Horimiya" + ], + "format": "OVA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO", + "אומנות החרב אונליין", + "刀剑神域", + "ซอร์ดอาร์ตออนไลน์", + "Мастера меча онлайн" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 1.125, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12293, + "mal_id": 12293, + "title": "Campione! Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [ + "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Aesthetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学〈エステティカ〉", + "synonyms": [ + "Hagure Yuusha no Estetica" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Estetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学 (エステティカ)", + "synonyms": [ + "Hagure Yuusha no Aesthetica", + "ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Aesthetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学〈エステティカ〉", + "synonyms": [ + "Hagure Yuusha no Estetica" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12293, + "mal_id": 12293, + "title": "Campione! Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [ + "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 0.8838, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 12293, + "mal_id": 12293, + "title": "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 13667, + "mal_id": 13667, + "title": "ROAD TO NINJA: NARUTO THE MOVIE", + "english": "Road to Ninja: Naruto the Movie", + "native": "ROAD TO NINJA -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 9", + "Naruto Shippūden la película: El camino Ninja", + "Naruto Shippuden Movie 06: La via del Ninja", + "Naruto Shippuden the Movie 6: Road to Ninja", + "Naruto Shippuden O Filme: Caminho do Ninja", + "Naruto Shippuden 6: O Caminho Ninja" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 13667, + "mal_id": 13667, + "title": "Naruto: Shippuuden Movie 6 - Road to Ninja", + "english": "Naruto Shippuden the Movie 6: Road to Ninja", + "native": "ROAD TO NINJA NARUTO THE MOVIE", + "synonyms": [ + "Naruto Movie 9" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 13667, + "mal_id": 13667, + "title": "ROAD TO NINJA: NARUTO THE MOVIE", + "english": "Road to Ninja: Naruto the Movie", + "native": "ROAD TO NINJA -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 9", + "Naruto Shippūden la película: El camino Ninja", + "Naruto Shippuden Movie 06: La via del Ninja", + "Naruto Shippuden the Movie 6: Road to Ninja", + "Naruto Shippuden O Filme: Caminho do Ninja", + "Naruto Shippuden 6: O Caminho Ninja" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 12729, + "mal_id": 12729, + "title": "High School DxD OVA", + "english": null, + "native": "ハイスクールD×D OVA", + "synonyms": [ + "High School DxD Episodes 13, 14 and 15", + "Highschool DxD OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 12729, + "mal_id": 12729, + "title": "High School DxD OVA", + "english": null, + "native": "ハイスクールD×D OVA", + "synonyms": [ + "High School DxD Episodes 13 and 14", + "Highschool DxD OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [ + "Rakugo Girls" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Aesthetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学〈エステティカ〉", + "synonyms": [ + "Hagure Yuusha no Estetica" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 4, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai", + "ตัวฉันกับวันสิ้นโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 13333, + "mal_id": 13333, + "title": "Tari Tari", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [ + "Царство" + ], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 4, + "month": 6, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [ + "Царство" + ], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [ + "Царство" + ], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 12031, + "mal_id": 12031, + "title": "Kingdom", + "english": "Kingdom", + "native": "キングダム", + "synonyms": [ + "Царство" + ], + "format": "TV", + "episodes": 38, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 1.125, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11887, + "mal_id": 11887, + "title": "Kokoro Connect", + "english": "Kokoro Connect", + "native": "ココロコネクト", + "synonyms": [ + "Kokoroco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12175, + "mal_id": 12175, + "title": "Koi to Senkyo to Chocolate", + "english": "Love, Election and Chocolate", + "native": "恋と選挙とチョコレート", + "synonyms": [ + "Koichoco" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA", + "Hyou-ka: You can't escape OVA", + "Hyoka OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 13469, + "mal_id": 13469, + "title": "Hyouka: Motsubeki Mono wa", + "english": "Hyouka: What Should Be Had", + "native": "氷菓 持つべきものは", + "synonyms": [ + "Hyouka Episode 11.5", + "Hyouka OVA", + "Hyou-ka OVA", + "Hyouka: You can't escape OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 12679, + "mal_id": 12679, + "title": "Joshiraku", + "english": "Joshiraku", + "native": "じょしらく", + "synonyms": [ + "Rakugo Girls" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11933, + "mal_id": 11933, + "title": "Oda Nobuna no Yabou", + "english": "The Ambition of Oda Nobuna", + "native": "織田信奈の野望", + "synonyms": [ + "Oda Nobuna no Yabou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 9, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 13161, + "mal_id": 13161, + "title": "Hagure Yuusha no Aesthetica", + "english": "Aesthetica of a Rogue Hero", + "native": "はぐれ勇者の鬼畜美学〈エステティカ〉", + "synonyms": [ + "Hagure Yuusha no Estetica" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri Season 2", + "native": "ゆるゆり♪♪", + "synonyms": [ + "YRYR 2", + "ゆるゆり 第2期" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri: Happy Go Lily ♪♪", + "native": "ゆるゆり♪♪", + "synonyms": [ + "Yuru Yuri S2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 3, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri Season 2", + "native": "ゆるゆり♪♪", + "synonyms": [ + "YRYR 2", + "ゆるゆり 第2期" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 12049, + "mal_id": 12049, + "title": "FAIRY TAIL: Houou no Miko", + "english": "Fairy Tail: Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Fairy Tail - 1er Film - La prêtresse du Phoenix" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 12049, + "mal_id": 12049, + "title": "Fairy Tail Movie 1: Houou no Miko", + "english": "Fairy Tail the Movie: The Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Gekijouban Fairy Tail: Houou no Miko", + "Priestess of the Phoenix", + "Fairy Tail: The Phoenix Priestess" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 1.0316, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 12049, + "mal_id": 12049, + "title": "FAIRY TAIL: Houou no Miko", + "english": "Fairy Tail: Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Fairy Tail - 1er Film - La prêtresse du Phoenix" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 13333, + "mal_id": 13333, + "title": "Tari Tari", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 12049, + "mal_id": 12049, + "title": "FAIRY TAIL: Houou no Miko", + "english": "Fairy Tail: Phoenix Priestess", + "native": "劇場版 FAIRY TAIL 鳳凰の巫女", + "synonyms": [ + "Fairy Tail - 1er Film - La prêtresse du Phoenix" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人, 妹がいる!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人, 妹がいる!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 14753, + "mal_id": 14753, + "title": "Hori-san to Miyamura-kun", + "english": null, + "native": "堀さんと宮村くん", + "synonyms": [ + "Horimiya" + ], + "format": "OVA", + "episodes": 6, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14753, + "mal_id": 14753, + "title": "Hori-san to Miyamura-kun", + "english": "Hori and Miyamura", + "native": "堀さんと宮村くん", + "synonyms": [ + "Horimiya" + ], + "format": "OVA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 9, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.8878, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 14753, + "mal_id": 14753, + "title": "Hori-san to Miyamura-kun", + "english": null, + "native": "堀さんと宮村くん", + "synonyms": [ + "Horimiya" + ], + "format": "OVA", + "episodes": 6, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 13333, + "mal_id": 13333, + "title": "TARI TARI", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 13333, + "mal_id": 13333, + "title": "Tari Tari", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 13333, + "mal_id": 13333, + "title": "TARI TARI", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 10357, + "mal_id": 10357, + "title": "Jinrui wa Suitai Shimashita", + "english": "Humanity Has Declined", + "native": "人類は衰退しました", + "synonyms": [ + "Jintai" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 2, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 13333, + "mal_id": 13333, + "title": "TARI TARI", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 12403, + "mal_id": 12403, + "title": "Yuru Yuri♪♪", + "english": "YuruYuri: Happy Go Lily ♪♪", + "native": "ゆるゆり♪♪", + "synonyms": [ + "Yuru Yuri S2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 3, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 13333, + "mal_id": 13333, + "title": "TARI TARI", + "english": "Tari Tari", + "native": "TARI TARI", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13535, + "mal_id": 13535, + "title": "Binbougami ga!", + "english": "Good Luck Girl!", + "native": "貧乏神が!", + "synonyms": [ + "Binbou Gami ga!", + "Binboukami ga!", + "Binbogami ga!", + "Binbou Kami ga!", + "The God Of Poverty is!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 5, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8888, + "mal_id": 8888, + "title": "Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita", + "english": "Code Geass: Akito the Exiled - The Wyvern Arrives", + "native": "コードギアス 亡国のアキト 第1章 翼竜は舞い降りた", + "synonyms": [ + "Code Geass: Akito the Exiled – Przybycie Wiwerny" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 8888, + "mal_id": 8888, + "title": "Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita", + "english": "Code Geass: Akito the Exiled - The Wyvern Arrives", + "native": "コードギアス 亡国のアキト 第1章「翼竜は舞い降りた」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 8888, + "mal_id": 8888, + "title": "Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita", + "english": "Code Geass: Akito the Exiled - The Wyvern Arrives", + "native": "コードギアス 亡国のアキト 第1章 翼竜は舞い降りた", + "synonyms": [ + "Code Geass: Akito the Exiled – Przybycie Wiwerny" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13367, + "mal_id": 13367, + "title": "Kono Naka ni Hitori, Imouto ga Iru!", + "english": "NAKAIMO - My Little Sister Is Among Them!", + "native": "この中に1人、妹がいる!", + "synonyms": [ + "NakaImo", + "One of Them is My Younger Sister!", + "Who is Imouto?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia: La storia della Arcana Famiglia", + "english": "La Storia Della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia", + "english": "La storia della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [ + "Arcana Famiglia: La Storia Della Arcana Famiglia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 1, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia: La storia della Arcana Famiglia", + "english": "La Storia Della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.904, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia: La storia della Arcana Famiglia", + "english": "La Storia Della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 12293, + "mal_id": 12293, + "title": "Campione! Matsurowanu Kamigami to Kamigoroshi no Maou", + "english": "Campione!", + "native": "カンピオーネ! ~まつろわぬ神々と神殺しの魔王~", + "synonyms": [ + "Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 12967, + "mal_id": 12967, + "title": "Arcana Famiglia: La storia della Arcana Famiglia", + "english": "La Storia Della Arcana Famiglia", + "native": "アルカナ・ファミリア -La storia della Arcana Famiglia-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13807, + "mal_id": 13807, + "title": "Corpse Party: Missing Footage", + "english": null, + "native": "コープスパーティー Missing Footage", + "synonyms": [ + "Corpse Party OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 13807, + "mal_id": 13807, + "title": "Corpse Party: Missing Footage", + "english": null, + "native": "コープスパーティー Missing Footage", + "synonyms": [ + "Corpse Party OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 13807, + "mal_id": 13807, + "title": "Corpse Party: Missing Footage", + "english": null, + "native": "コープスパーティー Missing Footage", + "synonyms": [ + "Corpse Party OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 13851, + "mal_id": 13851, + "title": "To LOVE-Ru Darkness OVA", + "english": null, + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness OVA", + "To-Love-Ru Darkness OVA", + "ToLoveRu Darkness OVA", + "To Love Ru Darkness OVA" + ], + "format": "OVA", + "episodes": 6, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 8, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 13851, + "mal_id": 13851, + "title": "To LOVE-Ru Darkness OVA", + "english": null, + "native": "To LOVEる -とらぶる- ダークネス", + "synonyms": [ + "To LOVE-Ru Trouble Darkness OVA", + "To-Love-Ru Darkness OVA", + "ToLoveRu Darkness OVA" + ], + "format": "OVA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 8, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 1.0154, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 13055, + "mal_id": 13055, + "title": "Sankarea (OVA)", + "english": null, + "native": "さんかれあ (OVA)", + "synonyms": [ + "Sankarea Episode 0", + "Sankarea Episode 14" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 12549, + "mal_id": 12549, + "title": "Dakara Boku wa, H ga Dekinai.", + "english": "So, I Can't Play H!", + "native": "だから僕は、Hができない。", + "synonyms": [ + "Dakara boku-ha H ga Dekinai.", + "Dakara Boku wa", + "Ecchi ga Dekinai." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 6, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 13055, + "mal_id": 13055, + "title": "Sankarea (OVA)", + "english": null, + "native": "さんかれあ (OVA)", + "synonyms": [ + "Sankarea Episode 0", + "Sankarea Episode 14" + ], + "format": "OVA", + "episodes": 2, + "season": "SUMMER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11757, + "mal_id": 11757, + "title": "Sword Art Online", + "english": "Sword Art Online", + "native": "ソードアート・オンライン", + "synonyms": [ + "S.A.O", + "SAO" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2012, + "start_date": { + "day": 8, + "month": 7, + "year": 2012 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2012-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2012-winter.json new file mode 100644 index 0000000..af0b72d --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2012-winter.json @@ -0,0 +1,6434 @@ +{ + "year": 2012, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 10863, + "mal_id": 10863, + "title": "Steins;Gate: Oukoubakko no Poriomania", + "english": "Steins;Gate: Egoistic Poriomania", + "native": "シュタインズ・ゲート 横行跋扈のポリオマニア", + "synonyms": [ + "Steins", + "Gate Special", + "Poriomanía del egoismo" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg", + "Berserk: La Edad de Oro I - El Huevo del Rey Conquistador" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion EVOL", + "english": "Aquarion EVOL", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 10638, + "mal_id": 10638, + "title": "Denpa Onna to Seishun Otoko: Mayonaka no Taiyou", + "english": "Ground Control to Psychoelectric Girl: The Nighttime Sun", + "native": "電波女と青春男 真夜中の太陽", + "synonyms": [ + "Denpa Onna to Seishun Otoko Episode 13", + "Electromagnetic Wave Woman and Adolescent Man Special", + "Ground Control to Psychoelectric Girl: Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 10417, + "mal_id": 10417, + "title": "Gyo", + "english": "GYO: Tokyo Fish Attack", + "native": "ギョ", + "synonyms": [ + "ปลามรณะ" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 11491, + "mal_id": 11491, + "title": "Recorder to Randoseru Do♪", + "english": "Recorder and Randsell", + "native": "リコーダーとランドセル ド♪", + "synonyms": [ + "Recorder and Backpack Do", + "Recorder and Satchel Do", + "Recorder and Randsell Do", + "Recorder and Ransel Do" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "Highschool DxD" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Impostory" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 13, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 10863, + "mal_id": 10863, + "title": "Steins;Gate: Oukoubakko no Poriomania", + "english": "Steins;Gate: Egoistic Poriomania", + "native": "シュタインズ ゲート 横行跋扈のポリオマニア", + "synonyms": [ + "Steins Gate Special", + "Steins Gate Episode 25", + "Steins Gate OVA" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 13357, + "mal_id": 13357, + "title": "High School DxD Specials", + "english": null, + "native": "ハイスクールD×Dスペシャル", + "synonyms": [ + "Highschool DxD Specials" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 3, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ Plus", + "english": "Amagami SS+ plus", + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki", + "Amagami SS Second Season", + "Amagami SS 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": "Brave 10", + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby", + "Please Kill Me." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [ + "Senhime Zesshou Symphogear" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion Evol", + "english": "Aquarion Evol", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 9, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 11209, + "mal_id": 11209, + "title": "Maken-Ki! OVA", + "english": null, + "native": "マケン姫っ! OVA", + "synonyms": [ + "Natsu Da! Mizugi Da! Gasshuku Da!", + "It's Summer! It's Swimsuits! It's Training Camp!", + "Takeru Nyotaika!? Minami no Shima de Supoon", + "Maken-ki! Two: Takeru Nyotaika!? Minami no Shima de Supoon" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 3, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 10638, + "mal_id": 10638, + "title": "Denpa Onna to Seishun Otoko: Mayonaka no Taiyou", + "english": "Ground Control to Psychoelectric Girl Special", + "native": "電波女と青春男 真夜中の太陽", + "synonyms": [ + "Denpa Onna to Seishun Otoko Episode 13", + "Electromagnetic Wave Woman and Adolescent Man Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 11813, + "mal_id": 11813, + "title": "Shijou Saikyou no Deshi Kenichi OVA", + "english": "KenIchi: The Mightiest Disciple OVA", + "native": "史上最強の弟子 ケンイチ OVA", + "synonyms": [ + "History's Strongest Disciple Kenichi OVA", + "Shijou Saikyou no Deshi Kenichi: Yami no Shuugeki" + ], + "format": "OVA", + "episodes": 11, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 3, + "year": 2012 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "Highschool DxD" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 13357, + "mal_id": 13357, + "title": "High School DxD Specials", + "english": null, + "native": "ハイスクールD×Dスペシャル", + "synonyms": [ + "Highschool DxD Specials" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 3, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 13, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "תיכון די אקס די" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "Highschool DxD" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 21, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 12, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [ + "Nichibros", + "La vie quotidienne de lycéens" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Impostory" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": "Brave 10", + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [ + "Senhime Zesshou Symphogear" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby", + "Please Kill Me." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Fake Tale", + "Истории подделок", + "ปกรณัมของเทียม" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 10863, + "mal_id": 10863, + "title": "Steins;Gate: Oukoubakko no Poriomania", + "english": "Steins;Gate: Egoistic Poriomania", + "native": "シュタインズ・ゲート 横行跋扈のポリオマニア", + "synonyms": [ + "Steins", + "Gate Special", + "Poriomanía del egoismo" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 10863, + "mal_id": 10863, + "title": "Steins;Gate: Oukoubakko no Poriomania", + "english": "Steins;Gate: Egoistic Poriomania", + "native": "シュタインズ ゲート 横行跋扈のポリオマニア", + "synonyms": [ + "Steins Gate Special", + "Steins Gate Episode 25", + "Steins Gate OVA" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 13, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 11617, + "mal_id": 11617, + "title": "High School DxD", + "english": "High School DxD", + "native": "ハイスクールD×D", + "synonyms": [ + "Highschool DxD" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [ + "Natsumachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 21, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Impostory" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": "Brave 10", + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 11111, + "mal_id": 11111, + "title": "Another", + "english": "Another", + "native": "アナザー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター (TV)", + "synonyms": [ + "BRS TV", + "Black Rock Shooter TV" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [ + "Senhime Zesshou Symphogear" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg", + "Berserk: La Edad de Oro I - El Huevo del Rey Conquistador" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 0.9263, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg", + "Berserk: La Edad de Oro I - El Huevo del Rey Conquistador" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 15, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg", + "Berserk: La Edad de Oro I - El Huevo del Rey Conquistador" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby", + "Please Kill Me." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 10218, + "mal_id": 10218, + "title": "Berserk: Ougon Jidai-hen I - Haou no Tamago", + "english": "Berserk: The Golden Age Arc I - The Egg of the King", + "native": "ベルセルク 黄金時代篇Ⅰ 覇王の卵", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc I - Egg of the Supreme Ruler", + "The Golden Age Arc I: The High King's Egg", + "Berserk: La Edad de Oro I - El Huevo del Rey Conquistador" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 13, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ Plus", + "english": "Amagami SS+ plus", + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki", + "Amagami SS Second Season", + "Amagami SS 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [ + "Senhime Zesshou Symphogear" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11597, + "mal_id": 11597, + "title": "Nisemonogatari", + "english": "Nisemonogatari", + "native": "偽物語", + "synonyms": [ + "Impostory" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 11751, + "mal_id": 11751, + "title": "Senki Zesshou Symphogear", + "english": "Symphogear", + "native": "戦姫絶唱シンフォギア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ Plus", + "english": "Amagami SS+ plus", + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki", + "Amagami SS Second Season", + "Amagami SS 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ plus", + "english": null, + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 11013, + "mal_id": 11013, + "title": "Inu x Boku SS", + "english": "Inu X Boku Secret Service", + "native": "妖狐×僕SS", + "synonyms": [ + "Youko x Boku SS" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 13, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby", + "Please Kill Me." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11079, + "mal_id": 11079, + "title": "Kill Me Baby", + "english": "Kill Me Baby", + "native": "キルミーベイベー", + "synonyms": [ + "Baby, Please Kill Me.", + "תהרוג אותי מותק" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": "Brave 10", + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 11285, + "mal_id": 11285, + "title": "Black★Rock Shooter (TV)", + "english": "Black Rock Shooter", + "native": "ブラック★ロックシューター", + "synonyms": [ + "BRS (TV)" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 11241, + "mal_id": 11241, + "title": "Brave 10", + "english": null, + "native": "ブレイブ・テン", + "synonyms": [ + "Brave10", + "Brave Ten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion EVOL", + "english": "Aquarion EVOL", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion Evol", + "english": "Aquarion Evol", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 9, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion EVOL", + "english": "Aquarion EVOL", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ Plus", + "english": "Amagami SS+ plus", + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki", + "Amagami SS Second Season", + "Amagami SS 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion EVOL", + "english": "Aquarion EVOL", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 10447, + "mal_id": 10447, + "title": "Aquarion EVOL", + "english": "Aquarion EVOL", + "native": "アクエリオンEVOL", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 1.06, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 11235, + "mal_id": 11235, + "title": "Amagami SS+ Plus", + "english": "Amagami SS+ plus", + "native": "アマガミSS+ plus", + "synonyms": [ + "Amagami SS Dai Ni Ki", + "Amagami SS Second Season", + "Amagami SS 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 6, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 12191, + "mal_id": 12191, + "title": "Smile Precure!", + "english": "Glitter Force", + "native": "スマイルプリキュア", + "synonyms": [ + "Smile Pretty Cure!" + ], + "format": "TV", + "episodes": 48, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 8917, + "mal_id": 8917, + "title": "Mouretsu Pirates", + "english": "Bodacious Space Pirates", + "native": "モーレツ宇宙海賊", + "synonyms": [ + "Mouretsu Uchuu Kaizoku", + "Miniskirt Pirates", + "Moretsu Uchuu Kaizoku" + ], + "format": "TV", + "episodes": 26, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 10638, + "mal_id": 10638, + "title": "Denpa Onna to Seishun Otoko: Mayonaka no Taiyou", + "english": "Ground Control to Psychoelectric Girl: The Nighttime Sun", + "native": "電波女と青春男 真夜中の太陽", + "synonyms": [ + "Denpa Onna to Seishun Otoko Episode 13", + "Electromagnetic Wave Woman and Adolescent Man Special", + "Ground Control to Psychoelectric Girl: Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 2, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 10638, + "mal_id": 10638, + "title": "Denpa Onna to Seishun Otoko: Mayonaka no Taiyou", + "english": "Ground Control to Psychoelectric Girl Special", + "native": "電波女と青春男 真夜中の太陽", + "synonyms": [ + "Denpa Onna to Seishun Otoko Episode 13", + "Electromagnetic Wave Woman and Adolescent Man Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 2, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 11433, + "mal_id": 11433, + "title": "Ano Natsu de Matteru", + "english": "Waiting in the Summer", + "native": "あの夏で待ってる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 11665, + "mal_id": 11665, + "title": "Natsume Yuujinchou Shi", + "english": "Natsume's Book of Friends Season 4", + "native": "夏目友人帳 肆", + "synonyms": [ + "Natsume Yuujinchou Four", + "Natsume Yuujinchou 4", + "Natsume Yujincho 4" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 3, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 11697, + "mal_id": 11697, + "title": "Area no Kishi", + "english": "The Knight in the Area", + "native": "エリアの騎士", + "synonyms": [ + "Il cavaliere dell'area di rigore" + ], + "format": "TV", + "episodes": 37, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 11491, + "mal_id": 11491, + "title": "Recorder to Randoseru Do♪", + "english": "Recorder and Randsell", + "native": "リコーダーとランドセル ド♪", + "synonyms": [ + "Recorder and Backpack Do", + "Recorder and Satchel Do", + "Recorder and Randsell Do", + "Recorder and Ransel Do" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Oujisama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [ + "New Prince of Tennis" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 5, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 11319, + "mal_id": 11319, + "title": "Zero no Tsukaima F", + "english": "The Familiar of Zero F", + "native": "ゼロの使い魔F", + "synonyms": [ + "Zero no Tsukaima Final Series", + "Zero's Familiar Final Series", + "Zero no Tsukaima S4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 7, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 11843, + "mal_id": 11843, + "title": "Danshi Koukousei no Nichijou", + "english": "Daily Lives of High School Boys", + "native": "男子高校生の日常", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 10, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11179, + "mal_id": 11179, + "title": "Papa no Iukoto wo Kikinasai!", + "english": "Listen to Me, Girls. I Am Your Father!", + "native": "パパのいうことを聞きなさい!", + "synonyms": [ + "Papakiki", + "Listen to Me", + "Girls", + "I'm Your Father!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 11, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 11371, + "mal_id": 11371, + "title": "Shin Tennis no Ouji-sama", + "english": "The Prince of Tennis II", + "native": "新テニスの王子様", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2012, + "start_date": { + "year": 2012, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 11227, + "mal_id": 11227, + "title": "Rinne no Lagrange", + "english": "Lagrange: The Flower of Rin-ne", + "native": "輪廻のラグランジェ", + "synonyms": [ + "Flower declaration of your heart", + "Lag-Rin" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2012, + "start_date": { + "day": 8, + "month": 1, + "year": 2012 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2013-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2013-fall.json new file mode 100644 index 0000000..4db1835 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2013-fall.json @@ -0,0 +1,6554 @@ +{ + "year": 2013, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "Kiru Ra Kiru", + "KLK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 17895, + "mal_id": 17895, + "title": "Golden Time", + "english": "Golden Time", + "native": "ゴールデンタイム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie -Rebellion-", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3", + "Puella Magi Madoka Magica the Movie Part III: Rebellion", + "Puella Magi Madoka Magica the Movie: Rebellion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20021, + "mal_id": 20021, + "title": "Sword Art Online: Extra Edition", + "english": "Sword Art Online EXTRA EDITION", + "native": "ソードアート・オンライン Extra Edition", + "synonyms": [ + "S.A.O: Extra Edition", + "SAO: Extra Edition", + "ซอร์ดอาร์ตออนไลน์: Extra Edition" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 18753, + "mal_id": 18753, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.", + "english": "My Teen Romantic Comedy SNAFU OVA", + "native": "やはり俺の青春ラブコメはまちがっている。「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」", + "synonyms": [ + "Oregairu OVA", + "My youth romantic comedy is wrong as I expected. OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 17513, + "mal_id": 17513, + "title": "DIABOLIK LOVERS", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "ディアボリックラヴァーズ" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "KLK", + "Dressed to Kill" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 17895, + "mal_id": 17895, + "title": "Golden Time", + "english": "Golden Time", + "native": "ゴールデンタイム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd Season", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 2nd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "SutoBura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 9, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OAD", + "native": "進撃の巨人OAD", + "synonyms": [ + "Shingeki no Kyojin: Ilse no Techou", + "Attack on Titan: Ilse's Journal", + "進撃の巨人 「イルゼの手帳」" + ], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 12, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy", + "NouCome", + "NouKome" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 10, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie: Rebellion", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 17513, + "mal_id": 17513, + "title": "Diabolik Lovers", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "DiaLover" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 16, + "month": 9, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 20021, + "mal_id": 20021, + "title": "Sword Art Online: Extra Edition", + "english": "Sword Art Online: Extra Edition", + "native": "ソードアート・オンライン Extra Edition", + "synonyms": [ + "S.A.O: Extra Edition", + "SAO: Extra Edition" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [ + "Sakasama no Patema" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 11, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of the Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 11, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "Kiru Ra Kiru", + "KLK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "KLK", + "Dressed to Kill" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "Kiru Ra Kiru", + "KLK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "Kiru Ra Kiru", + "KLK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.1207, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon", + "境界的彼方" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "SutoBura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 17895, + "mal_id": 17895, + "title": "Golden Time", + "english": "Golden Time", + "native": "ゴールデンタイム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 17895, + "mal_id": 17895, + "title": "Golden Time", + "english": "Golden Time", + "native": "ゴールデンタイム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 17895, + "mal_id": 17895, + "title": "Golden Time", + "english": "Golden Time", + "native": "ゴールデンタイム", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 18679, + "mal_id": 18679, + "title": "Kill la Kill", + "english": "Kill la Kill", + "native": "キルラキル", + "synonyms": [ + "KLK", + "Dressed to Kill" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 1.1207, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17265, + "mal_id": 17265, + "title": "Log Horizon", + "english": "Log Horizon", + "native": "ログ・ホライズン", + "synonyms": [ + "รวมพลคนติดอยู่ในเกมส์" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd Season", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 2nd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 1.1087, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd SEASON", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ 2nd SEASON", + "synonyms": [ + "Kuroko no Basuke 2", + "הכדורסל של קורוקו 2", + "Баскетбол Куроко 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The kingdom of magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "マギ The labyrinth of magic 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asukara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "NagiAsu", + "Nagi no Asu Kara: Calmaria do Mar", + "Nagi no Asukara: Calma en el mar", + "From a calm tomorrow" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OAD", + "native": "進撃の巨人OAD", + "synonyms": [ + "Shingeki no Kyojin: Ilse no Techou", + "Attack on Titan: Ilse's Journal", + "進撃の巨人 「イルゼの手帳」" + ], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 12, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.8865, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 18397, + "mal_id": 18397, + "title": "Shingeki no Kyojin OVA", + "english": "Attack on Titan OVA", + "native": "進撃の巨人 OVA", + "synonyms": [ + "Attack on Titan: Ilse's Journal", + "Attack on Titan: A Sudden Visitor", + "ผ่าพิภพไททัน OAD", + "Атака титанов OVA" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "SutoBura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 17549, + "mal_id": 17549, + "title": "Non Non Biyori", + "english": "Non Non Biyori", + "native": "のんのんびより", + "synonyms": [ + "悠哉日常大王" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie -Rebellion-", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3", + "Puella Magi Madoka Magica the Movie Part III: Rebellion", + "Puella Magi Madoka Magica the Movie: Rebellion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie: Rebellion", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.8839, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie -Rebellion-", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3", + "Puella Magi Madoka Magica the Movie Part III: Rebellion", + "Puella Magi Madoka Magica the Movie: Rebellion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.8746, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 11981, + "mal_id": 11981, + "title": "Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari", + "english": "Puella Magi Madoka Magica the Movie -Rebellion-", + "native": "劇場版 魔法少女まどか☆マギカ 叛逆の物語", + "synonyms": [ + "Mahou Shoujo Madoka Magika Movie 3", + "Magical Girl Madoka Magica Movie 3", + "Puella Magi Madoka Magica the Movie Part III: Rebellion", + "Puella Magi Madoka Magica the Movie: Rebellion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 9, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17513, + "mal_id": 17513, + "title": "Diabolik Lovers", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "DiaLover" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 16, + "month": 9, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy", + "NouCome", + "NouKome" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 10, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16011, + "mal_id": 16011, + "title": "Tokyo Ravens", + "english": "Tokyo Ravens", + "native": "東京レイヴンズ", + "synonyms": [ + "โตเกียว อนเมียวจิ" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy", + "NouCome", + "NouKome" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 10, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "NouKome", + "NouCome", + "Ore no Nounai Sentakushi ga", + " Gakuen Lovecome o Zenryoku de Jama Shite Iru" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19221, + "mal_id": 19221, + "title": "Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru", + "english": "My Mental Choices Are Completely Interfering With My School Romantic Comedy", + "native": "俺の脳内選択肢が、学園ラブコメを全力で邪魔している", + "synonyms": [ + "My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy", + "NouCome", + "NouKome" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 10, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "SutoBura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [ + "Sakasama no Patema" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 11, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 21, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 12477, + "mal_id": 12477, + "title": "Sakasama no Patema", + "english": "Patema Inverted", + "native": "サカサマのパテマ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [ + "IS2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20021, + "mal_id": 20021, + "title": "Sword Art Online: Extra Edition", + "english": "Sword Art Online EXTRA EDITION", + "native": "ソードアート・オンライン Extra Edition", + "synonyms": [ + "S.A.O: Extra Edition", + "SAO: Extra Edition", + "ซอร์ดอาร์ตออนไลน์: Extra Edition" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 20021, + "mal_id": 20021, + "title": "Sword Art Online: Extra Edition", + "english": "Sword Art Online: Extra Edition", + "native": "ソードアート・オンライン Extra Edition", + "synonyms": [ + "S.A.O: Extra Edition", + "SAO: Extra Edition" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9405, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20021, + "mal_id": 20021, + "title": "Sword Art Online: Extra Edition", + "english": "Sword Art Online EXTRA EDITION", + "native": "ソードアート・オンライン Extra Edition", + "synonyms": [ + "S.A.O: Extra Edition", + "SAO: Extra Edition", + "ซอร์ดอาร์ตออนไลน์: Extra Edition" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 18753, + "mal_id": 18753, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.", + "english": "My Teen Romantic Comedy SNAFU OVA", + "native": "やはり俺の青春ラブコメはまちがっている。「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」", + "synonyms": [ + "Oregairu OVA", + "My youth romantic comedy is wrong as I expected. OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 0.8602, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 18753, + "mal_id": 18753, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni Sachi Ookaran Koto wo Negawazaru wo Enai.", + "english": "My Teen Romantic Comedy SNAFU OVA", + "native": "やはり俺の青春ラブコメはまちがっている。「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」", + "synonyms": [ + "Oregairu OVA", + "My youth romantic comedy is wrong as I expected. OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of the Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 11, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.9366, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 7, + "score": 0.9128, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 0.8898, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16664, + "mal_id": 16664, + "title": "Kaguya-hime no Monogatari", + "english": "The Tale of The Princess Kaguya", + "native": "かぐや姫の物語", + "synonyms": [ + "Kaguyahime no Monogatari", + "Princess Kaguya Story", + "El Cuento de la Princesa Kaguya", + "O Conto da Princesa Kaguya", + "Księżniczka Kaguya", + "La leyenda de la Princesa Kaguya", + "حكاية اﻷميرة كاجويا", + "Die Legende der Prinzessin Kaguya", + "La storia della Principessa Splendente", + "Le Conte de la princesse Kaguya", + "Fortellingen om Prinsesse Kaguya", + "Sagan om Prinsessan Kaguya" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 18277, + "mal_id": 18277, + "title": "Strike the Blood", + "english": "Strike the Blood", + "native": "ストライク・ザ・ブラッド", + "synonyms": [ + "SutoBura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 17513, + "mal_id": 17513, + "title": "DIABOLIK LOVERS", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "ディアボリックラヴァーズ" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17513, + "mal_id": 17513, + "title": "Diabolik Lovers", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "DiaLover" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 16, + "month": 9, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 17513, + "mal_id": 17513, + "title": "DIABOLIK LOVERS", + "english": "Diabolik Lovers", + "native": "DIABOLIK LOVERS", + "synonyms": [ + "ディアボリックラヴァーズ" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 16894, + "mal_id": 16894, + "title": "Kuroko no Basket 2nd Season", + "english": "Kuroko's Basketball 2", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 2nd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女は傷つかない", + "synonyms": [ + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 19369, + "mal_id": 19369, + "title": "Outbreak Company", + "english": "Outbreak Company", + "native": "アウトブレイク・カンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 18677, + "mal_id": 18677, + "title": "Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita.", + "english": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job", + "native": "勇者になれなかった俺はしぶしぶ就職を決意しました。", + "synonyms": [ + "Yu-sibu", + "Yusibu", + "Yuushibu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 5, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 17247, + "mal_id": 17247, + "title": "Machine-Doll wa Kizutsukanai", + "english": "Unbreakable Machine-Doll", + "native": "機巧少女〈マシンドール〉は傷つかない", + "synonyms": [ + "Machine Girl wa Kizutsukanai", + "Kikou Shoujo wa Kizutsukanai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 7, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 19703, + "mal_id": 19703, + "title": "Kyousougiga (TV)", + "english": "Kyousougiga", + "native": "京騒戯画 (TV)", + "synonyms": [ + "Kyousogiga", + "Kyousou Giga" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 1.06, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16067, + "mal_id": 16067, + "title": "Nagi no Asu kara", + "english": "A Lull in the Sea", + "native": "凪のあすから", + "synonyms": [ + "Nagi no Asukara", + "Nagiasu" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18153, + "mal_id": 18153, + "title": "Kyoukai no Kanata", + "english": "Beyond the Boundary", + "native": "境界の彼方", + "synonyms": [ + "Beyond the Horizon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 3, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of the Diamond", + "native": "ダイヤのA", + "synonyms": [ + "Daiya no Ace", + "Ace of Diamond", + "Daiya no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 19647, + "mal_id": 19647, + "title": "Hajime no Ippo: Rising", + "english": "Fighting Spirit: Rising", + "native": "はじめの一歩 Rising", + "synonyms": [ + "Fighting Spirit: Rising", + "Hajime no Ippo 3" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 18245, + "mal_id": 18245, + "title": "White Album 2", + "english": "White Album 2", + "native": "WHITE ALBUM [ホワイトアルバム] 2", + "synonyms": [ + "White Album2", + "WA2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 18689, + "mal_id": 18689, + "title": "Diamond no Ace", + "english": "Ace of Diamond", + "native": "ダイヤのA[エース]", + "synonyms": [ + "Daiya no Ace", + "Ace of the Diamond", + "Dia no A" + ], + "format": "TV", + "episodes": 75, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18247, + "mal_id": 18247, + "title": "IS: Infinite Stratos 2", + "english": "Infinite Stratos 2", + "native": "IS〈インフィニット・ストラトス〉2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 4, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 18179, + "mal_id": 18179, + "title": "Yowamushi Pedal", + "english": "Yowamushi Pedal", + "native": "弱虫ペダル", + "synonyms": [ + "Yowapeda" + ], + "format": "TV", + "episodes": 38, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 8, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 18245, + "mal_id": 18245, + "title": "WHITE ALBUM 2", + "english": "White Album 2", + "native": "WHITE ALBUM 2", + "synonyms": [ + "WA2", + "ホワイトアルバム2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2013, + "start_date": { + "year": 2013, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 18115, + "mal_id": 18115, + "title": "Magi: The Kingdom of Magic", + "english": "Magi: The Kingdom of Magic", + "native": "マギ The kingdom of magic", + "synonyms": [ + "Magi: The Labyrinth of Magic 2", + "Magi Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2013, + "start_date": { + "day": 6, + "month": 10, + "year": 2013 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2013-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2013-spring.json new file mode 100644 index 0000000..9bc5948 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2013-spring.json @@ -0,0 +1,6465 @@ +{ + "year": 2013, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha", + "El Jardín de las Palabras", + "A szavak kertje", + "ยามสายฝนโปรยปราย", + "Ogród słów", + "Сад изящных слов", + "Il giardino delle parole" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 11577, + "mal_id": 11577, + "title": "Steins;Gate: Fuka Ryouiki no Déjà vu", + "english": "Steins;Gate The Movie – Load Region of Déjà Vu", + "native": "劇場版 シュタインズゲート 負荷領域のデジャヴ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 14837, + "mal_id": 14837, + "title": "Dragon Ball Z: Kami to Kami", + "english": "Dragon Ball Z: Battle of Gods", + "native": "ドラゴンボールZ: 神と神", + "synonyms": [ + "Dragon Ball Z 2013", + "DBZ (2013)", + "Saikyou Shidou", + "Dragon Ball Z Movie 14: God & God", + "Bola de Drac Z: La Batalla dels Déus", + "Dragon Ball Z - Kampf der Götter", + "Dragon Ball Z: A Batalha dos Deuses", + "Драконий жемчуг Зет: Битва богов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 14669, + "mal_id": 14669, + "title": "AURA: Maryuuinkouga Saigo no Tatakai", + "english": "Aura", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai", + "Aura: Koga Maryuin's Last War" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 16528, + "mal_id": 16528, + "title": "Hal", + "english": "Hal", + "native": "ハル", + "synonyms": [ + "Haru" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 15771, + "mal_id": 15771, + "title": "Saint☆Onii-san", + "english": null, + "native": "聖☆おにいさん", + "synonyms": [ + "Saint☆Oniisan (Movie)", + "Saint☆Young Men" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 17082, + "mal_id": 17082, + "title": "Aiura", + "english": "AIURA", + "native": "あいうら", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 14175, + "mal_id": 14175, + "title": "Hanasaku Iroha: HOME SWEET HOME", + "english": "Hanasaku Iroha the Movie ~ HOME SWEET HOME ~", + "native": "花咲くいろは HOME SWEET HOME", + "synonyms": [ + "Hana-Saku Iroha: Home Sweet Home", + "Hanairo Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 6, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 5, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 11577, + "mal_id": 11577, + "title": "Steins;Gate Movie: Fuka Ryouiki no Déjà vu", + "english": "Steins;Gate: The Movie - Load Region of Déjà Vu", + "native": "劇場版 シュタインズゲート 負荷領域のデジャヴ", + "synonyms": [ + "Steins Gate Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "The \"Hentai\" Prince and the Stony Cat.", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HenNeko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai.", + "english": "OreImo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 16762, + "mal_id": 16762, + "title": "Mirai Nikki: Redial", + "english": "The Future Diary: Redial", + "native": "未来日記リダイヤル", + "synonyms": [ + "Mirai Nikki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 16934, + "mal_id": 16934, + "title": "Chuunibyou demo Koi ga Shitai! Kirameki no... Slapstick Noel", + "english": "Love, Chunibyo & Other Delusions!: Sparkling... Slapstick Noel", + "native": "中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル)", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! Episode 13", + "Chu-2 Byo demo Koi ga Shitai! Episode 13" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [ + "Kakumeiki Valvrave" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 16528, + "mal_id": 16528, + "title": "Hal", + "english": "Hal", + "native": "ハル", + "synonyms": [ + "Haru" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano", + "Photograph Girlfriend" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 14669, + "mal_id": 14669, + "title": "Aura: Maryuuin Kouga Saigo no Tatakai", + "english": "Aura: Koga Maryuin's Last War", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [ + "RDG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 12711, + "mal_id": 12711, + "title": "Uta no☆Prince-sama♪ Maji Love 2000%", + "english": "Uta no Prince Sama 2", + "native": "うたの☆プリンスさまっ♪ マジLOVE2000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000% 2", + "UtaPri 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [ + "Dansai Bunri no Crime Edge" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 10, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 6, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "SnK", + "AoT", + "Ataque a los Titanes", + "Ataque dos Titãs", + "L'Attacco dei Giganti", + "מתקפת הטיטאנים", + "进击的巨人", + "L’Attaque des Titans", + "الهجوم على العمالقة", + "ผ่าพิภพไททัน", + "حمله به تایتان", + "Ataque de Titãs", + "Atak Tytanów", + "Атака титанов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [ + "Dansai Bunri no Crime Edge" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต", + "Raja Iblis Nyambi!", + "打工吧!魔王大人" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai.", + "english": "OreImo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [ + "RDG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected.", + "俺ガイル", + "我的青春恋爱物语果然有问题", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha", + "El Jardín de las Palabras", + "A szavak kertje", + "ยามสายฝนโปรยปราย", + "Ogród słów", + "Сад изящных слов", + "Il giardino delle parole" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 5, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 1.0207, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha", + "El Jardín de las Palabras", + "A szavak kertje", + "ยามสายฝนโปรยปราย", + "Ogród słów", + "Сад изящных слов", + "Il giardino delle parole" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha", + "El Jardín de las Palabras", + "A szavak kertje", + "ยามสายฝนโปรยปราย", + "Ogród słów", + "Сад изящных слов", + "Il giardino delle parole" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 16782, + "mal_id": 16782, + "title": "Kotonoha no Niwa", + "english": "The Garden of Words", + "native": "言の葉の庭", + "synonyms": [ + "Koto no Ha no Niwa", + "The Garden of Kotonoha", + "El Jardín de las Palabras", + "A szavak kertje", + "ยามสายฝนโปรยปราย", + "Ogród słów", + "Сад изящных слов", + "Il giardino delle parole" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 6, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [ + "RDG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [ + "Kakumeiki Valvrave" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก", + " Рандеву с жизнью" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11577, + "mal_id": 11577, + "title": "Steins;Gate: Fuka Ryouiki no Déjà vu", + "english": "Steins;Gate The Movie – Load Region of Déjà Vu", + "native": "劇場版 シュタインズゲート 負荷領域のデジャヴ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 11577, + "mal_id": 11577, + "title": "Steins;Gate Movie: Fuka Ryouiki no Déjà vu", + "english": "Steins;Gate: The Movie - Load Region of Déjà Vu", + "native": "劇場版 シュタインズゲート 負荷領域のデジャヴ", + "synonyms": [ + "Steins Gate Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11577, + "mal_id": 11577, + "title": "Steins;Gate: Fuka Ryouiki no Déjà vu", + "english": "Steins;Gate The Movie – Load Region of Déjà Vu", + "native": "劇場版 シュタインズゲート 負荷領域のデジャヴ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 1.0641, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 14, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2nd Season", + "A Certain Scientific Railgun 2nd Season", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2", + "Некий научный Рейлган 2", + "Некий научный Рейлган С", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2", + "Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ", + "魔法禁書目錄外傳 科學超電磁砲 第二季", + "科學超電磁砲 S" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "The \"Hentai\" Prince and the Stony Cat.", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HenNeko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 21, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 12711, + "mal_id": 12711, + "title": "Uta no☆Prince-sama♪ Maji Love 2000%", + "english": "Uta no Prince Sama 2", + "native": "うたの☆プリンスさまっ♪ マジLOVE2000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000% 2", + "UtaPri 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.9267, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "Hentai Prince & the Stony Cat", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HENNEKO", + "El príncipe pervertido y el gato de piedra", + "O príncipe pervertido e o gato inexpressivo", + "The \"Hentai\" Prince and the Stony Cat." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai.", + "english": "OreImo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konnani Kawaii Wake ga Nai.", + "english": "OreImo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 12711, + "mal_id": 12711, + "title": "Uta no☆Prince-sama♪ Maji Love 2000%", + "english": "Uta no Prince Sama 2", + "native": "うたの☆プリンスさまっ♪ マジLOVE2000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000% 2", + "UtaPri 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13659, + "mal_id": 13659, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai.", + "english": "Oreimo 2", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2", + "Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.9806, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14837, + "mal_id": 14837, + "title": "Dragon Ball Z: Kami to Kami", + "english": "Dragon Ball Z: Battle of Gods", + "native": "ドラゴンボールZ: 神と神", + "synonyms": [ + "Dragon Ball Z 2013", + "DBZ (2013)", + "Saikyou Shidou", + "Dragon Ball Z Movie 14: God & God", + "Bola de Drac Z: La Batalla dels Déus", + "Dragon Ball Z - Kampf der Götter", + "Dragon Ball Z: A Batalha dos Deuses", + "Драконий жемчуг Зет: Битва богов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14837, + "mal_id": 14837, + "title": "Dragon Ball Z: Kami to Kami", + "english": "Dragon Ball Z: Battle of Gods", + "native": "ドラゴンボールZ: 神と神", + "synonyms": [ + "Dragon Ball Z 2013", + "DBZ (2013)", + "Saikyou Shidou", + "Dragon Ball Z Movie 14: God & God", + "Bola de Drac Z: La Batalla dels Déus", + "Dragon Ball Z - Kampf der Götter", + "Dragon Ball Z: A Batalha dos Deuses", + "Драконий жемчуг Зет: Битва богов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 10, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Kwiaty zła" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko: Crawling With Love! Second Season", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2", + "Nyarko-san: Another Crawling Chaos W" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 8, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15699, + "mal_id": 15699, + "title": "Haiyore! Nyaruko-san W", + "english": "Nyaruko-san: Another Crawling Chaos W", + "native": "這いよれ!ニャル子さん W", + "synonyms": [ + "Haiyore! Nyaruko-san 2", + "Haiyoru! Nyaruko-san 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 12711, + "mal_id": 12711, + "title": "Uta no☆Prince-sama♪ Maji Love 2000%", + "english": "Uta no Prince Sama 2", + "native": "うたの☆プリンスさまっ♪ マジLOVE2000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000% 2", + "UtaPri 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [ + "Kakumeiki Valvrave" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 12711, + "mal_id": 12711, + "title": "Uta no☆Prince-sama♪ Maji Love 2000%", + "english": "Uta no Prince Sama 2", + "native": "うたの☆プリンスさまっ♪ マジLOVE2000%", + "synonyms": [ + "Uta no Prince-sama Maji Love 1000% 2", + "UtaPri 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval (TV)", + "native": "カーニヴァル (TV)", + "synonyms": [ + "ล่าทรชน" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [ + "Kakumeiki Valvrave" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 6, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14669, + "mal_id": 14669, + "title": "AURA: Maryuuinkouga Saigo no Tatakai", + "english": "Aura", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai", + "Aura: Koga Maryuin's Last War" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14669, + "mal_id": 14669, + "title": "Aura: Maryuuin Kouga Saigo no Tatakai", + "english": "Aura: Koga Maryuin's Last War", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.9217, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14669, + "mal_id": 14669, + "title": "AURA: Maryuuinkouga Saigo no Tatakai", + "english": "Aura", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai", + "Aura: Koga Maryuin's Last War" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14669, + "mal_id": 14669, + "title": "AURA: Maryuuinkouga Saigo no Tatakai", + "english": "Aura", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai", + "Aura: Koga Maryuin's Last War" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14669, + "mal_id": 14669, + "title": "AURA: Maryuuinkouga Saigo no Tatakai", + "english": "Aura", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai", + "Aura: Koga Maryuin's Last War" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16528, + "mal_id": 16528, + "title": "Hal", + "english": "Hal", + "native": "ハル", + "synonyms": [ + "Haru" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 16528, + "mal_id": 16528, + "title": "Hal", + "english": "Hal", + "native": "ハル", + "synonyms": [ + "Haru" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16528, + "mal_id": 16528, + "title": "Hal", + "english": "Hal", + "native": "ハル", + "synonyms": [ + "Haru" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 10, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 15911, + "mal_id": 15911, + "title": "Yuyushiki", + "english": "Yuyushiki", + "native": "ゆゆ式", + "synonyms": [ + "Yuyu-shiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano", + "Photograph Girlfriend" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15225, + "mal_id": 15225, + "title": "Hentai Ouji to Warawanai Neko.", + "english": "The \"Hentai\" Prince and the Stony Cat.", + "native": "変態王子と笑わない猫。", + "synonyms": [ + "HenNeko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 16201, + "mal_id": 16201, + "title": "Aku no Hana", + "english": "Flowers of Evil", + "native": "惡の華", + "synonyms": [ + "Aku no Hana" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16668, + "mal_id": 16668, + "title": "Kakumeiki Valvrave", + "english": "Valvrave the Liberator", + "native": "革命機ヴァルヴレイヴ", + "synonyms": [ + "Kakumeiki Valvrave" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano", + "Photograph Girlfriend" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2: THE ANIMATION", + "english": "Devil Survivor 2: The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.9517, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 15771, + "mal_id": 15771, + "title": "Saint☆Onii-san", + "english": null, + "native": "聖☆おにいさん", + "synonyms": [ + "Saint☆Oniisan (Movie)", + "Saint☆Young Men" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 5, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16498, + "mal_id": 16498, + "title": "Shingeki no Kyojin", + "english": "Attack on Titan", + "native": "進撃の巨人", + "synonyms": [ + "AoT", + "SnK" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17082, + "mal_id": 17082, + "title": "Aiura", + "english": "AIURA", + "native": "あいうら", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 14669, + "mal_id": 14669, + "title": "Aura: Maryuuin Kouga Saigo no Tatakai", + "english": "Aura: Koga Maryuin's Last War", + "native": "AURA~魔竜院光牙最後の闘い~", + "synonyms": [ + "Aura: Maryuinkoga Saigo no Tatakai", + "Aura: Maryuin Kouga Saigo no Tatakai" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17082, + "mal_id": 17082, + "title": "Aiura", + "english": "AIURA", + "native": "あいうら", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 16035, + "mal_id": 16035, + "title": "Karneval (TV)", + "english": "Karneval", + "native": "カーニヴァル", + "synonyms": [ + "Karneval (2013)" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 17082, + "mal_id": 17082, + "title": "Aiura", + "english": "AIURA", + "native": "あいうら", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 14175, + "mal_id": 14175, + "title": "Hanasaku Iroha: HOME SWEET HOME", + "english": "Hanasaku Iroha the Movie ~ HOME SWEET HOME ~", + "native": "花咲くいろは HOME SWEET HOME", + "synonyms": [ + "Hana-Saku Iroha: Home Sweet Home", + "Hanairo Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 14175, + "mal_id": 14175, + "title": "Hanasaku Iroha: HOME SWEET HOME", + "english": "Hanasaku Iroha the Movie ~ HOME SWEET HOME ~", + "native": "花咲くいろは HOME SWEET HOME", + "synonyms": [ + "Hana-Saku Iroha: Home Sweet Home", + "Hanairo Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [ + "Dansai Bunri no Crime Edge" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 14175, + "mal_id": 14175, + "title": "Hanasaku Iroha: HOME SWEET HOME", + "english": "Hanasaku Iroha the Movie ~ HOME SWEET HOME ~", + "native": "花咲くいろは HOME SWEET HOME", + "synonyms": [ + "Hana-Saku Iroha: Home Sweet Home", + "Hanairo Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [ + "RDG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 15583, + "mal_id": 15583, + "title": "Date A Live", + "english": "Date A Live", + "native": "デート・ア・ライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 6, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14813, + "mal_id": 14813, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru.", + "english": "My Teen Romantic Comedy SNAFU", + "native": "やはり俺の青春ラブコメはまちがっている。", + "synonyms": [ + "Oregairu", + "My youth romantic comedy is wrong as I expected." + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16397, + "mal_id": 16397, + "title": "Photokano", + "english": "Photo Kano", + "native": "フォトカノ", + "synonyms": [ + "Foto Kano", + "Photograph Girlfriend" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 14921, + "mal_id": 14921, + "title": "RDG: Red Data Girl", + "english": "Red Data Girl", + "native": "RDG レッドデータガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16512, + "mal_id": 16512, + "title": "Devil Survivor 2 The Animation", + "english": "Devil Survivor 2 The Animation", + "native": "デビルサバイバー2 THE ANIMATION", + "synonyms": [ + "DS2A", + "Shin Megami Tensei: Devil Survivor 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [ + "Dansai Bunri no Crime Edge" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 1, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15809, + "mal_id": 15809, + "title": "Hataraku Maou-sama!", + "english": "The Devil is a Part-Timer!", + "native": "はたらく魔王さま!", + "synonyms": [ + "Hataraku Maou-sama!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 4, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 15377, + "mal_id": 15377, + "title": "Hyakka Ryouran: Samurai Bride", + "english": "Samurai Bride", + "native": "百花繚乱 サムライブライド", + "synonyms": [ + "Hyakka Ryouran: Samurai Girls 2nd Season", + "Hyakka Ryouran: Samurai Girls Dai 2-ki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 5, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16524, + "mal_id": 16524, + "title": "Suisei no Gargantia", + "english": "Gargantia on the Verdurous Planet", + "native": "翠星のガルガンティア", + "synonyms": [ + "Suisei no Galgantia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 7, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 16355, + "mal_id": 16355, + "title": "Dansai Bunri no Crime Edge", + "english": "The Severing Crime Edge", + "native": "断裁分離のクライムエッジ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2013, + "start_date": { + "year": 2013, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16049, + "mal_id": 16049, + "title": "Toaru Kagaku no Railgun S", + "english": "A Certain Scientific Railgun S", + "native": "とある科学の超電磁砲S", + "synonyms": [ + "Toaru Kagaku no Railgun 2", + "Toaru Kagaku no Choudenjihou 2", + "A Certain Scientific Railgun 2" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2013, + "start_date": { + "day": 12, + "month": 4, + "year": 2013 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2013-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2013-summer.json new file mode 100644 index 0000000..8700277 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2013-summer.json @@ -0,0 +1,5682 @@ +{ + "year": 2013, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD NEW", + "english": null, + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! -Iwatobi Swim Club-", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 16762, + "mal_id": 16762, + "title": "Mirai Nikki: Redial", + "english": "The Future Diary: Redial", + "native": "未来日記リダイヤル", + "synonyms": [ + "Mirai Nikki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 15037, + "mal_id": 15037, + "title": "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou", + "english": "Corpse Party", + "native": "コープスパーティー Tortured Souls -暴虐された魂の呪叫-", + "synonyms": [ + "Corpse Party: Tortured Souls – The Curse of Tortured Souls" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 16934, + "mal_id": 16934, + "title": "Chuunibyou demo Koi ga Shitai!: Kirameki no… Slapstick Noel", + "english": "Love, Chunibyo & Other Delusions: Glimmering...Explosive Festival (Slapstick Noel)", + "native": "中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル)", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 15039, + "mal_id": 15039, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", + "english": "Anohana the Movie: The Flower We Saw That Day", + "native": "劇場版 あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "ดอกไม้ มิตรภาพ และความทรงจำ เดอะมูฟวี่", + "Anohana: The Flower We Saw That Day Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 8, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/kaleid liner Prisma☆Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [ + "Судьба: Девочка-волшебница Иллия" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 15335, + "mal_id": 15335, + "title": "Gintama: Kanketsu-hen - Yorozuya yo Eien Nare", + "english": "Gintama: The Final Chapter - Be Forever Yorozuya", + "native": "劇場版 銀魂 完結篇 万事屋よ永遠なれ", + "synonyms": [ + "Gintama Movie 2", + "Gintama the Final Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 18857, + "mal_id": 18857, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai. (ONA)", + "english": "Oreimo 2 (ONA)", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2 Specials", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 ตอนพิเศษ" + ], + "format": "ONA", + "episodes": 3, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION", + "synonyms": [ + "Dangan Ronpa: The Animation" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD New", + "english": "High School DxD New", + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD Dai 2-ki", + "High School DxD 2nd Season", + "High School DxD Second Season", + "Highschool DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! - Iwatobi Swim Club", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 4, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 15037, + "mal_id": 15037, + "title": "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou", + "english": "Corpse Party: Tortured Souls", + "native": "コープスパーティー Tortured Souls -暴虐された魂の呪叫-", + "synonyms": [ + "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou" + ], + "format": "OVA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 15039, + "mal_id": 15039, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", + "english": "Anohana: The Flower We Saw That Day The Movie", + "native": "劇場版 あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana Movie", + "We Still Don't Know the Name of the Flower We Saw That Day. Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 8, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/Kaleid Liner Prisma Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 18753, + "mal_id": 18753, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA", + "english": "My Teen Romantic Comedy SNAFU OVA", + "native": "やはり俺の青春ラブコメはまちがっている。OVA「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」", + "synonyms": [ + "Oregairu OVA", + "My youth romantic comedy is wrong as I expected. OVA", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru.: Kochira Toshite mo Karera Kanojora no Yukusue ni Sachiookaran Koto wo Negawazaru wo Enai." + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 9, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 15335, + "mal_id": 15335, + "title": "Gintama Movie 2: Kanketsu-hen - Yorozuya yo Eien Nare", + "english": "Gintama: The Movie: The Final Chapter: Be Forever Yorozuya", + "native": "劇場版 銀魂 完結篇 万事屋よ永遠なれ", + "synonyms": [ + "Gintama: The Final Chapter - Be Forever Yorozuya", + "Gintama Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 15605, + "mal_id": 15605, + "title": "Brothers Conflict", + "english": "Brothers Conflict", + "native": "BROTHERS CONFLICT", + "synonyms": [ + "BroCon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": "Gatchaman Crowds", + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune The Animation", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa", + "Dog and Scissors" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION", + "synonyms": [ + "Dangan Ronpa: The Animation" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune The Animation", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 The Animation", + "synonyms": [ + "ダンガンロンパ The Animation", + "Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/Kaleid Liner Prisma Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD NEW", + "english": null, + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD New", + "english": "High School DxD New", + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD Dai 2-ki", + "High School DxD 2nd Season", + "High School DxD Second Season", + "Highschool DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD NEW", + "english": null, + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD NEW", + "english": null, + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! -Iwatobi Swim Club-", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! - Iwatobi Swim Club", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 4, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! -Iwatobi Swim Club-", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! -Iwatobi Swim Club-", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 15451, + "mal_id": 15451, + "title": "High School DxD New", + "english": "High School DxD New", + "native": "ハイスクールD×D NEW", + "synonyms": [ + "High School DxD Dai 2-ki", + "High School DxD 2nd Season", + "High School DxD Second Season", + "Highschool DxD 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari White", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": "Gatchaman Crowds", + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 23, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa", + "Dog and Scissors" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15605, + "mal_id": 15605, + "title": "Brothers Conflict", + "english": "Brothers Conflict", + "native": "BROTHERS CONFLICT", + "synonyms": [ + "BroCon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 14, + "score": 0.9625, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 16662, + "mal_id": 16662, + "title": "Kaze Tachinu", + "english": "The Wind Rises", + "native": "風立ちぬ", + "synonyms": [ + "El Viento se Levanta", + "Si Alza il Vento", + "Szél támad", + "Zrywa się wiatr", + "Wie der Wind sich hebt", + "Le vent se lève", + "Vidas ao vento", + "Vinden Stiger", + "Det Blåser upp en Vind", + "Vindurinn Rís", + "바람은 분다" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 16762, + "mal_id": 16762, + "title": "Mirai Nikki: Redial", + "english": "The Future Diary: Redial", + "native": "未来日記リダイヤル", + "synonyms": [ + "Mirai Nikki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 15037, + "mal_id": 15037, + "title": "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou", + "english": "Corpse Party", + "native": "コープスパーティー Tortured Souls -暴虐された魂の呪叫-", + "synonyms": [ + "Corpse Party: Tortured Souls – The Curse of Tortured Souls" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15037, + "mal_id": 15037, + "title": "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou", + "english": "Corpse Party: Tortured Souls", + "native": "コープスパーティー Tortured Souls -暴虐された魂の呪叫-", + "synonyms": [ + "Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou" + ], + "format": "OVA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 15039, + "mal_id": 15039, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", + "english": "Anohana the Movie: The Flower We Saw That Day", + "native": "劇場版 あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "ดอกไม้ มิตรภาพ และความทรงจำ เดอะมูฟวี่", + "Anohana: The Flower We Saw That Day Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 8, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 15039, + "mal_id": 15039, + "title": "Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie", + "english": "Anohana: The Flower We Saw That Day The Movie", + "native": "劇場版 あの日見た花の名前を僕達はまだ知らない。", + "synonyms": [ + "AnoHana Movie", + "We Still Don't Know the Name of the Flower We Saw That Day. Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 8, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/kaleid liner Prisma☆Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [ + "Судьба: Девочка-волшебница Иллия" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/Kaleid Liner Prisma Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 1.14, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa", + "Dog and Scissors" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [ + "Ginsaji" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 1.1047, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "Que sa volonté soit faite III" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 15335, + "mal_id": 15335, + "title": "Gintama: Kanketsu-hen - Yorozuya yo Eien Nare", + "english": "Gintama: The Final Chapter - Be Forever Yorozuya", + "native": "劇場版 銀魂 完結篇 万事屋よ永遠なれ", + "synonyms": [ + "Gintama Movie 2", + "Gintama the Final Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 15335, + "mal_id": 15335, + "title": "Gintama Movie 2: Kanketsu-hen - Yorozuya yo Eien Nare", + "english": "Gintama: The Movie: The Final Chapter: Be Forever Yorozuya", + "native": "劇場版 銀魂 完結篇 万事屋よ永遠なれ", + "synonyms": [ + "Gintama: The Final Chapter - Be Forever Yorozuya", + "Gintama Movie 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 15335, + "mal_id": 15335, + "title": "Gintama: Kanketsu-hen - Yorozuya yo Eien Nare", + "english": "Gintama: The Final Chapter - Be Forever Yorozuya", + "native": "劇場版 銀魂 完結篇 万事屋よ永遠なれ", + "synonyms": [ + "Gintama Movie 2", + "Gintama the Final Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 18119, + "mal_id": 18119, + "title": "Servant x Service", + "english": "Servant x Service", + "native": "サーバント×サービス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 3, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 11633, + "mal_id": 11633, + "title": "Blood Lad", + "english": "Blood Lad", + "native": "ブラッドラッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 18507, + "mal_id": 18507, + "title": "Free!", + "english": "Free! - Iwatobi Swim Club", + "native": "Free!", + "synonyms": [ + "フリー!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 4, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 16353, + "mal_id": 16353, + "title": "Love Lab", + "english": "Love Lab", + "native": "恋愛ラボ", + "synonyms": [ + "Renai Lab" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/Kaleid Liner Prisma Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 10, + "score": 1.0833, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 24, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 11, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 14829, + "mal_id": 14829, + "title": "Fate/kaleid liner Prisma☆Illya", + "english": "Fate/Kaleid Liner Prisma Illya", + "native": "Fate/kaleid liner プリズマ☆イリヤ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15605, + "mal_id": 15605, + "title": "Brothers Conflict", + "english": "Brothers Conflict", + "native": "BROTHERS CONFLICT", + "synonyms": [ + "BroCon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune The Animation", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 17909, + "mal_id": 17909, + "title": "Uchouten Kazoku", + "english": "The Eccentric Family", + "native": "有頂天家族", + "synonyms": [ + "Uchoten Kazoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 8, + "score": 1.2059, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 1.06, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday without God", + "Kami-Nai", + "Kaminai", + "วันอาทิตย์ที่ไม่มีพระเจ้า" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": "Gatchaman Crowds", + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa", + "Dog and Scissors" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16742, + "mal_id": 16742, + "title": "Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui!", + "english": "WataMote: No Matter How I Look At It, It's You Guys' Fault I'm Not Popular!", + "native": "私がモテないのはどう考えてもお前らが悪い!", + "synonyms": [ + "Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui!", + "It's Not My Fault That I'm Not Popular!", + "WataMote" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION", + "synonyms": [ + "Dangan Ronpa: The Animation" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 18229, + "mal_id": 18229, + "title": "Gatchaman Crowds", + "english": null, + "native": "ガッチャマン クラウズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 18857, + "mal_id": 18857, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai. (ONA)", + "english": "Oreimo 2 (ONA)", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2 Specials", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 ตอนพิเศษ" + ], + "format": "ONA", + "episodes": 3, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 18857, + "mal_id": 18857, + "title": "Ore no Imouto ga Konna ni Kawaii Wake ga Nai. (ONA)", + "english": "Oreimo 2 (ONA)", + "native": "俺の妹がこんなに可愛いわけがない。", + "synonyms": [ + "My Little Sister Can't Be This Cute 2 Specials", + "น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 ตอนพิเศษ" + ], + "format": "ONA", + "episodes": 3, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune The Animation", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 16592, + "mal_id": 16592, + "title": "Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation", + "english": "Danganronpa: The Animation", + "native": "ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION", + "synonyms": [ + "Dangan Ronpa: The Animation" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 5, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 16157, + "mal_id": 16157, + "title": "Choujigen Game Neptune THE ANIMATION", + "english": "Hyperdimension Neptunia", + "native": "超次元ゲイム ネプテューヌ THE ANIMATION", + "synonyms": [ + "Kami Jigen Game Neptune V", + "Hyperdimension Neptunia Victory", + "Hyperdimension Neptunia: The Animation", + "초차원 게임 넵튠 : The Animation" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa", + "Dog and Scissors" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 2, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 17389, + "mal_id": 17389, + "title": "Kingdom 2nd Season", + "english": "Kingdom Season 2", + "native": "キングダム 第2シリーズ", + "synonyms": [ + "Kingdom Hisho Hen", + "Kingdom: Dai 2 Series" + ], + "format": "TV", + "episodes": 39, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 8, + "month": 6, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 17074, + "mal_id": 17074, + "title": "Monogatari Series: Second Season", + "english": "Monogatari Series: Second Season", + "native": "〈物語〉シリーズ セカンドシーズン", + "synonyms": [ + "Nekomonogatari: Shiro", + "Kabukimonogatari", + "Otorimonogatari", + "Onimonogatari", + "Koimonogatari" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 17831, + "mal_id": 17831, + "title": "Inu to Hasami wa Tsukaiyou", + "english": "Dog & Scissors", + "native": "犬とハサミは使いよう", + "synonyms": [ + "InuHasa" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [ + "Kimi no Iru Machi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 13, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 1.1452, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 16732, + "mal_id": 16732, + "title": "Kiniro Mosaic", + "english": "KINMOZA!", + "native": "きんいろモザイク", + "synonyms": [ + "Kinmosa", + "Golden Mosaic", + "Kin-iro Mosaic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 6, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 1.1047, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16706, + "mal_id": 16706, + "title": "Kami nomi zo Shiru Sekai: Megami-hen", + "english": "The World God Only Knows: Goddesses", + "native": "神のみぞ知るセカイ 女神篇", + "synonyms": [ + "Kami nomi zo Shiru Sekai III", + "Kami nomi zo Shiru Sekai 3", + "Kaminomi III", + "Kaminomi 3", + "The World God Only Knows III", + "The World God Only Knows 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 9, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 15, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16009, + "mal_id": 16009, + "title": "Kamisama no Inai Nichiyoubi", + "english": "Sunday Without God", + "native": "神さまのいない日曜日", + "synonyms": [ + "The Sunday Without God", + "Kami-Nai", + "Kami-sama no Inai Nichiyoubi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 7, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17741, + "mal_id": 17741, + "title": "Kimi no Iru Machi", + "english": "A Town Where You Live", + "native": "君のいる町", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 16918, + "mal_id": 16918, + "title": "Gin no Saji", + "english": "Silver Spoon", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2013, + "start_date": { + "day": 12, + "month": 7, + "year": 2013 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2013-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2013-winter.json new file mode 100644 index 0000000..a1b4656 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2013-winter.json @@ -0,0 +1,4506 @@ +{ + "year": 2013, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School idol project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\"" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [ + "LWA", + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 13271, + "mal_id": 13271, + "title": "HUNTER×HUNTER: Phantom Rouge", + "english": "Hunter x Hunter: Phantom Rouge", + "native": "劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)", + "synonyms": [ + "Gekijouban Hunter x Hunter: Hiiro no Genei", + "HxH Movie", + "HxH: Phantom Rogue", + "Hunter x Hunter: Fantasma Vermelho" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": null, + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": "Chihayafuru 2", + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 12115, + "mal_id": 12115, + "title": "Berserk: Ougon Jidai-hen III - Kourin", + "english": "Berserk: The Golden Age Arc III - The Advent", + "native": "ベルセルク 黄金時代篇Ⅲ 降臨", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc III - Descent", + "Berserk: La Edad de Oro III - El Advenimiento" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 14811, + "mal_id": 14811, + "title": "GJ-bu", + "english": "GJ Club", + "native": "GJ部", + "synonyms": [ + "Good Job-bu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 11743, + "mal_id": 11743, + "title": "Toaru Majutsu no Index: Endymion no Kiseki", + "english": "A Certain Magical Index: The Miracle of Endymion", + "native": "劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟", + "synonyms": [ + "Gekijouban To Aru Majutsu no Kinsho Mokuroku", + "อินเด็กซ์ คัมภีร์คาถาต้องห้าม เดอะ มูฟวี่ ", + "Movie Cấm thư ma thuật Index", + "Daftar Sihir Terlarang The Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash!", + "native": "閃乱カグラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 15751, + "mal_id": 15751, + "title": "Senyuu.", + "english": "Senyuu", + "native": "戦勇.", + "synonyms": [ + "Senyu.", + "Senyu" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 16916, + "mal_id": 16916, + "title": "Kuroko no Basket: Tip Off", + "english": "Kuroko's Basketball: Tip Off", + "native": "黒子のバスケ 第22.5Q 「Tip off」", + "synonyms": [ + "Kuroko no Basket Special", + "Kuroko no Basket Episode 22.5" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 15879, + "mal_id": 15879, + "title": "Chuunibyou demo Koi ga Shitai!: DEPTH OF FIELD - Ai to Nikushimi Gekijou", + "english": "Love, Chunibyo & Other Delusions: Depth of Field - Ai to Nikushimi Gekijou", + "native": "中二病でも恋がしたい!DEPTH OF FIELD ~ 愛と憎しみ劇場", + "synonyms": [], + "format": "SPECIAL", + "episodes": 7, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2012, + "month": 12, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 14515, + "mal_id": 14515, + "title": "Sasami-san@Ganbaranai", + "english": null, + "native": "ささみさん@がんばらない", + "synonyms": [ + "Sasami-san at Ganbaranai", + "Sasami-san@Unmotivated" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [ + "Inaba, detective cuticular" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden: Eight Dogs of the East", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 17121, + "mal_id": 17121, + "title": "Dareka no Manazashi", + "english": null, + "native": "だれかのまなざし", + "synonyms": [ + "Someone's Gaze" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming from Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 5, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School Idol Project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": null, + "native": "リトルウィッチアカデミア", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012", + "LWA" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 15085, + "mal_id": 15085, + "title": "Amnesia", + "english": "Amnesia", + "native": "AMNESIA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 7, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": null, + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": "Death Billiards", + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 12115, + "mal_id": 12115, + "title": "Berserk: Ougon Jidai-hen III - Kourin", + "english": "Berserk: The Golden Age Arc III - The Advent", + "native": "ベルセルク 黄金時代篇Ⅲ 降臨", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc III - Descent" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 14837, + "mal_id": 14837, + "title": "Dragon Ball Z Movie 14: Kami to Kami", + "english": "Dragon Ball Z: Battle of Gods", + "native": "ドラゴンボールZ 神と神", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 13271, + "mal_id": 13271, + "title": "Hunter x Hunter Movie 1: Phantom Rouge", + "english": "Hunter x Hunter: Phantom Rouge", + "native": "劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)", + "synonyms": [ + "Gekijouban Hunter x Hunter: Hiiro no Genei", + "HxH Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 14811, + "mal_id": 14811, + "title": "GJ-bu", + "english": "GJ Club", + "native": "GJ部", + "synonyms": [ + "Good Job-bu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash", + "native": "閃乱カグラ", + "synonyms": [ + "Senran Kagura" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 11743, + "mal_id": 11743, + "title": "Toaru Majutsu no Index Movie: Endymion no Kiseki", + "english": "A Certain Magical Index the Movie: The Miracle of Endymion", + "native": "劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟", + "synonyms": [ + "Gekijouban Toaru Majutsu no Kinsho Mokuroku" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 15751, + "mal_id": 15751, + "title": "Senyuu.", + "english": null, + "native": "戦勇。", + "synonyms": [ + "Senyu." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 9, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden -Eight Dogs of the East-", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [ + "Hakkenden: Touhou Hakken Ibun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 4, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 16916, + "mal_id": 16916, + "title": "Kuroko no Basket: Tip Off", + "english": "Kuroko's Basketball: Tip Off", + "native": "黒子のバスケ 第22.5Q 「Tip Off」", + "synonyms": [ + "Kuroko no Basket Special", + "Kuroko no Basket Episode 22.5" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 14175, + "mal_id": 14175, + "title": "Hanasaku Iroha Movie: Home Sweet Home", + "english": "Hanasaku Iroha the Movie: Home Sweet Home", + "native": "劇場版 花咲くいろは HOME SWEET HOME", + "synonyms": [ + "Hanasaku Iroha: Home Sweet Home" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 17535, + "mal_id": 17535, + "title": "Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa", + "english": "Fairy Tail the Movie: The Phoenix Priestess - The First Morning", + "native": "フェアリーテイル: 序章「はじまりの朝」", + "synonyms": [ + "Fairy Tail: Houou no Miko Prologue" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9304, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 0, + "score": 0.913, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming from Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "My Girlfriend and Childhood Friend Fight Too Much", + "สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 15085, + "mal_id": 15085, + "title": "Amnesia", + "english": "Amnesia", + "native": "AMNESIA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 7, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 5, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming from Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 0.9471, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.8736, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.8696, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.867, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming From Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [ + "ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก", + "문제아들이 이세계에서 온다는 모양인데요?", + "문제아들이 다른 세계에서 온다는 모양인데요?" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School idol project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\"" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School Idol Project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 5, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": null, + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu: Archenemy & Hero", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 1.0176, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming from Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9051, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai NEXT", + "english": "Haganai NEXT", + "native": "僕は友達が少ない NEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [ + "LWA", + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": null, + "native": "リトルウィッチアカデミア", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012", + "LWA" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [ + "LWA", + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": "Death Billiards", + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.8746, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [ + "LWA", + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School Idol Project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": null, + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School Idol Project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 13271, + "mal_id": 13271, + "title": "HUNTER×HUNTER: Phantom Rouge", + "english": "Hunter x Hunter: Phantom Rouge", + "native": "劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)", + "synonyms": [ + "Gekijouban Hunter x Hunter: Hiiro no Genei", + "HxH Movie", + "HxH: Phantom Rogue", + "Hunter x Hunter: Fantasma Vermelho" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 13271, + "mal_id": 13271, + "title": "Hunter x Hunter Movie 1: Phantom Rouge", + "english": "Hunter x Hunter: Phantom Rouge", + "native": "劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ)", + "synonyms": [ + "Gekijouban Hunter x Hunter: Hiiro no Genei", + "HxH Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": null, + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": "Death Billiards", + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": null, + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 14349, + "mal_id": 14349, + "title": "Little Witch Academia", + "english": null, + "native": "リトルウィッチアカデミア", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012", + "LWA" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 0.8746, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 14353, + "mal_id": 14353, + "title": "Death Billiards", + "english": null, + "native": "デス・ビリヤード", + "synonyms": [ + "Wakate Animator Ikusei Project", + "2012 Young Animator Training Project", + "Anime Mirai 2012" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 15051, + "mal_id": 15051, + "title": "Love Live! School Idol Project", + "english": "Love Live! School Idol Project", + "native": "ラブライブ! School idol project", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": "Chihayafuru 2", + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 14397, + "mal_id": 14397, + "title": "Chihayafuru 2", + "english": null, + "native": "ちはやふる 2", + "synonyms": [ + "Chihayafull 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12115, + "mal_id": 12115, + "title": "Berserk: Ougon Jidai-hen III - Kourin", + "english": "Berserk: The Golden Age Arc III - The Advent", + "native": "ベルセルク 黄金時代篇Ⅲ 降臨", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc III - Descent", + "Berserk: La Edad de Oro III - El Advenimiento" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 12115, + "mal_id": 12115, + "title": "Berserk: Ougon Jidai-hen III - Kourin", + "english": "Berserk: The Golden Age Arc III - The Advent", + "native": "ベルセルク 黄金時代篇Ⅲ 降臨", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc III - Descent" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 12115, + "mal_id": 12115, + "title": "Berserk: Ougon Jidai-hen III - Kourin", + "english": "Berserk: The Golden Age Arc III - The Advent", + "native": "ベルセルク 黄金時代篇Ⅲ 降臨", + "synonyms": [ + "Berserk Movie", + "Berserk Saga", + "Berserk: Golden Age Arc III - Descent", + "Berserk: La Edad de Oro III - El Advenimiento" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash", + "native": "閃乱カグラ", + "synonyms": [ + "Senran Kagura" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 15085, + "mal_id": 15085, + "title": "Amnesia", + "english": "Amnesia", + "native": "AMNESIA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 7, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 4, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15085, + "mal_id": 15085, + "title": "AMNESIA", + "english": "AMNESIA", + "native": "AMNESIA", + "synonyms": [ + "アムネシア" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 14967, + "mal_id": 14967, + "title": "Boku wa Tomodachi ga Sukunai Next", + "english": "Haganai: I don't have many friends NEXT", + "native": "僕は友達が少ないNEXT", + "synonyms": [ + "Boku wa Tomodachi ga Sukunai 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 14811, + "mal_id": 14811, + "title": "GJ-bu", + "english": "GJ Club", + "native": "GJ部", + "synonyms": [ + "Good Job-bu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 14811, + "mal_id": 14811, + "title": "GJ-bu", + "english": "GJ Club", + "native": "GJ部", + "synonyms": [ + "Good Job-bu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 11743, + "mal_id": 11743, + "title": "Toaru Majutsu no Index: Endymion no Kiseki", + "english": "A Certain Magical Index: The Miracle of Endymion", + "native": "劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟", + "synonyms": [ + "Gekijouban To Aru Majutsu no Kinsho Mokuroku", + "อินเด็กซ์ คัมภีร์คาถาต้องห้าม เดอะ มูฟวี่ ", + "Movie Cấm thư ma thuật Index", + "Daftar Sihir Terlarang The Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 11743, + "mal_id": 11743, + "title": "Toaru Majutsu no Index Movie: Endymion no Kiseki", + "english": "A Certain Magical Index the Movie: The Miracle of Endymion", + "native": "劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟", + "synonyms": [ + "Gekijouban Toaru Majutsu no Kinsho Mokuroku" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 16417, + "mal_id": 16417, + "title": "Tamako Market", + "english": "Tamako Market", + "native": "たまこまーけっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 10, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 14833, + "mal_id": 14833, + "title": "Maoyuu Maou Yuusha", + "english": "Maoyu", + "native": "まおゆう魔王勇者", + "synonyms": [ + "Maoyu Maou Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 5, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash!", + "native": "閃乱カグラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash", + "native": "閃乱カグラ", + "synonyms": [ + "Senran Kagura" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash!", + "native": "閃乱カグラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 15751, + "mal_id": 15751, + "title": "Senyuu.", + "english": null, + "native": "戦勇。", + "synonyms": [ + "Senyu." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 9, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash!", + "native": "閃乱カグラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash!", + "native": "閃乱カグラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 4, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 15379, + "mal_id": 15379, + "title": "Kotoura-san", + "english": "The Troubled Life of Miss Kotoura", + "native": "琴浦さん", + "synonyms": [ + "Kotoura-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 11, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.8918, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 14749, + "mal_id": 14749, + "title": "Ore no Kanojo to Osananajimi ga Shuraba Sugiru", + "english": "Oreshura", + "native": "俺の彼女と幼なじみが修羅場すぎる", + "synonyms": [ + "Ore no Kanojo to Osananajimi ga Shuraba Sugiru" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.867, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 15315, + "mal_id": 15315, + "title": "Mondaiji-tachi ga Isekai kara Kuru Sou desu yo?", + "english": "Problem Children Are Coming from Another World, Aren't They?", + "native": "問題児たちが異世界から来るそうですよ?", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 12, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 4, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 15751, + "mal_id": 15751, + "title": "Senyuu.", + "english": "Senyuu", + "native": "戦勇.", + "synonyms": [ + "Senyu.", + "Senyu" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 15751, + "mal_id": 15751, + "title": "Senyuu.", + "english": null, + "native": "戦勇。", + "synonyms": [ + "Senyu." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 9, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 16916, + "mal_id": 16916, + "title": "Kuroko no Basket: Tip Off", + "english": "Kuroko's Basketball: Tip Off", + "native": "黒子のバスケ 第22.5Q 「Tip off」", + "synonyms": [ + "Kuroko no Basket Special", + "Kuroko no Basket Episode 22.5" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 16916, + "mal_id": 16916, + "title": "Kuroko no Basket: Tip Off", + "english": "Kuroko's Basketball: Tip Off", + "native": "黒子のバスケ 第22.5Q 「Tip Off」", + "synonyms": [ + "Kuroko no Basket Special", + "Kuroko no Basket Episode 22.5" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 2, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 14515, + "mal_id": 14515, + "title": "Sasami-san@Ganbaranai", + "english": null, + "native": "ささみさん@がんばらない", + "synonyms": [ + "Sasami-san at Ganbaranai", + "Sasami-san@Unmotivated" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 16, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 14515, + "mal_id": 14515, + "title": "Sasami-san@Ganbaranai", + "english": null, + "native": "ささみさん@がんばらない", + "synonyms": [ + "Sasami-san at Ganbaranai", + "Sasami-san@Unmotivated" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash", + "native": "閃乱カグラ", + "synonyms": [ + "Senran Kagura" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 14515, + "mal_id": 14515, + "title": "Sasami-san@Ganbaranai", + "english": null, + "native": "ささみさん@がんばらない", + "synonyms": [ + "Sasami-san at Ganbaranai", + "Sasami-san@Unmotivated" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [ + "Inaba, detective cuticular" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 4, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [ + "Inaba, detective cuticular" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 15119, + "mal_id": 15119, + "title": "Senran Kagura", + "english": "Senran Kagura: Ninja Flash", + "native": "閃乱カグラ", + "synonyms": [ + "Senran Kagura" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 15109, + "mal_id": 15109, + "title": "Cuticle Tantei Inaba", + "english": "Cuticle Detective Inaba", + "native": "キューティクル探偵因幡", + "synonyms": [ + "Inaba, detective cuticular" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden: Eight Dogs of the East", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden -Eight Dogs of the East-", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [ + "Hakkenden: Touhou Hakken Ibun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 6, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 0.8797, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden: Eight Dogs of the East", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 16005, + "mal_id": 16005, + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "english": "Unlimited Psychic Squad", + "native": "絶対可憐チルドレン THE UNLIMITED 兵部京介", + "synonyms": [ + "The Unlimited Hyobu Kyosuke" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 8, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 15613, + "mal_id": 15613, + "title": "Hakkenden: Touhou Hakken Ibun", + "english": "Hakkenden: Eight Dogs of the East", + "native": "八犬伝 -東方八犬異聞-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 14355, + "mal_id": 14355, + "title": "Yama no Susume", + "english": "Encouragement of Climb", + "native": "ヤマノススメ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 3, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 17121, + "mal_id": 17121, + "title": "Dareka no Manazashi", + "english": null, + "native": "だれかのまなざし", + "synonyms": [ + "Someone's Gaze" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2013, + "start_date": { + "year": 2013, + "month": 2, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 15085, + "mal_id": 15085, + "title": "Amnesia", + "english": "Amnesia", + "native": "AMNESIA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2013, + "start_date": { + "day": 7, + "month": 1, + "year": 2013 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2014-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2014-fall.json new file mode 100644 index 0000000..efaaff6 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2014-fall.json @@ -0,0 +1,6412 @@ +{ + "year": 2014, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 16870, + "mal_id": 16870, + "title": "THE LAST: NARUTO THE MOVIE", + "english": "The Last: Naruto the Movie", + "native": "THE LAST -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 10", + "Naruto Shippuden Movie 07: The Last" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20671, + "mal_id": 23321, + "title": "Log Horizon 2", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20729, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20735, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani o Itte Iruka Wakaranai Ken" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20767, + "mal_id": 22961, + "title": "Date A Live II: Kurumi Star Festival", + "english": null, + "native": "デート・ア・ライブ II 狂三スターフェスティバル", + "synonyms": [ + " Date A Live II Episode 11", + " Date A Live II OVA", + "Date A Live: Encore" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20670, + "mal_id": 23317, + "title": "Kuroshitsuji: Book of Murder", + "english": "Black Butler: Book of Murder", + "native": "黒執事 Book of Murder", + "synonyms": [ + "Phantomhive Manor Murder Case", + "คนลึกไขปริศนาลับ: Book of Murder" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 22297, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night [Unlimited Blade Works]", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "Fate/stay night (2014)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 12, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 25157, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "Trinity Seven", + "native": "トリニティセブン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 8, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 22147, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 16870, + "mal_id": 16870, + "title": "The Last: Naruto the Movie", + "english": "Naruto Shippuden the Movie 7: The Last", + "native": "THE LAST NARUTO THE MOVIE", + "synonyms": [ + "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 12, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit de la Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 25781, + "mal_id": 25781, + "title": "Shingeki no Kyojin: Kuinaki Sentaku", + "english": "Attack on Titan: No Regrets", + "native": "進撃の巨人 悔いなき選択", + "synonyms": [ + "Shingeki no Kyojin: Birth of Levi" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 12, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 25835, + "mal_id": 25835, + "title": "Shirobako", + "english": "Shirobako", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 24405, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 28025, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Tsukimonogatari: Yotsugi Doll", + "Monogatari Final Season" + ], + "format": "TV Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 21843, + "mal_id": 21843, + "title": "Shingeki no Bahamut: Genesis", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 6, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 26349, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 3, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 27821, + "mal_id": 27821, + "title": "Fate/stay night: Unlimited Blade Works Prologue", + "english": "Fate/stay night [Unlimited Blade Works] - Prologue", + "native": "Fate/stay night [Unlimited Blade Works] プロローグ", + "synonyms": [ + "Fate/stay night (2014) Episode 00" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 24701, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2nd Season", + "english": "Mushi-shi: Next Passage Part 2", + "native": "蟲師 続章", + "synonyms": [ + "Mushishi Zoku Shou 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 19, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 22687, + "mal_id": 22687, + "title": "Terra Formars", + "english": null, + "native": "TERRA FORMARS [テラフォーマーズ]", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 27, + "month": 9, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 25731, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞〈ロンド〉", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 1.0641, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 21843, + "mal_id": 21843, + "title": "Shingeki no Bahamut: Genesis", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 6, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20665, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "KimiUso", + "השקר שלך באפריל", + "Bugie d'aprile", + "四月是你的谎言", + "YLIA", + "Sekunden in Moll", + "Твоя апрельская ложь" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20789, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [ + "七大罪", + "ศึกตำนาน 7 อัศวิน", + "7DS", + "Семь смертных грехов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 22297, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night [Unlimited Blade Works]", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "Fate/stay night (2014)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 12, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 1.1047, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit de la Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 12, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20623, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte -the maxim-", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Kiseiju - L'ospite indesiderato", + "Parasite : La Maxime", + "Паразит: Учение о жизни", + "Pasożyt" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 22297, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night [Unlimited Blade Works]", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "Fate/stay night (2014)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 12, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 27821, + "mal_id": 27821, + "title": "Fate/stay night: Unlimited Blade Works Prologue", + "english": "Fate/stay night [Unlimited Blade Works] - Prologue", + "native": "Fate/stay night [Unlimited Blade Works] プロローグ", + "synonyms": [ + "Fate/stay night (2014) Episode 00" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 25835, + "mal_id": 25835, + "title": "Shirobako", + "english": "Shirobako", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit de la Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 19603, + "mal_id": 22297, + "title": "Fate/stay night: Unlimited Blade Works", + "english": "Fate/stay night: Unlimited Blade Works", + "native": "Fate/stay night [Unlimited Blade Works]", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works", + "Fate/UBW", + "פייט/סטיי נייט: מלאכת חרבות אינסופית", + "Судьба/Ночь схватки: Бесконечный мир клинков" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 1.0641, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 24, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20770, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "AkaYona", + "Йона на заре", + "Ёна на заре", + "Рассвет Йоны", + "Yona, princesse de l'aube" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 25157, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "Trinity Seven", + "native": "トリニティセブン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 8, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 1.0085, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9474, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 10, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20631, + "mal_id": 25157, + "title": "Trinity Seven", + "english": "TRINITY SEVEN", + "native": "トリニティセブン", + "synonyms": [ + "Trinity Seven: 7-nin no Mahoutsukai", + "Trinity Seven: Shichinin no Mahoutsukai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 22147, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20602, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi", + "甘ブリ", + "Cudowny park Amagi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 24701, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2nd Season", + "english": "Mushi-shi: Next Passage Part 2", + "native": "蟲師 続章", + "synonyms": [ + "Mushishi Zoku Shou 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 19, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit de la Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 1.1047, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 12, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit De La Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 16870, + "mal_id": 16870, + "title": "THE LAST: NARUTO THE MOVIE", + "english": "The Last: Naruto the Movie", + "native": "THE LAST -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 10", + "Naruto Shippuden Movie 07: The Last" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 16870, + "mal_id": 16870, + "title": "The Last: Naruto the Movie", + "english": "Naruto Shippuden the Movie 7: The Last", + "native": "THE LAST NARUTO THE MOVIE", + "synonyms": [ + "Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 12, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 16870, + "mal_id": 16870, + "title": "THE LAST: NARUTO THE MOVIE", + "english": "The Last: Naruto the Movie", + "native": "THE LAST -NARUTO THE MOVIE-", + "synonyms": [ + "Naruto Movie 10", + "Naruto Shippuden Movie 07: The Last" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 24701, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2nd Season", + "english": "Mushi-shi: Next Passage Part 2", + "native": "蟲師 続章", + "synonyms": [ + "Mushishi Zoku Shou 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 19, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20513, + "mal_id": 23281, + "title": "PSYCHO-PASS 2", + "english": "PSYCHO-PASS 2", + "native": "PSYCHO-PASS サイコパス2", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 25835, + "mal_id": 25835, + "title": "Shirobako", + "english": "Shirobako", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20671, + "mal_id": 23321, + "title": "Log Horizon 2", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20671, + "mal_id": 23321, + "title": "Log Horizon 2", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20671, + "mal_id": 23321, + "title": "Log Horizon 2", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 2", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 22147, + "mal_id": 22147, + "title": "Amagi Brilliant Park", + "english": "Amagi Brilliant Park", + "native": "甘城ブリリアントパーク", + "synonyms": [ + "Amaburi" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 28025, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Tsukimonogatari: Yotsugi Doll", + "Monogatari Final Season" + ], + "format": "TV Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20918, + "mal_id": 28025, + "title": "Tsukimonogatari", + "english": "Tsukimonogatari", + "native": "憑物語", + "synonyms": [ + "Possession Tale" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20729, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 24405, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20729, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20729, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20729, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 25835, + "mal_id": 25835, + "title": "Shirobako", + "english": "Shirobako", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 1.125, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 22687, + "mal_id": 22687, + "title": "Terra Formars", + "english": null, + "native": "TERRA FORMARS [テラフォーマーズ]", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 27, + "month": 9, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20812, + "mal_id": 25835, + "title": "SHIROBAKO", + "english": "SHIROBAKO", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 1.125, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 25835, + "mal_id": 25835, + "title": "Shirobako", + "english": "Shirobako", + "native": "SHIROBAKO", + "synonyms": [ + "White Box" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20646, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life", + "พลังป่วนก๊วนเหนือธรรมชาติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 23673, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl & Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [ + "Ookami Shoujo to Kuroouji", + "Wolf Girl & Black Prince" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 24405, + "mal_id": 24405, + "title": "World Trigger", + "english": "World Trigger", + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 73, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20701, + "mal_id": 23673, + "title": "Ookami Shoujo to Kuro Ouji", + "english": "Wolf Girl and Black Prince", + "native": "オオカミ少女と黒王子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 25731, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞〈ロンド〉", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 21843, + "mal_id": 21843, + "title": "Shingeki no Bahamut: Genesis", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 6, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20590, + "mal_id": 21843, + "title": "Shingeki no Bahamut: GENESIS", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 22535, + "mal_id": 22535, + "title": "Kiseijuu: Sei no Kakuritsu", + "english": "Parasyte: The Maxim", + "native": "寄生獣 セイの格率", + "synonyms": [ + "Parasite", + "Parasitic Beasts", + "Parasyte" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20735, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani o Itte Iruka Wakaranai Ken" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 26349, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 3, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 23755, + "mal_id": 23755, + "title": "Nanatsu no Taizai", + "english": "The Seven Deadly Sins", + "native": "七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 26349, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 3, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 10, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20809, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 24701, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2nd Season", + "english": "Mushi-shi: Next Passage Part 2", + "native": "蟲師 続章", + "synonyms": [ + "Mushishi Zoku Shou 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 19, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 23321, + "mal_id": 23321, + "title": "Log Horizon 2nd Season", + "english": "Log Horizon 2", + "native": "ログ・ホライズン 第2シリーズ", + "synonyms": [ + "Log Horizon Second Season", + "Log Horizon Dai 2 Series" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20751, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2", + "english": "MUSHI-SHI The Next Passage 2", + "native": "蟲師 続章 2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 25731, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞〈ロンド〉", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 24455, + "mal_id": 24455, + "title": "Madan no Ou to Vanadis", + "english": "Lord Marksman and Vanadis", + "native": "魔弾の王と戦姫 (ヴァナディース)", + "synonyms": [ + "Madan no Ou to Senki", + "The King of the Magic Bullet and Vanadis" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 4, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 23281, + "mal_id": 23281, + "title": "Psycho-Pass 2", + "english": "Psycho-Pass 2", + "native": "PSYCHO-PASS サイコパス 2", + "synonyms": [ + "Psycho-Pass Second Season", + "Psychopath 2nd Season" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20806, + "mal_id": 25731, + "title": "Cross Ange: Tenshi to Ryuu no Rondo", + "english": "Cross Ange: Rondo of Angel and Dragon", + "native": "クロスアンジュ 天使と竜の輪舞", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 26349, + "mal_id": 26349, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken", + "english": "I Can't Understand What My Husband Is Saying", + "native": "旦那が何を言っているかわからない件", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 3, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20800, + "mal_id": 25519, + "title": "Yuuki Yuuna wa Yuusha de Aru", + "english": "Yuki Yuna is a Hero", + "native": "結城友奈は勇者である", + "synonyms": [ + " YuYuYu", + "สาวน้อยชมรมผู้กล้า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 17729, + "mal_id": 17729, + "title": "Grisaia no Kajitsu", + "english": "The Fruit of Grisaia", + "native": "グリザイアの果実", + "synonyms": [ + "Le Fruit de la Grisaia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 5, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20670, + "mal_id": 23317, + "title": "Kuroshitsuji: Book of Murder", + "english": "Black Butler: Book of Murder", + "native": "黒執事 Book of Murder", + "synonyms": [ + "Phantomhive Manor Murder Case", + "คนลึกไขปริศนาลับ: Book of Murder" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 24701, + "mal_id": 24701, + "title": "Mushishi Zoku Shou 2nd Season", + "english": "Mushi-shi: Next Passage Part 2", + "native": "蟲師 続章", + "synonyms": [ + "Mushishi Zoku Shou 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 19, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 24231, + "mal_id": 24231, + "title": "Hitsugi no Chaika: Avenging Battle", + "english": "Chaika -The Coffin Princess- Avenging Battle", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [ + "Hitsugi no Chaika 2nd Season", + "Hitsugi no Chaika Second Season" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 9, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 21843, + "mal_id": 21843, + "title": "Shingeki no Bahamut: Genesis", + "english": "Rage of Bahamut: Genesis", + "native": "神撃のバハムート GENESIS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 6, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.9658, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 23273, + "mal_id": 23273, + "title": "Shigatsu wa Kimi no Uso", + "english": "Your Lie in April", + "native": "四月は君の嘘", + "synonyms": [ + "Kimiuso" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 10, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 15, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 25159, + "mal_id": 25159, + "title": "Inou-Battle wa Nichijou-kei no Naka de", + "english": "When Supernatural Battles Became Commonplace", + "native": "異能バトルは日常系のなかで", + "synonyms": [ + "InoBato", + "Inou-Battle in the Usually Daze.", + "Inou Battle Within Everyday Life" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.9494, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20719, + "mal_id": 24231, + "title": "Hitsugi no Chaika: AVENGING BATTLE", + "english": "Chaika -The Coffin Princess- AVENGING BATTLE", + "native": "棺姫のチャイカ AVENGING BATTLE", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2014, + "start_date": { + "year": 2014, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 25013, + "mal_id": 25013, + "title": "Akatsuki no Yona", + "english": "Yona of the Dawn", + "native": "暁のヨナ", + "synonyms": [ + "Yona: The girl standing in the blush of dawn" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2014, + "start_date": { + "day": 7, + "month": 10, + "year": 2014 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2014-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2014-spring.json new file mode 100644 index 0000000..d9ab7e4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2014-spring.json @@ -0,0 +1,7061 @@ +{ + "year": 2014, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20457, + "mal_id": 20787, + "title": "Black Bullet", + "english": "Black Bullet", + "native": "ブラック・ブレット", + "synonyms": [ + "แบล็ค บุลเลท ", + "黑色子彈" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 20519, + "mal_id": 21647, + "title": "Tamako Love Story", + "english": "Tamako -love story-", + "native": "たまこラブストーリー", + "synonyms": [ + "Miłosna opowieść Tamako" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 20537, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to THE ANIMATION", + "english": "The Comic Artist & His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "The Comic Artist and His Assistants", + "The Manga Creator and the Assistant and", + "Mangaka-san and Assistant-san and..." + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 20583, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "Haikyu!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HQ!!" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 20899, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kuujou Joutarou: Mirai e no Isan", + "JoJo's Bizarre Adventure Part 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 22043, + "mal_id": 22043, + "title": "Fairy Tail (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL(フェアリーテイル)", + "synonyms": [ + "Fairy Tail Season 2" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 20787, + "mal_id": 20787, + "title": "Black Bullet", + "english": "Black Bullet", + "native": "ブラック・ブレット BLACK BULLET [黒の銃弾]", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 21603, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": "Mekakucity Actors", + "native": "メカクシティアクターズ", + "synonyms": [ + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 13, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 22135, + "mal_id": 22135, + "title": "Ping Pong the Animation", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [ + "PPTA" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 21647, + "mal_id": 21647, + "title": "Tamako Love Story", + "english": null, + "native": "たまこラブストーリー", + "synonyms": [ + "Tamako Market Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 21405, + "mal_id": 21405, + "title": "Bokura wa Minna Kawai-sou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 22101, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Still world is Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 21327, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 7, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School Idol Project 2nd Season", + "english": "Love Live! School Idol Project 2", + "native": "ラブライブ! School idol project 2期", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 21507, + "mal_id": 21507, + "title": "Soul Eater NOT!", + "english": null, + "native": "ソウルイーターノット!", + "synonyms": [ + "SEN!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 20583, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "Haikyu!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HQ!!" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 22043, + "mal_id": 22043, + "title": "Fairy Tail (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL(フェアリーテイル)", + "synonyms": [ + "Fairy Tail Season 2" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20464, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "HAIKYU!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HAIKYÛ !!", + "排球少年!!", + "Haikyu!! L'asso del volley", + "ไฮคิว!! คู่ตบฟ้าประทาน" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 21507, + "mal_id": 21507, + "title": "Soul Eater NOT!", + "english": null, + "native": "ソウルイーターノット!", + "synonyms": [ + "SEN!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL", + "NO GAME NO LIFE游戏人生", + "游戏人生", + "โนเกม โนไลฟ์", + "遊戲人生", + "NO GAME NO LIFE 遊戲人生", + "nogenora ", + "ノゲノラ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 20899, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kuujou Joutarou: Mirai e no Isan", + "JoJo's Bizarre Adventure Part 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20474, + "mal_id": 20899, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders", + "ההרפתקה המוזרה של ג'וג'ו: צלבני אבק כוכבים ", + "مغامرات جوجو العجيبة : فرسان غبار النجم", + "Le bizzarre avventure di JoJo: Stardust Crusaders", + "Невероятные приключения ДжоДжо: Крестоносцы звездной пыли" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 21603, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": "Mekakucity Actors", + "native": "メカクシティアクターズ", + "synonyms": [ + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 13, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.8908, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20458, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท", + "Непутёвый ученик в школе магии" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 21405, + "mal_id": 21405, + "title": "Bokura wa Minna Kawai-sou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20457, + "mal_id": 20787, + "title": "Black Bullet", + "english": "Black Bullet", + "native": "ブラック・ブレット", + "synonyms": [ + "แบล็ค บุลเลท ", + "黑色子彈" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 20787, + "mal_id": 20787, + "title": "Black Bullet", + "english": "Black Bullet", + "native": "ブラック・ブレット BLACK BULLET [黒の銃弾]", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20457, + "mal_id": 20787, + "title": "Black Bullet", + "english": "Black Bullet", + "native": "ブラック・ブレット", + "synonyms": [ + "แบล็ค บุลเลท ", + "黑色子彈" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 22043, + "mal_id": 22043, + "title": "Fairy Tail (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL(フェアリーテイル)", + "synonyms": [ + "Fairy Tail Season 2" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 20583, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "Haikyu!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HQ!!" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20626, + "mal_id": 22043, + "title": "FAIRY TAIL (2014)", + "english": "Fairy Tail Series 2", + "native": "FAIRY TAIL (2014)", + "synonyms": [ + "Fairy Tail 2", + "Fairy Tail Season 2", + "フェアリーテイル (2014)" + ], + "format": "TV", + "episodes": 102, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2", + "พิชิตรัก พิทักษ์โลก ภาค 2", + "Рандеву с жизнью" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 22135, + "mal_id": 22135, + "title": "Ping Pong the Animation", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [ + "PPTA" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 22135, + "mal_id": 22135, + "title": "Ping Pong the Animation", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [ + "PPTA" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20607, + "mal_id": 22135, + "title": "Ping Pong THE ANIMATION", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20519, + "mal_id": 21647, + "title": "Tamako Love Story", + "english": "Tamako -love story-", + "native": "たまこラブストーリー", + "synonyms": [ + "Miłosna opowieść Tamako" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 21647, + "mal_id": 21647, + "title": "Tamako Love Story", + "english": null, + "native": "たまこラブストーリー", + "synonyms": [ + "Tamako Market Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20519, + "mal_id": 21647, + "title": "Tamako Love Story", + "english": "Tamako -love story-", + "native": "たまこラブストーリー", + "synonyms": [ + "Miłosna opowieść Tamako" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 21603, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": "Mekakucity Actors", + "native": "メカクシティアクターズ", + "synonyms": [ + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 13, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School Idol Project 2nd Season", + "english": "Love Live! School Idol Project 2", + "native": "ラブライブ! School idol project 2期", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20541, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": null, + "native": "メカクシティアクターズ", + "synonyms": [ + "Kagerou Days", + "Heat-Haze Days", + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 1.0532, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 24, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20462, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika -The Coffin Princess-", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 21405, + "mal_id": 21405, + "title": "Bokura wa Minna Kawai-sou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 0.9198, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 22101, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Still world is Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20529, + "mal_id": 21405, + "title": "Bokura wa Minna Kawaisou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21327, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 7, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20527, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 1.0854, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20534, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20517, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "Gochiusa", + "ごちうさ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 20583, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "Haikyu!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HQ!!" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 22101, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Still world is Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 0, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20599, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Sore demo Sekai wa Utsukushii", + "Even so, the World is Beautiful", + "Still, the World is Beautiful", + "O Mundo Ainda é Belo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 22135, + "mal_id": 22135, + "title": "Ping Pong the Animation", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [ + "PPTA" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 20583, + "mal_id": 20583, + "title": "Haikyuu!!", + "english": "Haikyu!!", + "native": "ハイキュー!!", + "synonyms": [ + "High Kyuu!!", + "HQ!!" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20595, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "MUSHI-SHI The Next Passage", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi Zokushou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School Idol Project 2nd Season", + "english": "Love Live! School Idol Project 2", + "native": "ラブライブ! School idol project 2期", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 21603, + "mal_id": 21603, + "title": "Mekakucity Actors", + "english": "Mekakucity Actors", + "native": "メカクシティアクターズ", + "synonyms": [ + "Mekaku City Actors", + "Kagerou Project" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 13, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.8733, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 19111, + "mal_id": 19111, + "title": "Love Live! School idol project 2nd Season", + "english": "Love Live! School Idol Project 2nd Season", + "native": "ラブライブ! School idol project 2期", + "synonyms": [ + "Живая любовь: проект \"Школьный идол\". 2 сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [ + "Akuma no Riddle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 11, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 19429, + "mal_id": 19429, + "title": "Akuma no Riddle", + "english": "Riddle Story of Devil", + "native": "悪魔のリドル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20537, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to THE ANIMATION", + "english": "The Comic Artist & His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "The Comic Artist and His Assistants", + "The Manga Creator and the Assistant and", + "Mangaka-san and Assistant-san and..." + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 8, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20537, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to THE ANIMATION", + "english": "The Comic Artist & His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "The Comic Artist and His Assistants", + "The Manga Creator and the Assistant and", + "Mangaka-san and Assistant-san and..." + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 22135, + "mal_id": 22135, + "title": "Ping Pong the Animation", + "english": "Ping Pong the Animation", + "native": "ピンポン THE ANIMATION", + "synonyms": [ + "PPTA" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.8773, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20537, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to THE ANIMATION", + "english": "The Comic Artist & His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "The Comic Artist and His Assistants", + "The Manga Creator and the Assistant and", + "Mangaka-san and Assistant-san and..." + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 21405, + "mal_id": 21405, + "title": "Bokura wa Minna Kawai-sou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 13, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20537, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to THE ANIMATION", + "english": "The Comic Artist & His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "The Comic Artist and His Assistants", + "The Manga Creator and the Assistant and", + "Mangaka-san and Assistant-san and..." + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 22101, + "mal_id": 22101, + "title": "Soredemo Sekai wa Utsukushii", + "english": "The World is Still Beautiful", + "native": "それでも世界は美しい", + "synonyms": [ + "Still world is Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21863, + "mal_id": 21863, + "title": "Mangaka-san to Assistant-san to The Animation", + "english": "The Comic Artist and His Assistants", + "native": "マンガ家さんとアシスタントさんと THE ANIMATION", + "synonyms": [ + "Mangaka-san to Assistant-san to", + "ManAshi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 8, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 21405, + "mal_id": 21405, + "title": "Bokura wa Minna Kawai-sou", + "english": "The Kawai Complex Guide to Manors and Hostel Behavior", + "native": "僕らはみんな河合荘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 4, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20556, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "ล่าขุมสมบัติปริศนา นานานะ" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21327, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 7, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 21939, + "mal_id": 21939, + "title": "Mushishi Zoku Shou", + "english": "Mushi-shi: Next Passage Part 1", + "native": "蟲師 続章", + "synonyms": [ + "Mushi-shi Zoku Shou", + "Mushishi: The Next Chapter" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 19163, + "mal_id": 19163, + "title": "Date A Live II", + "english": "Date A Live II", + "native": "デート・ア・ライブⅡ", + "synonyms": [ + "Date A Live 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 12, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20635, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改 (2014)", + "synonyms": [ + "Dragon Ball Kai", + "DBK", + "DB Kai", + "DBZ Kai", + "Драконий жемчуг Кай (2014)" + ], + "format": "TV", + "episodes": 69, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21431, + "mal_id": 21431, + "title": "Gokukoku no Brynhildr", + "english": "Brynhildr in the Darkness", + "native": "極黒のブリュンヒルデ", + "synonyms": [ + "Gokukoku no Brynhildr" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20592, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "อัศวินมือใหม่มังกรป้ายแดง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20785, + "mal_id": 20785, + "title": "Mahouka Koukou no Rettousei", + "english": "The Irregular at Magic High School", + "native": "魔法科高校の劣等生", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [ + "Sidonia no Kishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 22777, + "mal_id": 22777, + "title": "Dragon Ball Kai (2014)", + "english": "Dragon Ball Z Kai: The Final Chapters", + "native": "ドラゴンボール改", + "synonyms": [ + "Dragonball Kai", + "DBK", + "DB Kai", + "DBZ Kai" + ], + "format": "TV", + "episodes": 61, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 6, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 20853, + "mal_id": 20853, + "title": "Hitsugi no Chaika", + "english": "Chaika: The Coffin Princess", + "native": "棺姫のチャイカ", + "synonyms": [ + "Hitsugi Hime no Chaika" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 19775, + "mal_id": 19775, + "title": "Sidonia no Kishi", + "english": "Knights of Sidonia", + "native": "シドニアの騎士", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21273, + "mal_id": 21273, + "title": "Gochuumon wa Usagi desu ka?", + "english": "Is the Order a Rabbit?", + "native": "ご注文はうさぎですか?", + "synonyms": [ + "GochiUsa" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 10, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 19815, + "mal_id": 19815, + "title": "No Game No Life", + "english": "No Game, No Life", + "native": "ノーゲーム・ノーライフ", + "synonyms": [ + "NGNL" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 9, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21327, + "mal_id": 21327, + "title": "Isshuukan Friends.", + "english": "One Week Friends", + "native": "一週間フレンズ。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 7, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 21561, + "mal_id": 21561, + "title": "Ryuugajou Nanana no Maizoukin", + "english": "Nanana's Buried Treasure", + "native": "龍ヶ嬢七々々の埋蔵金", + "synonyms": [ + "Ryuugajou Nanana no Maizoukin" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 11, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 19685, + "mal_id": 19685, + "title": "Kanojo ga Flag wo Oraretara", + "english": "If Her Flag Breaks", + "native": "彼女がフラグをおられたら", + "synonyms": [ + "がをられ", + "Gaworare" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2014, + "start_date": { + "year": 2014, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21033, + "mal_id": 21033, + "title": "Seikoku no Dragonar", + "english": "Dragonar Academy", + "native": "星刻の竜騎士", + "synonyms": [ + "Seikoku no Ryuukishi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2014, + "start_date": { + "day": 5, + "month": 4, + "year": 2014 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2014-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2014-summer.json new file mode 100644 index 0000000..8db3d50 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2014-summer.json @@ -0,0 +1,6186 @@ +{ + "year": 2014, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20722, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "元气囝仔", + "บารากะมอน เกาะมีฮา คนมีเฮ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20614, + "mal_id": 22265, + "title": "Free!: Eternal Summer", + "english": "Free! -Eternal Summer-", + "native": "Free!-Eternal Summer-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20555, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [ + "Souvenirs de Marnie", + "Quando c'era Marnie", + "Erinnerungen an Marnie", + "El Recuerdo de Marnie", + "Marnie - min hemmelige venninne", + "När Marnie var där", + "Marnie. Przyjaciółka ze snów", + "As memórias de Marnie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20572, + "mal_id": 21659, + "title": "Kill la Kill Tokubetsu-hen", + "english": "Kill la Kill: GOODBYE AGAIN", + "native": "キルラキル 特別編", + "synonyms": [ + "Kill la Kill Episode 25", + "Kill la Kill Special", + "KLK" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 9, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 16904, + "mal_id": 16904, + "title": "K: MISSING KINGS", + "english": null, + "native": "K MISSING KINGS", + "synonyms": [ + "K-Project Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20769, + "mal_id": 24991, + "title": "No Game No Life Specials", + "english": "No Game No Life Specials", + "native": "ノーゲーム・ノーライフ ミニ", + "synonyms": [ + "NGNL Specials" + ], + "format": "SPECIAL", + "episodes": 6, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20889, + "mal_id": 27601, + "title": "Chuunibyou demo Koi ga Shitai! Ren: Saisei no... Jaou Shingan Mokushiroku", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -: The Rikka Wars/ Apocalypse of the Wicked Lord Shingan Reborn", + "native": "中二病でも恋がしたい!戀 再生の・・・邪王真眼黙示録", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 9, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20779, + "mal_id": 23385, + "title": "Kyoukai no Kanata #0 Shinonome", + "english": "Beyond the Boundary: Daybreak", + "native": "境界の彼方#0 東雲", + "synonyms": [ + "Beyond the Boundary OVA", + "Beyond the Boundary: Daybreak", + "Kyokai no Kanat Episode 0: Shinonome" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 22319, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種-トーキョーグール-", + "synonyms": [ + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 4, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 23289, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Gekkan Shoujo Nozaki-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 22789, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "Barakamon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 22729, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "Aldnoah.Zero", + "native": "アルドノア・ゼロ", + "synonyms": [ + "AZ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 21855, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series: Second Season +α" + ], + "format": "TV Special", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 8, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 21557, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 21105, + "mal_id": 21105, + "title": "Love Stage!!", + "english": "Love Stage!!", + "native": "LOVE STAGE!!", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 16904, + "mal_id": 16904, + "title": "K: Missing Kings", + "english": "K: Missing Kings", + "native": "K MISSING KINGS", + "synonyms": [ + "K (Movie)", + "K-Project Movie", + "K-Project Sequel" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 23309, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "RAIL WARS! [レールウォーズ]", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 4, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 21659, + "mal_id": 21659, + "title": "Kill la Kill Specials", + "english": "Kill la Kill Specials", + "native": "キルラキル 特別編", + "synonyms": [ + "Kill la Kill Tokubetsu-hen", + "Sayonara wo Mou Ichido", + "Kill la Kill Digest: Naked Memories", + "KILL la KILL Digest –Naked Memories by Aikuro Mikisugi–" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 9, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 23333, + "mal_id": 23333, + "title": "DRAMAtical Murder", + "english": "DRAMAtical Murder", + "native": "ドラマティカル マーダー", + "synonyms": [ + "DMMd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 21353, + "mal_id": 21353, + "title": "Tokyo ESP", + "english": "Tokyo ESP", + "native": "東京ESP", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 23079, + "mal_id": 23079, + "title": "Glasslip", + "english": "Glasslip", + "native": "グラスリップ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 22319, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種-トーキョーグール-", + "synonyms": [ + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 4, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 1.2, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 21353, + "mal_id": 21353, + "title": "Tokyo ESP", + "english": "Tokyo ESP", + "native": "東京ESP", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 9, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20605, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種 トーキョーグール", + "synonyms": [ + "Tokyo Kushu", + "שדי טוקיו", + "东京食种", + "طوكيو غول", + "Токийский гуль" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20613, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!", + "أكامي: قاتلة بالإكراه!", + "Red Eyes Sword", + "斬!赤紅之瞳" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20594, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "SAO2", + "GGO", + "ซอร์ดอาร์ตออนไลน์ ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 22729, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "Aldnoah.Zero", + "native": "アルドノア・ゼロ", + "synonyms": [ + "AZ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20661, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Эхо террора", + "Zagadkowi terroryści" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 22729, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "Aldnoah.Zero", + "native": "アルドノア・ゼロ", + "synonyms": [ + "AZ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 21105, + "mal_id": 21105, + "title": "Love Stage!!", + "english": "Love Stage!!", + "native": "LOVE STAGE!!", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20596, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 22789, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "Barakamon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23289, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Gekkan Shoujo Nozaki-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20668, + "mal_id": 23289, + "title": "Gekkan Shoujo Nozaki-kun", + "english": "Monthly Girls' Nozaki-kun", + "native": "月刊少女野崎くん", + "synonyms": [ + "Revista mensual para chicas Nozaki", + "月刊少女野崎君" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20722, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "元气囝仔", + "บารากะมอน เกาะมีฮา คนมีเฮ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 22789, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "Barakamon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20722, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "元气囝仔", + "บารากะมอน เกาะมีฮา คนมีเฮ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20722, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "元气囝仔", + "บารากะมอน เกาะมีฮา คนมีเฮ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20722, + "mal_id": 22789, + "title": "Barakamon", + "english": "Barakamon", + "native": "ばらかもん", + "synonyms": [ + "元气囝仔", + "บารากะมอน เกาะมีฮา คนมีเฮ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 21855, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series: Second Season +α" + ], + "format": "TV Special", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 8, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 21, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20593, + "mal_id": 21855, + "title": "Hanamonogatari", + "english": "Hanamonogatari", + "native": "花物語", + "synonyms": [ + "Monogatari Series Second Season +α", + "ปกรณัมแห่งบุปผา" + ], + "format": "TV", + "episodes": 5, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 22729, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "Aldnoah.Zero", + "native": "アルドノア・ゼロ", + "synonyms": [ + "AZ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.8908, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20632, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "ALDNOAH.ZERO", + "native": "アルドノア・ゼロ", + "synonyms": [ + "A/Z", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20614, + "mal_id": 22265, + "title": "Free!: Eternal Summer", + "english": "Free! -Eternal Summer-", + "native": "Free!-Eternal Summer-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 19, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20614, + "mal_id": 22265, + "title": "Free!: Eternal Summer", + "english": "Free! -Eternal Summer-", + "native": "Free!-Eternal Summer-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20614, + "mal_id": 22265, + "title": "Free!: Eternal Summer", + "english": "Free! -Eternal Summer-", + "native": "Free!-Eternal Summer-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 23333, + "mal_id": 23333, + "title": "DRAMAtical Murder", + "english": "DRAMAtical Murder", + "native": "ドラマティカル マーダー", + "synonyms": [ + "DMMd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 21, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20614, + "mal_id": 22265, + "title": "Free!: Eternal Summer", + "english": "Free! -Eternal Summer-", + "native": "Free!-Eternal Summer-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20555, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [ + "Souvenirs de Marnie", + "Quando c'era Marnie", + "Erinnerungen an Marnie", + "El Recuerdo de Marnie", + "Marnie - min hemmelige venninne", + "När Marnie var där", + "Marnie. Przyjaciółka ze snów", + "As memórias de Marnie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21557, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9217, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20555, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [ + "Souvenirs de Marnie", + "Quando c'era Marnie", + "Erinnerungen an Marnie", + "El Recuerdo de Marnie", + "Marnie - min hemmelige venninne", + "När Marnie var där", + "Marnie. Przyjaciółka ze snów", + "As memórias de Marnie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 2, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20555, + "mal_id": 21557, + "title": "Omoide no Marnie", + "english": "When Marnie Was There", + "native": "思い出のマーニー", + "synonyms": [ + "Souvenirs de Marnie", + "Quando c'era Marnie", + "Erinnerungen an Marnie", + "El Recuerdo de Marnie", + "Marnie - min hemmelige venninne", + "När Marnie var där", + "Marnie. Przyjaciółka ze snów", + "As memórias de Marnie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20606, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Black Butler 3", + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "คนลึกไขปริศนาลับ ภาค 3", + "คนลึกไขปริศนาลับ: Book of Circus", + "Hắc quản gia: Chương đoàn xiếc", + "黑执事 Book of Circus 第3季", + "黑執事 Book of Circus 第3季", + "Black Butler Book of Circus S3", + "Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú", + "흑집사 Book of Circus", + "Diácono Negro: Libro de circo temporada 3" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20663, + "mal_id": 22877, + "title": "Seirei Tsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞【ブレイドダンス】", + "synonyms": [ + "Seirei Tsukai no Kenbu: Blade Dance" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20572, + "mal_id": 21659, + "title": "Kill la Kill Tokubetsu-hen", + "english": "Kill la Kill: GOODBYE AGAIN", + "native": "キルラキル 特別編", + "synonyms": [ + "Kill la Kill Episode 25", + "Kill la Kill Special", + "KLK" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 9, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 21659, + "mal_id": 21659, + "title": "Kill la Kill Specials", + "english": "Kill la Kill Specials", + "native": "キルラキル 特別編", + "synonyms": [ + "Kill la Kill Tokubetsu-hen", + "Sayonara wo Mou Ichido", + "Kill la Kill Digest: Naked Memories", + "KILL la KILL Digest –Naked Memories by Aikuro Mikisugi–" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 9, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20572, + "mal_id": 21659, + "title": "Kill la Kill Tokubetsu-hen", + "english": "Kill la Kill: GOODBYE AGAIN", + "native": "キルラキル 特別編", + "synonyms": [ + "Kill la Kill Episode 25", + "Kill la Kill Special", + "KLK" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 9, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 16904, + "mal_id": 16904, + "title": "K: MISSING KINGS", + "english": null, + "native": "K MISSING KINGS", + "synonyms": [ + "K-Project Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 16904, + "mal_id": 16904, + "title": "K: Missing Kings", + "english": "K: Missing Kings", + "native": "K MISSING KINGS", + "synonyms": [ + "K (Movie)", + "K-Project Movie", + "K-Project Sequel" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 21105, + "mal_id": 21105, + "title": "Love Stage!!", + "english": "Love Stage!!", + "native": "LOVE STAGE!!", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20520, + "mal_id": 21105, + "title": "LOVE STAGE!!", + "english": null, + "native": "LOVE STAGE!!", + "synonyms": [ + "ラブステージ" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 23309, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "RAIL WARS! [レールウォーズ]", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 4, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 23333, + "mal_id": 23333, + "title": "DRAMAtical Murder", + "english": "DRAMAtical Murder", + "native": "ドラマティカル マーダー", + "synonyms": [ + "DMMd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20583, + "mal_id": 23309, + "title": "Rail Wars!", + "english": "Rail Wars!", + "native": "レールウォーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 7, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 22729, + "mal_id": 22729, + "title": "Aldnoah.Zero", + "english": "Aldnoah.Zero", + "native": "アルドノア・ゼロ", + "synonyms": [ + "AZ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20467, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/kaleid liner Prisma☆Illya 2wei!", + "native": "Fate/kaleid linerプリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Fate/kaleid liner Prisma☆Illya Zwei!", + "Судьба: Девочка-волшебница Иллия 2" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 21881, + "mal_id": 21881, + "title": "Sword Art Online II", + "english": "Sword Art Online II", + "native": "ソードアート・オンライン II", + "synonyms": [ + "Phantom Bullet", + "SAO II", + "Sword Art Online 2", + "SAO 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 5, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 20666, + "mal_id": 23327, + "title": "Space☆Dandy 2", + "english": "Space Dandy 2", + "native": "スペース☆ダンディ 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 20709, + "mal_id": 20709, + "title": "Sabage-bu!", + "english": "Sabagebu! -Survival Game Club!-", + "native": "さばげぶっ!", + "synonyms": [ + "Survival Game Club!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 21105, + "mal_id": 21105, + "title": "Love Stage!!", + "english": "Love Stage!!", + "native": "LOVE STAGE!!", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 22199, + "mal_id": 22199, + "title": "Akame ga Kill!", + "english": "Akame ga Kill!", + "native": "アカメが斬る!", + "synonyms": [ + "Akame ga Kiru!" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 7, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20475, + "mal_id": 20709, + "title": "Sabagebu!", + "english": "Sabagebu! - Survival Game Club!", + "native": "さばげぶっ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 21995, + "mal_id": 21995, + "title": "Ao Haru Ride", + "english": "Blue Spring Ride", + "native": "アオハライド", + "synonyms": [ + "Aoharaido" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 22865, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujyoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "Rokujouma no Shinryakusha!?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 12, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 22145, + "mal_id": 22145, + "title": "Kuroshitsuji: Book of Circus", + "english": "Black Butler: Book of Circus", + "native": "黒執事 Book of Circus", + "synonyms": [ + "Kuroshitsuji Circus Hen", + "Kuroshitsuji Shin Series", + "Black Butler 3", + "Kuroshitsuji III" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 22319, + "mal_id": 22319, + "title": "Tokyo Ghoul", + "english": "Tokyo Ghoul", + "native": "東京喰種-トーキョーグール-", + "synonyms": [ + "Tokyo Kushu", + "Toukyou Kushu", + "Toukyou Ghoul" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 4, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 22877, + "mal_id": 22877, + "title": "Seireitsukai no Blade Dance", + "english": "Blade Dance of the Elementalers", + "native": "精霊使いの剣舞〈ブレイドダンス〉", + "synonyms": [ + "Seirei Tsukai no Kenbu", + "Bladedance of Elementalers" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 14, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20638, + "mal_id": 22865, + "title": "Rokujouma no Shinryakusha!?", + "english": "Invaders of the Rokujoma!?", + "native": "六畳間の侵略者!?", + "synonyms": [ + "ห้องเช่าป่วนก๊วนคนแปลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 23421, + "mal_id": 23421, + "title": "Re:␣Hamatora", + "english": "Re: Hamatora: Season 2", + "native": "Re:␣ ハマトラ", + "synonyms": [ + "Hamatora The Animation 2nd Season", + "Reply Hamatora" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 8, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 23327, + "mal_id": 23327, + "title": "Space☆Dandy 2nd Season", + "english": "Space Dandy 2nd Season", + "native": "スペース☆ダンディ 第2シリーズ", + "synonyms": [ + "Space☆Dandy Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 6, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22265, + "mal_id": 22265, + "title": "Free! Eternal Summer", + "english": null, + "native": "Free!-Eternal Summer-", + "synonyms": [ + "Free! - Iwatobi Swim Club 2", + "Free! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 3, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20509, + "mal_id": 20509, + "title": "Fate/kaleid liner Prisma☆Illya 2wei!", + "english": "Fate/Kaleid Liner Prisma Illya 2Wei!", + "native": "Fate/kaleid liner プリズマ☆イリヤ ツヴァイ!", + "synonyms": [ + "Prisma Illya 2wei!", + "Prisma☆Illya 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 10, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20711, + "mal_id": 23421, + "title": "Re:_HAMATORA", + "english": "Re: Hamatora", + "native": "Re:␣ハマトラ", + "synonyms": [ + "Hamatora The Animation Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23283, + "mal_id": 23283, + "title": "Zankyou no Terror", + "english": "Terror in Resonance", + "native": "残響のテロル", + "synonyms": [ + "Terror in Tokyo", + "Terror of Resonance" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2014, + "start_date": { + "day": 11, + "month": 7, + "year": 2014 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2014-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2014-winter.json new file mode 100644 index 0000000..a3020dd --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2014-winter.json @@ -0,0 +1,6138 @@ +{ + "year": 2014, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": null, + "native": "ディーふらぐ!", + "synonyms": [ + "D Frag", + "D-Fragments!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20503, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20494, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "ノラガミ OVA", + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 2, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 19315, + "mal_id": 19315, + "title": "Pupa", + "english": null, + "native": "ピューパ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20496, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 20526, + "mal_id": 21329, + "title": "Mushishi: Hihamukage", + "english": "MUSHI-SHI OVA", + "native": "蟲師 特別篇「日蝕む翳」", + "synonyms": [ + "Mushi-shi Tokubetsu-hen: Hihamu Kage", + "MUSHI-SHI: The Shadow that Devours the Sun", + "MUSHI-SHI: L'ombre qui dévore le soleil" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20473, + "mal_id": 20931, + "title": "Onee-chan ga Kita", + "english": "Onee-chan ga Kita", + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Big Sister Arrived" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20582, + "mal_id": 21797, + "title": "Chuunibyou demo Koi ga Shitai! Ren Lite", + "english": "Love, Chunibyo & Other Delusions - Heart Throb - Lite", + "native": "中二病でも恋がしたい!戀 Lite", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2013, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 20831, + "mal_id": 22839, + "title": "Cross Road", + "english": null, + "native": "クロスロード", + "synonyms": [ + "Crossroad" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 20507, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions!: Heart Throb", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + "Chu-2 Byo demo Koi ga Shitai! Ren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 20541, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": "D-Frag!", + "native": "ディーふらぐ!", + "synonyms": [ + "D-Frag!", + "D-Fragments" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 7, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 21085, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 20767, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 2, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 20689, + "mal_id": 20689, + "title": "Hamatora The Animation", + "english": "Hamatora The Animation", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 8, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 19315, + "mal_id": 19315, + "title": "Pupa", + "english": "Pupa", + "native": "Pupa (ピューパ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 21329, + "mal_id": 21329, + "title": "Mushishi: Hihamukage", + "english": "Mushi-shi: The Shadow that Devours the Sun", + "native": "蟲師 特別篇「日蝕む翳」", + "synonyms": [ + "Mushi-shi Tokubetsu-hen: Hihamu Kage", + "Mushishi Special: Hihamukage" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 20973, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [ + "Sekai Seifuku: Bouryaku no Zvezda" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 12, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Cool-headed Hoozuki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 21177, + "mal_id": 21177, + "title": "Nobunaga the Fool", + "english": "Nobunaga the Fool", + "native": "ノブナガ・ザ・フール", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 20507, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20447, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [ + "Stray God", + "野良神", + "โนรางามิ เทวดาขาจร ภาค 1", + "Бездомный бог" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": "D-Frag!", + "native": "ディーふらぐ!", + "synonyms": [ + "D-Frag!", + "D-Fragments" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 7, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi: False Love", + " รักลวงป่วนใจ" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 20973, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [ + "Sekai Seifuku: Bouryaku no Zvezda" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 12, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions!: Heart Throb", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + "Chu-2 Byo demo Koi ga Shitai! Ren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20541, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions - Heart Throb -", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + " Miłość, gimbaza i kosmiczna faza: Porywy serca" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20541, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 20689, + "mal_id": 20689, + "title": "Hamatora The Animation", + "english": "Hamatora The Animation", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 8, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Cool-headed Hoozuki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20483, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20057, + "mal_id": 20057, + "title": "Space☆Dandy", + "english": "Space Dandy", + "native": "スペース☆ダンディ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": null, + "native": "ディーふらぐ!", + "synonyms": [ + "D Frag", + "D-Fragments!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": "D-Frag!", + "native": "ディーふらぐ!", + "synonyms": [ + "D-Frag!", + "D-Fragments" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 7, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": null, + "native": "ディーふらぐ!", + "synonyms": [ + "D Frag", + "D-Fragments!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 20507, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": null, + "native": "ディーふらぐ!", + "synonyms": [ + "D Frag", + "D-Fragments!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20031, + "mal_id": 20031, + "title": "D-Frag!", + "english": null, + "native": "ディーふらぐ!", + "synonyms": [ + "D Frag", + "D-Fragments!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20503, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 21085, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20503, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20503, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20503, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20494, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "ノラガミ OVA", + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 2, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 20767, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 2, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 1.2, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20494, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "ノラガミ OVA", + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 2, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 20507, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20494, + "mal_id": 20767, + "title": "Noragami OVA", + "english": "Noragami OVA", + "native": "ノラガミ OAD", + "synonyms": [ + "ノラガミ OVA", + "Noragami OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 2, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 21177, + "mal_id": 21177, + "title": "Nobunaga the Fool", + "english": "Nobunaga the Fool", + "native": "ノブナガ・ザ・フール", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 20689, + "mal_id": 20689, + "title": "Hamatora The Animation", + "english": "Hamatora The Animation", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 8, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 20541, + "mal_id": 20541, + "title": "Mikakunin de Shinkoukei", + "english": "Engaged to the Unidentified", + "native": "未確認で進行形", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20521, + "mal_id": 20689, + "title": "Hamatora THE ANIMATION", + "english": "Hamatora", + "native": "ハマトラ THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 21085, + "mal_id": 21085, + "title": "Witch Craft Works", + "english": "Witch Craft Works", + "native": "ウィッチクラフトワークス", + "synonyms": [ + "Witchcraft Works" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.9806, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.9217, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 22, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV_SHORT", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 1.0532, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 20973, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [ + "Sekai Seifuku: Bouryaku no Zvezda" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 12, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20448, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Seitokai Yakuindomo Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo Season 2 ", + "Seitokai 2", + "Seitokai Yakuindomo*", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Cool-headed Hoozuki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 20507, + "mal_id": 20507, + "title": "Noragami", + "english": "Noragami", + "native": "ノラガミ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 5, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "ไอดอลสาวชาวไร่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 19315, + "mal_id": 19315, + "title": "Pupa", + "english": null, + "native": "ピューパ", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 19315, + "mal_id": 19315, + "title": "Pupa", + "english": "Pupa", + "native": "Pupa (ピューパ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, My Sister Is Unusual", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "imocho", + "imocyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 20047, + "mal_id": 20047, + "title": "Sakura Trick", + "english": "Sakura Trick", + "native": "桜Trick", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20488, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20496, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 20973, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [ + "Sekai Seifuku: Bouryaku no Zvezda" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 12, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 10, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20496, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20496, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20496, + "mal_id": 20973, + "title": "Sekai Seifuku: Bouryaku no Zvezda", + "english": "World Conquest Zvezda Plot", + "native": "世界征服~謀略のズヴィズダー~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20526, + "mal_id": 21329, + "title": "Mushishi: Hihamukage", + "english": "MUSHI-SHI OVA", + "native": "蟲師 特別篇「日蝕む翳」", + "synonyms": [ + "Mushi-shi Tokubetsu-hen: Hihamu Kage", + "MUSHI-SHI: The Shadow that Devours the Sun", + "MUSHI-SHI: L'ombre qui dévore le soleil" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 21329, + "mal_id": 21329, + "title": "Mushishi: Hihamukage", + "english": "Mushi-shi: The Shadow that Devours the Sun", + "native": "蟲師 特別篇「日蝕む翳」", + "synonyms": [ + "Mushi-shi Tokubetsu-hen: Hihamu Kage", + "Mushishi Special: Hihamukage" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20526, + "mal_id": 21329, + "title": "Mushishi: Hihamukage", + "english": "MUSHI-SHI OVA", + "native": "蟲師 特別篇「日蝕む翳」", + "synonyms": [ + "Mushi-shi Tokubetsu-hen: Hihamu Kage", + "MUSHI-SHI: The Shadow that Devours the Sun", + "MUSHI-SHI: L'ombre qui dévore le soleil" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 1.1829, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Tsuu", + "english": "Maken-Ki! Battling Venus 2", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2nd Season", + "english": "Silver Spoon 2nd Season", + "native": "銀の匙", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 20457, + "mal_id": 20457, + "title": "Inari, Konkon, Koi Iroha.", + "english": "Inari Kon Kon", + "native": "いなり、こんこん、恋いろは。", + "synonyms": [ + "Inari", + "Konkon", + "ABCs of Love" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 15565, + "mal_id": 15565, + "title": "Maken-Ki! Two", + "english": "Maken-Ki! Two", + "native": "マケン姫っ!通", + "synonyms": [ + "Maken-Ki! Dai 2-ki", + "Maken-Ki! 2", + "Maken-Ki! Second Season", + "Maken-Ki! 2nd Season" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 16, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 1.0085, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 19363, + "mal_id": 19363, + "title": "Gin no Saji 2", + "english": "Silver Spoon Season 2", + "native": "銀の匙 2", + "synonyms": [ + "Ginsaji 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 20847, + "mal_id": 20847, + "title": "Seitokai Yakuindomo*", + "english": "Student Council Staff Members Season 2", + "native": "生徒会役員共*", + "synonyms": [ + "Seitokai Yakuindomo 2", + "SYD*" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Cool-headed Hoozuki" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 18139, + "mal_id": 18139, + "title": "Tonari no Seki-kun", + "english": "Tonari no Seki-kun: The Master of Killing Time", + "native": "となりの関くん", + "synonyms": [ + "My Neighbor Seki" + ], + "format": "TV", + "episodes": 21, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 19769, + "mal_id": 19769, + "title": "Mahou Sensou", + "english": "Magical Warfare", + "native": "魔法戦争", + "synonyms": [ + "Mahosen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 10, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 18095, + "mal_id": 18095, + "title": "Nourin", + "english": "No-Rin", + "native": "のうりん", + "synonyms": [ + "Agriculture and Forestry" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20431, + "mal_id": 20431, + "title": "Hoozuki no Reitetsu", + "english": "Hozuki's Coolheadedness", + "native": "鬼灯の冷徹", + "synonyms": [ + "Hozuki no Reitetsu" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 19117, + "mal_id": 19117, + "title": "Toaru Hikuushi e no Koiuta", + "english": "The Pilot's Love Song", + "native": "とある飛空士への恋歌", + "synonyms": [ + "Love Song of a Certain Pilot" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 6, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20473, + "mal_id": 20931, + "title": "Onee-chan ga Kita", + "english": "Onee-chan ga Kita", + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Big Sister Arrived" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 20931, + "mal_id": 20931, + "title": "Oneechan ga Kita", + "english": null, + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Sister Came", + "Onee-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.9417, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20473, + "mal_id": 20931, + "title": "Onee-chan ga Kita", + "english": "Onee-chan ga Kita", + "native": "お姉ちゃんが来た", + "synonyms": [ + "My Big Sister Arrived" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2014, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 17777, + "mal_id": 17777, + "title": "Saikin, Imouto no Yousu ga Chotto Okashiinda ga.", + "english": "Recently, my sister is unusual.", + "native": "最近、妹のようすがちょっとおかしいんだが。", + "synonyms": [ + "Recently", + "My Little Sister is Unusual", + "ImoCho", + "ImoCyo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 4, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 1.3474, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20582, + "mal_id": 21797, + "title": "Chuunibyou demo Koi ga Shitai! Ren Lite", + "english": "Love, Chunibyo & Other Delusions - Heart Throb - Lite", + "native": "中二病でも恋がしたい!戀 Lite", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2013, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 18671, + "mal_id": 18671, + "title": "Chuunibyou demo Koi ga Shitai! Ren", + "english": "Love, Chunibyo & Other Delusions!: Heart Throb", + "native": "中二病でも恋がしたい!戀", + "synonyms": [ + "Chuunibyou demo Koi ga Shitai! 2", + "Chu-2 Byo demo Koi ga Shitai! Ren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 9, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.8643, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20582, + "mal_id": 21797, + "title": "Chuunibyou demo Koi ga Shitai! Ren Lite", + "english": "Love, Chunibyo & Other Delusions - Heart Throb - Lite", + "native": "中二病でも恋がしたい!戀 Lite", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": "WINTER", + "year": 2014, + "start_date": { + "year": 2013, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 18897, + "mal_id": 18897, + "title": "Nisekoi", + "english": "Nisekoi: False Love", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi" + ], + "format": "TV", + "episodes": 20, + "season": "WINTER", + "year": 2014, + "start_date": { + "day": 11, + "month": 1, + "year": 2014 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2015-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2015-fall.json new file mode 100644 index 0000000..1f2898e --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2015-fall.json @@ -0,0 +1,6193 @@ +{ + "year": 2015, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21128, + "mal_id": 30503, + "title": "Noragami ARAGOTO", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [ + "โนรางามิ เทวดาขาจร ภาค 2", + "ノラガミ アラゴト" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21386, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": "One-Punch Man: Road to Hero", + "native": "ワンパンマン「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA 1 " + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21624, + "mal_id": 32188, + "title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", + "english": "Steins;Gate 0: 23β -Divide by Zero-", + "native": "シュタインズ・ゲート 境界面上のミッシングリンク -Divide By Zero-", + "synonyms": [ + "Steins;Gate: Episode 23 (β)" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21326, + "mal_id": 31297, + "title": "Tokyo Ghoul: [PINTO]", + "english": null, + "native": "東京喰種トーキョーグール【PINTO】", + "synonyms": [ + "Toukyou Kushu: Pinto" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 19489, + "mal_id": 19489, + "title": "Little Witch Academia: Mahou-jikake no Parade", + "english": "Little Witch Academia: The Enchanted Parade", + "native": "リトルウィッチアカデミア 魔法仕掛けのパレード", + "synonyms": [ + "Little Witch Academia Movie", + "Little Witch Academia 2", + "LWA Movie", + "LWA 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 119941, + "mal_id": 30885, + "title": "Noragami ARAGOTO OVA", + "english": null, + "native": "ノラガミ ARAGOTO OAD", + "synonyms": [ + "ノラガミ アラゴト OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 21318, + "mal_id": 31389, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season - sunny day", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season - sunny day", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン - sunny day", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン - sunny day" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 21116, + "mal_id": 30385, + "title": "Valkyrie Drive: Mermaid", + "english": "Valkyrie Drive: Mermaid", + "native": "ヴァルキリードライヴ マーメイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 30276, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "One Punch-Man", + "OPM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 5, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 30503, + "mal_id": 30503, + "title": "Noragami Aragoto", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 31772, + "mal_id": 31772, + "title": "One Punch Man Specials", + "english": "One Punch Man Specials", + "native": "ワンパンマン", + "synonyms": [], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 31704, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": null, + "native": "ワンパンマン OVA「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA", + "One Punch-Man OVA", + "One-Punch Man OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 25099, + "mal_id": 25099, + "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"", + "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 7, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 32188, + "mal_id": 32188, + "title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", + "english": "Steins;Gate: Open the Missing Link - Divide By Zero", + "native": "シュタインズ・ゲート境界面上のミッシングリンク-Divide By Zero-", + "synonyms": [ + "Steins Gate: Episode 23 (β)", + "Open the Missing Link" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 31374, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Attack! Titan Junior High" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 31251, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "G-Tekketsu" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 30885, + "mal_id": 30885, + "title": "Noragami Aragoto OVA", + "english": null, + "native": "ノラガミ OAD", + "synonyms": [ + "Noragami Aragoto OAD" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 31297, + "mal_id": 31297, + "title": "Tokyo Ghoul: \"Pinto\"", + "english": "Tokyo Ghoul: Pinto", + "native": "東京喰種 トーキョーグール【PINTO】", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 30187, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 31174, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 6, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 19489, + "mal_id": 19489, + "title": "Little Witch Academia: Mahoujikake no Parade", + "english": "Little Witch Academia: The Enchanted Parade", + "native": "リトルウィッチアカデミア 魔法仕掛けのパレード", + "synonyms": [ + "LWA 2", + "Little Witch Academia 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 27829, + "mal_id": 27829, + "title": "Heavy Object", + "english": "Heavy Object", + "native": "ヘヴィーオブジェクト", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 30276, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "One Punch-Man", + "OPM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 5, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21087, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "OPM", + "Wanpanman", + "איש האגרוף הבודד", + "一拳超人", + "วันพันช์แมน", + "Jagoan Sekali Pukul S1", + "رجل اللكمة الواحدة", + "ون بنش مان", + "Ванпанчмен" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31704, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": null, + "native": "ワンパンマン OVA「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA", + "One Punch-Man OVA", + "One-Punch Man OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 1.3276, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 1.1512, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20992, + "mal_id": 28891, + "title": "Haikyuu!! 2nd Season", + "english": "HAIKYU!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21128, + "mal_id": 30503, + "title": "Noragami ARAGOTO", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [ + "โนรางามิ เทวดาขาจร ภาค 2", + "ノラガミ アラゴト" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30503, + "mal_id": 30503, + "title": "Noragami Aragoto", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21128, + "mal_id": 30503, + "title": "Noragami ARAGOTO", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [ + "โนรางามิ เทวดาขาจร ภาค 2", + "ノラガミ アラゴト" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 30885, + "mal_id": 30885, + "title": "Noragami Aragoto OVA", + "english": null, + "native": "ノラガミ OAD", + "synonyms": [ + "Noragami Aragoto OAD" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21128, + "mal_id": 30503, + "title": "Noragami ARAGOTO", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [ + "โนรางามิ เทวดาขาจร ภาค 2", + "ノラガミ アラゴト" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 19, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21092, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚(キャバルリィ)", + "synonyms": [ + "Rakudai Kishi no Eiyuutan", + "A tale of worst one", + "เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9425, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 19, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20993, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "OwaSera 2", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21131, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 25099, + "mal_id": 25099, + "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"", + "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 7, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21262, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Tale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21386, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": "One-Punch Man: Road to Hero", + "native": "ワンパンマン「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA 1 " + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31704, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": null, + "native": "ワンパンマン OVA「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA", + "One Punch-Man OVA", + "One-Punch Man OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 1.2125, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21386, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": "One-Punch Man: Road to Hero", + "native": "ワンパンマン「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA 1 " + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 30276, + "mal_id": 30276, + "title": "One Punch Man", + "english": "One-Punch Man", + "native": "ワンパンマン", + "synonyms": [ + "One Punch-Man", + "OPM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 5, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9189, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21386, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": "One-Punch Man: Road to Hero", + "native": "ワンパンマン「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA 1 " + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 31772, + "mal_id": 31772, + "title": "One Punch Man Specials", + "english": "One Punch Man Specials", + "native": "ワンパンマン", + "synonyms": [], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21110, + "mal_id": 30363, + "title": "Shinmai Maou no Testament: BURST", + "english": "The Testament of Sister New Devil BURST", + "native": "新妹魔王の契約者 BURST", + "synonyms": [ + "Shinmai Maou no Keiyakusha BURST" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21624, + "mal_id": 32188, + "title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", + "english": "Steins;Gate 0: 23β -Divide by Zero-", + "native": "シュタインズ・ゲート 境界面上のミッシングリンク -Divide By Zero-", + "synonyms": [ + "Steins;Gate: Episode 23 (β)" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 32188, + "mal_id": 32188, + "title": "Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero", + "english": "Steins;Gate: Open the Missing Link - Divide By Zero", + "native": "シュタインズ・ゲート境界面上のミッシングリンク-Divide By Zero-", + "synonyms": [ + "Steins Gate: Episode 23 (β)", + "Open the Missing Link" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 31251, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "G-Tekketsu" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20704, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "หมวดเตรียม 35 ล่าทรชนเวท" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31374, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Attack! Titan Junior High" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21281, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Ataque a los Titanes: Junior High", + "ผ่ามัธยมไททัน", + "ผ่า! มัธยมไททัน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 31251, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "G-Tekketsu" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21268, + "mal_id": 31251, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans", + "english": "Mobile Suit GUNDAM Iron Blooded Orphans", + "native": "機動戦士ガンダム 鉄血のオルフェンズ", + "synonyms": [ + "Gundam IBO", + "G-Tekketsu", + "Gundam: Sirotci s železnou krví" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 25099, + "mal_id": 25099, + "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"", + "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 7, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 20, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31174, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 6, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20771, + "mal_id": 25099, + "title": "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Gets-Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ", + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 27829, + "mal_id": 27829, + "title": "Heavy Object", + "english": "Heavy Object", + "native": "ヘヴィーオブジェクト", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31374, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Attack! Titan Junior High" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20913, + "mal_id": 27991, + "title": "K: RETURN OF KINGS", + "english": null, + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30363, + "mal_id": 30363, + "title": "Shinmai Maou no Testament Burst", + "english": "The Testament of Sister New Devil: Burst", + "native": "新妹魔王の契約者 BURST", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21326, + "mal_id": 31297, + "title": "Tokyo Ghoul: [PINTO]", + "english": null, + "native": "東京喰種トーキョーグール【PINTO】", + "synonyms": [ + "Toukyou Kushu: Pinto" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 31297, + "mal_id": 31297, + "title": "Tokyo Ghoul: \"Pinto\"", + "english": "Tokyo Ghoul: Pinto", + "native": "東京喰種 トーキョーグール【PINTO】", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 19489, + "mal_id": 19489, + "title": "Little Witch Academia: Mahou-jikake no Parade", + "english": "Little Witch Academia: The Enchanted Parade", + "native": "リトルウィッチアカデミア 魔法仕掛けのパレード", + "synonyms": [ + "Little Witch Academia Movie", + "Little Witch Academia 2", + "LWA Movie", + "LWA 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 19489, + "mal_id": 19489, + "title": "Little Witch Academia: Mahoujikake no Parade", + "english": "Little Witch Academia: The Enchanted Parade", + "native": "リトルウィッチアカデミア 魔法仕掛けのパレード", + "synonyms": [ + "LWA 2", + "Little Witch Academia 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.9366, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 19489, + "mal_id": 19489, + "title": "Little Witch Academia: Mahou-jikake no Parade", + "english": "Little Witch Academia: The Enchanted Parade", + "native": "リトルウィッチアカデミア 魔法仕掛けのパレード", + "synonyms": [ + "Little Witch Academia Movie", + "Little Witch Academia 2", + "LWA Movie", + "LWA 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 30187, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 12, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 25099, + "mal_id": 25099, + "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"", + "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 7, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21066, + "mal_id": 30187, + "title": "Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru", + "english": "Beautiful Bones -Sakurako's Investigation-", + "native": "櫻子さんの足下には死体が埋まっている", + "synonyms": [ + "A Corpse is Buried Under Sakurako's Feet.", + "Труп под ногами Сакурако", + "Трупи під ногами Сакурако" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 24133, + "mal_id": 24133, + "title": "Taimadou Gakuen 35 Shiken Shoutai", + "english": "Anti-Magic Academy: The 35th Test Platoon", + "native": "対魔導学園35試験小隊", + "synonyms": [ + "Taimadou Gakuen Sanjuugo Shiken Shoutai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 8, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28621, + "mal_id": 28621, + "title": "Subete ga F ni Naru", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 9, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21190, + "mal_id": 28621, + "title": "Subete ga F ni Naru: THE PERFECT INSIDER", + "english": "The Perfect Insider", + "native": "すべてがFになる THE PERFECT INSIDER", + "synonyms": [ + "Everything Becomes F: The Perfect Insider", + "O Infiltrado Perfeito" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 119941, + "mal_id": 30885, + "title": "Noragami ARAGOTO OVA", + "english": null, + "native": "ノラガミ ARAGOTO OAD", + "synonyms": [ + "ノラガミ アラゴト OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 30885, + "mal_id": 30885, + "title": "Noragami Aragoto OVA", + "english": null, + "native": "ノラガミ OAD", + "synonyms": [ + "Noragami Aragoto OAD" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 11, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 1.2889, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 119941, + "mal_id": 30885, + "title": "Noragami ARAGOTO OVA", + "english": null, + "native": "ノラガミ ARAGOTO OAD", + "synonyms": [ + "ノラガミ アラゴト OAD" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 11, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30503, + "mal_id": 30503, + "title": "Noragami Aragoto", + "english": "Noragami Aragoto", + "native": "ノラガミ ARAGOTO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31174, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 6, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 25099, + "mal_id": 25099, + "title": "Ore ga Ojousama Gakkou ni \"Shomin Sample\" Toshite Gets♥Sareta Ken", + "english": "Shomin Sample", + "native": "俺がお嬢様学校に「庶民サンプル」としてゲッツされた件", + "synonyms": [ + "Story in Which I Was Kidnapped by a Young Lady's School to be a \"Sample of the Common People\"", + "Ore ga Ojou-sama Gakkou ni \"Shomin Sample\" Toshite Rachirareta Ken" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 7, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21261, + "mal_id": 31174, + "title": "Osomatsu-san", + "english": "Mr. Osomatsu", + "native": "おそ松さん", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31181, + "mal_id": 31181, + "title": "Owarimonogatari", + "english": "Owarimonogatari", + "native": "終物語", + "synonyms": [ + "End Story" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31592, + "mal_id": 31592, + "title": "Pokemon XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスターXY&Z", + "synonyms": [ + "Pocket Monsters XY&Z", + "Pokémon XY&Z" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 29, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30544, + "mal_id": 30544, + "title": "Gakusen Toshi Asterisk", + "english": "The Asterisk War", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 27991, + "mal_id": 27991, + "title": "K: Return of Kings", + "english": "K: Return of Kings", + "native": "K RETURN OF KINGS", + "synonyms": [ + "K-Project Sequel", + "K 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21356, + "mal_id": 31592, + "title": "Pocket Monsters XY&Z", + "english": "Pokémon the Series: XYZ", + "native": "ポケットモンスター XY&Z", + "synonyms": [ + "Pokémon Seria XYZ" + ], + "format": "TV", + "episodes": 47, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 10, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31704, + "mal_id": 31704, + "title": "One Punch Man: Road to Hero", + "english": null, + "native": "ワンパンマン OVA「ロード・トゥ・ヒーロー」", + "synonyms": [ + "One Punch Man OVA", + "One Punch-Man OVA", + "One-Punch Man OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 12, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31374, + "mal_id": 31374, + "title": "Shingeki! Kyojin Chuugakkou", + "english": "Attack on Titan: Junior High", + "native": "進撃!巨人中学校", + "synonyms": [ + "Attack! Titan Junior High" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21138, + "mal_id": 30370, + "title": "Akatsuki no Yona OVA", + "english": "Yona of the Dawn OVA", + "native": "暁のヨナ OVA", + "synonyms": [ + "AkaYona OVA", + "Akatsuki no Yona: Sono Se ni wa", + "Akatsuki no Yona: Zeno-hen", + "暁のヨナ その背には", + "Йона на заре", + "Рассвет Йоны", + "Ёна на заре" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28891, + "mal_id": 28891, + "title": "Haikyuu!! Second Season", + "english": "Haikyu!! 2nd Season", + "native": "ハイキュー!! セカンドシーズン", + "synonyms": [ + "Haikyuu!! Second Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 4, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21116, + "mal_id": 30385, + "title": "Valkyrie Drive: Mermaid", + "english": "Valkyrie Drive: Mermaid", + "native": "ヴァルキリードライヴ マーメイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29974, + "mal_id": 29974, + "title": "Diabolik Lovers More,Blood", + "english": "Diabolik Lovers II: More,Blood", + "native": "DIABOLIK LOVERS MORE,BLOOD", + "synonyms": [ + "Diabolik Lovers 2nd Season", + "Diabolik Lovers Second Season", + "Diabolik Lovers: More Blood" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 24, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21116, + "mal_id": 30385, + "title": "Valkyrie Drive: Mermaid", + "english": "Valkyrie Drive: Mermaid", + "native": "ヴァルキリードライヴ マーメイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28927, + "mal_id": 28927, + "title": "Owari no Seraph: Nagoya Kessen-hen", + "english": "Seraph of the End: Battle in Nagoya", + "native": "終わりのセラフ 名古屋決戦編", + "synonyms": [ + "Owari no Seraph 2nd Season", + "Seraph of the End 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 10, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21116, + "mal_id": 30385, + "title": "Valkyrie Drive: Mermaid", + "english": "Valkyrie Drive: Mermaid", + "native": "ヴァルキリードライヴ マーメイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "year": 2015, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30296, + "mal_id": 30296, + "title": "Rakudai Kishi no Cavalry", + "english": "Chivalry of a Failed Knight", + "native": "落第騎士の英雄譚《キャバルリィ》", + "synonyms": [ + "A Chivalry of the Failed Knight", + "Rakudai Kishi no Eiyuutan", + "A Tale of Worst One" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2015, + "start_date": { + "day": 3, + "month": 10, + "year": 2015 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2015-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2015-spring.json new file mode 100644 index 0000000..b361a9a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2015-spring.json @@ -0,0 +1,6188 @@ +{ + "year": 2015, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 20745, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": null, + "native": "ハイスクールD×D BorN", + "synonyms": [ + "Highschool DxD 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20963, + "mal_id": 28675, + "title": "Kyoukai no Kanata: I'LL BE HERE - Mirai-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Future", + "native": "劇場版 境界の彼方 I'LL BE HERE 未来篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przyszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21005, + "mal_id": 29093, + "title": "Grisaia no Meikyuu", + "english": "The Labyrinth of Grisaia", + "native": "グリザイアの迷宮", + "synonyms": [ + "Le Labyrinthe De La Grisaia" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 20778, + "mal_id": 25389, + "title": "Dragon Ball Z: Fukkatsu no \"F\"", + "english": "Dragon Ball Z: Resurrection 'F'", + "native": "ドラゴンボールZ 復活の「F」", + "synonyms": [ + "Dragon Ball Z: La Resurrección de \"F\"", + "龙珠Z:复活的弗利萨", + "Dragon Ball Z - La resurrezione di 'F'", + "“未来”トランクス特別編", + "Future Trunks Special Edition", + "Драконий жемчуг Зет: Воскрешение «Ф»" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21000, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2-sure-me", + "english": "I Can't Understand What My Husband is Saying 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani o Itte Iruka Wakaranai Ken 2-sure-me" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20766, + "mal_id": 24997, + "title": "Love Live! The School Idol Movie", + "english": "Love Live! The School Idol Movie", + "native": "ラブライブ!The School Idol Movie", + "synonyms": [ + "Gekijouban Love Live!", + "Love Live! School Idol Project Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20839, + "mal_id": 26443, + "title": "Triage X", + "english": "Triage X", + "native": "トリアージX", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21247, + "mal_id": 29027, + "title": "Shinmai Maou no Testament: Toujou Basara no Hard Sweet na Nichijou", + "english": "The Testament of Sister New Devil: Tojo Basara's Hard, Sweet Daily Life", + "native": "新妹魔王の契約者 東城刃更のハードスウィートな日常", + "synonyms": [ + "Shinmai Maou no Keiyakusha OVA", + "The Testament of Sister New Devil OVA", + "Shinmai Maou no Keiyakusha: Toujou Basara no Hard Sweet na Nichijou" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 23847, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu 2", + "My Teen Romantic Comedy SNAFU 2", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 27775, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティック・メモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 24439, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [ + "Bloodline Battlefront" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 28701, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night [Unlimited Blade Works] Season 2", + "native": "Fate/stay night [Unlimited Blade Works] 2nd シーズン", + "synonyms": [ + "Fate/stay night (2015)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 28677, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada-kun and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamada-kun to Nananin no Majo", + "Yamada-kun and the 7 Witches", + "Yamajo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 24703, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": "High School DxD BorN", + "native": "ハイスクールD×D BorN", + "synonyms": [ + "High School DxD Third Season", + "High School DxD 3rd Season", + "Highschool DxD BorN" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 28297, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Ore Monogatari!!", + "My Story!!" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 9, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 27989, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 28675, + "mal_id": 28675, + "title": "Kyoukai no Kanata Movie 2: I'll Be Here - Mirai-hen", + "english": "Beyond the Boundary: I'll Be Here - Future", + "native": "劇場版 境界の彼方 I'LL BE HERE 未来篇", + "synonyms": [ + "Beyond the Boundary Movie", + "Kyokai no Kanata Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 29093, + "mal_id": 29093, + "title": "Grisaia no Meikyuu: Caprice no Mayu 0", + "english": "The Labyrinth of Grisaia: The Cocoon of Caprice 0", + "native": "グリザイアの迷宮 カプリスの繭0", + "synonyms": [ + "Le Labyrinthe de la Grisaia" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 28617, + "mal_id": 28617, + "title": "Punch Line", + "english": "Punch Line", + "native": "パンチライン", + "synonyms": [ + "Punchline" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 25389, + "mal_id": 25389, + "title": "Dragon Ball Z Movie 15: Fukkatsu no \"F\"", + "english": "Dragon Ball Z: Resurrection 'F'", + "native": "ドラゴンボールZ 復活の「F」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 30347, + "mal_id": 30347, + "title": "Nanatsu no Taizai OVA", + "english": "The Seven Deadly Sins: Ban's Side Story OVA", + "native": "七つの大罪", + "synonyms": [ + "Nanatsu no Taizai: Ban no Bangai-hen", + "The Seven Deadly Sins: Ban's Side Story", + "The Seven Deadly Sins: Bandit Ban OVA 1" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 26443, + "mal_id": 26443, + "title": "Triage X", + "english": "Triage X", + "native": "トリアージX", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 9, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 29589, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is an Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 23777, + "mal_id": 23777, + "title": "Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa", + "english": "Attack on Titan: Wings of Freedom", + "native": "劇場版「進撃の巨人」後編~自由の翼~", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 6, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 24439, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [ + "Bloodline Battlefront" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20923, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars!", + "native": "食戟のソーマ", + "synonyms": [ + "لا سلام على طعام", + "Food Wars! The First Plate", + "食戟之灵", + "ยอดนักปรุงโซมะ" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23847, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu 2", + "My Teen Romantic Comedy SNAFU 2", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28617, + "mal_id": 28617, + "title": "Punch Line", + "english": "Punch Line", + "native": "パンチライン", + "synonyms": [ + "Punchline" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20920, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "Danmachi", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth", + "DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?", + "DanMachi: Família Myth", + "Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?", + "在地下城寻求邂逅是否搞错了什么", + "فارسة أحلامي", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน", + "DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon?", + "ダンまち" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28677, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada-kun and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamada-kun to Nananin no Majo", + "Yamada-kun and the 7 Witches", + "Yamajo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 1.0246, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.0238, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20829, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "OwaSera", + "Seraph of the End: El Reino de los Vampiros", + "เทวทูตแห่งโลกมืด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23847, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu 2", + "My Teen Romantic Comedy SNAFU 2", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 28297, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Ore Monogatari!!", + "My Story!!" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 9, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9954, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20698, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu Zoku", + "Oregairu 2", + "俺ガイル2", + "我的青春恋爱物语果然有问题 续", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29589, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is an Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 27775, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティック・メモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28677, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada-kun and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamada-kun to Nananin no Majo", + "Yamada-kun and the 7 Witches", + "Yamajo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20872, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティックメモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28617, + "mal_id": 28617, + "title": "Punch Line", + "english": "Punch Line", + "native": "パンチライン", + "synonyms": [ + "Punchline" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 24439, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [ + "Bloodline Battlefront" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20727, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 28701, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night [Unlimited Blade Works] Season 2", + "native": "Fate/stay night [Unlimited Blade Works] 2nd シーズン", + "synonyms": [ + "Fate/stay night (2015)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.9935, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 24703, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": "High School DxD BorN", + "native": "ハイスクールD×D BorN", + "synonyms": [ + "High School DxD Third Season", + "High School DxD 3rd Season", + "Highschool DxD BorN" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20792, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night: Unlimited Blade Works 2nd Season", + "native": "Fate/stay night [Unlimited Blade Works] 2ndシーズン", + "synonyms": [ + "フェイト/ステイナイト Unlimited Blade Works 2ndシーズン", + "Судьба/Ночь схватки: Бесконечный мир клинков 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 24439, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [ + "Bloodline Battlefront" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28677, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada-kun and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamada-kun to Nananin no Majo", + "Yamada-kun and the 7 Witches", + "Yamajo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 27775, + "mal_id": 27775, + "title": "Plastic Memories", + "english": "Plastic Memories", + "native": "プラスティック・メモリーズ", + "synonyms": [ + "Plamemo" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20966, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamadakun to Nananin no Majo", + "Yamajo", + "ยามาดะคุงกับแม่มดทั้ง 7" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20745, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": null, + "native": "ハイスクールD×D BorN", + "synonyms": [ + "Highschool DxD 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 24703, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": "High School DxD BorN", + "native": "ハイスクールD×D BorN", + "synonyms": [ + "High School DxD Third Season", + "High School DxD 3rd Season", + "Highschool DxD BorN" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 24, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20745, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": null, + "native": "ハイスクールD×D BorN", + "synonyms": [ + "Highschool DxD 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20745, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": null, + "native": "ハイスクールD×D BorN", + "synonyms": [ + "Highschool DxD 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20745, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": null, + "native": "ハイスクールD×D BorN", + "synonyms": [ + "Highschool DxD 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 28701, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night [Unlimited Blade Works] Season 2", + "native": "Fate/stay night [Unlimited Blade Works] 2nd シーズン", + "synonyms": [ + "Fate/stay night (2015)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20876, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi:", + "native": "ニセコイ:", + "synonyms": [ + "Nisekoi2 -False Love-", + " รักลวงป่วนใจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 28297, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Ore Monogatari!!", + "My Story!!" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 9, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 23847, + "mal_id": 23847, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku", + "english": "My Teen Romantic Comedy SNAFU TOO!", + "native": "やはり俺の青春ラブコメはまちがっている。続", + "synonyms": [ + "Oregairu 2", + "My Teen Romantic Comedy SNAFU 2", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20946, + "mal_id": 28297, + "title": "Ore Monogatari!!", + "english": "My Love Story!!", + "native": "俺物語!!", + "synonyms": [ + "Mon Histoire" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28617, + "mal_id": 28617, + "title": "Punch Line", + "english": "Punch Line", + "native": "パンチライン", + "synonyms": [ + "Punchline" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 27989, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20912, + "mal_id": 27989, + "title": "Hibike! Euphonium", + "english": "Sound! Euphonium", + "native": "響け!ユーフォニアム", + "synonyms": [ + "Résonne ! Euphonium", + "吹响吧!上低音号" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28677, + "mal_id": 28677, + "title": "Yamada-kun to 7-nin no Majo", + "english": "Yamada-kun and the Seven Witches", + "native": "山田くんと7人の魔女", + "synonyms": [ + "Yamada-kun to Nananin no Majo", + "Yamada-kun and the 7 Witches", + "Yamajo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20996, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 3", + "native": "銀魂゜", + "synonyms": [], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 1.1087, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 26243, + "mal_id": 26243, + "title": "Owari no Seraph", + "english": "Seraph of the End: Vampire Reign", + "native": "終わりのセラフ", + "synonyms": [ + "Seraph of the End" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21006, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden De La Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 1.0652, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 9, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20935, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記 (TV)", + "synonyms": [ + "La Heroica Leyenda de Arslan" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20963, + "mal_id": 28675, + "title": "Kyoukai no Kanata: I'LL BE HERE - Mirai-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Future", + "native": "劇場版 境界の彼方 I'LL BE HERE 未来篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przyszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 28675, + "mal_id": 28675, + "title": "Kyoukai no Kanata Movie 2: I'll Be Here - Mirai-hen", + "english": "Beyond the Boundary: I'll Be Here - Future", + "native": "劇場版 境界の彼方 I'LL BE HERE 未来篇", + "synonyms": [ + "Beyond the Boundary Movie", + "Kyokai no Kanata Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21005, + "mal_id": 29093, + "title": "Grisaia no Meikyuu", + "english": "The Labyrinth of Grisaia", + "native": "グリザイアの迷宮", + "synonyms": [ + "Le Labyrinthe De La Grisaia" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 29093, + "mal_id": 29093, + "title": "Grisaia no Meikyuu: Caprice no Mayu 0", + "english": "The Labyrinth of Grisaia: The Cocoon of Caprice 0", + "native": "グリザイアの迷宮 カプリスの繭0", + "synonyms": [ + "Le Labyrinthe de la Grisaia" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 1.15, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21005, + "mal_id": 29093, + "title": "Grisaia no Meikyuu", + "english": "The Labyrinth of Grisaia", + "native": "グリザイアの迷宮", + "synonyms": [ + "Le Labyrinthe De La Grisaia" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 0.9098, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21005, + "mal_id": 29093, + "title": "Grisaia no Meikyuu", + "english": "The Labyrinth of Grisaia", + "native": "グリザイアの迷宮", + "synonyms": [ + "Le Labyrinthe De La Grisaia" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28617, + "mal_id": 28617, + "title": "Punch Line", + "english": "Punch Line", + "native": "パンチライン", + "synonyms": [ + "Punchline" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 28977, + "mal_id": 28977, + "title": "Gintama°", + "english": "Gintama Season 4", + "native": "銀魂°", + "synonyms": [ + "Gintama' (2015)" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 8, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20964, + "mal_id": 28617, + "title": "Punch Line", + "english": "PUNCH LINE", + "native": "パンチライン", + "synonyms": [ + "Punchline", + "Linea Final" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 24439, + "mal_id": 24439, + "title": "Kekkai Sensen", + "english": "Blood Blockade Battlefront", + "native": "血界戦線", + "synonyms": [ + "Bloodline Battlefront" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20778, + "mal_id": 25389, + "title": "Dragon Ball Z: Fukkatsu no \"F\"", + "english": "Dragon Ball Z: Resurrection 'F'", + "native": "ドラゴンボールZ 復活の「F」", + "synonyms": [ + "Dragon Ball Z: La Resurrección de \"F\"", + "龙珠Z:复活的弗利萨", + "Dragon Ball Z - La resurrezione di 'F'", + "“未来”トランクス特別編", + "Future Trunks Special Edition", + "Драконий жемчуг Зет: Воскрешение «Ф»" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 25389, + "mal_id": 25389, + "title": "Dragon Ball Z Movie 15: Fukkatsu no \"F\"", + "english": "Dragon Ball Z: Resurrection 'F'", + "native": "ドラゴンボールZ 復活の「F」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 0.8643, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20778, + "mal_id": 25389, + "title": "Dragon Ball Z: Fukkatsu no \"F\"", + "english": "Dragon Ball Z: Resurrection 'F'", + "native": "ドラゴンボールZ 復活の「F」", + "synonyms": [ + "Dragon Ball Z: La Resurrección de \"F\"", + "龙珠Z:复活的弗利萨", + "Dragon Ball Z - La resurrezione di 'F'", + "“未来”トランクス特別編", + "Future Trunks Special Edition", + "Драконий жемчуг Зет: Воскрешение «Ф»" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21000, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2-sure-me", + "english": "I Can't Understand What My Husband is Saying 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani o Itte Iruka Wakaranai Ken 2-sure-me" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29067, + "mal_id": 29067, + "title": "Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me", + "english": "I Can't Understand What My Husband Is Saying: 2nd Thread", + "native": "旦那が何を言っているかわからない件2スレ目", + "synonyms": [ + "Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season", + "I Can't Understand What My Husband Is Saying Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 3, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9366, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20766, + "mal_id": 24997, + "title": "Love Live! The School Idol Movie", + "english": "Love Live! The School Idol Movie", + "native": "ラブライブ!The School Idol Movie", + "synonyms": [ + "Gekijouban Love Live!", + "Love Live! School Idol Project Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 24703, + "mal_id": 24703, + "title": "High School DxD BorN", + "english": "High School DxD BorN", + "native": "ハイスクールD×D BorN", + "synonyms": [ + "High School DxD Third Season", + "High School DxD 3rd Season", + "Highschool DxD BorN" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20766, + "mal_id": 24997, + "title": "Love Live! The School Idol Movie", + "english": "Love Live! The School Idol Movie", + "native": "ラブライブ!The School Idol Movie", + "synonyms": [ + "Gekijouban Love Live!", + "Love Live! School Idol Project Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 6, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20839, + "mal_id": 26443, + "title": "Triage X", + "english": "Triage X", + "native": "トリアージX", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 26443, + "mal_id": 26443, + "title": "Triage X", + "english": "Triage X", + "native": "トリアージX", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 9, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 13, + "score": 0.9357, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21247, + "mal_id": 29027, + "title": "Shinmai Maou no Testament: Toujou Basara no Hard Sweet na Nichijou", + "english": "The Testament of Sister New Devil: Tojo Basara's Hard, Sweet Daily Life", + "native": "新妹魔王の契約者 東城刃更のハードスウィートな日常", + "synonyms": [ + "Shinmai Maou no Keiyakusha OVA", + "The Testament of Sister New Devil OVA", + "Shinmai Maou no Keiyakusha: Toujou Basara no Hard Sweet na Nichijou" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 6, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30230, + "mal_id": 30230, + "title": "Diamond no Ace: Second Season", + "english": "Ace of Diamond: Second Season", + "native": "ダイヤのA[エース]~Second Season~", + "synonyms": [ + "Daiya no Ace: Second Season", + "Ace of the Diamond: 2nd Season" + ], + "format": "TV", + "episodes": 51, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 6, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29589, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is an Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28171, + "mal_id": 28171, + "title": "Shokugeki no Souma", + "english": "Food Wars! Shokugeki no Soma", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Soma", + "Food Wars: Shokugeki no Soma" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 14, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20566, + "mal_id": 26351, + "title": "Nagato Yuki-chan no Shoushitsu", + "english": "The Disappearance of Nagato Yuki-chan", + "native": "長門有希ちゃんの消失", + "synonyms": [ + "La Disparition de Yuki Nagato" + ], + "format": "TV", + "episodes": 16, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28249, + "mal_id": 28249, + "title": "Arslan Senki (TV)", + "english": "The Heroic Legend of Arslan", + "native": "アルスラーン戦記", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 29589, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is an Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 1, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28121, + "mal_id": 28121, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか", + "synonyms": [ + "DanMachi", + "Is It Wrong That I Want to Meet You in a Dungeon" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 4, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 28701, + "mal_id": 28701, + "title": "Fate/stay night: Unlimited Blade Works 2nd Season", + "english": "Fate/stay night [Unlimited Blade Works] Season 2", + "native": "Fate/stay night [Unlimited Blade Works] 2nd シーズン", + "synonyms": [ + "Fate/stay night (2015)", + "Fate - Stay Night" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 5, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 29095, + "mal_id": 29095, + "title": "Grisaia no Rakuen", + "english": "The Eden of Grisaia", + "native": "グリザイアの楽園", + "synonyms": [ + "Le Eden de la Grisaia" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 19, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21018, + "mal_id": 29589, + "title": "Denpa Kyoushi", + "english": "Ultimate Otaku Teacher", + "native": "電波教師", + "synonyms": [ + "He Is A Ultimate Teacher" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2015, + "start_date": { + "year": 2015, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 27787, + "mal_id": 27787, + "title": "Nisekoi:", + "english": "Nisekoi: False Love Season 2", + "native": "ニセコイ", + "synonyms": [ + "Nisekoi 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2015, + "start_date": { + "day": 10, + "month": 4, + "year": 2015 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2015-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2015-summer.json new file mode 100644 index 0000000..aac602f --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2015-summer.json @@ -0,0 +1,6372 @@ +{ + "year": 2015, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20997, + "mal_id": 28999, + "title": "Charlotte", + "english": null, + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20832, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [ + "Over Lord", + "โอเวอร์ลอร์ด", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21175, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超", + "synonyms": [ + "DBS", + "Dragonball Super", + "דרגון בול סופר", + "Драконий жемчуг: Супер" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 21220, + "mal_id": 28755, + "title": "BORUTO: NARUTO THE MOVIE", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20984, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Okusama ga Seito Kaichou!" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21132, + "mal_id": 30458, + "title": "Tokyo Ghoul: [JACK]", + "english": null, + "native": "東京喰種トーキョーグール [JACK]", + "synonyms": [ + "Tokyo Kushu: Jack" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20694, + "mal_id": 23623, + "title": "Non Non Biyori: Repeat", + "english": "Non Non Biyori Repeat", + "native": "のんのんびより りぴーと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20741, + "mal_id": 24655, + "title": "Date A Live Movie: Mayuri Judgement", + "english": "Date A Live Mayuri Judgement", + "native": "劇場版デート・ア・ライブ 万由里ジャッジメント", + "synonyms": [ + "Date A Live Movie: Mayuri Judgment", + "พิชิตรัก พิทักษ์โลก : เดอะมูฟวี่ คำพิพากษาของมายูริ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 20819, + "mal_id": 25879, + "title": "WORKING!!!", + "english": "Wagnaria!!3", + "native": "WORKING!!!", + "synonyms": [ + "ワーキング!!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 28999, + "mal_id": 28999, + "title": "Charlotte", + "english": "Charlotte", + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 29803, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 30240, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 29786, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 25183, + "mal_id": 25183, + "title": "Gangsta.", + "english": "Gangsta.", + "native": "GANGSTA. ギャングスタ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 28755, + "mal_id": 28755, + "title": "Boruto: Naruto the Movie", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [ + "Gekijouban Naruto (2015)" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 8, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 28805, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and the Beast", + "native": "バケモノの子", + "synonyms": [ + "Child of a Beast" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 27831, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! x2 Ten", + "native": "デュラララ!!×2 転", + "synonyms": [ + "Durarara!!x2 Ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 28725, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterunda.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 29785, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I am...", + "native": "実は私は", + "synonyms": [ + "Jitsuwata", + "The Truth Is I Am...", + "I am..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 28979, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To LOVE Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 25283, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [ + "The Instructor of Aerial Combat Wizard Candidates" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 30458, + "mal_id": 30458, + "title": "Tokyo Ghoul: \"Jack\"", + "english": "Tokyo Ghoul: Jack", + "native": "東京喰種 トーキョーグール【JACK】", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 25879, + "mal_id": 25879, + "title": "Working!!!", + "english": "Wagnaria!!3", + "native": "Working[ワーキング]!!!", + "synonyms": [ + "Working!! 3rd Season", + "Working!! Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20997, + "mal_id": 28999, + "title": "Charlotte", + "english": null, + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28999, + "mal_id": 28999, + "title": "Charlotte", + "english": "Charlotte", + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20997, + "mal_id": 28999, + "title": "Charlotte", + "english": null, + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20997, + "mal_id": 28999, + "title": "Charlotte", + "english": null, + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20832, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [ + "Over Lord", + "โอเวอร์ลอร์ด", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 29803, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20832, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [ + "Over Lord", + "โอเวอร์ลอร์ด", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28979, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To LOVE Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20832, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [ + "Over Lord", + "โอเวอร์ลอร์ด", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 29786, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30240, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 17, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20807, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "โรงเรียนคุกนรก", + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21175, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超", + "synonyms": [ + "DBS", + "Dragonball Super", + "דרגון בול סופר", + "Драконий жемчуг: Супер" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21175, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超", + "synonyms": [ + "DBS", + "Dragonball Super", + "דרגון בול סופר", + "Драконий жемчуг: Супер" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21175, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超", + "synonyms": [ + "DBS", + "Dragonball Super", + "דרגון בול סופר", + "Драконий жемчуг: Супер" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 25879, + "mal_id": 25879, + "title": "Working!!!", + "english": "Wagnaria!!3", + "native": "Working[ワーキング]!!!", + "synonyms": [ + "Working!! 3rd Season", + "Working!! Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21175, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超", + "synonyms": [ + "DBS", + "Dragonball Super", + "דרגון בול סופר", + "Драконий жемчуг: Супер" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 29786, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 23, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 0.8918, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20910, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 10, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 25183, + "mal_id": 25183, + "title": "Gangsta.", + "english": "Gangsta.", + "native": "GANGSTA. ギャングスタ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 28999, + "mal_id": 28999, + "title": "Charlotte", + "english": "Charlotte", + "native": "Charlotte(シャーロット)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 0.8733, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20994, + "mal_id": 28907, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "Gate", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 25283, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [ + "The Instructor of Aerial Combat Wizard Candidates" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 17, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21058, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Shirayuki aux cheveux rouges", + "สโนว์ไวท์ผมแดง", + "Красноволосая Белоснежка", + "Красноволосая принцесса Белоснежка", + "Die rothaarige Schneeprinzessin", + "Blancanieves pelirroja", + "Shirayuki: Śnieżka o czerwonych włosach" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20987, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "干物妹!小埋" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21093, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life With Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu", + "Die Monster Mädchen", + "บันทึกอุ่นรักสาวมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 25283, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [ + "The Instructor of Aerial Combat Wizard Candidates" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 25183, + "mal_id": 25183, + "title": "Gangsta.", + "english": "Gangsta.", + "native": "GANGSTA. ギャングスタ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20773, + "mal_id": 25183, + "title": "GANGSTA.", + "english": "GANGSTA.", + "native": "GANGSTA.", + "synonyms": [ + "ギャングスタ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 24, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20955, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka -Braves of the Six Flowers-", + "native": "六花の勇者", + "synonyms": [ + "ผู้กล้าแห่งบุปผา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30240, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28979, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To LOVE Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20754, + "mal_id": 24765, + "title": "Gakkou Gurashi!", + "english": "SCHOOL-LIVE!", + "native": "がっこうぐらし!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20849, + "mal_id": 27631, + "title": "GOD EATER", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [ + "ゴッドイーター" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 25183, + "mal_id": 25183, + "title": "Gangsta.", + "english": "Gangsta.", + "native": "GANGSTA. ギャングスタ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 28805, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and the Beast", + "native": "バケモノの子", + "synonyms": [ + "Child of a Beast" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9581, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.9517, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29785, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I am...", + "native": "実は私は", + "synonyms": [ + "Jitsuwata", + "The Truth Is I Am...", + "I am..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 23, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20981, + "mal_id": 28805, + "title": "Bakemono no Ko", + "english": "The Boy and The Beast", + "native": "バケモノの子", + "synonyms": [ + "El niño y la bestia", + "O Rapaz e o Monstro", + "El nen i la bèstia", + "Учень чудовиська", + "Ученик чудовища", + "Berniukas ir Pabaisa", + "Құбыжықтың шәкірті", + "Băiatul și bestia", + "Əjdahanın şagirdi", + "Odjuret och hans lärling", + "Le Garçon et la Bête" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21220, + "mal_id": 28755, + "title": "BORUTO: NARUTO THE MOVIE", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 28755, + "mal_id": 28755, + "title": "Boruto: Naruto the Movie", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [ + "Gekijouban Naruto (2015)" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 8, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.8878, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21220, + "mal_id": 28755, + "title": "BORUTO: NARUTO THE MOVIE", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21220, + "mal_id": 28755, + "title": "BORUTO: NARUTO THE MOVIE", + "english": "Boruto: Naruto the Movie", + "native": "BORUTO -NARUTO THE MOVIE-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 28725, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterunda.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30240, + "mal_id": 30240, + "title": "Prison School", + "english": "Prison School", + "native": "監獄学園〈プリズンスクール〉", + "synonyms": [ + "Kangoku Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 11, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.8783, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28907, + "mal_id": 28907, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri", + "english": "GATE", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり", + "synonyms": [ + "Gate: Thus the JSDF Fought There!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20968, + "mal_id": 28725, + "title": "Kokoro ga Sakebitagatterun da.", + "english": "The Anthem of the Heart", + "native": "心が叫びたがってるんだ。", + "synonyms": [ + "Kokosake", + "El Himno del Corazón", + "The Anthem of the Heart: Beautiful Word Beautiful World", + "Jun La voix du Coeur", + "เมื่อใจกู่ร้องอยากบอกโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 28825, + "mal_id": 28825, + "title": "Himouto! Umaru-chan", + "english": "Himouto! Umaru-chan", + "native": "干物妹!うまるちゃん", + "synonyms": [ + "My Two-Faced Little Sister" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 27831, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! x2 Ten", + "native": "デュラララ!!×2 転", + "synonyms": [ + "Durarara!!x2 Ten" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27631, + "mal_id": 27631, + "title": "God Eater", + "english": "God Eater", + "native": "GOD EATER", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 12, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20879, + "mal_id": 27831, + "title": "Durarara!!x2 Ten", + "english": "Durarara!! X2 The Second Arc", + "native": "デュラララ!!×2 転", + "synonyms": [ + "DRRR!! 2 Ten", + "דורארארה!!2x תפנית" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20984, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Okusama ga Seito Kaichou!" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.8746, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20984, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Okusama ga Seito Kaichou!" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 25283, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [ + "The Instructor of Aerial Combat Wizard Candidates" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29785, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I am...", + "native": "実は私は", + "synonyms": [ + "Jitsuwata", + "The Truth Is I Am...", + "I am..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 25879, + "mal_id": 25879, + "title": "Working!!!", + "english": "Wagnaria!!3", + "native": "Working[ワーキング]!!!", + "synonyms": [ + "Working!! 3rd Season", + "Working!! Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28979, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To LOVE Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21033, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I Am", + "native": "実は私は", + "synonyms": [ + "จุ๊จุ๊ จะบอกว่าฉันคือ…", + "My Monster Secret", + "Na verdade, eu sou...", + "En realidad, soy..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21132, + "mal_id": 30458, + "title": "Tokyo Ghoul: [JACK]", + "english": null, + "native": "東京喰種トーキョーグール [JACK]", + "synonyms": [ + "Tokyo Kushu: Jack" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 30458, + "mal_id": 30458, + "title": "Tokyo Ghoul: \"Jack\"", + "english": "Tokyo Ghoul: Jack", + "native": "東京喰種 トーキョーグール【JACK】", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 9, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21132, + "mal_id": 30458, + "title": "Tokyo Ghoul: [JACK]", + "english": null, + "native": "東京喰種トーキョーグール [JACK]", + "synonyms": [ + "Tokyo Kushu: Jack" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 28979, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To LOVE Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 24765, + "mal_id": 24765, + "title": "Gakkougurashi!", + "english": "School-Live!", + "native": "がっこうぐらし!", + "synonyms": [ + "Gakkou Gurashi!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29785, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I am...", + "native": "実は私は", + "synonyms": [ + "Jitsuwata", + "The Truth Is I Am...", + "I am..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 29803, + "mal_id": 29803, + "title": "Overlord", + "english": "Overlord", + "native": "オーバーロード", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20995, + "mal_id": 28979, + "title": "To LOVE-Ru Darkness 2nd", + "english": "To Love Ru Darkness 2", + "native": "To LOVEる -とらぶる- ダークネス2nd", + "synonyms": [ + "To LOVE-Ru Trouble Darkness 2nd" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20694, + "mal_id": 23623, + "title": "Non Non Biyori: Repeat", + "english": "Non Non Biyori Repeat", + "native": "のんのんびより りぴーと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 29854, + "mal_id": 29854, + "title": "Ushio to Tora (TV)", + "english": "Ushio & Tora (2015)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20694, + "mal_id": 23623, + "title": "Non Non Biyori: Repeat", + "english": "Non Non Biyori Repeat", + "native": "のんのんびより りぴーと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20694, + "mal_id": 23623, + "title": "Non Non Biyori: Repeat", + "english": "Non Non Biyori Repeat", + "native": "のんのんびより りぴーと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 30123, + "mal_id": 30123, + "title": "Akagami no Shirayuki-hime", + "english": "Snow White with the Red Hair", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20694, + "mal_id": 23623, + "title": "Non Non Biyori: Repeat", + "english": "Non Non Biyori Repeat", + "native": "のんのんびより りぴーと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 25283, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [ + "The Instructor of Aerial Combat Wizard Candidates" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 9, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 28819, + "mal_id": 28819, + "title": "Okusama ga Seitokaichou!", + "english": "My Wife is the Student Council President!", + "native": "おくさまが生徒会長!", + "synonyms": [ + "Oku-sama ga Seito Kaichou!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 2, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 29785, + "mal_id": 29785, + "title": "Jitsu wa Watashi wa", + "english": "Actually, I am...", + "native": "実は私は", + "synonyms": [ + "Jitsuwata", + "The Truth Is I Am...", + "I am..." + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 7, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 28497, + "mal_id": 28497, + "title": "Rokka no Yuusha", + "english": "Rokka: Braves of the Six Flowers", + "native": "六花の勇者", + "synonyms": [ + "Rokka no Yusha" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20774, + "mal_id": 25283, + "title": "Kuusen Madoushi Kouhosei no Kyoukan", + "english": "Sky Wizards Academy", + "native": "空戦魔導士候補生の教官", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 29786, + "mal_id": 29786, + "title": "Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai", + "english": "SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn't Exist", + "native": "下ネタという概念が存在しない退屈な世界", + "synonyms": [ + "Shimoseka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 4, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20741, + "mal_id": 24655, + "title": "Date A Live Movie: Mayuri Judgement", + "english": "Date A Live Mayuri Judgement", + "native": "劇場版デート・ア・ライブ 万由里ジャッジメント", + "synonyms": [ + "Date A Live Movie: Mayuri Judgment", + "พิชิตรัก พิทักษ์โลก : เดอะมูฟวี่ คำพิพากษาของมายูริ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 8, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 30307, + "mal_id": 30307, + "title": "Monster Musume no Iru Nichijou", + "english": "Monster Musume: Everyday Life with Monster Girls", + "native": "モンスター娘のいる日常", + "synonyms": [ + "MonMusu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 8, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20819, + "mal_id": 25879, + "title": "WORKING!!!", + "english": "Wagnaria!!3", + "native": "WORKING!!!", + "synonyms": [ + "ワーキング!!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 25879, + "mal_id": 25879, + "title": "Working!!!", + "english": "Wagnaria!!3", + "native": "Working[ワーキング]!!!", + "synonyms": [ + "Working!! 3rd Season", + "Working!! Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20819, + "mal_id": 25879, + "title": "WORKING!!!", + "english": "Wagnaria!!3", + "native": "WORKING!!!", + "synonyms": [ + "ワーキング!!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 30205, + "mal_id": 30205, + "title": "Aoharu x Kikanjuu", + "english": "Aoharu x Machinegun", + "native": "青春×機関銃", + "synonyms": [ + "Aoharu x Machine Gun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 3, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20819, + "mal_id": 25879, + "title": "WORKING!!!", + "english": "Wagnaria!!3", + "native": "WORKING!!!", + "synonyms": [ + "ワーキング!!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30694, + "mal_id": 30694, + "title": "Dragon Ball Super", + "english": "Dragon Ball Super", + "native": "ドラゴンボール超(スーパー)", + "synonyms": [ + "Dragon Ball Chou", + "DB Super", + "DBS" + ], + "format": "TV", + "episodes": 131, + "season": "SUMMER", + "year": 2015, + "start_date": { + "day": 5, + "month": 7, + "year": 2015 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2015-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2015-winter.json new file mode 100644 index 0000000..5b1387d --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2015-winter.json @@ -0,0 +1,5963 @@ +{ + "year": 2015, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20678, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 20811, + "mal_id": 25781, + "title": "Shingeki no Kyojin Gaiden: Kuinaki Sentaku", + "english": "Attack on Titan: No Regrets", + "native": "進撃の巨人 外伝 悔いなき選択", + "synonyms": [ + "SnK", + "AoT", + "ผ่าพิภพไททัน ภาค OAD No Regret", + "ผ่าพิภพไททัน OAD ", + "Атака титанов: Выбор без сожалений" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2014, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 20785, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [ + "แอบโซลูท ดูโอ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 20652, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! X2", + "native": "デュラララ!!×2 承", + "synonyms": [ + "DRRR!! 2 Shou", + "דורארארה!!2x התפתחות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 20514, + "mal_id": 21339, + "title": "PSYCHO-PASS Movie", + "english": "PSYCHO-PASS: The Movie", + "native": "劇場版 PSYCHO-PASS サイコパス", + "synonyms": [ + "PSYCHO-PASS: La Película" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21103, + "mal_id": 30300, + "title": "High School DxD NEW OVA Oppai, Tsutsumimasu!", + "english": null, + "native": "ハイスクールD×D NEW OVA おっぱい、包みます!", + "synonyms": [ + "High School DxD New Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 20768, + "mal_id": 25015, + "title": "Kyoukai no Kanata: I'LL BE HERE - Kako-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przeszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21064, + "mal_id": 28285, + "title": "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", + "english": null, + "native": "トリニティセブン 七つの大罪と七魔道士", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 20746, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "イスカ", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20740, + "mal_id": 24627, + "title": "Yamada-kun to 7-nin no Majo (OVA)", + "english": "Yamada and the Seven Witches (OVA)", + "native": "山田くんと7人の魔女 OAD", + "synonyms": [ + "Yamajo OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2014, + "month": 12, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 20693, + "mal_id": 23587, + "title": "THE IDOLM@STER Cinderella Girls", + "english": "THE IDOLM@STER CINDERELLA GIRLS", + "native": "アイドルマスターシンデレラガールズ", + "synonyms": [ + "The Idolmaster: Cinderella Girls", + "The iDOLM@STER Cinderella Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 28223, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 27899, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種√A", + "synonyms": [ + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 26055, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "JoJo's Bizarre Adventure Part 3", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 25397, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 4, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 21339, + "mal_id": 21339, + "title": "Psycho-Pass Movie 1", + "english": "Psycho-Pass: The Movie", + "native": "劇場版 サイコパス", + "synonyms": [ + "Psychopath Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 23317, + "mal_id": 23317, + "title": "Kuroshitsuji: Book of Murder", + "english": "Black Butler: Book of Murder", + "native": "黒執事 Book of Murder", + "synonyms": [], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 30300, + "mal_id": 30300, + "title": "High School DxD New: Oppai, Tsutsumimasu!", + "english": "High School DxD New OVA", + "native": "ハイスクールD×D NEW OVA おっぱい、包みます!", + "synonyms": [ + "High School DxD New OVA", + "High School DxD New Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 25015, + "mal_id": 25015, + "title": "Kyoukai no Kanata Movie 1: I'll Be Here - Kako-hen", + "english": "Beyond the Boundary: I'll Be Here - Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Beyond the Boundary Movie", + "Kyokai no Kanata Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 24873, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 25429, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "ISUCA [イスカ]", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 24, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 28285, + "mal_id": 28285, + "title": "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", + "english": "Trinity Seven OVA", + "native": "トリニティセブン 七つの大罪と七魔道士", + "synonyms": [ + "Trinity Seven (2015)", + "Trinity Seven: The Seven Deadly Sins and The Seven Mages" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 25303, + "mal_id": 25303, + "title": "Haikyuu!! Lev Genzan!", + "english": "Haikyu!!: Lev Appears!", + "native": "ハイキュー!! リエーフ見参!", + "synonyms": [ + "Haikyuu!!: Jump Festa 2014 Special", + "Haikyuu!! OVA", + "Haikyuu!! The Arrival of Haiba Lev" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 29317, + "mal_id": 29317, + "title": "Saenai Heroine no Sodatekata: Ai to Seishun no Service-kai", + "english": "Saekano: Fan Service of Love and Youth", + "native": "冴えない彼女の育てかた #0 「愛と青春のサービス回」", + "synonyms": [ + "Saenai Heroine no Sodatekata Special: Episode 0", + "Saekano: How to Raise a Boring Girlfriend: Prologue" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 26213, + "mal_id": 26213, + "title": "Free! Eternal Summer: Kindan no All Hard!", + "english": null, + "native": "Free! -Eternal Summer- 禁断のオールハード!", + "synonyms": [ + "Free! Eternal Summer Special", + "Free! Iwatobi Swim Club 2 Special", + "Free! 2nd Season Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20755, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [ + "כיתת ההתנקשות", + "فصل الاغتيال", + "Klasa skrytobójców" + ], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28223, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20931, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [ + "תהלוכת המוות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 27899, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種√A", + "synonyms": [ + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 20850, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種[トーキョーグール]√A", + "synonyms": [ + "Tokyo Kushu 2", + "Tokyo Ghoul Root A" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 26055, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "JoJo's Bizarre Adventure Part 3", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9938, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 20799, + "mal_id": 26055, + "title": "JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen", + "english": "JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt", + "native": "ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編", + "synonyms": [ + "Dai San Bu Kujo Jotaro: Mirai e no Isan", + "JoJo's Bizarre Adventure: Stardust Crusaders 2nd Season", + "JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season", + "JoJo's Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt", + "JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen", + "JoJo's Bizarre Adventure: Stardust Crusaders - Egypt Arc", + "Le bizzarre avventure di JoJo: Stardust Crusaders" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 19, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 25429, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "ISUCA [イスカ]", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 24, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 20657, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女の育てかた", + "synonyms": [ + "Saekano", + "路人女主的养成方法", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 1.22, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 27899, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種√A", + "synonyms": [ + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 20725, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd SEASON", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ 3rd SEASON", + "synonyms": [ + "Kuroko no Basuke 3", + "הכדורסל של קורוקו 3", + "Баскетбол Куроко 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20678, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 1.066, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20678, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9912, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20678, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20678, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20811, + "mal_id": 25781, + "title": "Shingeki no Kyojin Gaiden: Kuinaki Sentaku", + "english": "Attack on Titan: No Regrets", + "native": "進撃の巨人 外伝 悔いなき選択", + "synonyms": [ + "SnK", + "AoT", + "ผ่าพิภพไททัน ภาค OAD No Regret", + "ผ่าพิภพไททัน OAD ", + "Атака титанов: Выбор без сожалений" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2014, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 25429, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "ISUCA [イスカ]", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 24, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 20811, + "mal_id": 25781, + "title": "Shingeki no Kyojin Gaiden: Kuinaki Sentaku", + "english": "Attack on Titan: No Regrets", + "native": "進撃の巨人 外伝 悔いなき選択", + "synonyms": [ + "SnK", + "AoT", + "ผ่าพิภพไททัน ภาค OAD No Regret", + "ผ่าพิภพไททัน OAD ", + "Атака титанов: Выбор без сожалений" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2014, + "month": 12, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 27899, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種√A", + "synonyms": [ + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20785, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [ + "แอบโซลูท ดูโอ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 25397, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 4, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20785, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [ + "แอบโซลูท ดูโอ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20785, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [ + "แอบโซลูท ดูโอ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 20785, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [ + "แอบโซลูท ดูโอ " + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20652, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! X2", + "native": "デュラララ!!×2 承", + "synonyms": [ + "DRRR!! 2 Shou", + "דורארארה!!2x התפתחות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20652, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! X2", + "native": "デュラララ!!×2 承", + "synonyms": [ + "DRRR!! 2 Shou", + "דורארארה!!2x התפתחות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20652, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! X2", + "native": "デュラララ!!×2 承", + "synonyms": [ + "DRRR!! 2 Shou", + "דורארארה!!2x התפתחות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 20652, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! X2", + "native": "デュラララ!!×2 承", + "synonyms": [ + "DRRR!! 2 Shou", + "דורארארה!!2x התפתחות" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 20801, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss◎", + "native": "神様はじめました◎", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 20627, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱<ワールドブレイク>", + "synonyms": [ + "World Break เทพนักดาบข้ามภพ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 20514, + "mal_id": 21339, + "title": "PSYCHO-PASS Movie", + "english": "PSYCHO-PASS: The Movie", + "native": "劇場版 PSYCHO-PASS サイコパス", + "synonyms": [ + "PSYCHO-PASS: La Película" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 21339, + "mal_id": 21339, + "title": "Psycho-Pass Movie 1", + "english": "Psycho-Pass: The Movie", + "native": "劇場版 サイコパス", + "synonyms": [ + "Psychopath Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20853, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "ALDNOAH.ZERO Season 2", + "native": "アルドノア・ゼロ 第2クール", + "synonyms": [ + "A/Z 2", + "ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 25397, + "mal_id": 25397, + "title": "Absolute Duo", + "english": "Absolute Duo", + "native": "アブソリュート・デュオ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 4, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 9, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20553, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "KanKore" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21103, + "mal_id": 30300, + "title": "High School DxD NEW OVA Oppai, Tsutsumimasu!", + "english": null, + "native": "ハイスクールD×D NEW OVA おっぱい、包みます!", + "synonyms": [ + "High School DxD New Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 30300, + "mal_id": 30300, + "title": "High School DxD New: Oppai, Tsutsumimasu!", + "english": "High School DxD New OVA", + "native": "ハイスクールD×D NEW OVA おっぱい、包みます!", + "synonyms": [ + "High School DxD New OVA", + "High School DxD New Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20768, + "mal_id": 25015, + "title": "Kyoukai no Kanata: I'LL BE HERE - Kako-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przeszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 25015, + "mal_id": 25015, + "title": "Kyoukai no Kanata Movie 1: I'll Be Here - Kako-hen", + "english": "Beyond the Boundary: I'll Be Here - Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Beyond the Boundary Movie", + "Kyokai no Kanata Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20768, + "mal_id": 25015, + "title": "Kyoukai no Kanata: I'LL BE HERE - Kako-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przeszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 0.8776, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 20768, + "mal_id": 25015, + "title": "Kyoukai no Kanata: I'LL BE HERE - Kako-hen", + "english": "Beyond the Boundary -I'LL BE HERE-: Past", + "native": "劇場版 境界の彼方 I'LL BE HERE 過去篇", + "synonyms": [ + "Kyoukai no Kanata: I’ll Be Here – przeszłość" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 24873, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 22663, + "mal_id": 22663, + "title": "Seiken Tsukai no World Break", + "english": "World Break: Aria of Curse for a Holy Swordsman", + "native": "聖剣使いの禁呪詠唱〈ワールドブレイク〉", + "synonyms": [ + "Seiken Tsukai no Kinshuu Eishou", + "Warubure" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 12, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 20840, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Sorcière de gré", + " pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28223, + "mal_id": 28223, + "title": "Death Parade", + "english": "Death Parade", + "native": "デス・パレード", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 24873, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 20758, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [ + "Unlimited Fafnir School Battle" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21064, + "mal_id": 28285, + "title": "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", + "english": null, + "native": "トリニティセブン 七つの大罪と七魔道士", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 3, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 28285, + "mal_id": 28285, + "title": "Trinity Seven: Nanatsu no Taizai to Nana Madoushi", + "english": "Trinity Seven OVA", + "native": "トリニティセブン 七つの大罪と七魔道士", + "synonyms": [ + "Trinity Seven (2015)", + "Trinity Seven: The Seven Deadly Sins and The Seven Mages" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 3, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 26165, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Yuri Bear Storm", + "Love Bullet: Yurikuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 23199, + "mal_id": 23199, + "title": "Durarara!!x2 Shou", + "english": "Durarara!! x2 Shou", + "native": "デュラララ!!×2 承", + "synonyms": [ + "Durarara!! 2nd Season", + "DRRR!! 2nd Season", + "Durararax2 1st Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 24833, + "mal_id": 24833, + "title": "Ansatsu Kyoushitsu", + "english": "Assassination Classroom", + "native": "暗殺教室", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 10, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 20827, + "mal_id": 26165, + "title": "Yuri Kuma Arashi", + "english": "Yurikuma Arashi", + "native": "ユリ熊嵐", + "synonyms": [ + "Love Bullet: Yuri Kuma Arashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 24415, + "mal_id": 24415, + "title": "Kuroko no Basket 3rd Season", + "english": "Kuroko's Basketball 3", + "native": "黒子のバスケ", + "synonyms": [ + "Kuroko no Basuke 3rd Season", + "The Basketball Which Kuroko Plays" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 20746, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "イスカ", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 25429, + "mal_id": 25429, + "title": "Isuca", + "english": "Isuca", + "native": "ISUCA [イスカ]", + "synonyms": [ + "Isuka" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 24, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 23277, + "mal_id": 23277, + "title": "Saenai Heroine no Sodatekata", + "english": "Saekano: How to Raise a Boring Girlfriend", + "native": "冴えない彼女〈ヒロイン〉の育てかた", + "synonyms": [ + "Saenai Kanojo no Sodate-kata" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 16, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21511, + "mal_id": 21511, + "title": "Kantai Collection: KanColle", + "english": "KanColle", + "native": "艦隊これくしょん -艦これ-", + "synonyms": [ + "Kankore", + "Kantai Collection" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 24873, + "mal_id": 24873, + "title": "Juuou Mujin no Fafnir", + "english": "Unlimited Fafnir", + "native": "銃皇無尽のファフニール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 20815, + "mal_id": 25867, + "title": "Rolling☆Girls", + "english": "The Rolling Girls", + "native": "ローリング☆ガールズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 27655, + "mal_id": 27655, + "title": "Aldnoah.Zero Part 2", + "english": "Aldnoah.Zero Part 2", + "native": "アルドノア・ゼロ(第2クール)", + "synonyms": [ + "Aldnoah.Zero 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.9926, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20740, + "mal_id": 24627, + "title": "Yamada-kun to 7-nin no Majo (OVA)", + "english": "Yamada and the Seven Witches (OVA)", + "native": "山田くんと7人の魔女 OAD", + "synonyms": [ + "Yamajo OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2014, + "month": 12, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20693, + "mal_id": 23587, + "title": "THE IDOLM@STER Cinderella Girls", + "english": "THE IDOLM@STER CINDERELLA GIRLS", + "native": "アイドルマスターシンデレラガールズ", + "synonyms": [ + "The Idolmaster: Cinderella Girls", + "The iDOLM@STER Cinderella Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 27899, + "mal_id": 27899, + "title": "Tokyo Ghoul √A", + "english": "Tokyo Ghoul √A", + "native": "東京喰種√A", + "synonyms": [ + "Tokyo Ghoul Root A", + "Tokyo Ghoul 2nd Season", + "Tokyo Ghoul Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 9, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20693, + "mal_id": 23587, + "title": "THE IDOLM@STER Cinderella Girls", + "english": "THE IDOLM@STER CINDERELLA GIRLS", + "native": "アイドルマスターシンデレラガールズ", + "synonyms": [ + "The Idolmaster: Cinderella Girls", + "The iDOLM@STER Cinderella Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 23233, + "mal_id": 23233, + "title": "Shinmai Maou no Testament", + "english": "The Testament of Sister New Devil", + "native": "新妹魔王の契約者〈テスタメント〉", + "synonyms": [ + "Shinmai Maou no Keiyakusha" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 8, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20693, + "mal_id": 23587, + "title": "THE IDOLM@STER Cinderella Girls", + "english": "THE IDOLM@STER CINDERELLA GIRLS", + "native": "アイドルマスターシンデレラガールズ", + "synonyms": [ + "The Idolmaster: Cinderella Girls", + "The iDOLM@STER Cinderella Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 26441, + "mal_id": 26441, + "title": "Junketsu no Maria", + "english": "Maria the Virgin Witch", + "native": "純潔のマリア", + "synonyms": [ + "Junketsu no Maria: Sorcière de gré", + "pucelle de force" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 11, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 20693, + "mal_id": 23587, + "title": "THE IDOLM@STER Cinderella Girls", + "english": "THE IDOLM@STER CINDERELLA GIRLS", + "native": "アイドルマスターシンデレラガールズ", + "synonyms": [ + "The Idolmaster: Cinderella Girls", + "The iDOLM@STER Cinderella Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2015, + "start_date": { + "year": 2015, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 25681, + "mal_id": 25681, + "title": "Kamisama Hajimemashita◎", + "english": "Kamisama Kiss Season 2", + "native": "神様はじめました◎", + "synonyms": [ + "Kamisama Hajimemashita 2nd Season", + "Kami-sama Hajimemashita 2nd Season", + "Kamisama Kiss 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2015, + "start_date": { + "day": 6, + "month": 1, + "year": 2015 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2016-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2016-fall.json new file mode 100644 index 0000000..158c7f2 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2016-fall.json @@ -0,0 +1,5256 @@ +{ + "year": 2016, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 21123, + "mal_id": 31339, + "title": "DRIFTERS", + "english": "DRIFTERS", + "native": "DRIFTERS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21639, + "mal_id": 32686, + "title": "Keijo!!!!!!!!", + "english": "Keijo!!!!!!!!", + "native": "競女!!!!!!!!", + "synonyms": [ + "Hip Whip Girl" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21769, + "mal_id": 33161, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku: Kitto, Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru", + "english": "My Teen Romantic Comedy SNAFU TOO! OVA", + "native": "やはり俺の青春ラブコメはまちがっている。 続 「きっと、女の子はお砂糖とスパイスと素敵な何かでできている。」", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "やはり俺の青春ラブコメはまちがっている。 続 OVA ", + "Oregairu Zoku OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97815, + "mal_id": 34321, + "title": "Fate/Grand Order: First Order", + "english": "Fate/Grand Order: First Order", + "native": "Fate/Grand Order -First Order-", + "synonyms": [ + "פייט/המסדר העליון: הפקודה הראשונה", + "Судьба/Великий приказ: Первый приказ" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21714, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "FLIP FLAPPERS", + "native": "フリップフラッパーズ", + "synonyms": [ + "轻拍翻转小魔女", + "Flip Flappers: Fantazja kontra świat" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 15227, + "mal_id": 15227, + "title": "Kono Sekai no Katasumi ni", + "english": "In This Corner of the World", + "native": "この世界の片隅に", + "synonyms": [ + "To All the Corners of the World", + "En Este Rincón del Mundo", + "Dans un recoin de ce monde", + "Ở một góc nhân gian", + "W tym zakątku świata", + "In questo angolo di mondo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 97672, + "mal_id": 34103, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Hope Arc", + "native": "ダンガンロンパ3-The End of 希望ヶ峰学園-希望編", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21660, + "mal_id": 32801, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか ダンジョンに温泉を求めるのは 間違っているだろうか", + "synonyms": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA", + "ダンまち OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 97716, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "วันจันทร์คือวันดึ๋งดึ๋ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21708, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21803, + "mal_id": 33263, + "title": "Kubikiri Cycle: Aoiro Savant to Zaregotozukai", + "english": "Kubikiri Cycle: The Blue Savant and the Nonsense User", + "native": "クビキリサイクル 青色サヴァンと戯言遣い", + "synonyms": [ + "Zaregoto Series", + "Decapitation Cycle", + "Kubikiri Cycle: Aoiro Savant to Zaregoto Tsukai" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 97669, + "mal_id": 34136, + "title": "orange: Mirai", + "english": "Orange: Future", + "native": "orange -未来-", + "synonyms": [ + "オレンジ -未来-" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 101102, + "mal_id": 33513, + "title": "Ansatsu Kyoushitsu Movie: 365-Nichi no Jikan", + "english": "Assassination Classroom the Movie: 365 Days‘ Time", + "native": "劇場版 暗殺教室 365日の時間", + "synonyms": [ + "Assassination Classroom the Movie: 365 Days" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 19 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 32995, + "mal_id": 32995, + "title": "Yuri!!! on Ice", + "english": "Yuri!!! On Ice", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 32867, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 31339, + "mal_id": 31339, + "title": "Drifters", + "english": "Drifters", + "native": "DRIFTERS", + "synonyms": [ + "Drifters: Battle in a Brand-new World War" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 32899, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me!", + "native": "私がモテてどうすんだ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 32686, + "mal_id": 32686, + "title": "Keijo!!!!!!!!", + "english": "Keijo!!!!!!!!", + "native": "競女!!!!!!!!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 34240, + "mal_id": 34240, + "title": "Shelter (Music)", + "english": "Shelter", + "native": "シェルター", + "synonyms": [], + "format": "Music", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 33161, + "mal_id": 33161, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "english": "My Teen Romantic Comedy SNAFU TOO! OVA", + "native": "やはり俺の青春ラブコメはまちがっている. 続 きっと, 女の子はお砂糖とスパイスと素敵な何かでできている。", + "synonyms": [ + "Oregairu 2 OVA", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku: Kitto", + "Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 34321, + "mal_id": 34321, + "title": "Fate/Grand Order: First Order", + "english": "Fate/Grand Order -First Order-", + "native": "Fate/Grand Order -First Order-", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 15227, + "mal_id": 15227, + "title": "Kono Sekai no Katasumi ni", + "english": "In This Corner of the World", + "native": "この世界の片隅に", + "synonyms": [ + "To All the Corners of the World" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 11, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 33286, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッドⅡ", + "synonyms": [], + "format": "OVA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 11, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 32962, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [ + "Occultic9", + "Occultic Nine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 9, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 32979, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "Flip Flappers", + "native": "フリップフラッパーズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 32801, + "mal_id": 32801, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」", + "synonyms": [ + "DanMachi OVA", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 12, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 32603, + "mal_id": 32603, + "title": "Okusama ga Seitokaichou!+!", + "english": "My Wife is the Student Council President!+", + "native": "おくさまが生徒会長!+!", + "synonyms": [ + "My Wife is the Student Council President 2nd Season", + "Oku-sama ga Seito Kaichou! 2nd Season", + "Okusama ga Seitokaichou! Plus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 33003, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "MahouIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 34213, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "Tawawa on Monday" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 33094, + "mal_id": 33094, + "title": "WWW.Working!!", + "english": "WWW.WAGNARIA!!", + "native": "WWW.WORKING!!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 9, + "score": 1.1875, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 1.0789, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 1.0532, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21698, + "mal_id": 32935, + "title": "Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou", + "english": "HAIKYU!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyu!! Karasuno High vs Shiratorizawa Academy", + "Haikyuu!! 3", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32867, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21679, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス 第2シーズン", + "synonyms": [ + "Bungou Stray Dogs (2016)", + "คณะประพันธกรจรจัด ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 32603, + "mal_id": 32603, + "title": "Okusama ga Seitokaichou!+!", + "english": "My Wife is the Student Council President!+", + "native": "おくさまが生徒会長!+!", + "synonyms": [ + "My Wife is the Student Council President 2nd Season", + "Oku-sama ga Seito Kaichou! 2nd Season", + "Okusama ga Seitokaichou! Plus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 32995, + "mal_id": 32995, + "title": "Yuri!!! on Ice", + "english": "Yuri!!! On Ice", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 32962, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [ + "Occultic9", + "Occultic Nine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 9, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21709, + "mal_id": 32995, + "title": "Yuuri!!! on ICE", + "english": "Yuri!!! on ICE", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21366, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March comes in like a lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion", + "Un marzo da leoni", + "מרץ מגיע כאריה", + "أسد آذار" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 32603, + "mal_id": 32603, + "title": "Okusama ga Seitokaichou!+!", + "english": "My Wife is the Student Council President!+", + "native": "おくさまが生徒会長!+!", + "synonyms": [ + "My Wife is the Student Council President 2nd Season", + "Oku-sama ga Seito Kaichou! 2nd Season", + "Okusama ga Seitokaichou! Plus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21123, + "mal_id": 31339, + "title": "DRIFTERS", + "english": "DRIFTERS", + "native": "DRIFTERS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31339, + "mal_id": 31339, + "title": "Drifters", + "english": "Drifters", + "native": "DRIFTERS", + "synonyms": [ + "Drifters: Battle in a Brand-new World War" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21123, + "mal_id": 31339, + "title": "DRIFTERS", + "english": "DRIFTERS", + "native": "DRIFTERS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32979, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "Flip Flappers", + "native": "フリップフラッパーズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21123, + "mal_id": 31339, + "title": "DRIFTERS", + "english": "DRIFTERS", + "native": "DRIFTERS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21639, + "mal_id": 32686, + "title": "Keijo!!!!!!!!", + "english": "Keijo!!!!!!!!", + "native": "競女!!!!!!!!", + "synonyms": [ + "Hip Whip Girl" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32686, + "mal_id": 32686, + "title": "Keijo!!!!!!!!", + "english": "Keijo!!!!!!!!", + "native": "競女!!!!!!!!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21639, + "mal_id": 32686, + "title": "Keijo!!!!!!!!", + "english": "Keijo!!!!!!!!", + "native": "競女!!!!!!!!", + "synonyms": [ + "Hip Whip Girl" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32979, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "Flip Flappers", + "native": "フリップフラッパーズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32899, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me!", + "native": "私がモテてどうすんだ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 32603, + "mal_id": 32603, + "title": "Okusama ga Seitokaichou!+!", + "english": "My Wife is the Student Council President!+", + "native": "おくさまが生徒会長!+!", + "synonyms": [ + "My Wife is the Student Council President 2nd Season", + "Oku-sama ga Seito Kaichou! 2nd Season", + "Okusama ga Seitokaichou! Plus" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21686, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me", + "native": "私がモテてどうすんだ", + "synonyms": [ + "私モテ", + "WatashiMote", + "WataMote", + "Bésalo a él, no a mí", + "Aku Jadi Populer, Gimana Sih?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32867, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31339, + "mal_id": 31339, + "title": "Drifters", + "english": "Drifters", + "native": "DRIFTERS", + "synonyms": [ + "Drifters: Battle in a Brand-new World War" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32899, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me!", + "native": "私がモテてどうすんだ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21051, + "mal_id": 30016, + "title": "Nanbaka", + "english": "NANBAKA", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21460, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム 2", + "synonyms": [ + "Résonne ! Euphonium 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21769, + "mal_id": 33161, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku: Kitto, Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru", + "english": "My Teen Romantic Comedy SNAFU TOO! OVA", + "native": "やはり俺の青春ラブコメはまちがっている。 続 「きっと、女の子はお砂糖とスパイスと素敵な何かでできている。」", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "やはり俺の青春ラブコメはまちがっている。 続 OVA ", + "Oregairu Zoku OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33161, + "mal_id": 33161, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "english": "My Teen Romantic Comedy SNAFU TOO! OVA", + "native": "やはり俺の青春ラブコメはまちがっている. 続 きっと, 女の子はお砂糖とスパイスと素敵な何かでできている。", + "synonyms": [ + "Oregairu 2 OVA", + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku: Kitto", + "Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 19, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21769, + "mal_id": 33161, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku: Kitto, Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru", + "english": "My Teen Romantic Comedy SNAFU TOO! OVA", + "native": "やはり俺の青春ラブコメはまちがっている。 続 「きっと、女の子はお砂糖とスパイスと素敵な何かでできている。」", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA", + "やはり俺の青春ラブコメはまちがっている。 続 OVA ", + "Oregairu Zoku OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32801, + "mal_id": 32801, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」", + "synonyms": [ + "DanMachi OVA", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 12, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97815, + "mal_id": 34321, + "title": "Fate/Grand Order: First Order", + "english": "Fate/Grand Order: First Order", + "native": "Fate/Grand Order -First Order-", + "synonyms": [ + "פייט/המסדר העליון: הפקודה הראשונה", + "Судьба/Великий приказ: Первый приказ" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 34321, + "mal_id": 34321, + "title": "Fate/Grand Order: First Order", + "english": "Fate/Grand Order -First Order-", + "native": "Fate/Grand Order -First Order-", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21714, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "FLIP FLAPPERS", + "native": "フリップフラッパーズ", + "synonyms": [ + "轻拍翻转小魔女", + "Flip Flappers: Fantazja kontra świat" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32979, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "Flip Flappers", + "native": "フリップフラッパーズ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21714, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "FLIP FLAPPERS", + "native": "フリップフラッパーズ", + "synonyms": [ + "轻拍翻转小魔女", + "Flip Flappers: Fantazja kontra świat" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31339, + "mal_id": 31339, + "title": "Drifters", + "english": "Drifters", + "native": "DRIFTERS", + "synonyms": [ + "Drifters: Battle in a Brand-new World War" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21714, + "mal_id": 32979, + "title": "Flip Flappers", + "english": "FLIP FLAPPERS", + "native": "フリップフラッパーズ", + "synonyms": [ + "轻拍翻转小魔女", + "Flip Flappers: Fantazja kontra świat" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 15227, + "mal_id": 15227, + "title": "Kono Sekai no Katasumi ni", + "english": "In This Corner of the World", + "native": "この世界の片隅に", + "synonyms": [ + "To All the Corners of the World", + "En Este Rincón del Mundo", + "Dans un recoin de ce monde", + "Ở một góc nhân gian", + "W tym zakątku świata", + "In questo angolo di mondo" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 15227, + "mal_id": 15227, + "title": "Kono Sekai no Katasumi ni", + "english": "In This Corner of the World", + "native": "この世界の片隅に", + "synonyms": [ + "To All the Corners of the World" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 11, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21799, + "mal_id": 33253, + "title": "Ajin 2", + "english": "AJIN: Demi-Human 2", + "native": "亜人 2", + "synonyms": [ + "AJIN: Semihumano 2", + "อาจิน สายพันธุ์อมนุษย์ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97672, + "mal_id": 34103, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Hope Arc", + "native": "ダンガンロンパ3-The End of 希望ヶ峰学園-希望編", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21660, + "mal_id": 32801, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか ダンジョンに温泉を求めるのは 間違っているだろうか", + "synonyms": [ + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA", + "ダンまち OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32801, + "mal_id": 32801, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」", + "synonyms": [ + "DanMachi OVA", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou ka" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 12, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 33286, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッドⅡ", + "synonyms": [], + "format": "OVA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 11, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9116, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21815, + "mal_id": 33286, + "title": "Strike the Blood II", + "english": "Strike the Blood Second", + "native": "ストライク・ザ・ブラッド II", + "synonyms": [ + "ราชันย์โลหิตรัตติกาล ภาค 2" + ], + "format": "OVA", + "episodes": 8, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 97716, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "วันจันทร์คือวันดึ๋งดึ๋ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 34213, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "Tawawa on Monday" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 97716, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "วันจันทร์คือวันดึ๋งดึ๋ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 97716, + "mal_id": 34213, + "title": "Getsuyoubi no Tawawa", + "english": "Tawawa on Monday", + "native": "月曜日のたわわ", + "synonyms": [ + "วันจันทร์คือวันดึ๋งดึ๋ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21708, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 32962, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [ + "Occultic9", + "Occultic Nine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 9, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21708, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 32995, + "mal_id": 32995, + "title": "Yuri!!! on Ice", + "english": "Yuri!!! On Ice", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21708, + "mal_id": 32962, + "title": "Occultic;Nine", + "english": "Occultic;Nine", + "native": "Occultic;Nine -オカルティック・ナイン-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32899, + "mal_id": 32899, + "title": "Watashi ga Motete Dousunda", + "english": "Kiss Him, Not Me!", + "native": "私がモテてどうすんだ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 7, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21838, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta, die letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33253, + "mal_id": 33253, + "title": "Ajin Part 2", + "english": "Ajin: Demi-Human 2nd Season", + "native": "亜人 第2クール", + "synonyms": [ + "Ajin 2nd Season," + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 33003, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "MahouIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 30016, + "mal_id": 30016, + "title": "Nanbaka", + "english": "Nanbaka", + "native": "ナンバカ", + "synonyms": [ + "Nambaka", + "Numbaka", + "The Numbers" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 3, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.8947, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21340, + "mal_id": 33003, + "title": "Mahou Shoujo Ikusei Keikaku", + "english": "Magical Girl Raising Project", + "native": "魔法少女育成計画", + "synonyms": [ + "まほいく", + "MahoIku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33433, + "mal_id": 33433, + "title": "Shuumatsu no Izetta", + "english": "Izetta: The Last Witch", + "native": "終末のイゼッタ", + "synonyms": [ + "Izetta", + "Die Letzte Hexe" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97669, + "mal_id": 34136, + "title": "orange: Mirai", + "english": "Orange: Future", + "native": "orange -未来-", + "synonyms": [ + "オレンジ -未来-" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 32995, + "mal_id": 32995, + "title": "Yuri!!! on Ice", + "english": "Yuri!!! On Ice", + "native": "ユーリ!!! on ICE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97669, + "mal_id": 34136, + "title": "orange: Mirai", + "english": "Orange: Future", + "native": "orange -未来-", + "synonyms": [ + "オレンジ -未来-" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 33094, + "mal_id": 33094, + "title": "WWW.Working!!", + "english": "WWW.WAGNARIA!!", + "native": "WWW.WORKING!!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 1, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32983, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume Yuujinchou Season 5", + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 5, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32867, + "mal_id": 32867, + "title": "Bungou Stray Dogs 2nd Season", + "english": "Bungo Stray Dogs 2", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33051, + "mal_id": 33051, + "title": "Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season", + "english": "Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season", + "native": "機動戦士ガンダム 鉄血のオルフェンズ 第2期", + "synonyms": [ + "G-Tekketsu 2nd Season" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 2, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32935, + "mal_id": 32935, + "title": "Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou", + "english": "Haikyu!! 3rd Season", + "native": "ハイキュー!! 烏野高校 VS 白鳥沢学園高校", + "synonyms": [ + "Haikyuu!! Third Season", + "Haikyuu!! Karasuno High VS Shiratorizawa Academy" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21710, + "mal_id": 32983, + "title": "Natsume Yuujinchou Go", + "english": "Natsume's Book of Friends Season 5", + "native": "夏目友人帳 伍", + "synonyms": [ + "Natsume's Book of Friends Five" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31988, + "mal_id": 31988, + "title": "Hibike! Euphonium 2", + "english": "Sound! Euphonium 2", + "native": "響け!ユーフォニアム2", + "synonyms": [ + "Hibike! Euphonium Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 6, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101102, + "mal_id": 33513, + "title": "Ansatsu Kyoushitsu Movie: 365-Nichi no Jikan", + "english": "Assassination Classroom the Movie: 365 Days‘ Time", + "native": "劇場版 暗殺教室 365日の時間", + "synonyms": [ + "Assassination Classroom the Movie: 365 Days" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2016, + "start_date": { + "year": 2016, + "month": 11, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31646, + "mal_id": 31646, + "title": "3-gatsu no Lion", + "english": "March Comes In Like a Lion", + "native": "3月のライオン", + "synonyms": [ + "Sangatsu no Lion" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2016, + "start_date": { + "day": 8, + "month": 10, + "year": 2016 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2016-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2016-spring.json new file mode 100644 index 0000000..fc2bfc2 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2016-spring.json @@ -0,0 +1,5688 @@ +{ + "year": 2016, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 21421, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21290, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21574, + "mal_id": 32380, + "title": "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!: God's Blessings On This Wonderful Choker!", + "native": "この素晴らしい世界に祝福を! この素晴らしいチョーカーに祝福を!", + "synonyms": [ + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso: As Bençãos de Deus Nesta Maravilhosa Gargantilha!", + "Konosuba ¡Bendito sea este mundo maravilloso!: ¡Bendita sea esta gargantilla maravillosa!", + "Konosuba OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 6, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21495, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21394, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [ + "מאגי: הרפתקאותיו של סינבד" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 21362, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [ + "ฮันเดรด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 21284, + "mal_id": 31376, + "title": "Flying Witch", + "english": "Flying Witch", + "native": "ふらいんぐうぃっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21296, + "mal_id": 31245, + "title": "Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai", + "english": "I've Always Liked You", + "native": "ずっと前から好きでした。~告白実行委員会~", + "synonyms": [ + "Kokuhaku Jikkou Iinkai: Renai Series" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21637, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21567, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21586, + "mal_id": 31378, + "title": "Owari no Seraph: Kyuuketsuki Shahal", + "english": "Seraph of the End: Kyuuketsuki Shahal", + "native": "終わりのセラフ 吸血鬼シャハル", + "synonyms": [ + "Owari no Seraph: Jump Festa 2015 Special", + "Owari no Seraph: Vampire Shahar", + "Owari no Seraph OVA", + "終わりのセラフ ジャンプフェスタ2015", + "เทวทูตแห่งโลกมืด OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21691, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! Shokugeki no Soma OVA", + "native": "食戟のソーマ OVA", + "synonyms": [ + "Food Wars! Shokugeki no Soma: Takumi's Downtown Competition", + "Food Wars! Shokugeki no Soma: Erina's Summer Vacation" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 21516, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 21316, + "mal_id": 31500, + "title": "High School Fleet", + "english": "High School Fleet", + "native": "ハイスクール・フリート", + "synonyms": [ + "Haifuri" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 31478, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "Literary Stray Dogs", + "BSD" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 31933, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond Is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "Diamond is not Crash" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 28623, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 31798, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 31404, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "Net Game no Yome wa Onna no Ko ja Nai to Omotta?", + "NetoYome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 31741, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken (TV)", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 32380, + "mal_id": 32380, + "title": "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World! - God's Blessing on This Wonderful Choker!", + "native": "この素晴らしい世界に祝福を! 第11話 この素晴らしいチヨーカーに祝福を!", + "synonyms": [ + "KonoSuba OVA", + "A Blessing to this Wonderful Choker!" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 6, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 31338, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 31376, + "mal_id": 31376, + "title": "Flying Witch", + "english": "Flying Witch", + "native": "ふらいんぐうぃっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 10, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 31245, + "mal_id": 31245, + "title": "Zutto Mae kara Suki deshita. Kokuhaku Jikkou Iinkai", + "english": "I've Always Liked You", + "native": "ずっと前から好きでした。~告白実行委員会~", + "synonyms": [ + "HoneyWorks: I've Liked You Since Long Ago", + "I've liked you for a long time.: Confession Committee", + "I've had feelings for you since a long time ago.: Executive Confession Committee" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 31904, + "mal_id": 31904, + "title": "Big Order (TV)", + "english": null, + "native": "ビッグオーダー", + "synonyms": [ + "Big Order" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 32438, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 31405, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 32681, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 31680, + "mal_id": 31680, + "title": "Super Lovers", + "english": "Super Lovers", + "native": "SUPER LOVERS(スーパーラヴァーズ)", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 32245, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [ + "Black Corpse", + "Black Relic" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 31327, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! OVA", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Souma: Jump Festa 2015 Special", + "Food Wars! Shokugeki no Soma OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 5, + "year": 2016 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21459, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "BNHA", + "MHA", + "나의 히어로 아카데미아 1기", + "나히아 1기", + "אקדמיית הגיבורים שלי", + "我的英雄学院", + "มายฮีโร่ อคาเดเมีย", + "أكاديميتي للأبطال", + "Η Δική Μου Ακαδημία Ηρώων", + "Akademia bohaterów", + "Моя геройская академия", + "Hősakadémia" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31338, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31904, + "mal_id": 31904, + "title": "Big Order (TV)", + "english": null, + "native": "ビッグオーダー", + "synonyms": [ + "Big Order" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31798, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21355, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re Zero", + "Re:从零开始的异世界生活", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก", + "Re:Zero — жизнь с нуля в другом мире", + "Re:Zero Empezar de cero en un mundo diferente" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 31478, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "Literary Stray Dogs", + "BSD" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21311, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "כלבי ספרות נודדים", + "Văn hào lưu lạc", + "คณะประพันธกรจรจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32681, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31933, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond Is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "Diamond is not Crash" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 31741, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken (TV)", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9124, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21450, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "JoJo's Bizarre Adventure Part 4: Diamond is Unbreakable", + "مغامرات جوجو العجيبة: الألماس غير قابل للكسر", + "Le bizzarre avventure di JoJo: Diamond is Unbreakable", + "Невероятные приключения ДжоДжо: Diamond is Unbreakable" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21421, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31798, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21421, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28623, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21196, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 31404, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "Net Game no Yome wa Onna no Ko ja Nai to Omotta?", + "NetoYome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21595, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto, pour vous servir !", + "เทพศาสตร์ซากาโมโต้", + "Gak Pernah Dengar Nama Aku Sakamoto?", + "Soy Sakamoto, ¿por?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21290, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 31404, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "Net Game no Yome wa Onna no Ko ja Nai to Omotta?", + "NetoYome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21290, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21290, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21574, + "mal_id": 32380, + "title": "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!: God's Blessings On This Wonderful Choker!", + "native": "この素晴らしい世界に祝福を! この素晴らしいチョーカーに祝福を!", + "synonyms": [ + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso: As Bençãos de Deus Nesta Maravilhosa Gargantilha!", + "Konosuba ¡Bendito sea este mundo maravilloso!: ¡Bendita sea esta gargantilla maravillosa!", + "Konosuba OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 6, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32380, + "mal_id": 32380, + "title": "Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World! - God's Blessing on This Wonderful Choker!", + "native": "この素晴らしい世界に祝福を! 第11話 この素晴らしいチヨーカーに祝福を!", + "synonyms": [ + "KonoSuba OVA", + "A Blessing to this Wonderful Choker!" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 6, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21495, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21495, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.8881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21495, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.8836, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21495, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 31404, + "mal_id": 31404, + "title": "Netoge no Yome wa Onnanoko ja Nai to Omotta?", + "english": "And you thought there is never a girl online?", + "native": "ネトゲの嫁は女の子じゃないと思った?", + "synonyms": [ + "Net Game no Yome wa Onna no Ko ja Nai to Omotta?", + "NetoYome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 2, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 31478, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "Literary Stray Dogs", + "BSD" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 28623, + "mal_id": 28623, + "title": "Koutetsujou no Kabaneri", + "english": "Kabaneri of the Iron Fortress", + "native": "甲鉄城のカバネリ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21499, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [ + "ทวิดารา มหาองเมียวจิ" + ], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21394, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [ + "מאגי: הרפתקאותיו של סינבד" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 31741, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken (TV)", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 1.007, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21394, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [ + "מאגי: הרפתקאותיו של סינבד" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31933, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond Is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "Diamond is not Crash" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21394, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [ + "מאגי: הרפתקאותיו של סינבד" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21394, + "mal_id": 31741, + "title": "Magi: Sinbad no Bouken", + "english": "Magi: Adventure of Sinbad", + "native": "マギ シンドバッドの冒険", + "synonyms": [ + "מאגי: הרפתקאותיו של סינבד" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21390, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2", + "english": "The Asterisk War 2", + "native": "学戦都市アスタリスク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32438, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21362, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [ + "ฮันเดรด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31338, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21362, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [ + "ฮันเดรด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 23, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21362, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [ + "ฮันเดรด" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31098, + "mal_id": 31098, + "title": "Ushio to Tora (TV) 2nd Season", + "english": "Ushio & Tora (2016)", + "native": "うしおととら", + "synonyms": [ + "Ushio and Tora" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21284, + "mal_id": 31376, + "title": "Flying Witch", + "english": "Flying Witch", + "native": "ふらいんぐうぃっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31376, + "mal_id": 31376, + "title": "Flying Witch", + "english": "Flying Witch", + "native": "ふらいんぐうぃっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 10, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21284, + "mal_id": 31376, + "title": "Flying Witch", + "english": "Flying Witch", + "native": "ふらいんぐうぃっち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31933, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond Is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "Diamond is not Crash" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21296, + "mal_id": 31245, + "title": "Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai", + "english": "I've Always Liked You", + "native": "ずっと前から好きでした。~告白実行委員会~", + "synonyms": [ + "Kokuhaku Jikkou Iinkai: Renai Series" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 31245, + "mal_id": 31245, + "title": "Zutto Mae kara Suki deshita. Kokuhaku Jikkou Iinkai", + "english": "I've Always Liked You", + "native": "ずっと前から好きでした。~告白実行委員会~", + "synonyms": [ + "HoneyWorks: I've Liked You Since Long Ago", + "I've liked you for a long time.: Confession Committee", + "I've had feelings for you since a long time ago.: Executive Confession Committee" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21296, + "mal_id": 31245, + "title": "Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai", + "english": "I've Always Liked You", + "native": "ずっと前から好きでした。~告白実行委員会~", + "synonyms": [ + "Kokuhaku Jikkou Iinkai: Renai Series" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31904, + "mal_id": 31904, + "title": "Big Order (TV)", + "english": null, + "native": "ビッグオーダー", + "synonyms": [ + "Big Order" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 32245, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [ + "Black Corpse", + "Black Relic" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 31240, + "mal_id": 31240, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu", + "english": "Re:ZERO -Starting Life in Another World-", + "native": "Re:ゼロから始める異世界生活", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 4, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21445, + "mal_id": 31904, + "title": "Big Order", + "english": "Big Order", + "native": "ビッグオーダー", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21637, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32681, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21567, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32438, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 11, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21567, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21567, + "mal_id": 32438, + "title": "Mayoiga", + "english": "The Lost Village", + "native": "迷家-マヨイガ-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 31478, + "mal_id": 31478, + "title": "Bungou Stray Dogs", + "english": "Bungo Stray Dogs", + "native": "文豪ストレイドッグス", + "synonyms": [ + "Literary Stray Dogs", + "BSD" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 31405, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 32542, + "mal_id": 32542, + "title": "Sakamoto desu ga?", + "english": "Haven't You Heard? I'm Sakamoto", + "native": "坂本ですが?", + "synonyms": [ + "Sakamoto desu ga?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 8, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31680, + "mal_id": 31680, + "title": "Super Lovers", + "english": "Super Lovers", + "native": "SUPER LOVERS(スーパーラヴァーズ)", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21291, + "mal_id": 31405, + "title": "Joker Game", + "english": "Joker Game", + "native": "ジョーカー・ゲーム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31904, + "mal_id": 31904, + "title": "Big Order (TV)", + "english": null, + "native": "ビッグオーダー", + "synonyms": [ + "Big Order" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 32245, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [ + "Black Corpse", + "Black Relic" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32681, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 32093, + "mal_id": 32093, + "title": "Tanaka-kun wa Itsumo Kedaruge", + "english": "Tanaka-kun is Always Listless", + "native": "田中くんはいつもけだるげ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21360, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 その『真実』、異議あり!", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31737, + "mal_id": 31737, + "title": "Gakusen Toshi Asterisk 2nd Season", + "english": "The Asterisk War Season 2", + "native": "学戦都市アスタリスク", + "synonyms": [ + "Academy Battle City Asterisk" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 0.8901, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21586, + "mal_id": 31378, + "title": "Owari no Seraph: Kyuuketsuki Shahal", + "english": "Seraph of the End: Kyuuketsuki Shahal", + "native": "終わりのセラフ 吸血鬼シャハル", + "synonyms": [ + "Owari no Seraph: Jump Festa 2015 Special", + "Owari no Seraph: Vampire Shahar", + "Owari no Seraph OVA", + "終わりのセラフ ジャンプフェスタ2015", + "เทวทูตแห่งโลกมืด OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31327, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! OVA", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Souma: Jump Festa 2015 Special", + "Food Wars! Shokugeki no Soma OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 5, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21586, + "mal_id": 31378, + "title": "Owari no Seraph: Kyuuketsuki Shahal", + "english": "Seraph of the End: Kyuuketsuki Shahal", + "native": "終わりのセラフ 吸血鬼シャハル", + "synonyms": [ + "Owari no Seraph: Jump Festa 2015 Special", + "Owari no Seraph: Vampire Shahar", + "Owari no Seraph OVA", + "終わりのセラフ ジャンプフェスタ2015", + "เทวทูตแห่งโลกมืด OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21586, + "mal_id": 31378, + "title": "Owari no Seraph: Kyuuketsuki Shahal", + "english": "Seraph of the End: Kyuuketsuki Shahal", + "native": "終わりのセラフ 吸血鬼シャハル", + "synonyms": [ + "Owari no Seraph: Jump Festa 2015 Special", + "Owari no Seraph: Vampire Shahar", + "Owari no Seraph OVA", + "終わりのセラフ ジャンプフェスタ2015", + "เทวทูตแห่งโลกมืด OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31933, + "mal_id": 31933, + "title": "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "english": "JoJo's Bizarre Adventure: Diamond Is Unbreakable", + "native": "ジョジョの奇妙な冒険 ダイヤモンドは砕けない", + "synonyms": [ + "JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai", + "Diamond is not Crash" + ], + "format": "TV", + "episodes": 39, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21691, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! Shokugeki no Soma OVA", + "native": "食戟のソーマ OVA", + "synonyms": [ + "Food Wars! Shokugeki no Soma: Takumi's Downtown Competition", + "Food Wars! Shokugeki no Soma: Erina's Summer Vacation" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31327, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! OVA", + "native": "食戟のソーマ", + "synonyms": [ + "Shokugeki no Souma: Jump Festa 2015 Special", + "Food Wars! Shokugeki no Soma OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 5, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21691, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! Shokugeki no Soma OVA", + "native": "食戟のソーマ OVA", + "synonyms": [ + "Food Wars! Shokugeki no Soma: Takumi's Downtown Competition", + "Food Wars! Shokugeki no Soma: Erina's Summer Vacation" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 32105, + "mal_id": 32105, + "title": "Sousei no Onmyouji", + "english": "Twin Star Exorcists", + "native": "双星の陰陽師", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21691, + "mal_id": 31327, + "title": "Shokugeki no Souma OVA", + "english": "Food Wars! Shokugeki no Soma OVA", + "native": "食戟のソーマ OVA", + "synonyms": [ + "Food Wars! Shokugeki no Soma: Takumi's Downtown Competition", + "Food Wars! Shokugeki no Soma: Erina's Summer Vacation" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 5, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31964, + "mal_id": 31964, + "title": "Boku no Hero Academia", + "english": "My Hero Academia", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 3, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21516, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 32245, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [ + "Black Corpse", + "Black Relic" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 7, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21516, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 32681, + "mal_id": 32681, + "title": "Uchuu Patrol Luluco", + "english": "Space Patrol Luluco", + "native": "宇宙パトロールルル子", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 1, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21516, + "mal_id": 32245, + "title": "Kuromukuro", + "english": "Kuromukuro", + "native": "クロムクロ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31680, + "mal_id": 31680, + "title": "Super Lovers", + "english": "Super Lovers", + "native": "SUPER LOVERS(スーパーラヴァーズ)", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 6, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21316, + "mal_id": 31500, + "title": "High School Fleet", + "english": "High School Fleet", + "native": "ハイスクール・フリート", + "synonyms": [ + "Haifuri" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31338, + "mal_id": 31338, + "title": "Hundred", + "english": "Hundred", + "native": "ハンドレッド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 5, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 16, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21316, + "mal_id": 31500, + "title": "High School Fleet", + "english": "High School Fleet", + "native": "ハイスクール・フリート", + "synonyms": [ + "Haifuri" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31904, + "mal_id": 31904, + "title": "Big Order (TV)", + "english": null, + "native": "ビッグオーダー", + "synonyms": [ + "Big Order" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 16, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21316, + "mal_id": 31500, + "title": "High School Fleet", + "english": "High School Fleet", + "native": "ハイスクール・フリート", + "synonyms": [ + "Haifuri" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31798, + "mal_id": 31798, + "title": "Kiznaiver", + "english": "Kiznaiver", + "native": "キズナイーバー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 9, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21316, + "mal_id": 31500, + "title": "High School Fleet", + "english": "High School Fleet", + "native": "ハイスクール・フリート", + "synonyms": [ + "Haifuri" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2016, + "start_date": { + "year": 2016, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31630, + "mal_id": 31630, + "title": "Gyakuten Saiban: Sono \"Shinjitsu\", Igi Ari!", + "english": "Ace Attorney", + "native": "逆転裁判 ~その「真実」、異議あり!~", + "synonyms": [ + "Phoenix Wright: Ace Attorney" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2016, + "start_date": { + "day": 2, + "month": 4, + "year": 2016 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2016-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2016-summer.json new file mode 100644 index 0000000..1b3175a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2016-summer.json @@ -0,0 +1,5194 @@ +{ + "year": 2016, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21507, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "מוב פסיכו 100", + "ม็อบไซโค 100 คนพลังจิต", + "Моб Психо 100" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21804, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "חייו הרי-האסון של סאיקי ק", + "Η Καταστροφική Ζωή του Σάικι Κ", + "Ох уж этот экстрасенс Сайки Кусуо!" + ], + "format": "TV_SHORT", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21049, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "リライフ", + "Повторная жизнь" + ], + "format": "ONA", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 6, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21647, + "mal_id": 32729, + "title": "orange", + "english": "Orange", + "native": "orange", + "synonyms": [ + "オレンジ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21711, + "mal_id": 32998, + "title": "91Days", + "english": "91 Days", + "native": "91Days", + "synonyms": [ + "91デイズ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21399, + "mal_id": 31757, + "title": "Kizumonogatari II: Nekketsu-hen", + "english": "Kizumonogatari Part 2: Nekketsu", + "native": "傷物語〈Ⅱ熱血篇〉", + "synonyms": [ + "Wound Tale 2: Hot Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 21455, + "mal_id": 31953, + "title": "NEW GAME!", + "english": "NEW GAME!", + "native": "NEW GAME!", + "synonyms": [ + "Новая игра!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 21659, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21410, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [ + "สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21560, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21688, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "Mahou Tsukai no Yome: Hoshi Matsu Hito", + "The Ancient Magus Bride", + "The Ancient Magus' Bride" + ], + "format": "OVA", + "episodes": 3, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21269, + "mal_id": 31229, + "title": "SERVAMP", + "english": "SERVAMP", + "native": "SERVAMP", + "synonyms": [ + "サーヴァンプ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21031, + "mal_id": 29758, + "title": "Taboo Tattoo", + "english": null, + "native": "タブー・タトゥー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 21584, + "mal_id": 32526, + "title": "Love Live! Sunshine!!", + "english": "Love Live! Sunshine!!", + "native": "ラブライブ!サンシャイン!!", + "synonyms": [ + "Love Live! School Idol Project Sunshine!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 21335, + "mal_id": 31490, + "title": "ONE PIECE FILM: GOLD", + "english": "One Piece Film: Gold", + "native": "ONE PIECE FILM GOLD", + "synonyms": [ + "One Piece Film 13", + "航海王之黄金城" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 32281, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 28851, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 9, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 30015, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "Re LIFE" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 32729, + "mal_id": 32729, + "title": "Orange", + "english": "Orange", + "native": "orange(オレンジ)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 32998, + "mal_id": 32998, + "title": "91 Days", + "english": "91 Days", + "native": "91Days", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 9, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 31722, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 28, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 31757, + "mal_id": 31757, + "title": "Kizumonogatari II: Nekketsu-hen", + "english": "Kizumonogatari Part 2: Hot-Blooded", + "native": "傷物語〈Ⅱ熱血篇〉", + "synonyms": [ + "Koyomi Vamp", + "Kizumonogatari Part 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 31953, + "mal_id": 31953, + "title": "New Game!", + "english": "New Game!", + "native": "NEW GAME!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 32379, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 1, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 31764, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 9, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 30911, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [ + "Tales of Zestiria the X" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 10, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 32828, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 32648, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 31952, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 31845, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [ + "Masou Gakuen Hybrid x Heart" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 6, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 31229, + "mal_id": 31229, + "title": "Servamp", + "english": "Servamp", + "native": "SERVAMP(サーヴァンプ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 29758, + "mal_id": 29758, + "title": "Taboo Tattoo", + "english": "Taboo Tattoo", + "native": "タブー・タトゥー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 32902, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 9, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 31490, + "mal_id": 31490, + "title": "One Piece Film: Gold", + "english": null, + "native": "ONE PIECE FILM GOLD", + "synonyms": [ + "One Piece Movie 13" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32281, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32729, + "mal_id": 32729, + "title": "Orange", + "english": "Orange", + "native": "orange(オレンジ)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.9161, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21519, + "mal_id": 32281, + "title": "Kimi no Na wa.", + "english": "Your Name.", + "native": "君の名は。", + "synonyms": [ + "Your Name. - Gestern, heute und für immer ", + "Mi a Neved? ", + "你的名字。", + "너의 이름은.", + "Tu nombre", + "Твоё имя", + "หลับตาฝันถึงชื่อเธอ", + "Il tuo nome", + "השם שלך.", + "Twoje imię" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31953, + "mal_id": 31953, + "title": "New Game!", + "english": "New Game!", + "native": "NEW GAME!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 28851, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 9, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 20954, + "mal_id": 28851, + "title": "Koe no Katachi", + "english": "A Silent Voice", + "native": "聲の形", + "synonyms": [ + "The Shape of Voice", + "A Voz do Silêncio", + "A Forma da Voz", + "La Forma della Voce", + "צורתו של קול", + "声之形", + "الحزن الصامت", + "Una voz silenciosa", + "La Forme de la voix", + "Форма голоса", + "Форма голосу", + "Tylus balsas", + "Balss forma", + "Дауыс пішіні", + "Sakit səs", + "รักไร้เสียง" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 9, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 31952, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21507, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "מוב פסיכו 100", + "ม็อบไซโค 100 คนพลังจิต", + "Моб Психо 100" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21804, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "חייו הרי-האסון של סאיקי ק", + "Η Καταστροφική Ζωή του Σάικι Κ", + "Ох уж этот экстрасенс Сайки Кусуо!" + ], + "format": "TV_SHORT", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 12, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21518, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "食戟之灵 贰之皿", + "ยอดนักปรุงโซมะ ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 31952, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21049, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "リライフ", + "Повторная жизнь" + ], + "format": "ONA", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 6, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30015, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "Re LIFE" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21647, + "mal_id": 32729, + "title": "orange", + "english": "Orange", + "native": "orange", + "synonyms": [ + "オレンジ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32729, + "mal_id": 32729, + "title": "Orange", + "english": "Orange", + "native": "orange(オレンジ)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21711, + "mal_id": 32998, + "title": "91Days", + "english": "91 Days", + "native": "91Days", + "synonyms": [ + "91デイズ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 32998, + "mal_id": 32998, + "title": "91 Days", + "english": "91 Days", + "native": "91Days", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 9, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21711, + "mal_id": 32998, + "title": "91Days", + "english": "91 Days", + "native": "91Days", + "synonyms": [ + "91デイズ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31722, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 28, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 12, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21385, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of A Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [ + "The Seven Deadly Sins: Signs of Holy War", + "The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs", + "ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์", + "The Seven Deadly Sins: Ślady Świętej Wojny", + "Семь смертных грехов: Знамение священной войны" + ], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 31845, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [ + "Masou Gakuen Hybrid x Heart" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 6, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21399, + "mal_id": 31757, + "title": "Kizumonogatari II: Nekketsu-hen", + "english": "Kizumonogatari Part 2: Nekketsu", + "native": "傷物語〈Ⅱ熱血篇〉", + "synonyms": [ + "Wound Tale 2: Hot Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 31757, + "mal_id": 31757, + "title": "Kizumonogatari II: Nekketsu-hen", + "english": "Kizumonogatari Part 2: Hot-Blooded", + "native": "傷物語〈Ⅱ熱血篇〉", + "synonyms": [ + "Koyomi Vamp", + "Kizumonogatari Part 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21455, + "mal_id": 31953, + "title": "NEW GAME!", + "english": "NEW GAME!", + "native": "NEW GAME!", + "synonyms": [ + "Новая игра!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31953, + "mal_id": 31953, + "title": "New Game!", + "english": "New Game!", + "native": "NEW GAME!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21455, + "mal_id": 31953, + "title": "NEW GAME!", + "english": "NEW GAME!", + "native": "NEW GAME!", + "synonyms": [ + "Новая игра!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31229, + "mal_id": 31229, + "title": "Servamp", + "english": "Servamp", + "native": "SERVAMP(サーヴァンプ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21455, + "mal_id": 31953, + "title": "NEW GAME!", + "english": "NEW GAME!", + "native": "NEW GAME!", + "synonyms": [ + "Новая игра!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30015, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "Re LIFE" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 1.4091, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21509, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Future Arc", + "native": "ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32648, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21825, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope’s Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31722, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 28, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21659, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 32828, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21659, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21659, + "mal_id": 32828, + "title": "Amaama to Inazuma", + "english": "Sweetness & Lightning", + "native": "甘々と稲妻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 31952, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 31845, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [ + "Masou Gakuen Hybrid x Heart" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 6, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21457, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 32648, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 31845, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [ + "Masou Gakuen Hybrid x Heart" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 6, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33028, + "mal_id": 33028, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Despair Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Despair Volume" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 14, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 32189, + "mal_id": 32189, + "title": "Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen", + "english": "Danganronpa 3: The End of Hope's Peak High School - Future Arc", + "native": "ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編", + "synonyms": [ + "Danganronpa 3: The End of Hope's Peak Academy - Future Volume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21626, + "mal_id": 32648, + "title": "Handa-kun", + "english": "Handa-kun", + "native": "はんだくん", + "synonyms": [ + "ฮันดะคุง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21410, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [ + "สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31764, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 9, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21410, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [ + "สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 30911, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [ + "Tales of Zestiria the X" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 10, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 0.9359, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21410, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [ + "สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31722, + "mal_id": 31722, + "title": "Nanatsu no Taizai: Seisen no Shirushi", + "english": "The Seven Deadly Sins: Signs of Holy War", + "native": "七つの大罪 聖戦の予兆", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 28, + "month": 8, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 3, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21410, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [ + "สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21560, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 32379, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 1, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21560, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31229, + "mal_id": 31229, + "title": "Servamp", + "english": "Servamp", + "native": "SERVAMP(サーヴァンプ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 30911, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [ + "Tales of Zestiria the X" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 10, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 31764, + "mal_id": 31764, + "title": "Nejimaki Seirei Senki: Tenkyou no Alderamin", + "english": "Alderamin on the Sky", + "native": "ねじ巻き精霊戦記 天鏡のアルデラミン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 9, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.8944, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21221, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21688, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "Mahou Tsukai no Yome: Hoshi Matsu Hito", + "The Ancient Magus Bride", + "The Ancient Magus' Bride" + ], + "format": "OVA", + "episodes": 3, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 32902, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 9, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 4, + "score": 0.8857, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21688, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "Mahou Tsukai no Yome: Hoshi Matsu Hito", + "The Ancient Magus Bride", + "The Ancient Magus' Bride" + ], + "format": "OVA", + "episodes": 3, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21688, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "Mahou Tsukai no Yome: Hoshi Matsu Hito", + "The Ancient Magus Bride", + "The Ancient Magus' Bride" + ], + "format": "OVA", + "episodes": 3, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33255, + "mal_id": 33255, + "title": "Saiki Kusuo no Ψ-nan", + "english": "The Disastrous Life of Saiki K.", + "native": "斉木楠雄のΨ難", + "synonyms": [ + "Saiki Kusuo no Psi Nan", + "Saiki Kusuo no Sainan" + ], + "format": "TV", + "episodes": 120, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21688, + "mal_id": 32902, + "title": "Mahoutsukai no Yome: Hoshi Matsu Hito", + "english": "The Ancient Magus' Bride: Those Awaiting a Star", + "native": "魔法使いの嫁 星待つひと", + "synonyms": [ + "Mahou Tsukai no Yome: Hoshi Matsu Hito", + "The Ancient Magus Bride", + "The Ancient Magus' Bride" + ], + "format": "OVA", + "episodes": 3, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 8, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 31845, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [ + "Masou Gakuen Hybrid x Heart" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 6, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 30911, + "mal_id": 30911, + "title": "Tales of Zestiria the Cross", + "english": "Tales of Zestiria the X", + "native": "テイルズ オブ ゼスティリア ザ クロス", + "synonyms": [ + "Tales of Zestiria the X" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 10, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33421, + "mal_id": 33421, + "title": "Yi Ren Zhi Xia", + "english": "The Outcast Season 1", + "native": "一人之下 THE OUTCAST", + "synonyms": [ + "Hitori no Shita - The Outcast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21378, + "mal_id": 31845, + "title": "Masou Gakuen HxH", + "english": "Hybrid x Heart Magias Academy Ataraxia", + "native": "魔装学園H×H", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 31952, + "mal_id": 31952, + "title": "Kono Bijutsu-bu ni wa Mondai ga Aru!", + "english": "This Art Club Has a Problem!", + "native": "この美術部には問題がある!", + "synonyms": [ + "Konobi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 8, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21269, + "mal_id": 31229, + "title": "SERVAMP", + "english": "SERVAMP", + "native": "SERVAMP", + "synonyms": [ + "サーヴァンプ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31229, + "mal_id": 31229, + "title": "Servamp", + "english": "Servamp", + "native": "SERVAMP(サーヴァンプ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21269, + "mal_id": 31229, + "title": "SERVAMP", + "english": "SERVAMP", + "native": "SERVAMP", + "synonyms": [ + "サーヴァンプ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 32379, + "mal_id": 32379, + "title": "Berserk", + "english": "Berserk (2016)", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 1, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21269, + "mal_id": 31229, + "title": "SERVAMP", + "english": "SERVAMP", + "native": "SERVAMP", + "synonyms": [ + "サーヴァンプ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 31953, + "mal_id": 31953, + "title": "New Game!", + "english": "New Game!", + "native": "NEW GAME!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 4, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21031, + "mal_id": 29758, + "title": "Taboo Tattoo", + "english": null, + "native": "タブー・タトゥー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 29758, + "mal_id": 29758, + "title": "Taboo Tattoo", + "english": "Taboo Tattoo", + "native": "タブー・タトゥー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 5, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21584, + "mal_id": 32526, + "title": "Love Live! Sunshine!!", + "english": "Love Live! Sunshine!!", + "native": "ラブライブ!サンシャイン!!", + "synonyms": [ + "Love Live! School Idol Project Sunshine!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 30015, + "mal_id": 30015, + "title": "ReLIFE", + "english": "ReLIFE", + "native": "ReLIFE", + "synonyms": [ + "Re LIFE" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21584, + "mal_id": 32526, + "title": "Love Live! Sunshine!!", + "english": "Love Live! Sunshine!!", + "native": "ラブライブ!サンシャイン!!", + "synonyms": [ + "Love Live! School Idol Project Sunshine!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32282, + "mal_id": 32282, + "title": "Shokugeki no Souma: Ni no Sara", + "english": "Food Wars! The Second Plate", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma 2nd Season", + "Shokugeki no Soma 2", + "Food Wars: Shokugeki no Soma 2", + "Shokugeki no Soma: The Second Plate" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 2, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21584, + "mal_id": 32526, + "title": "Love Live! Sunshine!!", + "english": "Love Live! Sunshine!!", + "native": "ラブライブ!サンシャイン!!", + "synonyms": [ + "Love Live! School Idol Project Sunshine!!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32182, + "mal_id": 32182, + "title": "Mob Psycho 100", + "english": "Mob Psycho 100", + "native": "モブサイコ100", + "synonyms": [ + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2016, + "start_date": { + "day": 11, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21335, + "mal_id": 31490, + "title": "ONE PIECE FILM: GOLD", + "english": "One Piece Film: Gold", + "native": "ONE PIECE FILM GOLD", + "synonyms": [ + "One Piece Film 13", + "航海王之黄金城" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 31490, + "mal_id": 31490, + "title": "One Piece Film: Gold", + "english": null, + "native": "ONE PIECE FILM GOLD", + "synonyms": [ + "One Piece Movie 13" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 7, + "year": 2016 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2016-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2016-winter.json new file mode 100644 index 0000000..8eb9c0d --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2016-winter.json @@ -0,0 +1,5620 @@ +{ + "year": 2016, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Tekketsu", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Wound Tale 1: Iron Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21364, + "mal_id": 31637, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "Gate 2", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21520, + "mal_id": 32268, + "title": "Koyomimonogatari", + "english": "Koyomimonogatari", + "native": "暦物語", + "synonyms": [ + "Calendar Tale" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21096, + "mal_id": 30346, + "title": "Doukyuusei", + "english": "Doukyuusei -Classmates-", + "native": "同級生", + "synonyms": [ + "Classmates" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 2, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21416, + "mal_id": 31772, + "title": "One Punch Man OVA", + "english": "One-Punch Man OVA", + "native": "ワンパンマン OVA", + "synonyms": [], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2015, + "month": 12, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21256, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "ディメンション ダブリュー", + "synonyms": [ + "มิติปริศนา", + "Измерение W" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21339, + "mal_id": 31553, + "title": "Charlotte: Tsuyoimono-tachi", + "english": "Charlotte: Strong People", + "native": "Charlotte 強い者たち", + "synonyms": [ + "Charlotte(シャーロット)TV未放送エピソード特別篇", + "Charlotte TV mi Housou Episode Tokubetsu-hen", + "Charlotte Special" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21292, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Niji-iro Days", + "Beztroskie dni", + "รักสุดใจคนวัยซ่า" + ], + "format": "TV_SHORT", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 21472, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21565, + "mal_id": 32485, + "title": "Prison School: Mad Wax", + "english": null, + "native": "監獄学園[プリズンスクール] マッドワックス", + "synonyms": [ + "Kangoku Gakuen: Mad Wax", + "Kangoku Gakuen OVA", + "Prison School OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21330, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21577, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat -Everything Flows-", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 21380, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 31043, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "Erased", + "native": "僕だけがいない街", + "synonyms": [ + "The Town Where Only I am Missing", + "BokuMachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 30831, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Give Blessings to This Wonderful World!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 14, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 30654, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 31442, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [ + "Musaigen no Phantom World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Iron-Blooded", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Koyomi Vamp" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 31636, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": "Dagashi Kashi", + "native": "だがしかし", + "synonyms": [ + "Dagashikashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 30749, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "Saijaku Muhai no Bahamut" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 28735, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Showa and Genroku Era Lover's Suicide Through Rakugo" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 31163, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "Dimension W", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 30346, + "mal_id": 30346, + "title": "Doukyuusei", + "english": "Doukyusei: Classmates", + "native": "同級生", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 2, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 32268, + "mal_id": 32268, + "title": "Koyomimonogatari", + "english": "Koyomimonogatari", + "native": "暦物語", + "synonyms": [ + "Calendar Story" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 31414, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Nijiiro Days" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 31553, + "mal_id": 31553, + "title": "Charlotte: Tsuyoimono-tachi", + "english": "Charlotte: The Strong Ones", + "native": "Charlotte(シャーロット)特別篇 強い者たち", + "synonyms": [ + "Charlotte Special", + "Strong People" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 32013, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [ + "Oshiete! Gyaruko-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 31559, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [ + "PuriSuto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 5, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 31710, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [ + "ディバゲ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 32485, + "mal_id": 32485, + "title": "Prison School: Mad Wax", + "english": null, + "native": "監獄学園[プリズンスクール] マッドワックス", + "synonyms": [ + "Prison School OVA", + "Kangoku Gakuen OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 28391, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "Aokana: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "Aokana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 32491, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat: Everything Flows", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 4, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31043, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "Erased", + "native": "僕だけがいない街", + "synonyms": [ + "The Town Where Only I am Missing", + "BokuMachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31636, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": "Dagashi Kashi", + "native": "だがしかし", + "synonyms": [ + "Dagashikashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21234, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "ERASED", + "native": "僕だけがいない街", + "synonyms": [ + "Bokumachi", + "Desaparecido", + "Miasto beze mnie", + "รีไววัล ย้อนอดีตไขปริศนา", + "ย้อนอดีตไขปริศนา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31163, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "Dimension W", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 30831, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Give Blessings to This Wonderful World!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 14, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 28391, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "Aokana: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "Aokana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.9051, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9043, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21202, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Konosuba", + "Kono Subarashii Sekai ni Syukufuku wo!", + "Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso", + "为美好的世界献上祝福!", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี!", + "Konosuba : Sois béni monde merveilleux !", + "Да благословят боги сей расчудесный мир!", + "Konosuba: Un mundo maravilloso!", + " Konosuba: ¡Bendito sea este maravilloso mundo!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30654, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21170, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "فصل الاغتيال 2", + "Klasa skrytobójców 2", + "Assassination Classroom Season 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 28735, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Showa and Genroku Era Lover's Suicide Through Rakugo" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30654, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 32491, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat: Everything Flows", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 4, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21428, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar of Fantasy and Ash", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgar", + " Ashes and Illusions", + "ขี้เถ้าในกริมการ์แดนมายา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Tekketsu", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Wound Tale 1: Iron Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Iron-Blooded", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Koyomi Vamp" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Tekketsu", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Wound Tale 1: Iron Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9106, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 9260, + "mal_id": 9260, + "title": "Kizumonogatari I: Tekketsu-hen", + "english": "Kizumonogatari Part 1: Tekketsu", + "native": "傷物語〈Ⅰ鉄血篇〉", + "synonyms": [ + "Wound Tale 1: Iron Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31442, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [ + "Musaigen no Phantom World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 30831, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Give Blessings to This Wonderful World!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 14, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 30749, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "Saijaku Muhai no Bahamut" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21306, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21364, + "mal_id": 31637, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "Gate 2", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21364, + "mal_id": 31637, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "Gate 2", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31710, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [ + "ディバゲ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21364, + "mal_id": 31637, + "title": "GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "Gate 2", + "native": "GATE 自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31414, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Nijiiro Days" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 30749, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "Saijaku Muhai no Bahamut" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 28391, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "Aokana: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "Aokana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21341, + "mal_id": 31580, + "title": "Ajin", + "english": "AJIN: Demi-Human", + "native": "亜人", + "synonyms": [ + "AJIN: Semihumano", + "อาจิน สายพันธุ์อมนุษย์", + "أجين: أنصاف البشر" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 32013, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [ + "Oshiete! Gyaruko-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31636, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": "Dagashi Kashi", + "native": "だがしかし", + "synonyms": [ + "Dagashikashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30654, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21365, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": null, + "native": "だがしかし", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 30831, + "mal_id": 30831, + "title": "Kono Subarashii Sekai ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World!", + "native": "この素晴らしい世界に祝福を!", + "synonyms": [ + "Give Blessings to This Wonderful World!" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 14, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 30749, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "Saijaku Muhai no Bahamut" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 32013, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [ + "Oshiete! Gyaruko-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31442, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [ + "Musaigen no Phantom World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21188, + "mal_id": 30749, + "title": "Saijaku Muhai no Bahamut", + "english": "Undefeated Bahamut Chronicle", + "native": "最弱無敗の神装機竜《バハムート》", + "synonyms": [ + "บาฮามุท มังกรเหล็กไร้พ่าย" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 2, + "score": 1.0538, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 30654, + "mal_id": 30654, + "title": "Ansatsu Kyoushitsu 2nd Season", + "english": "Assassination Classroom Second Season", + "native": "暗殺教室 第2期", + "synonyms": [ + "Ansatsu Kyoushitsu Season 2", + "Ansatsu Kyoushitsu Final Season" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21258, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair Season 2", + "native": "赤髪の白雪姫 2ndシーズン", + "synonyms": [ + "สโนว์ไวท์ผมแดง ภาค 2", + "Die rothaarige Schneeprinzessin 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21520, + "mal_id": 32268, + "title": "Koyomimonogatari", + "english": "Koyomimonogatari", + "native": "暦物語", + "synonyms": [ + "Calendar Tale" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 32268, + "mal_id": 32268, + "title": "Koyomimonogatari", + "english": "Koyomimonogatari", + "native": "暦物語", + "synonyms": [ + "Calendar Story" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21096, + "mal_id": 30346, + "title": "Doukyuusei", + "english": "Doukyuusei -Classmates-", + "native": "同級生", + "synonyms": [ + "Classmates" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 2, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30346, + "mal_id": 30346, + "title": "Doukyuusei", + "english": "Doukyusei: Classmates", + "native": "同級生", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 2, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 28735, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Showa and Genroku Era Lover's Suicide Through Rakugo" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 20972, + "mal_id": 28735, + "title": "Shouwa Genroku Rakugo Shinjuu", + "english": "Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中", + "synonyms": [ + "Descending Stories: Showa Genroku Rakugo Shinju", + "Le Rakugo ou la vie" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31043, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "Erased", + "native": "僕だけがいない街", + "synonyms": [ + "The Town Where Only I am Missing", + "BokuMachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 27833, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! x2 Ketsu", + "native": "デュラララ!!×2 結", + "synonyms": [ + "Durarara!!x2 Ketsu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31636, + "mal_id": 31636, + "title": "Dagashi Kashi", + "english": "Dagashi Kashi", + "native": "だがしかし", + "synonyms": [ + "Dagashikashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 20880, + "mal_id": 27833, + "title": "Durarara!!x2 Ketsu", + "english": "Durarara!! X2 The Third Arc", + "native": "デュラララ!!×2 結", + "synonyms": [ + "DRRR!! 2 Ketsu", + "דורארארה!!2x סיום" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 31173, + "mal_id": 31173, + "title": "Akagami no Shirayuki-hime 2nd Season", + "english": "Snow White with the Red Hair 2", + "native": "赤髪の白雪姫", + "synonyms": [ + "Akagami no Shirayukihime 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21416, + "mal_id": 31772, + "title": "One Punch Man OVA", + "english": "One-Punch Man OVA", + "native": "ワンパンマン OVA", + "synonyms": [], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2015, + "month": 12, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21256, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "ディメンション ダブリュー", + "synonyms": [ + "มิติปริศนา", + "Измерение W" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31163, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "Dimension W", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21256, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "ディメンション ダブリュー", + "synonyms": [ + "มิติปริศนา", + "Измерение W" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21256, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "ディメンション ダブリュー", + "synonyms": [ + "มิติปริศนา", + "Измерение W" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31442, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [ + "Musaigen no Phantom World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21256, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "ディメンション ダブリュー", + "synonyms": [ + "มิติปริศนา", + "Измерение W" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31710, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [ + "ディバゲ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21339, + "mal_id": 31553, + "title": "Charlotte: Tsuyoimono-tachi", + "english": "Charlotte: Strong People", + "native": "Charlotte 強い者たち", + "synonyms": [ + "Charlotte(シャーロット)TV未放送エピソード特別篇", + "Charlotte TV mi Housou Episode Tokubetsu-hen", + "Charlotte Special" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 31553, + "mal_id": 31553, + "title": "Charlotte: Tsuyoimono-tachi", + "english": "Charlotte: The Strong Ones", + "native": "Charlotte(シャーロット)特別篇 強い者たち", + "synonyms": [ + "Charlotte Special", + "Strong People" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21292, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Niji-iro Days", + "Beztroskie dni", + "รักสุดใจคนวัยซ่า" + ], + "format": "TV_SHORT", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31414, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Nijiiro Days" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21292, + "mal_id": 31414, + "title": "Nijiiro Days", + "english": "Rainbow Days", + "native": "虹色デイズ", + "synonyms": [ + "Niji-iro Days", + "Beztroskie dni", + "รักสุดใจคนวัยซ่า" + ], + "format": "TV_SHORT", + "episodes": 24, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31043, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "Erased", + "native": "僕だけがいない街", + "synonyms": [ + "The Town Where Only I am Missing", + "BokuMachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 21472, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 32013, + "mal_id": 32013, + "title": "Oshiete! Galko-chan", + "english": "Please tell me! Galko-chan", + "native": "おしえて! ギャル子ちゃん", + "synonyms": [ + "Oshiete! Gyaruko-chan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21565, + "mal_id": 32485, + "title": "Prison School: Mad Wax", + "english": null, + "native": "監獄学園[プリズンスクール] マッドワックス", + "synonyms": [ + "Kangoku Gakuen: Mad Wax", + "Kangoku Gakuen OVA", + "Prison School OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 32485, + "mal_id": 32485, + "title": "Prison School: Mad Wax", + "english": null, + "native": "監獄学園[プリズンスクール] マッドワックス", + "synonyms": [ + "Prison School OVA", + "Kangoku Gakuen OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9116, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21565, + "mal_id": 32485, + "title": "Prison School: Mad Wax", + "english": null, + "native": "監獄学園[プリズンスクール] マッドワックス", + "synonyms": [ + "Kangoku Gakuen: Mad Wax", + "Kangoku Gakuen OVA", + "Prison School OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21330, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 31559, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [ + "PuriSuto" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 5, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21330, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21330, + "mal_id": 31559, + "title": "Prince of Stride: Alternative", + "english": "Prince of Stride: Alternative", + "native": "プリンス・オブ・ストライド オルタナティブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21577, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat -Everything Flows-", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 32491, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat: Everything Flows", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 4, + "month": 3, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21577, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat -Everything Flows-", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 28391, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "Aokana: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "Aokana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21577, + "mal_id": 32491, + "title": "Kanojo to Kanojo no Neko: Everything Flows", + "english": "She and Her Cat -Everything Flows-", + "native": "彼女と彼女の猫 -Everything Flows-", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 4, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 31859, + "mal_id": 31859, + "title": "Hai to Gensou no Grimgar", + "english": "Grimgar: Ashes and Illusions", + "native": "灰と幻想のグリムガル", + "synonyms": [ + "Grimgal of Ashes and Fantasies", + "Hai to Gensou no Grimgal" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 11, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21380, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 31710, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [ + "ディバゲ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21380, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31637, + "mal_id": 31637, + "title": "Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2", + "english": "GATE Part 2", + "native": "GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール", + "synonyms": [ + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri 2nd Season", + "Gate: Thus the JSDF Fought There! Fire Dragon Arc", + "Gate: Jieitai Kanochi nite", + "Kaku Tatakaeri - Enryuu-hen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 9, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21380, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 31163, + "mal_id": 31163, + "title": "Dimension W", + "english": "Dimension W", + "native": "Dimension W", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 10, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 21380, + "mal_id": 31710, + "title": "Divine Gate", + "english": "Divine Gate", + "native": "ディバインゲート", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 28391, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "Aokana: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "Aokana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 12, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 31442, + "mal_id": 31442, + "title": "Musaigen no Phantom World", + "english": "Myriad Colors Phantom World", + "native": "無彩限のファントム・ワールド", + "synonyms": [ + "Musaigen no Phantom World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 31914, + "mal_id": 31914, + "title": "Shoujo-tachi wa Kouya wo Mezasu", + "english": "Girls Beyond the Wasteland", + "native": "少女たちは荒野を目指す", + "synonyms": [ + "The girls who aim for the wildlands", + "Girls beyond the youth KOYA", + "Shokomeza" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 7, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 31580, + "mal_id": 31580, + "title": "Ajin", + "english": "Ajin: Demi-Human", + "native": "亜人", + "synonyms": [ + "Ajin" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 16, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 21319, + "mal_id": 28391, + "title": "Ao no Kanata no Four Rhythm", + "english": "AOKANA: Four Rhythm Across the Blue", + "native": "蒼の彼方のフォーリズム", + "synonyms": [ + "AoKana" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "year": 2016, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 31043, + "mal_id": 31043, + "title": "Boku dake ga Inai Machi", + "english": "Erased", + "native": "僕だけがいない街", + "synonyms": [ + "The Town Where Only I am Missing", + "BokuMachi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2016, + "start_date": { + "day": 8, + "month": 1, + "year": 2016 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2017-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2017-fall.json new file mode 100644 index 0000000..3af8135 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2017-fall.json @@ -0,0 +1,6847 @@ +{ + "year": 2017, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 97940, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [ + "תלתן שחור", + "แบล็กโคลเวอร์", + "Чёрный клевер" + ], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 97994, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [ + "調教咖啡廳" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 20791, + "mal_id": 25537, + "title": "Fate/stay night [Heaven's Feel] I. presage flower", + "english": "Fate/stay night [Heaven's Feel] I. presage flower", + "native": "Fate/stay night[Heaven's Feel] Ⅰ.presage flower", + "synonyms": [ + "Fate/HF", + "Судьба/Ночь схватки: Прикосновение небес" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 98820, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [ + "ジャストビコーズ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 98657, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [ + "Osake wa Fuufu ni Nattekara", + "Alcohol is for married couples", + "Osakefufu" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 34572, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 34542, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "Inuyashiki: Last Hero", + "native": "いぬやしき", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 13, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 34618, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 25537, + "mal_id": 25537, + "title": "Fate/stay night Movie: Heaven's Feel - I. Presage Flower", + "english": "Fate/stay night: Heaven's Feel - I. Presage Flower", + "native": "劇場版「Fate/stay night [Heaven's Feel] Ⅰ.presage flower」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 34451, + "mal_id": 34451, + "title": "Kekkai Sensen & Beyond", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 35413, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need", + "native": "妹さえいればいい。", + "synonyms": [ + "It'd be Good if Only Little Sister Was Here" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 35639, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 36106, + "mal_id": 36106, + "title": "Shingeki no Kyojin: Lost Girls", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 12, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 35076, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "Juni Taisen: Zodiac War", + "native": "十二大戦", + "synonyms": [ + "12 Taisen", + "12 Wars" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 35712, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎるしょびっちな件", + "synonyms": [ + "My Girlfriend is a Faithful Virgin Bitch", + "Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 12, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 36220, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 25, + "month": 11, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 35484, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 33478, + "mal_id": 33478, + "title": "UQ Holder! Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ HOLDER! ~魔法先生ネギま!2~", + "synonyms": [ + "Yuukyuu Holder", + "Eternal Holder" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 35079, + "mal_id": 35079, + "title": "Kino no Tabi: The Beautiful World - The Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 35241, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "Konohana Kitan", + "native": "このはな綺譚", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 97940, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [ + "תלתן שחור", + "แบล็กโคลเวอร์", + "Чёрный клевер" + ], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 34572, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 19, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 97940, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [ + "תלתן שחור", + "แบล็กโคลเวอร์", + "Чёрный клевер" + ], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 97940, + "mal_id": 34572, + "title": "Black Clover", + "english": "Black Clover", + "native": "ブラッククローバー", + "synonyms": [ + "תלתן שחור", + "แบล็กโคลเวอร์", + "Чёрный клевер" + ], + "format": "TV", + "episodes": 170, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 1.0789, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98436, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "Mahou Tsukai no Yome", + "Mahoyome", + "Невеста чародея" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 1.0424, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 1.0246, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99255, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "食戟之灵 餐之皿", + "ยอดนักปรุงโซมะ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 97994, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [ + "調教咖啡廳" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 34618, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 97994, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [ + "調教咖啡廳" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 35712, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎるしょびっちな件", + "synonyms": [ + "My Girlfriend is a Faithful Virgin Bitch", + "Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 12, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 97994, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [ + "調教咖啡廳" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34542, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "Inuyashiki: Last Hero", + "native": "いぬやしき", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 13, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 23, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 21, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 33478, + "mal_id": 33478, + "title": "UQ Holder! Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ HOLDER! ~魔法先生ネギま!2~", + "synonyms": [ + "Yuukyuu Holder", + "Eternal Holder" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 97922, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "INUYASHIKI LAST HERO", + "native": "いぬやしき", + "synonyms": [ + "اینو یاشیکی", + "อินุยาชิกิ", + "犬屋敷", + "犬舍" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98707, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "L'Ère des Cristaux", + "Das Land der Juwelen", + "Страна самоцветов", + "Vương Quốc Bảo Thạch", + "ดินแดนอัญมณี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 20791, + "mal_id": 25537, + "title": "Fate/stay night [Heaven's Feel] I. presage flower", + "english": "Fate/stay night [Heaven's Feel] I. presage flower", + "native": "Fate/stay night[Heaven's Feel] Ⅰ.presage flower", + "synonyms": [ + "Fate/HF", + "Судьба/Ночь схватки: Прикосновение небес" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 25537, + "mal_id": 25537, + "title": "Fate/stay night Movie: Heaven's Feel - I. Presage Flower", + "english": "Fate/stay night: Heaven's Feel - I. Presage Flower", + "native": "劇場版「Fate/stay night [Heaven's Feel] Ⅰ.presage flower」", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99726, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Neto-juu no Susume", + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life", + "Recommendation of The Internet Enhancement", + "Netoju" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34542, + "mal_id": 34542, + "title": "Inuyashiki", + "english": "Inuyashiki: Last Hero", + "native": "いぬやしき", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 13, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99420, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "少女终末旅行 ", + "GLT", + "Wisata Gadis di Akhir Hayat" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 16, + "score": 1.0818, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 19, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98478, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March comes in like a lion Season 2", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion 2", + "מרץ מגיע כאריה 2" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34451, + "mal_id": 34451, + "title": "Kekkai Sensen & Beyond", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 35413, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need", + "native": "妹さえいればいい。", + "synonyms": [ + "It'd be Good if Only Little Sister Was Here" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97886, + "mal_id": 34451, + "title": "Kekkai Sensen & BEYOND", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 35413, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need", + "native": "妹さえいればいい。", + "synonyms": [ + "It'd be Good if Only Little Sister Was Here" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 1.0352, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34451, + "mal_id": 34451, + "title": "Kekkai Sensen & Beyond", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98596, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need.", + "native": "妹さえいればいい。", + "synonyms": [ + "Imoto sae Ireba Ii.", + "A Sister's All You Need", + "It'd be Good if Only Little Sister Was Here", + "Imosae", + "Imoutosae", + "Imotosae", + "如果有妹妹就好了。", + "คงจะดี ถ้ามีน้องสาวสักคน" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 36106, + "mal_id": 36106, + "title": "Shingeki no Kyojin: Lost Girls", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 12, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9424, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 34618, + "mal_id": 34618, + "title": "Blend S", + "english": "BLEND-S", + "native": "ブレンド・S", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.8783, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99634, + "mal_id": 36106, + "title": "Shingeki no Kyojin: LOST GIRLS", + "english": "Attack on Titan: Lost Girls", + "native": "進撃の巨人 LOST GIRLS", + "synonyms": [ + "Episode 16.5A: Wall Sina. Goodbye", + "Episode 16.5B: Wall Sina. Goodbye", + "SnK", + "AoT", + "ผ่าพิภพไททัน OAD", + "ผ่าพิภพไททัน ภาค OAD Lost Girls", + "Атака титанов: Потерянные девушки" + ], + "format": "OVA", + "episodes": 3, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 12, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98820, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [ + "ジャストビコーズ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 35639, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98820, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [ + "ジャストビコーズ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35076, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "Juni Taisen: Zodiac War", + "native": "十二大戦", + "synonyms": [ + "12 Taisen", + "12 Wars" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98820, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [ + "ジャストビコーズ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98820, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [ + "ジャストビコーズ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35076, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "Juni Taisen: Zodiac War", + "native": "十二大戦", + "synonyms": [ + "12 Taisen", + "12 Wars" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98443, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "JUNI TAISEN:ZODIAC WAR", + "native": "十二大戦", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 35639, + "mal_id": 35639, + "title": "Just Because!", + "english": "Just Because!", + "native": "Just Because!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 35712, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎるしょびっちな件", + "synonyms": [ + "My Girlfriend is a Faithful Virgin Bitch", + "Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 12, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36038, + "mal_id": 36038, + "title": "Net-juu no Susume", + "english": "Recovery of an MMO Junkie", + "native": "ネト充のススメ", + "synonyms": [ + "Netojuu no Susume", + "Recommendation of the Wonderful Virtual Life" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 10, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98951, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎる処女ビッチな件", + "synonyms": [ + "My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously", + "My girlfriend is faithful virgin bitch", + "This girlfriend is too much to handle!" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 1.0246, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9928, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36220, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 25, + "month": 11, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98449, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "KujiSuna", + "Die Walkinder", + "Hijos de las Ballenas", + "أبناء الحيتان", + "ลำนำของเหล่าลูกปลาวาฬ", + "Kujira no Kora - Filhos das Baleias" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 33478, + "mal_id": 33478, + "title": "UQ Holder! Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ HOLDER! ~魔法先生ネギま!2~", + "synonyms": [ + "Yuukyuu Holder", + "Eternal Holder" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 35413, + "mal_id": 35413, + "title": "Imouto sae Ireba Ii.", + "english": "A Sister's All You Need", + "native": "妹さえいればいい。", + "synonyms": [ + "It'd be Good if Only Little Sister Was Here" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 10, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98572, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": "Himouto! Umaru-chan R", + "native": "干物妹! うまるちゃん R", + "synonyms": [ + "Himouto! Umaru-chan Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36220, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 25, + "month": 11, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.911, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 35484, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98977, + "mal_id": 36220, + "title": "Itsudatte Bokura no Koi wa 10 cm Datta.", + "english": "Our love has always been 10 centimeters apart.", + "native": "いつだって僕らの恋は10センチだった。", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 35712, + "mal_id": 35712, + "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken", + "english": "My Girlfriend is Shobitch", + "native": "僕の彼女がマジメ過ぎるしょびっちな件", + "synonyms": [ + "My Girlfriend is a Faithful Virgin Bitch", + "Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 12, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 35838, + "mal_id": 35838, + "title": "Shoujo Shuumatsu Ryokou", + "english": "Girls' Last Tour", + "native": "少女終末旅行", + "synonyms": [ + "The End Girl Trip" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 99698, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "国王游戏" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 35241, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "Konohana Kitan", + "native": "このはな綺譚", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98657, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [ + "Osake wa Fuufu ni Nattekara", + "Alcohol is for married couples", + "Osakefufu" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 35484, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.9517, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98657, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [ + "Osake wa Fuufu ni Nattekara", + "Alcohol is for married couples", + "Osakefufu" + ], + "format": "TV_SHORT", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 33478, + "mal_id": 33478, + "title": "UQ Holder! Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ HOLDER! ~魔法先生ネギま!2~", + "synonyms": [ + "Yuukyuu Holder", + "Eternal Holder" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34451, + "mal_id": 34451, + "title": "Kekkai Sensen & Beyond", + "english": "Blood Blockade Battlefront & Beyond", + "native": "血界戦線 & BEYOND", + "synonyms": [ + "Bloodline Battlefront & Beyond" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 9, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21855, + "mal_id": 33478, + "title": "UQ Holder!: Mahou Sensei Negima! 2", + "english": "UQ Holder!", + "native": "UQ Holder! ~魔法先生ネギま!2~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35180, + "mal_id": 35180, + "title": "3-gatsu no Lion 2nd Season", + "english": "March Comes In Like a Lion 2nd Season", + "native": "3月のライオン 第2シリーズ", + "synonyms": [ + "Sangatsu no Lion Second Season" + ], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 14, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 35079, + "mal_id": 35079, + "title": "Kino no Tabi: The Beautiful World - The Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 6, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9935, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98448, + "mal_id": 35079, + "title": "Kino no Tabi -the Beautiful World- the Animated Series", + "english": "Kino's Journey -the Beautiful World- the Animated Series", + "native": "キノの旅 -the Beautiful World- the Animated Series", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 35843, + "mal_id": 35843, + "title": "Gintama. Porori-hen", + "english": "Gintama. Slip Arc", + "native": "銀魂。ポロリ編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 2, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35062, + "mal_id": 35062, + "title": "Mahoutsukai no Yome", + "english": "The Ancient Magus' Bride", + "native": "魔法使いの嫁", + "synonyms": [ + "The Magician's Bride", + "Mahoyome" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35788, + "mal_id": 35788, + "title": "Shokugeki no Souma: San no Sara", + "english": "Food Wars! The Third Plate", + "native": "食戟のソーマ 餐ノ皿", + "synonyms": [ + "Shokugeki no Soma 3rd Season", + "Shokugeki no Soma 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35076, + "mal_id": 35076, + "title": "Juuni Taisen", + "english": "Juni Taisen: Zodiac War", + "native": "十二大戦", + "synonyms": [ + "12 Taisen", + "12 Wars" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 3, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99714, + "mal_id": 35843, + "title": "Gintama.: Porori-hen", + "english": "Gintama.: Slip Arc", + "native": "銀魂. ポロリ編", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35376, + "mal_id": 35376, + "title": "Himouto! Umaru-chan R", + "english": null, + "native": "干物妹!うまるちゃんR", + "synonyms": [ + "Himouto! Umaru-chan 2nd Season", + "My Two-Faced Little Sister R" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 35241, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "Konohana Kitan", + "native": "このはな綺譚", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34712, + "mal_id": 34712, + "title": "Kujira no Kora wa Sajou ni Utau", + "english": "Children of the Whales", + "native": "クジラの子らは砂上に歌う", + "synonyms": [ + "Whale Calves Sing on the Sand", + "Tales of the Wales Calves" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 8, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36027, + "mal_id": 36027, + "title": "Ousama Game The Animation", + "english": "King's Game", + "native": "王様ゲーム The Animation", + "synonyms": [ + "Ou-sama Game" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 5, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 35557, + "mal_id": 35557, + "title": "Houseki no Kuni", + "english": "Land of the Lustrous", + "native": "宝石の国", + "synonyms": [ + "Country of Jewels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 7, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98506, + "mal_id": 35241, + "title": "Konohana Kitan", + "english": "KONOHANA KITAN", + "native": "このはな綺譚", + "synonyms": [ + "此花绮谭", + "此花亭奇谭", + "fox spirit tales" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2017, + "start_date": { + "year": 2017, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 35484, + "mal_id": 35484, + "title": "Osake wa Fuufu ni Natte kara", + "english": "Love is Like a Cocktail", + "native": "お酒は夫婦になってから", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2017, + "start_date": { + "day": 4, + "month": 10, + "year": 2017 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2017-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2017-spring.json new file mode 100644 index 0000000..63ed8a4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2017-spring.json @@ -0,0 +1,5512 @@ +{ + "year": 2017, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 97938, + "mal_id": 34566, + "title": "BORUTO: NARUTO NEXT GENERATIONS", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", + "synonyms": [ + "博人传 火影忍者新时代", + "โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น", + "بوروتو: الأجيال القادمة من ناروتو" + ], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21851, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 21676, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria", + "Danmachi Sword Oratoria", + "¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21377, + "mal_id": 31658, + "title": "Kuroko no Basket: Last Game", + "english": "Kuroko's Basketball: Last Game", + "native": "劇場版 黒子のバスケ Last Game", + "synonyms": [ + "Kuroko no Basket: EXTRA GAME", + "Το Μπάσκετ του Κουρόκο: Το Τελευταίο Παιχνίδι" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 3, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 87486, + "mal_id": 33929, + "title": "Boku no Hero Academia: Sukue! Kyuujo Kunren!", + "english": null, + "native": "僕のヒーローアカデミア救え!救助訓練!", + "synonyms": [ + "Boku no Hero Academia: Jump Festa 2016 Special", + "My Hero Academia: Rescue! Rescue Training", + "My Hero Academia: Save! Rescue Training" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 97625, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 98702, + "mal_id": 34480, + "title": "Shokugeki no Souma: Ni no Sara OVA", + "english": "Food Wars! The Second Plate OVA", + "native": "食戟のソーマ 弍ノ皿 OVA", + "synonyms": [ + "Food Wars! The Second Plate: A Fateful Encounter Under the Autumn Moon", + "Food Wars! The Second Plate: The Totsuki Elite Ten", + "ยอดนักปรุงโซมะ ภาค 2 OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 5, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 21684, + "mal_id": 32900, + "title": "Mahouka Koukou no Rettousei: Hoshi wo Yobu Shoujo", + "english": "The Irregular at Magic High School The Movie: The Girl Who Summons the Stars", + "native": "劇場版 魔法科高校の劣等生 星を呼ぶ少女", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท เดอะมูฟวี่", + "Непутёвый ученик в школе магии: Взывающая к звёздам" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 6, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 97917, + "mal_id": 34537, + "title": "Yoru wa Mijikashi Arukeyo Otome", + "english": "The Night is Short, Walk on Girl", + "native": "夜は短し歩けよ乙女", + "synonyms": [ + "春宵苦短,少女前进吧!" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 97903, + "mal_id": 34494, + "title": "Sakura Quest", + "english": "Sakura Quest", + "native": "サクラクエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21361, + "mal_id": 31629, + "title": "GRANBLUE FANTASY The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21191, + "mal_id": 30778, + "title": "FAIRY TAIL: DRAGON CRY", + "english": "Fairy Tail: Dragon Cry", + "native": "劇場版 FAIRY TAIL -DRAGON CRY-", + "synonyms": [ + "Fairy Tail Movie 2: Dragon Cry", + "Fairy Tail the Movie: Dragon Cry" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 5, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 97643, + "mal_id": 34055, + "title": "Berserk 2", + "english": "Berserk 2", + "native": "ベルセルク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 34566, + "mal_id": 34566, + "title": "Boruto: Naruto Next Generations", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO -NARUTO NEXT GENERATIONS-", + "synonyms": [], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 32901, + "mal_id": 32901, + "title": "Eromanga-sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 9, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 34561, + "mal_id": 34561, + "title": "Re:Creators", + "english": "Re:CREATORS", + "native": "Re:CREATORS 〈レクリエイターズ〉", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 32887, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Danmachi Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 33475, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 30727, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend .flat", + "native": "冴えない彼女〈ヒロイン〉の育てかた♭", + "synonyms": [ + "Saenai Heroine no Sodatekata Flat" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 14, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 32262, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 33926, + "mal_id": 33926, + "title": "Quanzhi Gaoshou", + "english": "The King's Avatar", + "native": "全职高手", + "synonyms": [ + "Quan Zhi Gao Shou", + "Full-Time Expert", + "Expert of All Classes", + "マスターオブスキル" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 34019, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 2, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 31629, + "mal_id": 31629, + "title": "Granblue Fantasy The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 2, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 35459, + "mal_id": 35459, + "title": "Boku no Hero Academia: Training of the Dead", + "english": "My Hero Academia: Training of the Dead", + "native": "僕のヒーローアカデミア トレーニング・オブ・ザ・デッド", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 6, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 30778, + "mal_id": 30778, + "title": "Fairy Tail Movie 2: Dragon Cry", + "english": "Fairy Tail the Movie 2: Dragon Cry", + "native": "劇場版 FAIRY TAIL 『DRAGON CRY』", + "synonyms": [ + "Gekijouban Fairy Tail: Dragon Cry" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 5, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 34591, + "mal_id": 34591, + "title": "Natsume Yuujinchou Roku", + "english": "Natsume's Book of Friends Season 6", + "native": "夏目友人帳 陸", + "synonyms": [ + "Natsume Yuujinchou Season 6", + "Natsume's Book of Friends Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 12, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 32900, + "mal_id": 32900, + "title": "Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo", + "english": "The Irregular at Magic High School The Movie - The Girl Who Summons The Stars", + "native": "劇場版 魔法科高校の劣等生 星を呼ぶ少女", + "synonyms": [ + "Gekijouban Mahouka Koukou no Rettousei" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 33929, + "mal_id": 33929, + "title": "Boku no Hero Academia: Sukue! Kyuujo Kunren!", + "english": "My Hero Academia: Rescue! Rescue Training", + "native": "僕のヒーローアカデミア救え!救助訓練!", + "synonyms": [ + "Boku no Hero Academia Jump Festa 2016 Special" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 34480, + "mal_id": 34480, + "title": "Shokugeki no Souma: Ni no Sara OVA", + "english": "Food Wars! The Second Plate OVA", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma: Ni no Sara - Jump Festa 2016 Special", + "Shokugeki no Soma: Ni no Sara OVA", + "Shokugeki no Souma 2nd Season OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 5, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 1.0862, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34591, + "mal_id": 34591, + "title": "Natsume Yuujinchou Roku", + "english": "Natsume's Book of Friends Season 6", + "native": "夏目友人帳 陸", + "synonyms": [ + "Natsume Yuujinchou Season 6", + "Natsume's Book of Friends Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 12, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 20958, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [ + "SnK 2", + "AoT 2", + "+מתקפת הטיטאנים עונה 2", + "L'Attacco dei Giganti 2", + "L'Attacco dei Giganti - Seconda Stagione", + "ผ่าพิภพไททัน ภาค 2", + "حمله به تایتان فصل 2", + "Атака титанов 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 1.0366, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34591, + "mal_id": 34591, + "title": "Natsume Yuujinchou Roku", + "english": "Natsume's Book of Friends Season 6", + "native": "夏目友人帳 陸", + "synonyms": [ + "Natsume Yuujinchou Season 6", + "Natsume's Book of Friends Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 12, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21856, + "mal_id": 33486, + "title": "Boku no Hero Academia 2", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア2", + "synonyms": [ + "BNHA 2", + "MHA 2", + "나의 히어로 아카데미아 2기", + "나히아 2기", + "我的英雄学院 2", + "我的英雄学院第二季", + "มายฮีโร่ อคาเดเมีย ภาค 2", + "أكاديميتي للأبطال2", + "Моя геройская академия 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32901, + "mal_id": 32901, + "title": "Eromanga-sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 9, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97938, + "mal_id": 34566, + "title": "BORUTO: NARUTO NEXT GENERATIONS", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", + "synonyms": [ + "博人传 火影忍者新时代", + "โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น", + "بوروتو: الأجيال القادمة من ناروتو" + ], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34566, + "mal_id": 34566, + "title": "Boruto: Naruto Next Generations", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO -NARUTO NEXT GENERATIONS-", + "synonyms": [], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97938, + "mal_id": 34566, + "title": "BORUTO: NARUTO NEXT GENERATIONS", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", + "synonyms": [ + "博人传 火影忍者新时代", + "โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น", + "بوروتو: الأجيال القادمة من ناروتو" + ], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97938, + "mal_id": 34566, + "title": "BORUTO: NARUTO NEXT GENERATIONS", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO-ボルト- NARUTO NEXT GENERATIONS", + "synonyms": [ + "博人传 火影忍者新时代", + "โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น", + "بوروتو: الأجيال القادمة من ناروتو" + ], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 32887, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Danmachi Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 32262, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21700, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典(アカシックレコード)", + "synonyms": [ + "RokuAka", + "อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ", + "不正經的魔術講師與禁忌教典" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32901, + "mal_id": 32901, + "title": "Eromanga-sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 9, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 24, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21685, + "mal_id": 32901, + "title": "Eromanga Sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [ + "Ero Manga Sensei", + "情色漫画老师", + "น้องสาวของผมคืออาจารย์เอโรมังงะ", + "埃罗芒阿老师" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 10, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 30727, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend .flat", + "native": "冴えない彼女〈ヒロイン〉の育てかた♭", + "synonyms": [ + "Saenai Heroine no Sodatekata Flat" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 14, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98202, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "as the moon, so beautiful." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 34561, + "mal_id": 34561, + "title": "Re:Creators", + "english": "Re:CREATORS", + "native": "Re:CREATORS 〈レクリエイターズ〉", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 32262, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33475, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 97980, + "mal_id": 34561, + "title": "Re:CREATORS", + "english": "Re:CREATORS", + "native": "Re:CREATORS", + "synonyms": [ + "レクリエイターズ", + "Re:CRIADORES" + ], + "format": "TV", + "episodes": 22, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 32887, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Danmachi Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.9267, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 32887, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Danmachi Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21860, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか? 忙しいですか? 救ってもらっていいですか?", + "synonyms": [ + "Do you have what THE END? Are you busy? Shall you save xxx?", + "Sukasuka", + "末日时在做什么?有没有空?可以来拯救吗?", + "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku?", + "เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม", + "Конец человечества. Что ты будешь делать после того, как людей не стало?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 30727, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend .flat", + "native": "冴えない彼女〈ヒロイン〉の育てかた♭", + "synonyms": [ + "Saenai Heroine no Sodatekata Flat" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 14, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 24, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21180, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend ♭", + "native": "冴えない彼女の育てかた ♭", + "synonyms": [ + "Saekano 2", + "Saekano ♭", + "Saekano Flat", + "Saenai Heroine no Sodatekata 2", + "Saenai Heroine no Sodatekata Flat", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2", + "Saekano: How to Raise a Boring Girlfriend Flat", + "Saekano Cómo criar a una novia aburrida" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21851, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33475, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21851, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21851, + "mal_id": 33475, + "title": "Busou Shoujo Machiavellianism", + "english": "Armed Girl's Machiavellism", + "native": "武装少女マキャヴェリズム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21676, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria", + "Danmachi Sword Oratoria", + "¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 32887, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Danmachi Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21676, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria", + "Danmachi Sword Oratoria", + "¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21676, + "mal_id": 32887, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria", + "english": "Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア", + "synonyms": [ + "Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria", + "Danmachi Sword Oratoria", + "¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 32262, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 21517, + "mal_id": 32262, + "title": "Renai Boukun", + "english": "Love Tyrant", + "native": "恋愛暴君", + "synonyms": [ + "The very lovely tyrant of love♥" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21377, + "mal_id": 31658, + "title": "Kuroko no Basket: Last Game", + "english": "Kuroko's Basketball: Last Game", + "native": "劇場版 黒子のバスケ Last Game", + "synonyms": [ + "Kuroko no Basket: EXTRA GAME", + "Το Μπάσκετ του Κουρόκο: Το Τελευταίο Παιχνίδι" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 3, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9474, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34566, + "mal_id": 34566, + "title": "Boruto: Naruto Next Generations", + "english": "Boruto: Naruto Next Generations", + "native": "BORUTO -NARUTO NEXT GENERATIONS-", + "synonyms": [], + "format": "TV", + "episodes": 293, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 5, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 10, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97682, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [ + "ปฐมมนตรา ตำราพลิกโลก", + "Grymuar Zero", + "El mágico libro de Zero", + "从零开始的魔法书", + "제로부터 시작하는 마법의 서" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 30727, + "mal_id": 30727, + "title": "Saenai Heroine no Sodatekata ♭", + "english": "Saekano: How to Raise a Boring Girlfriend .flat", + "native": "冴えない彼女〈ヒロイン〉の育てかた♭", + "synonyms": [ + "Saenai Heroine no Sodatekata Flat" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 14, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 87486, + "mal_id": 33929, + "title": "Boku no Hero Academia: Sukue! Kyuujo Kunren!", + "english": null, + "native": "僕のヒーローアカデミア救え!救助訓練!", + "synonyms": [ + "Boku no Hero Academia: Jump Festa 2016 Special", + "My Hero Academia: Rescue! Rescue Training", + "My Hero Academia: Save! Rescue Training" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33929, + "mal_id": 33929, + "title": "Boku no Hero Academia: Sukue! Kyuujo Kunren!", + "english": "My Hero Academia: Rescue! Rescue Training", + "native": "僕のヒーローアカデミア救え!救助訓練!", + "synonyms": [ + "Boku no Hero Academia Jump Festa 2016 Special" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 1.1123, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 87486, + "mal_id": 33929, + "title": "Boku no Hero Academia: Sukue! Kyuujo Kunren!", + "english": null, + "native": "僕のヒーローアカデミア救え!救助訓練!", + "synonyms": [ + "Boku no Hero Academia: Jump Festa 2016 Special", + "My Hero Academia: Rescue! Rescue Training", + "My Hero Academia: Save! Rescue Training" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 97625, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34019, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 2, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 97625, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 97625, + "mal_id": 34019, + "title": "Tsugumomo", + "english": "Tsugumomo", + "native": "つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34591, + "mal_id": 34591, + "title": "Natsume Yuujinchou Roku", + "english": "Natsume's Book of Friends Season 6", + "native": "夏目友人帳 陸", + "synonyms": [ + "Natsume Yuujinchou Season 6", + "Natsume's Book of Friends Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 12, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98702, + "mal_id": 34480, + "title": "Shokugeki no Souma: Ni no Sara OVA", + "english": "Food Wars! The Second Plate OVA", + "native": "食戟のソーマ 弍ノ皿 OVA", + "synonyms": [ + "Food Wars! The Second Plate: A Fateful Encounter Under the Autumn Moon", + "Food Wars! The Second Plate: The Totsuki Elite Ten", + "ยอดนักปรุงโซมะ ภาค 2 OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 5, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34480, + "mal_id": 34480, + "title": "Shokugeki no Souma: Ni no Sara OVA", + "english": "Food Wars! The Second Plate OVA", + "native": "食戟のソーマ 弍ノ皿", + "synonyms": [ + "Shokugeki no Souma: Ni no Sara - Jump Festa 2016 Special", + "Shokugeki no Soma: Ni no Sara OVA", + "Shokugeki no Souma 2nd Season OVA" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 5, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 30736, + "mal_id": 30736, + "title": "Shingeki no Bahamut: Virgin Soul", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 8, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 1.0862, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 3, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 32951, + "mal_id": 32951, + "title": "Rokudenashi Majutsu Koushi to Akashic Records", + "english": "Akashic Records of Bastard Magic Instructor", + "native": "ロクでなし魔術講師と禁忌教典", + "synonyms": [ + "RokuAka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 4, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21184, + "mal_id": 30736, + "title": "Shingeki no Bahamut: VIRGIN SOUL", + "english": "Rage of Bahamut: Virgin Soul", + "native": "神撃のバハムート VIRGIN SOUL", + "synonyms": [ + "BahaSoul" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34176, + "mal_id": 34176, + "title": "Zero kara Hajimeru Mahou no Sho", + "english": "Grimoire of Zero", + "native": "ゼロから始める魔法の書", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 10, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 21684, + "mal_id": 32900, + "title": "Mahouka Koukou no Rettousei: Hoshi wo Yobu Shoujo", + "english": "The Irregular at Magic High School The Movie: The Girl Who Summons the Stars", + "native": "劇場版 魔法科高校の劣等生 星を呼ぶ少女", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท เดอะมูฟวี่", + "Непутёвый ученик в школе магии: Взывающая к звёздам" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 6, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 32900, + "mal_id": 32900, + "title": "Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo", + "english": "The Irregular at Magic High School The Movie - The Girl Who Summons The Stars", + "native": "劇場版 魔法科高校の劣等生 星を呼ぶ少女", + "synonyms": [ + "Gekijouban Mahouka Koukou no Rettousei" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 97903, + "mal_id": 34494, + "title": "Sakura Quest", + "english": "Sakura Quest", + "native": "サクラクエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 97903, + "mal_id": 34494, + "title": "Sakura Quest", + "english": "Sakura Quest", + "native": "サクラクエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33502, + "mal_id": 33502, + "title": "Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka?", + "english": "WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?", + "native": "終末なにしてますか?忙しいですか?救ってもらっていいですか?", + "synonyms": [ + "SukaSuka", + "What are you doing at the end? Are you busy? Can you save me?" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 11, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 97903, + "mal_id": 34494, + "title": "Sakura Quest", + "english": "Sakura Quest", + "native": "サクラクエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 32901, + "mal_id": 32901, + "title": "Eromanga-sensei", + "english": "Eromanga Sensei", + "native": "エロマンガ先生", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 9, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21361, + "mal_id": 31629, + "title": "GRANBLUE FANTASY The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 31629, + "mal_id": 31629, + "title": "Granblue Fantasy The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 2, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21361, + "mal_id": 31629, + "title": "GRANBLUE FANTASY The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21361, + "mal_id": 31629, + "title": "GRANBLUE FANTASY The Animation", + "english": "Granblue Fantasy: The Animation", + "native": "GRANBLUE FANTASY The Animation", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21191, + "mal_id": 30778, + "title": "FAIRY TAIL: DRAGON CRY", + "english": "Fairy Tail: Dragon Cry", + "native": "劇場版 FAIRY TAIL -DRAGON CRY-", + "synonyms": [ + "Fairy Tail Movie 2: Dragon Cry", + "Fairy Tail the Movie: Dragon Cry" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 5, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 30778, + "mal_id": 30778, + "title": "Fairy Tail Movie 2: Dragon Cry", + "english": "Fairy Tail the Movie 2: Dragon Cry", + "native": "劇場版 FAIRY TAIL 『DRAGON CRY』", + "synonyms": [ + "Gekijouban Fairy Tail: Dragon Cry" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 5, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21191, + "mal_id": 30778, + "title": "FAIRY TAIL: DRAGON CRY", + "english": "Fairy Tail: Dragon Cry", + "native": "劇場版 FAIRY TAIL -DRAGON CRY-", + "synonyms": [ + "Fairy Tail Movie 2: Dragon Cry", + "Fairy Tail the Movie: Dragon Cry" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 5, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34822, + "mal_id": 34822, + "title": "Tsuki ga Kirei", + "english": "Tsukigakirei", + "native": "月がきれい", + "synonyms": [ + "The Moon is Beautiful", + "As the Moon", + "So Beautiful" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33834, + "mal_id": 33834, + "title": "Sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 15, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33486, + "mal_id": 33486, + "title": "Boku no Hero Academia 2nd Season", + "english": "My Hero Academia Season 2", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34591, + "mal_id": 34591, + "title": "Natsume Yuujinchou Roku", + "english": "Natsume's Book of Friends Season 6", + "native": "夏目友人帳 陸", + "synonyms": [ + "Natsume Yuujinchou Season 6", + "Natsume's Book of Friends Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 12, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 20705, + "mal_id": 33834, + "title": "sin: Nanatsu no Taizai", + "english": "Seven Mortal Sins", + "native": "sin 七つの大罪", + "synonyms": [ + "Sin: The 7 Deadly Sins" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 97643, + "mal_id": 34055, + "title": "Berserk 2", + "english": "Berserk 2", + "native": "ベルセルク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34055, + "mal_id": 34055, + "title": "Berserk 2nd Season", + "english": "Berserk: Season II", + "native": "ベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 7, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 97643, + "mal_id": 34055, + "title": "Berserk 2", + "english": "Berserk 2", + "native": "ベルセルク 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "year": 2017, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 25777, + "mal_id": 25777, + "title": "Shingeki no Kyojin Season 2", + "english": "Attack on Titan Season 2", + "native": "進撃の巨人 Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2017, + "start_date": { + "day": 1, + "month": 4, + "year": 2017 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2017-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2017-summer.json new file mode 100644 index 0000000..872bd27 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2017-summer.json @@ -0,0 +1,5497 @@ +{ + "year": 2017, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21875, + "mal_id": 33674, + "title": "No Game No Life Zero", + "english": "No Game, No Life Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NO GAME NO LIFE Movie", + "游戏人生 零", + "โนเกม โนไลฟ์ เดอะมูฟวี่", + "โนเกม โนไลฟ์ ซีโร่", + "NGNL Zero", + "ノゲノラ ゼロ", + "nogenora 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 98291, + "mal_id": 34902, + "title": "Tsurezure Children", + "english": "Tsuredure Children", + "native": "徒然チルドレン", + "synonyms": [ + "Tsure x dure children", + "Признания" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 98035, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": "Fate/Apocrypha", + "native": "Fate/Apocrypha", + "synonyms": [ + "פייט/אפוקריפה", + "Судьба/Апокриф" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 98251, + "mal_id": 34881, + "title": "Aho-Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 97996, + "mal_id": 34626, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world! 2: God's Blessings on These Wonderful Works of Art!", + "native": "この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を!", + "synonyms": [ + "Konosuba 2 OVA", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!: As Bençãos de Deus Nestas Obras de Arte Maravilhosas!", + "Konosuba ¡Bendito sea este mundo maravilloso!: ¡Benditas sean estas maravillosas obras de arte!" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 98580, + "mal_id": 35363, + "title": "Kobayashi-san Chi no Maidragon: Valentine, Soshite Onsen! (Amari Kitai Shinaide Kudasai)", + "english": "Miss Kobayashi's Dragon Maid: Valentines and Hot Springs! (Please Don't Get Your Hopes Up)", + "native": "小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid Episode 14", + "Kobayashi-san Chi no Maid Dragon Episode 14 " + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 98292, + "mal_id": 34914, + "title": "NEW GAME!!", + "english": "NEW GAME!!", + "native": "NEW GAME!!", + "synonyms": [ + "Новая игра!!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 97908, + "mal_id": 34498, + "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "english": "Fireworks", + "native": "打ち上げ花火、下から見るか?横から見るか?", + "synonyms": [ + " Should We See It from the Side or the Bottom?", + "升起的烟花,从下面看?还是从侧面看?" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 98505, + "mal_id": 35240, + "title": "Princess Principal", + "english": "Princess Principal", + "native": "プリンセス・プリンシパル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 21778, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Rohan Kishibe", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Thus Spoke Kishibe Rohan", + "Assim Falava Kishibe Rohan", + "Así habló Kishibe Rohan", + "على لسان كيشيبي روهان", + "Αυτά Είπε ο Ρόχαν Κίσιμπε" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21791, + "mal_id": 33071, + "title": "Bungou Stray Dogs: Hitori Ayumu", + "english": "Bungo Stray Dogs 2: Walking Alone", + "native": "文豪ストレイドッグス 『独り歩む』;", + "synonyms": [ + "Bungou Stray Dogs 2 OVA", + "Bungou Stray Dogs 2: Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 87494, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 97833, + "mal_id": 34383, + "title": "Netsuzou Trap: NTR", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [ + "Netsuzou TRap", + "กลรักกับดักลวง NTR" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 34933, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui: Compulsive Gambler", + "Gambling School" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 1, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 34599, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 7, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 33674, + "mal_id": 33674, + "title": "No Game No Life: Zero", + "english": "No Game, No Life: Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NGNL Zero", + "NGNL the Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 34902, + "mal_id": 34902, + "title": "Tsurezure Children", + "english": "Tsuredure Children", + "native": "徒然チルドレン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 34280, + "mal_id": 34280, + "title": "Gamers!", + "english": "Gamers!", + "native": "ゲーマーズ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 13, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 35203, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 34881, + "mal_id": 34881, + "title": "Aho Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl", + "Dummy Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 34662, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": null, + "native": "Fate/Apocrypha", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 35247, + "mal_id": 35247, + "title": "Owarimonogatari 2nd Season", + "english": "Owarimonogatari Second Season", + "native": "終物語", + "synonyms": [ + "End Story 2nd Season" + ], + "format": "TV Special", + "episodes": 7, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 34626, + "mal_id": 34626, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2 - God's Blessing on This Wonderful Art!", + "native": "この素晴らしい世界に祝福を!2 この素晴らしい芸術に祝福を!", + "synonyms": [ + "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", + "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 34104, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 35363, + "mal_id": 35363, + "title": "Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai", + "english": "Miss Kobayashi's Dragon Maid: Valentine's, and Then Hot Springs! (Please Don't Get Your Hopes Up)", + "native": "小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon Episode 14" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 34498, + "mal_id": 34498, + "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "english": "Fireworks", + "native": "打ち上げ花火、下から見るか?横から見るか?", + "synonyms": [ + "Fireworks", + "Should We See It from the Side or the Bottom?" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 35240, + "mal_id": 35240, + "title": "Princess Principal", + "english": "Princess Principal", + "native": "プリンセス・プリンシパル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 33071, + "mal_id": 33071, + "title": "Bungou Stray Dogs: Hitori Ayumu", + "english": "Bungo Stray Dogs 2 - Walking Alone", + "native": "文豪ストレイドッグス『独り歩む』", + "synonyms": [ + "Bungou Stray Dogs OVA", + "Bungou Stray Dogs 2nd Season Episode 13", + "Bungou Stray Dogs Episode 25" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 34383, + "mal_id": 34383, + "title": "Netsuzou TRap", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 5, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 33191, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Kishibe Rohan", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Rohan Kishibe Does Not Move" + ], + "format": "OVA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2017 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 34933, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui: Compulsive Gambler", + "Gambling School" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 1, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34881, + "mal_id": 34881, + "title": "Aho Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl", + "Dummy Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 98314, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui - Compulsive Gambler", + "Kakegurui: Das Leben ist ein Spiel", + "Gambling School", + "โคตรเซียนโรงเรียนพนัน ", + "Безумный Азарт" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34280, + "mal_id": 34280, + "title": "Gamers!", + "english": "Gamers!", + "native": "ゲーマーズ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 13, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 98659, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Youjitsu", + "You-Zitsu", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน", + "Cote", + "歡迎來到實力至上主義的教室", + "Добро пожаловать в класс для особо одарённых", + "فصل النخبة" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 34599, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 7, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97986, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [ + "صنع في الهاوية", + "Созданный в Бездне", + "ผ่าเหวนรก", + "นักบุกเบิกหลุมยักษ์", + "Đến từ Abyss" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 34662, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": null, + "native": "Fate/Apocrypha", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21875, + "mal_id": 33674, + "title": "No Game No Life Zero", + "english": "No Game, No Life Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NO GAME NO LIFE Movie", + "游戏人生 零", + "โนเกม โนไลฟ์ เดอะมูฟวี่", + "โนเกม โนไลฟ์ ซีโร่", + "NGNL Zero", + "ノゲノラ ゼロ", + "nogenora 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33674, + "mal_id": 33674, + "title": "No Game No Life: Zero", + "english": "No Game, No Life: Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NGNL Zero", + "NGNL the Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21875, + "mal_id": 33674, + "title": "No Game No Life Zero", + "english": "No Game, No Life Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NO GAME NO LIFE Movie", + "游戏人生 零", + "โนเกม โนไลฟ์ เดอะมูฟวี่", + "โนเกม โนไลฟ์ ซีโร่", + "NGNL Zero", + "ノゲノラ ゼロ", + "nogenora 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21875, + "mal_id": 33674, + "title": "No Game No Life Zero", + "english": "No Game, No Life Zero", + "native": "ノーゲーム・ノーライフ ゼロ", + "synonyms": [ + "NO GAME NO LIFE Movie", + "游戏人生 零", + "โนเกม โนไลฟ์ เดอะมูฟวี่", + "โนเกม โนไลฟ์ ซีโร่", + "NGNL Zero", + "ノゲノラ ゼロ", + "nogenora 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98291, + "mal_id": 34902, + "title": "Tsurezure Children", + "english": "Tsuredure Children", + "native": "徒然チルドレン", + "synonyms": [ + "Tsure x dure children", + "Признания" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 34902, + "mal_id": 34902, + "title": "Tsurezure Children", + "english": "Tsuredure Children", + "native": "徒然チルドレン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34280, + "mal_id": 34280, + "title": "Gamers!", + "english": "Gamers!", + "native": "ゲーマーズ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 13, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.8836, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35203, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 97766, + "mal_id": 34280, + "title": "Gamers!", + "english": "GAMERS!", + "native": "ゲーマーズ!", + "synonyms": [ + "Gamers! Amano Keita to Seishun Continue", + "Gamers! Keita Amano and youth continue" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 34933, + "mal_id": 34933, + "title": "Kakegurui", + "english": "Kakegurui", + "native": "賭ケグルイ", + "synonyms": [ + "Kakegurui: Compulsive Gambler", + "Gambling School" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 1, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35203, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34383, + "mal_id": 34383, + "title": "Netsuzou TRap", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 5, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.8824, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 98491, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "IseSuma", + "ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ", + "帶著智慧型手機闖蕩異世界。" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34881, + "mal_id": 34881, + "title": "Aho Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl", + "Dummy Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 34662, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": null, + "native": "Fate/Apocrypha", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 34599, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 7, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 97863, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru", + "First-Time Gal", + "My First Gal", + "แฟนผมเป็นสาวแกล" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98035, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": "Fate/Apocrypha", + "native": "Fate/Apocrypha", + "synonyms": [ + "פייט/אפוקריפה", + "Судьба/Апокриф" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 34662, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": null, + "native": "Fate/Apocrypha", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98035, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": "Fate/Apocrypha", + "native": "Fate/Apocrypha", + "synonyms": [ + "פייט/אפוקריפה", + "Судьба/Апокриф" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98035, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": "Fate/Apocrypha", + "native": "Fate/Apocrypha", + "synonyms": [ + "פייט/אפוקריפה", + "Судьба/Апокриф" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98035, + "mal_id": 34662, + "title": "Fate/Apocrypha", + "english": "Fate/Apocrypha", + "native": "Fate/Apocrypha", + "synonyms": [ + "פייט/אפוקריפה", + "Судьба/Апокриф" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 34599, + "mal_id": 34599, + "title": "Made in Abyss", + "english": "Made in Abyss", + "native": "メイドインアビス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 7, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 98251, + "mal_id": 34881, + "title": "Aho-Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34881, + "mal_id": 34881, + "title": "Aho Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl", + "Dummy Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 35247, + "mal_id": 35247, + "title": "Owarimonogatari 2nd Season", + "english": "Owarimonogatari Second Season", + "native": "終物語", + "synonyms": [ + "End Story 2nd Season" + ], + "format": "TV Special", + "episodes": 7, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 21745, + "mal_id": 35247, + "title": "Owarimonogatari (Ge)", + "english": "Owarimonogatari Second Season", + "native": "終物語(下)", + "synonyms": [ + "Owarimonogatari 2", + "End Tale" + ], + "format": "TV", + "episodes": 7, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 34104, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 22, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 98320, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "LOVE and LIES", + "native": "恋と嘘", + "synonyms": [ + "Love & Lies", + "จะรักหรือจะหลอก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 97996, + "mal_id": 34626, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", + "english": "KONOSUBA -God's blessing on this wonderful world! 2: God's Blessings on These Wonderful Works of Art!", + "native": "この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を!", + "synonyms": [ + "Konosuba 2 OVA", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!: As Bençãos de Deus Nestas Obras de Arte Maravilhosas!", + "Konosuba ¡Bendito sea este mundo maravilloso!: ¡Benditas sean estas maravillosas obras de arte!" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 34626, + "mal_id": 34626, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2 - God's Blessing on This Wonderful Art!", + "native": "この素晴らしい世界に祝福を!2 この素晴らしい芸術に祝福を!", + "synonyms": [ + "KonoSuba: God's Blessing on This Wonderful World! Second Season OVA", + "Kono Subarashii Sekai ni Shukufuku wo! 2 OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 98005, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35203, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 97617, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [ + "异世界食堂", + " ร้านอาหารต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98580, + "mal_id": 35363, + "title": "Kobayashi-san Chi no Maidragon: Valentine, Soshite Onsen! (Amari Kitai Shinaide Kudasai)", + "english": "Miss Kobayashi's Dragon Maid: Valentines and Hot Springs! (Please Don't Get Your Hopes Up)", + "native": "小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid Episode 14", + "Kobayashi-san Chi no Maid Dragon Episode 14 " + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 35363, + "mal_id": 35363, + "title": "Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai", + "english": "Miss Kobayashi's Dragon Maid: Valentine's, and Then Hot Springs! (Please Don't Get Your Hopes Up)", + "native": "小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください)", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon Episode 14" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98292, + "mal_id": 34914, + "title": "NEW GAME!!", + "english": "NEW GAME!!", + "native": "NEW GAME!!", + "synonyms": [ + "Новая игра!!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98292, + "mal_id": 34914, + "title": "NEW GAME!!", + "english": "NEW GAME!!", + "native": "NEW GAME!!", + "synonyms": [ + "Новая игра!!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34280, + "mal_id": 34280, + "title": "Gamers!", + "english": "Gamers!", + "native": "ゲーマーズ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 13, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98292, + "mal_id": 34914, + "title": "NEW GAME!!", + "english": "NEW GAME!!", + "native": "NEW GAME!!", + "synonyms": [ + "Новая игра!!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34383, + "mal_id": 34383, + "title": "Netsuzou TRap", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 5, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 97908, + "mal_id": 34498, + "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "english": "Fireworks", + "native": "打ち上げ花火、下から見るか?横から見るか?", + "synonyms": [ + " Should We See It from the Side or the Bottom?", + "升起的烟花,从下面看?还是从侧面看?" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 34498, + "mal_id": 34498, + "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "english": "Fireworks", + "native": "打ち上げ花火、下から見るか?横から見るか?", + "synonyms": [ + "Fireworks", + "Should We See It from the Side or the Bottom?" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.8938, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 97908, + "mal_id": 34498, + "title": "Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka?", + "english": "Fireworks", + "native": "打ち上げ花火、下から見るか?横から見るか?", + "synonyms": [ + " Should We See It from the Side or the Bottom?", + "升起的烟花,从下面看?还是从侧面看?" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98505, + "mal_id": 35240, + "title": "Princess Principal", + "english": "Princess Principal", + "native": "プリンセス・プリンシパル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 35240, + "mal_id": 35240, + "title": "Princess Principal", + "english": "Princess Principal", + "native": "プリンセス・プリンシパル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 98505, + "mal_id": 35240, + "title": "Princess Principal", + "english": "Princess Principal", + "native": "プリンセス・プリンシパル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34881, + "mal_id": 34881, + "title": "Aho Girl", + "english": "AHO-GIRL", + "native": "アホガール", + "synonyms": [ + "Ahogaru: Clueless Girl", + "Dummy Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 34104, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34383, + "mal_id": 34383, + "title": "Netsuzou TRap", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 5, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35507, + "mal_id": 35507, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e", + "english": "Classroom of the Elite", + "native": "ようこそ実力至上主義の教室へ", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu", + "You-zitsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34914, + "mal_id": 34914, + "title": "New Game!!", + "english": "New Game!!", + "native": "NEW GAME!!", + "synonyms": [ + "New Game! Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 97663, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [ + "Knight's and Magic", + "Naitsuma", + "ไนท์ & แมจิก" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34012, + "mal_id": 34012, + "title": "Isekai Shokudou", + "english": "Restaurant to Another World", + "native": "異世界食堂", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35203, + "mal_id": 35203, + "title": "Isekai wa Smartphone to Tomo ni.", + "english": "In Another World With My Smartphone", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 11, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 98205, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama kun", + "native": "潔癖男子! 青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21778, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Rohan Kishibe", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Thus Spoke Kishibe Rohan", + "Assim Falava Kishibe Rohan", + "Así habló Kishibe Rohan", + "على لسان كيشيبي روهان", + "Αυτά Είπε ο Ρόχαν Κίσιμπε" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 33191, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Kishibe Rohan", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Rohan Kishibe Does Not Move" + ], + "format": "OVA", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21778, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Rohan Kishibe", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Thus Spoke Kishibe Rohan", + "Assim Falava Kishibe Rohan", + "Así habló Kishibe Rohan", + "على لسان كيشيبي روهان", + "Αυτά Είπε ο Ρόχαν Κίσιμπε" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34825, + "mal_id": 34825, + "title": "Keppeki Danshi! Aoyama-kun", + "english": "Clean Freak! Aoyama-kun", + "native": "潔癖男子!青山くん", + "synonyms": [ + "Cleanliness Boy! Aoyama-kun" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 3, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 21778, + "mal_id": 33191, + "title": "Kishibe Rohan wa Ugokanai", + "english": "Thus Spoke Rohan Kishibe", + "native": "岸辺露伴は動かない", + "synonyms": [ + "Thus Spoke Kishibe Rohan", + "Assim Falava Kishibe Rohan", + "Así habló Kishibe Rohan", + "على لسان كيشيبي روهان", + "Αυτά Είπε ο Ρόχαν Κίσιμπε" + ], + "format": "OVA", + "episodes": 4, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 34104, + "mal_id": 34104, + "title": "Knight's & Magic", + "english": "Knight's & Magic", + "native": "ナイツ&マジック", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 2, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21791, + "mal_id": 33071, + "title": "Bungou Stray Dogs: Hitori Ayumu", + "english": "Bungo Stray Dogs 2: Walking Alone", + "native": "文豪ストレイドッグス 『独り歩む』;", + "synonyms": [ + "Bungou Stray Dogs 2 OVA", + "Bungou Stray Dogs 2: Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 33071, + "mal_id": 33071, + "title": "Bungou Stray Dogs: Hitori Ayumu", + "english": "Bungo Stray Dogs 2 - Walking Alone", + "native": "文豪ストレイドッグス『独り歩む』", + "synonyms": [ + "Bungou Stray Dogs OVA", + "Bungou Stray Dogs 2nd Season Episode 13", + "Bungou Stray Dogs Episode 25" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 8, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 87494, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 33654, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 8, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 87494, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34403, + "mal_id": 34403, + "title": "Hajimete no Gal", + "english": "My First Girlfriend is a Gal", + "native": "はじめてのギャル", + "synonyms": [ + "Hajimete no Gyaru" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 12, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 87494, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 34636, + "mal_id": 34636, + "title": "Ballroom e Youkoso", + "english": "Welcome to the Ballroom", + "native": "ボールルームへようこそ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 9, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 87494, + "mal_id": 33654, + "title": "Hitorijime My Hero", + "english": "Hitorijime My Hero", + "native": "ひとりじめマイヒーロー", + "synonyms": [ + "My Very Own Hero" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34934, + "mal_id": 34934, + "title": "Koi to Uso", + "english": "Love and Lies", + "native": "恋と嘘", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 4, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 97833, + "mal_id": 34383, + "title": "Netsuzou Trap: NTR", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [ + "Netsuzou TRap", + "กลรักกับดักลวง NTR" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34383, + "mal_id": 34383, + "title": "Netsuzou TRap", + "english": "Netsuzou Trap -NTR-", + "native": "捏造トラップ―NTR―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2017, + "start_date": { + "day": 5, + "month": 7, + "year": 2017 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2017-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2017-winter.json new file mode 100644 index 0000000..e11a1d4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2017-winter.json @@ -0,0 +1,5411 @@ +{ + "year": 2017, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21857, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [ + "การแก้แค้นของมาซามุเนะคุง", + "Месть Масамунэ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 21403, + "mal_id": 31765, + "title": "Sword Art Online: Ordinal Scale", + "english": "Sword Art Online the Movie: Ordinal Scale", + "native": "ソードアート・オンライン -オーディナル・スケール-", + "synonyms": [ + "SAO THE MOVIE" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 21858, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia (TV)", + "native": "リトルウィッチアカデミア (TV)", + "synonyms": [ + "LWA (TV)", + "小魔女学园", + "Det lille hekseakademiet", + "האקדמיה למכשפות קטנות" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21400, + "mal_id": 31758, + "title": "Kizumonogatari III: Reiketsu-hen", + "english": "Kizumonogatari Part 3: Reiketsu", + "native": "傷物語〈Ⅲ冷血篇〉", + "synonyms": [ + "Wound Tale 3: Cold Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21878, + "mal_id": 33731, + "title": "Gabriel Dropout", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [ + "GabDro", + "珈百璃的堕落" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 21887, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 97730, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [ + "Divina Juventud" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 21425, + "mal_id": 31812, + "title": "Kuroshitsuji: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "黒執事 Book of the Atlantic", + "synonyms": [ + "Kuroshitsuji", + "Black Butler", + "Book of Atlantic", + "คนลึกไขปริศนาลับ: Book of the Atlantic" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 21874, + "mal_id": 33581, + "title": "Trinity Seven Movie - Yuukyuu Toshokan to Renkinjutsu Shoujo", + "english": "Trinity Seven: Eternal Library & Alchemic Girl", + "native": "劇場版 トリニティセブン -悠久図書館と錬金術少女-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 97857, + "mal_id": 34392, + "title": "One Room", + "english": "OneRoom", + "native": "One Room", + "synonyms": [ + "ワンルーム", + "В одной комнате" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 87435, + "mal_id": 33573, + "title": "BanG Dream!", + "english": "BanG Dream!", + "native": "BanG Dream!(バンドリ!)", + "synonyms": [ + "Bandori" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 98153, + "mal_id": 34152, + "title": "Super Danganronpa 2.5 Komaeda Nagito to Sekai no Hakaimono", + "english": null, + "native": "スーパーダンガンロンパ2.5 狛枝凪斗と世界の破壊者", + "synonyms": [ + "Super Danganronpa 2.5: Nagito Komaeda and the Destroyer of the World", + "Super Danganronpa 2.5: Nagito Komaeda and the World Destroyer" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 33487, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 5, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 33506, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 31765, + "mal_id": 31765, + "title": "Sword Art Online Movie: Ordinal Scale", + "english": "Sword Art Online the Movie: Ordinal Scale", + "native": "劇場版 ソードアート・オンライン -オーディナル・スケール-", + "synonyms": [ + "Gekijouban Sword Art Online" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 2, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 33489, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 31758, + "mal_id": 31758, + "title": "Kizumonogatari III: Reiketsu-hen", + "english": "Kizumonogatari Part 3: Cold-Blooded", + "native": "傷物語〈Ⅲ冷血篇〉", + "synonyms": [ + "Koyomi Vamp" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 33731, + "mal_id": 33731, + "title": "Gabriel DropOut", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 33988, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews With Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Ajin-chan wa Kataritai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 31658, + "mal_id": 31658, + "title": "Kuroko no Basket Movie 4: Last Game", + "english": "Kuroko's Basketball the Movie: Last Game", + "native": "劇場版 黒子のバスケ LAST GAME", + "synonyms": [ + "Gekijouban Kuroko no Basuke: Last Game", + "The Basketball Which Kuroko Plays" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 3, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 33743, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 33836, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 31812, + "mal_id": 31812, + "title": "Kuroshitsuji Movie: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "劇場版 黒執事 Book of the Atlantic", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 33095, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Shouwa Genroku Rakugo Shinjuu 2nd Season", + "Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 35262, + "mal_id": 35262, + "title": "Boku no Hero Academia: Hero Note", + "english": "My Hero Academia: Hero Notebook", + "native": "僕のヒーローアカデミア ヒーローノート", + "synonyms": [ + "Boku no Hero Academia Recap", + "Boku no Hero Academia 13.5" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 3, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 33581, + "mal_id": 33581, + "title": "Trinity Seven Movie 1: Eternity Library to Alchemic Girl", + "english": "Trinity Seven: Eternity Library & Alchemic Girl", + "native": "劇場版 トリニティセブン -悠久図書館〈エターニティライブラリー〉と錬金術少女〈アルケミックガール〉-", + "synonyms": [ + "Gekijouban Trinity Seven", + "Trinity Seven Movie: Yuukyuu Toshokan to Rekinjutsu Shoujo" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 2, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 33337, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: 13th Territory Inspection Department", + "ACCA: 13th Ward Observation Department", + "ACCA Jusanku Kansatsuka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 10, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 34414, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "Nanbaka Season 2", + "native": "ナンバカ 2期", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 30485, + "mal_id": 30485, + "title": "ChäoS;Child", + "english": "ChäoS;Child", + "native": "CHAOS;CHILD", + "synonyms": [ + "Chaos Child" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 11, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 32924, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 34414, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "Nanbaka Season 2", + "native": "ナンバカ 2期", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21699, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KONOSUBA -God's blessing on this wonderful world! 2", + "native": "この素晴らしい世界に祝福を!2", + "synonyms": [ + "Konosuba 2", + "Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!", + "为美好的世界献上祝福!2", + "为美好的世界献上祝福第二季", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2", + "Konosuba : Une explosion dans ce monde merveilleux !", + "Да благословят боги сей расчудесный мир! 2", + "Konosuba! Un mundo maravilloso 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 33095, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Shouwa Genroku Rakugo Shinjuu 2nd Season", + "Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 21776, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maidragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon", + "小林家的龙女仆", + "น้องเมดมังกรของคุณโคบายาชิ", + "Дракониха-горничная госпожи Кобаяси" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 33506, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 21, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 21613, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "幼女战记", + "Колдунья в погонах" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 33506, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21857, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [ + "การแก้แค้นของมาซามุเนะคุง", + "Месть Масамунэ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33487, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 5, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21857, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [ + "การแก้แค้นของมาซามุเนะคุง", + "Месть Масамунэ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21857, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [ + "การแก้แค้นของมาซามุเนะคุง", + "Месть Масамунэ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21403, + "mal_id": 31765, + "title": "Sword Art Online: Ordinal Scale", + "english": "Sword Art Online the Movie: Ordinal Scale", + "native": "ソードアート・オンライン -オーディナル・スケール-", + "synonyms": [ + "SAO THE MOVIE" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 31765, + "mal_id": 31765, + "title": "Sword Art Online Movie: Ordinal Scale", + "english": "Sword Art Online the Movie: Ordinal Scale", + "native": "劇場版 ソードアート・オンライン -オーディナル・スケール-", + "synonyms": [ + "Gekijouban Sword Art Online" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 2, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 21403, + "mal_id": 31765, + "title": "Sword Art Online: Ordinal Scale", + "english": "Sword Art Online the Movie: Ordinal Scale", + "native": "ソードアート・オンライン -オーディナル・スケール-", + "synonyms": [ + "SAO THE MOVIE" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 30485, + "mal_id": 30485, + "title": "ChäoS;Child", + "english": "ChäoS;Child", + "native": "CHAOS;CHILD", + "synonyms": [ + "Chaos Child" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 11, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 33489, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 21701, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [ + "Desejos Proibidos", + "El deseo de la escoria" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33743, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 33506, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9815, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 21861, + "mal_id": 33506, + "title": "Ao no Exorcist: Kyoto Fujouou-hen", + "english": "Blue Exorcist: Kyoto Saga", + "native": "青の祓魔師 京都不浄王篇", + "synonyms": [ + "Blue Exorcist: Kyoto Impure King Arc", + "Blue Exorcist Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 33095, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Shouwa Genroku Rakugo Shinjuu 2nd Season", + "Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21858, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia (TV)", + "native": "リトルウィッチアカデミア (TV)", + "synonyms": [ + "LWA (TV)", + "小魔女学园", + "Det lille hekseakademiet", + "האקדמיה למכשפות קטנות" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 33489, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 21858, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia (TV)", + "native": "リトルウィッチアカデミア (TV)", + "synonyms": [ + "LWA (TV)", + "小魔女学园", + "Det lille hekseakademiet", + "האקדמיה למכשפות קטנות" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33988, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews With Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Ajin-chan wa Kataritai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21400, + "mal_id": 31758, + "title": "Kizumonogatari III: Reiketsu-hen", + "english": "Kizumonogatari Part 3: Reiketsu", + "native": "傷物語〈Ⅲ冷血篇〉", + "synonyms": [ + "Wound Tale 3: Cold Blood" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 31758, + "mal_id": 31758, + "title": "Kizumonogatari III: Reiketsu-hen", + "english": "Kizumonogatari Part 3: Cold-Blooded", + "native": "傷物語〈Ⅲ冷血篇〉", + "synonyms": [ + "Koyomi Vamp" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21878, + "mal_id": 33731, + "title": "Gabriel Dropout", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [ + "GabDro", + "珈百璃的堕落" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33731, + "mal_id": 33731, + "title": "Gabriel DropOut", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21878, + "mal_id": 33731, + "title": "Gabriel Dropout", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [ + "GabDro", + "珈百璃的堕落" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 32924, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33988, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews With Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Ajin-chan wa Kataritai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 33489, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 2, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97592, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews with Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Entrevistas con chicas monstruo", + "Interviews mit Monster-Mädchen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 33337, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: 13th Territory Inspection Department", + "ACCA: 13th Ward Observation Department", + "ACCA Jusanku Kansatsuka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 10, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97889, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 4", + "native": "銀魂。", + "synonyms": [ + "Gintama. (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21887, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33743, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 21887, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97730, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [ + "Divina Juventud" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 33836, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97730, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [ + "Divina Juventud" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 97730, + "mal_id": 33836, + "title": "Seiren", + "english": "Seiren", + "native": "セイレン", + "synonyms": [ + "Divina Juventud" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 33337, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: 13th Territory Inspection Department", + "ACCA: 13th Ward Observation Department", + "ACCA Jusanku Kansatsuka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 10, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 33095, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Shouwa Genroku Rakugo Shinjuu 2nd Season", + "Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 7, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.9872, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 32949, + "mal_id": 32949, + "title": "Kuzu no Honkai", + "english": "Scum's Wish", + "native": "クズの本懐", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 13, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 21733, + "mal_id": 33095, + "title": "Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen", + "english": "Descending Stories: Showa Genroku Rakugo Shinju", + "native": "昭和元禄落語心中~助六再び篇~", + "synonyms": [ + "Le Rakugo ou la vie 2", + "Shouwa Genroku Rakugo Shinjuu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 33489, + "mal_id": 33489, + "title": "Little Witch Academia (TV)", + "english": "Little Witch Academia", + "native": "リトルウィッチアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 33337, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: 13th Territory Inspection Department", + "ACCA: 13th Ward Observation Department", + "ACCA Jusanku Kansatsuka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 10, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33988, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews With Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Ajin-chan wa Kataritai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 21823, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: Jusan-ku Kansatsu-ka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 33487, + "mal_id": 33487, + "title": "Masamune-kun no Revenge", + "english": "Masamune-kun's Revenge", + "native": "政宗くんのリベンジ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 5, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21425, + "mal_id": 31812, + "title": "Kuroshitsuji: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "黒執事 Book of the Atlantic", + "synonyms": [ + "Kuroshitsuji", + "Black Butler", + "Book of Atlantic", + "คนลึกไขปริศนาลับ: Book of the Atlantic" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 31812, + "mal_id": 31812, + "title": "Kuroshitsuji Movie: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "劇場版 黒執事 Book of the Atlantic", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.8783, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21425, + "mal_id": 31812, + "title": "Kuroshitsuji: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "黒執事 Book of the Atlantic", + "synonyms": [ + "Kuroshitsuji", + "Black Butler", + "Book of Atlantic", + "คนลึกไขปริศนาลับ: Book of the Atlantic" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 21425, + "mal_id": 31812, + "title": "Kuroshitsuji: Book of the Atlantic", + "english": "Black Butler: Book of the Atlantic", + "native": "黒執事 Book of the Atlantic", + "synonyms": [ + "Kuroshitsuji", + "Black Butler", + "Book of Atlantic", + "คนลึกไขปริศนาลับ: Book of the Atlantic" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 21874, + "mal_id": 33581, + "title": "Trinity Seven Movie - Yuukyuu Toshokan to Renkinjutsu Shoujo", + "english": "Trinity Seven: Eternal Library & Alchemic Girl", + "native": "劇場版 トリニティセブン -悠久図書館と錬金術少女-", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 33581, + "mal_id": 33581, + "title": "Trinity Seven Movie 1: Eternity Library to Alchemic Girl", + "english": "Trinity Seven: Eternity Library & Alchemic Girl", + "native": "劇場版 トリニティセブン -悠久図書館〈エターニティライブラリー〉と錬金術少女〈アルケミックガール〉-", + "synonyms": [ + "Gekijouban Trinity Seven", + "Trinity Seven Movie: Yuukyuu Toshokan to Rekinjutsu Shoujo" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 2, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 87435, + "mal_id": 33573, + "title": "BanG Dream!", + "english": "BanG Dream!", + "native": "BanG Dream!(バンドリ!)", + "synonyms": [ + "Bandori" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 32924, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 33731, + "mal_id": 33731, + "title": "Gabriel DropOut", + "english": "Gabriel DropOut", + "native": "ガヴリールドロップアウト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21696, + "mal_id": 32924, + "title": "Urara Meirochou", + "english": "Urara Meirocho", + "native": "うらら迷路帖", + "synonyms": [ + "Adivina como puedas", + "우라라 미로첩", + "uramei" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 33743, + "mal_id": 33743, + "title": "Fuuka", + "english": "Fuuka", + "native": "風夏", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 34414, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "Nanbaka Season 2", + "native": "ナンバカ 2期", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 97645, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 2", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 34051, + "mal_id": 34051, + "title": "Akiba's Trip The Animation", + "english": "Akiba's Trip The Animation", + "native": "AKIBA'S TRIP THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 32615, + "mal_id": 32615, + "title": "Youjo Senki", + "english": "Saga of Tanya the Evil", + "native": "幼女戦記", + "synonyms": [ + "The Military Chronicles of a Little Girl" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 6, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 33206, + "mal_id": 33206, + "title": "Kobayashi-san Chi no Maid Dragon", + "english": "Miss Kobayashi's Dragon Maid", + "native": "小林さんちのメイドラゴン", + "synonyms": [ + "The maid dragon of Kobayashi-san" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97636, + "mal_id": 34051, + "title": "Akiba's Trip: The Animation", + "english": "Akiba's Trip the Animation", + "native": "Akiba's Trip -The Animation-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 33337, + "mal_id": 33337, + "title": "ACCA: 13-ku Kansatsu-ka", + "english": "ACCA: 13-Territory Inspection Dept.", + "native": "ACCA 13区監察課", + "synonyms": [ + "ACCA: 13th Territory Inspection Department", + "ACCA: 13th Ward Observation Department", + "ACCA Jusanku Kansatsuka" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 10, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 34414, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "Nanbaka Season 2", + "native": "ナンバカ 2期", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 34096, + "mal_id": 34096, + "title": "Gintama.", + "english": "Gintama Season 5", + "native": "銀魂。", + "synonyms": [ + "Gintama (2017)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 9, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97875, + "mal_id": 34414, + "title": "Nanbaka 2", + "english": "NANBAKA - Part Two", + "native": "ナンバカ 2", + "synonyms": [ + "Nambaka 2" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33988, + "mal_id": 33988, + "title": "Demi-chan wa Kataritai", + "english": "Interviews With Monster Girls", + "native": "亜人ちゃんは語りたい", + "synonyms": [ + "Ajin-chan wa Kataritai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98153, + "mal_id": 34152, + "title": "Super Danganronpa 2.5 Komaeda Nagito to Sekai no Hakaimono", + "english": null, + "native": "スーパーダンガンロンパ2.5 狛枝凪斗と世界の破壊者", + "synonyms": [ + "Super Danganronpa 2.5: Nagito Komaeda and the Destroyer of the World", + "Super Danganronpa 2.5: Nagito Komaeda and the World Destroyer" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 34086, + "mal_id": 34086, + "title": "Tales of Zestiria the Cross 2nd Season", + "english": "Tales of Zestiria the X Season 2", + "native": "テイルズ オブ ゼスティリア ザ クロス 第2期", + "synonyms": [ + "Tales of Zestiria The X Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 8, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 98153, + "mal_id": 34152, + "title": "Super Danganronpa 2.5 Komaeda Nagito to Sekai no Hakaimono", + "english": null, + "native": "スーパーダンガンロンパ2.5 狛枝凪斗と世界の破壊者", + "synonyms": [ + "Super Danganronpa 2.5: Nagito Komaeda and the Destroyer of the World", + "Super Danganronpa 2.5: Nagito Komaeda and the World Destroyer" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2017, + "start_date": { + "year": 2017, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 32937, + "mal_id": 32937, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 2", + "english": "KonoSuba: God's Blessing on This Wonderful World! 2", + "native": "この素晴らしい世界に祝福を! 2", + "synonyms": [ + "Give Blessings to This Wonderful World! 2" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2017, + "start_date": { + "day": 12, + "month": 1, + "year": 2017 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2018-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2018-fall.json new file mode 100644 index 0000000..a122334 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2018-fall.json @@ -0,0 +1,6491 @@ +{ + "year": 2018, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 102351, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2", + "english": "Tokyo Ghoul:re 2", + "native": "東京喰種-トーキョーグール-:re 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 101302, + "mal_id": 36946, + "title": "Dragon Ball Super: Broly", + "english": "Dragon Ball Super: Broly", + "native": "ドラゴンボール超 ブロリー", + "synonyms": [ + "Драконий жемчуг: Супер — Броли" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 12, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 100049, + "mal_id": 36286, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", + "english": "Re:ZERO -Starting Life in Another World- OVAs", + "native": "Re:ゼロから始める異世界生活 OVAs", + "synonyms": [ + "Re:ZERO -Starting Life in Another World- Memory Snow", + "Re:ZERO -Starting Life in Another World- The Frozen Bond", + "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "Re:Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna", + "Re:ゼロから始める異世界生活 Memory Snow", + "Re:ゼロから始める異世界生活 氷結の絆", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก Memory Snow", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก The Frozen Bond", + "Re:Zero — жизнь с нуля в другом мире OVA. Ледяные узы" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 99424, + "mal_id": 35847, + "title": "SSSS.GRIDMAN", + "english": "SSSS.GRIDMAN", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 104580, + "mal_id": 38249, + "title": "Saiki Kusuo no Ψ-nan: Kanketsu-hen", + "english": "The Disastrous Life of Saiki K. Season 3", + "native": "斉木楠雄のΨ難 完結編", + "synonyms": [ + "Saiki Kusuo no Psi Nan 3" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 101024, + "mal_id": 37202, + "title": "Radiant", + "english": "RADIANT", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 100093, + "mal_id": 36317, + "title": "Gaikotsu Shotenin Honda-san", + "english": "Skull-face Bookseller Honda-san", + "native": "ガイコツ書店員本田さん", + "synonyms": [ + "Gaikotsu Shotenin Honda san", + "Gaikotsu Syotenin Honda san" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 104243, + "mal_id": null, + "title": "Satsuriku no Tenshi (ONA)", + "english": "Angels of Death (ONA)", + "native": "殺戮の天使 (ONA)", + "synonyms": [], + "format": "ONA", + "episodes": 4, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 37450, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 37430, + "mal_id": 37430, + "title": "Tensei shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "TenSura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 2, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 37349, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "Goblin Slayer", + "native": "ゴブリンスレイヤー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 37991, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken Part 5: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5: Golden Wind", + "JoJo no Kimyou na Bouken Part 5: Ougon no Kaze", + "Le Bizzarre Avventure Di GioGio Parte 5: Vento Aureo" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 36474, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "Sword Art Online III", + "SAO Alicization", + "Sword Art Online 3", + "SAO 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 37976, + "mal_id": 37976, + "title": "Zombieland Saga", + "english": "Zombie Land Saga", + "native": "ゾンビランドサガ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 36946, + "mal_id": 36946, + "title": "Dragon Ball Super: Broly", + "english": "Dragon Ball Super: Broly", + "native": "ドラゴンボール超(スーパー) ブロリー", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 12, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 36286, + "mal_id": 36286, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "english": "Re:ZERO -Starting Life in Another World- Memory Snow", + "native": "Re:ゼロから始める異世界生活 Memory Snow", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re:Zero kara Hajimeru Isekai Seikatsu OVA" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 35847, + "mal_id": 35847, + "title": "SSSS.Gridman", + "english": "SSSS.Gridman", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 38249, + "mal_id": 38249, + "title": "Saiki Kusuo no Ψ-nan: Kanketsu-hen", + "english": "The Disastrous Life of Saiki K. Final Arc", + "native": "斉木楠雄のΨ難 完結編", + "synonyms": [ + "Saiki Kusuo no Psi Nan 3" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 12, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 37202, + "mal_id": 37202, + "title": "Radiant", + "english": "Radiant", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 37597, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "Dakaichi: I'm Being Harassed By the Sexiest Man of the Year", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "Dakaretai Otoko Ichii ni Odosarete Imasu.", + "Dakaretai Otoko No.1 ni Odosareteimasu." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 37447, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 11, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 37823, + "mal_id": 37823, + "title": "Conception", + "english": null, + "native": "CONCEPTION(コンセプション)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 37449, + "mal_id": 37449, + "title": "Strike the Blood III", + "english": null, + "native": "ストライク・ザ・ブラッドⅢ", + "synonyms": [ + "Strike the Blood Third" + ], + "format": "OVA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 12, + "year": 2018 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37450, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37430, + "mal_id": 37430, + "title": "Tensei shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "TenSura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 2, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101291, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa", + "青春猪头少年不会梦到兔女郎学姐", + "Негодник, которому не снилась девушка-кролик", + "Этот глупый свин не понимает мечту девочки-зайки", + "青ブタ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37430, + "mal_id": 37430, + "title": "Tensei shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "TenSura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 2, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.9722, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101280, + "mal_id": 37430, + "title": "Tensei Shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "転スラ", + "TenSura", + "Vita da Slime", + "Moi, quand je me réincarne en Slime", + "关于我转生变成史莱姆这档事", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว", + "Meine Wiedergeburt als Schleim in einer anderen Welt", + "О моём перерождении в слизь", + "TTIGRAAS", + "Lúc đó tôi đã chuyển sinh thành Slime" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 37349, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "Goblin Slayer", + "native": "ゴブリンスレイヤー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37976, + "mal_id": 37976, + "title": "Zombieland Saga", + "english": "Zombie Land Saga", + "native": "ゾンビランドサガ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 17, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 101165, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "GOBLIN SLAYER", + "native": "ゴブリンスレイヤー", + "synonyms": [ + "ก็อบลิน สเลเยอร์" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 37991, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken Part 5: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5: Golden Wind", + "JoJo no Kimyou na Bouken Part 5: Ougon no Kaze", + "Le Bizzarre Avventure Di GioGio Parte 5: Vento Aureo" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.8692, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37450, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 102883, + "mal_id": 37991, + "title": "JoJo no Kimyou na Bouken: Ougon no Kaze", + "english": "JoJo's Bizarre Adventure: Golden Wind", + "native": "ジョジョの奇妙な冒険 黄金の風", + "synonyms": [ + "JoJo's Bizarre Adventure Part 5", + "JoJo's Bizarre Adventure: Vento Aureo", + "Le Bizzarre Avventure Di GioGio: Vento Aureo", + "مغامرات جوجو العجيبة: الرياح الذهبية", + "Невероятные приключения ДжоДжо: Золотой ветер" + ], + "format": "TV", + "episodes": 39, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36474, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "Sword Art Online III", + "SAO Alicization", + "Sword Art Online 3", + "SAO 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 1.0652, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 23, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 37823, + "mal_id": 37823, + "title": "Conception", + "english": null, + "native": "CONCEPTION(コンセプション)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37202, + "mal_id": 37202, + "title": "Radiant", + "english": "Radiant", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100182, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "SAOIII", + "SAO3", + "Alicization", + "Sword Art Online III", + "ซอร์ดอาร์ตออนไลน์: Alicization", + "ซอร์ดอาร์ตออนไลน์ ภาค 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 102351, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2", + "english": "Tokyo Ghoul:re 2", + "native": "東京喰種-トーキョーグール-:re 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 102351, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2", + "english": "Tokyo Ghoul:re 2", + "native": "東京喰種-トーキョーグール-:re 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 102351, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2", + "english": "Tokyo Ghoul:re 2", + "native": "東京喰種-トーキョーグール-:re 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 102351, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2", + "english": "Tokyo Ghoul:re 2", + "native": "東京喰種-トーキョーグール-:re 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37976, + "mal_id": 37976, + "title": "Zombieland Saga", + "english": "Zombie Land Saga", + "native": "ゾンビランドサガ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 37349, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "Goblin Slayer", + "native": "ゴブリンスレイヤー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 17, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103871, + "mal_id": 37976, + "title": "Zombie Land Saga", + "english": "ZOMBIE LAND SAGA", + "native": "ゾンビランドサガ", + "synonyms": [ + "Zombieland Saga", + "佐贺偶像是传奇", + "Зомбилэнд-Сага" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99749, + "mal_id": 35972, + "title": "FAIRY TAIL (2018)", + "english": "Fairy Tail Final Season", + "native": "FAIRY TAIL (2018)", + "synonyms": [ + "Fairy Tail 3", + "Fairy Tail Series 3", + "フェアリーテイル (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37597, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "Dakaichi: I'm Being Harassed By the Sexiest Man of the Year", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "Dakaretai Otoko Ichii ni Odosarete Imasu.", + "Dakaretai Otoko No.1 ni Odosareteimasu." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 37447, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 11, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101573, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "สุดท้ายก็คือเธอ" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 37349, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "Goblin Slayer", + "native": "ゴブリンスレイヤー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101302, + "mal_id": 36946, + "title": "Dragon Ball Super: Broly", + "english": "Dragon Ball Super: Broly", + "native": "ドラゴンボール超 ブロリー", + "synonyms": [ + "Драконий жемчуг: Супер — Броли" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 12, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 36946, + "mal_id": 36946, + "title": "Dragon Ball Super: Broly", + "english": "Dragon Ball Super: Broly", + "native": "ドラゴンボール超(スーパー) ブロリー", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 12, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 101310, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "To LOVE, or not to LOVE", + "JULIET NO INTERNATO", + "รักลับๆ ข้ามหอของนายหมากับน้องแมว", + "Juliet en el internado" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100049, + "mal_id": 36286, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", + "english": "Re:ZERO -Starting Life in Another World- OVAs", + "native": "Re:ゼロから始める異世界生活 OVAs", + "synonyms": [ + "Re:ZERO -Starting Life in Another World- Memory Snow", + "Re:ZERO -Starting Life in Another World- The Frozen Bond", + "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "Re:Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna", + "Re:ゼロから始める異世界生活 Memory Snow", + "Re:ゼロから始める異世界生活 氷結の絆", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก Memory Snow", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก The Frozen Bond", + "Re:Zero — жизнь с нуля в другом мире OVA. Ледяные узы" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 36286, + "mal_id": 36286, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "english": "Re:ZERO -Starting Life in Another World- Memory Snow", + "native": "Re:ゼロから始める異世界生活 Memory Snow", + "synonyms": [ + "Re: Life in a different world from zero", + "ReZero", + "Re:Zero kara Hajimeru Isekai Seikatsu OVA" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100049, + "mal_id": 36286, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu OVAs", + "english": "Re:ZERO -Starting Life in Another World- OVAs", + "native": "Re:ゼロから始める異世界生活 OVAs", + "synonyms": [ + "Re:ZERO -Starting Life in Another World- Memory Snow", + "Re:ZERO -Starting Life in Another World- The Frozen Bond", + "Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow", + "Re:Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna", + "Re:ゼロから始める異世界生活 Memory Snow", + "Re:ゼロから始める異世界生活 氷結の絆", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก Memory Snow", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก The Frozen Bond", + "Re:Zero — жизнь с нуля в другом мире OVA. Ледяные узы" + ], + "format": "OVA", + "episodes": 2, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99424, + "mal_id": 35847, + "title": "SSSS.GRIDMAN", + "english": "SSSS.GRIDMAN", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35847, + "mal_id": 35847, + "title": "SSSS.Gridman", + "english": "SSSS.Gridman", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99424, + "mal_id": 35847, + "title": "SSSS.GRIDMAN", + "english": "SSSS.GRIDMAN", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37202, + "mal_id": 37202, + "title": "Radiant", + "english": "Radiant", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 99424, + "mal_id": 35847, + "title": "SSSS.GRIDMAN", + "english": "SSSS.GRIDMAN", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36474, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "Sword Art Online III", + "SAO Alicization", + "Sword Art Online 3", + "SAO 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101316, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "IRODUKU: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [ + "So Many Colors In The Future What A Wonderful World", + "Iroduku", + "IRODUKU: O Mundo em Cores", + "IRODUKU: Le Monde en couleur", + "IRODUKU: El mundo en colores" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 37447, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 11, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101903, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "KazeTsuyo", + "В ногу с ветром" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37597, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "Dakaichi: I'm Being Harassed By the Sexiest Man of the Year", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "Dakaretai Otoko Ichii ni Odosarete Imasu.", + "Dakaretai Otoko No.1 ni Odosareteimasu." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104580, + "mal_id": 38249, + "title": "Saiki Kusuo no Ψ-nan: Kanketsu-hen", + "english": "The Disastrous Life of Saiki K. Season 3", + "native": "斉木楠雄のΨ難 完結編", + "synonyms": [ + "Saiki Kusuo no Psi Nan 3" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38249, + "mal_id": 38249, + "title": "Saiki Kusuo no Ψ-nan: Kanketsu-hen", + "english": "The Disastrous Life of Saiki K. Final Arc", + "native": "斉木楠雄のΨ難 完結編", + "synonyms": [ + "Saiki Kusuo no Psi Nan 3" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 12, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 0.9417, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104580, + "mal_id": 38249, + "title": "Saiki Kusuo no Ψ-nan: Kanketsu-hen", + "english": "The Disastrous Life of Saiki K. Season 3", + "native": "斉木楠雄のΨ難 完結編", + "synonyms": [ + "Saiki Kusuo no Psi Nan 3" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 12, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36474, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "Sword Art Online III", + "SAO Alicization", + "Sword Art Online 3", + "SAO 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100185, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録III", + "synonyms": [ + "Toaru Majutsu no Index 3", + "魔法禁书目录第三季", + "魔法禁书目录 3", + "อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3", + "Cấm thư ma thuật Index III" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101024, + "mal_id": 37202, + "title": "Radiant", + "english": "RADIANT", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37202, + "mal_id": 37202, + "title": "Radiant", + "english": "Radiant", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101024, + "mal_id": 37202, + "title": "Radiant", + "english": "RADIANT", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35847, + "mal_id": 35847, + "title": "SSSS.Gridman", + "english": "SSSS.Gridman", + "native": "SSSS.GRIDMAN", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101024, + "mal_id": 37202, + "title": "Radiant", + "english": "RADIANT", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101024, + "mal_id": 37202, + "title": "Radiant", + "english": "RADIANT", + "native": "ラディアン", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36474, + "mal_id": 36474, + "title": "Sword Art Online: Alicization", + "english": "Sword Art Online: Alicization", + "native": "ソードアート・オンライン アリシゼーション", + "synonyms": [ + "Sword Art Online III", + "SAO Alicization", + "Sword Art Online 3", + "SAO 3" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 1.125, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35972, + "mal_id": 35972, + "title": "Fairy Tail: Final Series", + "english": "Fairy Tail Final Series", + "native": "FAIRY TAIL ファイナルシリーズ", + "synonyms": [ + "Fairy Tail Season 3", + "Fairy Tail (2018)" + ], + "format": "TV", + "episodes": 51, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 2, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 37349, + "mal_id": 37349, + "title": "Goblin Slayer", + "english": "Goblin Slayer", + "native": "ゴブリンスレイヤー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 7, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 10, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 102977, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ 第二期", + "synonyms": [ + "Golden Kamui 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37430, + "mal_id": 37430, + "title": "Tensei shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "TenSura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 2, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100402, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [ + "Tsurune - Il tiro che unisce" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37597, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "Dakaichi: I'm Being Harassed By the Sexiest Man of the Year", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "Dakaretai Otoko Ichii ni Odosarete Imasu.", + "Dakaretai Otoko No.1 ni Odosareteimasu." + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 37799, + "mal_id": 37799, + "title": "Tokyo Ghoul:re 2nd Season", + "english": "Tokyo Ghoul:re 2nd Season", + "native": "東京喰種トーキョーグール:re 第2期", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 9, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.8918, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101381, + "mal_id": 37597, + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu.", + "english": "DAKAICHI -I'm being harassed by the sexiest man of the year-", + "native": "抱かれたい男1位に脅されています。", + "synonyms": [ + "我让最想被拥抱的男人给威胁了" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37430, + "mal_id": 37430, + "title": "Tensei shitara Slime Datta Ken", + "english": "That Time I Got Reincarnated as a Slime", + "native": "転生したらスライムだった件", + "synonyms": [ + "TenSura" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 2, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36632, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "The One I Love Is a Little Sister", + "but She's Not My Little Sister" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 10, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.8951, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36432, + "mal_id": 36432, + "title": "Toaru Majutsu no Index III", + "english": "A Certain Magical Index III", + "native": "とある魔術の禁書目録Ⅲ", + "synonyms": [ + "Toaru Majutsu no Index 3", + "Toaru Majutsu no Kinsho Mokuroku 3" + ], + "format": "TV", + "episodes": 26, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.8689, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100382, + "mal_id": 36632, + "title": "Ore ga Suki nano wa Imouto dakedo Imouto ja Nai", + "english": "My Sister, My Writer", + "native": "俺が好きなのは妹だけど妹じゃない", + "synonyms": [ + "ImoImo" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37450, + "mal_id": 37450, + "title": "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", + "english": "Rascal Does Not Dream of Bunny Girl Senpai", + "native": "青春ブタ野郎はバニーガール先輩の夢を見ない", + "synonyms": [ + "AoButa" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 4, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.8906, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 100093, + "mal_id": 36317, + "title": "Gaikotsu Shotenin Honda-san", + "english": "Skull-face Bookseller Honda-san", + "native": "ガイコツ書店員本田さん", + "synonyms": [ + "Gaikotsu Shotenin Honda san", + "Gaikotsu Syotenin Honda san" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 104243, + "mal_id": null, + "title": "Satsuriku no Tenshi (ONA)", + "english": "Angels of Death (ONA)", + "native": "殺戮の天使 (ONA)", + "synonyms": [], + "format": "ONA", + "episodes": 4, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 104243, + "mal_id": null, + "title": "Satsuriku no Tenshi (ONA)", + "english": "Angels of Death (ONA)", + "native": "殺戮の天使 (ONA)", + "synonyms": [], + "format": "ONA", + "episodes": 4, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36653, + "mal_id": 36653, + "title": "Tsurune: Kazemai Koukou Kyuudou-bu", + "english": "Tsurune: Kazemai High School Kyudo Club", + "native": "ツルネ ―風舞高校弓道部―", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 22, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 9, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 104243, + "mal_id": null, + "title": "Satsuriku no Tenshi (ONA)", + "english": "Angels of Death (ONA)", + "native": "殺戮の天使 (ONA)", + "synonyms": [], + "format": "ONA", + "episodes": 4, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37475, + "mal_id": 37475, + "title": "Kishuku Gakkou no Juliet", + "english": "Boarding School Juliet", + "native": "寄宿学校のジュリエット", + "synonyms": [ + "Kishukugakkou no Juliet" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 37447, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 11, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37965, + "mal_id": 37965, + "title": "Kaze ga Tsuyoku Fuiteiru", + "english": "Run with the Wind", + "native": "風が強く吹いている", + "synonyms": [ + "Kaze ga Tsuyoku Fuite Iru", + "Kazetsuyo" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 3, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37786, + "mal_id": 37786, + "title": "Yagate Kimi ni Naru", + "english": "Bloom Into You", + "native": "やがて君になる", + "synonyms": [ + "YagaKimi", + "Eventually", + "I Will Become You" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 5, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37497, + "mal_id": 37497, + "title": "Irozuku Sekai no Ashita kara", + "english": "Iroduku: The World in Colors", + "native": "色づく世界の明日から", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 6, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 101336, + "mal_id": 37447, + "title": "Karakuri Circus", + "english": "Karakuri Circus", + "native": "からくりサーカス", + "synonyms": [ + "Le Cirque de Karakuri" + ], + "format": "TV", + "episodes": 36, + "season": "FALL", + "year": 2018, + "start_date": { + "year": 2018, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37989, + "mal_id": 37989, + "title": "Golden Kamuy 2nd Season", + "english": "Golden Kamuy Season 2", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamuy Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2018, + "start_date": { + "day": 8, + "month": 10, + "year": 2018 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2018-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2018-spring.json new file mode 100644 index 0000000..8e1e8a3 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2018-spring.json @@ -0,0 +1,6177 @@ +{ + "year": 2018, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 100240, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種-トーキョーグール-:re", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 21127, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "s;g0", + "命运石之门0" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 100773, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "『食戟のソーマ 餐ノ皿』 遠月列車篇", + "synonyms": [ + "食戟之灵 餐之皿 远月列车篇", + "ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 100077, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "HINAMATSURI", + "native": "ヒナまつり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 100298, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 97767, + "mal_id": 34281, + "title": "High School DxD HERO", + "english": null, + "native": "ハイスクールD×D HERO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 98514, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [ + "สาวม้าโมเอะ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 100178, + "mal_id": 35677, + "title": "Liz to Aoi Tori", + "english": "Liz and the Blue Bird", + "native": "リズと青い鳥", + "synonyms": [ + "Liz und ein Blauer Vogel", + " Liz et l'Oiseau bleu", + "莉茲與青鳥", + "Liz und der Blaue Vogel", + "ליז והציפור הכחולה" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 101571, + "mal_id": 36904, + "title": "Aggressive Retsuko", + "english": "Aggretsuko", + "native": "アグレッシブ烈子", + "synonyms": [ + "Η Ρέτσουκο Έξω Φρενών" + ], + "format": "ONA", + "episodes": 10, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 99916, + "mal_id": 36214, + "title": "Asagao to Kase-san.", + "english": "Kase-san and Morning Glories", + "native": "あさがおと加瀬さん。", + "synonyms": [ + "คุณคาเซะกับดอกบานเช้า" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 100645, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV_SHORT", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 99131, + "mal_id": 35756, + "title": "Comic Girls", + "english": "Comic Girls", + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21746, + "mal_id": 33010, + "title": "FLCL Progressive", + "english": "FLCL Progressive", + "native": "フリクリ プログレ", + "synonyms": [ + "FLCL 2", + "Furi Kuri Progressive", + "Fooly Cooly Progressive" + ], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 36456, + "mal_id": 36456, + "title": "Boku no Hero Academia 3rd Season", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 36475, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": null, + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative Gun Gale Online" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 34281, + "mal_id": 34281, + "title": "High School DxD Hero", + "english": "High School DxD Hero", + "native": "ハイスクールDxD HERO", + "synonyms": [ + "High School DxD Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 17, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 36563, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 34443, + "mal_id": 34443, + "title": "Baki", + "english": null, + "native": "バキ", + "synonyms": [], + "format": "ONA", + "episodes": 26, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 6, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 36028, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 36470, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls in Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tada Doesn't Fall in Love", + "TadaKoi" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 35928, + "mal_id": 35928, + "title": "Devils Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 36023, + "mal_id": 36023, + "title": "Persona 5 the Animation", + "english": "Persona 5 the Animation", + "native": "TVアニメ「ペルソナ5」", + "synonyms": [ + "P5A", + "Persona 5 the Anime" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 35249, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 36904, + "mal_id": 36904, + "title": "Aggressive Retsuko (ONA)", + "english": "Aggretsuko (ONA)", + "native": "アグレッシブ烈子", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 35677, + "mal_id": 35677, + "title": "Liz to Aoi Tori", + "english": "Liz and the Blue Bird", + "native": "リズと青い鳥", + "synonyms": [ + "Gekijouban Hibike! Euphonium: Mizore to Nozomi no Monogatari", + "Hibike! Euphonium: The Story of Mizore and Nozomi", + "Hibike! Euphonium Movie: Mizore to Nozomi no Monogatari" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 35756, + "mal_id": 35756, + "title": "Comic Girls", + "english": null, + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 38409, + "mal_id": 38409, + "title": "Cike Wu Liuqi", + "english": "Scissor Seven", + "native": "刺客伍六七", + "synonyms": [ + "伍六七", + "Wu Liuqi", + "Cike Wuliuqi", + "Ci Ke Wu Liu Qi", + "Assassin Seven", + "Killer Seven" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 36214, + "mal_id": 36214, + "title": "Asagao to Kase-san.", + "english": "Kase-san and Morning Glories", + "native": "あさがおと加瀬さん。", + "synonyms": [ + "Morning Glory and Kase-san" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 6, + "year": 2018 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 36456, + "mal_id": 36456, + "title": "Boku no Hero Academia 3rd Season", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 34281, + "mal_id": 34281, + "title": "High School DxD Hero", + "english": "High School DxD Hero", + "native": "ハイスクールDxD HERO", + "synonyms": [ + "High School DxD Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 17, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 100166, + "mal_id": 36456, + "title": "Boku no Hero Academia 3", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア3", + "synonyms": [ + "BNHA 3", + "MHA 3", + "我的英雄学院 3", + "我的英雄学院第三季", + "มายฮีโร่ อคาเดเมีย ภาค 3", + "3أكاديميتي للأبطال", + "Моя геройская академия 3" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 1.2143, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36470, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls in Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tada Doesn't Fall in Love", + "TadaKoi" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.9359, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99578, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "Otaku ni Koi wa Muzukashii", + "WotaKoi", + "It’s Difficult to Love an Otaku", + "Love is Hard for an Otaku", + "Love is Hard for Nerds", + "ווטקוי: האהבה קשה לאוטאקו", + "阿宅的恋爱真难", + "ยากแท้จริงหนอรักของโอตาคุ", + "الحب صعب على الأوتاكو", + "Wotakoi: Keine Cheats für die Liebe", + "Уотаку: Непроста любовь для отаку", + "Wotakoi: O Amor é Difícil para Otaku", + "Wotakoi: El Amor es Duro para los Otakus" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36475, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": null, + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative Gun Gale Online" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 100240, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種-トーキョーグール-:re", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 100240, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種-トーキョーグール-:re", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 100240, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種-トーキョーグール-:re", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 36456, + "mal_id": 36456, + "title": "Boku no Hero Academia 3rd Season", + "english": "My Hero Academia Season 3", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 100240, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種-トーキョーグール-:re", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21127, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "s;g0", + "命运石之门0" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21127, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "s;g0", + "命运石之门0" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36475, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": null, + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative Gun Gale Online" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 21127, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "s;g0", + "命运石之门0" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100773, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "『食戟のソーマ 餐ノ皿』 遠月列車篇", + "synonyms": [ + "食戟之灵 餐之皿 远月列车篇", + "ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100773, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "『食戟のソーマ 餐ノ皿』 遠月列車篇", + "synonyms": [ + "食戟之灵 餐之皿 远月列车篇", + "ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100773, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "『食戟のソーマ 餐ノ皿』 遠月列車篇", + "synonyms": [ + "食戟之灵 餐之皿 远月列车篇", + "ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36475, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": null, + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative Gun Gale Online" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100773, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "『食戟のソーマ 餐ノ皿』 遠月列車篇", + "synonyms": [ + "食戟之灵 餐之皿 远月列车篇", + "ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 36023, + "mal_id": 36023, + "title": "Persona 5 the Animation", + "english": "Persona 5 the Animation", + "native": "TVアニメ「ペルソナ5」", + "synonyms": [ + "P5A", + "Persona 5 the Anime" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36475, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": null, + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative Gun Gale Online" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 36563, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100183, + "mal_id": 36475, + "title": "Sword Art Online Alternative: Gun Gale Online", + "english": "Sword Art Online Alternative: Gun Gale Online", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンライン", + "synonyms": [ + "SAO Alternative: Gun Gale Online", + "SAO GGO" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100077, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "HINAMATSURI", + "native": "ヒナまつり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100077, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "HINAMATSURI", + "native": "ヒナまつり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 36028, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100077, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "HINAMATSURI", + "native": "ヒナまつり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100077, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "HINAMATSURI", + "native": "ヒナまつり", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100298, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 36563, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100298, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100298, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100298, + "mal_id": 36563, + "title": "Megalo Box", + "english": "Megalobox", + "native": "メガロボクス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 36028, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 23, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99699, + "mal_id": 36028, + "title": "Golden Kamuy", + "english": "Golden Kamuy", + "native": "ゴールデンカムイ", + "synonyms": [ + "Golden Kamui", + "黄金神威" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 34281, + "mal_id": 34281, + "title": "High School DxD Hero", + "english": "High School DxD Hero", + "native": "ハイスクールDxD HERO", + "synonyms": [ + "High School DxD Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 17, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 97767, + "mal_id": 34281, + "title": "High School DxD HERO", + "english": null, + "native": "ハイスクールD×D HERO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 34281, + "mal_id": 34281, + "title": "High School DxD Hero", + "english": "High School DxD Hero", + "native": "ハイスクールDxD HERO", + "synonyms": [ + "High School DxD Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 17, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 15, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 97767, + "mal_id": 34281, + "title": "High School DxD HERO", + "english": null, + "native": "ハイスクールD×D HERO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 97767, + "mal_id": 34281, + "title": "High School DxD HERO", + "english": null, + "native": "ハイスクールD×D HERO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 97767, + "mal_id": 34281, + "title": "High School DxD HERO", + "english": null, + "native": "ハイスクールD×D HERO", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 18, + "score": 1.1486, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 100526, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend", + "Three D Kanojo Real Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35756, + "mal_id": 35756, + "title": "Comic Girls", + "english": null, + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36470, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls in Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tada Doesn't Fall in Love", + "TadaKoi" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 1.1275, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35928, + "mal_id": 35928, + "title": "Devils Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100179, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls In Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tadakun wa Koi wo Shinai", + "Tadakoi", + "Tada-kun Never Falls In Love", + "ทาดะคุงไม่ตกหลุมรัก" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 98514, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [ + "สาวม้าโมเอะ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 35249, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 98514, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [ + "สาวม้าโมเอะ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 98514, + "mal_id": 35249, + "title": "Uma Musume: Pretty Derby", + "english": "Umamusume: Pretty Derby", + "native": "ウマ娘 プリティーダービー", + "synonyms": [ + "สาวม้าโมเอะ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35928, + "mal_id": 35928, + "title": "Devils Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36470, + "mal_id": 36470, + "title": "Tada-kun wa Koi wo Shinai", + "english": "Tada Never Falls in Love", + "native": "多田くんは恋をしない", + "synonyms": [ + "Tada Doesn't Fall in Love", + "TadaKoi" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 30484, + "mal_id": 30484, + "title": "Steins;Gate 0", + "english": "Steins;Gate 0", + "native": "シュタインズ・ゲート ゼロ", + "synonyms": [ + "Steins,Gate Zero" + ], + "format": "TV", + "episodes": 23, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 12, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99531, + "mal_id": 35928, + "title": "Devils' Line", + "english": "Devils' Line", + "native": "デビルズライン", + "synonyms": [ + "Devil's Line" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 36023, + "mal_id": 36023, + "title": "Persona 5 the Animation", + "english": "Persona 5 the Animation", + "native": "TVアニメ「ペルソナ5」", + "synonyms": [ + "P5A", + "Persona 5 the Anime" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 99693, + "mal_id": 36023, + "title": "PERSONA5 the Animation", + "english": "PERSONA5 the Animation", + "native": "PERSONA5 the Animation", + "synonyms": [ + "P5A", + "ペルソナ5アニメーション" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 1.1429, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35756, + "mal_id": 35756, + "title": "Comic Girls", + "english": null, + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 100010, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "MAGICAL GIRL SITE", + "native": "魔法少女サイト", + "synonyms": [ + "Garota Mágica .Com" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100178, + "mal_id": 35677, + "title": "Liz to Aoi Tori", + "english": "Liz and the Blue Bird", + "native": "リズと青い鳥", + "synonyms": [ + "Liz und ein Blauer Vogel", + " Liz et l'Oiseau bleu", + "莉茲與青鳥", + "Liz und der Blaue Vogel", + "ליז והציפור הכחולה" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 35677, + "mal_id": 35677, + "title": "Liz to Aoi Tori", + "english": "Liz and the Blue Bird", + "native": "リズと青い鳥", + "synonyms": [ + "Gekijouban Hibike! Euphonium: Mizore to Nozomi no Monogatari", + "Hibike! Euphonium: The Story of Mizore and Nozomi", + "Hibike! Euphonium Movie: Mizore to Nozomi no Monogatari" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 100178, + "mal_id": 35677, + "title": "Liz to Aoi Tori", + "english": "Liz and the Blue Bird", + "native": "リズと青い鳥", + "synonyms": [ + "Liz und ein Blauer Vogel", + " Liz et l'Oiseau bleu", + "莉茲與青鳥", + "Liz und der Blaue Vogel", + "ליז והציפור הכחולה" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101571, + "mal_id": 36904, + "title": "Aggressive Retsuko", + "english": "Aggretsuko", + "native": "アグレッシブ烈子", + "synonyms": [ + "Η Ρέτσουκο Έξω Φρενών" + ], + "format": "ONA", + "episodes": 10, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36904, + "mal_id": 36904, + "title": "Aggressive Retsuko (ONA)", + "english": "Aggretsuko (ONA)", + "native": "アグレッシブ烈子", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 99916, + "mal_id": 36214, + "title": "Asagao to Kase-san.", + "english": "Kase-san and Morning Glories", + "native": "あさがおと加瀬さん。", + "synonyms": [ + "คุณคาเซะกับดอกบานเช้า" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 36214, + "mal_id": 36214, + "title": "Asagao to Kase-san.", + "english": "Kase-san and Morning Glories", + "native": "あさがおと加瀬さん。", + "synonyms": [ + "Morning Glory and Kase-san" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 6, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 0.9385, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 99916, + "mal_id": 36214, + "title": "Asagao to Kase-san.", + "english": "Kase-san and Morning Glories", + "native": "あさがおと加瀬さん。", + "synonyms": [ + "คุณคาเซะกับดอกบานเช้า" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100645, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV_SHORT", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 1.0486, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 100645, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV_SHORT", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100500, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 36864, + "mal_id": 36864, + "title": "Akkun to Kanojo", + "english": "My Sweet Tyrant", + "native": "あっくんとカノジョ", + "synonyms": [ + "Akkun and His Girlfriend" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 99131, + "mal_id": 35756, + "title": "Comic Girls", + "english": "Comic Girls", + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35756, + "mal_id": 35756, + "title": "Comic Girls", + "english": null, + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 5, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 1.1429, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 99131, + "mal_id": 35756, + "title": "Comic Girls", + "english": "Comic Girls", + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 99131, + "mal_id": 35756, + "title": "Comic Girls", + "english": "Comic Girls", + "native": "こみっくがーるず", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 36793, + "mal_id": 36793, + "title": "3D Kanojo: Real Girl", + "english": "Real Girl", + "native": "3D彼女 リアルガール", + "synonyms": [ + "3D Girlfriend" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 4, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21746, + "mal_id": 33010, + "title": "FLCL Progressive", + "english": "FLCL Progressive", + "native": "フリクリ プログレ", + "synonyms": [ + "FLCL 2", + "Furi Kuri Progressive", + "Fooly Cooly Progressive" + ], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21746, + "mal_id": 33010, + "title": "FLCL Progressive", + "english": "FLCL Progressive", + "native": "フリクリ プログレ", + "synonyms": [ + "FLCL 2", + "Furi Kuri Progressive", + "Fooly Cooly Progressive" + ], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 36266, + "mal_id": 36266, + "title": "Mahou Shoujo Site", + "english": "Magical Girl Site", + "native": "魔法少女サイト", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 7, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21746, + "mal_id": 33010, + "title": "FLCL Progressive", + "english": "FLCL Progressive", + "native": "フリクリ プログレ", + "synonyms": [ + "FLCL 2", + "Furi Kuri Progressive", + "Fooly Cooly Progressive" + ], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21746, + "mal_id": 33010, + "title": "FLCL Progressive", + "english": "FLCL Progressive", + "native": "フリクリ プログレ", + "synonyms": [ + "FLCL 2", + "Furi Kuri Progressive", + "Fooly Cooly Progressive" + ], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36511, + "mal_id": 36511, + "title": "Tokyo Ghoul:re", + "english": "Tokyo Ghoul:re", + "native": "東京喰種トーキョーグール:re", + "synonyms": [ + "Tokyo Kushu:re", + "Toukyou Kuushu:re" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 3, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 36023, + "mal_id": 36023, + "title": "Persona 5 the Animation", + "english": "Persona 5 the Animation", + "native": "TVアニメ「ペルソナ5」", + "synonyms": [ + "P5A", + "Persona 5 the Anime" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 1.06, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 36754, + "mal_id": 36754, + "title": "Kakuriyo no Yadomeshi", + "english": "Kakuriyo -Bed & Breakfast for Spirits-", + "native": "かくりよの宿飯", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 2, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 100401, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森 (TV)", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai", + "El Bosque del Piano", + "יער הפסנתר", + "بيانو", + "Το Πιάνο στο Δάσος", + "Il piano nella foresta" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35968, + "mal_id": 35968, + "title": "Wotaku ni Koi wa Muzukashii", + "english": "Wotakoi: Love is Hard for Otaku", + "native": "ヲタクに恋は難しい", + "synonyms": [ + "It's Difficult to Love an Otaku" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 13, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36652, + "mal_id": 36652, + "title": "Piano no Mori (TV)", + "english": "Forest of Piano", + "native": "ピアノの森", + "synonyms": [ + "Piano Forest", + "The Perfect World of Kai" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 36296, + "mal_id": 36296, + "title": "Hinamatsuri", + "english": "Hinamatsuri", + "native": "ヒナまつり", + "synonyms": [ + "Hina Festival" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 6, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.9471, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 36949, + "mal_id": 36949, + "title": "Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen", + "english": "Food Wars! The Third Plate: Totsuki Train Arc", + "native": "食戟のソーマ 餐ノ皿 遠月列車篇", + "synonyms": [ + "Shokugeki no Soma 4th Season", + "Food Wars! The Third Plate 2nd cour", + "Shokugeki no Souma: San no Sara (2018)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 9, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 36023, + "mal_id": 36023, + "title": "Persona 5 the Animation", + "english": "Persona 5 the Animation", + "native": "TVアニメ「ペルソナ5」", + "synonyms": [ + "P5A", + "Persona 5 the Anime" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 8, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100673, + "mal_id": 36884, + "title": "Hisone to Maso-tan", + "english": "Dragon Pilot: Hisone & Masotan", + "native": "ひそねとまそたん", + "synonyms": [ + "HisoMaso", + "Hisone y Masotan: A Lomos del Dragón", + "Pilotos de Dragão - Hisone to Masotan", + "هيسونا والتنين", + "Smocza pilotka: Hisone i Masotan", + "Drachenflieger" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "year": 2018, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 34281, + "mal_id": 34281, + "title": "High School DxD Hero", + "english": "High School DxD Hero", + "native": "ハイスクールDxD HERO", + "synonyms": [ + "High School DxD Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2018, + "start_date": { + "day": 17, + "month": 4, + "year": 2018 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2018-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2018-summer.json new file mode 100644 index 0000000..3b64d41 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2018-summer.json @@ -0,0 +1,5981 @@ +{ + "year": 2018, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 99750, + "mal_id": 36098, + "title": "Kimi no Suizou wo Tabetai", + "english": "I Want to Eat Your Pancreas", + "native": "君の膵臓をたべたい", + "synonyms": [ + "Quiero Comerme tu Páncreas", + "Voglio mangiare il tuo pancreas", + "Je veux manger ton pancréas", + "Vull menjar-me el teu pàncrees", + "Kimisui", + "Eu Quero Comer Seu Pâncreas", + "Хочу съесть твою поджелудочную железу", + "ตับอ่อนเธอนั้นขอฉันเถอะนะ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 9, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 100388, + "mal_id": 36649, + "title": "BANANA FISH", + "english": "BANANA FISH", + "native": "BANANA FISH", + "synonyms": [ + "バナナフィッシュ", + "香蕉鱼", + "Банановая рыба" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 101474, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [ + "Over Lord 3", + "โอเวอร์ลอร์ด ภาค 3", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 100723, + "mal_id": 36896, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero", + "english": "My Hero Academia: Two Heroes", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜", + "synonyms": [ + "My Hero Academia the Movie", + "我的英雄学院 ~两位英雄~", + "มายฮีโร่ อคาเดเมีย กำเนิดใหม่ 2 วีรบุรุษ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97888, + "mal_id": 34443, + "title": "Baki", + "english": "BAKI", + "native": "バキ", + "synonyms": [ + "Baki - O Campeão", + "Баки", + "Μπάκι" + ], + "format": "ONA", + "episodes": 26, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 101432, + "mal_id": 37095, + "title": "Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou", + "english": "Violet Evergarden: Special", + "native": "ヴァイオレット・エヴァーガーデン きっと\"愛\"を知る日が来るのだろう", + "synonyms": [ + "فيوليت: رسالة" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 99540, + "mal_id": 35946, + "title": "Nanatsu no Taizai Movie: Tenkuu no Torawarebito", + "english": "The Seven Deadly Sins the Movie: Prisoners of the Sky", + "native": "劇場版 七つの大罪 天空の囚われ人", + "synonyms": [ + "ศึกตำนาน 7 อัศวิน: นักโทษแห่งท้องนภา ", + "Семь смертных грехов: Узники небес" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 20574, + "mal_id": 21877, + "title": "Hi Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 101361, + "mal_id": 37569, + "title": "Tenrou: Sirius the Jaeger", + "english": "Sirius the Jaeger", + "native": "天狼 Sirius the Jaeger", + "synonyms": [ + "Sirius" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 101231, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun", + "Shiki Oriori: O Sabor da Juventude" + ], + "format": "MOVIE", + "episodes": 3, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 100749, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future", + "Miraï, ma petite sœur", + "未来的未来", + "Mirai: Mi pequeña hermana", + "Μιράι, η μικρή μου αδελφή", + "Мірай", + "Мирай из будущего", + "Mano mažoji sesutė Mirai", + "Болашақтан келген Мирай", + "Mirai tulevikust", + "Gələcəkdən olan Miray", + "Miraï, min lillasyster", + "Mirai, min lillasyster" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 101045, + "mal_id": 37259, + "title": "Hanebado!", + "english": "HANEBADO!", + "native": "はねバド!", + "synonyms": [ + "Hanebado! - The Badminton Play of Ayano Hanesaki!", + "Hanebad!", + "ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 36098, + "mal_id": 36098, + "title": "Kimi no Suizou wo Tabetai", + "english": "I Want To Eat Your Pancreas", + "native": "君の膵臓をたべたい", + "synonyms": [ + "KimiSui", + "Let Me Eat Your Pancreas" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 9, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 37675, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 10, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 36649, + "mal_id": 36649, + "title": "Banana Fish", + "english": "Banana Fish", + "native": "BANANA FISH", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 37105, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 36896, + "mal_id": 36896, + "title": "Boku no Hero Academia the Movie 1: Futari no Hero", + "english": "My Hero Academia: Two Heroes", + "native": "僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~", + "synonyms": [ + "My Hero Academia the Movie: The Two Heroes" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 37210, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How Not to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The Otherworldly Demon King and the Summoner Girls' Slave Magic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 37171, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase: Workshop of Fun", + "native": "あそびあそばせ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 37095, + "mal_id": 37095, + "title": "Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou", + "english": "Violet Evergarden: The Day You Understand \"I Love You\" Will Surely Come", + "native": "ヴァイオレット・エヴァーガーデンきっと\"愛\"を知る日が来るのだろう", + "synonyms": [ + "Violet Evergarden Extra Episode", + "Violet Evergarden Episode 14", + "Violet Evergarden Special", + "The day you understand \"I love you\" will surely come" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 35946, + "mal_id": 35946, + "title": "Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito", + "english": "The Seven Deadly Sins the Movie: Prisoners of the Sky", + "native": "劇場版 七つの大罪 天空の囚われ人", + "synonyms": [ + "The Seven Deadly Sins: Prisoners of the Sky" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 21877, + "mal_id": 21877, + "title": "High Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 37208, + "mal_id": 37208, + "title": "Mo Dao Zu Shi", + "english": "The Master of Diabolism", + "native": "魔道祖师", + "synonyms": [ + "Modao Zushi", + "Grandmaster of Demonic Cultivation", + "The Founder of Diabolism", + "Mo Dao Zu Shi: Qianchen Pian", + "魔道祖师 前尘篇", + "Madou Soshi", + "MDZS" + ], + "format": "ONA", + "episodes": 15, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 37396, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々(しきおりおり)", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun" + ], + "format": "Movie", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 36873, + "mal_id": 36873, + "title": "Back Street Girls: Gokudolls", + "english": "Back Street Girls: Gokudols", + "native": "Back Street Girls -ゴクドルズ", + "synonyms": [ + "Back Street Girls: Washira Idol Hajimemashita.", + "Gokudols" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 37259, + "mal_id": 37259, + "title": "Hanebado!", + "english": "Hanebado!", + "native": "はねバド!", + "synonyms": [ + "The Badminton play of Ayano Hanesaki!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 2, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 36936, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 99147, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3", + "מתקפת הטיטאנים עונה 3", + "L'Attacco dei Giganti 3", + "L'Attacco dei Giganti - Terza Stagione", + "ผ่าพิภพไททัน ภาค 3", + "حمله به تایتان فصل 3", + "ผ่าพิภพไททัน ภาค 3 Part 1", + "Атака титанов 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37210, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How Not to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The Otherworldly Demon King and the Summoner Girls' Slave Magic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99750, + "mal_id": 36098, + "title": "Kimi no Suizou wo Tabetai", + "english": "I Want to Eat Your Pancreas", + "native": "君の膵臓をたべたい", + "synonyms": [ + "Quiero Comerme tu Páncreas", + "Voglio mangiare il tuo pancreas", + "Je veux manger ton pancréas", + "Vull menjar-me el teu pàncrees", + "Kimisui", + "Eu Quero Comer Seu Pâncreas", + "Хочу съесть твою поджелудочную железу", + "ตับอ่อนเธอนั้นขอฉันเถอะนะ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 9, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 36098, + "mal_id": 36098, + "title": "Kimi no Suizou wo Tabetai", + "english": "I Want To Eat Your Pancreas", + "native": "君の膵臓をたべたい", + "synonyms": [ + "KimiSui", + "Let Me Eat Your Pancreas" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 9, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99750, + "mal_id": 36098, + "title": "Kimi no Suizou wo Tabetai", + "english": "I Want to Eat Your Pancreas", + "native": "君の膵臓をたべたい", + "synonyms": [ + "Quiero Comerme tu Páncreas", + "Voglio mangiare il tuo pancreas", + "Je veux manger ton pancréas", + "Vull menjar-me el teu pàncrees", + "Kimisui", + "Eu Quero Comer Seu Pâncreas", + "Хочу съесть твою поджелудочную железу", + "ตับอ่อนเธอนั้นขอฉันเถอะนะ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 9, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 100388, + "mal_id": 36649, + "title": "BANANA FISH", + "english": "BANANA FISH", + "native": "BANANA FISH", + "synonyms": [ + "バナナフィッシュ", + "香蕉鱼", + "Банановая рыба" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 36649, + "mal_id": 36649, + "title": "Banana Fish", + "english": "Banana Fish", + "native": "BANANA FISH", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101474, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [ + "Over Lord 3", + "โอเวอร์ลอร์ด ภาค 3", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 37675, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 10, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101474, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [ + "Over Lord 3", + "โอเวอร์ลอร์ด ภาค 3", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101474, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [ + "Over Lord 3", + "โอเวอร์ลอร์ด ภาค 3", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101474, + "mal_id": 37675, + "title": "Overlord III", + "english": "Overlord III", + "native": "オーバーロードⅢ", + "synonyms": [ + "Over Lord 3", + "โอเวอร์ลอร์ด ภาค 3", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37105, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 12, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 100922, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [ + "ก๊วนป่วนชวนบุ๋งบุ๋ง" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100723, + "mal_id": 36896, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero", + "english": "My Hero Academia: Two Heroes", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜", + "synonyms": [ + "My Hero Academia the Movie", + "我的英雄学院 ~两位英雄~", + "มายฮีโร่ อคาเดเมีย กำเนิดใหม่ 2 วีรบุรุษ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36896, + "mal_id": 36896, + "title": "Boku no Hero Academia the Movie 1: Futari no Hero", + "english": "My Hero Academia: Two Heroes", + "native": "僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~", + "synonyms": [ + "My Hero Academia the Movie: The Two Heroes" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99629, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel Slaughter", + "ทูตสวรรค์ทัณฑ์อำมหิต" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 100977, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [ + "Les brigades immunitaires", + "เซลล์ขยัน พันธุ์เดือด", + "Lavori in corpo", + "Клетки за работой!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37210, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How Not to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The Otherworldly Demon King and the Summoner Girls' Slave Magic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 18, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.8947, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 101004, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How NOT to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The King of Darkness Another World Story", + "异世界魔王与召唤少女的奴隶魔术", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ", + "異世界魔王與召喚少女的奴隸魔術" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 37259, + "mal_id": 37259, + "title": "Hanebado!", + "english": "Hanebado!", + "native": "はねバド!", + "synonyms": [ + "The Badminton play of Ayano Hanesaki!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 2, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37171, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase: Workshop of Fun", + "native": "あそびあそばせ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21877, + "mal_id": 21877, + "title": "High Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.8733, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 101001, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase - workshop of fun -", + "native": "あそびあそばせ", + "synonyms": [ + "Asobi Asobase: Workshop of Fun", + "游戏3人娘", + "来玩游戏吧", + "ชมรมสาวรักสนุก" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37210, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How Not to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The Otherworldly Demon King and the Summoner Girls' Slave Magic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9517, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97888, + "mal_id": 34443, + "title": "Baki", + "english": "BAKI", + "native": "バキ", + "synonyms": [ + "Baki - O Campeão", + "Баки", + "Μπάκι" + ], + "format": "ONA", + "episodes": 26, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 6, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 101432, + "mal_id": 37095, + "title": "Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou", + "english": "Violet Evergarden: Special", + "native": "ヴァイオレット・エヴァーガーデン きっと\"愛\"を知る日が来るのだろう", + "synonyms": [ + "فيوليت: رسالة" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 37095, + "mal_id": 37095, + "title": "Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou", + "english": "Violet Evergarden: The Day You Understand \"I Love You\" Will Surely Come", + "native": "ヴァイオレット・エヴァーガーデンきっと\"愛\"を知る日が来るのだろう", + "synonyms": [ + "Violet Evergarden Extra Episode", + "Violet Evergarden Episode 14", + "Violet Evergarden Special", + "The day you understand \"I love you\" will surely come" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.8651, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 101432, + "mal_id": 37095, + "title": "Violet Evergarden: Kitto \"Ai\" wo Shiru Hi ga Kuru no Darou", + "english": "Violet Evergarden: Special", + "native": "ヴァイオレット・エヴァーガーデン きっと\"愛\"を知る日が来るのだろう", + "synonyms": [ + "فيوليت: رسالة" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21877, + "mal_id": 21877, + "title": "High Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37141, + "mal_id": 37141, + "title": "Hataraku Saibou", + "english": "Cells at Work!", + "native": "はたらく細胞", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101351, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden, Black Salt Cage", + "幸福甜蜜生活" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36873, + "mal_id": 36873, + "title": "Back Street Girls: Gokudolls", + "english": "Back Street Girls: Gokudols", + "native": "Back Street Girls -ゴクドルズ", + "synonyms": [ + "Back Street Girls: Washira Idol Hajimemashita.", + "Gokudols" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99540, + "mal_id": 35946, + "title": "Nanatsu no Taizai Movie: Tenkuu no Torawarebito", + "english": "The Seven Deadly Sins the Movie: Prisoners of the Sky", + "native": "劇場版 七つの大罪 天空の囚われ人", + "synonyms": [ + "ศึกตำนาน 7 อัศวิน: นักโทษแห่งท้องนภา ", + "Семь смертных грехов: Узники небес" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35946, + "mal_id": 35946, + "title": "Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito", + "english": "The Seven Deadly Sins the Movie: Prisoners of the Sky", + "native": "劇場版 七つの大罪 天空の囚われ人", + "synonyms": [ + "The Seven Deadly Sins: Prisoners of the Sky" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 1.1275, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 100483, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuragisou no Yuuna-san", + "Yuuna of Yuragi Manor", + "Yunas Geisterhaus", + "Yûna de la pension Yuragi", + "ยูรากิโซ ที่นี่ผีน่ารักนะ " + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20574, + "mal_id": 21877, + "title": "Hi Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21877, + "mal_id": 21877, + "title": "High Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20574, + "mal_id": 21877, + "title": "Hi Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36873, + "mal_id": 36873, + "title": "Back Street Girls: Gokudolls", + "english": "Back Street Girls: Gokudols", + "native": "Back Street Girls -ゴクドルズ", + "synonyms": [ + "Back Street Girls: Washira Idol Hajimemashita.", + "Gokudols" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20574, + "mal_id": 21877, + "title": "Hi Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37517, + "mal_id": 37517, + "title": "Happy Sugar Life", + "english": "Happy Sugar Life", + "native": "ハッピーシュガーライフ", + "synonyms": [ + "White Sugar Garden", + "Black Salt Cage" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 20574, + "mal_id": 21877, + "title": "Hi Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 37171, + "mal_id": 37171, + "title": "Asobi Asobase", + "english": "Asobi Asobase: Workshop of Fun", + "native": "あそびあそばせ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101361, + "mal_id": 37569, + "title": "Tenrou: Sirius the Jaeger", + "english": "Sirius the Jaeger", + "native": "天狼 Sirius the Jaeger", + "synonyms": [ + "Sirius" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101361, + "mal_id": 37569, + "title": "Tenrou: Sirius the Jaeger", + "english": "Sirius the Jaeger", + "native": "天狼 Sirius the Jaeger", + "synonyms": [ + "Sirius" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101361, + "mal_id": 37569, + "title": "Tenrou: Sirius the Jaeger", + "english": "Sirius the Jaeger", + "native": "天狼 Sirius the Jaeger", + "synonyms": [ + "Sirius" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101361, + "mal_id": 37569, + "title": "Tenrou: Sirius the Jaeger", + "english": "Sirius the Jaeger", + "native": "天狼 Sirius the Jaeger", + "synonyms": [ + "Sirius" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101231, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun", + "Shiki Oriori: O Sabor da Juventude" + ], + "format": "MOVIE", + "episodes": 3, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37396, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々(しきおりおり)", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun" + ], + "format": "Movie", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 8, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 0.9161, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101231, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun", + "Shiki Oriori: O Sabor da Juventude" + ], + "format": "MOVIE", + "episodes": 3, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101231, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun", + "Shiki Oriori: O Sabor da Juventude" + ], + "format": "MOVIE", + "episodes": 3, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 21877, + "mal_id": 21877, + "title": "High Score Girl", + "english": "Hi Score Girl", + "native": "ハイスコアガール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101231, + "mal_id": 37396, + "title": "Shikioriori", + "english": "Flavors of Youth", + "native": "詩季織々", + "synonyms": [ + "肆式青春", + "Si Shi Qing Chun", + "Shiki Oriori: O Sabor da Juventude" + ], + "format": "MOVIE", + "episodes": 3, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101117, + "mal_id": 36704, + "title": "Free!: Dive to the Future", + "english": "Free! -Dive to the Future-", + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36873, + "mal_id": 36873, + "title": "Back Street Girls: Gokudolls", + "english": "Back Street Girls: Gokudols", + "native": "Back Street Girls -ゴクドルズ", + "synonyms": [ + "Back Street Girls: Washira Idol Hajimemashita.", + "Gokudols" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 1.0507, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101925, + "mal_id": 37491, + "title": "Gintama.: Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama.: Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇2", + "synonyms": [ + "Gintama.: Silver Soul Arc 2", + "Gintama. Silver Soul Arc Season 2", + "Gintama.: Shirogane no Tamashii-hen Season 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37491, + "mal_id": 37491, + "title": "Gintama. Shirogane no Tamashii-hen - Kouhan-sen", + "english": "Gintama. Silver Soul Arc - Second Half War", + "native": "銀魂. 銀ノ魂篇 後半戦", + "synonyms": [ + "Gintama. Silver Soul Arc 2" + ], + "format": "TV", + "episodes": 14, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 9, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.9587, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37210, + "mal_id": 37210, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu", + "english": "How Not to Summon a Demon Lord", + "native": "異世界魔王と召喚少女の奴隷魔術", + "synonyms": [ + "The Otherworldly Demon King and the Summoner Girls' Slave Magic" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101289, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarök & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女", + "synonyms": [ + "The Master of Ragnarok & Blesser of Einherjar", + "ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100749, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future", + "Miraï, ma petite sœur", + "未来的未来", + "Mirai: Mi pequeña hermana", + "Μιράι, η μικρή μου αδελφή", + "Мірай", + "Мирай из будущего", + "Mano mažoji sesutė Mirai", + "Болашақтан келген Мирай", + "Mirai tulevikust", + "Gələcəkdən olan Miray", + "Miraï, min lillasyster", + "Mirai, min lillasyster" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 36936, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100749, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future", + "Miraï, ma petite sœur", + "未来的未来", + "Mirai: Mi pequeña hermana", + "Μιράι, η μικρή μου αδελφή", + "Мірай", + "Мирай из будущего", + "Mano mažoji sesutė Mirai", + "Болашақтан келген Мирай", + "Mirai tulevikust", + "Gələcəkdən olan Miray", + "Miraï, min lillasyster", + "Mirai, min lillasyster" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100749, + "mal_id": 36936, + "title": "Mirai no Mirai", + "english": "Mirai", + "native": "未来のミライ", + "synonyms": [ + "Mirai of the Future", + "Miraï, ma petite sœur", + "未来的未来", + "Mirai: Mi pequeña hermana", + "Μιράι, η μικρή μου αδελφή", + "Мірай", + "Мирай из будущего", + "Mano mažoji sesutė Mirai", + "Болашақтан келген Мирай", + "Mirai tulevikust", + "Gələcəkdən olan Miray", + "Miraï, min lillasyster", + "Mirai, min lillasyster" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37569, + "mal_id": 37569, + "title": "Sirius", + "english": "Sirius the Jaeger", + "native": "天狼〈シリウス〉 Sirius the Jaeger", + "synonyms": [ + "Tenrou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37105, + "mal_id": 37105, + "title": "Grand Blue", + "english": "Grand Blue Dreaming", + "native": "ぐらんぶる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.911, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 36873, + "mal_id": 36873, + "title": "Back Street Girls: Gokudolls", + "english": "Back Street Girls: Gokudols", + "native": "Back Street Girls -ゴクドルズ", + "synonyms": [ + "Back Street Girls: Washira Idol Hajimemashita.", + "Gokudols" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 4, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 98658, + "mal_id": 35503, + "title": "Shoujo☆Kageki Revue Starlight", + "english": "Revue Starlight", + "native": "少女☆歌劇 レヴュー・スタァライト", + "synonyms": [ + "Girls' Musical Revue Starlight", + "少女☆歌剧 Revue Starlight" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 36704, + "mal_id": 36704, + "title": "Free! Dive to the Future", + "english": null, + "native": "Free!-Dive to the Future-", + "synonyms": [ + "Free! 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 12, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101045, + "mal_id": 37259, + "title": "Hanebado!", + "english": "HANEBADO!", + "native": "はねバド!", + "synonyms": [ + "Hanebado! - The Badminton Play of Ayano Hanesaki!", + "Hanebad!", + "ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 37259, + "mal_id": 37259, + "title": "Hanebado!", + "english": "Hanebado!", + "native": "はねバド!", + "synonyms": [ + "The Badminton play of Ayano Hanesaki!" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 2, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101045, + "mal_id": 37259, + "title": "Hanebado!", + "english": "HANEBADO!", + "native": "はねバド!", + "synonyms": [ + "Hanebado! - The Badminton Play of Ayano Hanesaki!", + "Hanebad!", + "ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.8696, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101045, + "mal_id": 37259, + "title": "Hanebado!", + "english": "HANEBADO!", + "native": "はねバド!", + "synonyms": [ + "Hanebado! - The Badminton Play of Ayano Hanesaki!", + "Hanebad!", + "ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36817, + "mal_id": 36817, + "title": "Sunohara-sou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 5, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 36726, + "mal_id": 36726, + "title": "Yuragi-sou no Yuuna-san", + "english": "Yuuna and the Haunted Hot Springs", + "native": "ゆらぎ荘の幽奈さん", + "synonyms": [ + "Yuuna of Yuragi Manor" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 14, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.9815, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 35760, + "mal_id": 35760, + "title": "Shingeki no Kyojin Season 3", + "english": "Attack on Titan Season 3", + "native": "進撃の巨人 Season3", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 23, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37446, + "mal_id": 37446, + "title": "Hyakuren no Haou to Seiyaku no Valkyria", + "english": "The Master of Ragnarok & Blesser of Einherjar", + "native": "百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉", + "synonyms": [ + "Hyakuren no Haou to Seiyaku no Ikusa Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 8, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100556, + "mal_id": 36817, + "title": "Sunoharasou no Kanrinin-san", + "english": "Miss Caretaker of Sunohara-sou", + "native": "すのはら荘の管理人さん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 35994, + "mal_id": 35994, + "title": "Satsuriku no Tenshi", + "english": "Angels of Death", + "native": "殺戮の天使", + "synonyms": [ + "Angel of Massacre", + "Angel of Slaughter" + ], + "format": "TV", + "episodes": 16, + "season": "SUMMER", + "year": 2018, + "start_date": { + "day": 6, + "month": 7, + "year": 2018 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2018-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2018-winter.json new file mode 100644 index 0000000..0522063 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2018-winter.json @@ -0,0 +1,5739 @@ +{ + "year": 2018, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 21827, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "ויולט אברגרדן", + "فيوليت", + "紫罗兰永恒花园" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 98460, + "mal_id": 35120, + "title": "DEVILMAN crybaby", + "english": "Devilman Crybaby", + "native": "DEVILMAN crybaby", + "synonyms": [ + "デビルマン クライベイビー", + "דווילמן: בכיין", + "طفل الشيطان", + "เดวิลแมน ครายเบบี้" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 98444, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 99457, + "mal_id": 35851, + "title": "Sayonara no Asa ni Yakusoku no Hana wo Kazarou", + "english": "Maquia: When the Promised Flower Blooms", + "native": "さよならの朝に約束の花をかざろう", + "synonyms": [ + "SayoAsa", + "さよあさ", + " Maquia - Decoriamo la mattina dell'addio con i fiori promessi", + "Maquia - Eine unsterbliche Liebesgeschichte", + "Укрась прощальное утро цветами обещания", + "Maquia: Una historia de amor eterno" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 2, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97832, + "mal_id": 34382, + "title": "citrus", + "english": "Citrus", + "native": "citrus", + "synonyms": [ + "Цитрус" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 98635, + "mal_id": 35466, + "title": "ReLIFE: Kanketsu-hen", + "english": "ReLIFE: Final Arc", + "native": "ReLIFE 完結編", + "synonyms": [ + "ReLIFE OVA", + "Повторная жизнь ОВА" + ], + "format": "OVA", + "episodes": 4, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 21665, + "mal_id": 32827, + "title": "B: The Beginning", + "english": "B: The Beginning", + "native": "B: The Beginning", + "synonyms": [ + "Perfect Bones", + "بي: البداية" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 98384, + "mal_id": 34944, + "title": "Bungou Stray Dogs: DEAD APPLE", + "english": "Bungo Stray Dogs: DEAD APPLE", + "native": "文豪ストレイドッグス DEAD APPLE", + "synonyms": [ + "Bungou Stray Dogs Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 98762, + "mal_id": 35608, + "title": "Chuunibyou demo Koi ga Shitai!: Take On Me", + "english": "Love, Chunibyo & Other Delusions: Take on Me", + "native": "映画 中二病でも恋がしたい! -Take On Me-", + "synonyms": [ + "Miłość, gimbaza i kosmiczna faza! Za mną leć" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 97768, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [ + "บันทึกสงครามแกรนเครสท์" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 99940, + "mal_id": 36124, + "title": "Itou Junji: Collection", + "english": "Junji Ito Collection", + "native": "伊藤潤二「コレクション」", + "synonyms": [ + "จุนจิ อิโต้ คอลเลคชั่นสยอง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 100332, + "mal_id": 36548, + "title": "Kokkoku", + "english": "KOKKOKU", + "native": "刻刻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 33352, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 35849, + "mal_id": 35849, + "title": "Darling in the FranXX", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 35120, + "mal_id": 35120, + "title": "Devilman: Crybaby", + "english": "Devilman: Crybaby", + "native": "DEVILMAN crybaby", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 5, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 35073, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 9, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 34497, + "mal_id": 34497, + "title": "Death March kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 34382, + "mal_id": 34382, + "title": "Citrus", + "english": "Citrus", + "native": "シトラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 34798, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurukyan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 4, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 35851, + "mal_id": 35851, + "title": "Sayonara no Asa ni Yakusoku no Hana wo Kazarou", + "english": "Maquia: When the Promised Flower Blooms", + "native": "さよならの朝に約束の花をかざろう", + "synonyms": [ + "Let's Decorate the Promised Flowers in the Morning of Farewells", + "SayoAsa" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 2, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 35466, + "mal_id": 35466, + "title": "ReLIFE: Kanketsu-hen", + "english": "ReLIFE: Final Arc", + "native": "ReLIFE 完結編", + "synonyms": [], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 35222, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 32827, + "mal_id": 32827, + "title": "B: The Beginning", + "english": "B: The Beginning", + "native": "B: The Beginning", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 34279, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 34944, + "mal_id": 34944, + "title": "Bungou Stray Dogs: Dead Apple", + "english": "Bungo Stray Dogs: Dead Apple", + "native": "文豪ストレイドッグス DEAD APPLE", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 35608, + "mal_id": 35608, + "title": "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", + "english": "Love, Chunibyo & Other Delusions!: Take On Me", + "native": "映画 中二病でも恋がしたい!-Take On Me-", + "synonyms": [ + "Eiga Chuunibyou demo Koi ga Shitai! Take On Me" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 33047, + "mal_id": 33047, + "title": "Fate/Extra: Last Encore", + "english": "Fate/Extra: Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 28, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 35905, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 34964, + "mal_id": 34964, + "title": "Killing Bites", + "english": "Killing Bites", + "native": "キリングバイツ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 36124, + "mal_id": 36124, + "title": "Itou Junji: Collection", + "english": "Junji Ito Collection", + "native": "伊藤潤二「コレクション」", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 5, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21827, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "ויולט אברגרדן", + "فيوليت", + "紫罗兰永恒花园" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 33352, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21827, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "ויולט אברגרדן", + "فيوليت", + "紫罗兰永恒花园" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21827, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "ויולט אברגרדן", + "فيوليت", + "紫罗兰永恒花园" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 35073, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 9, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 21827, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "ויולט אברגרדן", + "فيوليت", + "紫罗兰永恒花园" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35849, + "mal_id": 35849, + "title": "Darling in the FranXX", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34964, + "mal_id": 34964, + "title": "Killing Bites", + "english": "Killing Bites", + "native": "キリングバイツ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 99423, + "mal_id": 35849, + "title": "Darling in the Franxx", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [ + "DitF", + "DarliFra", + "Любимый во Франксе" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34382, + "mal_id": 34382, + "title": "Citrus", + "english": "Citrus", + "native": "シトラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 98460, + "mal_id": 35120, + "title": "DEVILMAN crybaby", + "english": "Devilman Crybaby", + "native": "DEVILMAN crybaby", + "synonyms": [ + "デビルマン クライベイビー", + "דווילמן: בכיין", + "طفل الشيطان", + "เดวิลแมน ครายเบบี้" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35120, + "mal_id": 35120, + "title": "Devilman: Crybaby", + "english": "Devilman: Crybaby", + "native": "DEVILMAN crybaby", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 5, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 19, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 99539, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "The Seven Deadly Sins: Die Rückkehr der Gebote", + "ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ", + "The Seven Deadly Sins: Odrodzenie przykazań", + "Семь смертных грехов: Возрождение Заповедей" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 35073, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 9, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 33352, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 21, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 98437, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [ + "Over Lord 2", + "โอเวอร์ลอร์ด ภาค 2", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 1.0231, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 35905, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 98034, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. Season 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 99468, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san", + "Takagi-san: Experta en Bromas Pesadas", + "טאקאגי-סאן אלופת ההקנטות", + "擅长捉弄的高木同学", + "سيد الدعابة تاكاجي-سان", + "Nhất quỷ Nhì ma, Thứ ba Takagi", + "Nicht schon wieder, Takagi-san", + "แกล้งนัก รักนะ รู้ยัง ", + "Τακάγκι-σαν, το Αρχιπειραχτήρι" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 35073, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 9, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 99426, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than the Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu Yorimo Toui Basho", + "Sora yorimo Tooi Basho", + "Uchuu yori mo Tooi Basho", + "Yorimoi", + "מקום רחוק יותר מהיקום", + "ตามหัวใจไปสุดขอบฟ้า", + "ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98444, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34798, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurukyan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 4, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98444, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 98444, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 99457, + "mal_id": 35851, + "title": "Sayonara no Asa ni Yakusoku no Hana wo Kazarou", + "english": "Maquia: When the Promised Flower Blooms", + "native": "さよならの朝に約束の花をかざろう", + "synonyms": [ + "SayoAsa", + "さよあさ", + " Maquia - Decoriamo la mattina dell'addio con i fiori promessi", + "Maquia - Eine unsterbliche Liebesgeschichte", + "Укрась прощальное утро цветами обещания", + "Maquia: Una historia de amor eterno" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 2, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 35851, + "mal_id": 35851, + "title": "Sayonara no Asa ni Yakusoku no Hana wo Kazarou", + "english": "Maquia: When the Promised Flower Blooms", + "native": "さよならの朝に約束の花をかざろう", + "synonyms": [ + "Let's Decorate the Promised Flowers in the Morning of Farewells", + "SayoAsa" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 2, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97832, + "mal_id": 34382, + "title": "citrus", + "english": "Citrus", + "native": "citrus", + "synonyms": [ + "Цитрус" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34382, + "mal_id": 34382, + "title": "Citrus", + "english": "Citrus", + "native": "シトラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97832, + "mal_id": 34382, + "title": "citrus", + "english": "Citrus", + "native": "citrus", + "synonyms": [ + "Цитрус" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35222, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 34497, + "mal_id": 34497, + "title": "Death March kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 6, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.8662, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 97907, + "mal_id": 34497, + "title": "Death March Kara Hajimaru Isekai Kyousoukyoku", + "english": "Death March to the Parallel World Rhapsody", + "native": "デスマーチからはじまる異世界狂想曲", + "synonyms": [ + "โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช", + "Pawai Maut Berujung Rapsodi Dunia Lain" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 98635, + "mal_id": 35466, + "title": "ReLIFE: Kanketsu-hen", + "english": "ReLIFE: Final Arc", + "native": "ReLIFE 完結編", + "synonyms": [ + "ReLIFE OVA", + "Повторная жизнь ОВА" + ], + "format": "OVA", + "episodes": 4, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 35466, + "mal_id": 35466, + "title": "ReLIFE: Kanketsu-hen", + "english": "ReLIFE: Final Arc", + "native": "ReLIFE 完結編", + "synonyms": [], + "format": "Special", + "episodes": 4, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.8783, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 98635, + "mal_id": 35466, + "title": "ReLIFE: Kanketsu-hen", + "english": "ReLIFE: Final Arc", + "native": "ReLIFE 完結編", + "synonyms": [ + "ReLIFE OVA", + "Повторная жизнь ОВА" + ], + "format": "OVA", + "episodes": 4, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21665, + "mal_id": 32827, + "title": "B: The Beginning", + "english": "B: The Beginning", + "native": "B: The Beginning", + "synonyms": [ + "Perfect Bones", + "بي: البداية" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 32827, + "mal_id": 32827, + "title": "B: The Beginning", + "english": "B: The Beginning", + "native": "B: The Beginning", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 21665, + "mal_id": 32827, + "title": "B: The Beginning", + "english": "B: The Beginning", + "native": "B: The Beginning", + "synonyms": [ + "Perfect Bones", + "بي: البداية" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35222, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34964, + "mal_id": 34964, + "title": "Killing Bites", + "english": "Killing Bites", + "native": "キリングバイツ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 34382, + "mal_id": 34382, + "title": "Citrus", + "english": "Citrus", + "native": "シトラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 98503, + "mal_id": 35222, + "title": "Gakuen Babysitters", + "english": "School Babysitters", + "native": "学園ベビーシッターズ", + "synonyms": [ + "学园奶爸", + "นักเรียนพี่เลี้ยงเด็ก" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35849, + "mal_id": 35849, + "title": "Darling in the FranXX", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 98385, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "KoiAme", + "Love is Like after the Rain", + "Depois da Chuva", + "Dopo la pioggia", + "Après la pluie", + "เส้นทางชีวิต ลิขิตหัวใจ", + "Después de la lluvia" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98384, + "mal_id": 34944, + "title": "Bungou Stray Dogs: DEAD APPLE", + "english": "Bungo Stray Dogs: DEAD APPLE", + "native": "文豪ストレイドッグス DEAD APPLE", + "synonyms": [ + "Bungou Stray Dogs Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 34944, + "mal_id": 34944, + "title": "Bungou Stray Dogs: Dead Apple", + "english": "Bungo Stray Dogs: Dead Apple", + "native": "文豪ストレイドッグス DEAD APPLE", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 3, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 0.9128, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 98384, + "mal_id": 34944, + "title": "Bungou Stray Dogs: DEAD APPLE", + "english": "Bungo Stray Dogs: DEAD APPLE", + "native": "文豪ストレイドッグス DEAD APPLE", + "synonyms": [ + "Bungou Stray Dogs Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 3, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 34964, + "mal_id": 34964, + "title": "Killing Bites", + "english": "Killing Bites", + "native": "キリングバイツ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98762, + "mal_id": 35608, + "title": "Chuunibyou demo Koi ga Shitai!: Take On Me", + "english": "Love, Chunibyo & Other Delusions: Take on Me", + "native": "映画 中二病でも恋がしたい! -Take On Me-", + "synonyms": [ + "Miłość, gimbaza i kosmiczna faza! Za mną leć" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 35608, + "mal_id": 35608, + "title": "Chuunibyou demo Koi ga Shitai! Movie: Take On Me", + "english": "Love, Chunibyo & Other Delusions!: Take On Me", + "native": "映画 中二病でも恋がしたい!-Take On Me-", + "synonyms": [ + "Eiga Chuunibyou demo Koi ga Shitai! Take On Me" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.9312, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 98762, + "mal_id": 35608, + "title": "Chuunibyou demo Koi ga Shitai!: Take On Me", + "english": "Love, Chunibyo & Other Delusions: Take on Me", + "native": "映画 中二病でも恋がしたい! -Take On Me-", + "synonyms": [ + "Miłość, gimbaza i kosmiczna faza! Za mną leć" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 97768, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [ + "บันทึกสงครามแกรนเครสท์" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 34279, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 6, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 97768, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [ + "บันทึกสงครามแกรนเครสท์" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 33047, + "mal_id": 33047, + "title": "Fate/Extra: Last Encore", + "english": "Fate/Extra: Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 28, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 97768, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [ + "บันทึกสงครามแกรนเครสท์" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 9, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 97768, + "mal_id": 34279, + "title": "Grancrest Senki", + "english": "Record of Grancrest War", + "native": "グランクレスト戦記", + "synonyms": [ + "บันทึกสงครามแกรนเครสท์" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 4, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 35073, + "mal_id": 35073, + "title": "Overlord II", + "english": "Overlord II", + "native": "オーバーロードⅡ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 9, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 98549, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "PTE", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34798, + "mal_id": 34798, + "title": "Yuru Camp△", + "english": "Laid-Back Camp", + "native": "ゆるキャン△", + "synonyms": [ + "Yurukyan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 4, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 33047, + "mal_id": 33047, + "title": "Fate/Extra: Last Encore", + "english": "Fate/Extra: Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 28, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 34984, + "mal_id": 34984, + "title": "Koi wa Ameagari no You ni", + "english": "After the Rain", + "native": "恋は雨上がりのように", + "synonyms": [ + "Koi wa Amaagari no You ni", + "Love is Like after the Rain", + "KoiAme" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 12, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 35849, + "mal_id": 35849, + "title": "Darling in the FranXX", + "english": "DARLING in the FRANXX", + "native": "ダーリン・イン・ザ・フランキス", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 22, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 21717, + "mal_id": 33047, + "title": "Fate/EXTRA Last Encore", + "english": "Fate/EXTRA Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [ + "Oblitus Copernican Theory", + "Illustrias Geocentric Theory", + "פייט/אקסטרה ההדרן האחרון", + "Судьба/Дополнение: Последний вызов на бис" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 35905, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 36838, + "mal_id": 36838, + "title": "Gintama. Shirogane no Tamashii-hen", + "english": "Gintama. Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 35860, + "mal_id": 35860, + "title": "Karakai Jouzu no Takagi-san", + "english": "Teasing Master Takagi-san", + "native": "からかい上手の高木さん", + "synonyms": [ + "Skilled Teaser Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 100784, + "mal_id": 36838, + "title": "Gintama.: Shirogane no Tamashii-hen", + "english": "Gintama.: Silver Soul Arc", + "native": "銀魂. 銀ノ魂篇", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 33352, + "mal_id": 33352, + "title": "Violet Evergarden", + "english": "Violet Evergarden", + "native": "ヴァイオレット・エヴァーガーデン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 11, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 99940, + "mal_id": 36124, + "title": "Itou Junji: Collection", + "english": "Junji Ito Collection", + "native": "伊藤潤二「コレクション」", + "synonyms": [ + "จุนจิ อิโต้ คอลเลคชั่นสยอง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 36124, + "mal_id": 36124, + "title": "Itou Junji: Collection", + "english": "Junji Ito Collection", + "native": "伊藤潤二「コレクション」", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 5, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 99940, + "mal_id": 36124, + "title": "Itou Junji: Collection", + "english": "Junji Ito Collection", + "native": "伊藤潤二「コレクション」", + "synonyms": [ + "จุนจิ อิโต้ คอลเลคชั่นสยอง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 35905, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 35905, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 8, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 9, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 35839, + "mal_id": 35839, + "title": "Sora yori mo Tooi Basho", + "english": "A Place Further Than The Universe", + "native": "宇宙よりも遠い場所", + "synonyms": [ + "Uchuu yori mo Tooi Basho", + "A Story That Leads to the Antarctica", + "Yorimoi" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 2, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 34577, + "mal_id": 34577, + "title": "Nanatsu no Taizai: Imashime no Fukkatsu", + "english": "The Seven Deadly Sins: Revival of the Commandments", + "native": "七つの大罪 戒めの復活", + "synonyms": [ + "Seven Deadly Sins Season 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 13, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 34612, + "mal_id": 34612, + "title": "Saiki Kusuo no Ψ-nan 2", + "english": "The Disastrous Life of Saiki K. 2", + "native": "斉木楠雄のΨ難 2", + "synonyms": [ + "Saiki Kusuo no Psi Nan 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 17, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 99507, + "mal_id": 35905, + "title": "Ryuuou no Oshigoto!", + "english": "The Ryuo's Work is Never Done!", + "native": "りゅうおうのおしごと!", + "synonyms": [ + "สอนหมากหนูที คุณพี่จ้าวมังกร!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 33047, + "mal_id": 33047, + "title": "Fate/Extra: Last Encore", + "english": "Fate/Extra: Last Encore", + "native": "Fate/EXTRA Last Encore", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 28, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100332, + "mal_id": 36548, + "title": "Kokkoku", + "english": "KOKKOKU", + "native": "刻刻", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "year": 2018, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 35330, + "mal_id": 35330, + "title": "Poputepipikku", + "english": "Pop Team Epic", + "native": "ポプテピピック", + "synonyms": [ + "PPTP", + "Poptepipic" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2018, + "start_date": { + "day": 7, + "month": 1, + "year": 2018 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2019-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2019-fall.json new file mode 100644 index 0000000..9168478 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2019-fall.json @@ -0,0 +1,6958 @@ +{ + "year": 2019, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 108928, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [ + "The Seven Deadly Sins: Wrath of the Gods", + "ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ", + "Семь смертных грехов: Гнев богов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 108553, + "mal_id": 39565, + "title": "Boku no Hero Academia THE MOVIE: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "Boku no Hero Academia the Movie 2", + "My Hero Academia: El Despertar de los Héroes", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 112625, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K.", + " Starting Arc" + ], + "format": "ONA", + "episodes": 6, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 103275, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [ + "FGO: Babylonia", + "フェイト/グランドオーダー -絶対魔獣戦線バビロニア-", + "Судьба/Великий приказ: Вавилония" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 108307, + "mal_id": 39491, + "title": "PSYCHO-PASS 3", + "english": "PSYCHO-PASS 3", + "native": "PSYCHO-PASS サイコパス3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 100675, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saekano Movie", + "Saekano Fine", + "Saenai Heroine no Sodatekata Movie", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 101349, + "mal_id": 37525, + "title": "Babylon", + "english": "BABYLON", + "native": "バビロン", + "synonyms": [ + "Babilonia" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 38408, + "mal_id": 38408, + "title": "Boku no Hero Academia 4th Season", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 39195, + "mal_id": 39195, + "title": "Beastars", + "english": null, + "native": "BEASTARS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 39701, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 9, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 38659, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者 ~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "Shinchou Yuusha: Kono Yuusha ga Ore Tsueee Kuse ni Shinchou Sugiru" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 39565, + "mal_id": 39565, + "title": "Boku no Hero Academia the Movie 2: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "My Hero Academia the Movie 2: Heroes:Rising" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 12, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 39196, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 39468, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 38572, + "mal_id": 38572, + "title": "Assassins Pride", + "english": null, + "native": "アサシンズプライド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 38414, + "mal_id": 38414, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna", + "english": "Re:ZERO -Starting Life in Another World- The Frozen Bond", + "native": "Re:ゼロから始める異世界生活『氷結の絆』", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu OVA 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 11, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 38084, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order: Absolute Demonic Front - Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 39491, + "mal_id": 39491, + "title": "Psycho-Pass 3", + "english": "Psycho-Pass 3", + "native": "PSYCHO-PASS サイコパス 3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 25, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 40542, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K. Restart Arc", + "Saiki Kusuo no Ψ-nan: Saishidou-hen", + "Saiki Kusuo no Sainan: Saishidou-hen" + ], + "format": "ONA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 12, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 39030, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚! けものみち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 39539, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 36885, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saenai Heroine no Sodatekata Movie", + "Saekano: How to Raise a Boring Girlfriend Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38408, + "mal_id": 38408, + "title": "Boku no Hero Academia 4th Season", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 104276, + "mal_id": 38408, + "title": "Boku no Hero Academia 4", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア4", + "synonyms": [ + "BNHA 4", + "MHA 4", + "我的英雄学院 4", + "我的英雄学院第四季", + "มายฮีโร่ อคาเดเมีย ภาค 4", + "أكاديميتي للأبطال", + "Моя геройская академия 4" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39195, + "mal_id": 39195, + "title": "Beastars", + "english": null, + "native": "BEASTARS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39468, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 107660, + "mal_id": 39195, + "title": "BEASTARS", + "english": "BEASTARS", + "native": "BEASTARS", + "synonyms": [ + "ビースターズ", + "BEASTARS - O Lobo Bom", + "חייתיים", + "บีสตาร์", + "Выдающиеся звери", + "براءة ذئب", + "비스타즈" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38084, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order: Absolute Demonic Front - Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9086, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108759, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "SAOIV", + "SAO4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 108928, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [ + "The Seven Deadly Sins: Wrath of the Gods", + "ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ", + "Семь смертных грехов: Гнев богов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 39701, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 9, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 108928, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [ + "The Seven Deadly Sins: Wrath of the Gods", + "ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ", + "Семь смертных грехов: Гнев богов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.8714, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 108928, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [ + "The Seven Deadly Sins: Wrath of the Gods", + "ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ", + "Семь смертных грехов: Гнев богов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 108928, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [ + "The Seven Deadly Sins: Wrath of the Gods", + "ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ", + "Семь смертных грехов: Гнев богов" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38659, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者 ~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "Shinchou Yuusha: Kono Yuusha ga Ore Tsueee Kuse ni Shinchou Sugiru" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39491, + "mal_id": 39491, + "title": "Psycho-Pass 3", + "english": "Psycho-Pass 3", + "native": "PSYCHO-PASS サイコパス 3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 25, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 19, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105156, + "mal_id": 38659, + "title": "Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru", + "english": "Cautious Hero: The Hero Is Overpowered but Overly Cautious", + "native": "慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~", + "synonyms": [ + "This Hero is Invincible but \"Too Cautious\"", + "Shinchou Yuusha", + "慎重勇者~这个勇者明明超强却过分慎重~", + "ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9423, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39468, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 109963, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "食戟之灵:神之皿", + "ยอดนักปรุงโซมะ ภาค 4" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108553, + "mal_id": 39565, + "title": "Boku no Hero Academia THE MOVIE: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "Boku no Hero Academia the Movie 2", + "My Hero Academia: El Despertar de los Héroes", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39565, + "mal_id": 39565, + "title": "Boku no Hero Academia the Movie 2: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "My Hero Academia the Movie 2: Heroes:Rising" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 12, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 1.2, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108553, + "mal_id": 39565, + "title": "Boku no Hero Academia THE MOVIE: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "Boku no Hero Academia the Movie 2", + "My Hero Academia: El Despertar de los Héroes", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38408, + "mal_id": 38408, + "title": "Boku no Hero Academia 4th Season", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108553, + "mal_id": 39565, + "title": "Boku no Hero Academia THE MOVIE: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "Boku no Hero Academia the Movie 2", + "My Hero Academia: El Despertar de los Héroes", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.8918, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108553, + "mal_id": 39565, + "title": "Boku no Hero Academia THE MOVIE: Heroes:Rising", + "english": "My Hero Academia: Heroes Rising", + "native": "僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング", + "synonyms": [ + "Boku no Hero Academia the Movie 2", + "My Hero Academia: El Despertar de los Héroes", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก", + "มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 39196, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 0.8881, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39468, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 107693, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School, Iruma-kun!", + "入间同学入魔了!", + "อิรุมะคุง พจญในแดนปีศาจ!" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.8896, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104464, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI: Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [ + "อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39468, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.8796, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.8611, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 108268, + "mal_id": 39468, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen", + "english": "Ascendance of a Bookworm", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません", + "synonyms": [ + "Ascendance of a Bookworm: I'll do anything to become a librarian", + "爱书的下克上:为了成为图书管理员不择手段!", + "หนอนหนังสือยึดอำนาจ " + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 39701, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 9, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38572, + "mal_id": 38572, + "title": "Assassins Pride", + "english": null, + "native": "アサシンズプライド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38084, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order: Absolute Demonic Front - Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39539, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104722, + "mal_id": 38572, + "title": "Assassins Pride", + "english": "ASSASSINS PRIDE", + "native": "アサシンズプライド", + "synonyms": [ + "Assassin's Pride", + "แอสแซสซินส์ ไพรด์)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112625, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K.", + " Starting Arc" + ], + "format": "ONA", + "episodes": 6, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40542, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K. Restart Arc", + "Saiki Kusuo no Ψ-nan: Saishidou-hen", + "Saiki Kusuo no Sainan: Saishidou-hen" + ], + "format": "ONA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 12, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9217, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112625, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K.", + " Starting Arc" + ], + "format": "ONA", + "episodes": 6, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.8928, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112625, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K.", + " Starting Arc" + ], + "format": "ONA", + "episodes": 6, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112625, + "mal_id": 40542, + "title": "Saiki Kusuo no Ψ-nan: Ψ-shidou-hen", + "english": "The Disastrous Life of Saiki K.: Reawakened", + "native": "斉木楠雄のΨ難 Ψ始動編", + "synonyms": [ + "The Disastrous Life of Saiki K.", + " Starting Arc" + ], + "format": "ONA", + "episodes": 6, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 12, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39523, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "CHOYOYU!: High School Prodigies Have It Easy Even in Another World!", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "Super Human High Schoolers Are in Another World", + "But Seem to be Living in Comfort!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9035, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9035, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 39701, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 9, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.8789, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 108388, + "mal_id": 39523, + "title": "Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu!", + "english": "High School Prodigies Have It Easy Even In Another World", + "native": "超人高校生たちは異世界でも余裕で生き抜くようです!", + "synonyms": [ + "CHOYOYU!", + "¡Los prodigios de bachillerato han llegado a otro mundo!", + "Les super lycéens arrivent dans un autre monde!", + "I prodigi delle superiori sono arrivati in un altro mondo!", + "Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen!", + "Сверходарённые школьники прибыли в другой мир", + "เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39491, + "mal_id": 39491, + "title": "Psycho-Pass 3", + "english": "Psycho-Pass 3", + "native": "PSYCHO-PASS サイコパス 3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 25, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 23, + "score": 1.0797, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 1.0246, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38408, + "mal_id": 38408, + "title": "Boku no Hero Academia 4th Season", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 0.9789, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 110229, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn!: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn 2", + "Boku-tachi wa Benkyou ga Dekinai 2nd Season", + "Boku-tachi wa Benkyou ga Dekinai!", + "เรื่องนี้ตําราไม่มีสอน ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 103275, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [ + "FGO: Babylonia", + "フェイト/グランドオーダー -絶対魔獣戦線バビロニア-", + "Судьба/Великий приказ: Вавилония" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38084, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order: Absolute Demonic Front - Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 103275, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [ + "FGO: Babylonia", + "フェイト/グランドオーダー -絶対魔獣戦線バビロニア-", + "Судьба/Великий приказ: Вавилония" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.9156, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 103275, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [ + "FGO: Babylonia", + "フェイト/グランドオーダー -絶対魔獣戦線バビロニア-", + "Судьба/Великий приказ: Вавилония" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 103275, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order Absolute Demonic Front: Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [ + "FGO: Babylonia", + "フェイト/グランドオーダー -絶対魔獣戦線バビロニア-", + "Судьба/Великий приказ: Вавилония" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 1.2143, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38572, + "mal_id": 38572, + "title": "Assassins Pride", + "english": null, + "native": "アサシンズプライド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39195, + "mal_id": 39195, + "title": "Beastars", + "english": null, + "native": "BEASTARS", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 10, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104052, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [ + "Star-Crossing Skies" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 108307, + "mal_id": 39491, + "title": "PSYCHO-PASS 3", + "english": "PSYCHO-PASS 3", + "native": "PSYCHO-PASS サイコパス3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39491, + "mal_id": 39491, + "title": "Psycho-Pass 3", + "english": "Psycho-Pass 3", + "native": "PSYCHO-PASS サイコパス 3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 25, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 108307, + "mal_id": 39491, + "title": "PSYCHO-PASS 3", + "english": "PSYCHO-PASS 3", + "native": "PSYCHO-PASS サイコパス3", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38408, + "mal_id": 38408, + "title": "Boku no Hero Academia 4th Season", + "english": "My Hero Academia Season 4", + "native": "僕のヒーローアカデミア", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 0.9634, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39539, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 24, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.9045, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 101227, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin", + "ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ!" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39539, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37393, + "mal_id": 37393, + "title": "Watashi, Nouryoku wa Heikinchi de tte Itta yo ne!", + "english": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "native": "私、能力は平均値でって言ったよね!", + "synonyms": [ + "Noukin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 7, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9086, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 39701, + "mal_id": 39701, + "title": "Nanatsu no Taizai: Kamigami no Gekirin", + "english": "The Seven Deadly Sins: Imperial Wrath of the Gods", + "native": "七つの大罪 神々の逆鱗", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 9, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 108478, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [ + "The Way of Life of a Man Loading a Magazine" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 1.2143, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 39196, + "mal_id": 39196, + "title": "Mairimashita! Iruma-kun", + "english": "Welcome to Demon School! Iruma-kun", + "native": "魔入りました!入間くん", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 101239, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": "Ahiru no Sora", + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100675, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saekano Movie", + "Saekano Fine", + "Saenai Heroine no Sodatekata Movie", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 36885, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saenai Heroine no Sodatekata Movie", + "Saekano: How to Raise a Boring Girlfriend Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100675, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saekano Movie", + "Saekano Fine", + "Saenai Heroine no Sodatekata Movie", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39030, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚! けものみち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100675, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saekano Movie", + "Saekano Fine", + "Saenai Heroine no Sodatekata Movie", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 100675, + "mal_id": 36885, + "title": "Saenai Heroine no Sodatekata Fine", + "english": "Saekano the Movie: Finale", + "native": "冴えない彼女の育てかた Fine", + "synonyms": [ + "Saekano Movie", + "Saekano Fine", + "Saenai Heroine no Sodatekata Movie", + "วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39030, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚! けものみち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107339, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚!けものみち", + "synonyms": [ + "Rise Up! Animal Road", + "旗扬!兽道", + "เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38483, + "mal_id": 38483, + "title": "Ore wo Suki nano wa Omae dake ka yo", + "english": "ORESUKI Are you the only one who loves me?", + "native": "俺を好きなのはお前だけかよ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37972, + "mal_id": 37972, + "title": "Hoshiai no Sora", + "english": "Stars Align", + "native": "星合の空", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38084, + "mal_id": 38084, + "title": "Fate/Grand Order: Zettai Majuu Sensen Babylonia", + "english": "Fate/Grand Order: Absolute Demonic Front - Babylonia", + "native": "Fate/Grand Order -絶対魔獣戦線バビロニア-", + "synonyms": [], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 5, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 104159, + "mal_id": 38328, + "title": "Azur Lane", + "english": "AZUR LANE", + "native": "アズールレーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101349, + "mal_id": 37525, + "title": "Babylon", + "english": "BABYLON", + "native": "バビロン", + "synonyms": [ + "Babilonia" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 38328, + "mal_id": 38328, + "title": "Azur Lane", + "english": "Azur Lane the Animation", + "native": "アズールレーン THE ANIMATION", + "synonyms": [ + "Azur Lane" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 3, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101349, + "mal_id": 37525, + "title": "Babylon", + "english": "BABYLON", + "native": "バビロン", + "synonyms": [ + "Babilonia" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40004, + "mal_id": 40004, + "title": "Bokutachi wa Benkyou ga Dekinai!", + "english": "We Never Learn: BOKUBEN Season 2", + "native": "ぼくたちは勉強ができない!", + "synonyms": [ + "BokuBen 2", + "We Never Learn! 2", + "We Can't Study", + "Bokutachi wa Benkyou ga Dekinai! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 101349, + "mal_id": 37525, + "title": "Babylon", + "english": "BABYLON", + "native": "バビロン", + "synonyms": [ + "Babilonia" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37403, + "mal_id": 37403, + "title": "Ahiru no Sora", + "english": null, + "native": "あひるの空", + "synonyms": [], + "format": "TV", + "episodes": 50, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 38889, + "mal_id": 38889, + "title": "Kono Oto Tomare! Part 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!", + "synonyms": [ + "Kono Oto Tomare! 2nd Season", + "Stop This Sound! 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 6, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39030, + "mal_id": 39030, + "title": "Hataage! Kemono Michi", + "english": "Kemono Michi: Rise Up", + "native": "旗揚! けものみち", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 2, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39597, + "mal_id": 39597, + "title": "Sword Art Online: Alicization - War of Underworld", + "english": "Sword Art Online: Alicization - War of Underworld", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 2nd Season", + "Sword Art Online III 2nd Season", + "SAO Alicization 2nd Season", + "Sword Art Online 3 2nd Season", + "SAO 3 2nd Season", + "SAO III 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 13, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9478, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39940, + "mal_id": 39940, + "title": "Shokugeki no Souma: Shin no Sara", + "english": "Food Wars! The Fourth Plate", + "native": "食戟のソーマ 神ノ皿", + "synonyms": [ + "Shokugeki no Soma 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 12, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 108891, + "mal_id": 38889, + "title": "Kono Oto Tomare! 2", + "english": "Kono Oto Tomare!: Sounds of Life Season 2", + "native": "この音とまれ!2", + "synonyms": [ + "Stop at this Sound! 2", + "ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2019, + "start_date": { + "year": 2019, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39539, + "mal_id": 39539, + "title": "No Guns Life", + "english": "No Guns Life", + "native": "ノー・ガンズ・ライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2019, + "start_date": { + "day": 11, + "month": 10, + "year": 2019 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2019-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2019-spring.json new file mode 100644 index 0000000..800dc13 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2019-spring.json @@ -0,0 +1,5667 @@ +{ + "year": 2019, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 104157, + "mal_id": 38329, + "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "english": "Rascal Does Not Dream of a Dreaming Girl", + "native": "青春ブタ野郎はゆめみる少女の夢を見ない", + "synonyms": [ + "青ブタ", + "Ao Buta ", + "青春猪头少年不会梦到怀梦美少女", + "Этот глупый свин не понимает мечту девочки-зайки. Фильм", + "Негодник, которому не снилась девушка-кролик. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 99425, + "mal_id": 35848, + "title": "Promare", + "english": "Promare", + "native": "プロメア", + "synonyms": [ + "普罗米亚", + "Промар" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 104325, + "mal_id": 38397, + "title": "Nande Koko ni Sensei ga!?", + "english": "Why the hell are you here, Teacher!?", + "native": "なんでここに先生が!?", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 104454, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [ + "Квартет попаданцев" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 105018, + "mal_id": 38594, + "title": "Kimi to, Nami ni Noretara", + "english": "Ride Your Wave", + "native": "きみと、波にのれたら", + "synonyms": [ + "El amor está en el agua", + "Піймай свою хвилю", + "На твоей волне", + "Mėgaukis savo banga", + "Uz tava viļņa", + "Сенің толқыныңда", + "Sənin dalğanda" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 105989, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 104217, + "mal_id": 38349, + "title": "Wotaku ni Koi wa Muzukashii OVA", + "english": null, + "native": "ヲタクに恋は難しい OVA", + "synonyms": [ + "WotaKoi", + "Wotaku ni Koi wa Muzukashii: Youth", + "Wotakoi: Love is Hard for Otaku OVA", + "WotaKoi: Sore wa, ikinari otozureta=koi", + "ヲタ恋: それは、いきなりおとづれた=恋", + "ヲタクに恋は難しい OAD" + ], + "format": "OVA", + "episodes": 3, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 3, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 106051, + "mal_id": 38787, + "title": "Senryuu Shoujo", + "english": "Senryu Girl", + "native": "川柳少女", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 103221, + "mal_id": 37981, + "title": "Kaijuu no Kodomo", + "english": "Children of the Sea", + "native": "海獣の子供", + "synonyms": [ + "Los Niños del Mar", + "Les enfants de la Mer", + "海兽之子", + "Дети моря", + "I figli del mare", + "Dzieci morza" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 101261, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 106967, + "mal_id": 38935, + "title": "Miru Tights", + "english": null, + "native": "みるタイツ", + "synonyms": [ + "絲襪視界", + "丝袜视界" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 97918, + "mal_id": 34544, + "title": "Koutetsujou no Kabaneri: Unato Kessen", + "english": "Kabaneri of the Iron Fortress: The Battle of Unato", + "native": "甲鉄城のカバネリ 〜海門決戦〜", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro: La Batalla de Unato", + "Kabaneri da Fortaleza de Ferro: A Batalha de Unato", + "حماة الحصون المنيعة: معركة الحصن المهجور", + "Les Kabaneri de la Forteresse de fer : la bataille d'Unato" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 107418, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy gone", + "native": "フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 38680, + "mal_id": 38680, + "title": "Fruits Basket 1st Season", + "english": "Fruits Basket 1st Season", + "native": "フルーツバスケット", + "synonyms": [ + "Furuba", + "Fruits Basket (Zenpen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 38329, + "mal_id": 38329, + "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "english": "Rascal Does Not Dream of a Dreaming Girl", + "native": "青春ブタ野郎はゆめみる少女の夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 6, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 38003, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 38472, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 38397, + "mal_id": 38397, + "title": "Nande Koko ni Sensei ga!?", + "english": "Why the Hell are You Here, Teacher!?", + "native": "なんでここに先生が!?", + "synonyms": [ + "Nankoko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 38759, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "Meddlesome Kitsune Senko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 35848, + "mal_id": 35848, + "title": "Promare", + "english": "Promare", + "native": "PROMARE(プロメア)", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 5, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 38594, + "mal_id": 38594, + "title": "Kimi to, Nami ni Noretara", + "english": "Ride Your Wave", + "native": "きみと、波にのれたら", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 6, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 36999, + "mal_id": 36999, + "title": "Zoku Owarimonogatari", + "english": null, + "native": "続・終物語", + "synonyms": [], + "format": "TV", + "episodes": 6, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 19, + "month": 5, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 37614, + "mal_id": 37614, + "title": "Hitoribocchi no Marumaru Seikatsu", + "english": null, + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi no ○○ Seikatsu", + "Hitori Bocchi's ○○ Lifestyle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 38787, + "mal_id": 38787, + "title": "Senryuu Shoujo", + "english": "Senryu Girl", + "native": "川柳少女", + "synonyms": [ + "Senryuu Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 34620, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "Yuno" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 2, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 39063, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy Gone", + "native": "Fairy gone フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 37806, + "mal_id": 37806, + "title": "Gunjou no Magmell", + "english": "Ultramarine Magmell", + "native": "群青のマグメル", + "synonyms": [ + "Magmel of the Sea Blue" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 34544, + "mal_id": 34544, + "title": "Koutetsujou no Kabaneri Movie 3: Unato Kessen", + "english": "Kabaneri of the Iron Fortress: The Battle of Unato", + "native": "甲鉄城のカバネリ~海門決戦~", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 5, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 38735, + "mal_id": 38735, + "title": "7 Seeds", + "english": "7 Seeds", + "native": "7SEEDS", + "synonyms": [ + "Seven Seeds" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 6, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 37426, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38759, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "Meddlesome Kitsune Senko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38680, + "mal_id": 38680, + "title": "Fruits Basket 1st Season", + "english": "Fruits Basket 1st Season", + "native": "フルーツバスケット", + "synonyms": [ + "Furuba", + "Fruits Basket (Zenpen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101922, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "KnY", + "Kimetsu no Yaiba: Kyoudai no Kizuna", + "Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings", + "鬼滅の刃-兄妹の絆-", + "鬼灭之刃", + "הלהב קוטל השדים", + "قاتل الشياطين", + "ดาบพิฆาตอสูร", + "Miecz zabójcy demonów – Kimetsu no Yaiba", + " Guardians de la nit: Kimetsu no Yaiba", + "İblis Keser", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA", + "Zabiják démonů", + "شیطان کش", + "귀멸의 칼날", + "Истребитель демонов", + "Клинок, рассекающий демонов" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37614, + "mal_id": 37614, + "title": "Hitoribocchi no Marumaru Seikatsu", + "english": null, + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi no ○○ Seikatsu", + "Hitori Bocchi's ○○ Lifestyle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38003, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38472, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 104578, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [ + "SnK 3", + "AoT 3", + "Shingeki no Kyojin Season 3 (2019)", + "L'Attaco dei Giganti 3 Parte 2", + "L'Attacco dei Giganti - Terza Stagione Parte 2", + "מתקפת הטיטאנים עונה 3 חלק 2", + "L'Attaque des Titans Saison 3 Partie 2 ", + "ผ่าพิภพไททัน ภาค 3 Part 2", + "ผ่าพิภพไททัน ภาค 3 พาร์ท 2", + "حمله به تایتان فصل 3" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 37426, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 97668, + "mal_id": 34134, + "title": "One Punch Man 2", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2", + "synonyms": [ + "OPM2", + "Wanpanman 2", + "مرد تک مشتی", + "วันพันช์แมน ภาคที่ 2", + "One-Punch Man Phần 2", + "一拳超人 第二季", + "Jagoan Sekali Pukul S2", + "ون بنش مان 2", + "رجل اللكمة الواحدة 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38003, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38680, + "mal_id": 38680, + "title": "Fruits Basket 1st Season", + "english": "Fruits Basket 1st Season", + "native": "フルーツバスケット", + "synonyms": [ + "Furuba", + "Fruits Basket (Zenpen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 105334, + "mal_id": 38680, + "title": "Fruits Basket: 1st Season", + "english": "Fruits Basket (2019)", + "native": "フルーツバスケット 1st Season", + "synonyms": [ + "Fruits Basket (Zenpen)", + "Furuba", + "Fruba", + "フルバ", + "水果篮子(第一季)", + "水果篮子(2019)", + "เสน่ห์สาวข้าวปั้น", + "Корзинка фруктов" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38003, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 104157, + "mal_id": 38329, + "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "english": "Rascal Does Not Dream of a Dreaming Girl", + "native": "青春ブタ野郎はゆめみる少女の夢を見ない", + "synonyms": [ + "青ブタ", + "Ao Buta ", + "青春猪头少年不会梦到怀梦美少女", + "Этот глупый свин не понимает мечту девочки-зайки. Фильм", + "Негодник, которому не снилась девушка-кролик. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38329, + "mal_id": 38329, + "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "english": "Rascal Does Not Dream of a Dreaming Girl", + "native": "青春ブタ野郎はゆめみる少女の夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 6, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 104157, + "mal_id": 38329, + "title": "Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai", + "english": "Rascal Does Not Dream of a Dreaming Girl", + "native": "青春ブタ野郎はゆめみる少女の夢を見ない", + "synonyms": [ + "青ブタ", + "Ao Buta ", + "青春猪头少年不会梦到怀梦美少女", + "Этот глупый свин не понимает мечту девочки-зайки. Фильм", + "Негодник, которому не снилась девушка-кролик. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38003, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34620, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "Yuno" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 2, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103223, + "mal_id": 38003, + "title": "Bungou Stray Dogs 3rd Season", + "english": "Bungo Stray Dogs 3", + "native": "文豪ストレイドッグス 第3シーズン", + "synonyms": [ + "Bungou Stray Dogs (2019)", + "BSD 3", + "BungouSD 3", + "คณะประพันธกรจรจัด ภาค 3", + "文豪野犬 第三季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38680, + "mal_id": 38680, + "title": "Fruits Basket 1st Season", + "english": "Fruits Basket 1st Season", + "native": "フルーツバスケット", + "synonyms": [ + "Furuba", + "Fruits Basket (Zenpen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 37806, + "mal_id": 37806, + "title": "Gunjou no Magmell", + "english": "Ultramarine Magmell", + "native": "群青のマグメル", + "synonyms": [ + "Magmel of the Sea Blue" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39063, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy Gone", + "native": "Fairy gone フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100112, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man’s Grandchild", + "native": "賢者の孫", + "synonyms": [ + "The Wise Grandson", + "The Sage's Grandson", + "Philosopher's Grandson", + "Magi's Grandson", + "หลานจอมปราชญ์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 1.2324, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103900, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study", + "Boku-tachi wa Benkyou ga Dekinai", + "เรื่องนี้ตําราไม่มีสอน " + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 99425, + "mal_id": 35848, + "title": "Promare", + "english": "Promare", + "native": "プロメア", + "synonyms": [ + "普罗米亚", + "Промар" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 35848, + "mal_id": 35848, + "title": "Promare", + "english": "Promare", + "native": "PROMARE(プロメア)", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 5, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38759, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "Meddlesome Kitsune Senko-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 38397, + "mal_id": 38397, + "title": "Nande Koko ni Sensei ga!?", + "english": "Why the Hell are You Here, Teacher!?", + "native": "なんでここに先生が!?", + "synonyms": [ + "Nankoko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 105914, + "mal_id": 38759, + "title": "Sewayaki Kitsune no Senko-san", + "english": "The Helpful Fox Senko-san", + "native": "世話やきキツネの仙狐さん", + "synonyms": [ + "贤惠幼妻仙狐小姐" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 104325, + "mal_id": 38397, + "title": "Nande Koko ni Sensei ga!?", + "english": "Why the hell are you here, Teacher!?", + "native": "なんでここに先生が!?", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 38397, + "mal_id": 38397, + "title": "Nande Koko ni Sensei ga!?", + "english": "Why the Hell are You Here, Teacher!?", + "native": "なんでここに先生が!?", + "synonyms": [ + "Nankoko" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 104454, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [ + "Квартет попаданцев" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 38472, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 104454, + "mal_id": 38472, + "title": "Isekai Quartet", + "english": "Isekai Quartet", + "native": "異世界かるてっと", + "synonyms": [ + "Квартет попаданцев" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 101281, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [ + "C&T", + "Carole y Tuesday", + "عشق الموسيقى", + "แครอลกับทูสเดย์" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 37806, + "mal_id": 37806, + "title": "Gunjou no Magmell", + "english": "Ultramarine Magmell", + "native": "群青のマグメル", + "synonyms": [ + "Magmel of the Sea Blue" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 37806, + "mal_id": 37806, + "title": "Gunjou no Magmell", + "english": "Ultramarine Magmell", + "native": "群青のマグメル", + "synonyms": [ + "Magmel of the Sea Blue" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9235, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 103302, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop at this Sound!", + "ฝากฝันไว้ที่เสียงโคโตะ!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34620, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "Yuno" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 2, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 105018, + "mal_id": 38594, + "title": "Kimi to, Nami ni Noretara", + "english": "Ride Your Wave", + "native": "きみと、波にのれたら", + "synonyms": [ + "El amor está en el agua", + "Піймай свою хвилю", + "На твоей волне", + "Mėgaukis savo banga", + "Uz tava viļņa", + "Сенің толқыныңда", + "Sənin dalğanda" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 38594, + "mal_id": 38594, + "title": "Kimi to, Nami ni Noretara", + "english": "Ride Your Wave", + "native": "きみと、波にのれたら", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 21, + "month": 6, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 105018, + "mal_id": 38594, + "title": "Kimi to, Nami ni Noretara", + "english": "Ride Your Wave", + "native": "きみと、波にのれたら", + "synonyms": [ + "El amor está en el agua", + "Піймай свою хвилю", + "На твоей волне", + "Mėgaukis savo banga", + "Uz tava viļņa", + "Сенің толқыныңда", + "Sənin dalğanda" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 105989, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 1.1273, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 105989, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 0.9405, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 105989, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.8878, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 105989, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37614, + "mal_id": 37614, + "title": "Hitoribocchi no Marumaru Seikatsu", + "english": null, + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi no ○○ Seikatsu", + "Hitori Bocchi's ○○ Lifestyle" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 38186, + "mal_id": 38186, + "title": "Bokutachi wa Benkyou ga Dekinai", + "english": "We Never Learn: BOKUBEN", + "native": "ぼくたちは勉強ができない", + "synonyms": [ + "BokuBen", + "We Can't Study" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 34134, + "mal_id": 34134, + "title": "One Punch Man 2nd Season", + "english": "One-Punch Man Season 2", + "native": "ワンパンマン 2期", + "synonyms": [ + "One Punch-Man 2", + "One-Punch Man 2", + "OPM 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 38778, + "mal_id": 38778, + "title": "Midara na Ao-chan wa Benkyou ga Dekinai", + "english": "Ao-chan Can't Study!", + "native": "淫らな青ちゃんは勉強ができない", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 101386, + "mal_id": 37614, + "title": "Hitoribocchi no ○○ Seikatsu", + "english": "Hitoribocchi no Marumaruseikatsu", + "native": "ひとりぼっちの○○生活", + "synonyms": [ + "Hitoribocchi", + "Bocchi Seikatsu", + "一个人的○○小日子", + "Hitoribocchi no Marumaru Seikatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 104217, + "mal_id": 38349, + "title": "Wotaku ni Koi wa Muzukashii OVA", + "english": null, + "native": "ヲタクに恋は難しい OVA", + "synonyms": [ + "WotaKoi", + "Wotaku ni Koi wa Muzukashii: Youth", + "Wotakoi: Love is Hard for Otaku OVA", + "WotaKoi: Sore wa, ikinari otozureta=koi", + "ヲタ恋: それは、いきなりおとづれた=恋", + "ヲタクに恋は難しい OAD" + ], + "format": "OVA", + "episodes": 3, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 3, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 106051, + "mal_id": 38787, + "title": "Senryuu Shoujo", + "english": "Senryu Girl", + "native": "川柳少女", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38787, + "mal_id": 38787, + "title": "Senryuu Shoujo", + "english": "Senryu Girl", + "native": "川柳少女", + "synonyms": [ + "Senryuu Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 0.9854, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 103221, + "mal_id": 37981, + "title": "Kaijuu no Kodomo", + "english": "Children of the Sea", + "native": "海獣の子供", + "synonyms": [ + "Los Niños del Mar", + "Les enfants de la Mer", + "海兽之子", + "Дети моря", + "I figli del mare", + "Dzieci morza" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 37806, + "mal_id": 37806, + "title": "Gunjou no Magmell", + "english": "Ultramarine Magmell", + "native": "群青のマグメル", + "synonyms": [ + "Magmel of the Sea Blue" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 103221, + "mal_id": 37981, + "title": "Kaijuu no Kodomo", + "english": "Children of the Sea", + "native": "海獣の子供", + "synonyms": [ + "Los Niños del Mar", + "Les enfants de la Mer", + "海兽之子", + "Дети моря", + "I figli del mare", + "Dzieci morza" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 103221, + "mal_id": 37981, + "title": "Kaijuu no Kodomo", + "english": "Children of the Sea", + "native": "海獣の子供", + "synonyms": [ + "Los Niños del Mar", + "Les enfants de la Mer", + "海兽之子", + "Дети моря", + "I figli del mare", + "Dzieci morza" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 103221, + "mal_id": 37981, + "title": "Kaijuu no Kodomo", + "english": "Children of the Sea", + "native": "海獣の子供", + "synonyms": [ + "Los Niños del Mar", + "Les enfants de la Mer", + "海兽之子", + "Дети моря", + "I figli del mare", + "Dzieci morza" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 6, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101261, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 37426, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 12, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101261, + "mal_id": 37426, + "title": "Sarazanmai", + "english": "Sarazanmai", + "native": "さらざんまい", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97918, + "mal_id": 34544, + "title": "Koutetsujou no Kabaneri: Unato Kessen", + "english": "Kabaneri of the Iron Fortress: The Battle of Unato", + "native": "甲鉄城のカバネリ 〜海門決戦〜", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro: La Batalla de Unato", + "Kabaneri da Fortaleza de Ferro: A Batalha de Unato", + "حماة الحصون المنيعة: معركة الحصن المهجور", + "Les Kabaneri de la Forteresse de fer : la bataille d'Unato" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 34544, + "mal_id": 34544, + "title": "Koutetsujou no Kabaneri Movie 3: Unato Kessen", + "english": "Kabaneri of the Iron Fortress: The Battle of Unato", + "native": "甲鉄城のカバネリ~海門決戦~", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 5, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 97918, + "mal_id": 34544, + "title": "Koutetsujou no Kabaneri: Unato Kessen", + "english": "Kabaneri of the Iron Fortress: The Battle of Unato", + "native": "甲鉄城のカバネリ 〜海門決戦〜", + "synonyms": [ + "Kabaneri de la Fortaleza de Hierro: La Batalla de Unato", + "Kabaneri da Fortaleza de Ferro: A Batalha de Unato", + "حماة الحصون المنيعة: معركة الحصن المهجور", + "Les Kabaneri de la Forteresse de fer : la bataille d'Unato" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 5, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38000, + "mal_id": 38000, + "title": "Kimetsu no Yaiba", + "english": "Demon Slayer: Kimetsu no Yaiba", + "native": "鬼滅の刃", + "synonyms": [ + "Blade of Demon Destruction" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34620, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "Yuno" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 2, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 12, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38080, + "mal_id": 38080, + "title": "Kono Oto Tomare!", + "english": "Kono Oto Tomare!: Sounds of Life", + "native": "この音とまれ!", + "synonyms": [ + "Stop This Sound!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 7, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38787, + "mal_id": 38787, + "title": "Senryuu Shoujo", + "english": "Senryu Girl", + "native": "川柳少女", + "synonyms": [ + "Senryuu Girl" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 6, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39063, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy Gone", + "native": "Fairy gone フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.8951, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 97995, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "YU-NO: A girl who chants love at the bound of this world." + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 38524, + "mal_id": 38524, + "title": "Shingeki no Kyojin Season 3 Part 2", + "english": "Attack on Titan Season 3 Part 2", + "native": "進撃の巨人 Season3 Part.2", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 29, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 107418, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy gone", + "native": "フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39063, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy Gone", + "native": "Fairy gone フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 8, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 107418, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy gone", + "native": "フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36407, + "mal_id": 36407, + "title": "Kenja no Mago", + "english": "Wise Man's Grandchild", + "native": "賢者の孫", + "synonyms": [ + "Philosopher's Grandson", + "Magi's Grandson" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 10, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 107418, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy gone", + "native": "フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 34620, + "mal_id": 34620, + "title": "Kono Yo no Hate de Koi wo Utau Shoujo YU-NO", + "english": "YU-NO: A Girl Who Chants Love at the Bound of This World", + "native": "この世の果てで恋を唄う少女YU-NO", + "synonyms": [ + "Yuno" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 2, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 11, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 107418, + "mal_id": 39063, + "title": "Fairy Gone", + "english": "Fairy gone", + "native": "フェアリーゴーン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2019, + "start_date": { + "year": 2019, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37435, + "mal_id": 37435, + "title": "Carole & Tuesday", + "english": "Carole & Tuesday", + "native": "キャロル&チューズデイ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2019, + "start_date": { + "day": 11, + "month": 4, + "year": 2019 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2019-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2019-summer.json new file mode 100644 index 0000000..08f62f9 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2019-summer.json @@ -0,0 +1,6140 @@ +{ + "year": 2019, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 105333, + "mal_id": 38691, + "title": "Dr. STONE", + "english": "Dr. STONE", + "native": "Dr.STONE", + "synonyms": [ + "Dcst", + "石纪元", + "ドクターストーン", + "ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก", + "Доктор Стоун" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 106286, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering With You", + "native": "天気の子", + "synonyms": [ + "El Tiempo Contigo", + "Weathering With You - Das Mädchen, das die Sonne berührte", + "Les enfants du temps", + "O Tempo Com Você", + "天气之子", + "La ragazza del tempo", + "Дитя погоды" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 102976, + "mal_id": 38040, + "title": "Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu", + "english": "KONOSUBA -God's blessing on this wonderful world!- Legend of Crimson", + "native": "この素晴らしい世界に祝福を!紅伝説", + "synonyms": [ + "Konosuba Movie", + "このすば紅伝説", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี เดอะ มูฟวี่ ตำนานสีชาด", + "Konosuba! Un mundo maravilloso. La leyenda del carmesí" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 8, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 108430, + "mal_id": 39533, + "title": "Given", + "english": "given", + "native": "ギヴン", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 109190, + "mal_id": 39741, + "title": "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", + "english": "Violet Evergarden: Eternity and the Auto Memory Doll", + "native": "ヴァイオレット・エヴァーガーデン 外伝~永遠と自動手記人形~", + "synonyms": [ + "Violet Evergarden und das Band der Freundschaft", + "Violet Evergarden Gaiden: La Eternidad y la Muñeca de Recuerdos Automáticos", + "Violet Evergarden Gaiden: Eternidade e a Boneca de Automemória", + "فيوليت: الأبدية وذكريات الدمية الآلية", + "Вайолет Эвергарден: Вечность и призрак пера", + "Violet Evergarden: Věčnost a Píšící panenka" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 9, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 101547, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師", + "synonyms": [ + "ผ่ามิติแหกกฎมนตรา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 106240, + "mal_id": 38816, + "title": "HELLO WORLD", + "english": null, + "native": "HELLO WORLD", + "synonyms": [ + "ハロー・ワールド" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 105074, + "mal_id": 38610, + "title": "Tejina Senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [ + "Magical Senpai" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 107956, + "mal_id": 39324, + "title": "Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "For My Daughter, I'd Even Defeat a Demon Lord", + "Uchinoko", + "UchiMusume", + "เพื่อลูกจ๋า ปะป๋าขอลุย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 105143, + "mal_id": 38234, + "title": "ONE PIECE STAMPEDE", + "english": "One Piece: Stampede", + "native": "ONE PIECE STAMPEDE", + "synonyms": [ + "ワンピース スタンピード", + "One Piece: Estampida", + "航海王:狂热行动", + "One Piece Film 14" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 8, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 106918, + "mal_id": 38959, + "title": "Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note", + "english": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "native": "ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note", + "synonyms": [ + "Досье лорда Эль-Меллоя II" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 38691, + "mal_id": 38691, + "title": "Dr. Stone", + "english": "Dr. Stone", + "native": "ドクターストーン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 5, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 37521, + "mal_id": 37521, + "title": "Vinland Saga", + "english": null, + "native": "ヴィンランド・サガ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 38826, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering with You", + "native": "天気の子", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 38040, + "mal_id": 38040, + "title": "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", + "english": "KonoSuba: God's Blessing on This Wonderful World! - Legend of Crimson", + "native": "映画 この素晴らしい世界に祝福を!紅伝説", + "synonyms": [ + "KonoSuba Movie", + "Eiga Kono Subarashii Sekai ni Shukufuku wo!" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 8, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 36882, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "From Common Job Class to the Strongest in the World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 39533, + "mal_id": 39533, + "title": "Given", + "english": "given", + "native": "ギヴン", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 39741, + "mal_id": 39741, + "title": "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", + "english": "Violet Evergarden: Eternity and the Auto Memory Doll", + "native": "ヴァイオレット・エヴァーガーデン 外伝 -永遠と自動手記人形-", + "synonyms": [ + "Violet Evergarden Side Story: Eternity and the Auto Memory Doll" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 9, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 39026, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37744, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師〈マジシャン〉", + "synonyms": [ + "Isekai Cheat Majutsushi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 10, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 39326, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to Fall in Love with a Pervert, as long as she's a Cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you love a pervert as long as she's cute?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 38573, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Okaa-san Online" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 38816, + "mal_id": 38816, + "title": "Hello World", + "english": null, + "native": "ハロー・ワールド", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 38793, + "mal_id": 38793, + "title": "Tensei shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "TenSura OVA", + "That Time I Got Reincarnated as a Slime OVA", + "Tensei shitara Slime Datta Ken Gaiden", + "That Time I Got Reincarnated as a Slime Extra" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 38234, + "mal_id": 38234, + "title": "One Piece Movie 14: Stampede", + "english": "One Piece: Stampede", + "native": "劇場版『ONE PIECE STAMPEDE』(スタンピード)", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 8, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 36903, + "mal_id": 36903, + "title": "Kengan Ashura", + "english": null, + "native": "ケンガンアシュラ", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 105333, + "mal_id": 38691, + "title": "Dr. STONE", + "english": "Dr. STONE", + "native": "Dr.STONE", + "synonyms": [ + "Dcst", + "石纪元", + "ドクターストーン", + "ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก", + "Доктор Стоун" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38691, + "mal_id": 38691, + "title": "Dr. Stone", + "english": "Dr. Stone", + "native": "ドクターストーン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 5, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 105333, + "mal_id": 38691, + "title": "Dr. STONE", + "english": "Dr. STONE", + "native": "Dr.STONE", + "synonyms": [ + "Dcst", + "石纪元", + "ドクターストーン", + "ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก", + "Доктор Стоун" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 105333, + "mal_id": 38691, + "title": "Dr. STONE", + "english": "Dr. STONE", + "native": "Dr.STONE", + "synonyms": [ + "Dcst", + "石纪元", + "ドクターストーン", + "ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก", + "Доктор Стоун" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 38573, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Okaa-san Online" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 105333, + "mal_id": 38691, + "title": "Dr. STONE", + "english": "Dr. STONE", + "native": "Dr.STONE", + "synonyms": [ + "Dcst", + "石纪元", + "ドクターストーン", + "ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก", + "Доктор Стоун" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37521, + "mal_id": 37521, + "title": "Vinland Saga", + "english": null, + "native": "ヴィンランド・サガ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101348, + "mal_id": 37521, + "title": "VINLAND SAGA", + "english": "Vinland Saga", + "native": "ヴィンランド・サガ", + "synonyms": [ + "סאגת וינלנד", + "فينلاند ساغا", + "สงครามคนทมิฬ", + "Сага о Винланде" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39026, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105310, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "หน่วยผจญคนไฟลุก", + "כוח האש", + "Полум'яні вогнеборці", + "Пламенный отряд" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36882, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "From Common Job Class to the Strongest in the World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 106286, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering With You", + "native": "天気の子", + "synonyms": [ + "El Tiempo Contigo", + "Weathering With You - Das Mädchen, das die Sonne berührte", + "Les enfants du temps", + "O Tempo Com Você", + "天气之子", + "La ragazza del tempo", + "Дитя погоды" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38826, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering with You", + "native": "天気の子", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 106286, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering With You", + "native": "天気の子", + "synonyms": [ + "El Tiempo Contigo", + "Weathering With You - Das Mädchen, das die Sonne berührte", + "Les enfants du temps", + "O Tempo Com Você", + "天气之子", + "La ragazza del tempo", + "Дитя погоды" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 106286, + "mal_id": 38826, + "title": "Tenki no Ko", + "english": "Weathering With You", + "native": "天気の子", + "synonyms": [ + "El Tiempo Contigo", + "Weathering With You - Das Mädchen, das die Sonne berührte", + "Les enfants du temps", + "O Tempo Com Você", + "天气之子", + "La ragazza del tempo", + "Дитя погоды" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 12, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 21, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101167, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ", + "synonyms": [ + "Danmachi II", + "ダンジョンに出会いを求めるのは間違っているだろうか2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2", + "ダンまちⅡ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 38573, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Okaa-san Online" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 102976, + "mal_id": 38040, + "title": "Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu", + "english": "KONOSUBA -God's blessing on this wonderful world!- Legend of Crimson", + "native": "この素晴らしい世界に祝福を!紅伝説", + "synonyms": [ + "Konosuba Movie", + "このすば紅伝説", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี เดอะ มูฟวี่ ตำนานสีชาด", + "Konosuba! Un mundo maravilloso. La leyenda del carmesí" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 8, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38040, + "mal_id": 38040, + "title": "Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu", + "english": "KonoSuba: God's Blessing on This Wonderful World! - Legend of Crimson", + "native": "映画 この素晴らしい世界に祝福を!紅伝説", + "synonyms": [ + "KonoSuba Movie", + "Eiga Kono Subarashii Sekai ni Shukufuku wo!" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 8, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36882, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "From Common Job Class to the Strongest in the World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9478, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.8864, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100668, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "平凡职业造就世界最强", + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 108430, + "mal_id": 39533, + "title": "Given", + "english": "given", + "native": "ギヴン", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 39533, + "mal_id": 39533, + "title": "Given", + "english": "given", + "native": "ギヴン", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 109190, + "mal_id": 39741, + "title": "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", + "english": "Violet Evergarden: Eternity and the Auto Memory Doll", + "native": "ヴァイオレット・エヴァーガーデン 外伝~永遠と自動手記人形~", + "synonyms": [ + "Violet Evergarden und das Band der Freundschaft", + "Violet Evergarden Gaiden: La Eternidad y la Muñeca de Recuerdos Automáticos", + "Violet Evergarden Gaiden: Eternidade e a Boneca de Automemória", + "فيوليت: الأبدية وذكريات الدمية الآلية", + "Вайолет Эвергарден: Вечность и призрак пера", + "Violet Evergarden: Věčnost a Píšící panenka" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 9, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 39741, + "mal_id": 39741, + "title": "Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou", + "english": "Violet Evergarden: Eternity and the Auto Memory Doll", + "native": "ヴァイオレット・エヴァーガーデン 外伝 -永遠と自動手記人形-", + "synonyms": [ + "Violet Evergarden Side Story: Eternity and the Auto Memory Doll" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 9, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39026, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 107226, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?", + "Danberu Nan Kiro Moteru?", + "Dumbbell : Combien tu peux soulever ?", + "แก๊งสาวป่วน ก๊วนฟิตเนส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38691, + "mal_id": 38691, + "title": "Dr. Stone", + "english": "Dr. Stone", + "native": "ドクターストーン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 5, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 105932, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "AraOto", + "Nuestra Salvaje Juventud", + "O maiden: Wahai Para Dara dalam Masa Beringas" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107663, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "ASTRA LOST IN SPACE", + "native": "彼方のアストラ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 39326, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to Fall in Love with a Pervert, as long as she's a Cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you love a pervert as long as she's cute?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.9259, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.8937, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 38573, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Okaa-san Online" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107961, + "mal_id": 39326, + "title": "Kawaikereba Hentai demo Suki ni Natte Kuremasu ka?", + "english": "Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?", + "native": "可愛ければ変態でも好きになってくれますか?", + "synonyms": [ + "Would you even fall in love with a pervert as long as it's a cutie?", + "Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101547, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師", + "synonyms": [ + "ผ่ามิติแหกกฎมนตรา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37744, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師〈マジシャン〉", + "synonyms": [ + "Isekai Cheat Majutsushi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 10, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101547, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師", + "synonyms": [ + "ผ่ามิติแหกกฎมนตรา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101547, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師", + "synonyms": [ + "ผ่ามิติแหกกฎมนตรา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101547, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師", + "synonyms": [ + "ผ่ามิติแหกกฎมนตรา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 106240, + "mal_id": 38816, + "title": "HELLO WORLD", + "english": null, + "native": "HELLO WORLD", + "synonyms": [ + "ハロー・ワールド" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 38816, + "mal_id": 38816, + "title": "Hello World", + "english": null, + "native": "ハロー・ワールド", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.9923, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36882, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "From Common Job Class to the Strongest in the World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 10, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 107068, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san Season 2", + "native": "からかい上手の高木さん 2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "טאקאגי-סאן אלופת ההקנטות 2", + "Nhất quỷ Nhì ma, Thứ ba Takagi 2", + "แกล้งนัก รักนะ รู้ยัง ภาค 2", + "Takagi-san, experta en bromas pesadas", + "Nicht schon wieder, Takagi-san" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 38573, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Okaa-san Online" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38691, + "mal_id": 38691, + "title": "Dr. Stone", + "english": "Dr. Stone", + "native": "ドクターストーン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 5, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 104723, + "mal_id": 38573, + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka?", + "english": "Do You Love Your Mom and Her Two-Hit Multi-Target Attacks?", + "native": "通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか?", + "synonyms": [ + "Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power", + "Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka?", + "Okaa-san online", + "Okaasuki", + "คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38793, + "mal_id": 38793, + "title": "Tensei shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "TenSura OVA", + "That Time I Got Reincarnated as a Slime OVA", + "Tensei shitara Slime Datta Ken Gaiden", + "That Time I Got Reincarnated as a Slime Extra" + ], + "format": "OVA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9217, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106509, + "mal_id": 38793, + "title": "Tensei Shitara Slime Datta Ken OVA", + "english": "That Time I Got Reincarnated as a Slime OAD", + "native": "転生したらスライムだった件 OVA", + "synonyms": [ + "ten·sura", + "転スラ", + "Tensei Shitara Slime Datta Ken (2019)", + "That Time I Got Reincarnated as a Slime OVA", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD", + "Moi, quand je me réincarne en Slime OAD" + ], + "format": "OVA", + "episodes": 5, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 105074, + "mal_id": 38610, + "title": "Tejina Senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [ + "Magical Senpai" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38610, + "mal_id": 38610, + "title": "Tejina-senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 2, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 105074, + "mal_id": 38610, + "title": "Tejina Senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [ + "Magical Senpai" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37521, + "mal_id": 37521, + "title": "Vinland Saga", + "english": null, + "native": "ヴィンランド・サガ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 105074, + "mal_id": 38610, + "title": "Tejina Senpai", + "english": "Magical Sempai", + "native": "手品先輩", + "synonyms": [ + "Magical Senpai" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 104252, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [ + "จอมมารรีไทร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38480, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行〈アクセラレータ〉", + "synonyms": [ + "To Aru Majutsu no Index Gaiden", + "Toaru Kagaku no Ippou Tsuukou" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9235, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38993, + "mal_id": 38993, + "title": "Karakai Jouzu no Takagi-san 2", + "english": "Teasing Master Takagi-san 2", + "native": "からかい上手の高木さん2", + "synonyms": [ + "Skilled Teaser Takagi-san 2nd Season", + "Karakai Jouzu no Takagi-san Second Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 7, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104463, + "mal_id": 38480, + "title": "Toaru Kagaku no Accelerator", + "english": "A Certain Scientific Accelerator", + "native": "とある科学の一方通行【アクセラレータ】", + "synonyms": [ + "科学一方通行", + "แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์", + "แฟ้มลับคดีเด็กหาย", + "Máy gia tốc khoa học nhất định", + "Akselerator Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107956, + "mal_id": 39324, + "title": "Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "For My Daughter, I'd Even Defeat a Demon Lord", + "Uchinoko", + "UchiMusume", + "เพื่อลูกจ๋า ปะป๋าขอลุย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 39324, + "mal_id": 39324, + "title": "Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "Uchi no Musume no Tame naraba", + "Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai.", + "UchiMusume" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107956, + "mal_id": 39324, + "title": "Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "For My Daughter, I'd Even Defeat a Demon Lord", + "Uchinoko", + "UchiMusume", + "เพื่อลูกจ๋า ปะป๋าขอลุย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107956, + "mal_id": 39324, + "title": "Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "For My Daughter, I'd Even Defeat a Demon Lord", + "Uchinoko", + "UchiMusume", + "เพื่อลูกจ๋า ปะป๋าขอลุย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 107956, + "mal_id": 39324, + "title": "Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai.", + "english": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "native": "うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。", + "synonyms": [ + "For My Daughter, I'd Even Defeat a Demon Lord", + "Uchinoko", + "UchiMusume", + "เพื่อลูกจ๋า ปะป๋าขอลุย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 36882, + "mal_id": 36882, + "title": "Arifureta Shokugyou de Sekai Saikyou", + "english": "Arifureta: From Commonplace to World's Strongest", + "native": "ありふれた職業で世界最強", + "synonyms": [ + "From Common Job Class to the Strongest in the World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 8, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39071, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 38297, + "mal_id": 38297, + "title": "Maou-sama, Retry!", + "english": "Demon Lord, Retry!", + "native": "魔王様、リトライ!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 4, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38671, + "mal_id": 38671, + "title": "Enen no Shouboutai", + "english": "Fire Force", + "native": "炎炎ノ消防隊", + "synonyms": [ + "Fire Brigade of Flames" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37744, + "mal_id": 37744, + "title": "Isekai Cheat Magician", + "english": "Isekai Cheat Magician", + "native": "異世界チート魔術師〈マジシャン〉", + "synonyms": [ + "Isekai Cheat Majutsushi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 10, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 107490, + "mal_id": 39071, + "title": "Machikado Mazoku", + "english": "The Demon Girl Next Door", + "native": "まちカドまぞく", + "synonyms": [ + "Street Corner Demon", + "街角魔族" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 39026, + "mal_id": 39026, + "title": "Dumbbell Nan Kilo Moteru?", + "english": "How Heavy Are the Dumbbells You Lift?", + "native": "ダンベル何キロ持てる?", + "synonyms": [ + "How Many Kilograms are the Dumbbells You Lift?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 105143, + "mal_id": 38234, + "title": "ONE PIECE STAMPEDE", + "english": "One Piece: Stampede", + "native": "ONE PIECE STAMPEDE", + "synonyms": [ + "ワンピース スタンピード", + "One Piece: Estampida", + "航海王:狂热行动", + "One Piece Film 14" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 8, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38234, + "mal_id": 38234, + "title": "One Piece Movie 14: Stampede", + "english": "One Piece: Stampede", + "native": "劇場版『ONE PIECE STAMPEDE』(スタンピード)", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 8, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 106918, + "mal_id": 38959, + "title": "Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note", + "english": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "native": "ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note", + "synonyms": [ + "Досье лорда Эль-Меллоя II" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37347, + "mal_id": 37347, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかII", + "synonyms": [ + "DanMachi 2nd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 13, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 106918, + "mal_id": 38959, + "title": "Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note", + "english": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "native": "ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note", + "synonyms": [ + "Досье лорда Эль-Меллоя II" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39198, + "mal_id": 39198, + "title": "Kanata no Astra", + "english": "Astra Lost in Space", + "native": "彼方のアストラ", + "synonyms": [ + "Astra Lost in Space" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 3, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 106918, + "mal_id": 38959, + "title": "Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note", + "english": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "native": "ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note", + "synonyms": [ + "Досье лорда Эль-Меллоя II" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 39533, + "mal_id": 39533, + "title": "Given", + "english": "given", + "native": "ギヴン", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 12, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 106918, + "mal_id": 38959, + "title": "Lord El-Melloi II-sei no Jikenbo: \"Rail Zeppelin\" Grace note", + "english": "Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note", + "native": "ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note", + "synonyms": [ + "Досье лорда Эль-Меллоя II" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 38753, + "mal_id": 38753, + "title": "Araburu Kisetsu no Otome-domo yo.", + "english": "O Maidens in Your Savage Season", + "native": "荒ぶる季節の乙女どもよ。", + "synonyms": [ + "Maidens of the Savage Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2019, + "start_date": { + "day": 6, + "month": 7, + "year": 2019 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2019-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2019-winter.json new file mode 100644 index 0000000..9edf24e --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2019-winter.json @@ -0,0 +1,5265 @@ +{ + "year": 2019, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 101347, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Дороро" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 100876, + "mal_id": 37086, + "title": "Kakegurui ××", + "english": "Kakegurui xx", + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui - Compulsive Gambler 2", + "โคตรเซียนโรงเรียนพนัน ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 21718, + "mal_id": 33049, + "title": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "english": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠ.lost butterfly", + "synonyms": [ + "Fate/HF II", + "Судьба/Ночь схватки: Прикосновение небес 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 97880, + "mal_id": 34437, + "title": "Code Geass: Fukkatsu no Lelouch", + "english": "Code Geass: Lelouch of the Re;surrection", + "native": "コードギアス 復活のルルーシュ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 100878, + "mal_id": 37055, + "title": "Youjo Senki Movie", + "english": "Saga of Tanya the Evil - the Movie -", + "native": "劇場版 幼女戦記", + "synonyms": [ + "Колдунья в погонах. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 100815, + "mal_id": 36999, + "title": "Zoku Owarimonogatari", + "english": "Zoku Owarimonogatari", + "native": "続・終物語", + "synonyms": [ + "Continued End Tale" + ], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 101166, + "mal_id": 37348, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Orion no Ya", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか ─ オリオンの矢 ─", + "synonyms": [ + "DanMachi: Arrow of the Orion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 102882, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2", + "english": "Real Girl 2", + "native": "3D彼女 リアルガール 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 101344, + "mal_id": 37515, + "title": "Made in Abyss: Hourou Suru Tasogare", + "english": "Made in Abyss: Wandering Twilight", + "native": "メイドインアビス 放浪する黄昏", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 105893, + "mal_id": 38699, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero Specials", + "english": "My Hero Academia the Movie: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典", + "synonyms": [ + "All Might: Rising The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 101343, + "mal_id": 37514, + "title": "Made in Abyss: Tabidachi no Yoake", + "english": "Made in Abyss: Journey's Dawn", + "native": "メイドインアビス 旅立ちの夜明け", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 101773, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [ + "笨拙之极的上野 " + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 21322, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV_SHORT", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 104174, + "mal_id": 37492, + "title": "Steins;Gate 0: Kesshou Takei no Valentine - Bittersweet Day", + "english": "Steins;Gate 0: Valentine's of Crystal Polymorphism -Bittersweet Intermedio-", + "native": "シュタインズ・ゲート ゼロ 結晶多形のバレンタイン", + "synonyms": [ + "Steins;Gate 0 Special", + "San Valentín de polimorfismo de cristal: Intermedio agridulce" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2018, + "month": 12, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 100523, + "mal_id": 36792, + "title": "Eromanga Sensei OVA", + "english": null, + "native": "エロマンガ先生 OVA", + "synonyms": [ + "Ero Manga Sensei" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 37779, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 37510, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 37520, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Dororo to Hyakkimaru" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 38101, + "mal_id": 38101, + "title": "5-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "Gotoubun no Hanayome", + "The Five Wedded Brides" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 33049, + "mal_id": 33049, + "title": "Fate/stay night Movie: Heaven's Feel - II. Lost Butterfly", + "english": "Fate/stay night: Heaven's Feel - II. Lost Butterfly", + "native": "劇場版「Fate/stay night [Heaven's Feel] II.lost butterfly」", + "synonyms": [ + "Fate/stay night Movie: Heaven's Feel 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 34437, + "mal_id": 34437, + "title": "Code Geass: Fukkatsu no Lelouch", + "english": "Code Geass: Lelouch of the Re;surrection", + "native": "コードギアス 復活のルルーシュ", + "synonyms": [ + "Code Geass: Lelouch of the Resurrection" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37055, + "mal_id": 37055, + "title": "Youjo Senki Movie", + "english": "Saga of Tanya the Evil: The Movie", + "native": "劇場版 幼女戦記", + "synonyms": [ + "Gekijouban Youjo Senki" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 37451, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai (2019)", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop Never Laughs", + "Boogiepop Doesn't Laugh" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 38349, + "mal_id": 38349, + "title": "Wotaku ni Koi wa Muzukashii OVA", + "english": "Wotakoi: Love is Hard for Otaku OVA", + "native": "ヲタクに恋は難しい OAD", + "synonyms": [ + "Wotaku ni Koi wa Muzukashii: Youth", + "It's Difficult to Love an Otaku OVA", + "Wotakoi: Love is Hard for Otaku OVA" + ], + "format": "OVA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 3, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 37348, + "mal_id": 37348, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion", + "native": "劇場版 ダンジョンに出会いを求めるのは間違っているだろうか -オリオンの矢-", + "synonyms": [ + "DanMachi Movie", + "Is It Wrong That I Want to Meet You in a Dungeon Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 37993, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "Wataten! an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 8, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 37515, + "mal_id": 37515, + "title": "Made in Abyss Movie 2: Hourou Suru Tasogare", + "english": "Made in Abyss: Wandering Twilight", + "native": "劇場版総集編【後編】メイドインアビス 放浪する黄昏", + "synonyms": [ + "Made in Abyss Movie 2: Wandering Twilight" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 37514, + "mal_id": 37514, + "title": "Made in Abyss Movie 1: Tabidachi no Yoake", + "english": "Made in Abyss: Journey's Dawn", + "native": "劇場版総集編【前編】メイドインアビス 旅立ちの夜明け", + "synonyms": [ + "Made in Abyss Movie 1: Journey's Dawn" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 38699, + "mal_id": 38699, + "title": "Boku no Hero Academia the Movie 1: Futari no Hero Specials", + "english": "My Hero Academia: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ 特典", + "synonyms": [ + "All Might: Rising - The Animation", + "Boku no Hero Academia Picture Drama", + "My Hero Academia: All Might Rising" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 39607, + "mal_id": 39607, + "title": "Tensei shitara Slime Datta Ken: Kanwa - Veldora Nikki", + "english": "That Time I Got Reincarnated as a Slime: Tales - Veldora's Journal", + "native": "転生したらスライムだった件 閑話: ヴェルドラ日記", + "synonyms": [ + "Tensei shitara Slime Datta Ken Recap", + "That Time I got Reincarnated as a Slime Episode 24.5" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 3, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 37920, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 37440, + "mal_id": 37440, + "title": "Psycho-Pass: Sinners of the System Case.1 - Tsumi to Batsu", + "english": "Psycho-Pass: Sinners of the System Case.1 - Crime and Punishment", + "native": "PSYCHO-PASS サイコパス|SS(Sinners of the System) Case.1「罪と罰」", + "synonyms": [ + "Psycho-Pass SS Case 1: Tsumi to Batsu" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37779, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37451, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai (2019)", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop Never Laughs", + "Boogiepop Doesn't Laugh" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 16, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 101759, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [ + "YakuNeba", + "TPN", + "نيفرلاند الموعودة", + "约定的梦幻岛", + "พันธสัญญาเนเวอร์แลนด์", + "約定的夢幻島" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 101921, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains", + "קאגויה סאמה", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~", + "辉夜姬想让人告白", + "辉夜姬想让人告白~天才们的恋爱头脑战~", + "辉告", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "Kaguya-sama : L'Amour est une guerre", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~", + "Госпожа Кагуя: В любви как на войне" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37993, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "Wataten! an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 8, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37779, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37993, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "Wataten! an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 8, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 99263, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [ + "盾之勇者成名录", + "ผู้กล้าโล่ผงาด", + "Восхождение героя щита" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 37510, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37520, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Dororo to Hyakkimaru" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 101338, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho Hyaku", + "ม็อบไซโค 100 คนพลังจิต ภาค 2", + "Моб Психо 100 II" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101347, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Дороро" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37520, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Dororo to Hyakkimaru" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 101347, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Дороро" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38101, + "mal_id": 38101, + "title": "5-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "Gotoubun no Hanayome", + "The Five Wedded Brides" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 37920, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37779, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 103572, + "mal_id": 38101, + "title": "Go-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome", + "The Five Wedded Brides", + "เจ้าสาวผมเป็นแฝดห้า", + "五等分的新娘", + "Eşsiz Beşizler", + "Sposób na pięcioraczki", + "Пять невест", + "Квинтэссенция пяти близнецов", + "Las Quintillizas" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100876, + "mal_id": 37086, + "title": "Kakegurui ××", + "english": "Kakegurui xx", + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui - Compulsive Gambler 2", + "โคตรเซียนโรงเรียนพนัน ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100876, + "mal_id": 37086, + "title": "Kakegurui ××", + "english": "Kakegurui xx", + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui - Compulsive Gambler 2", + "โคตรเซียนโรงเรียนพนัน ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100876, + "mal_id": 37086, + "title": "Kakegurui ××", + "english": "Kakegurui xx", + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui - Compulsive Gambler 2", + "โคตรเซียนโรงเรียนพนัน ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 100876, + "mal_id": 37086, + "title": "Kakegurui ××", + "english": "Kakegurui xx", + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui - Compulsive Gambler 2", + "โคตรเซียนโรงเรียนพนัน ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 1.1286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 37520, + "mal_id": 37520, + "title": "Dororo", + "english": "Dororo", + "native": "どろろ", + "synonyms": [ + "Dororo to Hyakkimaru" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 103139, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "DomeKano", + "บทเรียนรักเส้นทางหัวใจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21718, + "mal_id": 33049, + "title": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "english": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠ.lost butterfly", + "synonyms": [ + "Fate/HF II", + "Судьба/Ночь схватки: Прикосновение небес 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 33049, + "mal_id": 33049, + "title": "Fate/stay night Movie: Heaven's Feel - II. Lost Butterfly", + "english": "Fate/stay night: Heaven's Feel - II. Lost Butterfly", + "native": "劇場版「Fate/stay night [Heaven's Feel] II.lost butterfly」", + "synonyms": [ + "Fate/stay night Movie: Heaven's Feel 2" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 21718, + "mal_id": 33049, + "title": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "english": "Fate/stay night [Heaven's Feel] II. lost butterfly", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠ.lost butterfly", + "synonyms": [ + "Fate/HF II", + "Судьба/Ночь схватки: Прикосновение небес 2" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 1.0574, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 37086, + "mal_id": 37086, + "title": "Kakegurui××", + "english": null, + "native": "賭ケグルイ××", + "synonyms": [ + "Kakegurui 2nd Season", + "Kakegurui: Compulsive Gambler 2nd Season", + "Gambling School 2nd Season," + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 100722, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date a Live 3rd Season", + "Date a Live 3", + "DAL 3", + "พิชิตรัก พิทักษ์โลก ภาค 3", + "Рандеву с Жизнью 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 37510, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 97880, + "mal_id": 34437, + "title": "Code Geass: Fukkatsu no Lelouch", + "english": "Code Geass: Lelouch of the Re;surrection", + "native": "コードギアス 復活のルルーシュ", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 34437, + "mal_id": 34437, + "title": "Code Geass: Fukkatsu no Lelouch", + "english": "Code Geass: Lelouch of the Re;surrection", + "native": "コードギアス 復活のルルーシュ", + "synonyms": [ + "Code Geass: Lelouch of the Resurrection" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100878, + "mal_id": 37055, + "title": "Youjo Senki Movie", + "english": "Saga of Tanya the Evil - the Movie -", + "native": "劇場版 幼女戦記", + "synonyms": [ + "Колдунья в погонах. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37055, + "mal_id": 37055, + "title": "Youjo Senki Movie", + "english": "Saga of Tanya the Evil: The Movie", + "native": "劇場版 幼女戦記", + "synonyms": [ + "Gekijouban Youjo Senki" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.9246, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 100878, + "mal_id": 37055, + "title": "Youjo Senki Movie", + "english": "Saga of Tanya the Evil - the Movie -", + "native": "劇場版 幼女戦記", + "synonyms": [ + "Колдунья в погонах. Фильм" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 100815, + "mal_id": 36999, + "title": "Zoku Owarimonogatari", + "english": "Zoku Owarimonogatari", + "native": "続・終物語", + "synonyms": [ + "Continued End Tale" + ], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37451, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai (2019)", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop Never Laughs", + "Boogiepop Doesn't Laugh" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 100815, + "mal_id": 36999, + "title": "Zoku Owarimonogatari", + "english": "Zoku Owarimonogatari", + "native": "続・終物語", + "synonyms": [ + "Continued End Tale" + ], + "format": "OVA", + "episodes": 6, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 37451, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai (2019)", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop Never Laughs", + "Boogiepop Doesn't Laugh" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 37510, + "mal_id": 37510, + "title": "Mob Psycho 100 II", + "english": "Mob Psycho 100 II", + "native": "モブサイコ100 II", + "synonyms": [ + "Mob Psycho 100 2nd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 101283, + "mal_id": 37451, + "title": "Boogiepop wa Warawanai", + "english": "Boogiepop and Others", + "native": "ブギーポップは笑わない", + "synonyms": [ + "Boogiepop wa Warawanai (2019)" + ], + "format": "TV", + "episodes": 18, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 101166, + "mal_id": 37348, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Orion no Ya", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか ─ オリオンの矢 ─", + "synonyms": [ + "DanMachi: Arrow of the Orion" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 37348, + "mal_id": 37348, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion", + "native": "劇場版 ダンジョンに出会いを求めるのは間違っているだろうか -オリオンの矢-", + "synonyms": [ + "DanMachi Movie", + "Is It Wrong That I Want to Meet You in a Dungeon Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37993, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "Wataten! an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 8, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 102680, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "WATATEN!: an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten", + "An Angel Swooped Down on Me!", + "นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38145, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "My roommate is sometimes on my knees", + "sometimes on my head", + "Hizaue" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 37999, + "mal_id": 37999, + "title": "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War", + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 103874, + "mal_id": 38145, + "title": "Doukyonin wa Hiza, Tokidoki, Atama no Ue.", + "english": "My Roommate is a Cat", + "native": "同居人はひざ、時々、頭のうえ。", + "synonyms": [ + "Hizaue", + "นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 37779, + "mal_id": 37779, + "title": "Yakusoku no Neverland", + "english": "The Promised Neverland", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 102882, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2", + "english": "Real Girl 2", + "native": "3D彼女 リアルガール 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 37956, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2nd Season", + "english": "Real Girl Season 2", + "native": "3D彼女 リアルガール(第2シーズン)", + "synonyms": [ + "3D Girlfriend 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 102882, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2", + "english": "Real Girl 2", + "native": "3D彼女 リアルガール 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 102882, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2", + "english": "Real Girl 2", + "native": "3D彼女 リアルガール 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 102882, + "mal_id": 37956, + "title": "3D Kanojo: Real Girl 2", + "english": "Real Girl 2", + "native": "3D彼女 リアルガール 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 101344, + "mal_id": 37515, + "title": "Made in Abyss: Hourou Suru Tasogare", + "english": "Made in Abyss: Wandering Twilight", + "native": "メイドインアビス 放浪する黄昏", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 37515, + "mal_id": 37515, + "title": "Made in Abyss Movie 2: Hourou Suru Tasogare", + "english": "Made in Abyss: Wandering Twilight", + "native": "劇場版総集編【後編】メイドインアビス 放浪する黄昏", + "synonyms": [ + "Made in Abyss Movie 2: Wandering Twilight" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 105893, + "mal_id": 38699, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero Specials", + "english": "My Hero Academia the Movie: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典", + "synonyms": [ + "All Might: Rising The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38699, + "mal_id": 38699, + "title": "Boku no Hero Academia the Movie 1: Futari no Hero Specials", + "english": "My Hero Academia: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ 特典", + "synonyms": [ + "All Might: Rising - The Animation", + "Boku no Hero Academia Picture Drama", + "My Hero Academia: All Might Rising" + ], + "format": "Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 2, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9085, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 105893, + "mal_id": 38699, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero Specials", + "english": "My Hero Academia the Movie: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典", + "synonyms": [ + "All Might: Rising The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 105893, + "mal_id": 38699, + "title": "Boku no Hero Academia THE MOVIE: Futari no Hero Specials", + "english": "My Hero Academia the Movie: Two Heroes Specials", + "native": "僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典", + "synonyms": [ + "All Might: Rising The Animation" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 2, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 36633, + "mal_id": 36633, + "title": "Date A Live III", + "english": "Date A Live III", + "native": "デート・ア・ライブⅢ", + "synonyms": [ + "Date A Live 3", + "Date A Live 3rd Season", + "DAL 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 101343, + "mal_id": 37514, + "title": "Made in Abyss: Tabidachi no Yoake", + "english": "Made in Abyss: Journey's Dawn", + "native": "メイドインアビス 旅立ちの夜明け", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 37514, + "mal_id": 37514, + "title": "Made in Abyss Movie 1: Tabidachi no Yoake", + "english": "Made in Abyss: Journey's Dawn", + "native": "劇場版総集編【前編】メイドインアビス 旅立ちの夜明け", + "synonyms": [ + "Made in Abyss Movie 1: Journey's Dawn" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 101773, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [ + "笨拙之极的上野 " + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 37920, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 7, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 101773, + "mal_id": 37920, + "title": "Ueno-san wa Bukiyou", + "english": "How clumsy you are, Miss Ueno.", + "native": "上野さんは不器用", + "synonyms": [ + "笨拙之极的上野 " + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38101, + "mal_id": 38101, + "title": "5-toubun no Hanayome", + "english": "The Quintessential Quintuplets", + "native": "五等分の花嫁", + "synonyms": [ + "Gotoubun no Hanayome", + "The Five Wedded Brides" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 11, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21322, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV_SHORT", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21322, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV_SHORT", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37982, + "mal_id": 37982, + "title": "Domestic na Kanojo", + "english": "Domestic Girlfriend", + "native": "ドメスティックな彼女", + "synonyms": [ + "Dome x Kano", + "Domekano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 12, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.8839, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21322, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV_SHORT", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 35790, + "mal_id": 35790, + "title": "Tate no Yuusha no Nariagari", + "english": "The Rising of the Shield Hero", + "native": "盾の勇者の成り上がり", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 9, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.8687, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 21322, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV_SHORT", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 37993, + "mal_id": 37993, + "title": "Watashi ni Tenshi ga Maiorita!", + "english": "Wataten! an Angel Flew Down to Me", + "native": "私に天使が舞い降りた!", + "synonyms": [ + "Wataten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 8, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.9161, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 100523, + "mal_id": 36792, + "title": "Eromanga Sensei OVA", + "english": null, + "native": "エロマンガ先生 OVA", + "synonyms": [ + "Ero Manga Sensei" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2019, + "start_date": { + "year": 2019, + "month": 1, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 31537, + "mal_id": 31537, + "title": "Manaria Friends", + "english": "Mysteria Friends", + "native": "マナリアフレンズ", + "synonyms": [ + "Rage of Bahamut: Manaria Friends", + "Shingeki no Bahamut: Manaria Friends" + ], + "format": "TV", + "episodes": 10, + "season": "WINTER", + "year": 2019, + "start_date": { + "day": 21, + "month": 1, + "year": 2019 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2020-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2020-fall.json new file mode 100644 index 0000000..a56aba0 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2020-fall.json @@ -0,0 +1,6868 @@ +{ + "year": 2020, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 112151, + "mal_id": 40456, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "KnY Movie", + "Els Guardians de la Nit: El Tren Infinit", + "Guardianes de la Noche: Tren Infinito", + "Demon Slayer: Mugen Treni", + "Demon Slayer: Il Treno Mugen", + "鬼灭之刃:无限列车篇", + "قاتل الشياطين الفيلم: قطار اللانهاية", + "ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์", + "Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l'Infini", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ", + "극장판 귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 113596, + "mal_id": 40787, + "title": "Josee to Tora to Sakanatachi", + "english": "Josee, the Tiger and the Fish", + "native": "ジョゼと虎と魚たち", + "synonyms": [ + "Josee to Tora to Sakana-tachi", + "乔西的虎与鱼", + "Josee, el Tigre y los Peces", + "Josee, El Tigre i Els Peixos", + "โจเซ่ กับเสือและหมู่ปลา", + "Josie, der Tiger und die Fische.", + "Josée, le tigre et les poissons", + "Её заветное желание", + "Жозе, тигр и рыба", + " Josée, la Tigre e i Pesci" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 116673, + "mal_id": 41468, + "title": "BURN THE WITCH", + "english": "BURN THE WITCH", + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 116005, + "mal_id": 41345, + "title": "NOBLESSE", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 111324, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 103276, + "mal_id": 38085, + "title": "Fate/Grand Order: Shinsei Entaku Ryouiki Camelot - Wandering; Agateram", + "english": "Fate/Grand Order Divine Realm of the Round Table: Camelot - Wandering; Agateram", + "native": "劇場版 Fate/Grand Order -神聖円卓領域キャメロット- 前編 Wandering; Agateram", + "synonyms": [ + "Судьба/Великий приказ: Камелот — Странствие" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 40748, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "Jujutsu Kaisen", + "native": "呪術廻戦", + "synonyms": [ + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 40456, + "mal_id": 40456, + "title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "native": "劇場版 鬼滅の刃 無限列車編", + "synonyms": [ + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 40787, + "mal_id": 40787, + "title": "Josee to Tora to Sakana-tachi", + "english": "Josee, the Tiger and the Fish", + "native": "ジョゼと虎と魚たち", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 41433, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 40497, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "Mahouka Koukou no Rettousei 2nd Season", + "The Irregular at Magic High School Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 41380, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 41345, + "mal_id": 41345, + "title": "Noblesse", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [ + "노블레스" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 41468, + "mal_id": 41468, + "title": "Burn the Witch", + "english": null, + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 39790, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "Adashima" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 9, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 40059, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 5, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 40974, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くま クマ 熊 ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 40730, + "mal_id": 40730, + "title": "Tian Guan Cifu", + "english": "Heaven Official's Blessing", + "native": "天官賜福", + "synonyms": [ + "TGCF", + "Tian Guan Ci Fu" + ], + "format": "ONA", + "episodes": 11, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 40359, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40748, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "Jujutsu Kaisen", + "native": "呪術廻戦", + "synonyms": [ + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 113415, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "JUJUTSU KAISEN", + "native": "呪術廻戦", + "synonyms": [ + "JJK", + "Sorcery Fight", + "咒术回战", + "주술회전", + "มหาเวทย์ผนึกมาร", + "جوجوتسو كايسن", + "Магическая битва", + "咒術迴戰" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 112151, + "mal_id": 40456, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "KnY Movie", + "Els Guardians de la Nit: El Tren Infinit", + "Guardianes de la Noche: Tren Infinito", + "Demon Slayer: Mugen Treni", + "Demon Slayer: Il Treno Mugen", + "鬼灭之刃:无限列车篇", + "قاتل الشياطين الفيلم: قطار اللانهاية", + "ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์", + "Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l'Infini", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ", + "극장판 귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40456, + "mal_id": 40456, + "title": "Kimetsu no Yaiba Movie: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train", + "native": "劇場版 鬼滅の刃 無限列車編", + "synonyms": [ + "Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen", + "Kimetsu no Yaiba: Infinity Train", + "Demon Slayer Movie: Infinity Train" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 112151, + "mal_id": 40456, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "KnY Movie", + "Els Guardians de la Nit: El Tren Infinit", + "Guardianes de la Noche: Tren Infinito", + "Demon Slayer: Mugen Treni", + "Demon Slayer: Il Treno Mugen", + "鬼灭之刃:无限列车篇", + "قاتل الشياطين الفيلم: قطار اللانهاية", + "ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์", + "Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l'Infini", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ", + "극장판 귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 10, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 112151, + "mal_id": 40456, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "KnY Movie", + "Els Guardians de la Nit: El Tren Infinit", + "Guardianes de la Noche: Tren Infinito", + "Demon Slayer: Mugen Treni", + "Demon Slayer: Il Treno Mugen", + "鬼灭之刃:无限列车篇", + "قاتل الشياطين الفيلم: قطار اللانهاية", + "ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์", + "Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l'Infini", + "ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ", + "극장판 귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 40059, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 5, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 113538, + "mal_id": 40776, + "title": "Haikyuu!! TO THE TOP 2", + "english": "HAIKYU!! TO THE TOP Part 2", + "native": "ハイキュー!! TO THE TOP 2", + "synonyms": [ + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2", + "Haikyu!! Season 4 Part 2", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 40359, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 40059, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 5, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 14, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116267, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "TONIKAWA: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Fly Me to the Moon", + "Tonikaku Cawaii", + "Generally Cute", + "总之就是非常可爱", + "จะยังไงภรรยาของผมก็น่ารัก", + "Красавица: Унеси меня на Луну" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 19, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 39790, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "Adashima" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 9, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112124, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅢ", + "synonyms": [ + "ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III", + "Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III", + "Danmachi III", + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3", + "ダンまちⅢ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 113596, + "mal_id": 40787, + "title": "Josee to Tora to Sakanatachi", + "english": "Josee, the Tiger and the Fish", + "native": "ジョゼと虎と魚たち", + "synonyms": [ + "Josee to Tora to Sakana-tachi", + "乔西的虎与鱼", + "Josee, el Tigre y los Peces", + "Josee, El Tigre i Els Peixos", + "โจเซ่ กับเสือและหมู่ปลา", + "Josie, der Tiger und die Fische.", + "Josée, le tigre et les poissons", + "Её заветное желание", + "Жозе, тигр и рыба", + " Josée, la Tigre e i Pesci" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40787, + "mal_id": 40787, + "title": "Josee to Tora to Sakana-tachi", + "english": "Josee, the Tiger and the Fish", + "native": "ジョゼと虎と魚たち", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9385, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 113596, + "mal_id": 40787, + "title": "Josee to Tora to Sakanatachi", + "english": "Josee, the Tiger and the Fish", + "native": "ジョゼと虎と魚たち", + "synonyms": [ + "Josee to Tora to Sakana-tachi", + "乔西的虎与鱼", + "Josee, el Tigre y los Peces", + "Josee, El Tigre i Els Peixos", + "โจเซ่ กับเสือและหมู่ปลา", + "Josie, der Tiger und die Fische.", + "Josée, le tigre et les poissons", + "Её заветное желание", + "Жозе, тигр и рыба", + " Josée, la Tigre e i Pesci" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 12, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41433, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 39790, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "Adashima" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 9, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 116566, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [ + "아쿠다마 드라이브", + "Акудама Драйв" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114124, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40497, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "Mahouka Koukou no Rettousei 2nd Season", + "The Irregular at Magic High School Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 18, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 112609, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [ + "MajoTabi", + "마녀의 여행", + "魔女之旅", + "Elainas Reise", + "การเดินทางของคุณแม่มด", + "Странствующая ведьма" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41345, + "mal_id": 41345, + "title": "Noblesse", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [ + "노블레스" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 117343, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40497, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "Mahouka Koukou no Rettousei 2nd Season", + "The Irregular at Magic High School Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.8768, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40974, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くま クマ 熊 ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.8692, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112300, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "The Irregular at Magic High School Season 2", + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2", + "พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน", + "Непутёвый ученик в школе магии: Гость" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40748, + "mal_id": 40748, + "title": "Jujutsu Kaisen", + "english": "Jujutsu Kaisen", + "native": "呪術廻戦", + "synonyms": [ + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 0.9381, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 41380, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 112667, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "Kimisen", + " ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 116673, + "mal_id": 41468, + "title": "BURN THE WITCH", + "english": "BURN THE WITCH", + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41468, + "mal_id": 41468, + "title": "Burn the Witch", + "english": null, + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.9185, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 116673, + "mal_id": 41468, + "title": "BURN THE WITCH", + "english": "BURN THE WITCH", + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 116673, + "mal_id": 41468, + "title": "BURN THE WITCH", + "english": "BURN THE WITCH", + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 116673, + "mal_id": 41468, + "title": "BURN THE WITCH", + "english": "BURN THE WITCH", + "native": "BURN THE WITCH", + "synonyms": [], + "format": "ONA", + "episodes": 3, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 41380, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 0.9225, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 23, + "score": 0.8951, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.8944, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116242, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives.", + "ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116005, + "mal_id": 41345, + "title": "NOBLESSE", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41345, + "mal_id": 41345, + "title": "Noblesse", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [ + "노블레스" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116005, + "mal_id": 41345, + "title": "NOBLESSE", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116005, + "mal_id": 41345, + "title": "NOBLESSE", + "english": "Noblesse", + "native": "NOBLESSE -ノブレス-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40974, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くま クマ 熊 ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 118419, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [ + "День, когда я стала Богом" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 40059, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 5, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 41380, + "mal_id": 41380, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru", + "english": "I'm Standing on a Million Lives", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114446, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry - GOU", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When the Cicadas Cry ", + "Higurashi: When They Cry - NEW", + "Higurashi no Naku Koro ni (2020)", + "ひぐらしのなく頃に (2020)", + "HIGURASHI: Когда плачут цикады — GOU" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 39790, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "Adashima" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 9, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41433, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109287, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "AdaShima", + "Адати и Симамура" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 1.0938, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41389, + "mal_id": 41389, + "title": "Tonikaku Kawaii", + "english": "Tonikawa: Over The Moon For You", + "native": "トニカクカワイイ", + "synonyms": [ + "Generally Cute", + "Fly Me to the Moon" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 10, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 111428, + "mal_id": 40397, + "title": "Maou-jou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Maou Jou de Oyasumi", + "Maoujou de Oyasumi", + "MaouYasu", + "在魔王城说晚安" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 1.049, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 39790, + "mal_id": 39790, + "title": "Adachi to Shimamura", + "english": "Adachi and Shimamura", + "native": "安達としまむら", + "synonyms": [ + "Adashima" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 9, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 14, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9722, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 115740, + "mal_id": 41312, + "title": "Kamitachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kami-tachi ni Hirowareta Otoko", + "เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40974, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くま クマ 熊 ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41930, + "mal_id": 41930, + "title": "Kamisama ni Natta Hi", + "english": "The Day I Became a God", + "native": "神様になった日", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40595, + "mal_id": 40595, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen", + "english": "Our Last Crusade or the Rise of a New World", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦", + "synonyms": [ + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 7, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41433, + "mal_id": 41433, + "title": "Akudama Drive", + "english": "Akudama Drive", + "native": "アクダマドライブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 8, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 114340, + "mal_id": 40974, + "title": "Kuma Kuma Kuma Bear", + "english": "Kuma Kuma Kuma Bear", + "native": "くまクマ熊ベアー", + "synonyms": [ + "The Bears Bear a Bare Kuma", + "熊熊勇闯异世界", + "Ми-ми-ми-мишка" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 41312, + "mal_id": 41312, + "title": "Kami-tachi ni Hirowareta Otoko", + "english": "By the Grace of the Gods", + "native": "神達に拾われた男", + "synonyms": [ + "The man picked up by the gods", + "Kamihiro", + "Kamitachi ni Hirowareta Otoko" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 40059, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 5, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40454, + "mal_id": 40454, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? III", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかIII", + "synonyms": [ + "DanMachi 3rd Season", + "Is It Wrong That I Want to Meet You in a Dungeon 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 9, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40497, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "Mahouka Koukou no Rettousei 2nd Season", + "The Irregular at Magic High School Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 110355, + "mal_id": 40059, + "title": "Golden Kamuy 3rd Season", + "english": "Golden Kamuy Season 3", + "native": "ゴールデンカムイ 第三期", + "synonyms": [ + "Golden Kamui 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 111324, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 40359, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 111324, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40776, + "mal_id": 40776, + "title": "Haikyuu!! To the Top Part 2", + "english": "Haikyu!! To the Top 2nd-cour", + "native": "ハイキュー TO THE TOP 第2クール", + "synonyms": [ + "Haikyu!! TO THE TOP 2nd-cour", + "Haikyu!! TO THE TOP Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 111324, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40911, + "mal_id": 40911, + "title": "Yuukoku no Moriarty", + "english": "Moriarty the Patriot", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 11, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 111324, + "mal_id": 40359, + "title": "Ikebukuro West Gate Park", + "english": "Ikebukuro West Gate Park", + "native": "池袋ウエストゲートパーク", + "synonyms": [ + "IWGP" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41006, + "mal_id": 41006, + "title": "Higurashi no Naku Koro ni Gou", + "english": "Higurashi: When They Cry – Gou", + "native": "ひぐらしのなく頃に業", + "synonyms": [ + "When They Cry", + "Higurashi: When They Cry - New", + "Higurashi no Naku Koro ni (2020)", + "When the Cicadas Cry", + "The Moment the Cicadas Cry" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 1, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41911, + "mal_id": 41911, + "title": "Hanyou no Yashahime: Sengoku Otogizoushi", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫 -戦国御伽草子-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 3, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40397, + "mal_id": 40397, + "title": "Maoujou de Oyasumi", + "english": "Sleepy Princess in the Demon Castle", + "native": "魔王城でおやすみ", + "synonyms": [ + "Sleeping in Devil's Castle" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 6, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40571, + "mal_id": 40571, + "title": "Majo no Tabitabi", + "english": "Wandering Witch: The Journey of Elaina", + "native": "魔女の旅々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 2, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 41619, + "mal_id": 41619, + "title": "Munou na Nana", + "english": "Talentless Nana", + "native": "無能なナナ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 118399, + "mal_id": 41911, + "title": "Hanyou no Yashahime", + "english": "Yashahime: Princess Half-Demon", + "native": "半妖の夜叉姫", + "synonyms": [ + "ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2020, + "start_date": { + "year": 2020, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40497, + "mal_id": 40497, + "title": "Mahouka Koukou no Rettousei: Raihousha-hen", + "english": "The Irregular at Magic High School: Visitor Arc", + "native": "魔法科高校の劣等生 来訪者編", + "synonyms": [ + "Mahouka Koukou no Rettousei 2nd Season", + "The Irregular at Magic High School Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2020, + "start_date": { + "day": 4, + "month": 10, + "year": 2020 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2020-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2020-spring.json new file mode 100644 index 0000000..dd4f8a4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2020-spring.json @@ -0,0 +1,6517 @@ +{ + "year": 2020, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 110349, + "mal_id": 40052, + "title": "GREAT PRETENDER", + "english": "Great Pretender", + "native": "GREAT PRETENDER", + "synonyms": [ + "大欺诈师", + "הנוכל", + "المحتال العظيم", + "El timador timado", + "Великий притворщик", + "Ο Μεγάλος Υποκριτής", + "EL GRAN FARSANTE", + "GrePre", + "グレプリ" + ], + "format": "ONA", + "episodes": 23, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 114963, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko", + "Amor de Gata", + "Loin de moi, près de toi", + "Olhos de Gato", + "Um ein Schnurrhaar", + "Miyo - Un amore felino", + "Для тебя я стану кошкой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 108241, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [ + "格莱普尼尔" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 110354, + "mal_id": 40060, + "title": "BNA", + "english": "BNA", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal", + "BNA: Brand New Animal", + "יש חיה כזאת" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 110547, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 113917, + "mal_id": 40858, + "title": "PSYCHO-PASS 3: FIRST INSPECTOR", + "english": "PSYCHO-PASS 3: First Inspector", + "native": "PSYCHO-PASS サイコパス 3 FIRST INSPECTOR", + "synonyms": [ + "PSYCHO-PASS 3: PRIMEIRO INSPETOR" + ], + "format": "ONA", + "episodes": 3, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 108266, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": "Tsugumomo2", + "native": "継つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 112296, + "mal_id": 40485, + "title": "Strike the Blood IV", + "english": null, + "native": "ストライク・ザ・ブラッド IV", + "synonyms": [ + "Strike the Blood Fourth", + "ราชันย์โลหิตรัตติกาล ภาค 4" + ], + "format": "OVA", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 39463, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 41168, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko" + ], + "format": "ONA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 6, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 41120, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:Unlimited", + "english": "The Millionaire Detective – Balance: Unlimited", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 40060, + "mal_id": 40060, + "title": "BNA", + "english": "BNA: Brand New Animal", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 9, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 40716, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "Hidden Things", + "Kakushigoto: My Dad's Secret Ambition" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 39710, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "Sing \"Yesterday\" for Me", + "native": "イエスタデイをうたって", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 39555, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ", + "synonyms": [ + "Baki (2020)" + ], + "format": "ONA", + "episodes": 13, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 6, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 40128, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 39469, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": null, + "native": "継つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 40485, + "mal_id": 40485, + "title": "Strike the Blood IV", + "english": null, + "native": "ストライク・ザ・ブラッド IV", + "synonyms": [ + "Strike the Blood Fourth" + ], + "format": "OVA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 40165, + "mal_id": 40165, + "title": "Listeners", + "english": "Listeners", + "native": "LISTENERS リスナーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 41053, + "mal_id": 41053, + "title": "Dorohedoro: Ma no Omake", + "english": "Dorohedoro: Bonus Curse or Extra Evil", + "native": "ドロヘドロ 魔のおまけ", + "synonyms": [ + "Dorohedoro OVA" + ], + "format": "Special", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2020 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 112641, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2", + "Kaguya-sama: Love is War Season 2", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2", + "Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen", + "สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2", + "Госпожа Кагуя: в любви как на войне. 2 сезон" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40716, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "Hidden Things", + "Kakushigoto: My Dad's Secret Ambition" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 115230, + "mal_id": 40221, + "title": "Kami no Tou: Tower of God", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "タワーオブ・ゴッド", + "신의 탑", + "Sinui Tap", + "Kami no Tou", + "TOG", + "Башня Бога" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 1.0154, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 110349, + "mal_id": 40052, + "title": "GREAT PRETENDER", + "english": "Great Pretender", + "native": "GREAT PRETENDER", + "synonyms": [ + "大欺诈师", + "הנוכל", + "المحتال العظيم", + "El timador timado", + "Великий притворщик", + "Ο Μεγάλος Υποκριτής", + "EL GRAN FARSANTE", + "GrePre", + "グレプリ" + ], + "format": "ONA", + "episodes": 23, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39463, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 110349, + "mal_id": 40052, + "title": "GREAT PRETENDER", + "english": "Great Pretender", + "native": "GREAT PRETENDER", + "synonyms": [ + "大欺诈师", + "הנוכל", + "المحتال العظيم", + "El timador timado", + "Великий притворщик", + "Ο Μεγάλος Υποκριτής", + "EL GRAN FARSANTE", + "GrePre", + "グレプリ" + ], + "format": "ONA", + "episodes": 23, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 110349, + "mal_id": 40052, + "title": "GREAT PRETENDER", + "english": "Great Pretender", + "native": "GREAT PRETENDER", + "synonyms": [ + "大欺诈师", + "הנוכל", + "المحتال العظيم", + "El timador timado", + "Великий притворщик", + "Ο Μεγάλος Υποκριτής", + "EL GRAN FARSANTE", + "GrePre", + "グレプリ" + ], + "format": "ONA", + "episodes": 23, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 11, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 110349, + "mal_id": 40052, + "title": "GREAT PRETENDER", + "english": "Great Pretender", + "native": "GREAT PRETENDER", + "synonyms": [ + "大欺诈师", + "הנוכל", + "المحتال العظيم", + "El timador timado", + "Великий притворщик", + "Ο Μεγάλος Υποκριτής", + "EL GRAN FARSANTE", + "GrePre", + "グレプリ" + ], + "format": "ONA", + "episodes": 23, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114963, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko", + "Amor de Gata", + "Loin de moi, près de toi", + "Olhos de Gato", + "Um ein Schnurrhaar", + "Miyo - Un amore felino", + "Для тебя я стану кошкой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 41168, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko" + ], + "format": "ONA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 6, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114963, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko", + "Amor de Gata", + "Loin de moi, près de toi", + "Olhos de Gato", + "Um ein Schnurrhaar", + "Miyo - Un amore felino", + "Для тебя я стану кошкой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114963, + "mal_id": 41168, + "title": "Nakitai Watashi wa Neko wo Kaburu", + "english": "A Whisker Away", + "native": "泣きたい私は猫をかぶる", + "synonyms": [ + "Nakineko", + "Amor de Gata", + "Loin de moi, près de toi", + "Olhos de Gato", + "Um ein Schnurrhaar", + "Miyo - Un amore felino", + "Для тебя я стану кошкой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 1.1923, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 111762, + "mal_id": 40417, + "title": "Fruits Basket: 2nd Season", + "english": "Fruits Basket Season 2", + "native": "フルーツバスケット 2nd Season", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "水果篮子 第二季", + "เสน่ห์สาวข้าวปั้น ภาค 2", + "Fruits Basket (2019) 2", + "Корзинка фруктов 2" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41120, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:Unlimited", + "english": "The Millionaire Detective – Balance: Unlimited", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 12, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114888, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:UNLIMITED", + "english": "The Millionaire Detective - Balance: UNLIMITED", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108241, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [ + "格莱普尼尔" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39463, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108241, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [ + "格莱普尼尔" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40165, + "mal_id": 40165, + "title": "Listeners", + "english": "Listeners", + "native": "LISTENERS リスナーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 108241, + "mal_id": 39463, + "title": "Gleipnir", + "english": "Gleipnir", + "native": "グレイプニル", + "synonyms": [ + "格莱普尼尔" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 12, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114043, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "食戟之灵:豪之皿", + "ยอดนักปรุงโซมะ ภาค 5" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39469, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": null, + "native": "継つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40060, + "mal_id": 40060, + "title": "BNA", + "english": "BNA: Brand New Animal", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 9, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 104647, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta…", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags..", + "Hamefura", + "Hamehura", + "Bakarina", + "转生成为了只有乙女游戏破灭Flag的邪恶大小姐…", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 110354, + "mal_id": 40060, + "title": "BNA", + "english": "BNA", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal", + "BNA: Brand New Animal", + "יש חיה כזאת" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 3, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40060, + "mal_id": 40060, + "title": "BNA", + "english": "BNA: Brand New Animal", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 9, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40716, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "Hidden Things", + "Kakushigoto: My Dad's Secret Ambition" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 18, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39469, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": null, + "native": "継つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 19, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 22, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 113311, + "mal_id": 40716, + "title": "Kakushigoto", + "english": "Kakushigoto", + "native": "かくしごと", + "synonyms": [ + "ความลับของคุณพ่อเลี้ยงเดี่ยว", + "Тайная работа Какуси Гото" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 39710, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "Sing \"Yesterday\" for Me", + "native": "イエスタデイをうたって", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 23, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40165, + "mal_id": 40165, + "title": "Listeners", + "english": "Listeners", + "native": "LISTENERS リスナーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109020, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "SING \"YESTERDAY\" FOR ME", + "native": "イエスタデイをうたって", + "synonyms": [ + "Sing Yesterday for Me", + "Спой мне \"Yesterday\"" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 107871, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": "Princess Connect! Re:Dive", + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne", + "ปรินเซส คอนเนค รี: ไดฟ์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 106319, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "ผมเนี่ยนะ...ชายแปด!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.9923, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 113693, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Part 2", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第2期", + "synonyms": [ + "Ascendance of a Bookworm Season 2", + "爱书的下克上:为了成为图书管理员不择手段!2", + "หนอนหนังสือยึดอำนาจ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39555, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ", + "synonyms": [ + "Baki (2020)" + ], + "format": "ONA", + "episodes": 13, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 6, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 1.2, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 1.1097, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 0, + "score": 0.9306, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40591, + "mal_id": 40591, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen", + "english": "Kaguya-sama: Love is War?", + "native": "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", + "synonyms": [ + "Kaguya Wants to be Confessed To: The Geniuses' War of Love and Brains 2nd Season", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season", + "Kaguya-sama: Love is War 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 0.92, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 108522, + "mal_id": 39555, + "title": "Baki: Dai Raitaisai-hen", + "english": "Baki: The Great Raitai Tournament Saga", + "native": "バキ 大擂台賽編", + "synonyms": [ + "Baki 2nd Season", + "Баки: Великий турнир Райтай", + "BAKI: La saga del gran torneo de Raitai", + "Baki. Saga Wielkiego Turnieju Raitai" + ], + "format": "ONA", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 6, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 40532, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "Appare-Ranman!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40060, + "mal_id": 40060, + "title": "BNA", + "english": "BNA: Brand New Animal", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 9, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41120, + "mal_id": 41120, + "title": "Fugou Keiji: Balance:Unlimited", + "english": "The Millionaire Detective – Balance: Unlimited", + "native": "富豪刑事 Balance:UNLIMITED", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 10, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112444, + "mal_id": 40532, + "title": "Appare-Ranman!", + "english": "APPARE-RANMAN!", + "native": "天晴爛漫!", + "synonyms": [ + "Appare Ranman!" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 110547, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 40128, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 12, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 110547, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 38830, + "mal_id": 38830, + "title": "Hachi-nan tte, Sore wa Nai deshou!", + "english": "The 8th Son? Are You Kidding Me?", + "native": "八男って、それはないでしょう!", + "synonyms": [ + "Hachinan tte", + "Sore wa Nai deshou!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 110547, + "mal_id": 40128, + "title": "Arte", + "english": "Arte", + "native": "アルテ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38843, + "mal_id": 38843, + "title": "Shironeko Project: Zero Chronicle", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [ + "White Cat Project", + "Rune Story" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 110458, + "mal_id": 38843, + "title": "Shironeko Project: ZERO CHRONICLE", + "english": "Shironeko Project ZERO CHRONICLE", + "native": "白猫プロジェクトZERO CHRONICLE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108266, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": "Tsugumomo2", + "native": "継つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 39469, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": null, + "native": "継つぐもも", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108266, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": "Tsugumomo2", + "native": "継つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108266, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": "Tsugumomo2", + "native": "継つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 38555, + "mal_id": 38555, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta...", + "english": "My Next Life as a Villainess: All Routes Lead to Doom!", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…", + "synonyms": [ + "Hamefura", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108266, + "mal_id": 39469, + "title": "Tsugu Tsugumomo", + "english": "Tsugumomo2", + "native": "継つぐもも", + "synonyms": [ + "สึกุโมโมะ ภูตสาวแสบดุ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40513, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Nami yo Kiite Kure" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40165, + "mal_id": 40165, + "title": "Listeners", + "english": "Listeners", + "native": "LISTENERS リスナーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 4, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40060, + "mal_id": 40060, + "title": "BNA", + "english": "BNA: Brand New Animal", + "native": "BNA ビー・エヌ・エー", + "synonyms": [ + "Brand New Animal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 9, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 112353, + "mal_id": 40513, + "title": "Nami yo Kiitekure", + "english": "Wave, Listen to Me!", + "native": "波よ聞いてくれ", + "synonyms": [ + "Born to Be On Air!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 39710, + "mal_id": 39710, + "title": "Yesterday wo Utatte", + "english": "Sing \"Yesterday\" for Me", + "native": "イエスタデイをうたって", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 112296, + "mal_id": 40485, + "title": "Strike the Blood IV", + "english": null, + "native": "ストライク・ザ・ブラッド IV", + "synonyms": [ + "Strike the Blood Fourth", + "ราชันย์โลหิตรัตติกาล ภาค 4" + ], + "format": "OVA", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 40485, + "mal_id": 40485, + "title": "Strike the Blood IV", + "english": null, + "native": "ストライク・ザ・ブラッド IV", + "synonyms": [ + "Strike the Blood Fourth" + ], + "format": "OVA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 112296, + "mal_id": 40485, + "title": "Strike the Blood IV", + "english": null, + "native": "ストライク・ザ・ブラッド IV", + "synonyms": [ + "Strike the Blood Fourth", + "ราชันย์โลหิตรัตติกาล ภาค 4" + ], + "format": "OVA", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 39292, + "mal_id": 39292, + "title": "Princess Connect! Re:Dive", + "english": null, + "native": "プリンセスコネクト!Re:Dive", + "synonyms": [ + "Priconne" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 39730, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Hokago Teibo Nisshi", + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.8768, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 109019, + "mal_id": 39730, + "title": "Houkago Teibou Nisshi", + "english": "Diary of Our Days at the Breakwater", + "native": "放課後ていぼう日誌", + "synonyms": [ + "Afterschool Embankment Journal" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40682, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 6, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 1.1923, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40417, + "mal_id": 40417, + "title": "Fruits Basket 2nd Season", + "english": "Fruits Basket 2nd Season", + "native": "フルーツバスケット 2nd season", + "synonyms": [ + "Fruits Basket (2019) 2nd Season", + "Furuba", + "Fruits Basket (Kouhen)" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 7, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 1.0652, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40902, + "mal_id": 40902, + "title": "Shokugeki no Souma: Gou no Sara", + "english": "Food Wars! The Fifth Plate", + "native": "食戟のソーマ 豪ノ皿", + "synonyms": [ + "Shokugeki no Soma 5th Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 11, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40815, + "mal_id": 40815, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season", + "english": "Ascendance of a Bookworm Season 2", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期", + "synonyms": [ + "Ascendance of a Bookworm 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 5, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113108, + "mal_id": 40682, + "title": "Kingdom 3rd Season", + "english": "Kingdom Season 3", + "native": "キングダム 第3シリーズ", + "synonyms": [ + "สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3", + "Царство 3" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2020, + "start_date": { + "year": 2020, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40221, + "mal_id": 40221, + "title": "Kami no Tou", + "english": "Tower of God", + "native": "神之塔 -Tower of God-", + "synonyms": [ + "Sin-ui Tap", + "신의 탑" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2020, + "start_date": { + "day": 2, + "month": 4, + "year": 2020 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2020-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2020-summer.json new file mode 100644 index 0000000..91f73a1 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2020-summer.json @@ -0,0 +1,4763 @@ +{ + "year": 2020, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 116006, + "mal_id": 41353, + "title": "THE GOD OF HIGH SCHOOL", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "GoH", + "갓 오브 하이스쿨", + "Бог старшей школы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 112301, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha", + "The Misfit of Demon King Academy", + "魔王学院の不適合者", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน", + "魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~", + "Непригодный для Академии владыки тьмы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 103047, + "mal_id": 37987, + "title": "Violet Evergarden Movie", + "english": "Violet Evergarden: the Movie", + "native": "劇場版 ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "Виолетта Эвергарден", + "Вайоллет Эвергарден", + "薇尔莉特·伊芙加登" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 114308, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld Part 2", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season)", + "synonyms": [ + "Sword Art Online: Alicization - War of Underworld Last Season", + "SAOV", + "SAO5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 115113, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "宇崎学妹想要玩!", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 21719, + "mal_id": 33050, + "title": "Fate/stay night [Heaven's Feel] III. spring song", + "english": "Fate/stay night [Heaven’s Feel] III. spring song", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠⅠ.spring song", + "synonyms": [ + "Fate/HF III", + "Судьба/Ночь схватки: Прикосновение небес 3" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 110353, + "mal_id": 40056, + "title": "Deca-Dence", + "english": "DECA-DENCE", + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 111734, + "mal_id": 40421, + "title": "Given Movie", + "english": "Given The Movie", + "native": "映画 ギヴン", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 112788, + "mal_id": 40615, + "title": "Umibe no Étranger", + "english": "The Stranger by the Shore", + "native": "海辺のエトランゼ", + "synonyms": [ + "Seaside Stranger", + "Umibe no Etranger", + "L'Étranger de la plage", + "The Stranger by the Beach" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 111965, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーターグリルと賢者の時間", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 122349, + "mal_id": 42603, + "title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", + "english": "My Hero Academia: Make It! Do-or-Die Survival Training", + "native": "僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練", + "synonyms": [], + "format": "ONA", + "episodes": 2, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 112357, + "mal_id": 40515, + "title": "Nihon Chinbotsu: 2020", + "english": "Japan Sinks: 2020", + "native": "日本沈没2020", + "synonyms": [ + "2020: Japão Submerso", + "El Hundimiento de Japón: 2020", + "Japón se hunde: 2020" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 112818, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 114195, + "mal_id": 40936, + "title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", + "english": "ORESUKI: Are you the only one who loves me?: Our Playball / Our End Run / Our Game", + "native": "俺を好きなのはお前だけかよ~俺たちのゲームセット~", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 119113, + "mal_id": 42091, + "title": "Shingeki no Kyojin: Chronicle", + "english": "Attack on Titan ~Chronicle~", + "native": "進撃の巨人 〜クロニクル〜", + "synonyms": [ + "ผ่าพิภพไททัน Chronicle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 111852, + "mal_id": 40416, + "title": "Date A Bullet: Dead or Bullet", + "english": "Date A Bullet: Dead or Bullet & Nightmare or Queen", + "native": "デート・ア・バレット デッド・オア・バレット", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก เดอะมูฟวี่ Date A Bullet", + "Рандеву с пулей: Смерть или пуля" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 109125, + "mal_id": 39753, + "title": "Omoi, Omoware, Furi, Furare", + "english": null, + "native": "思い、思われ、ふり、ふられ", + "synonyms": [ + "Love, Be Loved, Leave, Be Left", + "Love Me, Love Me Not", + "Любит — не любит" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 110857, + "mal_id": 40215, + "title": "Aggressive Retsuko Season 3", + "english": "Aggretsuko: Season 3", + "native": "アグレッシブ烈子 シーズン3", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 40839, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 40496, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "The Misfit of Demon King Academy: History's Strongest Demon King Reincarnates and Goes to School with His Descendants" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 40052, + "mal_id": 40052, + "title": "Great Pretender", + "english": null, + "native": "GREAT PRETENDER", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 37987, + "mal_id": 37987, + "title": "Violet Evergarden Movie", + "english": "Violet Evergarden: The Movie", + "native": "劇場版 ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "Gekijouban Violet Evergarden" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 41226, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "Uzaki-chan Wants to Play!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 33050, + "mal_id": 33050, + "title": "Fate/stay night Movie: Heaven's Feel - III. Spring Song", + "english": "Fate/stay night: Heaven's Feel - III. Spring Song", + "native": "劇場版「Fate/stay night [Heaven's Feel] III.spring song」", + "synonyms": [ + "Fate/stay night Movie: Heaven's Feel 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 40056, + "mal_id": 40056, + "title": "Deca-Dence", + "english": null, + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 40421, + "mal_id": 40421, + "title": "Given Movie 1", + "english": "given The Movie", + "native": "映画 ギヴン", + "synonyms": [ + "Eiga Given" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 40436, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーター・グリルと賢者の時間", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 40615, + "mal_id": 40615, + "title": "Umibe no Étranger", + "english": "The Stranger by the Shore", + "native": "海辺のエトランゼ", + "synonyms": [ + "L'étranger du plage", + "L'étranger de la plage", + "The Stranger by the Beach", + "Umibe no Etranger" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 42603, + "mal_id": 42603, + "title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", + "english": "My Hero Academia: Make It! Do-or-Die Survival Training", + "native": "僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練", + "synonyms": [], + "format": "ONA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 40623, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 40515, + "mal_id": 40515, + "title": "Nihon Chinbotsu 2020", + "english": "Japan Sinks: 2020", + "native": "日本沈没2020", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 40936, + "mal_id": 40936, + "title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", + "english": "ORESUKI Are you the only one who loves me? - Our Playball / Our End Run / Our Game", + "native": "俺を好きなのはお前だけかよ ~俺たちのゲームセット~", + "synonyms": [ + "Ore wo Suki nano wa Omae dake ka yo Kanketsu-hen", + "Ore wo Suki nano wa Omae dake ka yo Episode 13", + "Oresuki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 37932, + "mal_id": 37932, + "title": "Quanzhi Gaoshou 2", + "english": "The King's Avatar 2", + "native": "全职高手2", + "synonyms": [ + "Quan Zhi Gao Shou 2nd Season", + "Full-Time Expert 2nd Season", + "Master of Skills 2nd Season", + "マスターオブスキル 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 40416, + "mal_id": 40416, + "title": "Date A Bullet: Dead or Bullet", + "english": null, + "native": "デート・ア・バレット デッド・オア・バレット", + "synonyms": [ + "Date A Live Fragment: Date A Bullet" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 42091, + "mal_id": 42091, + "title": "Shingeki no Kyojin: Chronicle", + "english": "Attack on Titan: Chronicle", + "native": "進撃の巨人 〜クロニクル〜", + "synonyms": [ + "Attack on Titan: Chronicle" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 40215, + "mal_id": 40215, + "title": "Aggressive Retsuko (ONA) 3rd Season", + "english": "Aggretsuko (ONA) 3rd Season", + "native": "アグレッシブ烈子第3期", + "synonyms": [ + "Aggretsuko 3rd Season" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 39753, + "mal_id": 39753, + "title": "Omoi, Omoware, Furi, Furare", + "english": "Love Me, Love Me Not", + "native": "思い、思われ、ふり、ふられ", + "synonyms": [ + "Love", + "Be Loved", + "Leave", + "Be Left", + "Furifura" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 1.2647, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 1.1207, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40623, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.963, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 108632, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2nd Season", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2020)", + "Re: 제로부터 시작하는 이세계 생활 2기", + "Re:从零开始的异世界生活第二季(上半)", + "Re:从零开始的异世界生活 2 上半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40839, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40052, + "mal_id": 40052, + "title": "Great Pretender", + "english": null, + "native": "GREAT PRETENDER", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40056, + "mal_id": 40056, + "title": "Deca-Dence", + "english": null, + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 113813, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari", + "สะดุดรักยัยแฟนเช่า", + "Pacar Sewaan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 116006, + "mal_id": 41353, + "title": "THE GOD OF HIGH SCHOOL", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "GoH", + "갓 오브 하이스쿨", + "Бог старшей школы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 116006, + "mal_id": 41353, + "title": "THE GOD OF HIGH SCHOOL", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "GoH", + "갓 오브 하이스쿨", + "Бог старшей школы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40496, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "The Misfit of Demon King Academy: History's Strongest Demon King Reincarnates and Goes to School with His Descendants" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37932, + "mal_id": 37932, + "title": "Quanzhi Gaoshou 2", + "english": "The King's Avatar 2", + "native": "全职高手2", + "synonyms": [ + "Quan Zhi Gao Shou 2nd Season", + "Full-Time Expert 2nd Season", + "Master of Skills 2nd Season", + "マスターオブスキル 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 114236, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2", + "หน่วยผจญคนไฟลุก ภาค 2" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40052, + "mal_id": 40052, + "title": "Great Pretender", + "english": null, + "native": "GREAT PRETENDER", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112301, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha", + "The Misfit of Demon King Academy", + "魔王学院の不適合者", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน", + "魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~", + "Непригодный для Академии владыки тьмы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40496, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "The Misfit of Demon King Academy: History's Strongest Demon King Reincarnates and Goes to School with His Descendants" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112301, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha", + "The Misfit of Demon King Academy", + "魔王学院の不適合者", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน", + "魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~", + "Непригодный для Академии владыки тьмы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112301, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha", + "The Misfit of Demon King Academy", + "魔王学院の不適合者", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน", + "魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~", + "Непригодный для Академии владыки тьмы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 41226, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "Uzaki-chan Wants to Play!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.8765, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 112301, + "mal_id": 40496, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha", + "The Misfit of Demon King Academy", + "魔王学院の不適合者", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน", + "魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~", + "Непригодный для Академии владыки тьмы" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40215, + "mal_id": 40215, + "title": "Aggressive Retsuko (ONA) 3rd Season", + "english": "Aggretsuko (ONA) 3rd Season", + "native": "アグレッシブ烈子第3期", + "synonyms": [ + "Aggretsuko 3rd Season" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108489, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Come wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Oregairu 3", + "俺ガイル3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3", + "กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน", + "Oregairu Kan" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40839, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 103047, + "mal_id": 37987, + "title": "Violet Evergarden Movie", + "english": "Violet Evergarden: the Movie", + "native": "劇場版 ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "Виолетта Эвергарден", + "Вайоллет Эвергарден", + "薇尔莉特·伊芙加登" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 37987, + "mal_id": 37987, + "title": "Violet Evergarden Movie", + "english": "Violet Evergarden: The Movie", + "native": "劇場版 ヴァイオレット・エヴァーガーデン", + "synonyms": [ + "Gekijouban Violet Evergarden" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114308, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld Part 2", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season)", + "synonyms": [ + "Sword Art Online: Alicization - War of Underworld Last Season", + "SAOV", + "SAO5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114308, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld Part 2", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season)", + "synonyms": [ + "Sword Art Online: Alicization - War of Underworld Last Season", + "SAOV", + "SAO5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 1.1531, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 114308, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld Part 2", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season)", + "synonyms": [ + "Sword Art Online: Alicization - War of Underworld Last Season", + "SAOV", + "SAO5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 115113, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "宇崎学妹想要玩!", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 41226, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "Uzaki-chan Wants to Play!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 115113, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "宇崎学妹想要玩!", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 115113, + "mal_id": 41226, + "title": "Uzaki-chan wa Asobitai!", + "english": "Uzaki-chan Wants to Hang Out!", + "native": "宇崎ちゃんは遊びたい!", + "synonyms": [ + "宇崎学妹想要玩!", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21719, + "mal_id": 33050, + "title": "Fate/stay night [Heaven's Feel] III. spring song", + "english": "Fate/stay night [Heaven’s Feel] III. spring song", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠⅠ.spring song", + "synonyms": [ + "Fate/HF III", + "Судьба/Ночь схватки: Прикосновение небес 3" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 33050, + "mal_id": 33050, + "title": "Fate/stay night Movie: Heaven's Feel - III. Spring Song", + "english": "Fate/stay night: Heaven's Feel - III. Spring Song", + "native": "劇場版「Fate/stay night [Heaven's Feel] III.spring song」", + "synonyms": [ + "Fate/stay night Movie: Heaven's Feel 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 15, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 21719, + "mal_id": 33050, + "title": "Fate/stay night [Heaven's Feel] III. spring song", + "english": "Fate/stay night [Heaven’s Feel] III. spring song", + "native": "Fate/stay night[Heaven's Feel] ⅠⅠⅠ.spring song", + "synonyms": [ + "Fate/HF III", + "Судьба/Ночь схватки: Прикосновение небес 3" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40215, + "mal_id": 40215, + "title": "Aggressive Retsuko (ONA) 3rd Season", + "english": "Aggretsuko (ONA) 3rd Season", + "native": "アグレッシブ烈子第3期", + "synonyms": [ + "Aggretsuko 3rd Season" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 110353, + "mal_id": 40056, + "title": "Deca-Dence", + "english": "DECA-DENCE", + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 40056, + "mal_id": 40056, + "title": "Deca-Dence", + "english": null, + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 110353, + "mal_id": 40056, + "title": "Deca-Dence", + "english": "DECA-DENCE", + "native": "デカダンス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40839, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 111734, + "mal_id": 40421, + "title": "Given Movie", + "english": "Given The Movie", + "native": "映画 ギヴン", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40421, + "mal_id": 40421, + "title": "Given Movie 1", + "english": "given The Movie", + "native": "映画 ギヴン", + "synonyms": [ + "Eiga Given" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112788, + "mal_id": 40615, + "title": "Umibe no Étranger", + "english": "The Stranger by the Shore", + "native": "海辺のエトランゼ", + "synonyms": [ + "Seaside Stranger", + "Umibe no Etranger", + "L'Étranger de la plage", + "The Stranger by the Beach" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 40615, + "mal_id": 40615, + "title": "Umibe no Étranger", + "english": "The Stranger by the Shore", + "native": "海辺のエトランゼ", + "synonyms": [ + "L'étranger du plage", + "L'étranger de la plage", + "The Stranger by the Beach", + "Umibe no Etranger" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.9106, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112788, + "mal_id": 40615, + "title": "Umibe no Étranger", + "english": "The Stranger by the Shore", + "native": "海辺のエトランゼ", + "synonyms": [ + "Seaside Stranger", + "Umibe no Etranger", + "L'Étranger de la plage", + "The Stranger by the Beach" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 40839, + "mal_id": 40839, + "title": "Kanojo, Okarishimasu", + "english": "Rent-a-Girlfriend", + "native": "彼女、お借りします", + "synonyms": [ + "I'd like to Borrow a Girlfriend", + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 40436, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーター・グリルと賢者の時間", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 113286, + "mal_id": 40708, + "title": "Monster Musume no Oisha-san", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "MonIsha", + "モン医者", + "รักษาหนูหน่อยคุณหมอมอนสเตอร์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 111965, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーターグリルと賢者の時間", + "synonyms": [], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 40436, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーター・グリルと賢者の時間", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 122349, + "mal_id": 42603, + "title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", + "english": "My Hero Academia: Make It! Do-or-Die Survival Training", + "native": "僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練", + "synonyms": [], + "format": "ONA", + "episodes": 2, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 42603, + "mal_id": 42603, + "title": "Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren", + "english": "My Hero Academia: Make It! Do-or-Die Survival Training", + "native": "僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練", + "synonyms": [], + "format": "ONA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 112357, + "mal_id": 40515, + "title": "Nihon Chinbotsu: 2020", + "english": "Japan Sinks: 2020", + "native": "日本沈没2020", + "synonyms": [ + "2020: Japão Submerso", + "El Hundimiento de Japón: 2020", + "Japón se hunde: 2020" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40515, + "mal_id": 40515, + "title": "Nihon Chinbotsu 2020", + "english": "Japan Sinks: 2020", + "native": "日本沈没2020", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 112818, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40623, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 112818, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 112818, + "mal_id": 40623, + "title": "Dokyuu Hentai HxEros", + "english": "SUPER HXEROS", + "native": "ド級編隊エグゼロス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 114195, + "mal_id": 40936, + "title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", + "english": "ORESUKI: Are you the only one who loves me?: Our Playball / Our End Run / Our Game", + "native": "俺を好きなのはお前だけかよ~俺たちのゲームセット~", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 40936, + "mal_id": 40936, + "title": "Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set", + "english": "ORESUKI Are you the only one who loves me? - Our Playball / Our End Run / Our Game", + "native": "俺を好きなのはお前だけかよ ~俺たちのゲームセット~", + "synonyms": [ + "Ore wo Suki nano wa Omae dake ka yo Kanketsu-hen", + "Ore wo Suki nano wa Omae dake ka yo Episode 13", + "Oresuki OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 2, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 119113, + "mal_id": 42091, + "title": "Shingeki no Kyojin: Chronicle", + "english": "Attack on Titan ~Chronicle~", + "native": "進撃の巨人 〜クロニクル〜", + "synonyms": [ + "ผ่าพิภพไททัน Chronicle" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 42091, + "mal_id": 42091, + "title": "Shingeki no Kyojin: Chronicle", + "english": "Attack on Titan: Chronicle", + "native": "進撃の巨人 〜クロニクル〜", + "synonyms": [ + "Attack on Titan: Chronicle" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 111852, + "mal_id": 40416, + "title": "Date A Bullet: Dead or Bullet", + "english": "Date A Bullet: Dead or Bullet & Nightmare or Queen", + "native": "デート・ア・バレット デッド・オア・バレット", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก เดอะมูฟวี่ Date A Bullet", + "Рандеву с пулей: Смерть или пуля" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 40416, + "mal_id": 40416, + "title": "Date A Bullet: Dead or Bullet", + "english": null, + "native": "デート・ア・バレット デッド・オア・バレット", + "synonyms": [ + "Date A Live Fragment: Date A Bullet" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 111852, + "mal_id": 40416, + "title": "Date A Bullet: Dead or Bullet", + "english": "Date A Bullet: Dead or Bullet & Nightmare or Queen", + "native": "デート・ア・バレット デッド・オア・バレット", + "synonyms": [ + "พิชิตรัก พิทักษ์โลก เดอะมูฟวี่ Date A Bullet", + "Рандеву с пулей: Смерть или пуля" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 109125, + "mal_id": 39753, + "title": "Omoi, Omoware, Furi, Furare", + "english": null, + "native": "思い、思われ、ふり、ふられ", + "synonyms": [ + "Love, Be Loved, Leave, Be Left", + "Love Me, Love Me Not", + "Любит — не любит" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 9, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39753, + "mal_id": 39753, + "title": "Omoi, Omoware, Furi, Furare", + "english": "Love Me, Love Me Not", + "native": "思い、思われ、ふり、ふられ", + "synonyms": [ + "Love", + "Be Loved", + "Leave", + "Be Left", + "Furifura" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 110857, + "mal_id": 40215, + "title": "Aggressive Retsuko Season 3", + "english": "Aggretsuko: Season 3", + "native": "アグレッシブ烈子 シーズン3", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40215, + "mal_id": 40215, + "title": "Aggressive Retsuko (ONA) 3rd Season", + "english": "Aggretsuko (ONA) 3rd Season", + "native": "アグレッシブ烈子第3期", + "synonyms": [ + "Aggretsuko 3rd Season" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 8, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.9789, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 110857, + "mal_id": 40215, + "title": "Aggressive Retsuko Season 3", + "english": "Aggretsuko: Season 3", + "native": "アグレッシブ烈子 シーズン3", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 110857, + "mal_id": 40215, + "title": "Aggressive Retsuko Season 3", + "english": "Aggretsuko: Season 3", + "native": "アグレッシブ烈子 シーズン3", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9143, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 110857, + "mal_id": 40215, + "title": "Aggressive Retsuko Season 3", + "english": "Aggretsuko: Season 3", + "native": "アグレッシブ烈子 シーズン3", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 8, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 37932, + "mal_id": 37932, + "title": "Quanzhi Gaoshou 2", + "english": "The King's Avatar 2", + "native": "全职高手2", + "synonyms": [ + "Quan Zhi Gao Shou 2nd Season", + "Full-Time Expert 2nd Season", + "Master of Skills 2nd Season", + "マスターオブスキル 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 9, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 1.05, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40956, + "mal_id": 40956, + "title": "Enen no Shouboutai: Ni no Shou", + "english": "Fire Force Season 2", + "native": "炎炎ノ消防隊 弐ノ章", + "synonyms": [ + "Enen no Shouboutai 2nd Season", + "Fire Force 2nd Season" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 4, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 8, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40540, + "mal_id": 40540, + "title": "Sword Art Online: Alicization - War of Underworld 2nd Season", + "english": "Sword Art Online: Alicization - War of Underworld Part 2", + "native": "ソードアート・オンライン アリシゼーション War of Underworld", + "synonyms": [ + "Sword Art Online: Alicization 3rd Season", + "Sword Art Online III 3rd Season", + "SAO Alicization 3rd Season", + "Sword Art Online 3 3rd Season", + "SAO 3 3rd Season", + "SAO III 3rd Season", + "Sword Art Online: Alicization - War of Underworld - The Last Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 39587, + "mal_id": 39587, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 2", + "native": "Re:ゼロから始める異世界生活 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 8, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 112803, + "mal_id": 40529, + "title": "No Guns Life 2", + "english": "No Guns Life Season 2", + "native": "ノー・ガンズ・ライフ 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 40052, + "mal_id": 40052, + "title": "Great Pretender", + "english": null, + "native": "GREAT PRETENDER", + "synonyms": [], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 9, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 40436, + "mal_id": 40436, + "title": "Peter Grill to Kenja no Jikan", + "english": "Peter Grill and the Philosopher's Time", + "native": "ピーター・グリルと賢者の時間", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 11, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41353, + "mal_id": 41353, + "title": "The God of High School", + "english": "The God of High School", + "native": "THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール", + "synonyms": [ + "Gat Obeu Hai Seukul", + "갓 오브 하이스쿨", + "GOHS" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 6, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 39547, + "mal_id": 39547, + "title": "Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan", + "english": "My Teen Romantic Comedy SNAFU Climax!", + "native": "やはり俺の青春ラブコメはまちがっている。完", + "synonyms": [ + "Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season", + "My Teen Romantic Comedy SNAFU 3", + "Oregairu 3", + "My youth romantic comedy is wrong as I expected 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 10, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110371, + "mal_id": 40075, + "title": "Koi to Producer: EVOL×LOVE", + "english": "Mr Love: Queen's Choice", + "native": "恋とプロデューサー~EVOL×LOVE~", + "synonyms": [ + "Love and Producer", + "恋与制作人", + "Lian Yu Zhizuoren" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40708, + "mal_id": 40708, + "title": "Monster Musume no Oishasan", + "english": "Monster Girl Doctor", + "native": "モンスター娘のお医者さん", + "synonyms": [ + "The doctor for monster girls." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2020, + "start_date": { + "day": 12, + "month": 7, + "year": 2020 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2020-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2020-winter.json new file mode 100644 index 0000000..ce64be2 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2020-winter.json @@ -0,0 +1,5532 @@ +{ + "year": 2020, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 108463, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-bound Hanako-kun", + "native": "地縛少年 花子くん", + "synonyms": [ + "지박소년 하나코 군", + "地缚少年花子君", + "Туалетный мальчик Ханако", + "Hanako-kun e os Mistérios do Colégio Kamone", + "ฮานาโกะคุง วิญญาณติดที่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 105228, + "mal_id": 38668, + "title": "Dorohedoro", + "english": "Dorohedoro", + "native": "ドロヘドロ", + "synonyms": [ + "دوروهيدورو", + "สาปพันธุ์อสูร", + "Дорохедоро" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 106479, + "mal_id": 38790, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain, so I think I’ll make a full defense build", + "bofuri", + "因为太怕痛就全点防御力了。", + "Bofuri : Je suis pas venue ici pour souffrir alors j'ai tout mis en défense.", + "น้องโล่สายแทงก์แกร่งเกินร้อย", + "Bofuri: Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan", + "Бофури. Я боюсь боли, так что качаю только защиту" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 100643, + "mal_id": 36862, + "title": "Made in Abyss: Fukaki Tamashii no Reimei", + "english": "Made in Abyss: Dawn of the Deep Soul", + "native": "メイドインアビス 深き魂の黎明", + "synonyms": [ + "Made in Abyss: Dawn of a Deep Soul" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 101168, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 110350, + "mal_id": 40046, + "title": "ID: INVADED", + "english": "ID: INVADED", + "native": "イド:インヴェイデッド", + "synonyms": [ + "异度侵入 ID:INVADED" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 107067, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi", + "理科生坠入情网,故尝试证明。", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 110270, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [ + "异种族风俗娘评鉴指南" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 108623, + "mal_id": 39576, + "title": "Goblin Slayer: GOBLIN'S CROWN", + "english": "GOBLIN SLAYER -GOBLIN’S CROWN-", + "native": "ゴブリンスレイヤー -GOBLIN'S CROWN-", + "synonyms": [ + "Goblin Slayer: Korona" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 110178, + "mal_id": 39988, + "title": "Isekai Quartet 2", + "english": "Isekai Quartet 2", + "native": "異世界かるてっと 2", + "synonyms": [ + "Квартет попаданцев 2" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 106863, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 104051, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝", + "synonyms": [ + "MagiReco", + "Magia Record", + "สาวน้อยเวทมนตร์ มาโดกะ", + "สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]", + "Записи о магии: Другая история девочки-волшебницы Мадоки" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 112125, + "mal_id": 40453, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II: Mujintou ni Yakusou wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to Go Searching for Herbs on a Deserted Island?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ 無人島に薬草を求めるのは間違っているだろうか", + "synonyms": [ + "Is It Wrong to Try to Pick Up Girls in a Dungeon? II OVA", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA", + "ダンまちⅡ OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 113417, + "mal_id": 40746, + "title": "Overflow", + "english": "Overflow", + "native": "おーばーふろぉ", + "synonyms": [ + "오버플로우", + "Overflow: Desbordándose", + "Overflow: Transbordando", + "Accident Dans Le Bain" + ], + "format": "ONA", + "episodes": 8, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 38668, + "mal_id": 38668, + "title": "Dorohedoro", + "english": null, + "native": "ドロヘドロ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 13, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 38790, + "mal_id": 38790, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain", + "so I think I'll make a full defense build.", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 8, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 36862, + "mal_id": 36862, + "title": "Made in Abyss Movie 3: Fukaki Tamashii no Reimei", + "english": "Made in Abyss: Dawn of the Deep Soul", + "native": "劇場版メイドインアビス 深き魂の黎明", + "synonyms": [ + "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 40010, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 37345, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 40046, + "mal_id": 40046, + "title": "Id:Invaded", + "english": "ID: INVADED", + "native": "ID:INVADED イド:インヴェイデッド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 41094, + "mal_id": 41094, + "title": "Xian Wang de Richang Shenghuo", + "english": "The Daily Life of the Immortal King", + "native": "仙王的日常生活", + "synonyms": [ + "Xian Wang de Ri Chang Sheng Huo", + "不死身な僕の日常" + ], + "format": "ONA", + "episodes": 15, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 40262, + "mal_id": 40262, + "title": "Haikyuu!! Riku vs. Kuu", + "english": "Haikyu!! Land vs. Air", + "native": "ハイキュー!! 陸VS空", + "synonyms": [ + "Haikyuu!! Jump Festa 2020 Special", + "Haikyuu!! OVA", + "Haikyuu!!: Land vs Sky", + "Haikyuu!!: The Volleyball Way", + "Haikyuu!!: Ball no Michi" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 39576, + "mal_id": 39576, + "title": "Goblin Slayer: Goblin's Crown", + "english": "Goblin Slayer: Goblin's Crown", + "native": "ゴブリンスレイヤー -GOBLIN'S CROWN-", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 2, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 38481, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲[レールガン]T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "Toaru Kagaku no Choudenjihou 3", + "A Certain Scientific Railgun 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 39988, + "mal_id": 39988, + "title": "Isekai Quartet 2", + "english": "Isekai Quartet 2", + "native": "異世界かるてっと2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 15, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 38909, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "-インフィニット・デンドログラム-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 38256, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝 (TV)", + "synonyms": [ + "Puella Magi Madoka Magica Side Story: Magia Record" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 5, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 40746, + "mal_id": 40746, + "title": "Overflow", + "english": "Overflow", + "native": "おーばーふろぉ", + "synonyms": [], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 40453, + "mal_id": 40453, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to go Searching for Herbs on a Deserted Island?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか 2期 OVA", + "synonyms": [ + "DanMachi II OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 106625, + "mal_id": 38883, + "title": "Haikyuu!! TO THE TOP", + "english": "HAIKYU!! TO THE TOP", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyu!! Season 4", + "Haikyuu!! Season 4", + "ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1", + "排球少年!! 第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 108463, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-bound Hanako-kun", + "native": "地縛少年 花子くん", + "synonyms": [ + "지박소년 하나코 군", + "地缚少年花子君", + "Туалетный мальчик Ханако", + "Hanako-kun e os Mistérios do Colégio Kamone", + "ฮานาโกะคุง วิญญาณติดที่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 108463, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-bound Hanako-kun", + "native": "地縛少年 花子くん", + "synonyms": [ + "지박소년 하나코 군", + "地缚少年花子君", + "Туалетный мальчик Ханако", + "Hanako-kun e os Mistérios do Colégio Kamone", + "ฮานาโกะคุง วิญญาณติดที่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 108463, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-bound Hanako-kun", + "native": "地縛少年 花子くん", + "synonyms": [ + "지박소년 하나코 군", + "地缚少年花子君", + "Туалетный мальчик Ханако", + "Hanako-kun e os Mistérios do Colégio Kamone", + "ฮานาโกะคุง วิญญาณติดที่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 108463, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-bound Hanako-kun", + "native": "地縛少年 花子くん", + "synonyms": [ + "지박소년 하나코 군", + "地缚少年花子君", + "Туалетный мальчик Ханако", + "Hanako-kun e os Mistérios do Colégio Kamone", + "ฮานาโกะคุง วิญญาณติดที่" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38481, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲[レールガン]T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "Toaru Kagaku no Choudenjihou 3", + "A Certain Scientific Railgun 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105228, + "mal_id": 38668, + "title": "Dorohedoro", + "english": "Dorohedoro", + "native": "ドロヘドロ", + "synonyms": [ + "دوروهيدورو", + "สาปพันธุ์อสูร", + "Дорохедоро" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 38668, + "mal_id": 38668, + "title": "Dorohedoro", + "english": null, + "native": "ドロヘドロ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 13, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105228, + "mal_id": 38668, + "title": "Dorohedoro", + "english": "Dorohedoro", + "native": "ドロヘドロ", + "synonyms": [ + "دوروهيدورو", + "สาปพันธุ์อสูร", + "Дорохедоро" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37345, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 105228, + "mal_id": 38668, + "title": "Dorohedoro", + "english": "Dorohedoro", + "native": "ドロヘドロ", + "synonyms": [ + "دوروهيدورو", + "สาปพันธุ์อสูร", + "Дорохедоро" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 106479, + "mal_id": 38790, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain, so I think I’ll make a full defense build", + "bofuri", + "因为太怕痛就全点防御力了。", + "Bofuri : Je suis pas venue ici pour souffrir alors j'ai tout mis en défense.", + "น้องโล่สายแทงก์แกร่งเกินร้อย", + "Bofuri: Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan", + "Бофури. Я боюсь боли, так что качаю только защиту" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38790, + "mal_id": 38790, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain", + "so I think I'll make a full defense build.", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 8, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 106479, + "mal_id": 38790, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain, so I think I’ll make a full defense build", + "bofuri", + "因为太怕痛就全点防御力了。", + "Bofuri : Je suis pas venue ici pour souffrir alors j'ai tout mis en défense.", + "น้องโล่สายแทงก์แกร่งเกินร้อย", + "Bofuri: Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan", + "Бофури. Я боюсь боли, так что качаю только защиту" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40046, + "mal_id": 40046, + "title": "Id:Invaded", + "english": "ID: INVADED", + "native": "ID:INVADED イド:インヴェイデッド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 19, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 105190, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [ + "达尔文游戏" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38909, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "-インフィニット・デンドログラム-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 100643, + "mal_id": 36862, + "title": "Made in Abyss: Fukaki Tamashii no Reimei", + "english": "Made in Abyss: Dawn of the Deep Soul", + "native": "メイドインアビス 深き魂の黎明", + "synonyms": [ + "Made in Abyss: Dawn of a Deep Soul" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 36862, + "mal_id": 36862, + "title": "Made in Abyss Movie 3: Fukaki Tamashii no Reimei", + "english": "Made in Abyss: Dawn of the Deep Soul", + "native": "劇場版メイドインアビス 深き魂の黎明", + "synonyms": [ + "Gekijouban Made in Abyss: Fukaki Tamashii no Reimei" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 40010, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 107201, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [ + "虚构推理", + "ไขปมปริศนาภูต", + "Ложные выводы" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 101168, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37345, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 101168, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 101168, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 101168, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40262, + "mal_id": 40262, + "title": "Haikyuu!! Riku vs. Kuu", + "english": "Haikyu!! Land vs. Air", + "native": "ハイキュー!! 陸VS空", + "synonyms": [ + "Haikyuu!! Jump Festa 2020 Special", + "Haikyuu!! OVA", + "Haikyuu!!: Land vs Sky", + "Haikyuu!!: The Volleyball Way", + "Haikyuu!!: Ball no Michi" + ], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 23, + "score": 0.9128, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 38256, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝 (TV)", + "synonyms": [ + "Puella Magi Madoka Magica Side Story: Magia Record" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 5, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 15, + "score": 0.8783, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 111790, + "mal_id": 40262, + "title": "Haikyuu!! Riku VS Kuu", + "english": "HAIKYU!! LAND VS. AIR", + "native": "ハイキュー!! 陸 VS 空", + "synonyms": [ + "ボールの\"道\"", + "Booru no \"Michi\"", + "The \"Path\" of the Ball", + "Haikyuu!! OVA", + "ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 110350, + "mal_id": 40046, + "title": "ID: INVADED", + "english": "ID: INVADED", + "native": "イド:インヴェイデッド", + "synonyms": [ + "异度侵入 ID:INVADED" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40046, + "mal_id": 40046, + "title": "Id:Invaded", + "english": "ID: INVADED", + "native": "ID:INVADED イド:インヴェイデッド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 110350, + "mal_id": 40046, + "title": "ID: INVADED", + "english": "ID: INVADED", + "native": "イド:インヴェイデッド", + "synonyms": [ + "异度侵入 ID:INVADED" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 107067, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi", + "理科生坠入情网,故尝试证明。", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.9658, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 109298, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Don't mess with the Motion Picture Club!", + "Hands off the Motion Picture Club!", + "别对映像研出手!", + "Ước mơ sản xuất anime" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 110270, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [ + "异种族风俗娘评鉴指南" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 40010, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 110270, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [ + "异种族风俗娘评鉴指南" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 110270, + "mal_id": 40010, + "title": "Ishuzoku Reviewers", + "english": "Interspecies Reviewers", + "native": "異種族レビュアーズ", + "synonyms": [ + "异种族风俗娘评鉴指南" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 108623, + "mal_id": 39576, + "title": "Goblin Slayer: GOBLIN'S CROWN", + "english": "GOBLIN SLAYER -GOBLIN’S CROWN-", + "native": "ゴブリンスレイヤー -GOBLIN'S CROWN-", + "synonyms": [ + "Goblin Slayer: Korona" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 39576, + "mal_id": 39576, + "title": "Goblin Slayer: Goblin's Crown", + "english": "Goblin Slayer: Goblin's Crown", + "native": "ゴブリンスレイヤー -GOBLIN'S CROWN-", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 2, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 108623, + "mal_id": 39576, + "title": "Goblin Slayer: GOBLIN'S CROWN", + "english": "GOBLIN SLAYER -GOBLIN’S CROWN-", + "native": "ゴブリンスレイヤー -GOBLIN'S CROWN-", + "synonyms": [ + "Goblin Slayer: Korona" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 2, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38790, + "mal_id": 38790, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain", + "so I think I'll make a full defense build.", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 8, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.9225, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 108617, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [ + "Somari and the Guardian of the Forest", + " Somali et l'esprit de la forêt" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 38481, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲[レールガン]T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "Toaru Kagaku no Choudenjihou 3", + "A Certain Scientific Railgun 3" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 38256, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝 (TV)", + "synonyms": [ + "Puella Magi Madoka Magica Side Story: Magia Record" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 5, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38790, + "mal_id": 38790, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain", + "so I think I'll make a full defense build.", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 8, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 104462, + "mal_id": 38481, + "title": "Toaru Kagaku no Railgun T", + "english": "A Certain Scientific Railgun T", + "native": "とある科学の超電磁砲T", + "synonyms": [ + "Toaru Kagaku no Railgun 3", + "とある科学の超電磁砲3", + "A Certain Scientific Railgun 3", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T", + "เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3", + "Siêu Railgun của khoa học nào đó", + "Railgun T Ilmu Pengetahuan Tertentu" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 110178, + "mal_id": 39988, + "title": "Isekai Quartet 2", + "english": "Isekai Quartet 2", + "native": "異世界かるてっと 2", + "synonyms": [ + "Квартет попаданцев 2" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 39988, + "mal_id": 39988, + "title": "Isekai Quartet 2", + "english": "Isekai Quartet 2", + "native": "異世界かるてっと2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 15, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106863, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106863, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106863, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 106863, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38909, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "-インフィニット・デンドログラム-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 112293, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Murenase! Shiiton Gakuen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 38883, + "mal_id": 38883, + "title": "Haikyuu!! To the Top", + "english": "Haikyu!! To the Top", + "native": "ハイキュー!! TO THE TOP", + "synonyms": [ + "Haikyuu!! (2020)", + "Haikyuu!! Fourth Season", + "Haikyuu!! 4th Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 38909, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "-インフィニット・デンドログラム-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 4, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 38790, + "mal_id": 38790, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu.", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。", + "synonyms": [ + "I hate being in pain", + "so I think I'll make a full defense build.", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 8, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 38656, + "mal_id": 38656, + "title": "Darwin's Game", + "english": "Darwin's Game", + "native": "ダーウィンズゲーム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 4, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 107420, + "mal_id": 38909, + "title": "Infinite Dendrogram", + "english": "Infinite Dendrogram", + "native": "インフィニット・デンドログラム", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104051, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝", + "synonyms": [ + "MagiReco", + "Magia Record", + "สาวน้อยเวทมนตร์ มาโดกะ", + "สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]", + "Записи о магии: Другая история девочки-волшебницы Мадоки" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 38256, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝 (TV)", + "synonyms": [ + "Puella Magi Madoka Magica Side Story: Magia Record" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 5, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104051, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝", + "synonyms": [ + "MagiReco", + "Magia Record", + "สาวน้อยเวทมนตร์ มาโดกะ", + "สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]", + "Записи о магии: Другая история девочки-волшебницы Мадоки" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104051, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝", + "synonyms": [ + "MagiReco", + "Magia Record", + "สาวน้อยเวทมนตร์ มาโดกะ", + "สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]", + "Записи о магии: Другая история девочки-волшебницы Мадоки" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 104051, + "mal_id": 38256, + "title": "Magia Record: Mahou Shoujo Madoka☆Magica Gaiden", + "english": "Magia Record: Puella Magi Madoka Magica Side Story", + "native": "マギアレコード 魔法少女まどか☆マギカ外伝", + "synonyms": [ + "MagiReco", + "Magia Record", + "สาวน้อยเวทมนตร์ มาโดกะ", + "สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา]", + "Записи о магии: Другая история девочки-волшебницы Мадоки" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 40392, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39575, + "mal_id": 39575, + "title": "Somali to Mori no Kamisama", + "english": "Somali and the Forest Spirit", + "native": "ソマリと森の神様", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 37345, + "mal_id": 37345, + "title": "Plunderer", + "english": "Plunderer", + "native": "プランダラ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 40483, + "mal_id": 40483, + "title": "Murenase! Seton Gakuen", + "english": "Seton Academy: Join the Pack!", + "native": "群れなせ!シートン学園", + "synonyms": [ + "Come Together! to the Seton Academy" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 7, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 111501, + "mal_id": 40392, + "title": "Runway de Waratte", + "english": "Smile Down the Runway", + "native": "ランウェイで笑って", + "synonyms": [ + "Smile at the Runway", + "ถักทอฝันสู่รันเวย์" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 39792, + "mal_id": 39792, + "title": "Eizouken ni wa Te wo Dasu na!", + "english": "Keep Your Hands Off Eizouken!", + "native": "映像研には手を出すな!", + "synonyms": [ + "Hands off the Motion Pictures Club!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 112125, + "mal_id": 40453, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II: Mujintou ni Yakusou wo Motomeru no wa Machigatteiru Darou ka", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to Go Searching for Herbs on a Deserted Island?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅡ 無人島に薬草を求めるのは間違っているだろうか", + "synonyms": [ + "Is It Wrong to Try to Pick Up Girls in a Dungeon? II OVA", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA", + "ダンまちⅡ OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 40453, + "mal_id": 40453, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to go Searching for Herbs on a Deserted Island?", + "native": "ダンジョンに出会いを求めるのは間違っているだろうか 2期 OVA", + "synonyms": [ + "DanMachi II OVA" + ], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 9, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40046, + "mal_id": 40046, + "title": "Id:Invaded", + "english": "ID: INVADED", + "native": "ID:INVADED イド:インヴェイデッド", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 38992, + "mal_id": 38992, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita.", + "english": "Science Fell in Love, So I Tried to Prove It", + "native": "理系が恋に落ちたので証明してみた。", + "synonyms": [ + "RikeKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 11, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 38924, + "mal_id": 38924, + "title": "Nekopara", + "english": "Nekopara", + "native": "ネコぱら", + "synonyms": [ + "Neko Para" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 9, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 39534, + "mal_id": 39534, + "title": "Jibaku Shounen Hanako-kun", + "english": "Toilet-Bound Hanako-kun", + "native": "地縛少年花子くん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 10, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 6, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 108092, + "mal_id": 39388, + "title": "Koisuru Asteroid", + "english": "Asteroid in Love", + "native": "恋する小惑星〈アステロイド〉", + "synonyms": [ + "Koisuru Shouwakusei", + "KoiAs" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39017, + "mal_id": 39017, + "title": "Kyokou Suiri", + "english": "In/Spectre", + "native": "虚構推理", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2020, + "start_date": { + "day": 12, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 113417, + "mal_id": 40746, + "title": "Overflow", + "english": "Overflow", + "native": "おーばーふろぉ", + "synonyms": [ + "오버플로우", + "Overflow: Desbordándose", + "Overflow: Transbordando", + "Accident Dans Le Bain" + ], + "format": "ONA", + "episodes": 8, + "season": "WINTER", + "year": 2020, + "start_date": { + "year": 2020, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 40746, + "mal_id": 40746, + "title": "Overflow", + "english": "Overflow", + "native": "おーばーふろぉ", + "synonyms": [], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 1, + "year": 2020 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2021-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2021-fall.json new file mode 100644 index 0000000..a481fcd --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2021-fall.json @@ -0,0 +1,5848 @@ +{ + "year": 2021, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 131573, + "mal_id": 48561, + "title": "Jujutsu Kaisen 0", + "english": "JUJUTSU KAISEN 0", + "native": "呪術廻戦 0", + "synonyms": [ + "JJK 0", + "咒术回战0", + "มหาเวทย์ผนึกมาร : ซีโร่", + "‎جوجوتسو كايسن 0", + "Jujutsu Kaisen Movie", + "Магическая битва 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 131586, + "mal_id": 48569, + "title": "86: Eighty Six Part 2", + "english": "86 EIGHTY-SIX Part 2", + "native": "86-エイティシックス- 第2クール", + "synonyms": [ + "86-エイティシックス- 2クール", + "86 -เอทตี้ซิกซ์- พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 131942, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken: Stone Ocean", + "english": "JoJo's Bizarre Adventure: STONE OCEAN", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure: Stone Ocean", + "JoJo's Bizarre Adventure Part 6", + "JoJo no Kimyou na Bouken Part 6", + "Le bizzarre avventure di JoJo: Stone Ocean", + "โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ", + "โจโจ้ ล่าข้ามศตวรรษ ภาค 6", + "مغامرات جوجو العجيبة: محيط الأحجار", + "ההרפתקה המוזרה של ג'וג'ו: אוקיינוס האבן", + "Невероятные приключения ДжоДжо: Каменный океан ", + "Химерні пригоди ДжоДжо: Кам'яний океан" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 128705, + "mal_id": 46352, + "title": "Blue Period", + "english": "Blue Period", + "native": "ブルーピリオド", + "synonyms": [ + "Periodo Azul", + "Голубой период", + "Блакитний період" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 126213, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Heroes' Party, I Decided to Live a Quiet Life in the Countryside", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน", + "Banished from the brave man's group, I decided to lead a slow life in the back country.", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 124140, + "mal_id": 42916, + "title": "Sword Art Online: Progressive - Hoshinaki Yoru no Aria", + "english": "Sword Art Online the Movie -Progressive- Aria of a Starless Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア", + "synonyms": [ + "SAO Progressive", + "Sword Art Online: Progressive - อาเรียแห่งคืนที่ไร้ดาว", + "Sword Art Online Progressive: Ária de Uma Noite Sem Estrelas", + "SAOP", + "Sword Art Online: Progressive - Aria de una noche sin estrellas" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 129068, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 130050, + "mal_id": 48171, + "title": "Summer Ghost", + "english": "Summer Ghost", + "native": "サマーゴースト", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 11, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 123899, + "mal_id": 42847, + "title": "Ai no Utagoe wo Kikasete", + "english": "Sing a Bit of Harmony", + "native": "アイの歌声を聴かせて", + "synonyms": [ + "Canta con una chispa de armonía" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 137877, + "mal_id": 49605, + "title": "Ganbare, Douki-chan", + "english": "GANBARE DOUKICHAN", + "native": "がんばれ同期ちゃん", + "synonyms": [ + "Senpai is Mine", + "สู้เขาน้องหนูเพื่อนร่วมงาน" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 138060, + "mal_id": 49357, + "title": "Star Wars: Visions", + "english": "Star Wars: Visions", + "native": "スター・ウォーズ:ビジョンズ", + "synonyms": [ + "Star Wars ビジョンズ", + "Gwiezdne wojny: Wizje" + ], + "format": "ONA", + "episodes": 9, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 48561, + "mal_id": 48561, + "title": "Jujutsu Kaisen 0 Movie", + "english": "Jujutsu Kaisen 0", + "native": "劇場版 呪術廻戦 0", + "synonyms": [ + "Gekijouban Jujutsu Kaisen 0", + "JJK 0" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 45576, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Part 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 48661, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken Part 6: Stone Ocean", + "english": "JoJo's Bizarre Adventure: Stone Ocean", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure Part 6: Stone Ocean" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 48556, + "mal_id": 48556, + "title": "Takt Op. Destiny", + "english": "Takt Op. Destiny", + "native": "takt op.Destiny", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 48483, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": null, + "native": "見える子ちゃん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 46352, + "mal_id": 46352, + "title": "Blue Period", + "english": "Blue Period", + "native": "ブルーピリオド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 2, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 44961, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 8, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 42916, + "mal_id": 42916, + "title": "Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria", + "english": "Sword Art Online the Movie: Progressive - Aria of a Starless Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア", + "synonyms": [ + "SAO Progressive Movie", + "Aria in the Starless Night", + "Hoshinaki Yoru no Aria" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 46985, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "The Evolution Fruit: Conquering Life Unknowingly" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 5, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 42544, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 44069, + "mal_id": 44069, + "title": "Xian Wang de Richang Shenghuo 2", + "english": "The Daily Life of the Immortal King 2", + "native": "仙王的日常生活 第二季", + "synonyms": [ + "Xian Wang de Richang Shenghuo Er", + "仙王的日常生活 贰", + "不死身な僕の日常 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 48707, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道", + "synonyms": [ + "The Way of the House Husband 2", + "The Way of the Househusband 2", + "Gokushufudou 2" + ], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 48171, + "mal_id": 48171, + "title": "Summer Ghost", + "english": null, + "native": "サマーゴースト", + "synonyms": [ + "Project Common" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 11, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 44940, + "mal_id": 44940, + "title": "World Trigger 3rd Season", + "english": null, + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 42847, + "mal_id": 42847, + "title": "Ai no Utagoe wo Kikasete", + "english": "Sing a Bit of Harmony", + "native": "アイの歌声を聴かせて", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 131573, + "mal_id": 48561, + "title": "Jujutsu Kaisen 0", + "english": "JUJUTSU KAISEN 0", + "native": "呪術廻戦 0", + "synonyms": [ + "JJK 0", + "咒术回战0", + "มหาเวทย์ผนึกมาร : ซีโร่", + "‎جوجوتسو كايسن 0", + "Jujutsu Kaisen Movie", + "Магическая битва 0" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 48561, + "mal_id": 48561, + "title": "Jujutsu Kaisen 0 Movie", + "english": "Jujutsu Kaisen 0", + "native": "劇場版 呪術廻戦 0", + "synonyms": [ + "Gekijouban Jujutsu Kaisen 0", + "JJK 0" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 24, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.8956, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 44940, + "mal_id": 44940, + "title": "World Trigger 3rd Season", + "english": null, + "native": "ワールドトリガー", + "synonyms": [], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.8838, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 129874, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen (TV)", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編 (TV)", + "synonyms": [ + "KnY 2", + "ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)", + "鬼灭之刃 无限列车篇", + "Demon Slayer: Kimetsu no Yaiba: Le train de l'Infini", + "Demon Slayer: Kimetsu no Yaiba season 2", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg", + "귀멸의 칼날: 무한열차편", + "Клинок, Рассекающий Демонов: Бесконечный Поезд" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.9267, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 46985, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "The Evolution Fruit: Conquering Life Unknowingly" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 5, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 133965, + "mal_id": 48926, + "title": "Komi-san wa, Komyushou desu.", + "english": "Komi Can’t Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Comi san ha Comyusho desu", + "مشكلة كومي", + "Komi-san wa, Comyushou desu.", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง", + "Komi cherche ses mots", + "Komi không thể giao tiếp", + "Komi-san no puede comunicarse", + "У Коми проблемы с общением", + "Η Κόμι Δεν Επικοινωνεί", + "Комі не вміє спілкуватися", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 45576, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Part 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 3.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 44069, + "mal_id": 44069, + "title": "Xian Wang de Richang Shenghuo 2", + "english": "The Daily Life of the Immortal King 2", + "native": "仙王的日常生活 第二季", + "synonyms": [ + "Xian Wang de Richang Shenghuo Er", + "仙王的日常生活 贰", + "不死身な僕の日常 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 127720, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Part 2", + "เกิดชาตินี้พี่ต้องเทพ พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 113717, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking", + "อันดับพระราชา", + "تصنيف الملوك", + "國王排名" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 42544, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9598, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.9182, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 45576, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Part 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.9158, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 129898, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "Ansatsu Kizoku", + "สุดยอดมือสังหาร อวตารมาต่างโลก", + "世界顶尖的暗杀者转生为异世界贵族", + "Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain", + "המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 46985, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "The Evolution Fruit: Conquering Life Unknowingly" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 5, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 131586, + "mal_id": 48569, + "title": "86: Eighty Six Part 2", + "english": "86 EIGHTY-SIX Part 2", + "native": "86-エイティシックス- 第2クール", + "synonyms": [ + "86-エイティシックス- 2クール", + "86 -เอทตี้ซิกซ์- พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 131586, + "mal_id": 48569, + "title": "86: Eighty Six Part 2", + "english": "86 EIGHTY-SIX Part 2", + "native": "86-エイティシックス- 第2クール", + "synonyms": [ + "86-エイティシックス- 2クール", + "86 -เอทตี้ซิกซ์- พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 131586, + "mal_id": 48569, + "title": "86: Eighty Six Part 2", + "english": "86 EIGHTY-SIX Part 2", + "native": "86-エイティシックス- 第2クール", + "synonyms": [ + "86-エイティシックス- 2クール", + "86 -เอทตี้ซิกซ์- พาร์ท 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 45576, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Part 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 131942, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken: Stone Ocean", + "english": "JoJo's Bizarre Adventure: STONE OCEAN", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure: Stone Ocean", + "JoJo's Bizarre Adventure Part 6", + "JoJo no Kimyou na Bouken Part 6", + "Le bizzarre avventure di JoJo: Stone Ocean", + "โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ", + "โจโจ้ ล่าข้ามศตวรรษ ภาค 6", + "مغامرات جوجو العجيبة: محيط الأحجار", + "ההרפתקה המוזרה של ג'וג'ו: אוקיינוס האבן", + "Невероятные приключения ДжоДжо: Каменный океан ", + "Химерні пригоди ДжоДжо: Кам'яний океан" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 48661, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken Part 6: Stone Ocean", + "english": "JoJo's Bizarre Adventure: Stone Ocean", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure Part 6: Stone Ocean" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 131942, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken: Stone Ocean", + "english": "JoJo's Bizarre Adventure: STONE OCEAN", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure: Stone Ocean", + "JoJo's Bizarre Adventure Part 6", + "JoJo no Kimyou na Bouken Part 6", + "Le bizzarre avventure di JoJo: Stone Ocean", + "โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ", + "โจโจ้ ล่าข้ามศตวรรษ ภาค 6", + "مغامرات جوجو العجيبة: محيط الأحجار", + "ההרפתקה המוזרה של ג'וג'ו: אוקיינוס האבן", + "Невероятные приключения ДжоДжо: Каменный океан ", + "Химерні пригоди ДжоДжо: Кам'яний океан" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.8634, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 131942, + "mal_id": 48661, + "title": "JoJo no Kimyou na Bouken: Stone Ocean", + "english": "JoJo's Bizarre Adventure: STONE OCEAN", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [ + "JoJo's Bizarre Adventure: Stone Ocean", + "JoJo's Bizarre Adventure Part 6", + "JoJo no Kimyou na Bouken Part 6", + "Le bizzarre avventure di JoJo: Stone Ocean", + "โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ", + "โจโจ้ ล่าข้ามศตวรรษ ภาค 6", + "مغامرات جوجو العجيبة: محيط الأحجار", + "ההרפתקה המוזרה של ג'וג'ו: אוקיינוס האבן", + "Невероятные приключения ДжоДжо: Каменный океан ", + "Химерні пригоди ДжоДжо: Кам'яний океан" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 48556, + "mal_id": 48556, + "title": "Takt Op. Destiny", + "english": "Takt Op. Destiny", + "native": "takt op.Destiny", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 4, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 131565, + "mal_id": 48556, + "title": "takt op.Destiny", + "english": "takt op.Destiny", + "native": "takt op.Destiny", + "synonyms": [ + "タクトオーパス", + "แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~", + "宿命回响:命运节拍", + "Такт. Опус Дестини" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48483, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": null, + "native": "見える子ちゃん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9857, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131083, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": "Mieruko-chan", + "native": "見える子ちゃん", + "synonyms": [ + "มิเอรุโกะจัง ใครว่าหนูเห็นผี", + "Mieruko: Gadis yang Bisa Melihat Hantu", + "Girl That Can See It", + "Mieruko-chan. Dziewczyna, która widzi więcej" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 46352, + "mal_id": 46352, + "title": "Blue Period", + "english": "Blue Period", + "native": "ブルーピリオド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 2, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 128705, + "mal_id": 46352, + "title": "Blue Period", + "english": "Blue Period", + "native": "ブルーピリオド", + "synonyms": [ + "Periodo Azul", + "Голубой период", + "Блакитний період" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 46352, + "mal_id": 46352, + "title": "Blue Period", + "english": "Blue Period", + "native": "ブルーピリオド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 2, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 44961, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 8, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 42544, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127401, + "mal_id": 44961, + "title": "Platinum End", + "english": "Platinum End", + "native": "プラチナエンド", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 126213, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Heroes' Party, I Decided to Live a Quiet Life in the Countryside", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน", + "Banished from the brave man's group, I decided to lead a slow life in the back country.", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 3, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 120646, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [ + "ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน", + "Seniorku yang Menyebalkan" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 21, + "score": 1.0238, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 42544, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 132473, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "พาลาดิน ยอดอัศวินจากแดนไกล" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 124140, + "mal_id": 42916, + "title": "Sword Art Online: Progressive - Hoshinaki Yoru no Aria", + "english": "Sword Art Online the Movie -Progressive- Aria of a Starless Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア", + "synonyms": [ + "SAO Progressive", + "Sword Art Online: Progressive - อาเรียแห่งคืนที่ไร้ดาว", + "Sword Art Online Progressive: Ária de Uma Noite Sem Estrelas", + "SAOP", + "Sword Art Online: Progressive - Aria de una noche sin estrellas" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42916, + "mal_id": 42916, + "title": "Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria", + "english": "Sword Art Online the Movie: Progressive - Aria of a Starless Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア", + "synonyms": [ + "SAO Progressive Movie", + "Aria in the Starless Night", + "Hoshinaki Yoru no Aria" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 129068, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 46985, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "The Evolution Fruit: Conquering Life Unknowingly" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 5, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9356, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 129068, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 129068, + "mal_id": 46985, + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "english": "The Fruit of Evolution: Before I Knew It, My Life Had It Made", + "native": "進化の実~知らないうちに勝ち組人生~", + "synonyms": [ + "ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.9833, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40834, + "mal_id": 40834, + "title": "Ousama Ranking", + "english": "Ranking of Kings", + "native": "王様ランキング", + "synonyms": [ + "King Ranking" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 15, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.9714, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47790, + "mal_id": 47790, + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "english": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", + "native": "世界最高の暗殺者、異世界貴族に転生する", + "synonyms": [ + "The world's best assassin", + "To reincarnate in a different world aristocrat", + "Ansatsu Kizoku" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 124195, + "mal_id": 42940, + "title": "Hanma Baki", + "english": "Baki Hanma", + "native": "範馬刃牙", + "synonyms": [ + "Baki: Son of Ogre", + "Hanma Baki: SON OF OGRE", + "ฮันมะ บากิ", + "Баки Ханма", + "Μπάκι Χάνμα", + "Бакі Ханма" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 130050, + "mal_id": 48171, + "title": "Summer Ghost", + "english": "Summer Ghost", + "native": "サマーゴースト", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 11, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 48171, + "mal_id": 48171, + "title": "Summer Ghost", + "english": null, + "native": "サマーゴースト", + "synonyms": [ + "Project Common" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 12, + "month": 11, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 48707, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道", + "synonyms": [ + "The Way of the House Husband 2", + "The Way of the Househusband 2", + "Gokushufudou 2" + ], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 45576, + "mal_id": 45576, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Part 2", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 3.1, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 44069, + "mal_id": 44069, + "title": "Xian Wang de Richang Shenghuo 2", + "english": "The Daily Life of the Immortal King 2", + "native": "仙王的日常生活 第二季", + "synonyms": [ + "Xian Wang de Richang Shenghuo Er", + "仙王的日常生活 贰", + "不死身な僕の日常 2期" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9312, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 44037, + "mal_id": 44037, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 6, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 132193, + "mal_id": 48707, + "title": "Gokushufudou Part 2", + "english": "The Way of the Househusband Part 2", + "native": "極主夫道 パート2", + "synonyms": [ + "พ่อบ้านสุดเก๋า พาร์ท 2", + "La Voie du Tablier Partie 2", + "De yakuza a amo de casa parte 2", + "Шлях домогосподаря 2" + ], + "format": "ONA", + "episodes": 5, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48569, + "mal_id": 48569, + "title": "86 Part 2", + "english": "86 Eighty-Six Part 2", + "native": "86―エイティシックス―", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 48471, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "Moon", + "Laika", + "and the Bloodsucking Princess" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 4, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 131019, + "mal_id": 48471, + "title": "Tsuki to Laika to Nosferatu", + "english": "Irina: The Vampire Cosmonaut", + "native": "月とライカと吸血姫", + "synonyms": [ + "ノスフェラトゥ", + "The Moon, Laika, and Nosferatu", + "จันทรากับไลคร่าและเจ้าหญิงแวมไพร์", + "จันทรากับไลก้าและนอสเฟราตู", + "Луна, Лайка и Носферату" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 1.0238, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48761, + "mal_id": 48761, + "title": "Saihate no Paladin", + "english": "The Faraway Paladin", + "native": "最果てのパラディン", + "synonyms": [ + "Paladin of the End", + "Ultimate Paladin" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49926, + "mal_id": 49926, + "title": "Kimetsu no Yaiba: Mugen Ressha-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Mugen Train Arc", + "native": "鬼滅の刃 無限列車編", + "synonyms": [ + "Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)" + ], + "format": "TV", + "episodes": 7, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 127412, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "เรื่องเล่าของสาวน้อยยุคไทโช ", + "Kisah Gadis Zaman Taisho" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 123899, + "mal_id": 42847, + "title": "Ai no Utagoe wo Kikasete", + "english": "Sing a Bit of Harmony", + "native": "アイの歌声を聴かせて", + "synonyms": [ + "Canta con una chispa de armonía" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 42847, + "mal_id": 42847, + "title": "Ai no Utagoe wo Kikasete", + "english": "Sing a Bit of Harmony", + "native": "アイの歌声を聴かせて", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 29, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 123899, + "mal_id": 42847, + "title": "Ai no Utagoe wo Kikasete", + "english": "Sing a Bit of Harmony", + "native": "アイの歌声を聴かせて", + "synonyms": [ + "Canta con una chispa de armonía" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 10, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 45055, + "mal_id": 45055, + "title": "Taishou Otome Otogibanashi", + "english": "Taisho Otome Fairy Tale", + "native": "大正オトメ御伽話", + "synonyms": [ + "Taishou Maiden Fairytale" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 9, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 1.0857, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 137877, + "mal_id": 49605, + "title": "Ganbare, Douki-chan", + "english": "GANBARE DOUKICHAN", + "native": "がんばれ同期ちゃん", + "synonyms": [ + "Senpai is Mine", + "สู้เขาน้องหนูเพื่อนร่วมงาน" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 42351, + "mal_id": 42351, + "title": "Senpai ga Uzai Kouhai no Hanashi", + "english": "My Senpai is Annoying", + "native": "先輩がうざい後輩の話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 10, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 9, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 137877, + "mal_id": 49605, + "title": "Ganbare, Douki-chan", + "english": "GANBARE DOUKICHAN", + "native": "がんばれ同期ちゃん", + "synonyms": [ + "Senpai is Mine", + "สู้เขาน้องหนูเพื่อนร่วมงาน" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48483, + "mal_id": 48483, + "title": "Mieruko-chan", + "english": null, + "native": "見える子ちゃん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 137877, + "mal_id": 49605, + "title": "Ganbare, Douki-chan", + "english": "GANBARE DOUKICHAN", + "native": "がんばれ同期ちゃん", + "synonyms": [ + "Senpai is Mine", + "สู้เขาน้องหนูเพื่อนร่วมงาน" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 42544, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 3, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 138060, + "mal_id": 49357, + "title": "Star Wars: Visions", + "english": "Star Wars: Visions", + "native": "スター・ウォーズ:ビジョンズ", + "synonyms": [ + "Star Wars ビジョンズ", + "Gwiezdne wojny: Wizje" + ], + "format": "ONA", + "episodes": 9, + "season": "FALL", + "year": 2021, + "start_date": { + "year": 2021, + "month": 9, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48926, + "mal_id": 48926, + "title": "Komi-san wa, Comyushou desu.", + "english": "Komi Can't Communicate", + "native": "古見さんは、コミュ症です。", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu." + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2021, + "start_date": { + "day": 7, + "month": 10, + "year": 2021 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2021-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2021-spring.json new file mode 100644 index 0000000..fef47f6 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2021-spring.json @@ -0,0 +1,6831 @@ +{ + "year": 2021, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 120120, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [ + "重生之道", + "โตเกียวรีเวนเจอร์ส", + "โตเกียว卍รีเวนเจอร์ส", + "东京复仇者", + "נוקמי טוקיו", + "Токийские мстители" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 116589, + "mal_id": 41457, + "title": "86: Eighty Six", + "english": "86 EIGHTY-SIX", + "native": "86-エイティシックス-", + "synonyms": [ + "86--EIGHTY-SIX", + "86 -เอทตี้ซิกซ์-", + "86 ВОСЕМЬДЕСЯТ ШЕСТЬ", + "86 -不存在的战区-" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 128547, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "ODDTAXI", + "native": "オッドタクシー", + "synonyms": [ + "Необычное такси" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 127399, + "mal_id": 44942, + "title": "Shuumatsu no Valkyrie", + "english": "Record of Ragnarok", + "native": "終末のワルキューレ", + "synonyms": [ + "Shuumatsu no Walkure", + "معركة راغناروك", + "Valkyrie Apocalypse", + "มหาศึกคนชนเทพ", + "Повесть о конце света", + "Τα Χρονικά του Ράγκναροκ", + "Хроніка Раґнароку" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 6, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 125038, + "mal_id": 43439, + "title": "Shadows House", + "english": "SHADOWS HOUSE", + "native": "シャドーハウス", + "synonyms": [ + "Shadow House", + "影之宅", + "影宅", + "Dinh Thự Bóng" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 125368, + "mal_id": 43609, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", + "english": null, + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA", + "synonyms": [ + "Kaguya-sama: Love is War OVA", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 5, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 119683, + "mal_id": 42192, + "title": "EDENS ZERO", + "english": "EDENS ZERO", + "native": "EDENS ZERO", + "synonyms": [ + "エデンズゼロ", + "إيدينز زيرو", + "אדנס זירו", + "เอเดนส์ซีโร่", + "НУЛЕВОЙ ЭДЕМ" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 126791, + "mal_id": 44276, + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "english": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself", + "如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话", + "Full Dive : L'ultime RPG est encore plus foireux que la réalité !", + "เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 42249, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 41457, + "mal_id": 41457, + "title": "86", + "english": "86 Eighty-Six", + "native": "86―エイティシックス―", + "synonyms": [ + "Eighty Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 46095, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye's Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 3, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 46102, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "Odd Taxi", + "native": "オッドタクシー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 44074, + "mal_id": 44074, + "title": "Shiguang Dailiren", + "english": "Link Click", + "native": "时光代理人", + "synonyms": [ + "時光代理人", + "Jikou Dairinin", + "Shi Guang Dai Li Ren" + ], + "format": "ONA", + "episodes": 11, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 43692, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "The Way of the House Husband", + "Yakuza goes Houseman" + ], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 41456, + "mal_id": 41456, + "title": "Sentouin, Haken shimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 44942, + "mal_id": 44942, + "title": "Shuumatsu no Walküre", + "english": "Record of Ragnarok", + "native": "終末のワルキューレ", + "synonyms": [ + "Shuumatsu no Valkyrie", + "Valkyrie of the End", + "Valkyrie Apocalypse" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 43007, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Comedy", + "english": "Osamake: Romcom Where the Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "The Romcom Where the Childhood Friend Won't Lose!", + "Osamake" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 14, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 42192, + "mal_id": 42192, + "title": "Edens Zero", + "english": "Edens Zero", + "native": "EDENS ZERO", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 42205, + "mal_id": 42205, + "title": "Shaman King (2021)", + "english": null, + "native": "SHAMAN KING", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 1, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 43439, + "mal_id": 43439, + "title": "Shadows House", + "english": "Shadows House", + "native": "シャドーハウス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 44276, + "mal_id": 44276, + "title": "Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara", + "english": "Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 7, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 43609, + "mal_id": 43609, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA", + "english": "Kaguya-sama: Love is War OVA", + "native": "かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 5, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 41103, + "mal_id": 41103, + "title": "Koi to Yobu ni wa Kimochi Warui", + "english": "Koikimo", + "native": "恋と呼ぶには気持ち悪い", + "synonyms": [ + "It's Too Sick to Call this Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 120120, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [ + "重生之道", + "โตเกียวรีเวนเจอร์ส", + "โตเกียว卍รีเวนเจอร์ส", + "东京复仇者", + "נוקמי טוקיו", + "Токийские мстители" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 42249, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 120120, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [ + "重生之道", + "โตเกียวรีเวนเจอร์ส", + "โตเกียว卍รีเวนเจอร์ส", + "东京复仇者", + "נוקמי טוקיו", + "Токийские мстители" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 120120, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [ + "重生之道", + "โตเกียวรีเวนเจอร์ส", + "โตเกียว卍รีเวนเจอร์ส", + "东京复仇者", + "נוקמי טוקיו", + "Токийские мстители" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42192, + "mal_id": 42192, + "title": "Edens Zero", + "english": "Edens Zero", + "native": "EDENS ZERO", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 16, + "score": 1.0075, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 117193, + "mal_id": 41587, + "title": "Boku no Hero Academia 5", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア5", + "synonyms": [ + "BNHA 5", + "MHA 5", + "我的英雄学院 5", + "我的英雄学院第五季", + "มายฮีโร่ อคาเดเมีย ภาค 5", + "أكاديميتي للأبطال", + "Моя геройская академия 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 42249, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 114535, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You, the Immortal", + "Uma vida imortal", + "致不灭的你", + "A te, l'immortale", + "Ku twej wieczności", + "불멸의 그대에게", + "Untukmu yang Abadi", + "Gửi em, người bất tử", + "แด่เธอผู้เป็นนิรันดร์" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116589, + "mal_id": 41457, + "title": "86: Eighty Six", + "english": "86 EIGHTY-SIX", + "native": "86-エイティシックス-", + "synonyms": [ + "86--EIGHTY-SIX", + "86 -เอทตี้ซิกซ์-", + "86 ВОСЕМЬДЕСЯТ ШЕСТЬ", + "86 -不存在的战区-" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41457, + "mal_id": 41457, + "title": "86", + "english": "86 Eighty-Six", + "native": "86―エイティシックス―", + "synonyms": [ + "Eighty Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 116589, + "mal_id": 41457, + "title": "86: Eighty Six", + "english": "86 EIGHTY-SIX", + "native": "86-エイティシックス-", + "synonyms": [ + "86--EIGHTY-SIX", + "86 -เอทตี้ซิกซ์-", + "86 ВОСЕМЬДЕСЯТ ШЕСТЬ", + "86 -不存在的战区-" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41456, + "mal_id": 41456, + "title": "Sentouin, Haken shimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 46095, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye's Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 3, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 120697, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "DON'T TOY WITH ME, MISS NAGATORO", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "不要欺负我、长瀞同学", + "Arrête de me chauffer, Nagatoro!", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ", + "Не издевайся надо мной, Нагаторо", + "괴롭히지 말아요, 나가토로 양\t", + "Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ", + "No me rayes, Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 41457, + "mal_id": 41457, + "title": "86", + "english": "86 Eighty-Six", + "native": "86―エイティシックス―", + "synonyms": [ + "Eighty Six" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 41103, + "mal_id": 41103, + "title": "Koi to Yobu ni wa Kimochi Warui", + "english": "Koikimo", + "native": "恋と呼ぶには気持ち悪い", + "synonyms": [ + "It's Too Sick to Call this Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 114232, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "Higehiro", + "I Shaved My Beard Then Picked Up a High School Girl.", + "剃须。然后捡到女高中生。", + "刮掉鬍子的我與撿到的女高中生", + "โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ", + "Я побрился. И приютил школьницу" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 46095, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye's Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 3, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 0.8692, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 128546, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye’s Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye’s Song-", + "synonyms": [ + "ヴィヴィ -フローライトアイズソング-", + "วีวี่ บทเพลงจักรกลกู้ศตวรรษ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 15, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124194, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket The Final Season", + "native": "フルーツバスケットThe Final", + "synonyms": [ + "Furuba", + "Fruba", + "フルバ", + "Fruits Basket Season 3", + "水果篮子 最终季", + "เสน่ห์สาวข้าวปั้น ภาค 3", + "เสน่ห์สาวข้าวปั้น ภาคสุดท้าย", + "Корзинка фруктов: Финал" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 43692, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "The Way of the House Husband", + "Yakuza goes Houseman" + ], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 4, + "score": 0.9128, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.8737, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 125426, + "mal_id": 43692, + "title": "Gokushufudou", + "english": "The Way of the Househusband", + "native": "極主夫道", + "synonyms": [ + "La Via del Grembiule", + "Gokushufudou: Tatsu Imortal", + "De yakuza a amo de casa", + "La Voie du Tablier", + "Yakuza w fartuszku. Kodeks perfekcyjnego pana domu", + "على طريقة ربّ المنزل", + "Gokushufudou Part 1", + "The Way of the Househusband Part 1", + "พ่อบ้านสุดเก๋า ", + "พ่อบ้านสุดเก๋า พาร์ท 1", + "Ο Καλός Νοικοκύρης", + "Шлях домогосподаря" + ], + "format": "ONA", + "episodes": 5, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 46102, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "Odd Taxi", + "native": "オッドタクシー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 128547, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "ODDTAXI", + "native": "オッドタクシー", + "synonyms": [ + "Необычное такси" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 46102, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "Odd Taxi", + "native": "オッドタクシー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 128547, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "ODDTAXI", + "native": "オッドタクシー", + "synonyms": [ + "Необычное такси" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 15, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.9098, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 112608, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300", + "打了300年的史莱姆,不知不觉就练到了满级", + "La Sorcière invincible tueuse de Slime depuis 300 ans", + "ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว", + "Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun", + "Я 300 лет убивала слизь и прокачалась на максимум" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 46102, + "mal_id": 46102, + "title": "Odd Taxi", + "english": "Odd Taxi", + "native": "オッドタクシー", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127399, + "mal_id": 44942, + "title": "Shuumatsu no Valkyrie", + "english": "Record of Ragnarok", + "native": "終末のワルキューレ", + "synonyms": [ + "Shuumatsu no Walkure", + "معركة راغناروك", + "Valkyrie Apocalypse", + "มหาศึกคนชนเทพ", + "Повесть о конце света", + "Τα Χρονικά του Ράγκναροκ", + "Хроніка Раґнароку" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 6, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44942, + "mal_id": 44942, + "title": "Shuumatsu no Walküre", + "english": "Record of Ragnarok", + "native": "終末のワルキューレ", + "synonyms": [ + "Shuumatsu no Valkyrie", + "Valkyrie of the End", + "Valkyrie Apocalypse" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 6, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 2, + "score": 0.9789, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 127399, + "mal_id": 44942, + "title": "Shuumatsu no Valkyrie", + "english": "Record of Ragnarok", + "native": "終末のワルキューレ", + "synonyms": [ + "Shuumatsu no Walkure", + "معركة راغناروك", + "Valkyrie Apocalypse", + "มหาศึกคนชนเทพ", + "Повесть о конце света", + "Τα Χρονικά του Ράγκναροκ", + "Хроніка Раґнароку" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 6, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41456, + "mal_id": 41456, + "title": "Sentouin, Haken shimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.9595, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 117448, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How NOT to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega", + "How NOT To Summon A Demon Lord Omega", + "异世界魔王与召唤少女的奴隶魔术Ω", + "จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41456, + "mal_id": 41456, + "title": "Sentouin, Haken shimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 116588, + "mal_id": 41456, + "title": "Sentouin, Hakenshimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [ + "Kombattanten werden entsandt!", + "战斗员派遣中!", + "นักรบสายป่วนออกปฏิบัติกวน ", + "Les combattants seront déployés !" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 1.0301, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116338, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん 第2シリーズ", + "synonyms": [ + "Welcome to Demon School, Iruma-kun! Season 2", + "入间同学入魔了 第二季", + "入间同学入魔了!2", + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 2" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125038, + "mal_id": 43439, + "title": "Shadows House", + "english": "SHADOWS HOUSE", + "native": "シャドーハウス", + "synonyms": [ + "Shadow House", + "影之宅", + "影宅", + "Dinh Thự Bóng" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 43439, + "mal_id": 43439, + "title": "Shadows House", + "english": "Shadows House", + "native": "シャドーハウス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125038, + "mal_id": 43439, + "title": "Shadows House", + "english": "SHADOWS HOUSE", + "native": "シャドーハウス", + "synonyms": [ + "Shadow House", + "影之宅", + "影宅", + "Dinh Thự Bóng" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125038, + "mal_id": 43439, + "title": "Shadows House", + "english": "SHADOWS HOUSE", + "native": "シャドーハウス", + "synonyms": [ + "Shadow House", + "影之宅", + "影宅", + "Dinh Thự Bóng" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125038, + "mal_id": 43439, + "title": "Shadows House", + "english": "SHADOWS HOUSE", + "native": "シャドーハウス", + "synonyms": [ + "Shadow House", + "影之宅", + "影宅", + "Dinh Thự Bóng" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 46095, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye's Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 3, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41456, + "mal_id": 41456, + "title": "Sentouin, Haken shimasu!", + "english": "Combatants Will Be Dispatched!", + "native": "戦闘員、派遣します!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 0.8896, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 116741, + "mal_id": 41488, + "title": "Tensei Shitara Slime Datta Ken: Tensura Nikki", + "english": "The Slime Diaries", + "native": "転生したらスライムだった件 転スラ日記", + "synonyms": [ + "The Slime Diaries: That Time I Got Reincarnated as a Slime", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่", + "关于我转生变成史莱姆这档事 转生史莱姆日记", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 125368, + "mal_id": 43609, + "title": "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA", + "english": null, + "native": "かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA", + "synonyms": [ + "Kaguya-sama: Love is War OVA", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen OVA" + ], + "format": "OVA", + "episodes": 1, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 5, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 43609, + "mal_id": 43609, + "title": "Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA", + "english": "Kaguya-sama: Love is War OVA", + "native": "かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA", + "synonyms": [], + "format": "OVA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 5, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 119683, + "mal_id": 42192, + "title": "EDENS ZERO", + "english": "EDENS ZERO", + "native": "EDENS ZERO", + "synonyms": [ + "エデンズゼロ", + "إيدينز زيرو", + "אדנס זירו", + "เอเดนส์ซีโร่", + "НУЛЕВОЙ ЭДЕМ" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42192, + "mal_id": 42192, + "title": "Edens Zero", + "english": "Edens Zero", + "native": "EDENS ZERO", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 119683, + "mal_id": 42192, + "title": "EDENS ZERO", + "english": "EDENS ZERO", + "native": "EDENS ZERO", + "synonyms": [ + "エデンズゼロ", + "إيدينز زيرو", + "אדנס זירו", + "เอเดนส์ซีโร่", + "НУЛЕВОЙ ЭДЕМ" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 42249, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43007, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Comedy", + "english": "Osamake: Romcom Where the Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "The Romcom Where the Childhood Friend Won't Lose!", + "Osamake" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 14, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42205, + "mal_id": 42205, + "title": "Shaman King (2021)", + "english": null, + "native": "SHAMAN KING", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 1, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 41402, + "mal_id": 41402, + "title": "Mairimashita! Iruma-kun 2nd Season", + "english": "Welcome to Demon School! Iruma-kun Season 2", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 2nd Season" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 17, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 124675, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "english": "Osamake: Romcom Where The Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "Osananajimi ga Zettai ni Makenai Love Comedy", + "OsaMake", + "ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก", + "เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124858, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ2クール", + "synonyms": [ + "มอริอาร์ตี้ผู้รักชาติ Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 126791, + "mal_id": 44276, + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "english": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself", + "如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话", + "Full Dive : L'ultime RPG est encore plus foireux que la réalité !", + "เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 44276, + "mal_id": 44276, + "title": "Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara", + "english": "Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 7, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 126791, + "mal_id": 44276, + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "english": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself", + "如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话", + "Full Dive : L'ultime RPG est encore plus foireux que la réalité !", + "เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.8966, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 126791, + "mal_id": 44276, + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "english": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself", + "如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话", + "Full Dive : L'ultime RPG est encore plus foireux que la réalité !", + "เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41488, + "mal_id": 41488, + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "english": "The Slime Diaries", + "native": "転スラ日記 転生したらスライムだった件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 126791, + "mal_id": 44276, + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "english": "Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself", + "如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话", + "Full Dive : L'ultime RPG est encore plus foireux que la réalité !", + "เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40586, + "mal_id": 40586, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました", + "synonyms": [ + "Slime 300" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 10, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42205, + "mal_id": 42205, + "title": "Shaman King (2021)", + "english": null, + "native": "SHAMAN KING", + "synonyms": [], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 1, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43007, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Comedy", + "english": "Osamake: Romcom Where the Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "The Romcom Where the Childhood Friend Won't Lose!", + "Osamake" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 14, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 41587, + "mal_id": 41587, + "title": "Boku no Hero Academia 5th Season", + "english": "My Hero Academia Season 5", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 5" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 27, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 42361, + "mal_id": 42361, + "title": "Ijiranaide, Nagatoro-san", + "english": "Don't Toy with Me, Miss Nagatoro", + "native": "イジらないで、長瀞さん", + "synonyms": [ + "Please don't bully me", + "Nagatoro" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 119675, + "mal_id": 42205, + "title": "SHAMAN KING (2021)", + "english": "SHAMAN KING (2021)", + "native": "SHAMAN KING (2021)", + "synonyms": [ + "シャーマンキング (2021)", + "ملك الشامان", + "通灵王", + "שאמן קינג", + "Король шаманов", + "Βασιλιάς Σαμάνος", + "Król szamanów", + "Rey Chamán", + "Король шаманів" + ], + "format": "TV", + "episodes": 52, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43325, + "mal_id": 43325, + "title": "Yuukoku no Moriarty Part 2", + "english": "Moriarty the Patriot Part 2", + "native": "憂国のモリアーティ", + "synonyms": [ + "Moriarty's Patriotism Part 2", + "Moriarty the Patriot 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 4, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 41623, + "mal_id": 41623, + "title": "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω", + "english": "How Not to Summon a Demon Lord Ω", + "native": "異世界魔王と召喚少女の奴隷魔術Ω", + "synonyms": [ + "How Not to Summon a Demon Lord 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season", + "The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season", + "Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 9, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42938, + "mal_id": 42938, + "title": "Fruits Basket: The Final", + "english": "Fruits Basket: The Final Season", + "native": "フルーツバスケット The Final", + "synonyms": [ + "Fruits Basket 3rd Season", + "Fruits Basket (2019) 3rd Season", + "Furuba" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 6, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 0.9416, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 40938, + "mal_id": 40938, + "title": "Hige wo Soru. Soshite Joshikousei wo Hirou.", + "english": "Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway", + "native": "ひげを剃る。そして女子高生を拾う。", + "synonyms": [ + "I Shaved. Then I Brought a High School Girl Home.", + "Higehiro" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 41103, + "mal_id": 41103, + "title": "Koi to Yobu ni wa Kimochi Warui", + "english": "Koikimo", + "native": "恋と呼ぶには気持ち悪い", + "synonyms": [ + "It's Too Sick to Call this Love" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 5, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 123802, + "mal_id": 42826, + "title": "Seijo no Maryoku wa Bannou desu", + "english": "The Saint's Magic Power is Omnipotent", + "native": "聖女の魔力は万能です", + "synonyms": [ + "The power of the saint is all around", + "圣女的魔力是万能的", + "สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง", + "Kekuatan Sihir Santa Sungguh Mahaguna" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43007, + "mal_id": 43007, + "title": "Osananajimi ga Zettai ni Makenai Love Comedy", + "english": "Osamake: Romcom Where the Childhood Friend Won't Lose", + "native": "幼なじみが絶対に負けないラブコメ", + "synonyms": [ + "The Romcom Where the Childhood Friend Won't Lose!", + "Osamake" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 14, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 1.1364, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 42249, + "mal_id": 42249, + "title": "Tokyo Revengers", + "english": "Tokyo Revengers", + "native": "東京リベンジャーズ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42192, + "mal_id": 42192, + "title": "Edens Zero", + "english": "Edens Zero", + "native": "EDENS ZERO", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 11, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 44276, + "mal_id": 44276, + "title": "Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara", + "english": "Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!", + "native": "究極進化したフルダイブRPGが現実よりもクソゲーだったら", + "synonyms": [ + "What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 7, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 41025, + "mal_id": 41025, + "title": "Fumetsu no Anata e", + "english": "To Your Eternity", + "native": "不滅のあなたへ", + "synonyms": [ + "To You", + "the Immortal" + ], + "format": "TV", + "episodes": 20, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 12, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 110733, + "mal_id": 40174, + "title": "Zombie Land Saga: Revenge", + "english": "ZOMBIE LAND SAGA REVENGE", + "native": "ゾンビランドサガ リベンジ", + "synonyms": [ + "Zombieland Saga: Revenge", + "佐贺偶像是传奇 Revenge", + "ซอมบี้เเลนด์ซากะ Revenge ", + "Зомбилэнд-Сага: Возмездие" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2021, + "start_date": { + "year": 2021, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 46095, + "mal_id": 46095, + "title": "Vivy: Fluorite Eye's Song", + "english": "Vivy -Fluorite Eye's Song-", + "native": "Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-)", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2021, + "start_date": { + "day": 3, + "month": 4, + "year": 2021 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2021-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2021-summer.json new file mode 100644 index 0000000..1d42594 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2021-summer.json @@ -0,0 +1,6686 @@ +{ + "year": 2021, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 132126, + "mal_id": 48849, + "title": "Sonny Boy", + "english": "Sonny Boy", + "native": "Sonny Boy", + "synonyms": [ + "サニーボーイ", + "ซันนีบอย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 126659, + "mal_id": 44200, + "title": "Boku no Hero Academia THE MOVIE: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3", + "My Hero Academia: Misión Mundial de Héroes", + "My Hero Academia: Missão Mundial de Heróis", + "มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 107625, + "mal_id": 39175, + "title": "Cider no You ni Kotoba ga Wakiagaru", + "english": "Words Bubble Up Like Soda Pop", + "native": "サイダーのように言葉が湧き上がる", + "synonyms": [ + "Palavras que Borbulham como Refrigerante", + "Palabras que burbujean como un refresco", + "מילים מתפצפצות כמו גזוז", + "Nos mots comme des bulles", + "ถ้อยคำเอ่อล้นด้วยหัวใจรัก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 120209, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura 2", + "Hamehura 2", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 127271, + "mal_id": 44807, + "title": "Ryuu to Sobakasu no Hime", + "english": "BELLE", + "native": "竜とそばかすの姫", + "synonyms": [ + "The Dragon and Freckled Princess", + "BELLE เจ้าหญิงแห่งเสียงเพลง", + "Красавица и дракон", + "Μπελ: Ο Δράκος και Η Πριγκίπισσα", + "龙与雀斑公主", + "Дракон та веснянкувата принцеса", + "Belle: The Dragon and the Freckled Princess", + "Skaistule un briesmonis", + "Сұлу қыз бен айдаһар", + "Gözəl və əjdaha" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 127371, + "mal_id": 44931, + "title": "Tonikaku Kawaii: SNS", + "english": "TONIKAWA: Over The Moon For You ~SNS~", + "native": "トニカクカワイイ ~SNS~", + "synonyms": [ + "Tonikaku Kawaii OVA", + "TONIKAWA OVA", + "Tonikaku Kawaii Episode 13", + "Красавица: Унеси меня на Луну. Социальная сеть" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 41487, + "mal_id": 41487, + "title": "Tensei shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 43523, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "Tsukimichi: Moonlit Fantasy", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 7, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 41710, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle", + "Genkoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 43969, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "Kanokano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 48849, + "mal_id": 48849, + "title": "Sonny Boy", + "english": "Sonny Boy", + "native": "Sonny Boy (サニーボーイ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 16, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 44200, + "mal_id": 44200, + "title": "Boku no Hero Academia the Movie 3: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 42282, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura X", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 40620, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi-Oniisan", + "native": "うらみちお兄さん", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 48753, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "Jahy-sama Won't Be Discouraged!" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 39175, + "mal_id": 39175, + "title": "Cider no You ni Kotoba ga Wakiagaru", + "english": "Words Bubble Up Like Soda Pop", + "native": "サイダーのように言葉が湧き上がる", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 42340, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 41812, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess' Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 14, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 42627, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 42940, + "mal_id": 42940, + "title": "Hanma Baki: Son of Ogre", + "english": "Baki Hanma", + "native": "範馬刃牙 SON OF OGRE", + "synonyms": [ + "The Boy Fascinating the Fighting God" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 30, + "month": 9, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 44807, + "mal_id": 44807, + "title": "Ryuu to Sobakasu no Hime", + "english": "Belle", + "native": "竜とそばかすの姫", + "synonyms": [ + "Ryuusoba" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 44881, + "mal_id": 44881, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season", + "english": "I’m Standing on a Million Lives Season 2", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives. Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 10, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 41487, + "mal_id": 41487, + "title": "Tensei shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 42282, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura X", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 44881, + "mal_id": 44881, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season", + "english": "I’m Standing on a Million Lives Season 2", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives. Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 10, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 116742, + "mal_id": 41487, + "title": "Tensei Shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件 第2期 第2クール", + "synonyms": [ + "Tensura 2", + "关于我转生变成史莱姆这档事第二季(下半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2", + "Moi, quand je me réincarne en Slime Saison 2 Partie 2", + "О моём перерождении в слизь 2", + "転スラ 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 43523, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "Tsukimichi: Moonlit Fantasy", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 7, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 11, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131646, + "mal_id": 48580, + "title": "Vanitas no Carte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Karte", + "Les Mémoires de Vanitas", + "瓦尼塔斯的手记", + "บันทึกแวมไพร์วานิทัส" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 1.0208, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 44881, + "mal_id": 44881, + "title": "100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season", + "english": "I’m Standing on a Million Lives Season 2", + "native": "100万の命の上に俺は立っている", + "synonyms": [ + "I'm standing on 1,000,000 lives. Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 10, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9835, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 41487, + "mal_id": 41487, + "title": "Tensei shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 107717, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maidragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "小林家的龙女仆 S", + "小林家的龍女僕S", + "น้องเมดมังกรของคุณโคบายาชิ ภาค 2", + " Kobayashi-san Chi no Maid Dragon 2nd Season", + "Дракониха-горничная госпожи Кобаяси S" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 43523, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "Tsukimichi: Moonlit Fantasy", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 7, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40620, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi-Oniisan", + "native": "うらみちお兄さん", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.8956, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 125206, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "TSUKIMICHI -Moonlit Fantasy-", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World", + "จันทรานำพาสู่ต่างโลก", + "月光下的异世界之旅", + "Благословлённое лунным светом приключение в другом мире" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 42282, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura X", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 1.0316, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 41710, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle", + "Genkoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 126546, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "精灵幻想记", + "ตำนานวิญญาณแฟนซี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 41812, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess' Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 14, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 41710, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle", + "Genkoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 1.0429, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 18, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 41812, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess' Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 14, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 117612, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Genjitsushugisha no Oukokukaizouki", + "A Realist's Kingdom Reform Chronicles", + "Genkoku", + "ยุทธศาสตร์กู้ชาติของราชามือใหม่" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 132126, + "mal_id": 48849, + "title": "Sonny Boy", + "english": "Sonny Boy", + "native": "Sonny Boy", + "synonyms": [ + "サニーボーイ", + "ซันนีบอย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48849, + "mal_id": 48849, + "title": "Sonny Boy", + "english": "Sonny Boy", + "native": "Sonny Boy (サニーボーイ)", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 16, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 132126, + "mal_id": 48849, + "title": "Sonny Boy", + "english": "Sonny Boy", + "native": "Sonny Boy", + "synonyms": [ + "サニーボーイ", + "ซันนีบอย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 43969, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "Kanokano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42627, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 126192, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "KanoKano", + "She is also my Girlfriend", + "จะคนไหนก็แฟนสาว ", + "Мои девушки" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48753, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "Jahy-sama Won't Be Discouraged!" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 1.0833, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 128712, + "mal_id": 46471, + "title": "Tantei wa mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "La detective esta muerta.", + "Tanmoshi", + "侦探已经,死了", + "侦探已死", + "นักสืบตายแล้ว", + "Детектив уже мёртв" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42627, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 17, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 13, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40620, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi-Oniisan", + "native": "うらみちお兄さん", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 114065, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema", + "我们的重制人生", + "ย้อนเวลา รีเมคชีวิต", + "Ремейк нашей жизни!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126659, + "mal_id": 44200, + "title": "Boku no Hero Academia THE MOVIE: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3", + "My Hero Academia: Misión Mundial de Héroes", + "My Hero Academia: Missão Mundial de Heróis", + "มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 44200, + "mal_id": 44200, + "title": "Boku no Hero Academia the Movie 3: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 24, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126659, + "mal_id": 44200, + "title": "Boku no Hero Academia THE MOVIE: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3", + "My Hero Academia: Misión Mundial de Héroes", + "My Hero Academia: Missão Mundial de Heróis", + "มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126659, + "mal_id": 44200, + "title": "Boku no Hero Academia THE MOVIE: World Heroes' Mission", + "english": "My Hero Academia: World Heroes' Mission", + "native": "僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション", + "synonyms": [ + "My Hero Academia the Movie 3", + "My Hero Academia: Misión Mundial de Héroes", + "My Hero Academia: Missão Mundial de Heróis", + "มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 107625, + "mal_id": 39175, + "title": "Cider no You ni Kotoba ga Wakiagaru", + "english": "Words Bubble Up Like Soda Pop", + "native": "サイダーのように言葉が湧き上がる", + "synonyms": [ + "Palavras que Borbulham como Refrigerante", + "Palabras que burbujean como un refresco", + "מילים מתפצפצות כמו גזוז", + "Nos mots comme des bulles", + "ถ้อยคำเอ่อล้นด้วยหัวใจรัก" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 39175, + "mal_id": 39175, + "title": "Cider no You ni Kotoba ga Wakiagaru", + "english": "Words Bubble Up Like Soda Pop", + "native": "サイダーのように言葉が湧き上がる", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40620, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi-Oniisan", + "native": "うらみちお兄さん", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 43523, + "mal_id": 43523, + "title": "Tsuki ga Michibiku Isekai Douchuu", + "english": "Tsukimichi: Moonlit Fantasy", + "native": "月が導く異世界道中", + "synonyms": [ + "Moon-led Journey Across Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 7, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 112802, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi Oniisan", + "native": "うらみちお兄さん", + "synonyms": [ + "อูรามิจิ โอนีซัง" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48753, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "Jahy-sama Won't Be Discouraged!" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 24, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 6, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 43969, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "Kanokano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 132456, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย!", + "Niepokonana Jahy" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 42340, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9912, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 129277, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "คุณชายวิปริตกับเมดสาวรอบจัด" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48580, + "mal_id": 48580, + "title": "Vanitas no Karte", + "english": "The Case Study of Vanitas", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki", + "Memoir of Vanitas", + "Vanitas no Carte" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 120209, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura 2", + "Hamehura 2", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 42282, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura X", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 0, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 120209, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura 2", + "Hamehura 2", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 41487, + "mal_id": 41487, + "title": "Tensei shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 120209, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura 2", + "Hamehura 2", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.8614, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 120209, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura 2", + "Hamehura 2", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X", + "เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 42340, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 42282, + "mal_id": 42282, + "title": "Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X", + "english": "My Next Life as a Villainess: All Routes Lead to Doom! X", + "native": "乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X", + "synonyms": [ + "Hamefura X", + "I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags…", + "Destruction Flag Otome" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 120608, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [ + "เมคีว แบล็กคอมพานี" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 46471, + "mal_id": 46471, + "title": "Tantei wa Mou, Shindeiru.", + "english": "The Detective Is Already Dead", + "native": "探偵はもう、死んでいる。", + "synonyms": [ + "Tanmoshi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 42340, + "mal_id": 42340, + "title": "Meikyuu Black Company", + "english": "The Dungeon of Black Company", + "native": "迷宮ブラックカンパニー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 126047, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Battle in 5 seconds after meeting.", + "ศึกเดือด 5 วิ พลิกชะตา" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 43969, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "Kanokano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 41710, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle", + "Genkoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 122052, + "mal_id": 42544, + "title": "Kaizoku Oujo", + "english": "Fena: Pirate Princess", + "native": "海賊王女", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42627, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 127271, + "mal_id": 44807, + "title": "Ryuu to Sobakasu no Hime", + "english": "BELLE", + "native": "竜とそばかすの姫", + "synonyms": [ + "The Dragon and Freckled Princess", + "BELLE เจ้าหญิงแห่งเสียงเพลง", + "Красавица и дракон", + "Μπελ: Ο Δράκος και Η Πριγκίπισσα", + "龙与雀斑公主", + "Дракон та веснянкувата принцеса", + "Belle: The Dragon and the Freckled Princess", + "Skaistule un briesmonis", + "Сұлу қыз бен айдаһар", + "Gözəl və əjdaha" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 44807, + "mal_id": 44807, + "title": "Ryuu to Sobakasu no Hime", + "english": "Belle", + "native": "竜とそばかすの姫", + "synonyms": [ + "Ryuusoba" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 17, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 127271, + "mal_id": 44807, + "title": "Ryuu to Sobakasu no Hime", + "english": "BELLE", + "native": "竜とそばかすの姫", + "synonyms": [ + "The Dragon and Freckled Princess", + "BELLE เจ้าหญิงแห่งเสียงเพลง", + "Красавица и дракон", + "Μπελ: Ο Δράκος και Η Πριγκίπισσα", + "龙与雀斑公主", + "Дракон та веснянкувата принцеса", + "Belle: The Dragon and the Freckled Princess", + "Skaistule un briesmonis", + "Сұлу қыз бен айдаһар", + "Gözəl və əjdaha" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 41812, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess' Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 14, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.9923, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 41710, + "mal_id": 41710, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki", + "english": "How a Realist Hero Rebuilt the Kingdom", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle", + "Genkoku" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 117989, + "mal_id": 41812, + "title": "Megami-ryou no Ryoubo-kun.", + "english": "Mother of the Goddess’ Dormitory", + "native": "女神寮の寮母くん。", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 43969, + "mal_id": 43969, + "title": "Kanojo mo Kanojo", + "english": "Girlfriend, Girlfriend", + "native": "カノジョも彼女", + "synonyms": [ + "Kanokano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48753, + "mal_id": 48753, + "title": "Jahy-sama wa Kujikenai!", + "english": "The Great Jahy Will Not Be Defeated!", + "native": "ジャヒー様はくじけない!", + "synonyms": [ + "Jahy-sama Won't Be Discouraged!" + ], + "format": "TV", + "episodes": 20, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 8, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 128545, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The aquatope on white sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand", + "The two girls met in the ruins of damaged dream", + "อควาโทปแห่งทรายขาว", + "Aquatope di Atas Pasir Putih", + "Акватоп на белом песке" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 127371, + "mal_id": 44931, + "title": "Tonikaku Kawaii: SNS", + "english": "TONIKAWA: Over The Moon For You ~SNS~", + "native": "トニカクカワイイ ~SNS~", + "synonyms": [ + "Tonikaku Kawaii OVA", + "TONIKAWA OVA", + "Tonikaku Kawaii Episode 13", + "Красавица: Унеси меня на Луну. Социальная сеть" + ], + "format": "OVA", + "episodes": 1, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 8, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42625, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 23, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 46093, + "mal_id": 46093, + "title": "Shiroi Suna no Aquatope", + "english": "The Aquatope on White Sand", + "native": "白い砂のアクアトープ", + "synonyms": [ + "Aquatope of White Sand" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 9, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39247, + "mal_id": 39247, + "title": "Kobayashi-san Chi no Maid Dragon S", + "english": "Miss Kobayashi's Dragon Maid S", + "native": "小林さんちのメイドラゴンS", + "synonyms": [ + "Kobayashi-san Chi no Maid Dragon 2nd Season", + "Miss Kobayashi's Dragon Maid 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 8, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 47257, + "mal_id": 47257, + "title": "Shinigami Bocchan to Kuro Maid", + "english": "The Duke of Death and His Maid", + "native": "死神坊ちゃんと黒メイド", + "synonyms": [ + "Young Master the Grim Reaper and the Black Maid" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 4, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 122434, + "mal_id": 42625, + "title": "Heion Sedai no Idaten-tachi", + "english": "The Idaten Deities Know Only Peace", + "native": "平穏世代の韋駄天達", + "synonyms": [ + "Idaten Deities in the Peaceful Generation", + "อิดะเท็น เทพต่อสู้กู้ยุคสันติ", + "Боги-стражники не ведали войны" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 41487, + "mal_id": 41487, + "title": "Tensei shitara Slime Datta Ken 2nd Season Part 2", + "english": "That Time I Got Reincarnated as a Slime Season 2 Part 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 42627, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 1, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 40904, + "mal_id": 40904, + "title": "Bokutachi no Remake", + "english": "Remake Our Life!", + "native": "ぼくたちのリメイク", + "synonyms": [ + "Bokurema" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 3, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 40620, + "mal_id": 40620, + "title": "Uramichi Oniisan", + "english": "Life Lessons with Uramichi-Oniisan", + "native": "うらみちお兄さん", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 44203, + "mal_id": 44203, + "title": "Seirei Gensouki", + "english": "Seirei Gensouki: Spirit Chronicles", + "native": "精霊幻想記", + "synonyms": [ + "Spirit Chronicles" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 6, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 122441, + "mal_id": 42627, + "title": "Peach Boy Riverside", + "english": "Peach Boy Riverside", + "native": "ピーチボーイリバーサイド", + "synonyms": [ + "พีชบอยริเวอร์ไซด์" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 43814, + "mal_id": 43814, + "title": "Deatte 5-byou de Battle", + "english": "Battle Game in 5 Seconds", + "native": "出会って5秒でバトル", + "synonyms": [ + "Dea5", + "Battle in 5 seconds after meeting." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2021, + "start_date": { + "day": 13, + "month": 7, + "year": 2021 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2021-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2021-winter.json new file mode 100644 index 0000000..be9d2b6 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2021-winter.json @@ -0,0 +1,7500 @@ +{ + "year": 2021, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 124080, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "堀与宫村", + "โฮริมิยะ สาวมั่นกับนายมืดมน", + "Хоримия" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 124845, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "WONDER EGG PRIORITY", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [ + "WonEgg", + "WEP", + "奇蛋物语", + "วันเดอร์เอ็ก ไพรออริตี", + "Приоритет чудо-яйца" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版:||", + "synonyms": [ + "Rebuild of Evangelion 4.0", + "EVANGELION:3.0+1.01 THRICE UPON A TIME ", + "EVANGELION:3.0+1.01 A ESPERANÇA", + "อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว", + "Evangelion 3.0+1.11", + "EVANGELION:3.0+1.01 TRIPLE", + "Evangelion 3.0+1.01 Od-nowa" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 114129, + "mal_id": 39486, + "title": "Gintama: THE FINAL", + "english": "Gintama: THE VERY FINAL", + "native": "銀魂 THE FINAL", + "synonyms": [ + "กินทามะ THE FINAL" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 42897, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "Hori-san and Miyamura-kun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 39535, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 11, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 39551, + "mal_id": 39551, + "title": "Tensei shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 12, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 43299, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "Wonder Egg Priority", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 39783, + "mal_id": 39783, + "title": "5-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "Gotoubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "5-toubun no Hanayome 2nd Season", + "The Quintessential Quintuplets 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 40750, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "Kaiyari" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 42923, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "Skate" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 37984, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 40530, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "Jakusha Character Tomozaki-kun", + "The Low Tier Character \"Tomozaki-kun\"" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 41899, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版𝄇", + "synonyms": [ + "Evangelion: 4.0", + "Rebuild of Evangelion", + "Shin Evangelion Gekijouban𝄇", + "Rebuild of Evangelion: Final" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 40908, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "Monster Incidents" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 43690, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival", + "Sky Violation" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 2, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 40594, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "Last Dungeon Boonies Kid" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 4, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 41109, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3rd Season", + "Log Horizon Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 41694, + "mal_id": 41694, + "title": "Hataraku Saibou Black", + "english": "Cells at Work! CODE BLACK!", + "native": "はたらく細胞BLACK", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 39486, + "mal_id": 39486, + "title": "Gintama: The Final", + "english": "Gintama: The Very Final", + "native": "銀魂 THE FINAL", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 1.1286, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 110277, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "SnK 4", + "AoT 4", + "Shingeki no Kyojin 4", + "進撃の巨人4", + "Attack on Titan Season 4", + "진격의 거인 더 파이널 시즌", + "מתקפת הטיטאנים העונה האחרונה", + "L'Attaque des Titans Saison Finale", + "L'Attacco dei Giganti 4", + "L'Attacco dei Giganti - La Stagione Finale", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น", + "ผ่าพิภพไททัน Final Season", + "ผ่าพิภพไททัน ภาค 4", + "هجوم العملاقة الجزء الأخير", + "Атака Титанов: Финал" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2020, + "month": 12, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 124080, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "堀与宫村", + "โฮริมิยะ สาวมั่นกับนายมืดมน", + "Хоримия" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 42897, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "Hori-san and Miyamura-kun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 124080, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "堀与宫村", + "โฮริมิยะ สาวมั่นกับนายมืดมน", + "Хоримия" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40750, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "Kaiyari" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 124080, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "堀与宫村", + "โฮริมิยะ สาวมั่นกับนายมืดมน", + "Хоримия" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 124080, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "堀与宫村", + "โฮริมิยะ สาวมั่นกับนายมืดมน", + "Хоримия" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 41109, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3rd Season", + "Log Horizon Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39535, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 11, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39551, + "mal_id": 39551, + "title": "Tensei shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 12, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41899, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 40530, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "Jakusha Character Tomozaki-kun", + "The Low Tier Character \"Tomozaki-kun\"" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 0.8925, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 108465, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "无职转生 ~到了异世界就拿出真本事~", + "เกิดชาตินี้พี่ต้องเทพ", + "Thất nghiệp chuyển sinh" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 19, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 113936, + "mal_id": 40852, + "title": "Dr. STONE: STONE WARS", + "english": "Dr. STONE: STONE WARS", + "native": "Dr.STONE STONE WARS", + "synonyms": [ + "ドクターストーン STONE WARS", + "Dr.STONE第2期", + "Dr. STONE 2", + "닥터 스톤 STONE WARS", + "石纪元第二季", + "DR.STONE ภาค 2", + "Доктор Стоун: Каменные войны" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 40594, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "Last Dungeon Boonies Kid" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 4, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 39783, + "mal_id": 39783, + "title": "5-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "Gotoubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "5-toubun no Hanayome 2nd Season", + "The Quintessential Quintuplets 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 1.0417, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 108725, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド2", + "synonyms": [ + "YakuNeba", + "TPN2", + "พันธสัญญาเนเวอร์แลนด์ ภาค 2", + "約定的夢幻島 第二季" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39551, + "mal_id": 39551, + "title": "Tensei shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 12, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 1.0672, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 12, + "score": 1.0667, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 1.0278, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 39783, + "mal_id": 39783, + "title": "5-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "Gotoubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "5-toubun no Hanayome 2nd Season", + "The Quintessential Quintuplets 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 108511, + "mal_id": 39551, + "title": "Tensei Shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件 第2期", + "synonyms": [ + "転スラ2", + "TenSura 2", + "关于我转生变成史莱姆这档事第二季(上半)", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2", + "Moi, quand je me réincarne en Slime Saison 2", + "Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2", + "О моём перерождении в слизь 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 12, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 119661, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2nd Season Part 2", + "synonyms": [ + "Re:Zero kara Hajimeru Isekai Seikatsu (2021)", + "Re: 제로부터 시작하는 이세계 생활 2기 파트 2", + "Re:从零开始的异世界生活第二季(下半)", + "Re:从零开始的异世界生活 2 下半", + "Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2", + "Re:Zero — жизнь с нуля в другом мире. Второй сезон" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124845, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "WONDER EGG PRIORITY", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [ + "WonEgg", + "WEP", + "奇蛋物语", + "วันเดอร์เอ็ก ไพรออริตี", + "Приоритет чудо-яйца" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 43299, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "Wonder Egg Priority", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124845, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "WONDER EGG PRIORITY", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [ + "WonEgg", + "WEP", + "奇蛋物语", + "วันเดอร์เอ็ก ไพรออริตี", + "Приоритет чудо-яйца" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124845, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "WONDER EGG PRIORITY", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [ + "WonEgg", + "WEP", + "奇蛋物语", + "วันเดอร์เอ็ก ไพรออริตี", + "Приоритет чудо-яйца" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40908, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "Monster Incidents" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124845, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "WONDER EGG PRIORITY", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [ + "WonEgg", + "WEP", + "奇蛋物语", + "วันเดอร์เอ็ก ไพรออริตี", + "Приоритет чудо-яйца" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 42923, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "Skate" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40908, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "Monster Incidents" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 124153, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "เอสเคเอท สเกตบอร์ดล้างเมือง", + "Hội Thanh Niên Lướt Ván SK∞", + "Ski Tak Terbatas SK∞" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37984, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 39783, + "mal_id": 39783, + "title": "5-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "Gotoubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "5-toubun no Hanayome 2nd Season", + "The Quintessential Quintuplets 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 1.1275, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 1.0938, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 1.06, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 109261, + "mal_id": 39783, + "title": "Go-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "5-toubun no Hanayome ∬", + "Go-toubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "五等分的新娘∬", + "เจ้าสาวผมเป็นแฝดห้า ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37984, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 22, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 39783, + "mal_id": 39783, + "title": "5-toubun no Hanayome ∬", + "english": "The Quintessential Quintuplets 2", + "native": "五等分の花嫁∬", + "synonyms": [ + "Gotoubun no Hanayome 2nd Season", + "The Five Wedded Brides 2nd Season", + "5-toubun no Hanayome 2nd Season", + "The Quintessential Quintuplets 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 103632, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [ + "转生成蜘蛛又怎样!", + "حسنا أنا عنكبوت، ماذا في ذلك؟", + "แมงมุมแล้วไง ข้องใจเหรอคะ ", + "Tôi Là Nhện Đấy, Có Sao Không?" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39551, + "mal_id": 39551, + "title": "Tensei shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 12, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40750, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "Kaiyari" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 113425, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "回复术士的重启人生", + "La Venganza del Sanador" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 41109, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3rd Season", + "Log Horizon Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 5, + "score": 1.2222, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 1.2111, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 1.1842, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 114194, + "mal_id": 40935, + "title": "BEASTARS 2nd Season", + "english": "BEASTARS Season 2", + "native": "BEASTARS 第2期", + "synonyms": [ + "บีสตาร์ ภาค 2", + "Выдающиеся звери 2", + "ビースターズ 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 40530, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "Jakusha Character Tomozaki-kun", + "The Low Tier Character \"Tomozaki-kun\"" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9198, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 39551, + "mal_id": 39551, + "title": "Tensei shitara Slime Datta Ken 2nd Season", + "english": "That Time I Got Reincarnated as a Slime Season 2", + "native": "転生したらスライムだった件", + "synonyms": [ + "Tensura 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 12, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 37984, + "mal_id": 37984, + "title": "Kumo desu ga, Nani ka?", + "english": "So I'm a Spider, So What?", + "native": "蜘蛛ですが、なにか?", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39535, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 11, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 112443, + "mal_id": 40530, + "title": "Jaku-Chara Tomozaki-kun", + "english": "Bottom-Tier Character Tomozaki", + "native": "弱キャラ友崎くん", + "synonyms": [ + "เกมพลิกโฉมนายกระจอก", + "Низкоуровневый Томодзаки" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41899, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 0.9857, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 9, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40750, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "Kaiyari" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 116752, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "七大罪:愤怒的审判", + "The Seven Deadly Sins: Dragens dom", + "ศึกตำนาน 7 อัศวิน ภาค 4", + "Сім смертних гріхів: Правосуддя Дракона", + "Семь смертных грехов: Яростное правосудие" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 43690, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival", + "Sky Violation" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 2, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.9306, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 39617, + "mal_id": 39617, + "title": "Yakusoku no Neverland 2nd Season", + "english": "The Promised Neverland Season 2", + "native": "約束のネバーランド", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 0, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 125428, + "mal_id": 43690, + "title": "Tenkuu Shinpan", + "english": "High-Rise Invasion", + "native": "天空侵犯", + "synonyms": [ + "Sky-High Survival ", + "Tenku Shinpan - Sem Saída", + "غزاة ناطحات السحاب", + "หน้ากากเดนนรก", + "Invasión en las Alturas" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 2, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 40908, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "Monster Incidents" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 42923, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "Skate" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 43299, + "mal_id": 43299, + "title": "Wonder Egg Priority", + "english": "Wonder Egg Priority", + "native": "ワンダーエッグ・プライオリティ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 39535, + "mal_id": 39535, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation", + "native": "無職転生 ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 11, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 114085, + "mal_id": 40908, + "title": "Kemono Jihen", + "english": "Kemono Jihen", + "native": "怪物事変", + "synonyms": [ + "けものじへん", + "Monster Incidents", + "Kemono Incidents", + "คดีประหลาดคนปีศาจ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41899, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 40594, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "Last Dungeon Boonies Kid" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 4, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 0.9598, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.9533, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 41491, + "mal_id": 41491, + "title": "Nanatsu no Taizai: Funnu no Shinpan", + "english": "The Seven Deadly Sins: Dragon's Judgement", + "native": "七つの大罪 憤怒の審判", + "synonyms": [ + "Nanatsu no Taizai: Fundo no Shinpan" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 118375, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon!", + "ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版:||", + "synonyms": [ + "Rebuild of Evangelion 4.0", + "EVANGELION:3.0+1.01 THRICE UPON A TIME ", + "EVANGELION:3.0+1.01 A ESPERANÇA", + "อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว", + "Evangelion 3.0+1.11", + "EVANGELION:3.0+1.01 TRIPLE", + "Evangelion 3.0+1.01 Od-nowa" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版𝄇", + "synonyms": [ + "Evangelion: 4.0", + "Rebuild of Evangelion", + "Shin Evangelion Gekijouban𝄇", + "Rebuild of Evangelion: Final" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 3, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 9, + "score": 0.9128, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版:||", + "synonyms": [ + "Rebuild of Evangelion 4.0", + "EVANGELION:3.0+1.01 THRICE UPON A TIME ", + "EVANGELION:3.0+1.01 A ESPERANÇA", + "อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว", + "Evangelion 3.0+1.11", + "EVANGELION:3.0+1.01 TRIPLE", + "Evangelion 3.0+1.01 Od-nowa" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 40750, + "mal_id": 40750, + "title": "Kaifuku Jutsushi no Yarinaoshi", + "english": "Redo of Healer", + "native": "回復術士のやり直し", + "synonyms": [ + "Kaiyari" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 3786, + "mal_id": 3786, + "title": "Shin Evangelion Movie:||", + "english": "Evangelion: 3.0+1.0 Thrice Upon a Time", + "native": "シン・エヴァンゲリオン劇場版:||", + "synonyms": [ + "Rebuild of Evangelion 4.0", + "EVANGELION:3.0+1.01 THRICE UPON A TIME ", + "EVANGELION:3.0+1.01 A ESPERANÇA", + "อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว", + "Evangelion 3.0+1.11", + "EVANGELION:3.0+1.01 TRIPLE", + "Evangelion 3.0+1.01 Od-nowa" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 3, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 40594, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "Last Dungeon Boonies Kid" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 4, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 40594, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "Last Dungeon Boonies Kid" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 4, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.919, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41899, + "mal_id": 41899, + "title": "Ore dake Haireru Kakushi Dungeon", + "english": "The Hidden Dungeon Only I Can Enter", + "native": "俺だけ入れる隠しダンジョン", + "synonyms": [ + "Special training in the Secret Dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.8689, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 112649, + "mal_id": 40594, + "title": "Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari", + "english": "Suppose a Kid from the Last Dungeon Boonies moved to a starter town?", + "native": "たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語", + "synonyms": [ + "LASDAN", + "Imagine, un cambrousard du dernier donjon dans la ville de départ !", + "หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 1.3966, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41694, + "mal_id": 41694, + "title": "Hataraku Saibou Black", + "english": "Cells at Work! CODE BLACK!", + "native": "はたらく細胞BLACK", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 108631, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Les brigades immunitaires 2", + "เซลล์ขยัน พันธุ์เดือด ภาค 2" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 38474, + "mal_id": 38474, + "title": "Yuru Camp△ Season 2", + "english": "Laid-Back Camp Season 2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yuru Camp 2nd Season", + "Yurukyan" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 42203, + "mal_id": 42203, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2", + "english": "Re:ZERO -Starting Life in Another World- Season 2 Part 2", + "native": "Re:ゼロから始める異世界生活 2 part 2", + "synonyms": [ + "Re: Life in a different world from zero 2nd Season", + "ReZero 2nd Season", + "Re:Zero - Starting Life in Another World 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 6, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 104459, + "mal_id": 38474, + "title": "Yuru Camp△ SEASON 2", + "english": "LAID-BACK CAMP SEASON2", + "native": "ゆるキャン△ SEASON2", + "synonyms": [ + "Yurucamp", + "Yurukyan△", + "摇曳露营△第二季", + "摇曳露营△ 2", + "โลลิตั้งแคมป์ ภาค 2", + "แคมป์สบายสไตล์สาวๆ ภาค 2", + "Laid-Back Camp Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40852, + "mal_id": 40852, + "title": "Dr. Stone: Stone Wars", + "english": null, + "native": "ドクターストーン STONE WARS", + "synonyms": [ + "Dr. Stone 2nd Season", + "Dr. Stone Second Season" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 14, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 41109, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3rd Season", + "Log Horizon Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 13, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 42897, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "Hori-san and Miyamura-kun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 114862, + "mal_id": 41109, + "title": "Log Horizon: Entaku Houkai", + "english": "Log Horizon: Destruction of the Round Table", + "native": "ログ・ホライズン 円卓崩壊", + "synonyms": [ + "Log Horizon 3", + "รวมพลคนติดอยู่ในเกมส์ ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41694, + "mal_id": 41694, + "title": "Hataraku Saibou Black", + "english": "Cells at Work! CODE BLACK!", + "native": "はたらく細胞BLACK", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 41694, + "mal_id": 41694, + "title": "Hataraku Saibou Black", + "english": "Cells at Work! CODE BLACK!", + "native": "はたらく細胞BLACK", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 1.3929, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 39586, + "mal_id": 39586, + "title": "Hataraku Saibou!!", + "english": "Cells at Work!!", + "native": "はたらく細胞!!", + "synonyms": [ + "Cells at Work!! 2nd Season", + "Hataraku Saibou 2nd Season" + ], + "format": "TV", + "episodes": 8, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 9, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 40935, + "mal_id": 40935, + "title": "Beastars 2nd Season", + "english": null, + "native": "BEASTARS 2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 117533, + "mal_id": 41694, + "title": "Hataraku Saibou BLACK", + "english": "Cells at Work! CODE BLACK", + "native": "はたらく細胞BLACK", + "synonyms": [ + "Les brigades immunitaires BLACK", + "เซลล์ขยันพันธุ์เดือด BLACK", + "Клетки за работой! КОД: ТЬМА" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 42897, + "mal_id": 42897, + "title": "Horimiya", + "english": "Horimiya", + "native": "ホリミヤ", + "synonyms": [ + "Hori-san and Miyamura-kun" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 114129, + "mal_id": 39486, + "title": "Gintama: THE FINAL", + "english": "Gintama: THE VERY FINAL", + "native": "銀魂 THE FINAL", + "synonyms": [ + "กินทามะ THE FINAL" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 39486, + "mal_id": 39486, + "title": "Gintama: The Final", + "english": "Gintama: The Very Final", + "native": "銀魂 THE FINAL", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 1.12, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 114129, + "mal_id": 39486, + "title": "Gintama: THE FINAL", + "english": "Gintama: THE VERY FINAL", + "native": "銀魂 THE FINAL", + "synonyms": [ + "กินทามะ THE FINAL" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 40028, + "mal_id": 40028, + "title": "Shingeki no Kyojin: The Final Season", + "english": "Attack on Titan: Final Season", + "native": "進撃の巨人 The Final Season", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 16, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 7, + "month": 12, + "year": 2020 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 114129, + "mal_id": 39486, + "title": "Gintama: THE FINAL", + "english": "Gintama: THE VERY FINAL", + "native": "銀魂 THE FINAL", + "synonyms": [ + "กินทามะ THE FINAL" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2021, + "start_date": { + "year": 2021, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 42923, + "mal_id": 42923, + "title": "SK∞", + "english": "SK8 the Infinity", + "native": "SK∞ エスケーエイト", + "synonyms": [ + "SK Eight", + "Skate" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2021, + "start_date": { + "day": 10, + "month": 1, + "year": 2021 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2022-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2022-fall.json new file mode 100644 index 0000000..b9d5425 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2022-fall.json @@ -0,0 +1,6065 @@ +{ + "year": 2022, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 127230, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM", + "رجل المنشار", + "链锯人", + "Человек-бензопила", + "체인소 맨" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 142838, + "mal_id": 50602, + "title": "SPY×FAMILY Part 2", + "english": "SPY x FAMILY Cour 2", + "native": "SPY×FAMILY 第2クール", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "スパイファミリー 2クール" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 140439, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 Ⅲ", + "synonyms": [ + "モブサイコ100 III", + "ม็อบไซโค 100 คนพลังจิต ภาค 3", + "Моб Психо 100 III" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 142770, + "mal_id": 50594, + "title": "Suzume no Tojimari", + "english": "Suzume", + "native": "すずめの戸締まり", + "synonyms": [ + "铃芽之旅", + "Khóa Chặt Cửa Nào Suzume", + "การผนึกประตูของซุซุเมะ", + "Судзуме зачиняє двері", + "Судзумэ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 139587, + "mal_id": 49891, + "title": "Tensei Shitara Ken Deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I Became the Sword by Transmigrating", + "TenKen", + "ซวยเหลือหลาย เกิดใหม่กลายเป็นดาบ", + "TENKEN - Reincarnato in una spada", + "轉生就是劍" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 153930, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [ + "La asesina del romance", + "Романтичний убивця", + "Убийца-романтик" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 139498, + "mal_id": 49877, + "title": "Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen", + "english": "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond", + "native": "劇場版 転生したらスライムだった件 紅蓮の絆編", + "synonyms": [ + "That Time I Got Reincarnated as a Slime Movie", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว เดอะมูฟวี่", + "Lúc đó tôi đã chuyển sinh thành Slime: Mối Liên Kết Đỏ Thẫm", + "О моём перерождении в слизь: Алые узы", + "Tensura Movie", + "That Time I Got Reincarnated as a Slime: El Vínculo Escarlata", + "That Time I Got Reincarnated as a Slime - Laços Escarlates" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 139274, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch", + "Mobile Suit Gundam: Penyihir dari Mercury", + "機動戰士鋼彈 水星的魔女", + "Мобильный воин Гандам: Ведьма с Меркурия" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 139820, + "mal_id": 49979, + "title": "Akuyaku Reijou nano de Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "作为恶役大小姐就该养魔王", + "悪ラス", + "AkuLast", + "AkuRasu" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 145604, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Синоби Иттоки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 140999, + "mal_id": 50275, + "title": "Sword Art Online: Progressive - Kuraki Yuuyami no Scherzo", + "english": "Sword Art Online the Movie -Progressive- Scherzo of Deep Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 冥き夕闇のスケルツォ", + "synonyms": [ + "Sword Art Online: Progressive - Scherzo of Dark Night", + "SAO Progressive", + "SAOP", + "Sword Art Online : Progressive - สแกรโซแห่งสนธยาโศก", + "Sword Art Online: Progressive - Scherzo de una profunda oscuridad", + "Sword Art Online Progressive: Scherzo do Crepúsculo Sombrio " + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 139310, + "mal_id": 49834, + "title": "Boku ga Aishita Subete no Kimi e", + "english": "To Every You I’ve Loved Before", + "native": "僕が愛したすべての君へ", + "synonyms": [ + "Nhắn gửi tất cả các em, những người tôi đã yêu", + "BokuAi" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 44511, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 50602, + "mal_id": 50602, + "title": "Spy x Family Part 2", + "english": null, + "native": "SPY×FAMILY", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 49596, + "mal_id": 49596, + "title": "Blue Lock", + "english": "Blue Lock", + "native": "ブルーロック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 48316, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "Shadow Garden" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 47917, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "Bocchi the Rock!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 50594, + "mal_id": 50594, + "title": "Suzume no Tojimari", + "english": "Suzume", + "native": "すずめの戸締まり", + "synonyms": [ + "Suzume's Door-Locking" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 11, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 52198, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 17, + "month": 12, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 53273, + "mal_id": 53273, + "title": "JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3", + "english": "JoJo's Bizarre Adventure: Stone Ocean Part 3", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [], + "format": "ONA", + "episodes": 14, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 12, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 52865, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 49877, + "mal_id": 49877, + "title": "Tensei shitara Slime Datta Ken Movie: Guren no Kizuna-hen", + "english": "That Time I Got Reincarnated as a Slime: The Movie - Scarlet Bond", + "native": "劇場版 転生したらスライムだった件 紅蓮の絆編", + "synonyms": [ + "TenSura", + "That Time I Got Reincarnated as a Slime Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 11, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 52046, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 49979, + "mal_id": 49979, + "title": "Akuyaku Reijou nanode Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "Akulas" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 50710, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura", + "native": "うる星やつら", + "synonyms": [ + "Those Obnoxious Aliens", + "The Return of Lum", + "Lum", + "the Invader Girl" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 14, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 49828, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 51403, + "mal_id": 51403, + "title": "Renai Flops", + "english": "Love Flops", + "native": "恋愛フロップス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 127230, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM", + "رجل المنشار", + "链锯人", + "Человек-бензопила", + "체인소 맨" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 44511, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 21, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 127230, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM", + "رجل المنشار", + "链锯人", + "Человек-бензопила", + "체인소 맨" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 3, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 127230, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM", + "رجل المنشار", + "链锯人", + "Человек-бензопила", + "체인소 맨" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 48316, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "Shadow Garden" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 142838, + "mal_id": 50602, + "title": "SPY×FAMILY Part 2", + "english": "SPY x FAMILY Cour 2", + "native": "SPY×FAMILY 第2クール", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "スパイファミリー 2クール" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 50602, + "mal_id": 50602, + "title": "Spy x Family Part 2", + "english": null, + "native": "SPY×FAMILY", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 142838, + "mal_id": 50602, + "title": "SPY×FAMILY Part 2", + "english": "SPY x FAMILY Cour 2", + "native": "SPY×FAMILY 第2クール", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "スパイファミリー 2クール" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 142838, + "mal_id": 50602, + "title": "SPY×FAMILY Part 2", + "english": "SPY x FAMILY Cour 2", + "native": "SPY×FAMILY 第2クール", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "スパイファミリー 2クール" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 49596, + "mal_id": 49596, + "title": "Blue Lock", + "english": "Blue Lock", + "native": "ブルーロック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 51403, + "mal_id": 51403, + "title": "Renai Flops", + "english": "Love Flops", + "native": "恋愛フロップス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47917, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "Bocchi the Rock!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 137822, + "mal_id": 49596, + "title": "Blue Lock", + "english": "BLUE LOCK", + "native": "ブルーロック", + "synonyms": [ + "BLUE LOCK ขังดวลแข้ง", + " بلو لوك" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 48316, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "Shadow Garden" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50710, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura", + "native": "うる星やつら", + "synonyms": [ + "Those Obnoxious Aliens", + "The Return of Lum", + "Lum", + "the Invader Girl" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 14, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 130298, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "To Be a Power in the Shadows!", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา", + "Un giorno sarò l'eminenza grigia", + "TEIS", + "Кардинал теней" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 1.0769, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 16, + "score": 1.0075, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 139630, + "mal_id": 49918, + "title": "Boku no Hero Academia 6", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア6", + "synonyms": [ + "BNHA 6", + "MHA 6", + "我的英雄学院 6", + "我的英雄学院第六季", + "มายฮีโร่ อคาเดเมีย ภาค 6", + "أكاديميتي للأبطال ", + "Моя геройская академия 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 140439, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 Ⅲ", + "synonyms": [ + "モブサイコ100 III", + "ม็อบไซโค 100 คนพลังจิต ภาค 3", + "Моб Психо 100 III" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 140439, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 Ⅲ", + "synonyms": [ + "モブサイコ100 III", + "ม็อบไซโค 100 คนพลังจิต ภาค 3", + "Моб Психо 100 III" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47917, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "Bocchi the Rock!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 49596, + "mal_id": 49596, + "title": "Blue Lock", + "english": "Blue Lock", + "native": "ブルーロック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50710, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura", + "native": "うる星やつら", + "synonyms": [ + "Those Obnoxious Aliens", + "The Return of Lum", + "Lum", + "the Invader Girl" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 14, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 130003, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "BOCCHI THE ROCK!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [ + "РОК-ТИХОНЯ!", + "บจจิเดอะร็อก!", + "孤獨搖滾!", + "孤独摇滚!", + "외톨이 THE ROCK!", + "봇치 더 록!", + "BTR" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 52046, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 49596, + "mal_id": 49596, + "title": "Blue Lock", + "english": "Blue Lock", + "native": "ブルーロック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 52046, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 116674, + "mal_id": 41467, + "title": "BLEACH: Sennen Kessen-hen", + "english": "BLEACH: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "بليتش: حرب الألف سنة الدموية", + "Bleach: La guerre sanglante de mille ans", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 48316, + "mal_id": 48316, + "title": "Kage no Jitsuryokusha ni Naritakute!", + "english": "The Eminence in Shadow", + "native": "陰の実力者になりたくて!", + "synonyms": [ + "Shadow Garden" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142770, + "mal_id": 50594, + "title": "Suzume no Tojimari", + "english": "Suzume", + "native": "すずめの戸締まり", + "synonyms": [ + "铃芽之旅", + "Khóa Chặt Cửa Nào Suzume", + "การผนึกประตูของซุซุเมะ", + "Судзуме зачиняє двері", + "Судзумэ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50594, + "mal_id": 50594, + "title": "Suzume no Tojimari", + "english": "Suzume", + "native": "すずめの戸締まり", + "synonyms": [ + "Suzume's Door-Locking" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 11, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 15, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142770, + "mal_id": 50594, + "title": "Suzume no Tojimari", + "english": "Suzume", + "native": "すずめの戸締まり", + "synonyms": [ + "铃芽之旅", + "Khóa Chặt Cửa Nào Suzume", + "การผนึกประตูของซุซุเมะ", + "Судзуме зачиняє двері", + "Судзумэ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 19, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 49979, + "mal_id": 49979, + "title": "Akuyaku Reijou nanode Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "Akulas" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141949, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple, Less than Lovers.", + "แผนสมรสไม่สมเลิฟ", + "Presque mariés, loin d'être amoureux.", + "Больше чем пара, меньше чем любовники", + "Fuukoi", + "ふうこい" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 139587, + "mal_id": 49891, + "title": "Tensei Shitara Ken Deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I Became the Sword by Transmigrating", + "TenKen", + "ซวยเหลือหลาย เกิดใหม่กลายเป็นดาบ", + "TENKEN - Reincarnato in una spada", + "轉生就是劍" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.9085, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 139587, + "mal_id": 49891, + "title": "Tensei Shitara Ken Deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I Became the Sword by Transmigrating", + "TenKen", + "ซวยเหลือหลาย เกิดใหม่กลายเป็นดาบ", + "TENKEN - Reincarnato in una spada", + "轉生就是劍" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 1.0769, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 1.0625, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9478, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 138565, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season 2", + "synonyms": [ + "不滅のあなたへ 第2シリーズ", + "Uma vida imortal 2", + "แด่เธอผู้เป็นนิรันดร์ ภาค 2" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 153930, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [ + "La asesina del romance", + "Романтичний убивця", + "Убийца-романтик" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 52865, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 27, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 153930, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [ + "La asesina del romance", + "Романтичний убивця", + "Убийца-романтик" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 44511, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.8643, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 153930, + "mal_id": 52865, + "title": "Romantic Killer", + "english": "Romantic Killer", + "native": "ロマンティック・キラー", + "synonyms": [ + "La asesina del romance", + "Романтичний убивця", + "Убийца-романтик" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 49828, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139498, + "mal_id": 49877, + "title": "Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen", + "english": "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond", + "native": "劇場版 転生したらスライムだった件 紅蓮の絆編", + "synonyms": [ + "That Time I Got Reincarnated as a Slime Movie", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว เดอะมูฟวี่", + "Lúc đó tôi đã chuyển sinh thành Slime: Mối Liên Kết Đỏ Thẫm", + "О моём перерождении в слизь: Алые узы", + "Tensura Movie", + "That Time I Got Reincarnated as a Slime: El Vínculo Escarlata", + "That Time I Got Reincarnated as a Slime - Laços Escarlates" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 49877, + "mal_id": 49877, + "title": "Tensei shitara Slime Datta Ken Movie: Guren no Kizuna-hen", + "english": "That Time I Got Reincarnated as a Slime: The Movie - Scarlet Bond", + "native": "劇場版 転生したらスライムだった件 紅蓮の絆編", + "synonyms": [ + "TenSura", + "That Time I Got Reincarnated as a Slime Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 11, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.9882, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139498, + "mal_id": 49877, + "title": "Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen", + "english": "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond", + "native": "劇場版 転生したらスライムだった件 紅蓮の絆編", + "synonyms": [ + "That Time I Got Reincarnated as a Slime Movie", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว เดอะมูฟวี่", + "Lúc đó tôi đã chuyển sinh thành Slime: Mối Liên Kết Đỏ Thẫm", + "О моём перерождении в слизь: Алые узы", + "Tensura Movie", + "That Time I Got Reincarnated as a Slime: El Vínculo Escarlata", + "That Time I Got Reincarnated as a Slime - Laços Escarlates" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 11, + "day": 25 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50710, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura", + "native": "うる星やつら", + "synonyms": [ + "Those Obnoxious Aliens", + "The Return of Lum", + "Lum", + "the Invader Girl" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 14, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 1.0818, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 0.9923, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 5, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 143277, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura (2022)", + "native": "うる星やつら (2022)", + "synonyms": [ + "Urusei Yatsura: All Stars", + "Lum, the Invader Girl", + "Lamù e i casinisti planetari", + "Turma do Barulho", + "Urusei Yatsura (2022) Season 2", + "Urusei Yatsura: Kosmiczni natręci" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 52046, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 150695, + "mal_id": 52046, + "title": "Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "english": "Beast Tamer", + "native": "勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う", + "synonyms": [ + "เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง", + "Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat", + "被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 47917, + "mal_id": 47917, + "title": "Bocchi the Rock!", + "english": "Bocchi the Rock!", + "native": "ぼっち・ざ・ろっく!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 139274, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch", + "Mobile Suit Gundam: Penyihir dari Mercury", + "機動戰士鋼彈 水星的魔女", + "Мобильный воин Гандам: Ведьма с Меркурия" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 49828, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 139274, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch", + "Mobile Suit Gundam: Penyihir dari Mercury", + "機動戰士鋼彈 水星的魔女", + "Мобильный воин Гандам: Ведьма с Меркурия" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 41467, + "mal_id": 41467, + "title": "Bleach: Sennen Kessen-hen", + "english": "Bleach: Thousand-Year Blood War", + "native": "BLEACH 千年血戦篇", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 11, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 139274, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch", + "Mobile Suit Gundam: Penyihir dari Mercury", + "機動戰士鋼彈 水星的魔女", + "Мобильный воин Гандам: Ведьма с Меркурия" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 139274, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch", + "Mobile Suit Gundam: Penyihir dari Mercury", + "機動戰士鋼彈 水星的魔女", + "Мобильный воин Гандам: Ведьма с Меркурия" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 44511, + "mal_id": 44511, + "title": "Chainsaw Man", + "english": "Chainsaw Man", + "native": "チェンソーマン", + "synonyms": [ + "CSM" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 151379, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou", + "Война горничных Акибы" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49891, + "mal_id": 49891, + "title": "Tensei shitara Ken deshita", + "english": "Reincarnated as a Sword", + "native": "転生したら剣でした", + "synonyms": [ + "I became the sword by transmigrating", + "TenKen" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 5, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 11, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 139092, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん 第3シリーズ", + "synonyms": [ + "อิรุมะคุง พจญในแดนปีศาจ! ภาค 3" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 139820, + "mal_id": 49979, + "title": "Akuyaku Reijou nano de Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "作为恶役大小姐就该养魔王", + "悪ラス", + "AkuLast", + "AkuRasu" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 49979, + "mal_id": 49979, + "title": "Akuyaku Reijou nanode Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "Akulas" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 42962, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! Double", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan wa Asobitai! 2nd Season", + "Uzaki-chan wa Asobitai! ω", + "Uzaki-chan Wants to Hang Out! 2nd Season", + "Uzaki-chan Wants to Hang Out! ω" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49784, + "mal_id": 49784, + "title": "Mairimashita! Iruma-kun 3rd Season", + "english": "Welcome to Demon School! Iruma-kun Season 3", + "native": "魔入りました!入間くん", + "synonyms": [ + "Welcome to Demon School! Iruma-kun 3rd Season" + ], + "format": "TV", + "episodes": 21, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 8, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 1.02, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52193, + "mal_id": 52193, + "title": "Akiba Meido Sensou", + "english": "Akiba Maid War", + "native": "アキバ冥途戦争", + "synonyms": [ + "Akiba Maid Sensou" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 7, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 124395, + "mal_id": 42962, + "title": "Uzaki-chan wa Asobitai! ω", + "english": "Uzaki-chan Wants to Hang Out! Season 2", + "native": "宇崎ちゃんは遊びたい!ω(だぶる)", + "synonyms": [ + "Uzaki-chan Wants to Hang Out! ω", + "Uzaki-chan Wants to Hang Out! Double", + "Uzaki-chan wa Asobitai! 2nd Season", + "รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49918, + "mal_id": 49918, + "title": "Boku no Hero Academia 6th Season", + "english": "My Hero Academia Season 6", + "native": "僕のヒーローアカデミア", + "synonyms": [ + "My Hero Academia 6" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 51403, + "mal_id": 51403, + "title": "Renai Flops", + "english": "Love Flops", + "native": "恋愛フロップス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 12, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 9, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 50425, + "mal_id": 50425, + "title": "Fuufu Ijou, Koibito Miman.", + "english": "More than a Married Couple, but Not Lovers.", + "native": "夫婦以上、恋人未満。", + "synonyms": [ + "More than a Couple", + "Less than Lovers.", + "Fuukoi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50710, + "mal_id": 50710, + "title": "Urusei Yatsura (2022)", + "english": "Urusei Yatsura", + "native": "うる星やつら", + "synonyms": [ + "Those Obnoxious Aliens", + "The Return of Lum", + "Lum", + "the Invader Girl" + ], + "format": "TV", + "episodes": 23, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 14, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 49596, + "mal_id": 49596, + "title": "Blue Lock", + "english": "Blue Lock", + "native": "ブルーロック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 9, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 146676, + "mal_id": 51403, + "title": "Renai Flops", + "english": "LOVE FLOPS", + "native": "恋愛フロップス", + "synonyms": [ + "Renai Furoppusu" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 145604, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Синоби Иттоки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51098, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Ittoki the Ninja" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 4, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 145604, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Синоби Иттоки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50172, + "mal_id": 50172, + "title": "Mob Psycho 100 III", + "english": "Mob Psycho 100 III", + "native": "モブサイコ100 III", + "synonyms": [ + "Mob Psycho 100 3rd Season", + "Mob Psycho Hyaku", + "Mob Psycho One Hundred" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 6, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 145604, + "mal_id": 51098, + "title": "Shinobi no Ittoki", + "english": "Shinobi no Ittoki", + "native": "忍の一時", + "synonyms": [ + "Синоби Иттоки" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 49828, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 0.9455, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 140999, + "mal_id": 50275, + "title": "Sword Art Online: Progressive - Kuraki Yuuyami no Scherzo", + "english": "Sword Art Online the Movie -Progressive- Scherzo of Deep Night", + "native": "劇場版 ソードアート・オンライン プログレッシブ 冥き夕闇のスケルツォ", + "synonyms": [ + "Sword Art Online: Progressive - Scherzo of Dark Night", + "SAO Progressive", + "SAOP", + "Sword Art Online : Progressive - สแกรโซแห่งสนธยาโศก", + "Sword Art Online: Progressive - Scherzo de una profunda oscuridad", + "Sword Art Online Progressive: Scherzo do Crepúsculo Sombrio " + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 49709, + "mal_id": 49709, + "title": "Fumetsu no Anata e Season 2", + "english": "To Your Eternity Season 2", + "native": "不滅のあなたへ Season2", + "synonyms": [ + "To Your Eternity 2nd Season", + "To You", + "the Immortal 2nd Season" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 23, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 139310, + "mal_id": 49834, + "title": "Boku ga Aishita Subete no Kimi e", + "english": "To Every You I’ve Loved Before", + "native": "僕が愛したすべての君へ", + "synonyms": [ + "Nhắn gửi tất cả các em, những người tôi đã yêu", + "BokuAi" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 49979, + "mal_id": 49979, + "title": "Akuyaku Reijou nanode Last Boss wo Kattemimashita", + "english": "I'm the Villainess, So I'm Taming the Final Boss", + "native": "悪役令嬢なのでラスボスを飼ってみました", + "synonyms": [ + "Akulas" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 1, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 0.8848, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 139310, + "mal_id": 49834, + "title": "Boku ga Aishita Subete no Kimi e", + "english": "To Every You I’ve Loved Before", + "native": "僕が愛したすべての君へ", + "synonyms": [ + "Nhắn gửi tất cả các em, những người tôi đã yêu", + "BokuAi" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2022, + "start_date": { + "year": 2022, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 49828, + "mal_id": 49828, + "title": "Kidou Senshi Gundam: Suisei no Majo", + "english": "Mobile Suit Gundam: The Witch from Mercury", + "native": "機動戦士ガンダム 水星の魔女", + "synonyms": [ + "G-Witch" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2022, + "start_date": { + "day": 2, + "month": 10, + "year": 2022 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2022-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2022-spring.json new file mode 100644 index 0000000..0a9bd2a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2022-spring.json @@ -0,0 +1,6703 @@ +{ + "year": 2022, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 140960, + "mal_id": 50265, + "title": "SPY×FAMILY", + "english": "SPY x FAMILY", + "native": "SPY×FAMILY", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "Семья шпиона", + "سباي إكس فاميلي" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 141014, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friend Game", + "친구게임", + "โทโมดาจิ เกมมิตรภาพ", + "لعبة الأصدقاء", + "Tomodachi Game: Los juegos de la amistad" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 131520, + "mal_id": 48548, + "title": "Go-toubun no Hanayome Movie", + "english": "The Quintessential Quintuplets Movie", + "native": "映画 五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome Movie", + "Eiga Go-toubun no Hanayome", + "เจ้าสาวผมเป็นแฝดห้า The Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 5, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 142455, + "mal_id": 50549, + "title": "Bubble", + "english": "Bubble", + "native": "バブル", + "synonyms": [ + "บับเบิ้ล", + "Burbujas", + "فقاعة" + ], + "format": "ONA", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 134732, + "mal_id": 49052, + "title": "Aoashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [ + "AOASHI แข็งเด็กหัวใจนักสู้", + "أواشي", + "Ao Ashi - Playmaker" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 133898, + "mal_id": 48903, + "title": "Dragon Ball Super: Super Hero", + "english": "Dragon Ball Super: SUPER HERO", + "native": "ドラゴンボール超 スーパーヒーロー", + "synonyms": [ + "دراغون بول سوبر: البطل الخارق", + "Dragon Ball Super - Szuperhős", + "Драконий жемчуг: Супер — Супергерой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 6, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 50265, + "mal_id": 50265, + "title": "Spy x Family", + "english": null, + "native": "SPY×FAMILY", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 47194, + "mal_id": 47194, + "title": "Summertime Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 15, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 48760, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "Skeleton Knight going out to the parallel universe" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 50175, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yuuyame" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 48415, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "The Greatest Maou is Reborned to Get Friends" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 48675, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "Cuckoo's Fiancee" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 24, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 50380, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Koumei" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 48548, + "mal_id": 48548, + "title": "5-toubun no Hanayome Movie", + "english": "The Quintessential Quintuplets Movie", + "native": "映画 五等分の花嫁", + "synonyms": [ + "Gotoubun no Hanayome", + "The Five Wedded Brides", + "The Quintessential Quintuplets" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 5, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 49052, + "mal_id": 49052, + "title": "Ao Ashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 50549, + "mal_id": 50549, + "title": "Bubble", + "english": "Bubble", + "native": "バブル", + "synonyms": [], + "format": "ONA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 48842, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "Mahou Tsukai Reimeiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 48903, + "mal_id": 48903, + "title": "Dragon Ball Super: Super Hero", + "english": "Dragon Ball Super: Super Hero", + "native": "ドラゴンボール超スーパーヒーロー", + "synonyms": [ + "Dragon Ball Super Movie 2: Superhero" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 6, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 48779, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 140960, + "mal_id": 50265, + "title": "SPY×FAMILY", + "english": "SPY x FAMILY", + "native": "SPY×FAMILY", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "Семья шпиона", + "سباي إكس فاميلي" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 50265, + "mal_id": 50265, + "title": "Spy x Family", + "english": null, + "native": "SPY×FAMILY", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 13, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 140960, + "mal_id": 50265, + "title": "SPY×FAMILY", + "english": "SPY x FAMILY", + "native": "SPY×FAMILY", + "synonyms": [ + "SxF", + "스파이 패밀리", + "间谍过家家", + "Семья шпиона", + "سباي إكس فاميلي" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50380, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Koumei" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 1.0676, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 1.0614, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 125367, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama: Love is War Season 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", + "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", + "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", + "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", + "Kaguya-sama wa Kokurasetai 3rd Season", + "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", + "Госпожа Кагуя: в любви как на войне. Ультраромантика", + "Nona Kaguya Ingin Ditembak: Ultra Romantic" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 48779, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9928, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 111321, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season 2", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 2", + "Восхождение героя щита 2" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 47194, + "mal_id": 47194, + "title": "Summertime Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 15, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 48779, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 129201, + "mal_id": 47194, + "title": "Summer Time Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [ + "Summertime Render", + "ปริศนาบ้านเก่า เงามรณะ", + "A Ilha das Sombras", + "夏日重现", + "La Isla de las Sombras", + "Tajemnica wyspy ", + "לעבור את הקיץ", + "Bright Sun – Dark Shadows" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 16, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 0.9419, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 127911, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ", + "Shikimori n'est pas juste mignonne", + "Shikimori Không Chỉ Dễ Thương Thôi Đâu", + "SHIKIMORI Tidak Hanya Manis", + "Моя девушка не просто милашка" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.9789, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 142984, + "mal_id": 50631, + "title": "Komi-san wa, Komyushou desu. 2", + "english": "Komi Can't Communicate Part 2", + "native": "古見さんは、コミュ症です。2", + "synonyms": [ + "Komi Can't Communicate Season 2", + "โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2", + "كومي لا تستطيع التواصل", + "У Коми проблемы с общением 2", + "Комі не вміє спілкуватися 2", + "המשאלה של קומי" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 141014, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friend Game", + "친구게임", + "โทโมดาจิ เกมมิตรภาพ", + "لعبة الأصدقاء", + "Tomodachi Game: Los juegos de la amistad" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 137281, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable", + "Aharen Is Unfathomable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 16, + "score": 1.2143, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 142074, + "mal_id": 50461, + "title": "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "mobseka", + "ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม", + "Otome Game Sekai wa Mob ni Kibishii Sekai desu " + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 131520, + "mal_id": 48548, + "title": "Go-toubun no Hanayome Movie", + "english": "The Quintessential Quintuplets Movie", + "native": "映画 五等分の花嫁", + "synonyms": [ + "5-toubun no Hanayome Movie", + "Eiga Go-toubun no Hanayome", + "เจ้าสาวผมเป็นแฝดห้า The Movie" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 5, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48548, + "mal_id": 48548, + "title": "5-toubun no Hanayome Movie", + "english": "The Quintessential Quintuplets Movie", + "native": "映画 五等分の花嫁", + "synonyms": [ + "Gotoubun no Hanayome", + "The Five Wedded Brides", + "The Quintessential Quintuplets" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 5, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48675, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "Cuckoo's Fiancee" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 24, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50380, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Koumei" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 132052, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "รักอลวนคนสลับบ้าน", + "Обручённые кукушками", + "Kakkou no Iinazuke" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48760, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "Skeleton Knight going out to the parallel universe" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 0.9478, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9359, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.927, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 0.904, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 132474, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก", + "Kesatria Tengkorak Berkelana di Dunia Lain", + "Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48415, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "The Greatest Maou is Reborned to Get Friends" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48415, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "The Greatest Maou is Reborned to Get Friends" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.9304, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.9043, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 0.904, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48760, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "Skeleton Knight going out to the parallel universe" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.8951, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 130586, + "mal_id": 48415, + "title": "Shijou Saikyou no Daimaou, Murabito A ni Tensei suru", + "english": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "native": "史上最強の大魔王、村人Aに転生する", + "synonyms": [ + "ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา", + "Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran", + "Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50175, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yuuyame" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 20, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 140457, + "mal_id": 50175, + "title": "Yuusha, Yamemasu", + "english": "I'm Quitting Heroing", + "native": "勇者、辞めます", + "synonyms": [ + "Yamemasu Tsugi No Shokuba Ha Mao Jo", + "yuuyame", + "I’m Quitting Heroing: Next Gig Is at the Demon Queen's Castle", + "ผมน่ะเลิกเป็นผู้กล้าแล้วครับ", + "勇者、辭職不幹了" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50380, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Koumei" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 5, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48675, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "Cuckoo's Fiancee" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 24, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 141774, + "mal_id": 50380, + "title": "Paripi Koumei", + "english": "Ya Boy Kongming!", + "native": "パリピ孔明", + "synonyms": [ + "Party People Kongming", + "Paripi Kongming", + "ขงเบ้งเจาะเวลามาปั้นดาว", + "派對咖孔明" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 47194, + "mal_id": 47194, + "title": "Summertime Render", + "english": "Summer Time Rendering", + "native": "サマータイムレンダ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 15, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 142455, + "mal_id": 50549, + "title": "Bubble", + "english": "Bubble", + "native": "バブル", + "synonyms": [ + "บับเบิ้ล", + "Burbujas", + "فقاعة" + ], + "format": "ONA", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50549, + "mal_id": 50549, + "title": "Bubble", + "english": "Bubble", + "native": "バブル", + "synonyms": [], + "format": "ONA", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 134732, + "mal_id": 49052, + "title": "Aoashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [ + "AOASHI แข็งเด็กหัวใจนักสู้", + "أواشي", + "Ao Ashi - Playmaker" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 49052, + "mal_id": 49052, + "title": "Ao Ashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 134732, + "mal_id": 49052, + "title": "Aoashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [ + "AOASHI แข็งเด็กหัวใจนักสู้", + "أواشي", + "Ao Ashi - Playmaker" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50273, + "mal_id": 50273, + "title": "Tomodachi Game", + "english": "Tomodachi Game", + "native": "トモダチゲーム", + "synonyms": [ + "Friends Game" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 134732, + "mal_id": 49052, + "title": "Aoashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [ + "AOASHI แข็งเด็กหัวใจนักสู้", + "أواشي", + "Ao Ashi - Playmaker" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 48842, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "Mahou Tsukai Reimeiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 0.8692, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 134732, + "mal_id": 49052, + "title": "Aoashi", + "english": "Aoashi", + "native": "アオアシ", + "synonyms": [ + "AOASHI แข็งเด็กหัวใจนักสู้", + "أواشي", + "Ao Ashi - Playmaker" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48760, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "Skeleton Knight going out to the parallel universe" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 1.2143, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 132010, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "รักเรานั้นไว้หลังครองโลก", + "รักหลังครองโลก", + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48760, + "mal_id": 48760, + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "english": "Skeleton Knight in Another World", + "native": "骸骨騎士様、只今異世界へお出掛け中", + "synonyms": [ + "Skeleton Knight going out to the parallel universe" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 2, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 1, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116605, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブIV", + "synonyms": [ + "Date A Live Season 4", + "พิชิตรัก พิทักษ์โลก ภาค 4", + "Рандеву с Жизнью 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47162, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道〈バージンロード〉", + "synonyms": [ + "Shokei Shoujo no Ikiru Michi" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 12, + "score": 0.9783, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48675, + "mal_id": 48675, + "title": "Kakkou no Iinazuke", + "english": "A Couple of Cuckoos", + "native": "カッコウの許嫁", + "synonyms": [ + "Cuckoo's Fiancee" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 24, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 48643, + "mal_id": 48643, + "title": "Koi wa Sekai Seifuku no Ato de", + "english": "Love After World Domination", + "native": "恋は世界征服のあとで", + "synonyms": [ + "Koiseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 4, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129193, + "mal_id": 47162, + "title": "Shokei Shoujo no Virgin Road", + "english": "The Executioner and Her Way of Life", + "native": "処刑少女の生きる道(バージンロード)", + "synonyms": [ + "เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์", + "處刑少女的生存之道" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 1.0172, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9928, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9595, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 121176, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 司書になるためには手段を選んでいられません 第3期", + "synonyms": [ + "爱书的下克上:为了成为图书管理员不择手段!3", + "หนอนหนังสือยึดอำนาจ ภาค 3", + "การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3", + "Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3", + "Власть книжного червя" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 45613, + "mal_id": 45613, + "title": "Kawaii dake ja Nai Shikimori-san", + "english": "Shikimori's Not Just a Cutie", + "native": "可愛いだけじゃない式守さん", + "synonyms": [ + "Shikimori's Not Just a Cutie", + "Miss Shikimori is not just cute", + "That Girl Is Not Just Cute" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 10, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 48842, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "Mahou Tsukai Reimeiki" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 1.0085, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 133175, + "mal_id": 48842, + "title": "Mahoutsukai Reimeiki", + "english": "The Dawn of the Witch", + "native": "魔法使い黎明期", + "synonyms": [ + "魔法使黎明期", + "จอมเวทแห่งรุ่งอรุณ", + "Bình Minh Của Phù Thủy", + "Purwa Fajar Si Penyihir", + "Рассвет ведьмы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50461, + "mal_id": 50461, + "title": "Otome Game Sekai wa Mob ni Kibishii Sekai desu", + "english": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "native": "乙女ゲー世界はモブに厳しい世界です", + "synonyms": [ + "Otomege Sekai wa Mob ni Kibishii Sekai desu", + "Mobseka", + "Mobuseka" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 3, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 133898, + "mal_id": 48903, + "title": "Dragon Ball Super: Super Hero", + "english": "Dragon Ball Super: SUPER HERO", + "native": "ドラゴンボール超 スーパーヒーロー", + "synonyms": [ + "دراغون بول سوبر: البطل الخارق", + "Dragon Ball Super - Szuperhős", + "Драконий жемчуг: Супер — Супергерой" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 6, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 48903, + "mal_id": 48903, + "title": "Dragon Ball Super: Super Hero", + "english": "Dragon Ball Super: Super Hero", + "native": "ドラゴンボール超スーパーヒーロー", + "synonyms": [ + "Dragon Ball Super Movie 2: Superhero" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 11, + "month": 6, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 43470, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "Science Fell in Love", + "So I Tried to Prove It 2nd Season", + "Rikekoi", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 50631, + "mal_id": 50631, + "title": "Komi-san wa, Comyushou desu. 2nd Season", + "english": "Komi Can't Communicate Season 2", + "native": "古見さんは、コミュ症です。 2", + "synonyms": [ + "Komi-san wa", + "Communication Shougai desu. 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 7, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 1.012, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 43608, + "mal_id": 43608, + "title": "Kaguya-sama wa Kokurasetai: Ultra Romantic", + "english": "Kaguya-sama: Love is War -Ultra Romantic-", + "native": "かぐや様は告らせたい-ウルトラロマンティック-", + "synonyms": [ + "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season", + "Kaguya-sama: Love is War Season 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 2, + "score": 0.9842, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 0.9823, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 125124, + "mal_id": 43470, + "title": "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", + "english": "Science Fell in Love, So I Tried to Prove It r=1-sinθ", + "native": "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", + "synonyms": [ + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2", + "Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season", + "พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42429, + "mal_id": 42429, + "title": "Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season", + "english": "Ascendance of a Bookworm Season 3", + "native": "本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期", + "synonyms": [ + "Ascendance of a Bookworm 3rd Season" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 12, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 48779, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 40356, + "mal_id": 40356, + "title": "Tate no Yuusha no Nariagari Season 2", + "english": "The Rising of the Shield Hero Season 2", + "native": "盾の勇者の成り上がり Season2", + "synonyms": [ + "Tate no Yuusha no Nariagari 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 6, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 15, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 41461, + "mal_id": 41461, + "title": "Date A Live IV", + "english": "Date A Live IV", + "native": "デート・ア・ライブⅣ", + "synonyms": [ + "Date A Live 4", + "Date A Live Fourth Season", + "DAL 4" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 8, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 0, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 50265, + "mal_id": 50265, + "title": "Spy x Family", + "english": null, + "native": "SPY×FAMILY", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 9, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 132532, + "mal_id": 48779, + "title": "Deaimon", + "english": "Deaimon: Recipe for Happiness", + "native": "であいもん", + "synonyms": [ + "Kyoto & Wagashi & Family", + "相合之物" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "year": 2022, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 49520, + "mal_id": 49520, + "title": "Aharen-san wa Hakarenai", + "english": "Aharen-san wa Hakarenai", + "native": "阿波連さんははかれない", + "synonyms": [ + "Aharen Is Indecipherable" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2022, + "start_date": { + "day": 2, + "month": 4, + "year": 2022 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2022-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2022-summer.json new file mode 100644 index 0000000..a11dacd --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2022-summer.json @@ -0,0 +1,6446 @@ +{ + "year": 2022, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 120377, + "mal_id": 42310, + "title": "Cyberpunk: Edgerunners", + "english": "Cyberpunk: Edgerunners", + "native": "サイバーパンク エッジランナーズ", + "synonyms": [ + "Cyberpunk: Mercenários", + "電馭叛客:邊緣行者", + "CYBERPUNK: อาชญากรแดนเถื่อน", + "Киберпанк: Бегущие по краю" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 133844, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロードⅣ", + "synonyms": [ + "Overlord 4", + "โอเวอร์ลอร์ด ภาค 4", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 146722, + "mal_id": 51367, + "title": "JoJo no Kimyou na Bouken: Stone Ocean Part 2", + "english": "JoJo's Bizarre Adventure: STONE OCEAN Part 2", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン 2クール", + "synonyms": [ + "JoJo's Bizarre Adventure Part 6 (Part 2)", + "JoJo no Kimyou na Bouken Part 6 (Part 2)", + "JoJo's Bizarre Adventure: STONE OCEAN The Final Episodes" + ], + "format": "ONA", + "episodes": 26, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 142876, + "mal_id": 50612, + "title": "Dr. STONE: Ryuusui", + "english": "Dr. STONE Special Episode – RYUSUI", + "native": "Dr.STONE 龍水", + "synonyms": [ + "Dr. STONE: Ryusui", + "Доктор Стоун: Рюсуй" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 142769, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル、さよならの出口", + "synonyms": [ + "คำจากลาของคิมหันต์ ณ ปลายอุโมงค์", + "Natsuton", + "El túnel de los deseos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 146625, + "mal_id": 51417, + "title": "Engage Kiss", + "english": "Engage Kiss", + "native": "Engage Kiss", + "synonyms": [ + "エンゲージ・キス", + "Project Engage", + "Клятвенный поцелуй" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 129192, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 141902, + "mal_id": 50410, + "title": "ONE PIECE FILM: RED", + "english": "One Piece Film: Red", + "native": "ONE PIECE FILM RED", + "synonyms": [ + "One Piece Film 15", + "فيلم ون بيس: ريد", + "วันพีซ ฟิล์ม เรด" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 141351, + "mal_id": 50339, + "title": "Kakegurui Twin", + "english": "Kakegurui Twin", + "native": "賭ケグルイ双", + "synonyms": [ + "โคตรเซียนโรงเรียนพนัน ภาค Twin", + "Compulsive Gambler Twin", + "Шалений азарт. Затятий двійник", + "Двойной азарт" + ], + "format": "ONA", + "episodes": 6, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 8, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 42310, + "mal_id": 42310, + "title": "Cyberpunk: Edgerunners", + "english": null, + "native": "サイバーパンク エッジランナーズ", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 50346, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 48895, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロード IV", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 50709, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "LycoReco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 41084, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 50612, + "mal_id": 50612, + "title": "Dr. Stone: Ryuusui", + "english": "Dr. Stone: Ryusui", + "native": "Dr.STONE 龍水", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 51367, + "mal_id": 51367, + "title": "JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2", + "english": "JoJo's Bizarre Adventure: Stone Ocean Part 2", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 49470, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter Is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "My Stepsister is My Ex-Girlfriend", + "Tsurekano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 51213, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 51064, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "The Berserker Rises to Greatness." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 51417, + "mal_id": 51417, + "title": "Engage Kiss", + "english": "Engage Kiss", + "native": "Engage Kiss", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 3, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 49438, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "Alternate World Pharmacy" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 49776, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 7, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 50593, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル, さよならの出口", + "synonyms": [ + "Natsuton" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 47163, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "Tensei Kenjya no Isekai Life" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 50410, + "mal_id": 50410, + "title": "One Piece Film: Red", + "english": "One Piece Film: Red", + "native": "ONE PIECE FILM RED", + "synonyms": [ + "One Piece Movie 15" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 8, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 51837, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently Is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "My Recently Hired Maid is Suspicious" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 24, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 120377, + "mal_id": 42310, + "title": "Cyberpunk: Edgerunners", + "english": "Cyberpunk: Edgerunners", + "native": "サイバーパンク エッジランナーズ", + "synonyms": [ + "Cyberpunk: Mercenários", + "電馭叛客:邊緣行者", + "CYBERPUNK: อาชญากรแดนเถื่อน", + "Киберпанк: Бегущие по краю" + ], + "format": "ONA", + "episodes": 10, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 42310, + "mal_id": 42310, + "title": "Cyberpunk: Edgerunners", + "english": null, + "native": "サイバーパンク エッジランナーズ", + "synonyms": [], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 13, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 50346, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 8, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 141391, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [ + "Song of the Night Walkers", + "Night Owl Song", + "เพลงรักมนุษย์ค้างคาว", + "نداء الليل", + "Zew nocy", + "Il richiamo della notte", + "Поклик ночі", + "Песнь ночных сов", + "El canto de la noche", + "Canções da Noite" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 1.0538, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 145545, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite Season 2", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "You-Zitsu 2", + "Youjitsu 2", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2", + "Cote 2", + "Добро пожаловать в класс для особо одарённых 2", + "歡迎來到實力至上主義的教室 第二季", + "فصل النخبة الموسم الثاني" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50709, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "LycoReco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143270, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "ไลโคริส รีคอยล์", + "LycoReco", + "Ликорис Рекойл", + "莉可麗絲" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51064, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "The Berserker Rises to Greatness." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 133844, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロードⅣ", + "synonyms": [ + "Overlord 4", + "โอเวอร์ลอร์ด ภาค 4", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 48895, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロード IV", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 133844, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロードⅣ", + "synonyms": [ + "Overlord 4", + "โอเวอร์ลอร์ด ภาค 4", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 51213, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 133844, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロードⅣ", + "synonyms": [ + "Overlord 4", + "โอเวอร์ลอร์ด ภาค 4", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50709, + "mal_id": 50709, + "title": "Lycoris Recoil", + "english": "Lycoris Recoil", + "native": "リコリス・リコイル", + "synonyms": [ + "LycoReco" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 133844, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロードⅣ", + "synonyms": [ + "Overlord 4", + "โอเวอร์ลอร์ด ภาค 4", + "โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 24, + "score": 1.1415, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 1.1122, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 1.0763, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130592, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2", + "Hataraku Maou-sama! 2", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2nd Season", + "打工吧!魔王大人 第二季", + "Raja Iblis Nyambi! Musim Kedua" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 41084, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 1.0417, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 114745, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [ + "Made in Abyss Season 2", + "ผ่าเหวนรก ภาค 2", + "นักบุกเบิกหลุมยักษ์ ภาค 2", + "صنع في الهاوية 2", + "ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า", + "Đến từ Vực Thẳm Mùa 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 1.14, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 124410, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします 第2期", + "synonyms": [ + "KanoKari 2", + "สะดุดรักยัยแฟนเช่า ภาค 2", + "Pacar Sewaan 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 49438, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "Alternate World Pharmacy" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 135806, + "mal_id": 49220, + "title": "Isekai Oji-san", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Ojisan in Another World", + "ยอดคุณน้าจากต่างโลก", + "Mi tío es de otro mundo", + "Coma héroïque dans un autre monde", + "O Tio de Outro Mundo", + "דוד מעולם אחר", + "Θείος Από Άλλο Κόσμο", + "Дядько з іншого світу", + "Дядя из другого мира" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 50346, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 0.9337, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.884, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.8689, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129196, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4", + "Danmachi IV", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4", + "Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 21 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146722, + "mal_id": 51367, + "title": "JoJo no Kimyou na Bouken: Stone Ocean Part 2", + "english": "JoJo's Bizarre Adventure: STONE OCEAN Part 2", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン 2クール", + "synonyms": [ + "JoJo's Bizarre Adventure Part 6 (Part 2)", + "JoJo no Kimyou na Bouken Part 6 (Part 2)", + "JoJo's Bizarre Adventure: STONE OCEAN The Final Episodes" + ], + "format": "ONA", + "episodes": 26, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51367, + "mal_id": 51367, + "title": "JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2", + "english": "JoJo's Bizarre Adventure: Stone Ocean Part 2", + "native": "ジョジョの奇妙な冒険 ストーンオーシャン", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 142876, + "mal_id": 50612, + "title": "Dr. STONE: Ryuusui", + "english": "Dr. STONE Special Episode – RYUSUI", + "native": "Dr.STONE 龍水", + "synonyms": [ + "Dr. STONE: Ryusui", + "Доктор Стоун: Рюсуй" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50612, + "mal_id": 50612, + "title": "Dr. Stone: Ryuusui", + "english": "Dr. Stone: Ryusui", + "native": "Dr.STONE 龍水", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 142876, + "mal_id": 50612, + "title": "Dr. STONE: Ryuusui", + "english": "Dr. STONE Special Episode – RYUSUI", + "native": "Dr.STONE 龍水", + "synonyms": [ + "Dr. STONE: Ryusui", + "Доктор Стоун: Рюсуй" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 142876, + "mal_id": 50612, + "title": "Dr. STONE: Ryuusui", + "english": "Dr. STONE Special Episode – RYUSUI", + "native": "Dr.STONE 龍水", + "synonyms": [ + "Dr. STONE: Ryusui", + "Доктор Стоун: Рюсуй" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 51213, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 48895, + "mal_id": 48895, + "title": "Overlord IV", + "english": "Overlord IV", + "native": "オーバーロード IV", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.9105, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 146210, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [ + "Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity", + "เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์", + "Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47163, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "Tensei Kenjya no Isekai Life" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49470, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter Is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "My Stepsister is My Ex-Girlfriend", + "Tsurekano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 42963, + "mal_id": 42963, + "title": "Kanojo, Okarishimasu 2nd Season", + "english": "Rent-a-Girlfriend Season 2", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 2, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 8, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 136934, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "Motokano", + "Tsurekano", + "My Stepsister is My Ex-Girlfriend", + "เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่", + "Step-Exes", + "繼母的拖油瓶是我的前女友" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51064, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "The Berserker Rises to Greatness." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 142769, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル、さよならの出口", + "synonyms": [ + "คำจากลาของคิมหันต์ ณ ปลายอุโมงค์", + "Natsuton", + "El túnel de los deseos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50593, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル, さよならの出口", + "synonyms": [ + "Natsuton" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 9, + "month": 9, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 24, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 142769, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル、さよならの出口", + "synonyms": [ + "คำจากลาของคิมหันต์ ณ ปลายอุโมงค์", + "Natsuton", + "El túnel de los deseos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49782, + "mal_id": 49782, + "title": "Shadows House 2nd Season", + "english": "Shadows House 2nd Season", + "native": "シャドーハウス 2nd Season", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9556, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 142769, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル、さよならの出口", + "synonyms": [ + "คำจากลาของคิมหันต์ ณ ปลายอุโมงค์", + "Natsuton", + "El túnel de los deseos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 142769, + "mal_id": 50593, + "title": "Natsu e no Tunnel, Sayonara no Deguchi", + "english": "The Tunnel to Summer, the Exit of Goodbyes", + "native": "夏へのトンネル、さよならの出口", + "synonyms": [ + "คำจากลาของคิมหันต์ ณ ปลายอุโมงค์", + "Natsuton", + "El túnel de los deseos" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 9, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49470, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter Is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "My Stepsister is My Ex-Girlfriend", + "Tsurekano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51064, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "The Berserker Rises to Greatness." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 49776, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 7, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 50346, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47163, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "Tensei Kenjya no Isekai Life" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 145260, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "นักอัญเชิญทมิฬ", + "黑之召喚士" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 146625, + "mal_id": 51417, + "title": "Engage Kiss", + "english": "Engage Kiss", + "native": "Engage Kiss", + "synonyms": [ + "エンゲージ・キス", + "Project Engage", + "Клятвенный поцелуй" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51417, + "mal_id": 51417, + "title": "Engage Kiss", + "english": "Engage Kiss", + "native": "Engage Kiss", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 3, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 146625, + "mal_id": 51417, + "title": "Engage Kiss", + "english": "Engage Kiss", + "native": "Engage Kiss", + "synonyms": [ + "エンゲージ・キス", + "Project Engage", + "Клятвенный поцелуй" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 49776, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 7, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 15, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51064, + "mal_id": 51064, + "title": "Kuro no Shoukanshi", + "english": "Black Summoner", + "native": "黒の召喚士", + "synonyms": [ + "The Berserker Rises to Greatness." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 9, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138882, + "mal_id": 49776, + "title": "Kumichou Musume to Sewagakari", + "english": "The Yakuza's Guide to Babysitting", + "native": "組長娘と世話係", + "synonyms": [ + "Con Gái Ông Trùm Và Người Giám Hộ", + "組長女兒與保姆" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49470, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter Is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "My Stepsister is My Ex-Girlfriend", + "Tsurekano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 49438, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "Alternate World Pharmacy" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136707, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "เภสัชกรเทพสองโลก", + "奇幻世界药局" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 49470, + "mal_id": 49470, + "title": "Mamahaha no Tsurego ga Motokano datta", + "english": "My Stepmom's Daughter Is My Ex", + "native": "継母の連れ子が元カノだった", + "synonyms": [ + "My Stepsister is My Ex-Girlfriend", + "Tsurekano" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129192, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 47163, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "Tensei Kenjya no Isekai Life" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.8804, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129192, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 47164, + "mal_id": 47164, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇", + "synonyms": [ + "DanMachi 4th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 23, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 13, + "score": 0.8699, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129192, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 51213, + "mal_id": 51213, + "title": "Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu", + "english": "Vermeil in Gold", + "native": "金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 5, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.8688, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 129192, + "mal_id": 47163, + "title": "Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita", + "english": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "native": "転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~", + "synonyms": [ + "เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 41084, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 1.1032, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.9944, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 41084, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 49438, + "mal_id": 49438, + "title": "Isekai Yakkyoku", + "english": "Parallel World Pharmacy", + "native": "異世界薬局", + "synonyms": [ + "Alternate World Pharmacy" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 10, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 127090, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก", + "Harem in the fantasy world dungeon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51096, + "mal_id": 51096, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season", + "english": "Classroom of the Elite II", + "native": "ようこそ実力至上主義の教室へ 2nd Season", + "synonyms": [ + "Classroom of the Elite 2nd Season", + "You-jitsu 2nd Season", + "You-zitsu 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 4, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 141902, + "mal_id": 50410, + "title": "ONE PIECE FILM: RED", + "english": "One Piece Film: Red", + "native": "ONE PIECE FILM RED", + "synonyms": [ + "One Piece Film 15", + "فيلم ون بيس: ريد", + "วันพีซ ฟิล์ม เรด" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 8, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 50410, + "mal_id": 50410, + "title": "One Piece Film: Red", + "english": "One Piece Film: Red", + "native": "ONE PIECE FILM RED", + "synonyms": [ + "One Piece Movie 15" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 8, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 45653, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Even so", + "Ayumu draws closer to the endgame", + "Even So", + "Ayumu Approaches", + "Soreayu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 50346, + "mal_id": 50346, + "title": "Yofukashi no Uta", + "english": "Call of the Night", + "native": "よふかしのうた", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 8, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 128223, + "mal_id": 45653, + "title": "Soredemo Ayumu wa Yosetekuru", + "english": "When Will Ayumu Make His Move?", + "native": "それでも歩は寄せてくる", + "synonyms": [ + "Shogi Senpai", + "Even so, Ayumu draws closer to the endgame", + " ขอรุกเข้าไปใกล้ๆ ใจเธอ", + "À quoi tu joues, Ayumu ?!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51837, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently Is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "My Recently Hired Maid is Suspicious" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 24, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 41084, + "mal_id": 41084, + "title": "Made in Abyss: Retsujitsu no Ougonkyou", + "english": "Made in Abyss: The Golden City of the Scorching Sun", + "native": "メイドインアビス 烈日の黄金郷", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 48413, + "mal_id": 48413, + "title": "Hataraku Maou-sama!!", + "english": "The Devil is a Part-Timer! Season 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 2nd Season", + "The Devil is a Part-Timer!!", + "Hataraku Maou-sama 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 14, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 44524, + "mal_id": 44524, + "title": "Isekai Meikyuu de Harem wo", + "english": "Harem in the Labyrinth of Another World", + "native": "異世界迷宮でハーレムを", + "synonyms": [ + "A Harem in a Fantasy World Labyrinth" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.8774, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 149326, + "mal_id": 51837, + "title": "Saikin Yatotta Maid ga Ayashii", + "english": "The Maid I Hired Recently is Mysterious", + "native": "最近雇ったメイドが怪しい", + "synonyms": [ + "Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ", + "เมดคนนี้มีพิรุธ", + "新來的女傭有點怪" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 7, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 49220, + "mal_id": 49220, + "title": "Isekai Ojisan", + "english": "Uncle from Another World", + "native": "異世界おじさん", + "synonyms": [ + "Isekai Uncle", + "Ojisan in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2022, + "start_date": { + "day": 6, + "month": 7, + "year": 2022 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2022-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2022-winter.json new file mode 100644 index 0000000..461469a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2022-winter.json @@ -0,0 +1,6524 @@ +{ + "year": 2022, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 141534, + "mal_id": 50360, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 - Eris no Goblin Toubatsu", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2 - Eris the Goblin Slayer", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール エリスのゴブリン討伐", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Cour 2 Special", + "Mushoku Tensei: Jobless Reincarnation Part 2 Special", + "เกิดชาตินี้พี่ต้องเทพ OVA", + "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 136192, + "mal_id": 49310, + "title": "Fruits Basket: prelude", + "english": "Fruits Basket -prelude-", + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "The Story of Kyoko and Katsuya", + "今日子と勝也の物語", + "Kyouko to Katsuya no Monogatari", + "Fruits Basket Movie", + "Корзинка фруктов: Прелюдия" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 128034, + "mal_id": 45560, + "title": "ORIENT", + "english": "ORIENT", + "native": "オリエント", + "synonyms": [ + "2 สิงห์ พลิกตำนานพิฆาตอสูร" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 130389, + "mal_id": 48375, + "title": "Mahouka Koukou no Rettousei: Tsuioku-hen", + "english": "The Irregular at Magic High School: Reminiscence Arc", + "native": "魔法科高校の劣等生 追憶編", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาคย้อนความหลัง", + "Непутёвый ученик в школе магии: Воспоминания" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 136436, + "mal_id": 49893, + "title": "Kobayashi-san Chi no Maidragon S: Nippon no Omotenashi (Attend wa Dragon desu)", + "english": "Miss Kobayashi’s Dragon Maid S: Japanese Hospitality (The Attendant Is a Dragon)", + "native": "小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid S Special", + "Miss Kobayashi's Dragon Maid S Episode 13", + "Kobayashi-san Chi no Maidragon S Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 130550, + "mal_id": 48405, + "title": "Totsukuni no Shoujo (2022)", + "english": "The Girl from the Other Side", + "native": "とつくにの少女 (2022)", + "synonyms": [ + "Siúil, a Rún", + "L'Enfant et le Maudit" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 47778, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 48736, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo Suru", + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 40507, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd Season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd Season", + "synonyms": [ + "From Common Job Class to the Strongest in the World 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 47159, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 48414, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 44055, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "Sasamiya" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 50360, + "mal_id": 50360, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu", + "english": "Mushoku Tensei: Jobless Reincarnation - Eris the Goblin Slayer", + "native": "無職転生 ~異世界行ったら本気だす~ エリスのゴブリン討伐", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Special", + "Mushoku Tensei: Isekai Ittara Honki Dasu Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 3, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 49721, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "Skilled Teaser Takagi-san 3rd Season", + "Karakai Jouzu no Takagi-san Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 48997, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Ojisan to", + "english": "Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "Fabiniku", + "Isekai Bishoujo Juniku Ojisan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 49909, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro Lives By Himself" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 3, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 44516, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 45560, + "mal_id": 45560, + "title": "Orient", + "english": "Orient", + "native": "オリエント", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 6, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 49310, + "mal_id": 49310, + "title": "Fruits Basket: Prelude", + "english": null, + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "Kyouko to Katsuya no Monogatari", + "The Story of Kyoko and Katsuya" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 2, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 49738, + "mal_id": 49738, + "title": "Heike Monogatari", + "english": "The Heike Story", + "native": "平家物語", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 50185, + "mal_id": 50185, + "title": "Ryman's Club", + "english": "Salaryman's Club", + "native": "リーマンズクラブ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 30, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 49893, + "mal_id": 49893, + "title": "Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu", + "english": "Miss Kobayashi's Dragon Maid S: Japanese Hospitality (The Attendant is a Dragon)", + "native": "小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid S Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 47778, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9267, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 142329, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [ + "KnY 2", + "Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs", + "ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech", + "귀멸의 칼날: 환락의 거리편", + "Клинок, Рассекающий Демонов: Квартал Красных Фонарей" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 19, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 1.0818, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40507, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd Season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd Season", + "synonyms": [ + "From Common Job Class to the Strongest in the World 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 131681, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "SnK 4", + "AoT 4", + "L'attaque des titans Saison Finale Partie 2", + "Shingeki no Kyojin: The Final Season (2022)", + "اتک عن تایتان", + "حمله به غول ها", + "حمله به تایتان فصل 4 ", + " ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2", + "ผ่าพิภพไททัน ภาค 4", + "L'Attacco dei Giganti 4 Parte 2", + "Атака титанов: Финал. Часть 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 48736, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo Suru", + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 47159, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 132405, + "mal_id": 48736, + "title": "Sono Bisque Doll wa Koi wo Suru", + "english": "My Dress-Up Darling", + "native": "その着せ替え人形は恋をする", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์", + "その着せ替え人形(ビスク・ドール)は恋をする", + "kisekoi", + "Si Boneka Rias Sedang Jatuh Cinta", + "Projekt: cosplay", + "Любовь с иголочки", + "着せ恋" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48414, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40507, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd Season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd Season", + "synonyms": [ + "From Common Job Class to the Strongest in the World 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 19, + "score": 1.1897, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9578, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 112323, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2", + "ARIFURETA: from commonplace to world's strongest second season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 49721, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "Skilled Teaser Takagi-san 3rd Season", + "Karakai Jouzu no Takagi-san Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 47159, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 1.0063, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 49721, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "Skilled Teaser Takagi-san 3rd Season", + "Karakai Jouzu no Takagi-san Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 6, + "score": 0.9884, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 129190, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [ + "บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน", + "天才王子的赤字国家振兴术", + "Kiat Pemulihan Negara Berutang Ala Pangeran Genius" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.9857, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 135136, + "mal_id": 49114, + "title": "Vanitas no Carte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記 2クール", + "synonyms": [ + "บันทึกแวมไพร์วานิทัส พาร์ท 2", + "Vanitas no Karte (2022)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.966, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40507, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd Season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd Season", + "synonyms": [ + "From Common Job Class to the Strongest in the World 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 129191, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ", + "失格纹的最强贤者" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49930, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記", + "synonyms": [ + "Re:Construction the Elfrieden Kingdom Tales of Realistic Brave", + "A Realist Hero's Kingdom Restoration Chronicle" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 1.0405, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 5, + "score": 0.9419, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 47159, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 139648, + "mal_id": 49930, + "title": "Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2", + "english": "How a Realist Hero Rebuilt the Kingdom Part 2", + "native": "現実主義勇者の王国再建記 第二部", + "synonyms": [ + "ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2", + "Genkoku Part 2", + "Genjitsu Shugi Yuusha no Oukoku Saikenki (2022)" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 47778, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48414, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 44055, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "Sasamiya" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 14, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48997, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Ojisan to", + "english": "Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "Fabiniku", + "Isekai Bishoujo Juniku Ojisan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 13, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 49721, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "Skilled Teaser Takagi-san 3rd Season", + "Karakai Jouzu no Takagi-san Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 4, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 130591, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco", + "บิสโก้ นรชนคนโคตรเห็ด", + "Bisco Si Pemakan Karat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141534, + "mal_id": 50360, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 - Eris no Goblin Toubatsu", + "english": "Mushoku Tensei: Jobless Reincarnation Cour 2 - Eris the Goblin Slayer", + "native": "無職転生 ~異世界行ったら本気だす~ 第2クール エリスのゴブリン討伐", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Cour 2 Special", + "Mushoku Tensei: Jobless Reincarnation Part 2 Special", + "เกิดชาตินี้พี่ต้องเทพ OVA", + "Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 Special" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 50360, + "mal_id": 50360, + "title": "Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu", + "english": "Mushoku Tensei: Jobless Reincarnation - Eris the Goblin Slayer", + "native": "無職転生 ~異世界行ったら本気だす~ エリスのゴブリン討伐", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Special", + "Mushoku Tensei: Isekai Ittara Honki Dasu Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 3, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 44055, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "Sasamiya" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48414, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 126288, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "ซาซากิกับมิยาโนะ", + "Sasaki i Miyano" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 47778, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 118465, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [ + "ฮาเร็มวันสิ้นโลก", + "Гарем конца света", + "Тотальный гарем" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48997, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Ojisan to", + "english": "Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "Fabiniku", + "Isekai Bishoujo Juniku Ojisan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 131548, + "mal_id": 48553, + "title": "Akebi-chan no Sailor Fuku", + "english": "Akebi’s Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [ + "Akebi-chan no Serafuku", + "Akebi's School Uniform", + "ชุดกะลาสีของอาเคบิจัง" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 44055, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "Sasamiya" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 49909, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro Lives By Himself" + ], + "format": "ONA", + "episodes": 10, + "season": null, + "year": null, + "start_date": { + "day": 10, + "month": 3, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 44516, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 139589, + "mal_id": 49909, + "title": "Kotarou wa Hitorigurashi", + "english": "Kotaro Lives Alone", + "native": "コタローは1人暮らし", + "synonyms": [ + "Kotaro vive solo", + "โคทาโร่อยู่คนเดียว", + "Kotaro En Solo", + "Ο Κόταρο Ζει Μόνος του", + "Kotaro Vai Morar Sozinho", + "Kotaro abita da solo" + ], + "format": "ONA", + "episodes": 10, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 44516, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 45560, + "mal_id": 45560, + "title": "Orient", + "english": "Orient", + "native": "オリエント", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 6, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.8704, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 127050, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 44055, + "mal_id": 44055, + "title": "Sasaki to Miyano", + "english": "Sasaki and Miyano", + "native": "佐々木と宮野", + "synonyms": [ + "Sasamiya" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48997, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Ojisan to", + "english": "Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "Fabiniku", + "Isekai Bishoujo Juniku Ojisan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 0.9918, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 48414, + "mal_id": 48414, + "title": "Sabikui Bisco", + "english": "Sabikui Bisco", + "native": "錆喰いビスコ", + "synonyms": [ + "Rust-Eater Bisco" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 134252, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Oji-san to", + "english": "Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ", + "Fabiniku", + "В другом мире с мужчиной, обратившимся красоткой", + "ファ美肉おじさん" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 41946, + "mal_id": 41946, + "title": "Shuumatsu no Harem", + "english": "World's End Harem", + "native": "終末のハーレム", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 7, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 44516, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 130166, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "มหาพิภพลีอาเดล", + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 49721, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "Skilled Teaser Takagi-san 3rd Season", + "Karakai Jouzu no Takagi-san Third Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 1.0574, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 1.0574, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 47159, + "mal_id": 47159, + "title": "Tensai Ouji no Akaji Kokka Saisei Jutsu", + "english": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "native": "天才王子の赤字国家再生術", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 138424, + "mal_id": 49721, + "title": "Karakai Jouzu no Takagi-san 3", + "english": "Teasing Master Takagi-san Season 3", + "native": "からかい上手の高木さん3", + "synonyms": [ + "แกล้งนัก รักนะรู้ยัง ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48997, + "mal_id": 48997, + "title": "Fantasy Bishoujo Juniku Ojisan to", + "english": "Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout", + "native": "異世界美少女受肉おじさんと", + "synonyms": [ + "Fabiniku", + "Isekai Bishoujo Juniku Ojisan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136192, + "mal_id": 49310, + "title": "Fruits Basket: prelude", + "english": "Fruits Basket -prelude-", + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "The Story of Kyoko and Katsuya", + "今日子と勝也の物語", + "Kyouko to Katsuya no Monogatari", + "Fruits Basket Movie", + "Корзинка фруктов: Прелюдия" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49310, + "mal_id": 49310, + "title": "Fruits Basket: Prelude", + "english": null, + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "Kyouko to Katsuya no Monogatari", + "The Story of Kyoko and Katsuya" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 2, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9161, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136192, + "mal_id": 49310, + "title": "Fruits Basket: prelude", + "english": "Fruits Basket -prelude-", + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "The Story of Kyoko and Katsuya", + "今日子と勝也の物語", + "Kyouko to Katsuya no Monogatari", + "Fruits Basket Movie", + "Корзинка фруктов: Прелюдия" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 22, + "score": 0.9106, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 136192, + "mal_id": 49310, + "title": "Fruits Basket: prelude", + "english": "Fruits Basket -prelude-", + "native": "フルーツバスケット -prelude-", + "synonyms": [ + "The Story of Kyoko and Katsuya", + "今日子と勝也の物語", + "Kyouko to Katsuya no Monogatari", + "Fruits Basket Movie", + "Корзинка фруктов: Прелюдия" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 2, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 49738, + "mal_id": 49738, + "title": "Heike Monogatari", + "english": "The Heike Story", + "native": "平家物語", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 42670, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": null, + "native": "プリンセスコネクト! Re:Dive Season 2", + "synonyms": [ + "Princess Connect! Re:Dive 2nd Season", + "Priconne 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 11, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 40507, + "mal_id": 40507, + "title": "Arifureta Shokugyou de Sekai Saikyou 2nd Season", + "english": "Arifureta: From Commonplace to World's Strongest Season 2", + "native": "ありふれた職業で世界最強 2nd Season", + "synonyms": [ + "From Common Job Class to the Strongest in the World 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 1.1154, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 48583, + "mal_id": 48583, + "title": "Shingeki no Kyojin: The Final Season Part 2", + "english": "Attack on Titan: Final Season Part 2", + "native": "進撃の巨人 The Final Season Part 2", + "synonyms": [ + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 10, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 4, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 49114, + "mal_id": 49114, + "title": "Vanitas no Karte Part 2", + "english": "The Case Study of Vanitas Part 2", + "native": "ヴァニタスの手記", + "synonyms": [ + "Vanitas no Shuki 2nd Season", + "Memoir of Vanitas 2nd Season", + "Vanitas no Carte 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 15, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 122808, + "mal_id": 42670, + "title": "Princess Connect! Re:Dive Season 2", + "english": "Princess Connect! Re:Dive Season 2", + "native": "プリンセスコネクト!Re:Dive Season 2", + "synonyms": [ + "Priconne Season 2", + "ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 49738, + "mal_id": 49738, + "title": "Heike Monogatari", + "english": "The Heike Story", + "native": "平家物語", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 128034, + "mal_id": 45560, + "title": "ORIENT", + "english": "ORIENT", + "native": "オリエント", + "synonyms": [ + "2 สิงห์ พลิกตำนานพิฆาตอสูร" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 45560, + "mal_id": 45560, + "title": "Orient", + "english": "Orient", + "native": "オリエント", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 6, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 128034, + "mal_id": 45560, + "title": "ORIENT", + "english": "ORIENT", + "native": "オリエント", + "synonyms": [ + "2 สิงห์ พลิกตำนานพิฆาตอสูร" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 44516, + "mal_id": 44516, + "title": "Koroshi Ai", + "english": "Love of Kill", + "native": "殺し愛", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 13, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 42072, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "Kendeshi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 12, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 48553, + "mal_id": 48553, + "title": "Akebi-chan no Sailor-fuku", + "english": "Akebi's Sailor Uniform", + "native": "明日ちゃんのセーラー服", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 9, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 17, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48239, + "mal_id": 48239, + "title": "Leadale no Daichi nite", + "english": "In the Land of Leadale", + "native": "リアデイルの大地にて", + "synonyms": [ + "World of Leadale" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 119056, + "mal_id": 42072, + "title": "Kenja no Deshi wo Nanoru Kenja", + "english": "She Professed Herself Pupil of the Wise Man", + "native": "賢者の弟子を名乗る賢者", + "synonyms": [ + "KenDeshi", + "ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ", + "自称贤者弟子的贤者", + "Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 47778, + "mal_id": 47778, + "title": "Kimetsu no Yaiba: Yuukaku-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Entertainment District Arc", + "native": "鬼滅の刃 遊郭編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 5, + "month": 12, + "year": 2021 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 130389, + "mal_id": 48375, + "title": "Mahouka Koukou no Rettousei: Tsuioku-hen", + "english": "The Irregular at Magic High School: Reminiscence Arc", + "native": "魔法科高校の劣等生 追憶編", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาคย้อนความหลัง", + "Непутёвый ученик в школе магии: Воспоминания" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2021, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 136436, + "mal_id": 49893, + "title": "Kobayashi-san Chi no Maidragon S: Nippon no Omotenashi (Attend wa Dragon desu)", + "english": "Miss Kobayashi’s Dragon Maid S: Japanese Hospitality (The Attendant Is a Dragon)", + "native": "小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid S Special", + "Miss Kobayashi's Dragon Maid S Episode 13", + "Kobayashi-san Chi no Maidragon S Episode 13" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 1, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49893, + "mal_id": 49893, + "title": "Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu", + "english": "Miss Kobayashi's Dragon Maid S: Japanese Hospitality (The Attendant is a Dragon)", + "native": "小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです)", + "synonyms": [ + "Miss Kobayashi's Dragon Maid S Special" + ], + "format": "Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 130550, + "mal_id": 48405, + "title": "Totsukuni no Shoujo (2022)", + "english": "The Girl from the Other Side", + "native": "とつくにの少女 (2022)", + "synonyms": [ + "Siúil, a Rún", + "L'Enfant et le Maudit" + ], + "format": "OVA", + "episodes": 1, + "season": "WINTER", + "year": 2022, + "start_date": { + "year": 2022, + "month": 3, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47161, + "mal_id": 47161, + "title": "Shikkakumon no Saikyou Kenja", + "english": "The Strongest Sage with the Weakest Crest", + "native": "失格紋の最強賢者", + "synonyms": [ + "The Strongest Sage of Disqualified Crest", + "Shikkakumon no Saikyokenja" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2022, + "start_date": { + "day": 8, + "month": 1, + "year": 2022 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2023-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2023-fall.json new file mode 100644 index 0000000..0279fd8 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2023-fall.json @@ -0,0 +1,6810 @@ +{ + "year": 2023, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 154116, + "mal_id": 52741, + "title": "Undead Unluck", + "english": "Undead Unluck", + "native": "アンデッドアンラック", + "synonyms": [ + "אל-מת ובלי מזל" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 162694, + "mal_id": 54714, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "100 Kanojo", + "100Kano", + "Hyakkano", + "100 Namoradas Que Te Amam Muuuuuito", + "Les 100 petites amies qui t'aiiiment à en mourir", + "100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu", + "100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 129188, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": "GOBLIN SLAYER II", + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "ก็อบลิน สเลเยอร์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 146493, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": "Ragna Crimson", + "native": "ラグナクリムゾン", + "synonyms": [ + "ตำนานนักล่ามังกร", + "Рагна Багровый" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 158928, + "mal_id": 53888, + "title": "SPY×FAMILY CODE: White", + "english": "SPY x FAMILY CODE: White", + "native": "SPY×FAMILY CODE: White", + "synonyms": [ + "SxF Movie", + "劇場版 スパイファミリー", + "SPY x FAMILY CÓDIGO: Branco" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 99088, + "mal_id": 35737, + "title": "PLUTO", + "english": "PLUTO", + "native": "PLUTO", + "synonyms": [ + "プルートウ", + "ПЛУТОН" + ], + "format": "ONA", + "episodes": 8, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 154459, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、経験ゼロなオレが、お付き合いする話。", + "synonyms": [ + "หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ", + "Kimizero", + "キミゼロ", + "Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos", + "Искушённая ты и незрелый я" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 161474, + "mal_id": 54870, + "title": "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", + "english": "Rascal Does Not Dream of a Knapsack Kid", + "native": "青春ブタ野郎はランドセルガールの夢を見ない", + "synonyms": [ + "Rascal Does Not Dream of a Knapsack Kid", + "Ao Buta", + "青ブタ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 140501, + "mal_id": 50184, + "title": "Seiken Gakuin no Maken Tsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Demon's Sword Master of Excalibur School", + "จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์", + "Lo spadaccino demoniaco all'accademia delle arti sacre" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 54492, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 22, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 47160, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": null, + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "Goblin Slayer 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 52741, + "mal_id": 52741, + "title": "Undead Unluck", + "english": null, + "native": "アンデッドアンラック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 54714, + "mal_id": 54714, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "Hyakkano" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 51297, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": null, + "native": "ラグナクリムゾン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 54918, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers: Tenjiku Arc", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 53439, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 5, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 35737, + "mal_id": 35737, + "title": "Pluto", + "english": "Pluto", + "native": "プルートウ", + "synonyms": [], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 53888, + "mal_id": 53888, + "title": "Spy x Family Movie: Code: White", + "english": "Spy x Family Code: White", + "native": "SPY×FAMILY CODE: White", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 52990, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。", + "synonyms": [ + "Kimizero" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 54362, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 54870, + "mal_id": 54870, + "title": "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", + "english": "Rascal Does Not Dream of a Knapsack Kid", + "native": "青春ブタ野郎はランドセルガールの夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 12, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 54852, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 53879, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 2, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 53833, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "I'm in Love with the Villainess", + "WataOshi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 52934, + "mal_id": 52934, + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "english": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "native": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "synonyms": [ + "Ikenaikyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53439, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 5, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9643, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54492, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 22, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 154587, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey’s End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "장송의 프리렌", + "Frieren - Oltre la Fine del Viaggio", + "คำอธิษฐานในวันที่จากลา Frieren", + "Frieren e a Jornada para o Além", + "Frieren – Nach dem Ende der Reise", + "葬送的芙莉蓮", + "Frieren: Más allá del final del viaje", + "Frieren en el funeral", + "Sōsō no Furīren", + "Frieren. U kresu drogi", + "Frieren - Pháp sư tiễn táng", + "Фрирен, провожающая в последний путь", + "فريرن: ما وراء نهاية الرحلة", + "Frieren: Tras finalizar el viaje" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54492, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 22, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 161645, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "Drugstore Soliloquy", + "Les Carnets de l'Apothicaire", + "Zapiski zielarki", + "Diários de uma Apotecária", + "Il monologo della Speziale", + "Los diarios de la boticaria", + "สืบคดีปริศนา หมอยาตำรับโคมแดง", + "Записки аптекаря", + "Die Tagebücher der Apothekerin", + "يوميات الصيدلانيّة", + "藥師少女的獨語", + "药屋少女的呢喃", + "Монолог фармацевта", + "약사의 혼잣말" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 158927, + "mal_id": 53887, + "title": "SPY×FAMILY Season 2", + "english": "SPY x FAMILY Season 2", + "native": "SPY×FAMILY Season 2", + "synonyms": [ + "SxF 2", + "스파이 패밀리", + "Семья шпиона", + "スパイファミリー 2", + "Spy x Family – Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47160, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": null, + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "Goblin Slayer 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47160, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": null, + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "Goblin Slayer 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 161964, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd season", + "synonyms": [ + "To Be a Power in the Shadows! 2", + "ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2", + "Un giorno sarò l'eminenza grigia 2", + "TEIS 2", + "Кардинал теней 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54714, + "mal_id": 54714, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "Hyakkano" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151970, + "mal_id": 52347, + "title": "Shangri-La Frontier", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア", + "synonyms": [ + "ShanFro", + "シャンフロ", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜", + "Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su", + "SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~", + "Рубеж Шангри-Ла", + "Thợ săn Game rác thách thức Game cấp Thánh" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 1.0154, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9946, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 0.9538, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162314, + "mal_id": null, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 2", + "native": "進撃の巨人 The Final Season完結編 後編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Attack on Titan Final Season Part 3 Final Arc Part 2", + "Attack on Titan: The Final Season Part 4", + "Shingeki no Kyojin: The Final Season Part 4", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 11, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 1.0231, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 11, + "score": 1.0152, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 54918, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers: Tenjiku Arc", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 111322, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "ผู้กล้าโล่ผงาด ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 162670, + "mal_id": 55644, + "title": "Dr. STONE: NEW WORLD Part 2", + "english": "Dr. STONE New World Part 2", + "native": "Dr.STONE NEW WORLD 第2クール", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3 Part 2", + "DR.STONE ภาค 3", + "Dr.STONE 第3期 第2クール" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54492, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 22, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 154116, + "mal_id": 52741, + "title": "Undead Unluck", + "english": "Undead Unluck", + "native": "アンデッドアンラック", + "synonyms": [ + "אל-מת ובלי מזל" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 52741, + "mal_id": 52741, + "title": "Undead Unluck", + "english": null, + "native": "アンデッドアンラック", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 154116, + "mal_id": 52741, + "title": "Undead Unluck", + "english": "Undead Unluck", + "native": "アンデッドアンラック", + "synonyms": [ + "אל-מת ובלי מזל" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 23, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 154116, + "mal_id": 52741, + "title": "Undead Unluck", + "english": "Undead Unluck", + "native": "アンデッドアンラック", + "synonyms": [ + "אל-מת ובלי מזל" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162694, + "mal_id": 54714, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "100 Kanojo", + "100Kano", + "Hyakkano", + "100 Namoradas Que Te Amam Muuuuuito", + "Les 100 petites amies qui t'aiiiment à en mourir", + "100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu", + "100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54714, + "mal_id": 54714, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "Hyakkano" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162694, + "mal_id": 54714, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "100 Kanojo", + "100Kano", + "Hyakkano", + "100 Namoradas Que Te Amam Muuuuuito", + "Les 100 petites amies qui t'aiiiment à en mourir", + "100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu", + "100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162694, + "mal_id": 54714, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "100 Kanojo", + "100Kano", + "Hyakkano", + "100 Namoradas Que Te Amam Muuuuuito", + "Les 100 petites amies qui t'aiiiment à en mourir", + "100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu", + "100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52934, + "mal_id": 52934, + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "english": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "native": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "synonyms": [ + "Ikenaikyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162694, + "mal_id": 54714, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You", + "native": "君のことが大大大大大好きな100人の彼女", + "synonyms": [ + "100 Kanojo", + "100Kano", + "Hyakkano", + "100 Namoradas Que Te Amam Muuuuuito", + "Les 100 petites amies qui t'aiiiment à en mourir", + "100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu", + "100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 129188, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": "GOBLIN SLAYER II", + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "ก็อบลิน สเลเยอร์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47160, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": null, + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "Goblin Slayer 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 129188, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": "GOBLIN SLAYER II", + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "ก็อบลิน สเลเยอร์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 129188, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": "GOBLIN SLAYER II", + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "ก็อบลิน สเลเยอร์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 129188, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": "GOBLIN SLAYER II", + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "ก็อบลิน สเลเยอร์ ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 146493, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": "Ragna Crimson", + "native": "ラグナクリムゾン", + "synonyms": [ + "ตำนานนักล่ามังกร", + "Рагна Багровый" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 51297, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": null, + "native": "ラグナクリムゾン", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 146493, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": "Ragna Crimson", + "native": "ラグナクリムゾン", + "synonyms": [ + "ตำนานนักล่ามังกร", + "Рагна Багровый" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 146493, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": "Ragna Crimson", + "native": "ラグナクリムゾン", + "synonyms": [ + "ตำนานนักล่ามังกร", + "Рагна Багровый" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52347, + "mal_id": 52347, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "english": "Shangri-La Frontier", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 1, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 24, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 146493, + "mal_id": 51297, + "title": "Ragna Crimson", + "english": "Ragna Crimson", + "native": "ラグナクリムゾン", + "synonyms": [ + "ตำนานนักล่ามังกร", + "Рагна Багровый" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52934, + "mal_id": 52934, + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "english": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "native": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "synonyms": [ + "Ikenaikyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 158928, + "mal_id": 53888, + "title": "SPY×FAMILY CODE: White", + "english": "SPY x FAMILY CODE: White", + "native": "SPY×FAMILY CODE: White", + "synonyms": [ + "SxF Movie", + "劇場版 スパイファミリー", + "SPY x FAMILY CÓDIGO: Branco" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53888, + "mal_id": 53888, + "title": "Spy x Family Movie: Code: White", + "english": "Spy x Family Code: White", + "native": "SPY×FAMILY CODE: White", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 22, + "month": 12, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 1.0818, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 158928, + "mal_id": 53888, + "title": "SPY×FAMILY CODE: White", + "english": "SPY x FAMILY CODE: White", + "native": "SPY×FAMILY CODE: White", + "synonyms": [ + "SxF Movie", + "劇場版 スパイファミリー", + "SPY x FAMILY CÓDIGO: Branco" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 12, + "day": 22 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 99088, + "mal_id": 35737, + "title": "PLUTO", + "english": "PLUTO", + "native": "PLUTO", + "synonyms": [ + "プルートウ", + "ПЛУТОН" + ], + "format": "ONA", + "episodes": 8, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 35737, + "mal_id": 35737, + "title": "Pluto", + "english": "Pluto", + "native": "プルートウ", + "synonyms": [], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 26, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53439, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 5, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 18, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 54362, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 156039, + "mal_id": 53439, + "title": "Boushoku no Berserk", + "english": "Berserk of Gluttony", + "native": "暴食のベルセルク", + "synonyms": [ + "จอมตะกละดาบคลั่ง", + "Bousyoku", + "O Berserker da Gula", + "Berserk nan Rakus", + "Ненасытный берсерк" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 54918, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers: Tenjiku Arc", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 6, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 55644, + "mal_id": 55644, + "title": "Dr. Stone: New World Part 2", + "english": "Dr. Stone: New World Part 2", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 12, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 3, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 4, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 7, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163329, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers Season 2 Part 2", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers: Tenjiku Arc", + "Tokyo Revengers Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 47160, + "mal_id": 47160, + "title": "Goblin Slayer II", + "english": null, + "native": "ゴブリンスレイヤーⅡ", + "synonyms": [ + "Goblin Slayer 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 154459, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、経験ゼロなオレが、お付き合いする話。", + "synonyms": [ + "หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ", + "Kimizero", + "キミゼロ", + "Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos", + "Искушённая ты и незрелый я" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 52990, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。", + "synonyms": [ + "Kimizero" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.903, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 154459, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、経験ゼロなオレが、お付き合いする話。", + "synonyms": [ + "หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ", + "Kimizero", + "キミゼロ", + "Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos", + "Искушённая ты и незрелый я" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52934, + "mal_id": 52934, + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "english": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "native": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "synonyms": [ + "Ikenaikyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 154459, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、経験ゼロなオレが、お付き合いする話。", + "synonyms": [ + "หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ", + "Kimizero", + "キミゼロ", + "Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos", + "Искушённая ты и незрелый я" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54852, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 154459, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、経験ゼロなオレが、お付き合いする話。", + "synonyms": [ + "หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ", + "Kimizero", + "キミゼロ", + "Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos", + "Искушённая ты и незрелый я" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 54362, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54492, + "mal_id": 54492, + "title": "Kusuriya no Hitorigoto", + "english": "The Apothecary Diaries", + "native": "薬屋のひとりごと", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 22, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 54918, + "mal_id": 54918, + "title": "Tokyo Revengers: Tenjiku-hen", + "english": "Tokyo Revengers: Tenjiku Arc", + "native": "東京リベンジャーズ 天竺編", + "synonyms": [ + "Tokyo Revengers Third Season" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 160900, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [ + "Os Reinos da Ruína", + "破滅的王國" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 161474, + "mal_id": 54870, + "title": "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", + "english": "Rascal Does Not Dream of a Knapsack Kid", + "native": "青春ブタ野郎はランドセルガールの夢を見ない", + "synonyms": [ + "Rascal Does Not Dream of a Knapsack Kid", + "Ao Buta", + "青ブタ" + ], + "format": "MOVIE", + "episodes": 1, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 12, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 54870, + "mal_id": 54870, + "title": "Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai", + "english": "Rascal Does Not Dream of a Knapsack Kid", + "native": "青春ブタ野郎はランドセルガールの夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 12, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54852, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 53833, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "I'm in Love with the Villainess", + "WataOshi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 3, + "score": 0.9198, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 163142, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 53833, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "I'm in Love with the Villainess", + "WataOshi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54852, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52991, + "mal_id": 52991, + "title": "Sousou no Frieren", + "english": "Frieren: Beyond Journey's End", + "native": "葬送のフリーレン", + "synonyms": [ + "Frieren at the Funeral", + "Frieren The Slayer" + ], + "format": "TV", + "episodes": 28, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 29, + "month": 9, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 158704, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "WataOshi", + "わたおし", + "ทำไงดีเกมนี้นางร้ายน่ารัก", + "Me Enamoré de la Villana", + "Me Apaixonei pela Vilã!", + "Я влюблена в злодейку", + "我的推是壞人大小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 53879, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 2, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140501, + "mal_id": 50184, + "title": "Seiken Gakuin no Maken Tsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Demon's Sword Master of Excalibur School", + "จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์", + "Lo spadaccino demoniaco all'accademia delle arti sacre" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 0.8687, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140501, + "mal_id": 50184, + "title": "Seiken Gakuin no Maken Tsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Demon's Sword Master of Excalibur School", + "จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์", + "Lo spadaccino demoniaco all'accademia delle arti sacre" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54852, + "mal_id": 54852, + "title": "Kikansha no Mahou wa Tokubetsu desu", + "english": "A Returner's Magic Should Be Special", + "native": "帰還者の魔法は特別です", + "synonyms": [ + "Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida", + "귀환자의 마법은 특별해야 합니다" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 8, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 0.8667, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140501, + "mal_id": 50184, + "title": "Seiken Gakuin no Maken Tsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Demon's Sword Master of Excalibur School", + "จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์", + "Lo spadaccino demoniaco all'accademia delle arti sacre" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 53879, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 2, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 53879, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 2, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 50184, + "mal_id": 50184, + "title": "Seiken Gakuin no Makentsukai", + "english": "The Demon Sword Master of Excalibur Academy", + "native": "聖剣学院の魔剣使い", + "synonyms": [ + "Magic Sword Master of Holy Sword School" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 158926, + "mal_id": 53879, + "title": "Kamonohashi Ron no Kindan Suiri", + "english": "Ron Kamonohashi's Forbidden Deductions", + "native": "鴨乃橋ロンの禁断推理", + "synonyms": [ + "Ron Kamonohashi: Deranged Detective", + "El misterio prohibido de Ron Kamonohashi", + "สืบลับฉบับคาโมโนะฮาชิ รอน", + "Meisterdetektiv Ron Kamonohashi", + "鸭乃桥论的禁忌推理" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 53833, + "mal_id": 53833, + "title": "Watashi no Oshi wa Akuyaku Reijou.", + "english": "I'm in Love with the Villainess", + "native": "私の推しは悪役令嬢。", + "synonyms": [ + "I'm in Love with the Villainess", + "WataOshi" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 3, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 54362, + "mal_id": 54362, + "title": "Hametsu no Oukoku", + "english": "The Kingdoms of Ruin", + "native": "はめつのおうこく", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 52990, + "mal_id": 52990, + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "english": "Our Dating Story: The Experienced You and The Inexperienced Me", + "native": "経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。", + "synonyms": [ + "Kimizero" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52934, + "mal_id": 52934, + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "english": "I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness", + "native": "婚約破棄された令嬢を拾った俺が、イケナイことを教え込む", + "synonyms": [ + "Ikenaikyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 159808, + "mal_id": 54103, + "title": "Hikikomari Kyuuketsuki no Monmon", + "english": "The Vexations of a Shut-In Vampire Princess", + "native": "ひきこまり吸血姫の悶々", + "synonyms": [ + "สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊", + " I tormenti della vampira reclusa", + "家裡蹲吸血姬的鬱悶" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 50664, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of the Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "Saihate no Paladin 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 1.1038, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54595, + "mal_id": 54595, + "title": "Kage no Jitsuryokusha ni Naritakute! 2nd Season", + "english": "The Eminence in Shadow Season 2", + "native": "陰の実力者になりたくて! 2nd Season", + "synonyms": [ + "Shadow Garden 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 4, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 1.0902, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 54743, + "mal_id": 54743, + "title": "Dead Mount Death Play Part 2", + "english": null, + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "Dead Mount Death Play 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 10, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 1.0672, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 40357, + "mal_id": 40357, + "title": "Tate no Yuusha no Nariagari Season 3", + "english": "The Rising of the Shield Hero Season 3", + "native": "盾の勇者の成り上がり Season 3", + "synonyms": [ + "Tate no Yuusha no Nariagari 3rd Season", + "The Rising of the Shield Hero 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 6, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 143085, + "mal_id": 50664, + "title": "Saihate no Paladin: Tetsusabi no Yama no Ou", + "english": "The Faraway Paladin: The Lord of Rust Mountains", + "native": "最果てのパラディン 鉄錆の山の王", + "synonyms": [ + "The Faraway Paladin Season 2", + "พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2", + "Saihate no Paladin 2nd Season", + "The Faraway Paladin: O Senhor das Montanhas de Ferrugem", + "世界盡頭的聖騎士 鐵鏽之山的君王", + "The Faraway Paladin : Le Seigneur des Montagnes de Rouille" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "year": 2023, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 53887, + "mal_id": 53887, + "title": "Spy x Family Season 2", + "english": null, + "native": "SPY×FAMILY Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2023, + "start_date": { + "day": 7, + "month": 10, + "year": 2023 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2023-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2023-spring.json new file mode 100644 index 0000000..9f9049a --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2023-spring.json @@ -0,0 +1,7310 @@ +{ + "year": 2023, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 131680, + "mal_id": 48585, + "title": "Black Clover: Mahou Tei no Ken", + "english": "Black Clover: Sword of the Wizard King", + "native": "ブラッククローバー 魔法帝の剣", + "synonyms": [ + "Black Clover Movie", + "Чорна конюшина: Меч короля магів", + "Black Clover: A Espada do Rei Mago", + "Black Clover: La espada del rey mago", + "Черный клевер: Меч короля магов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 6, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 157198, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "屍體如山的死亡遊戲", + "DMDP" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 154967, + "mal_id": 53129, + "title": "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", + "english": "Rascal Does Not Dream of a Sister Venturing Out", + "native": "青春ブタ野郎はおでかけシスターの夢を見ない", + "synonyms": [ + "Ao Buta", + "青ブタ", + "เรื่องฝันปั่นป่วยของผมกับน้องสาวออกนอกบ้าน" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 51019, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 52034, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "[Oshi No Ko]", + "native": "【推しの子】", + "synonyms": [ + "My Star" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 12, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 53393, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Heavenly Delusion", + "native": "天国大魔境", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 53126, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at Lv999" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 52830, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "Iseleve" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 7, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 51958, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KonoSuba: An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 50416, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 4, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 53613, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 50796, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Kimisomu" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 48585, + "mal_id": 48585, + "title": "Black Clover: Mahou Tei no Ken", + "english": "Black Clover: Sword of the Wizard King", + "native": "ブラッククローバー 魔法帝の剣", + "synonyms": [ + "Black Clover: Mahoutei no Ken" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 6, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 52608, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録~自重を知らない神々の使徒~", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 53129, + "mal_id": 53129, + "title": "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", + "english": "Rascal Does Not Dream of a Sister Venturing Out", + "native": "青春ブタ野郎はおでかけシスターの夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 6, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 52308, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended up at the Duke's Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "그녀가 공작저로 가야 했던 사정" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 10, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 51705, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 52657, + "mal_id": 52657, + "title": "Ousama Ranking: Yuuki no Takarabako", + "english": "Ranking of Kings: The Treasure Chest of Courage", + "native": "王様ランキング 勇気の宝箱", + "synonyms": [ + "Ranking of Kings: Treasure Chest of Courage" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 14, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51019, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 23, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145139, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [ + "KnY 3", + "ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ", + "Demon Slayer: Kimetsu no Yaiba - Le village des forgerons", + "Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53393, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Heavenly Delusion", + "native": "天国大魔境", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 51958, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KonoSuba: An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 23, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 128893, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell’s Paradise", + "native": "地獄楽", + "synonyms": [ + "Hell’s Paradise: Jigokuraku", + "สุขาวดีอเวจี", + "Адский рай" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52034, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "[Oshi No Ko]", + "native": "【推しの子】", + "synonyms": [ + "My Star" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 12, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 17, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50416, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 4, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 150672, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "Oshi No Ko", + "native": "【推しの子】", + "synonyms": [ + "Favorite Girl", + "My Idol's Child", + "[Mein*Star]", + "เกิดใหม่เป็นลูกโอชิ", + "Anak Idola", + "【OSHI NO KO】", + "【推しの子】Mother and Children", + "[Oshi no Ko] Mother and Children", + "我推的孩子", + "【최애의 아이】" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50416, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 4, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 52830, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "Iseleve" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 7, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 151801, + "mal_id": 52211, + "title": "MASHLE", + "english": "MASHLE: MAGIC AND MUSCLES", + "native": "マッシュル-MASHLE-", + "synonyms": [ + "MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม", + "MASHLE: MAGIA E MÚSCULOS", + "MASHLE: Магия и мускулы" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53393, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Heavenly Delusion", + "native": "天国大魔境", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 13, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 155783, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Tengoku Daimakyo", + "native": "天国大魔境", + "synonyms": [ + "Heavenly Delusion", + "Tengoku-Daimakyo: Ilusão Celestial", + "ถ้ำปีศาจแดนสวรรค์" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50796, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Kimisomu" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 22, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 131518, + "mal_id": 48549, + "title": "Dr. STONE: NEW WORLD", + "english": "Dr. STONE New World", + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "石纪元第三季", + "Dr.STONE Season 3", + "DR.STONE ภาค 3", + "Dr.STONE 第3期", + "Dr. STONE 新石紀(第三季)", + "Доктор Стоун: Новый Свет" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 53126, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at Lv999" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 20, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 154965, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at LV999!", + "My Lv999 Love for Yamada-kun", + "Minha História de Amor com Yamada-kun Nível 999", + "รักสุดฟินเลเวล 999 กับยามาดะคุง ", + "和山田进行LV.999的恋爱", + "Моя любовь к Ямаде 999 уровня", + "Mon histoire d'amour avec Yamada à Lv999", + "和山田談場 Lv999 的戀愛" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 52308, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended up at the Duke's Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "그녀가 공작저로 가야 했던 사정" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 10, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 22, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 17, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 153152, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "BokuYaba", + "เธอผู้อันตรายต่อใจผม", + "내 마음의 위험한 녀석", + "我內心的糟糕念頭", + "僕ヤバ", + "Peligros en mi corazón", + "Czarne chmury w moim sercu" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 53126, + "mal_id": 53126, + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "english": "My Love Story with Yamada-kun at Lv999", + "native": "山田くんとLv999の恋をする", + "synonyms": [ + "Loving Yamada at Lv999" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 9, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 51958, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KonoSuba: An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 151384, + "mal_id": 52198, + "title": "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", + "english": "Kaguya-sama: Love is War -The First Kiss That Never Ends-", + "native": "かぐや様は告らせたい -ファーストキッスは終わらない-", + "synonyms": [ + "Kaguya-sama: Love is War Movie", + "Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết", + "Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй" + ], + "format": "TV", + "episodes": 4, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 52830, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "Iseleve" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 7, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 16, + "score": 0.9932, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52608, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録~自重を知らない神々の使徒~", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 22, + "score": 0.9219, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153845, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World", + "Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru", + "สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล", + "Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real", + "Iseleve", + "在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运", + "いせれべ", + "Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50416, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 4, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52034, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "[Oshi No Ko]", + "native": "【推しの子】", + "synonyms": [ + "My Star" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 12, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141911, + "mal_id": 50416, + "title": "Skip to Loafer", + "english": "Skip and Loafer", + "native": "スキップとローファー", + "synonyms": [ + "จังหวะวัยรุ่น ว้าวุ่นหัวใจ", + "В лоферах вприпрыжку", + "躍動青春", + "スキロー" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 51958, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KonoSuba: An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 0.9928, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 51705, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 52308, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended up at the Duke's Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "그녀가 공작저로 가야 했던 사정" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 10, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 150075, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KONOSUBA -An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [ + "ขอให้ระเบิดตูมตามในโลกแฟนตาซี!", + "為美好的世界獻上爆焰!", + "Да благословит взрыв сей расчудесный мир!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50796, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Kimisomu" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 0.9912, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 17, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 143653, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Insomniaques", + "ถ้านอนไม่หลับไปนับดาวกันไหม", + "放学后失眠的你", + "Bezsenność po szkole", + "Insomnia Sepulang Sekolah" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 131680, + "mal_id": 48585, + "title": "Black Clover: Mahou Tei no Ken", + "english": "Black Clover: Sword of the Wizard King", + "native": "ブラッククローバー 魔法帝の剣", + "synonyms": [ + "Black Clover Movie", + "Чорна конюшина: Меч короля магів", + "Black Clover: A Espada do Rei Mago", + "Black Clover: La espada del rey mago", + "Черный клевер: Меч короля магов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 6, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 48585, + "mal_id": 48585, + "title": "Black Clover: Mahou Tei no Ken", + "english": "Black Clover: Sword of the Wizard King", + "native": "ブラッククローバー 魔法帝の剣", + "synonyms": [ + "Black Clover: Mahoutei no Ken" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 6, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 17, + "score": 0.88, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 131680, + "mal_id": 48585, + "title": "Black Clover: Mahou Tei no Ken", + "english": "Black Clover: Sword of the Wizard King", + "native": "ブラッククローバー 魔法帝の剣", + "synonyms": [ + "Black Clover Movie", + "Чорна конюшина: Меч короля магів", + "Black Clover: A Espada do Rei Mago", + "Black Clover: La espada del rey mago", + "Черный клевер: Меч короля магов" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 6, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 157198, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "屍體如山的死亡遊戲", + "DMDP" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53613, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 157198, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "屍體如山的死亡遊戲", + "DMDP" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53393, + "mal_id": 53393, + "title": "Tengoku Daimakyou", + "english": "Heavenly Delusion", + "native": "天国大魔境", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.86, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 157198, + "mal_id": 53613, + "title": "Dead Mount Death Play", + "english": "Dead Mount Death Play", + "native": "デッドマウント・デスプレイ", + "synonyms": [ + "屍體如山的死亡遊戲", + "DMDP" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.9634, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 141208, + "mal_id": 50307, + "title": "Tonikaku Kawaii Season 2", + "english": "TONIKAWA: Over The Moon For You Season 2", + "native": "トニカクカワイイ(シーズン2)", + "synonyms": [ + "Fly Me to the Moon 2", + "Tonikaku Cawaii 2", + "Generally Cute 2", + "总之就是非常可爱2", + "จะยังไงภรรยาของผมก็น่ารัก ภาค 2", + "Красавица: Унеси меня на Луну 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 13, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50796, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Kimisomu" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52657, + "mal_id": 52657, + "title": "Ousama Ranking: Yuuki no Takarabako", + "english": "Ranking of Kings: The Treasure Chest of Courage", + "native": "王様ランキング 勇気の宝箱", + "synonyms": [ + "Ranking of Kings: Treasure Chest of Courage" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 14, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.9595, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 148048, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "KamiKatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "What God Does in a World Without Gods", + "KamiKatsu: Atividades Divinas em um Mundo sem Deuses ", + "Kamisama : Opération Divine", + "KamiKatsu", + "KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt", + "โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า", + "KamiKatsu: Как быть богу в мире без богов?", + "無神世界的神明活動" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 52308, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended up at the Duke's Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "그녀가 공작저로 가야 했던 사정" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 10, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 154967, + "mal_id": 53129, + "title": "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", + "english": "Rascal Does Not Dream of a Sister Venturing Out", + "native": "青春ブタ野郎はおでかけシスターの夢を見ない", + "synonyms": [ + "Ao Buta", + "青ブタ", + "เรื่องฝันปั่นป่วยของผมกับน้องสาวออกนอกบ้าน" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 6, + "day": 23 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53129, + "mal_id": 53129, + "title": "Seishun Buta Yarou wa Odekake Sister no Yume wo Minai", + "english": "Rascal Does Not Dream of a Sister Venturing Out", + "native": "青春ブタ野郎はおでかけシスターの夢を見ない", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 23, + "month": 6, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52608, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat's Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録~自重を知らない神々の使徒~", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9658, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 52830, + "mal_id": 52830, + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "english": "I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too", + "native": "異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~", + "synonyms": [ + "Iseleve" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 7, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 153332, + "mal_id": 52608, + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "english": "The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far", + "native": "転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜", + "synonyms": [ + "Chronicles of an Aristocrat Reborn in Another World", + "เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ", + "Crônicas de um Aristocrata em Outro Mundo", + "Noble New World Adventures", + "Die Parallelwelt-Chroniken des Aristokraten" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 52308, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended up at the Duke's Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "그녀가 공작저로 가야 했던 사정" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 10, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51019, + "mal_id": 51019, + "title": "Kimetsu no Yaiba: Katanakaji no Sato-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc", + "native": "鬼滅の刃 刀鍛冶の里編", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.8947, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 52657, + "mal_id": 52657, + "title": "Ousama Ranking: Yuuki no Takarabako", + "english": "Ranking of Kings: The Treasure Chest of Courage", + "native": "王様ランキング 勇気の宝箱", + "synonyms": [ + "Ranking of Kings: Treasure Chest of Courage" + ], + "format": "TV", + "episodes": 10, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 14, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 151847, + "mal_id": 52308, + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "english": "Why Raeliana Ended Up at the Duke’s Mansion", + "native": "彼女が公爵邸に行った理由", + "synonyms": [ + "그녀가 공작저로 가야 했던 사정", + "Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong", + "พระเอกของฉันเป็นท่านดยุค", + "Como Raeliana Foi Parar na Mansão do Duque", + "Comment Raeliana a survécu au manoir Wynknight", + "The Reason Why Raeliana Ended up at the Duke's Mansion", + "Raeliana: Warum sie die Verlobte des Dukes wurde" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 51705, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 51958, + "mal_id": 51958, + "title": "Kono Subarashii Sekai ni Bakuen wo!", + "english": "KonoSuba: An Explosion on This Wonderful World!", + "native": "この素晴らしい世界に爆焔を!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 5, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 148098, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [ + "Uma Vizinha de Outro Mundo", + "鄰人似銀河" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52034, + "mal_id": 52034, + "title": "[Oshi no Ko]", + "english": "[Oshi No Ko]", + "native": "【推しの子】", + "synonyms": [ + "My Star" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 12, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 1.05, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 0.9878, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 17, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 140754, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Summoned to Another World... Again?!", + "Invocado Para Outro Mundo... De Novo?!", + "Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup.", + "IseNido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 1.0373, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 50307, + "mal_id": 50307, + "title": "Tonikaku Kawaii 2nd Season", + "english": "Tonikawa: Over The Moon For You Season 2", + "native": "トニカクカワイイ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 52211, + "mal_id": 52211, + "title": "Mashle", + "english": "Mashle: Magic and Muscles", + "native": "マッシュル-MASHLE-", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 154364, + "mal_id": 52955, + "title": "Mahoutsukai no Yome SEASON 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "Mahoyome 2", + "เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2", + "Невеста чародея 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48549, + "mal_id": 48549, + "title": "Dr. Stone: New World", + "english": null, + "native": "Dr.STONE NEW WORLD", + "synonyms": [ + "Dr. Stone 3rd Season" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 51632, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。", + "synonyms": [ + "In Another World With My Smartphone 2nd Season", + "In a Different World with a Smartphone." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 3, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 1.05, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50220, + "mal_id": 50220, + "title": "Isekai Shoukan wa Nidome desu", + "english": "Summoned to Another World for a Second Time", + "native": "異世界召喚は二度目です", + "synonyms": [ + "Isenido" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.9912, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50796, + "mal_id": 50796, + "title": "Kimi wa Houkago Insomnia", + "english": "Insomniacs After School", + "native": "君は放課後インソムニア", + "synonyms": [ + "Kimisomu" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 11, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 0.9595, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 147571, + "mal_id": 51632, + "title": "Isekai wa Smartphone to Tomo ni. 2", + "english": "In Another World With My Smartphone 2", + "native": "異世界はスマートフォンとともに。2", + "synonyms": [ + "Isesuma 2", + "帶著智慧型手機闖蕩異世界。2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 51693, + "mal_id": 51693, + "title": "Kaminaki Sekai no Kamisama Katsudou", + "english": "Kamikatsu: Working for God in a Godless World", + "native": "神無き世界のカミサマ活動", + "synonyms": [ + "Kamikatsu", + "What God Does in a World Without Gods" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 7, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 52578, + "mal_id": 52578, + "title": "Boku no Kokoro no Yabai Yatsu", + "english": "The Dangers in My Heart", + "native": "僕の心のヤバイやつ", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 2, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 52973, + "mal_id": 52973, + "title": "Megami no Café Terrace", + "english": "The Café Terrace and Its Goddesses", + "native": "女神のカフェテラス", + "synonyms": [ + "Goddess Café Terrace" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 8, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52955, + "mal_id": 52955, + "title": "Mahoutsukai no Yome Season 2", + "english": "The Ancient Magus' Bride Season 2", + "native": "魔法使いの嫁 SEASON2", + "synonyms": [ + "The Ancient Magus Bride 2", + "Mahoutsukai no Yome 2", + "Mahoyome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 6, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 51705, + "mal_id": 51705, + "title": "Otonari ni Ginga", + "english": "A Galaxy Next Door", + "native": "おとなりに銀河", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 9, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 148109, + "mal_id": 51706, + "title": "Yuusha ga Shinda!", + "english": "The Legendary Hero is Dead!", + "native": "勇者が死んだ!", + "synonyms": [ + "勇者死了!", + "เมื่อผู้กล้าลาโลกแล้ว!", + "Герой мёртв!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2023, + "start_date": { + "year": 2023, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 46569, + "mal_id": 46569, + "title": "Jigokuraku", + "english": "Hell's Paradise", + "native": "地獄楽", + "synonyms": [ + "Paradition", + "Heavenhell" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2023, + "start_date": { + "day": 1, + "month": 4, + "year": 2023 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2023-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2023-summer.json new file mode 100644 index 0000000..b23450b --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2023-summer.json @@ -0,0 +1,7100 @@ +{ + "year": 2023, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 131863, + "mal_id": 48633, + "title": "Liar Liar", + "english": "Liar, Liar", + "native": "ライアー・ライアー", + "synonyms": [ + "Ложь на лжи" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 109979, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?", + "Il ragazzo e l’airone", + "Chłopiec i czapla", + "Le Garçon et le Héron", + "Gutten og hegren", + "Pojken och hägern", + "Poika ja haikara", + "El chico y la garza", + "El niño y la garza", + "Der Junge und der Reiher", + "เด็กชายกับนกกระสา", + "그대들은 어떻게 살 것인가 ", + "הילד והאנפה", + "O Menino e a Garça", + "Drengen og hejren" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 136149, + "mal_id": 49303, + "title": "Alice to Therese no Maboroshi Koujou", + "english": "maboroshi", + "native": "アリスとテレスのまぼろし工場", + "synonyms": [ + "Alice and Therese's Illusion Factory", + "Мабороси" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 154966, + "mal_id": 53127, + "title": "Fate/strange Fake: Whispers of Dawn", + "english": "Fate/strange Fake -Whispers of Dawn-", + "native": "Fate/strange Fake -Whispers of Dawn-", + "synonyms": [ + "Судьба/Странная подделка. Шёпот рассвета" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 54112, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Bucket List of The Dead", + "Zombie 100: 100 Things I Want to do Before I Become a Zombie" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 54856, + "mal_id": 54856, + "title": "Horimiya: Piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 1, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 53998, + "mal_id": 53998, + "title": "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "Bleach: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 51552, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage", + "Watakon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 51498, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 3, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 55818, + "mal_id": 55818, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu - Shugo Jutsushi Fitz", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 - Episode 0 \"Guardian Fitz\"", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第0話「守護術師フィッツ」", + "synonyms": [ + "Mushoku Tensei Ⅱ: Isekai Ittara Honki Dasu Episode 0" + ], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 3, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 52505, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 54790, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 48633, + "mal_id": 48633, + "title": "Liar Liar", + "english": null, + "native": "ライアー・ライアー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 49413, + "mal_id": 49413, + "title": "Shiguang Dailiren II", + "english": "Link Click Season 2", + "native": "时光代理人II", + "synonyms": [ + "LINK CLICK Ⅱ", + "时光代理人 第二季", + "Link Click 2nd Season", + "時光代理人 -LINK CLICK- II" + ], + "format": "ONA", + "episodes": 12, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 51764, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP Even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 50613, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin", + "native": "るろうに剣心 -明治剣客浪漫譚-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 53263, + "mal_id": 53263, + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "english": "The Great Cleric", + "native": "聖者無双", + "synonyms": [ + "The Great Cleric: A Salaryman's Path to Surviving Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 36699, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 49894, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Class Room✿For Heroes", + "Hero Classroom" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 1.0067, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 11, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 145064, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "JUJUTSU KAISEN Season 2", + "native": "呪術廻戦 第2期", + "synonyms": [ + "呪術廻戦 懐玉・玉折/渋谷事変 ", + "Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory / Premature Death", + "JJK2", + "咒術迴戰 第二季", + "มหาเวทย์ผนึกมาร ภาค 2 ", + "咒术回战 2", + "2جوجوتسو كايسن ", + "Jujutsu Kaisen: Shibuya Incident" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 1.0316, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 1.0067, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 22, + "score": 0.966, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 53263, + "mal_id": 53263, + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "english": "The Great Cleric", + "native": "聖者無双", + "synonyms": [ + "The Great Cleric: A Salaryman's Path to Surviving Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 7, + "score": 0.9658, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146065, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~", + "synonyms": [ + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season", + "Mushoku Tensei II: Jobless Reincarnation", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54112, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Bucket List of The Dead", + "Zombie 100: 100 Things I Want to do Before I Become a Zombie" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51764, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP Even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 0.9578, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9407, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 159831, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Zombie 100 ~100 Things I Want to do Before I Become a Zombie~", + "Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~", + "100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้", + "Зомби-апокалипсис и 100 предсмертных дел", + "100 Coisas para Fazer Antes de Virar Zumbi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54856, + "mal_id": 54856, + "title": "Horimiya: Piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 1, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163132, + "mal_id": 54856, + "title": "Horimiya: piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [ + "Хоримия: Фрагменты" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 51552, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage", + "Watakon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54856, + "mal_id": 54856, + "title": "Horimiya: Piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 1, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 16, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 147103, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "WataKon", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "Meine ganz besondere Hochzeit" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53998, + "mal_id": 53998, + "title": "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "Bleach: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 12, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 16, + "score": 0.9124, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 159322, + "mal_id": 53998, + "title": "BLEACH: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "BLEACH: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 2", + "BLEACH 千年血戦篇 第2クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 50613, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin", + "native": "るろうに剣心 -明治剣客浪漫譚-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 13, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 54790, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 160188, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukinako ga Megane wo Wasureta", + "สาวลืมแว่นแสนวุ่นละมุนรัก", + "Cô bạn tôi thầm thích lại quên mang kính rồi", + "Sukimega", + "Minha Crush Esqueceu os Óculos", + "La chica que me gusta olvidó sus lentes", + "Любовь, не скрытая очками" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 53263, + "mal_id": 53263, + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "english": "The Great Cleric", + "native": "聖者無双", + "synonyms": [ + "The Great Cleric: A Salaryman's Path to Surviving Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 51498, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 3, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 0, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 1, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 1.0079, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 146953, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [ + "Masamune-kun’s Revenge Season 2", + "Masamune-kun no Revenge 2nd Season", + "การแก้แค้นของมาซามุเนะคุง ภาค 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 18, + "score": 1.0231, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 51552, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage", + "Watakon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 12, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 157397, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [ + "เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง", + "My Dreamy Realist", + "Il giovane sognatore è un realista" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 53263, + "mal_id": 53263, + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "english": "The Great Cleric", + "native": "聖者無双", + "synonyms": [ + "The Great Cleric: A Salaryman's Path to Surviving Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9872, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 11, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 163263, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス 第5シーズン", + "synonyms": [ + "BSD 5" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 20, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51764, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP Even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 24, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49894, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Class Room✿For Heroes", + "Hero Classroom" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 154391, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou Deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [ + "ผมเทพสุดจริงเหรอ?", + "Я что, сильнейший?", + "É Sério Que Eu Sou o Mais Forte?" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 52505, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 1.0152, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 7, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 154745, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします 第3期", + "synonyms": [ + "KanoKari 3", + "สะดุดรักยัยแฟนเช่า ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 54898, + "mal_id": 54898, + "title": "Bungou Stray Dogs 5th Season", + "english": "Bungo Stray Dogs 5", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 12, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54112, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Bucket List of The Dead", + "Zombie 100: 100 Things I Want to do Before I Become a Zombie" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 142598, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai Suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Seven Magic Swords Rule", + "ซ่อนคมเวทเจ็ดดาบมาร", + "Nanatsuma", + "ななつま", + "O Reino das Sete Magilâminas", + "Тирания семи разящих клинков" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.9524, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 153360, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "Переродившись в торговый автомат, я блуждаю по подземелью", + "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō", + "Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra", + "Jihanki", + "自販機" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 52505, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48633, + "mal_id": 48633, + "title": "Liar Liar", + "english": null, + "native": "ライアー・ライアー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54856, + "mal_id": 54856, + "title": "Horimiya: Piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 1, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 152802, + "mal_id": 52505, + "title": "Dark Gathering", + "english": "Dark Gathering", + "native": "ダークギャザリング", + "synonyms": [ + "คู่หูต่างขั้วกับภารกิจกำจัดผี" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53998, + "mal_id": 53998, + "title": "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "Bleach: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 131863, + "mal_id": 48633, + "title": "Liar Liar", + "english": "Liar, Liar", + "native": "ライアー・ライアー", + "synonyms": [ + "Ложь на лжи" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 48633, + "mal_id": 48633, + "title": "Liar Liar", + "english": null, + "native": "ライアー・ライアー", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 5, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 131863, + "mal_id": 48633, + "title": "Liar Liar", + "english": "Liar, Liar", + "native": "ライアー・ライアー", + "synonyms": [ + "Ложь на лжи" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 51552, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage", + "Watakon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 1, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 131863, + "mal_id": 48633, + "title": "Liar Liar", + "english": "Liar, Liar", + "native": "ライアー・ライアー", + "synonyms": [ + "Ложь на лжи" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 51179, + "mal_id": 51179, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2", + "native": "無職転生 II ~異世界行ったら本気だす~", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 10, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 54790, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53998, + "mal_id": 53998, + "title": "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "Bleach: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.8729, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 162983, + "mal_id": 54790, + "title": "Undead Girl Murder Farce", + "english": "Undead Murder Farce", + "native": "アンデッドガール・マーダーファルス", + "synonyms": [ + "Фарс убитой нежити", + "不死少女的谋杀闹剧" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109979, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?", + "Il ragazzo e l’airone", + "Chłopiec i czapla", + "Le Garçon et le Héron", + "Gutten og hegren", + "Pojken och hägern", + "Poika ja haikara", + "El chico y la garza", + "El niño y la garza", + "Der Junge und der Reiher", + "เด็กชายกับนกกระสา", + "그대들은 어떻게 살 것인가 ", + "הילד והאנפה", + "O Menino e a Garça", + "Drengen og hejren" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 36699, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 14, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.8889, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109979, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?", + "Il ragazzo e l’airone", + "Chłopiec i czapla", + "Le Garçon et le Héron", + "Gutten og hegren", + "Pojken och hägern", + "Poika ja haikara", + "El chico y la garza", + "El niño y la garza", + "Der Junge und der Reiher", + "เด็กชายกับนกกระสา", + "그대들은 어떻게 살 것인가 ", + "הילד והאנפה", + "O Menino e a Garça", + "Drengen og hejren" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 22, + "score": 0.8865, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109979, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?", + "Il ragazzo e l’airone", + "Chłopiec i czapla", + "Le Garçon et le Héron", + "Gutten og hegren", + "Pojken och hägern", + "Poika ja haikara", + "El chico y la garza", + "El niño y la garza", + "Der Junge und der Reiher", + "เด็กชายกับนกกระสา", + "그대들은 어떻게 살 것인가 ", + "הילד והאנפה", + "O Menino e a Garça", + "Drengen og hejren" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 53263, + "mal_id": 53263, + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "english": "The Great Cleric", + "native": "聖者無双", + "synonyms": [ + "The Great Cleric: A Salaryman's Path to Surviving Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 109979, + "mal_id": 36699, + "title": "Kimitachi wa Dou Ikiru ka", + "english": "The Boy and the Heron", + "native": "君たちはどう生きるか", + "synonyms": [ + "How Do You Live?", + "Il ragazzo e l’airone", + "Chłopiec i czapla", + "Le Garçon et le Héron", + "Gutten og hegren", + "Pojken och hägern", + "Poika ja haikara", + "El chico y la garza", + "El niño y la garza", + "Der Junge und der Reiher", + "เด็กชายกับนกกระสา", + "그대들은 어떻게 살 것인가 ", + "הילד והאנפה", + "O Menino e a Garça", + "Drengen og hejren" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54112, + "mal_id": 54112, + "title": "Zom 100: Zombie ni Naru made ni Shitai 100 no Koto", + "english": "Zom 100: Bucket List of the Dead", + "native": "ゾン100~ゾンビになるまでにしたい100のこと~", + "synonyms": [ + "Bucket List of The Dead", + "Zombie 100: 100 Things I Want to do Before I Become a Zombie" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 50613, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin", + "native": "るろうに剣心 -明治剣客浪漫譚-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 52619, + "mal_id": 52619, + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "english": "Reborn as a Vending Machine, I Now Wander the Dungeon", + "native": "自動販売機に生まれ変わった俺は迷宮を彷徨う", + "synonyms": [ + "I Was Reborn as a Vending Machine", + "Wandering in the Dungeon", + "I Reincarnated Into a Vending Machine", + "Orejihanki" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 13, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 142877, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin (2023)", + "native": "るろうに剣心 -明治剣客浪漫譚-(2023)", + "synonyms": [ + "Samurai X (2023)", + "Kenshin le vagabond (2023)" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50582, + "mal_id": 50582, + "title": "Nanatsu no Maken ga Shihai suru", + "english": "Reign of the Seven Spellblades", + "native": "七つの魔剣が支配する", + "synonyms": [ + "Nanatsuma" + ], + "format": "TV", + "episodes": 15, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 1.0588, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 54234, + "mal_id": 54234, + "title": "Suki na Ko ga Megane wo Wasureta", + "english": "The Girl I Like Forgot Her Glasses", + "native": "好きな子がめがねを忘れた", + "synonyms": [ + "Sukimega" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 10, + "score": 1.0397, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 155168, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!2nd Season", + "synonyms": [ + "The Devil is a Part-Timer! Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 136149, + "mal_id": 49303, + "title": "Alice to Therese no Maboroshi Koujou", + "english": "maboroshi", + "native": "アリスとテレスのまぼろし工場", + "synonyms": [ + "Alice and Therese's Illusion Factory", + "Мабороси" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 9, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 49894, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Class Room✿For Heroes", + "Hero Classroom" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 9, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51009, + "mal_id": 51009, + "title": "Jujutsu Kaisen 2nd Season", + "english": "Jujutsu Kaisen Season 2", + "native": "呪術廻戦 懐玉・玉折/渋谷事変", + "synonyms": [ + "Jujutsu Kaisen: Kaigyoku Gyokusetsu", + "Jujutsu Kaisen: Shibuya Jihen", + "Jujutsu Kaisen: Hidden Inventory Arc", + "Jujutsu Kaisen: Shibuya Incident Arc", + "Sorcery Fight", + "JJK" + ], + "format": "TV", + "episodes": 23, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 6, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 6, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 51498, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 3, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.8922, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139606, + "mal_id": 49894, + "title": "Eiyuu Kyoushitsu", + "english": "Classroom for Heroes", + "native": "英雄教室", + "synonyms": [ + "Класс героев", + "Sala de Aula dos Heróis" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 53632, + "mal_id": 53632, + "title": "Yumemiru Danshi wa Genjitsushugisha", + "english": "The Dreaming Boy is a Realist", + "native": "夢見る男子は現実主義者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 4, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51764, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP Even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 12, + "score": 0.9507, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9179, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 51498, + "mal_id": 51498, + "title": "Masamune-kun no Revenge R", + "english": "Masamune-kun's Revenge R", + "native": "政宗くんのリベンジR", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 3, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 50613, + "mal_id": 50613, + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan (2023)", + "english": "Rurouni Kenshin", + "native": "るろうに剣心 -明治剣客浪漫譚-", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 7, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 148465, + "mal_id": 51764, + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "english": "My Unique Skill Makes Me OP even at Level 1", + "native": "レベル1だけどユニークスキルで最強です", + "synonyms": [ + "เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร", + "Minha Habilidade Única Me Deixa Invencível no Nível 1", + "Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53200, + "mal_id": 53200, + "title": "Hataraku Maou-sama!! 2nd Season", + "english": "The Devil is a Part-Timer! Season 2 Part 2", + "native": "はたらく魔王さま!!", + "synonyms": [ + "The Devil is a Part-Timer! 3rd Season", + "Hataraku Maou-sama 3" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 13, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 51552, + "mal_id": 51552, + "title": "Watashi no Shiawase na Kekkon", + "english": "My Happy Marriage", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage", + "Watakon" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 5, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 11, + "score": 0.911, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53050, + "mal_id": 53050, + "title": "Kanojo, Okarishimasu 3rd Season", + "english": "Rent-a-Girlfriend Season 3", + "native": "彼女、お借りします", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 53998, + "mal_id": 53998, + "title": "Bleach: Sennen Kessen-hen - Ketsubetsu-tan", + "english": "Bleach: Thousand-Year Blood War - The Separation", + "native": "BLEACH 千年血戦篇-訣別譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 8, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 0.8944, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52969, + "mal_id": 52969, + "title": "Jitsu wa Ore, Saikyou deshita?", + "english": "Am I Actually the Strongest?", + "native": "実は俺、最強でした?", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 2, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 155730, + "mal_id": 53379, + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "english": "My Tiny Senpai", + "native": "うちの会社の小さい先輩の話", + "synonyms": [ + "Story of a Small Senior in My Company", + "My Company's Small Senpai", + "My Tiny Senpai From Work", + "A Veterana Pitica da Firma", + "รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก", + "МОЯ НЕВЫСОКАЯ КОЛЛЕГА" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 54856, + "mal_id": 54856, + "title": "Horimiya: Piece", + "english": "Horimiya: The Missing Pieces", + "native": "ホリミヤ -piece-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2023, + "start_date": { + "day": 1, + "month": 7, + "year": 2023 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2023-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2023-winter.json new file mode 100644 index 0000000..3e99a3b --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2023-winter.json @@ -0,0 +1,7093 @@ +{ + "year": 2023, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 155907, + "mal_id": 53411, + "title": "Buddy Daddies", + "english": "Buddy Daddies", + "native": "Buddy Daddies", + "synonyms": [ + "バディダディ", + "Напарники-папаши" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 145665, + "mal_id": 51105, + "title": "NieR:Automata Ver1.1a", + "english": "NieR:Automata Ver1.1a", + "native": "NieR:Automata Ver1.1a", + "synonyms": [ + "ニーア オートマタ", + "NieR Automata Ver1.1a" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 137909, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently, Disillusioned Adventurers Will Save the World", + "Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 146323, + "mal_id": 51252, + "title": "Spy Kyoushitsu", + "english": "Spy Classroom", + "native": "スパイ教室", + "synonyms": [ + "Spy Room", + "ห้องเรียนจารชน" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 51535, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen", + "english": "Attack on Titan: Final Season - The Final Chapters", + "native": "進撃の巨人 The Final Season完結編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Part 3", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 3, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 52305, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 50739, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 50608, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers: Christmas Showdown", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 50330, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 53411, + "mal_id": 53411, + "title": "Buddy Daddies", + "english": null, + "native": "Buddy Daddies", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 51105, + "mal_id": 51105, + "title": "NieR:Automata Ver1.1a", + "english": "NieR:Automata Ver1.1a", + "native": "NieR:Automata Ver1.1a", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 51462, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 52173, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 52093, + "mal_id": 52093, + "title": "Trigun Stampede", + "english": "Trigun Stampede", + "native": "TRIGUN STAMPEDE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 52736, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "Tenten Kakumei", + "MagiRevo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 49612, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently", + "Disillusioned Adventurers Will Save the World" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 52446, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin' in My 30s after Getting Fired from the Demon King's Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 10, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 136430, + "mal_id": 49387, + "title": "VINLAND SAGA SEASON 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [ + "Сага о Винланде 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51535, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen", + "english": "Attack on Titan: Final Season - The Final Chapters", + "native": "進撃の巨人 The Final Season完結編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Part 3", + "Shingeki no Kyojin Season 4", + "Attack on Titan Season 4" + ], + "format": "TV Special", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 4, + "month": 3, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 24, + "score": 0.9946, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 0.9405, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.9294, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 0.9085, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 146984, + "mal_id": 51535, + "title": "Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen", + "english": "Attack on Titan Final Season THE FINAL CHAPTERS Special 1", + "native": "進撃の巨人 The Final Season完結編 前編", + "synonyms": [ + "Shingeki no Kyojin: The Final Season Final Edition", + "Shingeki no Kyojin: The Final Season Part 3", + "ผ่าพิภพไททัน ภาค 4", + "ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3", + "Attack on Titan Final Season Part 3 Final Arc Part 1", + "Attack on Titan The Final Season The Final Part Special", + "Attack on Titan The Final Season The Final Part Part 1", + "حمله به تایتان فصل آخر قسمت ویژه 1 ", + "SnK 4", + "AoT 4" + ], + "format": "SPECIAL", + "episodes": 1, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 3, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 52305, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 16, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 19, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 151806, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [ + "Tomo-chan wa Onna no ko!", + "小智是女孩啦!", + "Томо — девушка!" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 50739, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 16, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 0.8947, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 143338, + "mal_id": 50739, + "title": "Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken", + "english": "The Angel Next Door Spoils Me Rotten", + "native": "お隣の天使様にいつの間にか駄目人間にされていた件", + "synonyms": [ + "ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว", + "Meu Anjo de Vizinha Me Mima Demais", + "Chouchouté par l’ange d’à côté", + "Ангел по соседству меня балует", + "關於我在無意間被隔壁的天使變成廢柴這件事", + "Aku Dimanjakan Tetanggaku yang Seperti Malaikat" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 50608, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers: Christmas Showdown", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 24, + "score": 1.1222, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 10, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9889, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 142853, + "mal_id": 50608, + "title": "Tokyo Revengers: Seiya Kessen-hen", + "english": "Tokyo Revengers Season 2", + "native": "東京リベンジャーズ 聖夜決戦編", + "synonyms": [ + "Tokyo Revengers: Christmas Showdown", + "Os Vingadores de Tóquio" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 23, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 0.9225, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 130588, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II", + "english": "The Misfit of Demon King Academy Ⅱ: History's Strongest Demon King Reincarnates and Goes to School with His Descendants", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ", + "synonyms": [ + "The Misfit of Demon King Academy II", + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 155907, + "mal_id": 53411, + "title": "Buddy Daddies", + "english": "Buddy Daddies", + "native": "Buddy Daddies", + "synonyms": [ + "バディダディ", + "Напарники-папаши" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53411, + "mal_id": 53411, + "title": "Buddy Daddies", + "english": null, + "native": "Buddy Daddies", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 155907, + "mal_id": 53411, + "title": "Buddy Daddies", + "english": "Buddy Daddies", + "native": "Buddy Daddies", + "synonyms": [ + "バディダディ", + "Напарники-папаши" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50330, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 145665, + "mal_id": 51105, + "title": "NieR:Automata Ver1.1a", + "english": "NieR:Automata Ver1.1a", + "native": "NieR:Automata Ver1.1a", + "synonyms": [ + "ニーア オートマタ", + "NieR Automata Ver1.1a" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 51105, + "mal_id": 51105, + "title": "NieR:Automata Ver1.1a", + "english": "NieR:Automata Ver1.1a", + "native": "NieR:Automata Ver1.1a", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 145665, + "mal_id": 51105, + "title": "NieR:Automata Ver1.1a", + "english": "NieR:Automata Ver1.1a", + "native": "NieR:Automata Ver1.1a", + "synonyms": [ + "ニーア オートマタ", + "NieR Automata Ver1.1a" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 1.0301, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51462, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.9884, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 20, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9691, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 156067, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with my Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Gourmet Adventure of Legendary Tamer", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก", + "Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd", + "Hero Skill - Achats en ligne", + "擁有超常技能的異世界流浪美食家", + "Кулинар со странными навыками в параллельном мире" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49612, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently", + "Disillusioned Adventurers Will Save the World" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50330, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 1.0882, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 24, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 16, + "score": 0.9839, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 141249, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス 第4シーズン", + "synonyms": [ + "BSD 4", + "BungouSD 4", + "คณะประพันธกรจรจัด ภาค 4", + "文豪野犬第四季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51462, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 19, + "score": 1.1557, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 1.0393, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 1.0301, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 146850, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [ + " ISEKAI FARMING - Vita contadina in un altro mondo", + "異世界悠閒農家" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 0.9717, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9337, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 140596, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "DON'T TOY WITH ME, MISS NAGATORO 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy With Me, Miss Nagatoro Season 2", + "ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2", + "Не издевайся надо мной, Нагаторо! 2 раунд" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49612, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently", + "Disillusioned Adventurers Will Save the World" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 0.9158, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 155211, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇", + "synonyms": [ + "มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2", + "Danmachi IV Part 2", + "ダンまちⅣ" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 1.0373, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 11, + "score": 1.0169, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51462, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 8, + "score": 0.9789, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 20, + "score": 0.9267, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 144553, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 52173, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9857, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 0.9554, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 52446, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin' in My 30s after Getting Fired from the Demon King's Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.9096, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 151252, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [ + "บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล", + "Pria Es dan Rekan Wanitanya yang Keren" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 52305, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 20, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 148969, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo Tidak Akan Membiarkanku Tak Terlihat", + "คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52093, + "mal_id": 52093, + "title": "Trigun Stampede", + "english": "Trigun Stampede", + "native": "TRIGUN STAMPEDE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 6, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 50330, + "mal_id": 50330, + "title": "Bungou Stray Dogs 4th Season", + "english": "Bungo Stray Dogs 4", + "native": "文豪ストレイドッグス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 52736, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "Tenten Kakumei", + "MagiRevo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 151040, + "mal_id": 52093, + "title": "TRIGUN STAMPEDE", + "english": "TRIGUN STAMPEDE", + "native": "TRIGUN STAMPEDE", + "synonyms": [ + "トライガン スタンピード" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 52736, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "Tenten Kakumei", + "MagiRevo" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 5, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 0.938, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9222, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153629, + "mal_id": 52736, + "title": "Tensei Oujo to Tensai Reijou no Mahou Kakumei", + "english": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "native": "転生王女と天才令嬢の魔法革命", + "synonyms": [ + "MagiRevo", + "転天", + "TenTen", + "轉生公主與天才千金的魔法革命", + "Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius", + "การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ", + "TenTen Kakumei", + "Магическая революция перерождённой принцессы и гениальной дочери благородного дома" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53111, + "mal_id": 53111, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇", + "synonyms": [ + "DanMachi 4th Season Part 2", + "Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2" + ], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 5, + "score": 0.9463, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 24, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 116867, + "mal_id": 41514, + "title": "Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2", + "Bofuri 2", + "Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2", + "Бофури. Я боюсь боли, так что качаю только защиту 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49612, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently", + "Disillusioned Adventurers Will Save the World" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 13, + "score": 0.9533, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 8, + "score": 0.9474, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.9337, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 148116, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 52173, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 51678, + "mal_id": 51678, + "title": "Oniichan wa Oshimai!", + "english": "Onimai: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onimai", + "Onii-chan is Done For" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 52305, + "mal_id": 52305, + "title": "Tomo-chan wa Onnanoko!", + "english": "Tomo-chan Is a Girl!", + "native": "トモちゃんは女の子!", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 5, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 51815, + "mal_id": 51815, + "title": "Kubo-san wa Mob wo Yurusanai", + "english": "Kubo Won't Let Me Be Invisible", + "native": "久保さんは僕を許さない", + "synonyms": [ + "Kubo-san wa Boku wo Yurusanai", + "Kubo-san Doesn't Leave Me Be (a Mob)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 147864, + "mal_id": 51678, + "title": "Onii-chan wa Oshimai!", + "english": "ONIMAI: I'm Now Your Sister!", + "native": "お兄ちゃんはおしまい!", + "synonyms": [ + "Onii-chan is Done For!", + "ONIMAI: Sekarang Aku Kakak Perempuanmu!", + "อวสานพี่ชาย กลายเป็นพี่สาว", + "不當哥哥了!", + "Я стал сестрой!", + "ONIMAI: Ab sofort Schwester!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 11, + "score": 1.1885, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51462, + "mal_id": 51462, + "title": "Isekai Nonbiri Nouka", + "english": "Farming Life in Another World", + "native": "異世界のんびり農家", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 13, + "score": 1.087, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50197, + "mal_id": 50197, + "title": "Ijiranaide, Nagatoro-san 2nd Attack", + "english": "Don't Toy with Me, Miss Nagatoro 2nd Attack", + "native": "イジらないで、長瀞さん 2nd Attack", + "synonyms": [ + "Don't Toy with Me", + "Miss Nagatoro 2nd Season", + "Ijiranaide", + "Nagatoro-san 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9419, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 144092, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 53446, + "mal_id": 53446, + "title": "Tondemo Skill de Isekai Hourou Meshi", + "english": "Campfire Cooking in Another World with My Absurd Skill", + "native": "とんでもスキルで異世界放浪メシ", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 137909, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently, Disillusioned Adventurers Will Save the World", + "Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49612, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don't Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently", + "Disillusioned Adventurers Will Save the World" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 0.9253, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 137909, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently, Disillusioned Adventurers Will Save the World", + "Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 51711, + "mal_id": 51711, + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "english": "The Iceblade Sorcerer Shall Rule the World", + "native": "冰剣の魔術師が世界を統べる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 6, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.9133, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 137909, + "mal_id": 49612, + "title": "Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu", + "english": "Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World", + "native": "人間不信の冒険者たちが世界を救うようです", + "synonyms": [ + "Apparently, Disillusioned Adventurers Will Save the World", + "Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 146323, + "mal_id": 51252, + "title": "Spy Kyoushitsu", + "english": "Spy Classroom", + "native": "スパイ教室", + "synonyms": [ + "Spy Room", + "ห้องเรียนจารชน" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 44204, + "mal_id": 44204, + "title": "Kyokou Suiri Season 2", + "english": "In/Spectre 2", + "native": "虚構推理 Season2", + "synonyms": [ + "In/Spectre 2nd Season", + "Kyokou Suiri 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 9, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 146323, + "mal_id": 51252, + "title": "Spy Kyoushitsu", + "english": "Spy Classroom", + "native": "スパイ教室", + "synonyms": [ + "Spy Room", + "ห้องเรียนจารชน" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 49387, + "mal_id": 49387, + "title": "Vinland Saga Season 2", + "english": "Vinland Saga Season 2", + "native": "ヴィンランド・サガ SEASON2", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 10, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.8673, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 146323, + "mal_id": 51252, + "title": "Spy Kyoushitsu", + "english": "Spy Classroom", + "native": "スパイ教室", + "synonyms": [ + "Spy Room", + "ห้องเรียนจารชน" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 50932, + "mal_id": 50932, + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "english": "The Reincarnation of the Strongest Exorcist in Another World", + "native": "最強陰陽師の異世界転生記", + "synonyms": [ + "The Reincarnation of the Strongest Onmyouji in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 52446, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin' in My 30s after Getting Fired from the Demon King's Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 7, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 15, + "score": 0.9158, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 52173, + "mal_id": 52173, + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "english": "The Ice Guy and His Cool Female Colleague", + "native": "氷属性男子とクールな同僚女子", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 4, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 48417, + "mal_id": 48417, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou", + "english": "The Misfit of Demon King Academy Ⅱ", + "native": "魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~", + "synonyms": [ + "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso", + "Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.8864, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 50854, + "mal_id": 50854, + "title": "Benriya Saitou-san, Isekai ni Iku", + "english": "Handyman Saitou in Another World", + "native": "便利屋斎藤さん、異世界に行く", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 8, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.8614, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 152523, + "mal_id": 52446, + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "english": "Chillin’ in My 30s after Getting Fired from the Demon King’s Army", + "native": "解雇された暗黒兵士(30代)のスローなセカンドライフ", + "synonyms": [ + "被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "year": 2023, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 41514, + "mal_id": 41514, + "title": "Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2", + "english": "BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense. Season 2", + "native": "痛いのは嫌なので防御力に極振りしたいと思います。2", + "synonyms": [ + "BOFURI: I Don't Want to Get Hurt", + "so I'll Max Out My Defense 2nd Season", + "I hate being in pain", + "so I think I'll make a full defense build 2", + "I Hate Getting Hurt", + "So I Put All My Skill Points Into Defense 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2023, + "start_date": { + "day": 11, + "month": 1, + "year": 2023 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2024-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2024-fall.json new file mode 100644 index 0000000..88362e5 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2024-fall.json @@ -0,0 +1,6784 @@ +{ + "year": 2024, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 170942, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [ + "الصندوق الأزرق", + "青之箱", + "푸른 상자", + "La caja azul", + "กล่องรักวัยใส", + "Niebieskie pudełko" + ], + "format": "ONA", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 170732, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", + "synonyms": [ + "DanMachi V", + "Familia Myth V", + "ダンまちⅤ", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc" + ], + "format": "ONA", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 173693, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 182469, + "mal_id": 60022, + "title": "ONE PIECE FAN LETTER", + "english": "ONE PIECE FAN LETTER", + "native": "ONE PIECE FAN LETTER", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 177104, + "mal_id": 58714, + "title": "Saikyou no Shien-shoku [Wajutsushi] Dearu Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [ + "Wajutsushi" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 57181, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 56784, + "mal_id": 56784, + "title": "Bleach: Sennen Kessen-hen - Soukoku-tan", + "english": "Bleach: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 3" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 52215, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。―地球の運動について―", + "synonyms": [ + "About the Movement of the Earth" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 40333, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki: Spiral Into Horror", + "native": "うずまき", + "synonyms": [ + "The Spiral" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 28, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 60022, + "mal_id": 60022, + "title": "One Piece Fan Letter", + "english": null, + "native": "ONE PIECE FAN LETTER", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 56964, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 58714, + "mal_id": 58714, + "title": "Saikyou no Shienshoku \"Wajutsushi\" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 57611, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant.", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 56894, + "mal_id": 56894, + "title": "Dragon Ball Daima", + "english": "Dragon Ball Daima", + "native": "ドラゴンボール ダイマ", + "synonyms": [], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 11, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 55887, + "mal_id": 55887, + "title": "Kekkon suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか 365 Days To The Wedding", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 55994, + "mal_id": 55994, + "title": "Sword Art Online Alternative: Gun Gale Online II", + "english": "Sword Art Online Alternative: Gun Gale Online II", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ", + "synonyms": [ + "SAO Alternative Gun Gale Online II" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 20, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56894, + "mal_id": 56894, + "title": "Dragon Ball Daima", + "english": "Dragon Ball Daima", + "native": "ドラゴンボール ダイマ", + "synonyms": [], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 11, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 8, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 6, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 171018, + "mal_id": 57334, + "title": "Dandadan", + "english": "DAN DA DAN", + "native": "ダンダダン", + "synonyms": [ + "ดันดาดัน", + "膽大黨", + "DAN DA DAN: FIRST ENCOUNTER", + "Дандадан" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 15, + "score": 1.1486, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 1.0794, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 163134, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re:ZERO – Жизнь с нуля в альтернативном мире 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 170942, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [ + "الصندوق الأزرق", + "青之箱", + "푸른 상자", + "La caja azul", + "กล่องรักวัยใส", + "Niebieskie pudełko" + ], + "format": "ONA", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57181, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 170942, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [ + "الصندوق الأزرق", + "青之箱", + "푸른 상자", + "La caja azul", + "กล่องรักวัยใส", + "Niebieskie pudełko" + ], + "format": "ONA", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 10, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 1, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163146, + "mal_id": 54865, + "title": "Blue Lock VS. U-20 JAPAN", + "english": "BLUE LOCK Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "ブルーロック第2期", + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52215, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。―地球の運動について―", + "synonyms": [ + "About the Movement of the Earth" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 18, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.927, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 151514, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。-地球の運動について-", + "synonyms": [ + "Chi: About the Movement of the Earth", + "สุริยะปราชญ์ ทฤษฎีสีเลือด", + "O ruchach Ziemi", + "Du mouvement de la Terre", + "Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra", + "Ketzer - Tödliches Wissen über die Bewegung der Erde", + "על תנועת כדור הארץ", + "Il movimento della Terra", + "Про рух Землі" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 56784, + "mal_id": 56784, + "title": "Bleach: Sennen Kessen-hen - Soukoku-tan", + "english": "Bleach: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "Bleach: Thousand-Year Blood War Arc Part 3" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57181, + "mal_id": 57181, + "title": "Ao no Hako", + "english": "Blue Box", + "native": "アオのハコ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 19, + "score": 0.8789, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 169755, + "mal_id": 56784, + "title": "BLEACH: Sennen Kessen-hen - Soukoku-tan", + "english": "BLEACH: Thousand-Year Blood War - The Conflict", + "native": "BLEACH 千年血戦篇-相剋譚-", + "synonyms": [ + "BLEACH: Thousand Year Blood War Part 3", + "BLEACH 千年血戦篇 第3クール", + "BLEACH TYBW" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 22, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 1, + "score": 1.1957, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 176508, + "mal_id": 58572, + "title": "Shangri-La Frontier 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア 2nd season", + "synonyms": [ + "シャンフロ2", + "シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season", + "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "Рубеж Шангри-Ла 2", + "Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 40333, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki: Spiral Into Horror", + "native": "うずまき", + "synonyms": [ + "The Spiral" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 28, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 55994, + "mal_id": 55994, + "title": "Sword Art Online Alternative: Gun Gale Online II", + "english": "Sword Art Online Alternative: Gun Gale Online II", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ", + "synonyms": [ + "SAO Alternative Gun Gale Online II" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 111314, + "mal_id": 40333, + "title": "Uzumaki", + "english": "Uzumaki", + "native": "うずまき", + "synonyms": [ + "The Spiral", + " ก้นหอยมรณะ", + "أوزوماكي", + "Uzumaki. Spirala", + "UZUMAKI: Animated TV Series" + ], + "format": "TV", + "episodes": 4, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 170732, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", + "synonyms": [ + "DanMachi V", + "Familia Myth V", + "ダンまちⅤ", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc" + ], + "format": "ONA", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 170732, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", + "synonyms": [ + "DanMachi V", + "Familia Myth V", + "ダンまちⅤ", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc" + ], + "format": "ONA", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 170732, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong To Try To Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇", + "synonyms": [ + "DanMachi V", + "Familia Myth V", + "ダンまちⅤ", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5", + "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc", + "Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc" + ], + "format": "ONA", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 1.3696, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 1.3, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 1.0517, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 154473, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou 3rd season", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 3rd season", + "synonyms": [ + "อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 22, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 1.0429, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 58572, + "mal_id": 58572, + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season", + "english": "Shangri-La Frontier Season 2", + "native": "シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season", + "synonyms": [ + "Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game", + "Shanfro" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 1, + "score": 0.9494, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 141182, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [ + "ตำนานวิญญาณแฟนซี ภาค 2", + "精灵幻想记吧2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 0.9815, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57611, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant.", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 175019, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai Shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい ", + "synonyms": [ + "Arwah Berduka yang Ingin Pensiun" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 56964, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 10, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 178533, + "mal_id": 59145, + "title": "Ranma 1/2 (2024)", + "english": "Ranma1/2 (2024)", + "native": "らんま1/2 (2024)", + "synonyms": [ + "Ranma 1/2 (New Anime)", + "Ranma 1/2 (Shinsaku Anime)", + "らんま1/2 (新作アニメ)", + "乱马 1/2", + "란마1/2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 173693, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 1.1164, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 173693, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56894, + "mal_id": 56894, + "title": "Dragon Ball Daima", + "english": "Dragon Ball Daima", + "native": "ドラゴンボール ダイマ", + "synonyms": [], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 11, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 23, + "score": 0.9255, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 55887, + "mal_id": 55887, + "title": "Kekkon suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか 365 Days To The Wedding", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 11, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 170083, + "mal_id": 56894, + "title": "Dragon Ball DAIMA", + "english": "Dragon Ball DAIMA", + "native": "ドラゴンボールDAIMA", + "synonyms": [ + "ドラゴンボール ダイマ", + "Драконий жемчуг Дайма" + ], + "format": "TV", + "episodes": 20, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 56964, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 24, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 55994, + "mal_id": 55994, + "title": "Sword Art Online Alternative: Gun Gale Online II", + "english": "Sword Art Online Alternative: Gun Gale Online II", + "native": "ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ", + "synonyms": [ + "SAO Alternative Gun Gale Online II" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 55887, + "mal_id": 55887, + "title": "Kekkon suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか 365 Days To The Wedding", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 21, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 170468, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [ + "Yakuza Fiancé: Raise wa Tanin ga Ii", + "รักอันตรายของเจ้าสาวยากูซ่า" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 163135, + "mal_id": 54853, + "title": "Maou 2099", + "english": "DEMON LORD 2099", + "native": "魔王2099", + "synonyms": [ + "魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099", + "Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 57334, + "mal_id": 57334, + "title": "Dandadan", + "english": "Dan Da Dan", + "native": "ダンダダン", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57611, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant.", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 2, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 54865, + "mal_id": 54865, + "title": "Blue Lock vs. U-20 Japan", + "english": "Blue Lock Season 2", + "native": "ブルーロック VS. U-20 JAPAN", + "synonyms": [ + "Blue Lock 2nd Season" + ], + "format": "TV", + "episodes": 14, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 12, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 14, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 172190, + "mal_id": 57611, + "title": "Kimi wa Meido-sama.", + "english": "You are Ms. Servant", + "native": "君は冥土様。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 56964, + "mal_id": 56964, + "title": "Raise wa Tanin ga Ii", + "english": "Yakuza Fiancé: Raise wa Tanin ga Ii", + "native": "来世は他人がいい", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182469, + "mal_id": 60022, + "title": "ONE PIECE FAN LETTER", + "english": "ONE PIECE FAN LETTER", + "native": "ONE PIECE FAN LETTER", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 60022, + "mal_id": 60022, + "title": "One Piece Fan Letter", + "english": null, + "native": "ONE PIECE FAN LETTER", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9106, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182469, + "mal_id": 60022, + "title": "ONE PIECE FAN LETTER", + "english": "ONE PIECE FAN LETTER", + "native": "ONE PIECE FAN LETTER", + "synonyms": [], + "format": "SPECIAL", + "episodes": 1, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 177104, + "mal_id": 58714, + "title": "Saikyou no Shien-shoku [Wajutsushi] Dearu Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [ + "Wajutsushi" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 58714, + "mal_id": 58714, + "title": "Saikyou no Shienshoku \"Wajutsushi\" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9161, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 177104, + "mal_id": 58714, + "title": "Saikyou no Shien-shoku [Wajutsushi] Dearu Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [ + "Wajutsushi" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.922, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 8, + "score": 0.9107, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168139, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naruzo", + "english": "I’ll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "I'll Become a Villainess That Will Go Down in History", + "I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince Will Dote on Me", + "Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!", + "歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです!" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9912, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52215, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。―地球の運動について―", + "synonyms": [ + "About the Movement of the Earth" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 0.9646, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 57891, + "mal_id": 57891, + "title": "Hitoribocchi no Isekai Kouryaku", + "english": "Loner Life in Another World", + "native": "ひとりぼっちの異世界攻略", + "synonyms": [ + "Lonely Attack on the Different World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 4, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 164172, + "mal_id": 55071, + "title": "Amagami-san Chi no Enmusubi", + "english": "Tying the Knot with an Amagami Sister", + "native": "甘神さんちの縁結び", + "synonyms": [ + "Matchmaking of the Amagami Household", + "ด้ายแดงผูกรักบ้านอามากามิ", + "結緣甘神神社", + "甘神家的连理枝", + "ربط العقد مع أخوات أماغامي" + ], + "format": "TV", + "episodes": 24, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 57066, + "mal_id": 57066, + "title": "Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen", + "english": "Is It Wrong to Try to Pick Up Girls in a Dungeon? V", + "native": "ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇", + "synonyms": [ + "DanMachi 5th Season", + "Is It Wrong That I Want to Meet You in a Dungeon 5th Season" + ], + "format": "TV", + "episodes": 15, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 55887, + "mal_id": 55887, + "title": "Kekkon suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか 365 Days To The Wedding", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 3, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 5, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52215, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。―地球の運動について―", + "synonyms": [ + "About the Movement of the Earth" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 19, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165790, + "mal_id": 55887, + "title": "Kekkon Suru tte, Hontou desu ka", + "english": "365 Days to the Wedding", + "native": "結婚するって、本当ですか", + "synonyms": [ + "Are You Really Getting Married?" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 54853, + "mal_id": 54853, + "title": "Maou 2099", + "english": "Demon Lord 2099", + "native": "魔王2099", + "synonyms": [ + "Ken to Maou no Cyberpunk", + "The Lord Of Immortals Blooming in The Abyss F.E. 2099" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 13, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59131, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 29, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 50306, + "mal_id": 50306, + "title": "Seirei Gensouki 2", + "english": "Seirei Gensouki: Spirit Chronicles Season 2", + "native": "精霊幻想記2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 8, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59145, + "mal_id": 59145, + "title": "Ranma ½ (2024)", + "english": "Ranma ½ (2024)", + "native": "らんま1/2", + "synonyms": [ + "Ranma 1/2 (2024)" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.9722, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59989, + "mal_id": 59989, + "title": "Kami no Tou: Koubou-sen", + "english": "Tower of God Season 2: Workshop Battle", + "native": "神之塔 -Tower of God- 工房戦", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Kami no Tou 2nd Season", + "Tower of God: Workshop Battle" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 6, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 0.9524, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178434, + "mal_id": 59131, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2", + "native": "転生貴族、鑑定スキルで成り上がる 第2期", + "synonyms": [ + "KanteiSkill 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 29 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 56228, + "mal_id": 56228, + "title": "Rekishi ni Nokoru Akujo ni Naru zo", + "english": "I'll Become a Villainess Who Goes Down in History", + "native": "歴史に残る悪女になるぞ", + "synonyms": [ + "Rekiaku", + "I'll Become a Villainess That Will Go Down in History: The More of a Villainess I Become", + "the More the Prince will Dote on Me" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 52995, + "mal_id": 52995, + "title": "Arifureta Shokugyou de Sekai Saikyou Season 3", + "english": "Arifureta: From Commonplace to World's Strongest Season 3", + "native": "ありふれた職業で世界最強 season 3", + "synonyms": [ + "From Common Job Class to the Strongest in the World Season 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 14, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 16, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 58714, + "mal_id": 58714, + "title": "Saikyou no Shienshoku \"Wajutsushi\" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru", + "english": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "native": "最凶の支援職【話術士】である俺は世界最強クランを従える", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 7, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 1, + "score": 0.9248, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54857, + "mal_id": 54857, + "title": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season", + "english": "Re:ZERO -Starting Life in Another World- Season 3", + "native": "Re:ゼロから始める異世界生活 3rd season", + "synonyms": [ + "Re: Life in a different world from zero 3rd Season", + "ReZero 3rd Season", + "Re:Zero - Starting Life in Another World 3" + ], + "format": "TV", + "episodes": 16, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 2, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 5, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 52215, + "mal_id": 52215, + "title": "Chi. Chikyuu no Undou ni Tsuite", + "english": "Orb: On the Movements of the Earth", + "native": "チ。―地球の運動について―", + "synonyms": [ + "About the Movement of the Earth" + ], + "format": "TV", + "episodes": 25, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 5, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 0.8836, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 174043, + "mal_id": 57944, + "title": "Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki", + "english": "The Healer Who Was Banished From His Party, Is, in Fact, the Strongest", + "native": "パーティーから追放されたその治癒師、実は最強につき", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2024, + "start_date": { + "year": 2024, + "month": 10, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58172, + "mal_id": 58172, + "title": "Nageki no Bourei wa Intai shitai", + "english": "Let This Grieving Soul Retire", + "native": "嘆きの亡霊は引退したい", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2024, + "start_date": { + "day": 1, + "month": 10, + "year": 2024 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2024-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2024-spring.json new file mode 100644 index 0000000..5dce977 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2024-spring.json @@ -0,0 +1,7447 @@ +{ + "year": 2024, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 174788, + "mal_id": 58125, + "title": "Look Back", + "english": "LOOK BACK", + "native": "ルックバック", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 55701, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 49458, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 54900, + "mal_id": 54900, + "title": "Wind Breaker", + "english": "Wind Breaker", + "native": "WIND BREAKER", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 56923, + "mal_id": 56923, + "title": "Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2", + "Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 58125, + "mal_id": 58125, + "title": "Look Back", + "english": null, + "native": "ルックバック", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 6, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 48418, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", + "english": "The Misfit of Demon King Academy II Part 2", + "native": "魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール", + "synonyms": [ + "Maou Gakuin no Futekigousha 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 53770, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 53865, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Mission of Yozakura Family" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 53835, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 9, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 57100, + "mal_id": 57100, + "title": "The New Gate", + "english": "The New Gate", + "native": "THE NEW GATE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 14, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 52196, + "mal_id": 52196, + "title": "Date A Live V", + "english": "Date A Live V", + "native": "デート・ア・ライブⅤ", + "synonyms": [ + "Date A Live 5", + "Date A Live Fifth Season", + "DAL 5" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 55102, + "mal_id": 55102, + "title": "Girls Band Cry", + "english": null, + "native": "ガールズバンドクライ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 6, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 53407, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "Bartender Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 1.2778, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 24, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 53407, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "Bartender Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 0, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153288, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "Monster #8", + "8Kaijuu", + "KAIJU No. EIGHT", + "Kaiju N°8", + "괴수 8호" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55701, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55701, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49458, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166240, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [ + "KnY 4", + "Demon Slayer: Kimetsu no Yaiba - L'entraînement des Piliers", + "Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów", + "Клинок, рассекающий демонов: Тренировка столпов" + ], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 1.051, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56923, + "mal_id": 56923, + "title": "Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2", + "Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9773, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 12, + "score": 0.96, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 166873, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール", + "synonyms": [ + "Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2", + "เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2", + "Mushoku Tensei II: Jobless Reincarnation Part 2", + "Mushoku Tensei II: Reencarnación desde cero", + "无职转生~到了异世界就拿出真本事~第2季" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48418, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", + "english": "The Misfit of Demon King Academy II Part 2", + "native": "魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール", + "synonyms": [ + "Maou Gakuin no Futekigousha 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 54900, + "mal_id": 54900, + "title": "Wind Breaker", + "english": "Wind Breaker", + "native": "WIND BREAKER", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 20, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 53770, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 55102, + "mal_id": 55102, + "title": "Girls Band Cry", + "english": null, + "native": "ガールズバンドクライ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 6, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 15, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 163270, + "mal_id": 54900, + "title": "WIND BREAKER", + "english": "WIND BREAKER", + "native": "WIND BREAKER", + "synonyms": [ + "WB", + "ウィンブレ", + "WBK", + "ウィンドブレイカー" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49458, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 136804, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KONOSUBA -God's blessing on this wonderful world! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [ + "Konosuba 3", + "ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3", + "為美好的世界獻上祝福!3", + "Да благословят боги сей расчудесный мир! 3", + "Konosuba! Un mundo maravilloso 3" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48418, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", + "english": "The Misfit of Demon King Academy II Part 2", + "native": "魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール", + "synonyms": [ + "Maou Gakuin no Futekigousha 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52196, + "mal_id": 52196, + "title": "Date A Live V", + "english": "Date A Live V", + "native": "デート・ア・ライブⅤ", + "synonyms": [ + "Date A Live 5", + "Date A Live Fifth Season", + "DAL 5" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 0.9384, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 163139, + "mal_id": 54789, + "title": "Boku no Hero Academia 7", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 7", + "synonyms": [ + "BNHA 7", + "MHA 7", + "Моя геройская академия 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 5, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 17, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49458, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 1.0238, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 156822, + "mal_id": 53580, + "title": "Tensei Shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3", + "เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3", + "Moi, quand je me réincarne en Slime Saison 3", + "転スラ 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 174788, + "mal_id": 58125, + "title": "Look Back", + "english": "LOOK BACK", + "native": "ルックバック", + "synonyms": [], + "format": "MOVIE", + "episodes": 1, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 58125, + "mal_id": 58125, + "title": "Look Back", + "english": null, + "native": "ルックバック", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 6, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52196, + "mal_id": 52196, + "title": "Date A Live V", + "english": "Date A Live V", + "native": "デート・ア・ライブⅤ", + "synonyms": [ + "Date A Live 5", + "Date A Live Fifth Season", + "DAL 5" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 0.9198, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 22, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 145728, + "mal_id": 51122, + "title": "Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF", + "english": "Spice and Wolf: MERCHANT MEETS THE WISE WOLF", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf (2024)", + "Ookami to Koushinryou (2024)", + "สาวหมาป่ากับนายเครื่องเทศ " + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 5, + "score": 1.0045, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9397, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 1, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.9094, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 156415, + "mal_id": 53516, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก", + "Dainanaoji", + "轉生為第七王子,隨心所欲的魔法學習之路", + "Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу", + "Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56923, + "mal_id": 56923, + "title": "Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2", + "Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 8, + "score": 0.9144, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 4, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170130, + "mal_id": 56923, + "title": "Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2", + "Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai", + "Беззаботная жизнь в ином мире с читерскими способностями со второго уровня" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 53770, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53865, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Mission of Yozakura Family" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.886, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 158417, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55701, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 22, + "score": 0.8824, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 2, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 156023, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "Madome", + "まどめ", + "จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 2, + "score": 0.9722, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.9606, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 53516, + "mal_id": 53516, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability", + "native": "転生したら第七王子だったので、気ままに魔術を極めます", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 5, + "score": 0.916, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 164702, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "KanteiSkill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53865, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Mission of Yozakura Family" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 20, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 0.9337, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 158898, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Missão: Família Yozakura", + "Misión: Familia Yozakura", + "ปฏิบัติการลับบ้านโยซากุระ", + "La misión de la familia Yozakura", + "Миссия семьи Ёдзакура", + "Misja: Rodzina Yozakura" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48418, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", + "english": "The Misfit of Demon King Academy II Part 2", + "native": "魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール", + "synonyms": [ + "Maou Gakuin no Futekigousha 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 11, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 55888, + "mal_id": 55888, + "title": "Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2", + "english": "Mushoku Tensei: Jobless Reincarnation Season 2 Part 2", + "native": "無職転生 II ~異世界行ったら本気だす~ (第2クール)", + "synonyms": [ + "Jobless Reincarnation: I Will Seriously Try If I Go To Another World", + "Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56923, + "mal_id": 56923, + "title": "Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2", + "Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 0.8824, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 130590, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou II Part 2", + "english": "The Misfit of Demon King Academy II (Cour 2)", + "native": "魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール", + "synonyms": [ + "The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants Season 2 Part 2", + "ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค 2 Part 2", + "Непригодный для Академии владыки тьмы II" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53865, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Mission of Yozakura Family" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 1.2368, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 19, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 57100, + "mal_id": 57100, + "title": "The New Gate", + "english": "The New Gate", + "native": "THE NEW GATE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 14, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 5, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 169417, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "リ・モンスター" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 55102, + "mal_id": 55102, + "title": "Girls Band Cry", + "english": null, + "native": "ガールズバンドクライ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 6, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 164212, + "mal_id": 55102, + "title": "GIRLS BAND CRY", + "english": "Girls Band Cry", + "native": "ガールズバンドクライ", + "synonyms": [ + "Garukura", + "ガルクラ", + "GBC", + "Крик дівочого гурту" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 54900, + "mal_id": 54900, + "title": "Wind Breaker", + "english": "Wind Breaker", + "native": "WIND BREAKER", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55701, + "mal_id": 55701, + "title": "Kimetsu no Yaiba: Hashira Geiko-hen", + "english": "Demon Slayer: Kimetsu no Yaiba Hashira Training Arc", + "native": "鬼滅の刃 柱稽古編", + "synonyms": [], + "format": "TV", + "episodes": 8, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 8, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 57100, + "mal_id": 57100, + "title": "The New Gate", + "english": "The New Gate", + "native": "THE NEW GATE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 14, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 0.911, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 163078, + "mal_id": 54839, + "title": "Yoru no Kurage wa Oyogenai", + "english": "Jellyfish Can’t Swim in the Night", + "native": "夜のクラゲは泳げない", + "synonyms": [ + "YoruKura", + "ヨルクラ", + "Meduzy nie pływają same" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53835, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 9, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 15, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 54900, + "mal_id": 54900, + "title": "Wind Breaker", + "english": "Wind Breaker", + "native": "WIND BREAKER", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 158709, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [ + "アンネームドメモリー", + "อันเนมด์ เมโมรี" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 57100, + "mal_id": 57100, + "title": "The New Gate", + "english": "The New Gate", + "native": "THE NEW GATE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 14, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56690, + "mal_id": 56690, + "title": "Re:Monster", + "english": "Re:Monster", + "native": "Re:Monster", + "synonyms": [ + "ReMonster" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 53407, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "Bartender Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 170890, + "mal_id": 57100, + "title": "THE NEW GATE", + "english": "THE NEW GATE", + "native": "THE NEW GATE", + "synonyms": [ + "ザ・ニュー・ゲート", + "TNG" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52588, + "mal_id": 52588, + "title": "Kaijuu 8-gou", + "english": "Kaiju No. 8", + "native": "怪獣8号", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 13, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 50713, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 53580, + "mal_id": 53580, + "title": "Tensei shitara Slime Datta Ken 3rd Season", + "english": "That Time I Got Reincarnated as a Slime Season 3", + "native": "転生したらスライムだった件 第3期", + "synonyms": [ + "Tensura 3" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 49458, + "mal_id": 49458, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3", + "native": "この素晴らしい世界に祝福を!3", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 1.1053, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 48418, + "mal_id": 48418, + "title": "Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou Part 2", + "english": "The Misfit of Demon King Academy II Part 2", + "native": "魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール", + "synonyms": [ + "Maou Gakuin no Futekigousha 2nd Season", + "The Misfit of Demon King Academy 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 12, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 4, + "score": 0.9857, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143271, + "mal_id": 50713, + "title": "Mahouka Koukou no Rettousei 3rd Season", + "english": "The Irregular at Magic High School Season 3", + "native": "魔法科高校の劣等生 第3シーズン", + "synonyms": [ + "พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3", + "Непутёвый ученик в школе магии 3" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 54789, + "mal_id": 54789, + "title": "Boku no Hero Academia 7th Season", + "english": "My Hero Academia Season 7", + "native": "僕のヒーローアカデミア 第7期", + "synonyms": [ + "My Hero Academia 7" + ], + "format": "TV", + "episodes": 21, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 5, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55597, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + "I'm Addicted to You." + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 1.0366, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53835, + "mal_id": 53835, + "title": "Unnamed Memory", + "english": "Unnamed Memory", + "native": "Unnamed Memory", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 9, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 21, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52196, + "mal_id": 52196, + "title": "Date A Live V", + "english": "Date A Live V", + "native": "デート・ア・ライブⅤ", + "synonyms": [ + "Date A Live 5", + "Date A Live Fifth Season", + "DAL 5" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 53434, + "mal_id": 53434, + "title": "Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii?", + "english": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "native": "魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい?", + "synonyms": [ + "I", + "the Demon Lord", + "Took a Slave Elf as My Wife", + "but How Do I Love Her?", + "Madome" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 24, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 165855, + "mal_id": 55597, + "title": "Hananoi-kun to Koi no Yamai", + "english": "A Condition Called Love", + "native": "花野井くんと恋の病", + "synonyms": [ + " I'm addicted to you", + "A tes côtés", + "Ein Gefühl namens Liebe", + "Adicto a ti", + "รักติดหนึบของฮานาโนอิคุง", + "Una enfermedad llamada amor", + "花野井同學與戀愛病" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 53407, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "Bartender Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 53407, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "Bartender Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 4, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 19, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 57100, + "mal_id": 57100, + "title": "The New Gate", + "english": "The New Gate", + "native": "THE NEW GATE", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 14, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53865, + "mal_id": 53865, + "title": "Yozakura-san Chi no Daisakusen", + "english": "Mission: Yozakura Family", + "native": "夜桜さんちの大作戦", + "synonyms": [ + "Mission of Yozakura Family" + ], + "format": "TV", + "episodes": 27, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 52196, + "mal_id": 52196, + "title": "Date A Live V", + "english": "Date A Live V", + "native": "デート・ア・ライブⅤ", + "synonyms": [ + "Date A Live 5", + "Date A Live Fifth Season", + "DAL 5" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 10, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 13, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 155890, + "mal_id": 53407, + "title": "Bartender: Kami no Glass", + "english": "BARTENDER Glass of God", + "native": "バーテンダー 神のグラス", + "synonyms": [ + "Bartender (New Anime)", + "Бармен: божественный стакан" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 53770, + "mal_id": 53770, + "title": "Sentai Daishikkaku", + "english": "Go! Go! Loser Ranger!", + "native": "戦隊大失格", + "synonyms": [ + "Ranger Reject" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56230, + "mal_id": 56230, + "title": "Jiisan Baasan Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "Ojiisan to Obaasan ga Wakagaetta Hanashi", + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth" + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 54900, + "mal_id": 54900, + "title": "Wind Breaker", + "english": "Wind Breaker", + "native": "WIND BREAKER", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 5, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9118, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56923, + "mal_id": 56923, + "title": "Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life", + "english": "Chillin' in Another World with Level 2 Super Cheat Powers", + "native": "Lv2からチートだった元勇者候補のまったり異世界ライフ", + "synonyms": [ + "The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2", + "Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 8, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.882, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 55265, + "mal_id": 55265, + "title": "Tensei Kizoku, Kantei Skill de Nariagaru", + "english": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "native": "転生貴族、鑑定スキルで成り上がる", + "synonyms": [ + "Reincarnated as an Aristocrat with an Appraisal Skill" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 7, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 8, + "score": 0.8778, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 168138, + "mal_id": 56230, + "title": "Jii-san Baa-san Wakagaeru", + "english": "Grandpa and Grandma Turn Young Again", + "native": "じいさんばあさん若返る", + "synonyms": [ + "A Story About a Grandpa and Grandma Who Returned Back to Their Youth", + "おじいさんとおばあさんが若返った話。", + "Ojiisan to Obaasan ga Wakagaetta Hanashi." + ], + "format": "TV", + "episodes": 11, + "season": "SPRING", + "year": 2024, + "start_date": { + "year": 2024, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 51122, + "mal_id": 51122, + "title": "Ookami to Koushinryou: Merchant Meets the Wise Wolf", + "english": "Spice and Wolf: Merchant Meets the Wise Wolf", + "native": "狼と香辛料 MERCHANT MEETS THE WISE WOLF", + "synonyms": [ + "Spice and Wolf" + ], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2024, + "start_date": { + "day": 2, + "month": 4, + "year": 2024 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2024-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2024-summer.json new file mode 100644 index 0000000..03e44b4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2024-summer.json @@ -0,0 +1,6688 @@ +{ + "year": 2024, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 175977, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [ + "Minha Amiga Nokotan é um Cervo", + "Mi Amiga Nokotan es un Ciervo", + "鹿乃子乃子虎视眈眈", + "Nokotan in Cerva di Amici", + "Моя подруга-олениха Нокотан", + "Shikanoko i dziwne zdarzenia w klubie jelenia" + ], + "format": "ONA", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 163292, + "mal_id": 54913, + "title": "Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 133845, + "mal_id": 48896, + "title": "Overlord: Sei Oukoku-hen", + "english": "OVERLORD: The Sacred Kingdom", + "native": "オーバーロード 聖王国編", + "synonyms": [ + "Overlord Movie 3", + "Overlord: Holy Kingdom Arc", + "โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์", + "Overlord: The Paladin of the Sacred Kingdom Arc", + "Overlord: O Reino Sagrado", + "Overlord: El Reino Sagrado" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 168872, + "mal_id": 56538, + "title": "Kimi ni Todoke 3RD SEASON", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け 3RD SEASON", + "synonyms": [ + "ฝากใจไปถึงเธอ ซีซั่น 3" + ], + "format": "ONA", + "episodes": 5, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 168013, + "mal_id": 56196, + "title": "Boku no Hero Academia THE MOVIE: YOU'RE NEXT", + "english": "My Hero Academia: You’re Next", + "native": "僕のヒーローアカデミア THE MOVIE: ユア ネクスト", + "synonyms": [ + "My Hero Academia the Movie 4", + "My Hero Academia: Agora é a Sua Vez" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 173533, + "mal_id": 57864, + "title": "Monogatari Series: Off & Monster Season", + "english": "MONOGATARI Series: OFF & MONSTER Season", + "native": "〈物語〉シリーズ オフ&モンスターシーズン", + "synonyms": [ + "Orokamonogatari", + "Nademonogatari", + "Wazamonogatari", + "Shinobumonogatari" + ], + "format": "ONA", + "episodes": 14, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 170938, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai Shite Ita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "MahoAku", + "まほあく", + "Волшебница и злой офицер" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 54744, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "Alya-san", + "who sits besides me and sometimes murmurs affectionately in Russian.", + "Arya Next Door Sometimes Lapses into Russian" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 57524, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Makeine" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 14, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 58426, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 57892, + "mal_id": 57892, + "title": "Hazurewaku no \"Joutai Ijou Skill\" de Saikyou ni Natta Ore ga Subete wo Juurin suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "I became the strongest with the failure frame \"Abnormal State Skill\" as I devastated everything", + "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 54968, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 54913, + "mal_id": 54913, + "title": "Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [ + "The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 2, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 49785, + "mal_id": 49785, + "title": "Fairy Tail: 100-nen Quest", + "english": "Fairy Tail: 100 Years Quest", + "native": "FAIRY TAIL 100年クエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 55848, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad Isekai", + "native": "異世界スーサイド・スクワッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 57876, + "mal_id": 57876, + "title": "Maougun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army Was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "The Maou Army's Strongest Magician Was a Human" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 48896, + "mal_id": 48896, + "title": "Overlord Movie 3: Sei Oukoku-hen", + "english": "Overlord: The Sacred Kingdom", + "native": "劇場版「オーバーロード」聖王国編", + "synonyms": [ + "Gekijouban Overlord: Sei Oukoku-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 56538, + "mal_id": 56538, + "title": "Kimi ni Todoke 3rd Season", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け3RD SEASON", + "synonyms": [], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 8, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 56063, + "mal_id": 56063, + "title": "NieR:Automata Ver1.1a Part 2", + "english": "NieR:Automata Ver1.1a (Cour 2)", + "native": "NieR:Automata Ver1.1a 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 57864, + "mal_id": 57864, + "title": "Monogatari Series: Off & Monster Season", + "english": "Monogatari Series: Off & Monster Season", + "native": "〈物語〉シリーズ オフ&モンスターシーズン", + "synonyms": [ + "Orokamonogatari", + "Wazamonogatari", + "Nademonogatari", + "Shinobumonogatari" + ], + "format": "ONA", + "episodes": 14, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54744, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "Alya-san", + "who sits besides me and sometimes murmurs affectionately in Russian.", + "Arya Next Door Sometimes Lapses into Russian" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 17, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 58426, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 0, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 162804, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "ロシデレ", + "คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ", + "Иногда Аля внезапно кокетничает по-русски" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 1.2907, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 17, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 21, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 166531, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "Oshi no Ko Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "我推的孩子" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 12, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 6, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 23, + "score": 0.9054, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 174576, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "杖與劍的魔劍譚", + "ตำนานดาบและคทาแห่งวิสตอเรีย" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57524, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Makeine" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 14, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 23, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 171457, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Toooooo Many Losing Heroines", + "マケイン", + "รักครั้งนี้มีคนนกเยอะไปมั้ย!", + "Makeine", + "敗北女角太多了!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 21, + "score": 1.0393, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 17, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 153406, + "mal_id": 52635, + "title": "Kami no Tou: Tower of God 2nd Season", + "english": "Tower of God Season 2", + "native": "神之塔 -Tower of God- 第2期", + "synonyms": [ + "タワーオブ・ゴッド 2", + "Sinui Tap 2", + "TOG 2", + "신의 탑 2", + "Tower of God Season 2: Return of the Prince", + "神之塔 -Tower of God- 王子の帰還", + "Kami no Tou: Tower of God - Ouji no Kikan", + "神之塔 -Tower of God- 工房戦", + "Kami no Tou: Tower of God - Koubou-sen", + "Tower of God Season 2: Workshop Battle" + ], + "format": "TV", + "episodes": 26, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 175977, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [ + "Minha Amiga Nokotan é um Cervo", + "Mi Amiga Nokotan es un Ciervo", + "鹿乃子乃子虎视眈眈", + "Nokotan in Cerva di Amici", + "Моя подруга-олениха Нокотан", + "Shikanoko i dziwne zdarzenia w klubie jelenia" + ], + "format": "ONA", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 58426, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 0.8898, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 175977, + "mal_id": 58426, + "title": "Shikanoko Nokonoko Koshitantan", + "english": "My Deer Friend Nokotan", + "native": "しかのこのこのここしたんたん", + "synonyms": [ + "Minha Amiga Nokotan é um Cervo", + "Mi Amiga Nokotan es un Ciervo", + "鹿乃子乃子虎视眈眈", + "Nokotan in Cerva di Amici", + "Моя подруга-олениха Нокотан", + "Shikanoko i dziwne zdarzenia w klubie jelenia" + ], + "format": "ONA", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 1.1207, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 15, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 55848, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad Isekai", + "native": "異世界スーサイド・スクワッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 18, + "score": 1.0205, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 152137, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human…In Another World", + "Disqualified from Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 57892, + "mal_id": 57892, + "title": "Hazurewaku no \"Joutai Ijou Skill\" de Saikyou ni Natta Ore ga Subete wo Juurin suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "I became the strongest with the failure frame \"Abnormal State Skill\" as I devastated everything", + "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 18, + "score": 1.0556, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 23, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9497, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 12, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 173694, + "mal_id": 57892, + "title": "Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "Hazurewaku", + "Dengan Bingkai Status Sampah \"Skill Abnormal\" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 54968, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 163623, + "mal_id": 54968, + "title": "Giji Harem", + "english": "Pseudo Harem", + "native": "疑似ハーレム", + "synonyms": [ + "ฮาเร็มนี้มีแต่เธอ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54744, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "Alya-san", + "who sits besides me and sometimes murmurs affectionately in Russian.", + "Arya Next Door Sometimes Lapses into Russian" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 14, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 17, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 3, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 162896, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka", + "นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ", + "Héroe fugitivo", + "Беглый самурай" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57524, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Makeine" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 14, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 18, + "score": 0.9341, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.926, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 57892, + "mal_id": 57892, + "title": "Hazurewaku no \"Joutai Ijou Skill\" de Saikyou ni Natta Ore ga Subete wo Juurin suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "I became the strongest with the failure frame \"Abnormal State Skill\" as I devastated everything", + "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 17, + "score": 0.9096, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 170695, + "mal_id": 57058, + "title": "Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!", + "I Parry Everything to Become the Greatest Adventure!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57876, + "mal_id": 57876, + "title": "Maougun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army Was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "The Maou Army's Strongest Magician Was a Human" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 6, + "score": 1.1207, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 17, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 21, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9667, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 152681, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [ + "แง้มหัวใจยัยน้องสาวจำเป็น" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 163292, + "mal_id": 54913, + "title": "Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 54913, + "mal_id": 54913, + "title": "Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [ + "The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 2, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 0.8926, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 163292, + "mal_id": 54913, + "title": "Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 4, + "score": 0.8817, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 163292, + "mal_id": 54913, + "title": "Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.871, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 163292, + "mal_id": 54913, + "title": "Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57876, + "mal_id": 57876, + "title": "Maougun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army Was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "The Maou Army's Strongest Magician Was a Human" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 133845, + "mal_id": 48896, + "title": "Overlord: Sei Oukoku-hen", + "english": "OVERLORD: The Sacred Kingdom", + "native": "オーバーロード 聖王国編", + "synonyms": [ + "Overlord Movie 3", + "Overlord: Holy Kingdom Arc", + "โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์", + "Overlord: The Paladin of the Sacred Kingdom Arc", + "Overlord: O Reino Sagrado", + "Overlord: El Reino Sagrado" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 48896, + "mal_id": 48896, + "title": "Overlord Movie 3: Sei Oukoku-hen", + "english": "Overlord: The Sacred Kingdom", + "native": "劇場版「オーバーロード」聖王国編", + "synonyms": [ + "Gekijouban Overlord: Sei Oukoku-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 20, + "month": 9, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 4, + "score": 0.9063, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 133845, + "mal_id": 48896, + "title": "Overlord: Sei Oukoku-hen", + "english": "OVERLORD: The Sacred Kingdom", + "native": "オーバーロード 聖王国編", + "synonyms": [ + "Overlord Movie 3", + "Overlord: Holy Kingdom Arc", + "โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์", + "Overlord: The Paladin of the Sacred Kingdom Arc", + "Overlord: O Reino Sagrado", + "Overlord: El Reino Sagrado" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 133845, + "mal_id": 48896, + "title": "Overlord: Sei Oukoku-hen", + "english": "OVERLORD: The Sacred Kingdom", + "native": "オーバーロード 聖王国編", + "synonyms": [ + "Overlord Movie 3", + "Overlord: Holy Kingdom Arc", + "โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์", + "Overlord: The Paladin of the Sacred Kingdom Arc", + "Overlord: O Reino Sagrado", + "Overlord: El Reino Sagrado" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 9, + "day": 20 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 55848, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad Isekai", + "native": "異世界スーサイド・スクワッド", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 4, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 2, + "score": 0.9314, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 166710, + "mal_id": 55848, + "title": "Isekai Suicide Squad", + "english": "Suicide Squad ISEKAI", + "native": "異世界スーサイド・スクワッド", + "synonyms": [ + "Legion samobójców: Isekai", + "異世界自殺突擊隊", + " Esquadrão Suicida: Isekai\t", + "Az Öngyilkos osztag: Iszekai" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 2, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58059, + "mal_id": 58059, + "title": "Tsue to Tsurugi no Wistoria", + "english": "Wistoria: Wand and Sword", + "native": "杖と剣のウィストリア", + "synonyms": [ + "Wistoria's Wand and Sword" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 22, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 158559, + "mal_id": 53802, + "title": "2.5 Jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "2.5 Jigen no Yuuwaku", + "2.5 มิติ ริริสะ", + "Ririsa of 2.5 Dimension", + "にごリリ", + "Nigoriri", + "Ririsa, uma Garota em 2.5D", + "Ririsa, una chica en 2.5D", + "2.5 Seducción Dimensional" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 56063, + "mal_id": 56063, + "title": "NieR:Automata Ver1.1a Part 2", + "english": "NieR:Automata Ver1.1a (Cour 2)", + "native": "NieR:Automata Ver1.1a 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 57810, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "Shoshimin: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54744, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "Alya-san", + "who sits besides me and sometimes murmurs affectionately in Russian.", + "Arya Next Door Sometimes Lapses into Russian" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 10, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 12, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 173295, + "mal_id": 57810, + "title": "Shoushimin Series", + "english": "SHOSHIMIN: How to Become Ordinary", + "native": "小市民シリーズ", + "synonyms": [ + "小市民系列" + ], + "format": "TV", + "episodes": 10, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 54724, + "mal_id": 54724, + "title": "Nige Jouzu no Wakagimi", + "english": "The Elusive Samurai", + "native": "逃げ上手の若君", + "synonyms": [ + "Nigewaka" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 49785, + "mal_id": 49785, + "title": "Fairy Tail: 100-nen Quest", + "english": "Fairy Tail: 100 Years Quest", + "native": "FAIRY TAIL 100年クエスト", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 23, + "score": 0.8913, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 139095, + "mal_id": 49785, + "title": "FAIRY TAIL: 100 YEARS QUEST", + "english": "FAIRY TAIL 100 YEARS QUEST", + "native": "FAIRY TAIL 100 YEARS QUEST", + "synonyms": [ + "フェアリーテイル", + "FAIRY TAIL 100年クエスト", + "FAIRY TAIL: 100-nen Quest" + ], + "format": "TV", + "episodes": 25, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 1.0205, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 4, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 9, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 167419, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why nobody remembers my world?", + "Nazeboku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 57058, + "mal_id": 57058, + "title": "Ore wa Subete wo \"Parry\" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai", + "english": "I Parry Everything", + "native": "俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~", + "synonyms": [ + "I Will \"Parry\" All: The World's Strongest Man Wanna Be an Adventurer", + "I Parry Everything: What Do You Mean I'm the Strongest? I'm Not Even an Adventurer Yet!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57876, + "mal_id": 57876, + "title": "Maougun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army Was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "The Maou Army's Strongest Magician Was a Human" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 0.9737, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 57892, + "mal_id": 57892, + "title": "Hazurewaku no \"Joutai Ijou Skill\" de Saikyou ni Natta Ore ga Subete wo Juurin suru made", + "english": "Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells", + "native": "ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで", + "synonyms": [ + "I became the strongest with the failure frame \"Abnormal State Skill\" as I devastated everything", + "Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9426, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 0.9396, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 52367, + "mal_id": 52367, + "title": "Isekai Shikkaku", + "english": "No Longer Allowed in Another World", + "native": "異世界失格", + "synonyms": [ + "No Longer Human...In Another World" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9194, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 173584, + "mal_id": 57876, + "title": "Maou Gun Saikyou no Majutsushi wa Ningen datta", + "english": "The Strongest Magician in the Demon Lord's Army was a Human", + "native": "魔王軍最強の魔術師は人間だった", + "synonyms": [ + "Maou-gun Saikyou no Majutsushi wa Ningen datta" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 6, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 54913, + "mal_id": 54913, + "title": "Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru.", + "english": "The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible", + "native": "新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。", + "synonyms": [ + "The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 2, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168872, + "mal_id": 56538, + "title": "Kimi ni Todoke 3RD SEASON", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け 3RD SEASON", + "synonyms": [ + "ฝากใจไปถึงเธอ ซีซั่น 3" + ], + "format": "ONA", + "episodes": 5, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 56538, + "mal_id": 56538, + "title": "Kimi ni Todoke 3rd Season", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け3RD SEASON", + "synonyms": [], + "format": "ONA", + "episodes": 5, + "season": null, + "year": null, + "start_date": { + "day": 1, + "month": 8, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 1.15, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168872, + "mal_id": 56538, + "title": "Kimi ni Todoke 3RD SEASON", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け 3RD SEASON", + "synonyms": [ + "ฝากใจไปถึงเธอ ซีซั่น 3" + ], + "format": "ONA", + "episodes": 5, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 4, + "score": 1.1234, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168872, + "mal_id": 56538, + "title": "Kimi ni Todoke 3RD SEASON", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け 3RD SEASON", + "synonyms": [ + "ฝากใจไปถึงเธอ ซีซั่น 3" + ], + "format": "ONA", + "episodes": 5, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 52635, + "mal_id": 52635, + "title": "Kami no Tou: Ouji no Kikan", + "english": "Tower of God Season 2: Return of the Prince", + "native": "神之塔 -Tower of God- 王子の帰還", + "synonyms": [ + "Sin-ui Tap", + "신의 탑", + "Tower of God: Return of the Prince", + "Kami no Tou 2nd Season" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 7, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 0, + "score": 1.0154, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 168872, + "mal_id": 56538, + "title": "Kimi ni Todoke 3RD SEASON", + "english": "Kimi ni Todoke: From Me to You Season 3", + "native": "君に届け 3RD SEASON", + "synonyms": [ + "ฝากใจไปถึงเธอ ซีซั่น 3" + ], + "format": "ONA", + "episodes": 5, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 49981, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ", + "synonyms": [ + "Our Last Crusade or the Rise of a New World 2nd Season", + "The Last Battlefield Between You and I", + "or Perhaps the Beginning of the World's Holy War 2nd Season", + "Kimisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 10, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 55791, + "mal_id": 55791, + "title": "[Oshi no Ko] 2nd Season", + "english": "[Oshi No Ko] Season 2", + "native": "【推しの子】第2期", + "synonyms": [ + "My Star Season 2" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 53802, + "mal_id": 53802, + "title": "2.5-jigen no Ririsa", + "english": "2.5 Dimensional Seduction", + "native": "2.5次元の誘惑", + "synonyms": [ + "Nigoriri", + "2.5-jigen no Yuuwaku", + "Ririsa of 2.5 Dimension" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 5, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.986, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 54744, + "mal_id": 54744, + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "english": "Alya Sometimes Hides Her Feelings in Russian", + "native": "時々ボソッとロシア語でデレる隣のアーリャさん", + "synonyms": [ + "Roshidere", + "Alya-san", + "who sits besides me and sometimes murmurs affectionately in Russian.", + "Arya Next Door Sometimes Lapses into Russian" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 3, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 10, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 139825, + "mal_id": 49981, + "title": "Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II", + "english": "Our Last Crusade or the Rise of a New World Season 2", + "native": "キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II", + "synonyms": [ + "Kimisen 2", + "キミ戦 2", + "Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52481, + "mal_id": 52481, + "title": "Gimai Seikatsu", + "english": "Days with My Stepsister", + "native": "義妹生活", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 4, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 168013, + "mal_id": 56196, + "title": "Boku no Hero Academia THE MOVIE: YOU'RE NEXT", + "english": "My Hero Academia: You’re Next", + "native": "僕のヒーローアカデミア THE MOVIE: ユア ネクスト", + "synonyms": [ + "My Hero Academia the Movie 4", + "My Hero Academia: Agora é a Sua Vez" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 8, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57524, + "mal_id": 57524, + "title": "Make Heroine ga Oosugiru!", + "english": "Makeine: Too Many Losing Heroines!", + "native": "負けヒロインが多すぎる!", + "synonyms": [ + "Makeine" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 14, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 173533, + "mal_id": 57864, + "title": "Monogatari Series: Off & Monster Season", + "english": "MONOGATARI Series: OFF & MONSTER Season", + "native": "〈物語〉シリーズ オフ&モンスターシーズン", + "synonyms": [ + "Orokamonogatari", + "Nademonogatari", + "Wazamonogatari", + "Shinobumonogatari" + ], + "format": "ONA", + "episodes": 14, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 57864, + "mal_id": 57864, + "title": "Monogatari Series: Off & Monster Season", + "english": "Monogatari Series: Off & Monster Season", + "native": "〈物語〉シリーズ オフ&モンスターシーズン", + "synonyms": [ + "Orokamonogatari", + "Wazamonogatari", + "Nademonogatari", + "Shinobumonogatari" + ], + "format": "ONA", + "episodes": 14, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 170938, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai Shite Ita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "MahoAku", + "まほあく", + "Волшебница и злой офицер" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 57217, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai shiteita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "Mahoaku", + "The Former Magical Girl & Evil Enemy", + "The Magical Girl and Evil Officer", + "Beauty and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 9, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 18, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 170938, + "mal_id": 57217, + "title": "Katsute Mahou Shoujo to Aku wa Tekitai Shite Ita.", + "english": "The Magical Girl and the Evil Lieutenant Used to Be Archenemies", + "native": "かつて魔法少女と悪は敵対していた。", + "synonyms": [ + "MahoAku", + "まほあく", + "Волшебница и злой офицер" + ], + "format": "TV_SHORT", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 56062, + "mal_id": 56062, + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "english": "Why Does Nobody Remember Me in This World?", + "native": "なぜ僕の世界を誰も覚えていないのか?", + "synonyms": [ + "Why Nobody Remembers My World?", + "NazeBoku" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2024, + "start_date": { + "day": 13, + "month": 7, + "year": 2024 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2024-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2024-winter.json new file mode 100644 index 0000000..6e403f0 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2024-winter.json @@ -0,0 +1,7087 @@ +{ + "year": 2024, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 153658, + "mal_id": 52742, + "title": "Haikyuu!!: Gomi Suteba no Kessen", + "english": "HAIKYU!! The Dumpster Battle", + "native": "ハイキュー!! ゴミ捨て場の決戦", + "synonyms": [ + "ハイキュー!! FINAL ", + "Haikyuu!! FINAL", + "Haikyuu!! Battle at the Garbage Dump", + "Haikyu!! Movie: Decisive Battle at the Garbage Dump", + "HAIKYU!! La Batalla del Basurero", + "HAIKYU!! La Guerre des Poubelles" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 16 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 147642, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [ + "เส้นทางพลิกผันชองราชันอมตะ", + "TUUA", + "Petualang Mayat Hidup yang Tidak Diinginkan", + "Нежеланно бессмертный авантюрист" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 151639, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": "Ninja Kamui", + "native": "Ninja Kamui", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 156891, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [ + "การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย", + "最弱魔物使開始了撿垃圾之旅。", + "Слабейшая укротительница отправляется в путешествие по сбору мусора", + "Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 161476, + "mal_id": 54449, + "title": "Ishura", + "english": "ISHURA", + "native": "異修羅", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 52299, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "Na Honjaman Level Up", + "나 혼자만 레벨업", + "I Level Up Alone" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 52701, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Dining" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 55866, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 49889, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "Tsukimichi -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 49613, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 56352, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop!", + "The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 52742, + "mal_id": 52742, + "title": "Haikyuu!! Movie: Gomisuteba no Kessen", + "english": "Haikyu!! Movie: The Dumpster Battle", + "native": "劇場版ハイキュー!! ゴミ捨て場の決戦", + "synonyms": [ + "Haikyu!! Final Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 51648, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 54837, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 56285, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": null, + "native": null, + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 11, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 53730, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me!", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "The other world doesn't stand a chance against the power of instant death" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 5, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 50803, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd Stage", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 55129, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "The Foolish Angel Dances with Demons", + "Kanaten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 54265, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 53590, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 54449, + "mal_id": 54449, + "title": "Ishura", + "english": "Ishura", + "native": "異修羅", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52299, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "Na Honjaman Level Up", + "나 혼자만 레벨업", + "I Level Up Alone" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 12, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.8934, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 15, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 151807, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "나 혼자만 레벨업", + "Na Honjaman Level Up", + "Solo Leveling: Поднятие уровня в одиночку" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56285, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": null, + "native": null, + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 11, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52701, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Dining" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 14, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 153518, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Meal", + "Tragones y Mazmorras", + "Gloutons et Dragons", + "Подземелье вкусностей", + "던전밥", + "สูตรลับตำรับดันเจียน", + "Mỹ vị hầm ngục", + "Підземелля смакоти", + "迷宫饭", + "מבוכים ומטעמים", + "Dunmeshi", + "Labužníci v kobce" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 3, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 1.066, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 8, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 146066, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite Season 3", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "You-Zitsu 3", + "Youjitsu 3", + "ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3", + "Classroom of the Elite III", + "欢迎来到实力至上主义的教室 第三季", + "Добро пожаловать в класс для особо одарённых 3", + "فصل النخبة الموسم الثالث", + "歡迎來到實力至上主義的教室 第三季" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 17, + "score": 1.0357, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 1.0231, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 18, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 166610, + "mal_id": 55813, + "title": "MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "MASHLE: MAGIC AND MUSCLES Season 2", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "マッシュル-MASHLE- 第2期", + "MASHLE 2nd Season", + "MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc", + "肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇", + "MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 55866, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 22, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 54265, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 166794, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [ + "Ein Zeichen der Zuneigung", + "손끝과 연연", + "Signos de Afecto", + "Кохання на кінчиках пальців", + "Znaki naszych uczuć", + "Cinta dan Isyarat", + "Любовь с кончиков пальцев", + "Жест беззаветной любви" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56285, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": null, + "native": null, + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 11, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49613, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 14, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 18, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 17, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 137908, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [ + "Penggunaan Sihir Penyembuh yang Keliru", + "เวทรักษาที่ไหนเขาใช้กันแบบนี้", + "Cách dùng sai của ma thuật chữa trị", + "Как (не) стоит использовать магию исцеления", + "الطريقة الخاطئة لاستخدام سحر الشفاء" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49889, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "Tsukimichi -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 19, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 0.959, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.951, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 139518, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "TSUKIMICHI -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [ + "จันทรานำพาสู่ต่างโลก ภาค 2", + "月光下的異世界之旅 第二季", + "Благословлённое лунным светом приключение в другом мире 2" + ], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 1.0385, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 11, + "score": 1.0106, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51648, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 141821, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Demon Slave", + "Slave of the Hell Soldiers", + "ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร", + "Mabotai", + "Demon Slave: The Chained Soldier" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50803, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd Stage", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 18, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 0.9776, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 166216, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "BokuYaba 2", + "僕ヤバ 2", + "เธอผู้อันตรายต่อใจผม ภาคที่ 2", + "Czarne chmury w moim sercu. Sezon 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49889, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "Tsukimichi -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153658, + "mal_id": 52742, + "title": "Haikyuu!!: Gomi Suteba no Kessen", + "english": "HAIKYU!! The Dumpster Battle", + "native": "ハイキュー!! ゴミ捨て場の決戦", + "synonyms": [ + "ハイキュー!! FINAL ", + "Haikyuu!! FINAL", + "Haikyuu!! Battle at the Garbage Dump", + "Haikyu!! Movie: Decisive Battle at the Garbage Dump", + "HAIKYU!! La Batalla del Basurero", + "HAIKYU!! La Guerre des Poubelles" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 52742, + "mal_id": 52742, + "title": "Haikyuu!! Movie: Gomisuteba no Kessen", + "english": "Haikyu!! Movie: The Dumpster Battle", + "native": "劇場版ハイキュー!! ゴミ捨て場の決戦", + "synonyms": [ + "Haikyu!! Final Movie" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 16, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153658, + "mal_id": 52742, + "title": "Haikyuu!!: Gomi Suteba no Kessen", + "english": "HAIKYU!! The Dumpster Battle", + "native": "ハイキュー!! ゴミ捨て場の決戦", + "synonyms": [ + "ハイキュー!! FINAL ", + "Haikyuu!! FINAL", + "Haikyuu!! Battle at the Garbage Dump", + "Haikyu!! Movie: Decisive Battle at the Garbage Dump", + "HAIKYU!! La Batalla del Basurero", + "HAIKYU!! La Guerre des Poubelles" + ], + "format": "MOVIE", + "episodes": 1, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 16 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56352, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop!", + "The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 55129, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "The Foolish Angel Dances with Demons", + "Kanaten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 19, + "score": 0.8832, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 7, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 168374, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู", + "Седьмая беззаботная жизнь злодейки в браке со злейшим врагом", + "LoopNana", + "ルプなな", + "輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 22, + "score": 0.9906, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 54265, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 0, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52299, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "Na Honjaman Level Up", + "나 혼자만 레벨업", + "I Level Up Alone" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 8, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 155963, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute", + "Dosanko Gyaru wa Namaramenkoi", + "สาวแกลเมืองเหนือน่าฮักขนาด", + "Dosakoi", + "どさこい", + "Девчонки с Хоккайдо просто чума!", + "غارو هوكّاديو ظريفات جدّاً" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 147642, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [ + "เส้นทางพลิกผันชองราชันอมตะ", + "TUUA", + "Petualang Mayat Hidup yang Tidak Diinginkan", + "Нежеланно бессмертный авантюрист" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51648, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 8, + "score": 0.8681, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 147642, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [ + "เส้นทางพลิกผันชองราชันอมตะ", + "TUUA", + "Petualang Mayat Hidup yang Tidak Diinginkan", + "Нежеланно бессмертный авантюрист" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 151639, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": "Ninja Kamui", + "native": "Ninja Kamui", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 56285, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": null, + "native": null, + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 11, + "month": 2, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 0.8871, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 151639, + "mal_id": 56285, + "title": "Ninja Kamui", + "english": "Ninja Kamui", + "native": "Ninja Kamui", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 2, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52299, + "mal_id": 52299, + "title": "Ore dake Level Up na Ken", + "english": "Solo Leveling", + "native": "俺だけレベルアップな件", + "synonyms": [ + "Na Honjaman Level Up", + "나 혼자만 레벨업", + "I Level Up Alone" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 3, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 12, + "score": 0.9364, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 162780, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing Over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "I Admire Magical Girls, and...", + "Mahoako", + "Looking up to Magical Girls", + "夢想成為魔法少女", + "Fascinada por Garotas Mágicas", + "Me encantan las Magical Girls" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49613, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 54837, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 17, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 19, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 163076, + "mal_id": 54837, + "title": "Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen", + "english": "Villainess Level 99: I May Be the Hidden Boss but I'm Not the Demon Lord", + "native": "悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~", + "synonyms": [ + "ชีวิตไม่ง่ายของนางร้าย LV99", + "Light Magic and the Hero", + "Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов", + "Akuyaku LV99" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53730, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me!", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "The other world doesn't stand a chance against the power of instant death" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 5, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 11, + "score": 0.9638, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 51648, + "mal_id": 51648, + "title": "Nozomanu Fushi no Boukensha", + "english": "The Unwanted Undead Adventurer", + "native": "望まぬ不死の冒険者", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 7, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 0.8784, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 158028, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is Overpowered", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "Sokushicheat", + "My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me!" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 55129, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "The Foolish Angel Dances with Demons", + "Kanaten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 8, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 50392, + "mal_id": 50392, + "title": "Mato Seihei no Slave", + "english": "Chained Soldier", + "native": "魔都精兵のスレイブ", + "synonyms": [ + "Slave of the Magic Capital's Elite Troops", + "Mabotai" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 7, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 0.9561, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 153818, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Ведьма и зверь", + "Відьма та чудовисько" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49613, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53889, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist: Shimane Illuminati Saga", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Blue Exorcist Season 3", + "Ao no Futsumashi" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 7, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 17, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 158931, + "mal_id": 53889, + "title": "Ao no Exorcist: Shimane Illuminati-hen", + "english": "Blue Exorcist -Shimane Illuminati Saga-", + "native": "青の祓魔師 島根啓明結社篇", + "synonyms": [ + "Ao no Futsumashi", + "Синий экзорцист 3: Иллюминаты Симанэ", + "Blue Exorcist Season 3" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 7, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 14, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 20, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50803, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd Stage", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9574, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 156131, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita 2nd", + "english": "Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd", + "I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the Frontier Season 2", + "ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2", + "Изгнанный из отряда героя, я решил поселиться в глубинке 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 56352, + "mal_id": 56352, + "title": "Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru", + "english": "7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!", + "native": "ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する", + "synonyms": [ + "The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop!", + "The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 55129, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "The Foolish Angel Dances with Demons", + "Kanaten" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 17, + "score": 1.0161, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 53730, + "mal_id": 53730, + "title": "Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga.", + "english": "My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me!", + "native": "即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。", + "synonyms": [ + "The other world doesn't stand a chance against the power of instant death" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 5, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 54722, + "mal_id": 54722, + "title": "Mahou Shoujo ni Akogarete", + "english": "Gushing over Magical Girls", + "native": "魔法少女にあこがれて", + "synonyms": [ + "Mahoako", + "Looking up to Magical Girls", + "I Admire Magical Girls", + "and..." + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 164244, + "mal_id": 55129, + "title": "Oroka na Tenshi wa Akuma to Odoru", + "english": "The Foolish Angel Dances with the Devil", + "native": "愚かな天使は悪魔と踊る", + "synonyms": [ + "Stupid angel dances with the devil", + "Die mit dem Teufel tanzt", + "愚蠢天使與惡魔共舞", + "Глупый ангел пляшет с демоном", + "かな天 ", + "KanaTen" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 53421, + "mal_id": 53421, + "title": "Dosanko Gal wa Namara Menkoi", + "english": "Hokkaido Gals Are Super Adorable!", + "native": "道産子ギャルはなまらめんこい", + "synonyms": [ + "Dosanko Gyaru Is Mega Cute" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 9, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50803, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd Stage", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 7, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 55690, + "mal_id": 55690, + "title": "Boku no Kokoro no Yabai Yatsu 2nd Season", + "english": "The Dangers in My Heart Season 2", + "native": "僕の心のヤバイやつ 第2期", + "synonyms": [ + "Bokuyaba" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 3, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 55813, + "mal_id": 55813, + "title": "Mashle: Shinkakusha Kouho Senbatsu Shiken-hen", + "english": "Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc", + "native": "マッシュル-MASHLE- 神覚者候補選抜試験編", + "synonyms": [ + "Mashle 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 53488, + "mal_id": 53488, + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd", + "english": "Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2", + "native": "真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd", + "synonyms": [ + "Banished from the Hero's Party", + "I Decided to Live a Quiet Life in the Countryside", + "I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 7, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9865, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 143866, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd STAGE", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [ + "Bottom-Tier Character Tomozaki Season 2", + "Jaku-Chara Tomozaki-kun 2nd Season", + "弱キャラ友崎くん2", + "Низкоуровневый Томодзаки 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 49889, + "mal_id": 49889, + "title": "Tsuki ga Michibiku Isekai Douchuu 2nd Season", + "english": "Tsukimichi -Moonlit Fantasy- Season 2", + "native": "月が導く異世界道中 第二幕", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 8, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 54265, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 1, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 52701, + "mal_id": 52701, + "title": "Dungeon Meshi", + "english": "Delicious in Dungeon", + "native": "ダンジョン飯", + "synonyms": [ + "Dungeon Food", + "Dungeon Dining" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 4, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 4, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 55866, + "mal_id": 55866, + "title": "Yubisaki to Renren", + "english": "A Sign of Affection", + "native": "ゆびさきと恋々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 160389, + "mal_id": 54265, + "title": "Kekkon Yubiwa Monogatari", + "english": "Tales of Wedding Rings", + "native": "結婚指輪物語", + "synonyms": [ + "ตำนานผู้กล้าแห่งแหวน", + "婚戒物語" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 49613, + "mal_id": 49613, + "title": "Chiyu Mahou no Machigatta Tsukaikata", + "english": "The Wrong Way to Use Healing Magic", + "native": "治癒魔法の間違った使い方", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 6, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 156891, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [ + "การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย", + "最弱魔物使開始了撿垃圾之旅。", + "Слабейшая укротительница отправляется в путешествие по сбору мусора", + "Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 53590, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 17, + "score": 0.8836, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 156891, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [ + "การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย", + "最弱魔物使開始了撿垃圾之旅。", + "Слабейшая укротительница отправляется в путешествие по сбору мусора", + "Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 52816, + "mal_id": 52816, + "title": "Majo to Yajuu", + "english": "The Witch and the Beast", + "native": "魔女と野獣", + "synonyms": [ + "Witch and the Beast" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 12, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 0.8614, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 156891, + "mal_id": 53590, + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "english": "The Weakest Tamer Began a Journey to Pick Up Trash", + "native": "最弱テイマーはゴミ拾いの旅を始めました。", + "synonyms": [ + "การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย", + "最弱魔物使開始了撿垃圾之旅。", + "Слабейшая укротительница отправляется в путешествие по сбору мусора", + "Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 50803, + "mal_id": 50803, + "title": "Jaku-Chara Tomozaki-kun 2nd Stage", + "english": "Bottom-Tier Character Tomozaki 2nd Stage", + "native": "弱キャラ友崎くん 2nd STAGE", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 161476, + "mal_id": 54449, + "title": "Ishura", + "english": "ISHURA", + "native": "異修羅", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 54449, + "mal_id": 54449, + "title": "Ishura", + "english": "Ishura", + "native": "異修羅", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 2, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 161476, + "mal_id": 54449, + "title": "Ishura", + "english": "ISHURA", + "native": "異修羅", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2024, + "start_date": { + "year": 2024, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 51180, + "mal_id": 51180, + "title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season", + "english": "Classroom of the Elite III", + "native": "ようこそ実力至上主義の教室へ 3rd Season", + "synonyms": [ + "Welcome to the Classroom of the Elite", + "You-jitsu 3rd Season", + "You-zitsu 3rd Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2024, + "start_date": { + "day": 3, + "month": 1, + "year": 2024 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2025-fall.json b/test/fixtures/aggregate/season_matrix/candidates/2025-fall.json new file mode 100644 index 0000000..493aa29 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2025-fall.json @@ -0,0 +1,6306 @@ +{ + "year": 2025, + "season": "fall", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 181447, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai Shite mo Yoroshii Deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "さいひと", + "SaiHito", + "สุดท้ายนี้ขอเพียงอย่างหนึ่งได้ไหมคะ" + ], + "format": "ONA", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 184322, + "mal_id": 60303, + "title": "Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends", + "My Gift LVL 9999 Unlimited Gacha", + "ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น", + "Mugen Gacha" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 179302, + "mal_id": 59267, + "title": "SANDA", + "english": "SANDA", + "native": "SANDA", + "synonyms": [ + "サンダ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 194884, + "mal_id": 61903, + "title": "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", + "english": "Kaguya-sama: Love Is War -Stairway to Adulthood-", + "native": "かぐや様は告らせたい 大人への階段", + "synonyms": [ + "Kaguya-sama: Love Is War - The Grown-Up Staircase" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 198188, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ 17-26", + "synonyms": [ + "A Couple Clucking Chickens Were Still Kickin' in the Schoolyard", + "Sasaki Stopped a Bullet", + "Love is Blind", + "Shikaku", + "Mermaid Rhapsody", + "Woke-Up-as-a-Girl Syndrome", + "Nayuta of the Prophecy", + "Sisters", + " 庭には二羽 ニワトリがいた。", + "佐々木くんが 銃弾止めた", + "恋は盲目", + "シカク", + "人魚ラプソディ", + "目が覚めたら 女の子になっていた病 ", + "予言のナユタ", + "妹の姉" + ], + "format": "MOVIE", + "episodes": 8, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 180523, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [ + "A Wild Last Boss Appears!", + "อุบัติการณ์ลาสบอสสุดแกร่ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 169969, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill nanka Ira Nakattan Daga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. I Don't Need Any Skills, It's Okay. The hero who has no class.", + "The Unemployed Hero Does Not Need Something Like Skills", + "ผู้กล้าไร้อาชีพ" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 24 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 187663, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 185801, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai Shitai 2", + "english": "Let This Grieving Soul Retire Cour 2", + "native": "嘆きの亡霊は引退したい 2", + "synonyms": [ + "Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2", + "Let This Grieving Soul Retire Sequel", + "嘆きの亡霊は引退したい 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 195240, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray 2nd Cour", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [ + "Umamusume: Cinderella Gray Cour 2" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 61026, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero's", + "native": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 59846, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "Saihito" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 60303, + "mal_id": 60303, + "title": "Shinjiteita Nakama-tachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakama-tachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me", + "But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends and Am Out For Revenge on My Former Party Members and the World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 59644, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 59267, + "mal_id": 59267, + "title": "Sanda", + "english": "Sanda", + "native": "SANDA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 61903, + "mal_id": 61903, + "title": "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", + "english": "Kaguya-sama: Love Is War - Stairway to Adulthood", + "native": "かぐや様は告らせたい 大人への階段", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 56854, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. No Need Any Skills", + "It's Okay.", + "The Classless Hero: I Didn't Need Skills Anyway" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 59517, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Chiramune", + "Chitose-kun is Inside a Ramune Bottle", + "Ramune no Bin ni Shizunda Biidama no Tsuki" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 62405, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ17-26", + "synonyms": [ + "Niwa ni wa Niwa Niwatori ga Ita.", + "Sasaki-kun ga Juudan Tometa", + "Koi wa Moumoku", + "Shikaku", + "Ningyo Rhapsody", + "Me ga Sametara Onnanoko ni Natteita Yamai", + "Yogen no Nayuta", + "Imouto no Ane" + ], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 11, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 61917, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "Towa no Yugure" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 60168, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 61174, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 61276, + "mal_id": 61276, + "title": "Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "A Court Magician", + "Who Was Focused on Supportive Magic Because His Allies Were too Weak", + "Aims to Become the Strongest After Being Banished", + "Story of Lasting Period" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 60531, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [ + "Awkward Senpai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 60162, + "mal_id": 60162, + "title": "Akujiki Reijou to Kyouketsu Koushaku", + "english": "Pass the Monster Meat, Milady!", + "native": "悪食令嬢と狂血公爵", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 60254, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [ + "Mr. Yano's Ordinary Days" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 61930, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray Part 2", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 1, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 1.0366, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 5, + "score": 1.0306, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 153800, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン3", + "synonyms": [ + "OPM3", + "ون بنش مان 3", + "رجل اللكمة الواحدة 3", + "วันพันช์แมน ซีซั่น 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 5, + "score": 1.4333, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177937, + "mal_id": 59027, + "title": "SPY×FAMILY Season 3", + "english": "SPY x FAMILY Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [ + "SxF 3", + "スパイファミリー 3", + "SPY×FAMILY ซีซั่น 3", + "SPY×FAMILY 間諜家家酒 Season 3", + "間諜家家酒 Season 3" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 5, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 1, + "score": 1.1061, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 1.0806, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.0294, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 182896, + "mal_id": 60098, + "title": "Boku no Hero Academia FINAL SEASON", + "english": "My Hero Academia FINAL SEASON", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "Boku no Hero Academia 8", + "My Hero Academia 8", + "BNHA 8", + "MHA 8", + "Моя геройская академия 8", + "ヒロアカ 8", + "มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 61026, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero's", + "native": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 0.8939, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 56854, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. No Need Any Skills", + "It's Okay.", + "The Classless Hero: I Didn't Need Skills Anyway" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 186794, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero’s", + "native": "暗殺者である俺のステータスが 勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo", + "ステつよ", + "ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59846, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "Saihito" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 181447, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai Shite mo Yoroshii Deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "さいひと", + "SaiHito", + "สุดท้ายนี้ขอเพียงอย่างหนึ่งได้ไหมคะ" + ], + "format": "ONA", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59846, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "Saihito" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.8828, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 181447, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai Shite mo Yoroshii Deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "さいひと", + "SaiHito", + "สุดท้ายนี้ขอเพียงอย่างหนึ่งได้ไหมคะ" + ], + "format": "ONA", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 2, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 1, + "score": 1.0652, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 18, + "score": 1.0217, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 162669, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season 3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 184322, + "mal_id": 60303, + "title": "Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends", + "My Gift LVL 9999 Unlimited Gacha", + "ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น", + "Mugen Gacha" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 60303, + "mal_id": 60303, + "title": "Shinjiteita Nakama-tachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakama-tachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me", + "But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends and Am Out For Revenge on My Former Party Members and the World" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 2, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 184322, + "mal_id": 60303, + "title": "Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends", + "My Gift LVL 9999 Unlimited Gacha", + "ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น", + "Mugen Gacha" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 8, + "score": 0.8876, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 184322, + "mal_id": 60303, + "title": "Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends", + "My Gift LVL 9999 Unlimited Gacha", + "ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น", + "Mugen Gacha" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 24, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 184322, + "mal_id": 60303, + "title": "Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift \"Mugen Gacha\" de Level 9999 no Nakamatachi wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & \"Zamaa!\" Shimasu!", + "english": "My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I'm Out for Revenge!", + "native": "信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します!", + "synonyms": [ + "Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends", + "My Gift LVL 9999 Unlimited Gacha", + "ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น", + "Mugen Gacha" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 61930, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray Part 2", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 24, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 61930, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray Part 2", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 61174, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 2, + "score": 0.9536, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 170577, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with my Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "とんでもスキルで異世界放浪メシ 第2期", + "Tondemo Skill de Isekai Hourou Meshi 2nd Season", + "สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2", + "Кулинар со странными навыками в параллельном мире 2", + "擁有超常技能的異世界流浪美食家 S2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 179302, + "mal_id": 59267, + "title": "SANDA", + "english": "SANDA", + "native": "SANDA", + "synonyms": [ + "サンダ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59267, + "mal_id": 59267, + "title": "Sanda", + "english": "Sanda", + "native": "SANDA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 5, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 179302, + "mal_id": 59267, + "title": "SANDA", + "english": "SANDA", + "native": "SANDA", + "synonyms": [ + "サンダ" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 17, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 60168, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.925, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 16, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 61917, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "Towa no Yugure" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 129195, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "ImoUza", + "いもウザ", + "น้องสาวเพื่อนตัวร้ายกับนายจืดจาง" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 60254, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [ + "Mr. Yano's Ordinary Days" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 194884, + "mal_id": 61903, + "title": "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", + "english": "Kaguya-sama: Love Is War -Stairway to Adulthood-", + "native": "かぐや様は告らせたい 大人への階段", + "synonyms": [ + "Kaguya-sama: Love Is War - The Grown-Up Staircase" + ], + "format": "SPECIAL", + "episodes": 2, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 12, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 61903, + "mal_id": 61903, + "title": "Kaguya-sama wa Kokurasetai: Otona e no Kaidan", + "english": "Kaguya-sama: Love Is War - Stairway to Adulthood", + "native": "かぐや様は告らせたい 大人への階段", + "synonyms": [], + "format": "TV Special", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 31, + "month": 12, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 198188, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ 17-26", + "synonyms": [ + "A Couple Clucking Chickens Were Still Kickin' in the Schoolyard", + "Sasaki Stopped a Bullet", + "Love is Blind", + "Shikaku", + "Mermaid Rhapsody", + "Woke-Up-as-a-Girl Syndrome", + "Nayuta of the Prophecy", + "Sisters", + " 庭には二羽 ニワトリがいた。", + "佐々木くんが 銃弾止めた", + "恋は盲目", + "シカク", + "人魚ラプソディ", + "目が覚めたら 女の子になっていた病 ", + "予言のナユタ", + "妹の姉" + ], + "format": "MOVIE", + "episodes": 8, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 62405, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ17-26", + "synonyms": [ + "Niwa ni wa Niwa Niwatori ga Ita.", + "Sasaki-kun ga Juudan Tometa", + "Koi wa Moumoku", + "Shikaku", + "Ningyo Rhapsody", + "Me ga Sametara Onnanoko ni Natteita Yamai", + "Yogen no Nayuta", + "Imouto no Ane" + ], + "format": "ONA", + "episodes": 8, + "season": null, + "year": null, + "start_date": { + "day": 8, + "month": 11, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 18, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 198188, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ 17-26", + "synonyms": [ + "A Couple Clucking Chickens Were Still Kickin' in the Schoolyard", + "Sasaki Stopped a Bullet", + "Love is Blind", + "Shikaku", + "Mermaid Rhapsody", + "Woke-Up-as-a-Girl Syndrome", + "Nayuta of the Prophecy", + "Sisters", + " 庭には二羽 ニワトリがいた。", + "佐々木くんが 銃弾止めた", + "恋は盲目", + "シカク", + "人魚ラプソディ", + "目が覚めたら 女の子になっていた病 ", + "予言のナユタ", + "妹の姉" + ], + "format": "MOVIE", + "episodes": 8, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 198188, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ 17-26", + "synonyms": [ + "A Couple Clucking Chickens Were Still Kickin' in the Schoolyard", + "Sasaki Stopped a Bullet", + "Love is Blind", + "Shikaku", + "Mermaid Rhapsody", + "Woke-Up-as-a-Girl Syndrome", + "Nayuta of the Prophecy", + "Sisters", + " 庭には二羽 ニワトリがいた。", + "佐々木くんが 銃弾止めた", + "恋は盲目", + "シカク", + "人魚ラプソディ", + "目が覚めたら 女の子になっていた病 ", + "予言のナユタ", + "妹の姉" + ], + "format": "MOVIE", + "episodes": 8, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59517, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Chiramune", + "Chitose-kun is Inside a Ramune Bottle", + "Ramune no Bin ni Shizunda Biidama no Tsuki" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 198188, + "mal_id": 62405, + "title": "Fujimoto Tatsuki 17-26", + "english": "Tatsuki Fujimoto 17-26", + "native": "藤本タツキ 17-26", + "synonyms": [ + "A Couple Clucking Chickens Were Still Kickin' in the Schoolyard", + "Sasaki Stopped a Bullet", + "Love is Blind", + "Shikaku", + "Mermaid Rhapsody", + "Woke-Up-as-a-Girl Syndrome", + "Nayuta of the Prophecy", + "Sisters", + " 庭には二羽 ニワトリがいた。", + "佐々木くんが 銃弾止めた", + "恋は盲目", + "シカク", + "人魚ラプソディ", + "目が覚めたら 女の子になっていた病 ", + "予言のナユタ", + "妹の姉" + ], + "format": "MOVIE", + "episodes": 8, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 17 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 61026, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero's", + "native": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 180523, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [ + "A Wild Last Boss Appears!", + "อุบัติการณ์ลาสบอสสุดแกร่ง" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 27 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59644, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59517, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Chiramune", + "Chitose-kun is Inside a Ramune Bottle", + "Ramune no Bin ni Shizunda Biidama no Tsuki" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 23, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 60254, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [ + "Mr. Yano's Ordinary Days" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.911, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 61174, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 0.8896, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 180082, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Ramune no Bin ni Shizunda Biidama no Tsuki", + "ラムネの瓶に沈んだビー玉の月", + "Chiramune", + "チラムネ", + "ชีวิตรสโซดาของจิโตะเสะคุง" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 56854, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. No Need Any Skills", + "It's Okay.", + "The Classless Hero: I Didn't Need Skills Anyway" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 60168, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 22, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 60162, + "mal_id": 60162, + "title": "Akujiki Reijou to Kyouketsu Koushaku", + "english": "Pass the Monster Meat, Milady!", + "native": "悪食令嬢と狂血公爵", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 14, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 183385, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe", + "わたたべ", + "หากวันใดใครตนนั้นใคร่กลืนกิน" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59517, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Chiramune", + "Chitose-kun is Inside a Ramune Bottle", + "Ramune no Bin ni Shizunda Biidama no Tsuki" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 169969, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill nanka Ira Nakattan Daga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. I Don't Need Any Skills, It's Okay. The hero who has no class.", + "The Unemployed Hero Does Not Need Something Like Skills", + "ผู้กล้าไร้อาชีพ" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 24 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 56854, + "mal_id": 56854, + "title": "Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga", + "english": "Hero Without a Class: Who Even Needs Skills?!", + "native": "無職の英雄 別にスキルなんか要らなかったんだが", + "synonyms": [ + "The Hero Who Has No Class. No Need Any Skills", + "It's Okay.", + "The Classless Hero: I Didn't Need Skills Anyway" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 61917, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "Towa no Yugure" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 21, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 60531, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [ + "Awkward Senpai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 18, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 23, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 60254, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [ + "Mr. Yano's Ordinary Days" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 2, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 195153, + "mal_id": 61917, + "title": "Towa no Yuugure", + "english": "Dusk Beyond the End of the World", + "native": "永久のユウグレ", + "synonyms": [ + "ยามอัสดงกัลปาวสาน", + "Bersamamu Kala Senjanya Dunia" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 26 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 61276, + "mal_id": 61276, + "title": "Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "A Court Magician", + "Who Was Focused on Supportive Magic Because His Allies Were too Weak", + "Aims to Become the Strongest After Being Banished", + "Story of Lasting Period" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59644, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 4, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59846, + "mal_id": 59846, + "title": "Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka", + "english": "May I Ask for One Final Thing?", + "native": "最後にひとつだけお願いしてもよろしいでしょうか", + "synonyms": [ + "Saihito" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 3, + "score": 0.922, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 61026, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero's", + "native": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 1, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 188487, + "mal_id": 61276, + "title": "Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, Aims To Become The Strongest After Being Banished", + "Story of Lasting Period", + "Hojo Maho", + "จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 187663, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 61174, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 6, + "score": 0.8952, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 187663, + "mal_id": 61174, + "title": "Sozai Saishuka no Isekai Ryokouki", + "english": "A Gatherer's Adventure in Isekai", + "native": "素材採取家の異世界旅行記", + "synonyms": [ + "Material Collector's Another World Travels" + ], + "format": "ONA", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60564, + "mal_id": 60564, + "title": "Ranma ½ (2024) 2nd Season", + "english": "Ranma ½ (2024) Season 2", + "native": "らんま1/2 第2期", + "synonyms": [ + "Ranma 1/2 (2024) 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 5, + "score": 0.9898, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 2, + "score": 0.9815, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 1, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59027, + "mal_id": 59027, + "title": "Spy x Family Season 3", + "english": "Spy x Family Season 3", + "native": "SPY×FAMILY Season 3", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 185731, + "mal_id": 60564, + "title": "Ranma 1/2 (2024) 2nd Season", + "english": "Ranma1/2 (2024) Season 2", + "native": "らんま1/2 (2024) 第2期", + "synonyms": [ + "Ranma1/2 – sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 185801, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai Shitai 2", + "english": "Let This Grieving Soul Retire Cour 2", + "native": "嘆きの亡霊は引退したい 2", + "synonyms": [ + "Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2", + "Let This Grieving Soul Retire Sequel", + "嘆きの亡霊は引退したい 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 24, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 185801, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai Shitai 2", + "english": "Let This Grieving Soul Retire Cour 2", + "native": "嘆きの亡霊は引退したい 2", + "synonyms": [ + "Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2", + "Let This Grieving Soul Retire Sequel", + "嘆きの亡霊は引退したい 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 61930, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray Part 2", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 185801, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai Shitai 2", + "english": "Let This Grieving Soul Retire Cour 2", + "native": "嘆きの亡霊は引退したい 2", + "synonyms": [ + "Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2", + "Let This Grieving Soul Retire Sequel", + "嘆きの亡霊は引退したい 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.8706, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 185801, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai Shitai 2", + "english": "Let This Grieving Soul Retire Cour 2", + "native": "嘆きの亡霊は引退したい 2", + "synonyms": [ + "Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2", + "Let This Grieving Soul Retire Sequel", + "嘆きの亡霊は引退したい 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 60531, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [ + "Awkward Senpai" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 2, + "score": 0.9828, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 60098, + "mal_id": 60098, + "title": "Boku no Hero Academia: Final Season", + "english": "My Hero Academia Final Season", + "native": "僕のヒーローアカデミア FINAL SEASON", + "synonyms": [ + "My Hero Academia 8" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 54703, + "mal_id": 54703, + "title": "Fumetsu no Anata e Season 3", + "english": "To Your Eternity Season 3", + "native": "不滅のあなたへ Season3", + "synonyms": [], + "format": "TV", + "episodes": 22, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 0, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 52807, + "mal_id": 52807, + "title": "One Punch Man 3", + "english": "One-Punch Man Season 3", + "native": "ワンパンマン 3", + "synonyms": [ + "One Punch Man 3rd Season", + "OPM 3" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 12, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185575, + "mal_id": 60531, + "title": "Bukiyou na Senpai.", + "english": "My Awkward Senpai", + "native": "不器用な先輩。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 60254, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [ + "Mr. Yano's Ordinary Days" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 1, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 13, + "score": 0.9262, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59517, + "mal_id": 59517, + "title": "Chitose-kun wa Ramune Bin no Naka", + "english": "Chitose Is in the Ramune Bottle", + "native": "千歳くんはラムネ瓶のなか", + "synonyms": [ + "Chiramune", + "Chitose-kun is Inside a Ramune Bottle", + "Ramune no Bin ni Shizunda Biidama no Tsuki" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 8, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 47158, + "mal_id": 47158, + "title": "Tomodachi no Imouto ga Ore ni dake Uzai", + "english": "My Friend's Little Sister Has It In for Me!", + "native": "友達の妹が俺にだけウザい", + "synonyms": [ + "My friend's sister annoying only me.", + "Imouza" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59644, + "mal_id": 59644, + "title": "Yasei no Last Boss ga Arawareta!", + "english": "A Wild Last Boss Appeared!", + "native": "野生のラスボスが現れた!", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 14, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183965, + "mal_id": 60254, + "title": "Yano-kun no Futsuu no Hibi", + "english": "Yano-kun's Ordinary Days", + "native": "矢野くんの普通の日々", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 195240, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray 2nd Cour", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [ + "Umamusume: Cinderella Gray Cour 2" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 61930, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray Part 2", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 5, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 14, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 195240, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray 2nd Cour", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [ + "Umamusume: Cinderella Gray Cour 2" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60619, + "mal_id": 60619, + "title": "Nageki no Bourei wa Intai shitai Part 2", + "english": "Let This Grieving Soul Retire Part 2", + "native": "嘆きの亡霊は引退したい 第2クール", + "synonyms": [ + "Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party" + ], + "format": "TV", + "episodes": 11, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 6, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 6, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 195240, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray 2nd Cour", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [ + "Umamusume: Cinderella Gray Cour 2" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 57025, + "mal_id": 57025, + "title": "Tondemo Skill de Isekai Hourou Meshi 2", + "english": "Campfire Cooking in Another World with My Absurd Skill Season 2", + "native": "とんでもスキルで異世界放浪メシ2", + "synonyms": [ + "Regarding the Display of an Outrageous Skill Which Has Incredible Powers", + "Tonsuki" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 8, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 195240, + "mal_id": 61930, + "title": "Uma Musume: Cinderella Gray Part 2", + "english": "Umamusume: Cinderella Gray 2nd Cour", + "native": "ウマ娘 シンデレラグレイ 第2クール", + "synonyms": [ + "Umamusume: Cinderella Gray Cour 2" + ], + "format": "TV", + "episodes": 10, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 60162, + "mal_id": 60162, + "title": "Akujiki Reijou to Kyouketsu Koushaku", + "english": "Pass the Monster Meat, Milady!", + "native": "悪食令嬢と狂血公爵", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 10, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59267, + "mal_id": 59267, + "title": "Sanda", + "english": "Sanda", + "native": "SANDA", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 17, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 60168, + "mal_id": 60168, + "title": "Watashi wo Tabetai, Hitodenashi", + "english": "This Monster Wants to Eat Me", + "native": "私を喰べたい、ひとでなし", + "synonyms": [ + "A Monster Wants to Eat Me", + "WataTabe" + ], + "format": "TV", + "episodes": 13, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 2, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 0.8711, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 61276, + "mal_id": 61276, + "title": "Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu", + "english": "The Banished Court Magician Aims to Become the Strongest", + "native": "味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す", + "synonyms": [ + "A Court Magician", + "Who Was Focused on Supportive Magic Because His Allies Were too Weak", + "Aims to Become the Strongest After Being Banished", + "Story of Lasting Period" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 4, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.871, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 61026, + "mal_id": 61026, + "title": "Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga", + "english": "My Status as an Assassin Obviously Exceeds the Hero's", + "native": "暗殺者である俺のステータスが勇者よりも明らかに強いのだが", + "synonyms": [ + "Sutetsuyo" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 7, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 0.8684, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 173692, + "mal_id": 57888, + "title": "Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha.", + "english": "Dad is a Hero, Mom is a Spirit, I'm a Reincarnator", + "native": "父は英雄、母は精霊、娘の私は転生者。", + "synonyms": [ + "Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits", + "My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator.", + "Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator", + "ははのは", + "Hahanoha", + "ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด" + ], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "year": 2025, + "month": 10, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 60162, + "mal_id": 60162, + "title": "Akujiki Reijou to Kyouketsu Koushaku", + "english": "Pass the Monster Meat, Milady!", + "native": "悪食令嬢と狂血公爵", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "FALL", + "year": 2025, + "start_date": { + "day": 3, + "month": 10, + "year": 2025 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2025-spring.json b/test/fixtures/aggregate/season_matrix/candidates/2025-spring.json new file mode 100644 index 0000000..30f5efc --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2025-spring.json @@ -0,0 +1,6091 @@ +{ + "year": 2025, + "season": "spring", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 167336, + "mal_id": 56038, + "title": "Lazarus", + "english": "LAZARUS", + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 180367, + "mal_id": 59597, + "title": "Witch Watch", + "english": "WITCH WATCH", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 182814, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "KOWLOON GENERIC ROMANCE", + "native": "九龍ジェネリックロマンス", + "synonyms": [ + "九龍GR", + "เกาลูน อุบัติรักปริศนาลับ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 180516, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 183133, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~", + "synonyms": [ + "使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 181244, + "mal_id": 59833, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3: BONUS STAGE", + "english": "KONOSUBA -God's Blessing on This Wonderful World! 3 -BONUS STAGE-", + "native": "この素晴らしい世界に祝福を!3ーBONUS STAGEー", + "synonyms": [ + "KONOSUBA -God's blessing on this wonderful world! 3 OVA", + "Kono Subarashii Sekai ni Shukufuku wo! 3 OVA", + "この素晴らしい世界に祝福を!3 OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 180675, + "mal_id": 59675, + "title": "Apocalypse Hotel", + "english": "Apocalypse Hotel", + "native": "アポカリプスホテル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 143200, + "mal_id": 50694, + "title": "Summer Pockets", + "english": "Summer Pockets", + "native": "Summer Pockets", + "synonyms": [ + "サマーポケッツ", + "Samapoke", + "サマポケ" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 185213, + "mal_id": 60449, + "title": "Kidou Senshi Gundam GQuuuuuuX", + "english": "Mobile Suit Gundam GQuuuuuuX", + "native": "機動戦士Gundam GQuuuuuuX", + "synonyms": [ + "機動戦士Gundam ジークアクス", + "Mobile Suit Gundam GQuuuuuuX -Beginning-" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 183275, + "mal_id": 60157, + "title": "Kanpeki Sugite Kawai-ge ga Nai to Konyaku Haki Sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 60489, + "mal_id": 60489, + "title": "Takopii no Genzai", + "english": "Takopi's Original Sin", + "native": "タコピーの原罪", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 6, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 56038, + "mal_id": 56038, + "title": "Lazarus", + "english": null, + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 53447, + "mal_id": 53447, + "title": "Tu Bian Yingxiong X", + "english": "To Be Hero X", + "native": "凸变英雄X", + "synonyms": [], + "format": "ONA", + "episodes": 24, + "season": null, + "year": null, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 59160, + "mal_id": 59160, + "title": "Wind Breaker Season 2", + "english": "Wind Breaker Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 59597, + "mal_id": 59597, + "title": "Witch Watch", + "english": "Witch Watch", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 49818, + "mal_id": 49818, + "title": "Guimi Zhi Zhu: Xiaochou Pian", + "english": "Lord of Mysteries", + "native": "诡秘之主 小丑篇", + "synonyms": [ + "Lord of Mysteries: Clown Arc", + "Lord of the Mysteries", + "LOTM" + ], + "format": "ONA", + "episodes": 13, + "season": null, + "year": null, + "start_date": { + "day": 28, + "month": 6, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 59452, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 60593, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia Illegals", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 58359, + "mal_id": 58359, + "title": "Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 60083, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "Kowloon Generic Romance", + "native": "九龍ジェネリックロマンス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 50738, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "Slime Taoshite 300-nen", + "Shiranai Uchi ni Level Max ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 49778, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 31, + "month": 3, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 59636, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 59360, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami deshite", + "english": "Rock Is a Lady's Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 59833, + "mal_id": 59833, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3: Bonus Stage", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3 OVA", + "native": "この素晴らしい世界に祝福を!3ーBONUS STAGEー", + "synonyms": [], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59160, + "mal_id": 59160, + "title": "Wind Breaker Season 2", + "english": "Wind Breaker Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 22, + "score": 1.0366, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 21, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 1.0091, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 149118, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season", + "หน่วยผจญคนไฟลุก ภาค 3" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 167336, + "mal_id": 56038, + "title": "Lazarus", + "english": "LAZARUS", + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 56038, + "mal_id": 56038, + "title": "Lazarus", + "english": null, + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 12, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 167336, + "mal_id": 56038, + "title": "Lazarus", + "english": "LAZARUS", + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 9, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 167336, + "mal_id": 56038, + "title": "Lazarus", + "english": "LAZARUS", + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 60593, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia Illegals", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59160, + "mal_id": 59160, + "title": "Wind Breaker Season 2", + "english": "Wind Breaker Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 21, + "score": 1.4333, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 22, + "score": 1.1667, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 0, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 13, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 178680, + "mal_id": 59160, + "title": "WIND BREAKER Season 2", + "english": "WIND BREAKER Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "WB 2", + "ウィンブレ2", + " WBK 2", + "ウィンドブレイカー Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 180367, + "mal_id": 59597, + "title": "Witch Watch", + "english": "WITCH WATCH", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 59597, + "mal_id": 59597, + "title": "Witch Watch", + "english": "Witch Watch", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 12, + "score": 1.0263, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 180367, + "mal_id": 59597, + "title": "Witch Watch", + "english": "WITCH WATCH", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 8, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 180367, + "mal_id": 59597, + "title": "Witch Watch", + "english": "WITCH WATCH", + "native": "ウィッチウォッチ", + "synonyms": [], + "format": "TV", + "episodes": 25, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 1.0301, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 59452, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 12, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 20, + "score": 0.9031, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 183161, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は 何をする? ", + "synonyms": [ + "TBATE", + "終末起點", + "Начало после конца" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 59452, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 8, + "score": 1.0301, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 12, + "score": 0.9474, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 21, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 20, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 179955, + "mal_id": 59452, + "title": "Katainaka no Ossan, Kensei ni Naru", + "english": "From Old Country Bumpkin to Master Swordsman", + "native": "片田舎のおっさん、剣聖になる", + "synonyms": [ + "Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore wo Hanattekurenai Ken", + "片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~", + "Wieśniak mistrzem miecza", + "De Caipira a Mestre Espadachim", + "Pria Tua Pedesaan Menjadi Pendekar Pedang Elite", + "Daripada Orang Kampung Biasa kepada Mahaguru Pedang", + "Vom Landei zum Schwertheiligen", + "De campesino cuarentón a espadachín legendario", + "Da campagnolo stagionato a gran maestro di spada", + "Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor", + "من ريفي كهل إلى معلّم مبارزة", + "सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक", + "ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง", + "乡下大叔成为剑圣", + "鄉下大叔成為劍聖", + "촌구석 아저씨, 검성이 되다" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 60593, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia Illegals", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49778, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 31, + "month": 3, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 13, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 185736, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia ILLEGALS", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [ + "MHA Vigilantes", + "BNHA Vigilantes" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 58359, + "mal_id": 58359, + "title": "Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 58359, + "mal_id": 58359, + "title": "Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 0.9658, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 9, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 60593, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia Illegals", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 20, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 175872, + "mal_id": 58359, + "title": "Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "闇ヒーラー", + "Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba", + "瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活", + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 182814, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "KOWLOON GENERIC ROMANCE", + "native": "九龍ジェネリックロマンス", + "synonyms": [ + "九龍GR", + "เกาลูน อุบัติรักปริศนาลับ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 60083, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "Kowloon Generic Romance", + "native": "九龍ジェネリックロマンス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 19, + "score": 0.8881, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 182814, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "KOWLOON GENERIC ROMANCE", + "native": "九龍ジェネリックロマンス", + "synonyms": [ + "九龍GR", + "เกาลูน อุบัติรักปริศนาลับ" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 19, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 56038, + "mal_id": 56038, + "title": "Lazarus", + "english": null, + "native": "ラザロ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 23, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 59360, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami deshite", + "english": "Rock Is a Lady's Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 20, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 153554, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、 しないっ!!)", + "synonyms": [ + "だんじょる", + "Danjoru", + "Can a Boy and Girl Friendship Hold Up? (No It Can't)", + "เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!)" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49778, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 31, + "month": 3, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 18, + "score": 0.939, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 19, + "score": 0.9176, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 14, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 143598, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter: Kijin Gentosho", + "Le memorie del mezzo demone" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 31 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 50738, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "Slime Taoshite 300-nen", + "Shiranai Uchi ni Level Max ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59457, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On", + "Takamine-san", + "Please Put These On", + "Takamine-san" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 49778, + "mal_id": 49778, + "title": "Kijin Gentoushou", + "english": "Sword of the Demon Hunter: Kijin Gentosho", + "native": "鬼人幻燈抄", + "synonyms": [ + "Sword of the Demon Hunter" + ], + "format": "TV", + "episodes": 24, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 31, + "month": 3, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 58359, + "mal_id": 58359, + "title": "Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 0.8855, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179965, + "mal_id": 59457, + "title": "Haite Kudasai, Takamine-san", + "english": "Please Put Them On, Takamine-san", + "native": "履いてください、鷹峰さん", + "synonyms": [ + "Let Me Put Your Panties On, Takamine-san", + "Please Put These On, Takamine" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 18, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9127, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 0, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 174802, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "รักว้าวุ่นในบ้านชิอุนจิ" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 59360, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami deshite", + "english": "Rock Is a Lady's Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 50738, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "Slime Taoshite 300-nen", + "Shiranai Uchi ni Level Max ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 19, + "score": 0.9132, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.8964, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 0, + "score": 0.8838, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 143337, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni", + "english": "I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "スライム倒して300年、知らないうちにレベルMAXになってました 第2期", + "Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180516, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 59636, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 19, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180516, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 21, + "score": 0.8607, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180516, + "mal_id": 59636, + "title": "Uma Musume: Cinderella Gray", + "english": "Umamusume: Cinderella Gray", + "native": "ウマ娘 シンデレラグレイ", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 183133, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~", + "synonyms": [ + "使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 8, + "score": 0.8815, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 183133, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~", + "synonyms": [ + "使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 30 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60146, + "mal_id": 60146, + "title": "Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru?", + "english": "The Beginning After the End", + "native": "最強の王様、二度目の人生は何をする?", + "synonyms": [ + "TBATE" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 2, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 181244, + "mal_id": 59833, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3: BONUS STAGE", + "english": "KONOSUBA -God's Blessing on This Wonderful World! 3 -BONUS STAGE-", + "native": "この素晴らしい世界に祝福を!3ーBONUS STAGEー", + "synonyms": [ + "KONOSUBA -God's blessing on this wonderful world! 3 OVA", + "Kono Subarashii Sekai ni Shukufuku wo! 3 OVA", + "この素晴らしい世界に祝福を!3 OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59833, + "mal_id": 59833, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3: Bonus Stage", + "english": "KonoSuba: God's Blessing on This Wonderful World! 3 OVA", + "native": "この素晴らしい世界に祝福を!3ーBONUS STAGEー", + "synonyms": [], + "format": "OVA", + "episodes": 2, + "season": null, + "year": null, + "start_date": { + "day": 25, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.8658, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 181244, + "mal_id": 59833, + "title": "Kono Subarashii Sekai ni Shukufuku wo! 3: BONUS STAGE", + "english": "KONOSUBA -God's Blessing on This Wonderful World! 3 -BONUS STAGE-", + "native": "この素晴らしい世界に祝福を!3ーBONUS STAGEー", + "synonyms": [ + "KONOSUBA -God's blessing on this wonderful world! 3 OVA", + "Kono Subarashii Sekai ni Shukufuku wo! 3 OVA", + "この素晴らしい世界に祝福を!3 OVA" + ], + "format": "OVA", + "episodes": 2, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 3, + "day": 14 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 1.0079, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 60140, + "mal_id": 60140, + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "english": "The Unaware Atelier Meister", + "native": "勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話", + "synonyms": [ + "Kanchigai no Koubou Nushi", + "The Unaware Atelier Master" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 12, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 21, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 0, + "score": 0.8824, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 183274, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu! ", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "OreAku", + "我是星際國家的惡德領主!", + "Aku Bangsawan Korup di Kekaisaran Antargalaksi!" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 59360, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami deshite", + "english": "Rock Is a Lady's Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 60154, + "mal_id": 60154, + "title": "Ore wa Seikan Kokka no Akutoku Ryoushu!", + "english": "I'm the Evil Lord of an Intergalactic Empire!", + "native": "俺は星間国家の悪徳領主!", + "synonyms": [ + "I am the Villainous Lord of the Interstellar Nation", + "OreAku" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 6, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 12, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 52709, + "mal_id": 52709, + "title": "Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!)", + "english": "Can a Boy-Girl Friendship Survive?", + "native": "男女の友情は成立する?(いや、しないっ!!)", + "synonyms": [ + "Can a Boy and Girl Friendship Hold Up? (No", + "It Can't!!)", + "Danjoru" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 14, + "score": 0.8953, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 179694, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami Deshite", + "english": "Rock is a Lady’s Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [ + "Rock wa Shukujo no Tashinami de shite" + ], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 50738, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "Slime Taoshite 300-nen", + "Shiranai Uchi ni Level Max ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 23, + "score": 0.9082, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 180675, + "mal_id": 59675, + "title": "Apocalypse Hotel", + "english": "Apocalypse Hotel", + "native": "アポカリプスホテル", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 59360, + "mal_id": 59360, + "title": "Rock wa Lady no Tashinami deshite", + "english": "Rock Is a Lady's Modesty", + "native": "ロックは淑女の嗜みでして", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 10, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 143200, + "mal_id": 50694, + "title": "Summer Pockets", + "english": "Summer Pockets", + "native": "Summer Pockets", + "synonyms": [ + "サマーポケッツ", + "Samapoke", + "サマポケ" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 58359, + "mal_id": 58359, + "title": "Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru", + "english": "The Brilliant Healer's New Life in the Shadows", + "native": "一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる", + "synonyms": [ + "Yami Healer" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 3, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 143200, + "mal_id": 50694, + "title": "Summer Pockets", + "english": "Summer Pockets", + "native": "Summer Pockets", + "synonyms": [ + "サマーポケッツ", + "Samapoke", + "サマポケ" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 9, + "score": 0.8902, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 143200, + "mal_id": 50694, + "title": "Summer Pockets", + "english": "Summer Pockets", + "native": "Summer Pockets", + "synonyms": [ + "サマーポケッツ", + "Samapoke", + "サマポケ" + ], + "format": "TV", + "episodes": 26, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 60593, + "mal_id": 60593, + "title": "Vigilante: Boku no Hero Academia Illegals", + "english": "My Hero Academia: Vigilantes", + "native": "ヴィジランテ -僕のヒーローアカデミア ILLEGALS-", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 15, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185213, + "mal_id": 60449, + "title": "Kidou Senshi Gundam GQuuuuuuX", + "english": "Mobile Suit Gundam GQuuuuuuX", + "native": "機動戦士Gundam GQuuuuuuX", + "synonyms": [ + "機動戦士Gundam ジークアクス", + "Mobile Suit Gundam GQuuuuuuX -Beginning-" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 185213, + "mal_id": 60449, + "title": "Kidou Senshi Gundam GQuuuuuuX", + "english": "Mobile Suit Gundam GQuuuuuuX", + "native": "機動戦士Gundam GQuuuuuuX", + "synonyms": [ + "機動戦士Gundam ジークアクス", + "Mobile Suit Gundam GQuuuuuuX -Beginning-" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 183275, + "mal_id": 60157, + "title": "Kanpeki Sugite Kawai-ge ga Nai to Konyaku Haki Sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "ONA", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 60157, + "mal_id": 60157, + "title": "Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru", + "english": "The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom", + "native": "完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる", + "synonyms": [ + "Kanpekiseijo" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 10, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 1.2059, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 4, + "score": 1.0283, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59160, + "mal_id": 59160, + "title": "Wind Breaker Season 2", + "english": "Wind Breaker Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 0, + "score": 1.0098, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 51818, + "mal_id": 51818, + "title": "Enen no Shouboutai: San no Shou", + "english": "Fire Force Season 3", + "native": "炎炎ノ消防隊 参ノ章", + "synonyms": [ + "Enen no Shouboutai 3rd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 15, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 179979, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2", + "Aharen Is Unfathomable 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 58131, + "mal_id": 58131, + "title": "Shiunji-ke no Kodomotachi", + "english": "The Shiunji Family Children", + "native": "紫雲寺家の子供たち", + "synonyms": [ + "The Children of Shiunji Family", + "The Shiunji Siblings" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 8, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59189, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd Season", + "synonyms": [ + "Ranger Reject Season 2" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 13, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 21, + "score": 1.2059, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 59466, + "mal_id": 59466, + "title": "Aharen-san wa Hakarenai Season 2", + "english": "Aharen-san wa Hakarenai Season 2", + "native": "阿波連さんははかれない season2", + "synonyms": [ + "Aharen Is Indecipherable 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 7, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 11, + "score": 1.1, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 60083, + "mal_id": 60083, + "title": "Kowloon Generic Romance", + "english": "Kowloon Generic Romance", + "native": "九龍ジェネリックロマンス", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 4, + "score": 1.0833, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59160, + "mal_id": 59160, + "title": "Wind Breaker Season 2", + "english": "Wind Breaker Season 2", + "native": "WIND BREAKER Season 2", + "synonyms": [ + "Winbre", + "WBK" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 4, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 1.0366, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 178781, + "mal_id": 59189, + "title": "Sentai Daishikkaku 2nd Season", + "english": "Go! Go! Loser Ranger! Season 2", + "native": "戦隊大失格 2nd season", + "synonyms": [ + "Ranger Reject", + "ขบวนการกำมะลอ", + "No Longer Rangers", + "戦隊大失格 2nd シーズン" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "year": 2025, + "month": 4, + "day": 13 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 50738, + "mal_id": 50738, + "title": "Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni", + "english": "I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2", + "native": "スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~", + "synonyms": [ + "Slime Taoshite 300-nen", + "Shiranai Uchi ni Level Max ni Nattemashita 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SPRING", + "year": 2025, + "start_date": { + "day": 5, + "month": 4, + "year": 2025 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2025-summer.json b/test/fixtures/aggregate/season_matrix/candidates/2025-summer.json new file mode 100644 index 0000000..9c76a4d --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2025-summer.json @@ -0,0 +1,6798 @@ +{ + "year": 2025, + "season": "summer", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 178025, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [ + "Гачиакута" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 178788, + "mal_id": 59192, + "title": "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", + "english": "Demon Slayer: Kimetsu no Yaiba Infinity Castle", + "native": "劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来", + "synonyms": [ + "Demon Slayer: Kimetsu no Yaiba La Forteresse infinie", + "Demon Slayer: Kimetsu no Yaiba Castelo Infinito", + "Клинок, Рассекающий Демонов: Бесконечный Замок" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 18 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 185407, + "mal_id": 60489, + "title": "Takopii no Genzai", + "english": "Takopi's Original Sin", + "native": "タコピーの原罪", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 6, + "day": 28 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 178433, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [ + "Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn", + "Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 59062, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 57555, + "mal_id": 57555, + "title": "Chainsaw Man Movie: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "劇場版 チェンソーマン レゼ篇", + "synonyms": [ + "Gekijouban Chainsaw Man: Reze-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 9, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 59845, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms with Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "The Fragrant Flowers Bloom with Dignity" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 59192, + "mal_id": 59192, + "title": "Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai", + "english": "Demon Slayer: Kimetsu no Yaiba - The Movie: Infinity Castle - Part 1: Akaza Returns", + "native": "劇場版 鬼滅の刃 無限城編 第一章 猗窩座再来", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 60285, + "mal_id": 60285, + "title": "Sakamoto Days Part 2", + "english": "Sakamoto Days Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 15, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 59459, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 57433, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 58811, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "Tougen Anki", + "native": "桃源暗鬼", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 59130, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 59207, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 60326, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll be Your Lover! Unless...", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "Watanare" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 59424, + "mal_id": 59424, + "title": "Yuusha Party wo Tsuihou sareta Shiromadoushi, S-Rank Boukensha ni Hirowareru: Kono Shiromadoushi ga Kikakugai Sugiru", + "english": "Scooped Up by an S-Rank Adventurer!", + "native": "勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~", + "synonyms": [ + "The White Mage Who Was Banished From the Hero's Party Is Picked Up By an S-Rank Adventurer: This White Mage Is Too Out of the Ordinary!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 59791, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 178025, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [ + "Гачиакута" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59062, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 178025, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [ + "Гачиакута" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 178025, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [ + "Гачиакута" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 13, + "score": 1.1383, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 6, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 3, + "score": 1.0957, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 185660, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "DAN DA DAN Season 2", + "native": "ダンダダン 第2期", + "synonyms": [ + "Dan Da Dan: Evil Eye" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 57555, + "mal_id": 57555, + "title": "Chainsaw Man Movie: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "劇場版 チェンソーマン レゼ篇", + "synonyms": [ + "Gekijouban Chainsaw Man: Reze-hen" + ], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 19, + "month": 9, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 14, + "score": 0.9067, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 20, + "score": 0.8865, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 59207, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 15, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 10, + "score": 0.8615, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 171627, + "mal_id": 57555, + "title": "Chainsaw Man: Reze-hen", + "english": "Chainsaw Man – The Movie: Reze Arc", + "native": "チェンソーマン レゼ篇", + "synonyms": [ + "CSM: Reze-hen", + "CSM – The Movie: Reze Arc", + "Chainsaw Man – O Filme: Arco da Reze", + "Chainsaw Man - La película: El arco de Reze", + "Chainsaw Man - Il Film: La Storia di Reze", + "Человек-бензопила: Фильм – История Резе" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 9, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59845, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms with Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "The Fragrant Flowers Bloom with Dignity" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 6, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 7, + "score": 1.0143, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 22, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 13, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 181444, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms With Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "Kaoru i Rin: Rozkwitając z tobą", + "BLOOM", + "Благоухающий цветок расцветает с достоинством", + "La nobleza de las flores", + "Kaoru und Rin" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 178788, + "mal_id": 59192, + "title": "Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai", + "english": "Demon Slayer: Kimetsu no Yaiba Infinity Castle", + "native": "劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来", + "synonyms": [ + "Demon Slayer: Kimetsu no Yaiba La Forteresse infinie", + "Demon Slayer: Kimetsu no Yaiba Castelo Infinito", + "Клинок, Рассекающий Демонов: Бесконечный Замок" + ], + "format": "MOVIE", + "episodes": 1, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 18 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 59192, + "mal_id": 59192, + "title": "Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai", + "english": "Demon Slayer: Kimetsu no Yaiba - The Movie: Infinity Castle - Part 1: Akaza Returns", + "native": "劇場版 鬼滅の刃 無限城編 第一章 猗窩座再来", + "synonyms": [], + "format": "Movie", + "episodes": 1, + "season": null, + "year": null, + "start_date": { + "day": 18, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 13, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 9, + "score": 1.4333, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 154768, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "Sono Kisekae Ningyou wa Koi wo suru", + "หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2", + "その着せ替え人形(ビスク・ドール)は恋をする", + "Kisekoi 2", + "Si Boneka Rias Sedang Jatuh Cinta", + "着せ恋 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 9, + "score": 1.2273, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 0, + "score": 1.1316, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 13, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 3, + "score": 1.0926, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178754, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "KAIJU No. EIGHT 2" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 19 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 0.9762, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60285, + "mal_id": 60285, + "title": "Sakamoto Days Part 2", + "english": "Sakamoto Days Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 15, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 4, + "score": 0.9681, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 59845, + "mal_id": 59845, + "title": "Kaoru Hana wa Rin to Saku", + "english": "The Fragrant Flower Blooms with Dignity", + "native": "薫る花は凛と咲く", + "synonyms": [ + "The Fragrant Flowers Bloom with Dignity" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 14, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 177689, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Lato, kiedy umarł Hikaru", + "O Verão em que Hikaru Morreu", + "صيف وفاة هيكارو", + "光死去的夏天", + "光逝去的夏天", + "Der Sommer, in dem Hikaru starb", + "L'estate in cui Hikaru è morto", + "히카루가 죽은 여름", + "El verano en que Hikaru murió", + "หน้าร้อนที่ฮิคารุจากไป", + "Лето, когда погас свет", + "Léto, kdy umřel Hikaru" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 17, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 185407, + "mal_id": 60489, + "title": "Takopii no Genzai", + "english": "Takopi's Original Sin", + "native": "タコピーの原罪", + "synonyms": [], + "format": "ONA", + "episodes": 6, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 6, + "day": 28 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 58811, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "Tougen Anki", + "native": "桃源暗鬼", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60285, + "mal_id": 60285, + "title": "Sakamoto Days Part 2", + "english": "Sakamoto Days Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 15, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 0, + "score": 3.4, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 10, + "score": 0.9652, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 184237, + "mal_id": 60285, + "title": "SAKAMOTO DAYS Part 2", + "english": "SAKAMOTO DAYS Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [ + "サカモト デイズ 2クール" + ], + "format": "ONA", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 15 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 13, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 3, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 16, + "score": 1.375, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 1.2273, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 175914, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season 2", + "synonyms": [ + "Zew nocy. Sezon 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59459, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 16, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 0.9528, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 10, + "score": 0.9231, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 14, + "score": 0.9225, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179966, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [ + "ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน", + "Silent Witch 沉默魔女的祕密" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 24, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59791, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 7, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 11, + "score": 0.9167, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59459, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 9, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 186052, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahou Tsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 4 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 57433, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 1, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 59062, + "mal_id": 59062, + "title": "Gachiakuta", + "english": "Gachiakuta", + "native": "ガチアクタ", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 0.9687, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 21, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 171046, + "mal_id": 57433, + "title": "Seishun Buta Yarou wa Santa Claus no Yume wo Minai", + "english": "Rascal Does Not Dream of Santa Claus", + "native": "青春ブタ野郎はサンタクロースの夢を見ない", + "synonyms": [ + "AoButa", + "青ブタ", + "Rascal Does Not Dream: University Student Arc", + "Rascal Series: University Arc", + "青春ブタ野郎 大学生編", + "Seishun Buta Yarou: Daigakusei-hen" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 60326, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll be Your Lover! Unless...", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "Watanare" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 61322, + "mal_id": 61322, + "title": "Dr. Stone: Science Future Part 2", + "english": "Dr. Stone: Science Future Part 2", + "native": "Dr.STONE SCIENCE FUTURE 第2クール", + "synonyms": [ + "Dr. Stone 4th Season Part 2" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 13, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 0, + "score": 1.0581, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 8, + "score": 1.0455, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 60285, + "mal_id": 60285, + "title": "Sakamoto Days Part 2", + "english": "Sakamoto Days Part 2", + "native": "SAKAMOTO DAYS 第2クール", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 15, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 6, + "score": 1.0116, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 189117, + "mal_id": 61322, + "title": "Dr. STONE: SCIENCE FUTURE Part 2", + "english": "Dr. STONE SCIENCE FUTURE Cour 2", + "native": "Dr.STONE SCIENCE FUTURE 2クール", + "synonyms": [ + "Dr.STONE Season 4 Part 2", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 16, + "score": 0.9722, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 23, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 59424, + "mal_id": 59424, + "title": "Yuusha Party wo Tsuihou sareta Shiromadoushi, S-Rank Boukensha ni Hirowareru: Kono Shiromadoushi ga Kikakugai Sugiru", + "english": "Scooped Up by an S-Rank Adventurer!", + "native": "勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~", + "synonyms": [ + "The White Mage Who Was Banished From the Hero's Party Is Picked Up By an S-Rank Adventurer: This White Mage Is Too Out of the Ordinary!" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 9, + "score": 0.9333, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 178869, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Kabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 58811, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "Tougen Anki", + "native": "桃源暗鬼", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 15, + "score": 0.9242, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 22, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 0, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 9, + "score": 0.9062, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 177474, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "TOUGEN ANKI", + "native": "桃源暗鬼", + "synonyms": [ + "Tougen Anki: Legend of the Cursed Blood", + "Tougen Anki: Dark Demon of Paradise" + ], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 13, + "score": 1.375, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 3, + "score": 1.375, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 1.3, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 6, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 173780, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 59986, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 3, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 9, + "score": 1.4333, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 16, + "score": 1.375, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 0, + "score": 1.1842, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 182309, + "mal_id": 59986, + "title": "Grand Blue Season 2", + "english": "Grand Blue Dreaming Season 2", + "native": "ぐらんぶる Season 2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 60543, + "mal_id": 60543, + "title": "Dandadan 2nd Season", + "english": "Dan Da Dan Season 2", + "native": "ダンダダン 第2期", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 16, + "score": 0.9034, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 22, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 178090, + "mal_id": 59095, + "title": "Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji 2", + "第七王子 第2期", + "轉生為第七王子,隨心所欲的魔法學習之路 第二季" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 60326, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll be Your Lover! Unless...", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "Watanare" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 59095, + "mal_id": 59095, + "title": "Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season", + "english": "I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2", + "native": "転生したら第七王子だったので、気ままに魔術を極めます 第2期", + "synonyms": [ + "Dainanaoji", + "I Was Reincarnated as the 7th Prince", + "so I Will Perfect My Magic as I Please 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 15, + "score": 0.9096, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 0.8908, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 184591, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll Be Your Lover! Unless…", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "WataNare", + "Um Amor Impossível! Ou não...", + "ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?)", + "わたなれ" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 8 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 178433, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [ + "Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn", + "Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59130, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 0.8762, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 178433, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [ + "Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn", + "Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 21, + "score": 0.8623, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 178433, + "mal_id": 59130, + "title": "Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku", + "english": "Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin", + "native": "異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~", + "synonyms": [ + "Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn", + "Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 60326, + "mal_id": 60326, + "title": "Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?)", + "english": "There's No Freaking Way I'll be Your Lover! Unless...", + "native": "わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?)", + "synonyms": [ + "Watanare" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 8, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 9, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 11, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 59459, + "mal_id": 59459, + "title": "Silent Witch: Chinmoku no Majo no Kakushigoto", + "english": "Secrets of the Silent Witch", + "native": "サイレント・ウィッチ 沈黙の魔女の隠しごと", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 17, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 58811, + "mal_id": 58811, + "title": "Tougen Anki", + "english": "Tougen Anki", + "native": "桃源暗鬼", + "synonyms": [], + "format": "TV", + "episodes": 24, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 11, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 16, + "score": 0.9074, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 15, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 181841, + "mal_id": 59898, + "title": "CITY THE ANIMATION", + "english": "CITY THE ANIMATION", + "native": "CITY THE ANIMATION", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59205, + "mal_id": 59205, + "title": "Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha", + "english": "Clevatess", + "native": "クレバテス-魔獣の王と赤子と屍の勇者-", + "synonyms": [ + "Clevatess: The King of Devil Beasts", + "The Baby and the Brave of Undead" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 2, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 59207, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 10, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 22, + "score": 0.9375, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 59277, + "mal_id": 59277, + "title": "Kanojo, Okarishimasu 4th Season", + "english": "Rent-a-Girlfriend Season 4", + "native": "彼女、お借りします 第4期", + "synonyms": [ + "Kanokari" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 5, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 7, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 58913, + "mal_id": 58913, + "title": "Hikaru ga Shinda Natsu", + "english": "The Summer Hikaru Died", + "native": "光が死んだ夏", + "synonyms": [ + "Hikanatsu" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 16, + "score": 0.8797, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57907, + "mal_id": 57907, + "title": "Tate no Yuusha no Nariagari Season 4", + "english": "The Rising of the Shield Hero Season 4", + "native": "盾の勇者の成り上がり Season 4", + "synonyms": [ + "Tate no Yuusha no Nariagari 4th Season", + "The Rising of the Shield Hero 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 9, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 3, + "score": 0.8789, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 178886, + "mal_id": 59207, + "title": "Mikadono Sanshimai wa Angai, Choroi.", + "english": "Dealing with Mikadono Sisters Is a Breeze", + "native": "帝乃三姉妹は案外、チョロい。", + "synonyms": [ + "The Mikadono sisters are surprisingly easy to deal with." + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 24, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59791, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 1.0714, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 60732, + "mal_id": 60732, + "title": "Mizu Zokusei no Mahoutsukai", + "english": "The Water Magician", + "native": "水属性の魔法使い", + "synonyms": [ + "The Water Magician: The Central Provinces Arc", + "Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 3, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 53065, + "mal_id": 53065, + "title": "Sono Bisque Doll wa Koi wo Suru Season 2", + "english": "My Dress-Up Darling Season 2", + "native": "その着せ替え人形は恋をする Season 2", + "synonyms": [ + "KiseKoi" + ], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 6, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.95, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 58390, + "mal_id": 58390, + "title": "Yofukashi no Uta Season 2", + "english": "Call of the Night Season 2", + "native": "よふかしのうた Season2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 4, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 6, + "score": 0.9138, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 180929, + "mal_id": 59791, + "title": "Ruri no Houseki", + "english": "Ruri Rocks", + "native": "瑠璃の宝石", + "synonyms": [ + "Introduction to Mineralogy" + ], + "format": "TV", + "episodes": 13, + "season": "SUMMER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 7, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59177, + "mal_id": 59177, + "title": "Kaijuu 8-gou 2nd Season", + "english": "Kaiju No. 8 Season 2", + "native": "怪獣8号 第2期", + "synonyms": [ + "8Kaijuu", + "Monster #8", + "Kaiju No. Eight", + "Kaiju #8" + ], + "format": "TV", + "episodes": 11, + "season": "SUMMER", + "year": 2025, + "start_date": { + "day": 19, + "month": 7, + "year": 2025 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/candidates/2025-winter.json b/test/fixtures/aggregate/season_matrix/candidates/2025-winter.json new file mode 100644 index 0000000..6cceda2 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/candidates/2025-winter.json @@ -0,0 +1,6858 @@ +{ + "year": 2025, + "season": "winter", + "anilist": [ + { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 1, + "id": 177709, + "mal_id": 58939, + "title": "SAKAMOTO DAYS", + "english": "SAKAMOTO DAYS", + "native": "SAKAMOTO DAYS", + "synonyms": [ + "サカモト デイズ", + "أيام ساكاموتو", + "사카모토 데이즈", + "坂本日常", + "Дни Сакамото" + ], + "format": "ONA", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 5, + "id": 176273, + "mal_id": 58502, + "title": "Zenshuu.", + "english": "ZENSHU", + "native": "全修。", + "synonyms": [ + "เซ็นชู" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 10, + "id": 178548, + "mal_id": 59144, + "title": "Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru", + "english": "Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "synonyms": [ + "FuguKan", + "ふぐ鑑", + "Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 15, + "id": 179689, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [ + "Salaryman Big 4", + "Nhân viên Văn phòng được Triệu hồi thành Tứ Đại Thiên Vương ở Thế giới khác", + "平凡上班族到異世界當上了四天王的故事" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 21, + "id": 165171, + "mal_id": 55318, + "title": "Medalist", + "english": "Medalist", + "native": "メダリスト", + "synonyms": [ + "金牌得主" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + } + ], + "jikan": [ + { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 3, + "id": 57592, + "mal_id": 57592, + "title": "Dr. Stone: Science Future", + "english": "Dr. Stone: Science Future", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr. Stone 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 5, + "id": 58502, + "mal_id": 58502, + "title": "Zenshuu.", + "english": "Zenshu", + "native": "全修。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 8, + "id": 55997, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Girumasu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 11, + "id": 58271, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 12, + "id": 58853, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "Medakawa", + "My Charms Are Wasted On Kuroiwa Medaka", + "Kuroiwa Medaka is Proof Against My Cuteness." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 13, + "id": 58822, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be the Greatest Alchemist?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 8, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 14, + "id": 59349, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 15, + "id": 59730, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "Aparida" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 17, + "id": 59002, + "mal_id": 59002, + "title": "Hazure Skill \"Kinomi Master\": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite", + "english": "Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)", + "native": "外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Failure Skill \"Nut Master\": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You Would Normally Die)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 21, + "id": 57648, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 22, + "id": 55318, + "mal_id": 55318, + "title": "Medalist", + "english": null, + "native": "メダリスト", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 23, + "id": 58437, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita", + "english": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "I Am a Noble about to Be Ruined", + "but Reached the Summit of Magic Because I Had a Lot of Free Time." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + }, + { + "backend": "jikan", + "index": 24, + "id": 59226, + "mal_id": 59226, + "title": "Ao no Exorcist: Yosuga-hen", + "english": "Blue Exorcist: The Blue Night Saga", + "native": "青の祓魔師 終夜篇", + "synonyms": [ + "Blue Exorcist Season 5" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + ], + "candidates": [ + { + "anilist_index": 0, + "jikan_index": 0, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 2, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 7, + "score": 1.0333, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 0, + "jikan_index": 4, + "score": 1.0185, + "anilist": { + "backend": "anilist", + "index": 0, + "id": 176496, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken: Season 2 - Arise from the Shadow", + "english": "Solo Leveling Season 2 -Arise from the Shadow-", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Na Honjaman Level Up 2", + "나 혼자만 레벨업 2", + "俺だけレベルアップな件 第2期", + "Ore dake Level Up na Ken 2nd Season", + "Solo Leveling 2ª Temporada -Ergam-se das Sombras-", + "나 혼자만 레벨업 -ARISE FROM THE SHADOW-" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 1, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177709, + "mal_id": 58939, + "title": "SAKAMOTO DAYS", + "english": "SAKAMOTO DAYS", + "native": "SAKAMOTO DAYS", + "synonyms": [ + "サカモト デイズ", + "أيام ساكاموتو", + "사카모토 데이즈", + "坂本日常", + "Дни Сакамото" + ], + "format": "ONA", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 1, + "jikan_index": 4, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 1, + "id": 177709, + "mal_id": 58939, + "title": "SAKAMOTO DAYS", + "english": "SAKAMOTO DAYS", + "native": "SAKAMOTO DAYS", + "synonyms": [ + "サカモト デイズ", + "أيام ساكاموتو", + "사카모토 데이즈", + "坂本日常", + "Дни Сакамото" + ], + "format": "ONA", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 2, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 7, + "score": 1.0965, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 4, + "score": 1.0769, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 2, + "jikan_index": 24, + "score": 0.9727, + "anilist": { + "backend": "anilist", + "index": 2, + "id": 176301, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "Die Tagebücher der Apothekerin Season 2", + "Diários de uma Apotecária 2ª Temporada", + "Монолог фармацевта 2", + "Les Carnets de l'apothicaire Saison 2", + "Los diarios de la boticaria temporada 2" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59226, + "mal_id": 59226, + "title": "Ao no Exorcist: Yosuga-hen", + "english": "Blue Exorcist: The Blue Night Saga", + "native": "青の祓魔師 終夜篇", + "synonyms": [ + "Blue Exorcist Season 5" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 3, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57592, + "mal_id": 57592, + "title": "Dr. Stone: Science Future", + "english": "Dr. Stone: Science Future", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr. Stone 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 24, + "score": 1.0641, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59226, + "mal_id": 59226, + "title": "Ao no Exorcist: Yosuga-hen", + "english": "Blue Exorcist: The Blue Night Saga", + "native": "青の祓魔師 終夜篇", + "synonyms": [ + "Blue Exorcist Season 5" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 2, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 0, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 3, + "jikan_index": 11, + "score": 0.9848, + "anilist": { + "backend": "anilist", + "index": 3, + "id": 172019, + "mal_id": 57592, + "title": "Dr. STONE: SCIENCE FUTURE", + "english": "Dr. STONE SCIENCE FUTURE", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr.STONE Season 4", + "Dr.STONE 第4期", + "ドクターストーン" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 58271, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 4, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 9, + "score": 0.9486, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 1, + "score": 0.9348, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 7, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 4, + "jikan_index": 2, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 4, + "id": 172258, + "mal_id": 57616, + "title": "Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 第2期", + "synonyms": [ + "100 Kanojo 2", + "100Kano 2", + "Hyakkano 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 5, + "jikan_index": 5, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 5, + "id": 176273, + "mal_id": 58502, + "title": "Zenshuu.", + "english": "ZENSHU", + "native": "全修。", + "synonyms": [ + "เซ็นชู" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 58502, + "mal_id": 58502, + "title": "Zenshuu.", + "english": "Zenshu", + "native": "全修。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 6, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 7, + "score": 0.9632, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 14, + "score": 0.9505, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 59349, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 16, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 6, + "jikan_index": 10, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 6, + "id": 178462, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "クラ婚", + "クラコン", + "Cla-Kon" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 3 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 8, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 55997, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Girumasu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 10, + "score": 0.9308, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 58822, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be the Greatest Alchemist?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 8, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 16, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 7, + "jikan_index": 19, + "score": 0.8793, + "anilist": { + "backend": "anilist", + "index": 7, + "id": 167143, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Uketsukejou Saikyou", + "Girumasu", + "ギルます", + "雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 11 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 11, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 58271, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 21, + "score": 1.0128, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 57648, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 0, + "score": 0.9186, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 3, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57592, + "mal_id": 57592, + "title": "Dr. Stone: Science Future", + "english": "Dr. Stone: Science Future", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr. Stone 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 8, + "jikan_index": 2, + "score": 0.883, + "anilist": { + "backend": "anilist", + "index": 8, + "id": 175443, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 7, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 18, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 2, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 4, + "score": 1.0085, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 9, + "jikan_index": 6, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 9, + "id": 169441, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚 第二期", + "synonyms": [ + "WataKon 2", + "ขอให้รักเรานี้ได้มีความสุข", + "Moje szczęśliwe małżeństwo. Sezon 2", + "Hôn nhân hạnh phúc của tôi", + "Meu Casamento Feliz", + "Il mio matrimonio felice", + "Мій щасливий шлюб", + "Mi feliz matrimonio", + "わた婚2", + "Мой счастливый брак 2" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 10, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 178548, + "mal_id": 59144, + "title": "Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru", + "english": "Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "synonyms": [ + "FuguKan", + "ふぐ鑑", + "Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 6, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 178548, + "mal_id": 59144, + "title": "Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru", + "english": "Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "synonyms": [ + "FuguKan", + "ふぐ鑑", + "Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 0, + "score": 0.9098, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 178548, + "mal_id": 59144, + "title": "Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru", + "english": "Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "synonyms": [ + "FuguKan", + "ふぐ鑑", + "Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 10, + "jikan_index": 23, + "score": 0.8768, + "anilist": { + "backend": "anilist", + "index": 10, + "id": 178548, + "mal_id": 59144, + "title": "Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru", + "english": "Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~", + "synonyms": [ + "FuguKan", + "ふぐ鑑", + "Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 58437, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita", + "english": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "I Am a Noble about to Be Ruined", + "but Reached the Summit of Magic Because I Had a Lot of Free Time." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 9, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 19, + "score": 1.0067, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 4, + "score": 0.966, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 4, + "id": 57616, + "mal_id": 57616, + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season", + "english": "The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2", + "native": "君のことが大大大大大好きな100人の彼女 2期", + "synonyms": [ + "Hyakkano 2nd Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 20, + "score": 0.94, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 11, + "jikan_index": 5, + "score": 0.9286, + "anilist": { + "backend": "anilist", + "index": 11, + "id": 179696, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "I Have a Crush at Work", + "Can You Keep a Secret?", + "บริษัทนี้มีความรัก", + "KonoSuki", + "Ты умеешь хранить секреты?", + "Bí mật Tình yêu nơi Công sở" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 6 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 5, + "id": 58502, + "mal_id": 58502, + "title": "Zenshuu.", + "english": "Zenshu", + "native": "全修。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 13, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 58822, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be the Greatest Alchemist?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 8, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 6, + "score": 0.9651, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 19, + "score": 0.9571, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 16, + "score": 0.9337, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 12, + "jikan_index": 20, + "score": 0.9211, + "anilist": { + "backend": "anilist", + "index": 12, + "id": 177506, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be The Greatest Alchemist?", + "遲早是最強的鍊金術師?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 12, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58853, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "Medakawa", + "My Charms Are Wasted On Kuroiwa Medaka", + "Kuroiwa Medaka is Proof Against My Cuteness." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 22, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55318, + "mal_id": 55318, + "title": "Medalist", + "english": null, + "native": "メダリスト", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 9, + "score": 0.9524, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 13, + "score": 0.9444, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 58822, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be the Greatest Alchemist?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 8, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 13, + "jikan_index": 7, + "score": 0.9318, + "anilist": { + "backend": "anilist", + "index": 13, + "id": 177552, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "メダかわ", + "Medakawa", + "Мэдака Куроива не понимает моей привлекательности" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 15, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 15, + "id": 59730, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "Aparida" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 1, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 17, + "score": 0.8875, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 59002, + "mal_id": 59002, + "title": "Hazure Skill \"Kinomi Master\": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite", + "english": "Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)", + "native": "外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Failure Skill \"Nut Master\": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You Would Normally Die)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 10, + "score": 0.8721, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 14, + "jikan_index": 7, + "score": 0.8636, + "anilist": { + "backend": "anilist", + "index": 14, + "id": 180812, + "mal_id": 59730, + "title": "A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu.", + "english": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "native": "Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。", + "synonyms": [ + "After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students", + "Aparida", + "Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта", + "Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku", + "Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 15, + "jikan_index": 14, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 15, + "id": 179689, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [ + "Salaryman Big 4", + "Nhân viên Văn phòng được Triệu hồi thành Tứ Đại Thiên Vương ở Thế giới khác", + "平凡上班族到異世界當上了四天王的故事" + ], + "format": "ONA", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 59349, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 17, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 17, + "id": 59002, + "mal_id": 59002, + "title": "Hazure Skill \"Kinomi Master\": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite", + "english": "Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)", + "native": "外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Failure Skill \"Nut Master\": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You Would Normally Die)" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 14, + "score": 0.943, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 59349, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 20, + "score": 0.9103, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 1, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 16, + "jikan_index": 8, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 16, + "id": 178100, + "mal_id": 59002, + "title": "Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite", + "english": "Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that kill you)~", + "native": "外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~", + "synonyms": [ + "Kinomi Master" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 1 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 55997, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Girumasu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 19, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 9, + "score": 0.98, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 20, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 16, + "score": 0.9587, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 17, + "jikan_index": 18, + "score": 0.9324, + "anilist": { + "backend": "anilist", + "index": 17, + "id": 180292, + "mal_id": 59561, + "title": "Arafou Otoko no Isekai Tsuuhan Seikatsu", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販生活", + "synonyms": [ + "Around 40 Otoko no Isekai Tsuuhan Seikatsu", + "ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 20, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 21, + "score": 0.949, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 57648, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 2, + "score": 0.9068, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 23, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 58437, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita", + "english": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "I Am a Noble about to Be Ruined", + "but Reached the Summit of Magic Because I Had a Lot of Free Time." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 18, + "jikan_index": 19, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 18, + "id": 176642, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte", + "Ameku Takao no Suiri Karute", + "天久鷹央的推理病歷表" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 2 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 21, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 21, + "id": 57648, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 11, + "score": 0.9615, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 11, + "id": 58271, + "mal_id": 58271, + "title": "Honey Lemon Soda", + "english": "Honey Lemon Soda", + "native": "ハニーレモンソーダ", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 24, + "score": 0.9583, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59226, + "mal_id": 59226, + "title": "Ao no Exorcist: Yosuga-hen", + "english": "Blue Exorcist: The Blue Night Saga", + "native": "青の祓魔師 終夜篇", + "synonyms": [ + "Blue Exorcist Season 5" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 0, + "score": 0.9151, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 19, + "jikan_index": 9, + "score": 0.9091, + "anilist": { + "backend": "anilist", + "index": 19, + "id": 172439, + "mal_id": 57648, + "title": "Nihon e Youkoso Elf-san.", + "english": "Welcome to Japan, Ms. Elf!", + "native": "日本へようこそエルフさん。", + "synonyms": [ + "歡迎來到日本,妖精小姐。" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 16, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 16, + "id": 57719, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Ojisan", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "Middle-Aged Man's Noble Daughter Reincarnation", + "The Old Man Reincarnated as a Villainess" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 2, + "score": 0.9516, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 13, + "score": 0.9, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 13, + "id": 58822, + "mal_id": 58822, + "title": "Izure Saikyou no Renkinjutsushi?", + "english": "Possibly the Greatest Alchemist of All Time", + "native": "いずれ最強の錬金術師?", + "synonyms": [ + "Someday Will I Be the Greatest Alchemist?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 8, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 6, + "score": 0.896, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 20, + "jikan_index": 18, + "score": 0.8929, + "anilist": { + "backend": "anilist", + "index": 20, + "id": 172453, + "mal_id": 57719, + "title": "Akuyaku Reijou Tensei Oji-san", + "english": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "native": "悪役令嬢転生おじさん", + "synonyms": [ + "The Middle-Aged Man that Reincarnated as a Villainess", + " Om-om yang Bereinkarnasi Menjadi Putri Jahat", + "中年大叔轉生反派千金" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 10 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 22, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 165171, + "mal_id": 55318, + "title": "Medalist", + "english": "Medalist", + "native": "メダリスト", + "synonyms": [ + "金牌得主" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 22, + "id": 55318, + "mal_id": 55318, + "title": "Medalist", + "english": null, + "native": "メダリスト", + "synonyms": [], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 12, + "score": 1.0, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 165171, + "mal_id": 55318, + "title": "Medalist", + "english": "Medalist", + "native": "メダリスト", + "synonyms": [ + "金牌得主" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58853, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "Medakawa", + "My Charms Are Wasted On Kuroiwa Medaka", + "Kuroiwa Medaka is Proof Against My Cuteness." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 1, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 165171, + "mal_id": 55318, + "title": "Medalist", + "english": "Medalist", + "native": "メダリスト", + "synonyms": [ + "金牌得主" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 1, + "id": 58939, + "mal_id": 58939, + "title": "Sakamoto Days", + "english": "Sakamoto Days", + "native": "SAKAMOTO DAYS", + "synonyms": [], + "format": "TV", + "episodes": 11, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 21, + "jikan_index": 8, + "score": 0.875, + "anilist": { + "backend": "anilist", + "index": 21, + "id": 165171, + "mal_id": 55318, + "title": "Medalist", + "english": "Medalist", + "native": "メダリスト", + "synonyms": [ + "金牌得主" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 5 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 8, + "id": 55997, + "mal_id": 55997, + "title": "Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu", + "english": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "native": "ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います", + "synonyms": [ + "Girumasu" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 11, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 18, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 2, + "score": 3.5, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 2, + "id": 58514, + "mal_id": 58514, + "title": "Kusuriya no Hitorigoto 2nd Season", + "english": "The Apothecary Diaries Season 2", + "native": "薬屋のひとりごと 第2期", + "synonyms": [ + "The Pharmacist's Monologue", + "Drugstore Soliloquy" + ], + "format": "TV", + "episodes": 24, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 10, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 0, + "score": 0.9746, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 0, + "id": 58567, + "mal_id": 58567, + "title": "Ore dake Level Up na Ken Season 2: Arise from the Shadow", + "english": "Solo Leveling Season 2: Arise from the Shadow", + "native": "俺だけレベルアップな件 Season 2 -Arise from the Shadow-", + "synonyms": [ + "Solo Leveling Second Season" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 3, + "score": 0.9706, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 3, + "id": 57592, + "mal_id": 57592, + "title": "Dr. Stone: Science Future", + "english": "Dr. Stone: Science Future", + "native": "Dr.STONE SCIENCE FUTURE", + "synonyms": [ + "Dr. Stone 4th Season" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 22, + "jikan_index": 7, + "score": 0.9483, + "anilist": { + "backend": "anilist", + "index": 22, + "id": 170892, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [ + "ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 12 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 7, + "id": 56701, + "mal_id": 56701, + "title": "Watashi no Shiawase na Kekkon 2nd Season", + "english": "My Happy Marriage Season 2", + "native": "わたしの幸せな結婚", + "synonyms": [ + "My Blissful Marriage" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 23, + "score": 10.0, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 23, + "id": 58437, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita", + "english": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "I Am a Noble about to Be Ruined", + "but Reached the Summit of Magic Because I Had a Lot of Free Time." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 6, + "score": 0.9545, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 6, + "id": 59135, + "mal_id": 59135, + "title": "Class no Daikirai na Joshi to Kekkon suru Koto ni Natta.", + "english": "I'm Getting Married to a Girl I Hate in My Class", + "native": "クラスの大嫌いな女子と結婚することになった。", + "synonyms": [ + "Kurakon", + "I Got Married to the Girl I Hate Most in Class" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 3, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 10, + "score": 0.9058, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 10, + "id": 59144, + "mal_id": 59144, + "title": "Fuguushoku \"Kanteishi\" ga Jitsu wa Saikyou Datta", + "english": "Even Given the Worthless \"Appraiser\" Class, I’m Actually the Strongest", + "native": "不遇職【鑑定士】が実は最強だった", + "synonyms": [ + "The Unfavorable Job \"Appraiser\" Is Actually the Strongest", + "Fugukan" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 24, + "score": 0.8846, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 24, + "id": 59226, + "mal_id": 59226, + "title": "Ao no Exorcist: Yosuga-hen", + "english": "Blue Exorcist: The Blue Night Saga", + "native": "青の祓魔師 終夜篇", + "synonyms": [ + "Blue Exorcist Season 5" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 5, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 23, + "jikan_index": 18, + "score": 0.881, + "anilist": { + "backend": "anilist", + "index": 23, + "id": 176063, + "mal_id": 58437, + "title": "Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita", + "english": "I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "native": "没落予定の貴族だけど、暇だったから魔法を極めてみた", + "synonyms": [ + "BotsurakuKizoku", + "没落貴族" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 7 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 18, + "id": 53924, + "mal_id": 53924, + "title": "Jibaku Shounen Hanako-kun 2", + "english": "Toilet-Bound Hanako-kun Season 2", + "native": "地縛少年花子くん2", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 12, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 20, + "score": 1.0231, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 20, + "id": 58600, + "mal_id": 58600, + "title": "Ameku Takao no Suiri Karte", + "english": "Ameku M.D.: Doctor Detective", + "native": "天久鷹央の推理カルテ", + "synonyms": [ + "Ameku Takao's Detective Karte" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 2, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 19, + "score": 0.9872, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 19, + "id": 59561, + "mal_id": 59561, + "title": "Around 40 Otoko no Isekai Tsuuhan", + "english": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "native": "アラフォー男の異世界通販", + "synonyms": [ + "Arafoo Otoko no Isekai Tsuuhan Seikatsu", + "The Mail Order Life of a Man Around 40 in Another World" + ], + "format": "TV", + "episodes": 13, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 9, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 14, + "score": 0.9632, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 14, + "id": 59349, + "mal_id": 59349, + "title": "Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi", + "english": "Headhunted to Another World: From Salaryman to Big Four!", + "native": "サラリーマンが異世界に行ったら四天王になった話", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 12, + "score": 0.9598, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 12, + "id": 58853, + "mal_id": 58853, + "title": "Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai", + "english": "Medaka Kuroiwa is Impervious to My Charms", + "native": "黒岩メダカに私の可愛いが通じない", + "synonyms": [ + "Medakawa", + "My Charms Are Wasted On Kuroiwa Medaka", + "Kuroiwa Medaka is Proof Against My Cuteness." + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 7, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + }, + { + "anilist_index": 24, + "jikan_index": 9, + "score": 0.9412, + "anilist": { + "backend": "anilist", + "index": 24, + "id": 179297, + "mal_id": 59265, + "title": "Magic Maker: Isekai Mahou no Tsukurikata", + "english": "Magic Maker: How to Make Magic in Another World", + "native": "マジック・メイカー ~異世界魔法の作り方~", + "synonyms": [], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "year": 2025, + "month": 1, + "day": 9 + }, + "status": "FINISHED" + }, + "jikan": { + "backend": "jikan", + "index": 9, + "id": 59361, + "mal_id": 59361, + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "english": "I Have a Crush at Work", + "native": "この会社に好きな人がいます", + "synonyms": [ + "Can You Keep a Secret?" + ], + "format": "TV", + "episodes": 12, + "season": "WINTER", + "year": 2025, + "start_date": { + "day": 6, + "month": 1, + "year": 2025 + }, + "status": "Finished Airing" + } + } + ] +} diff --git a/test/fixtures/aggregate/season_matrix/expected_matches.json b/test/fixtures/aggregate/season_matrix/expected_matches.json new file mode 100644 index 0000000..99d62c4 --- /dev/null +++ b/test/fixtures/aggregate/season_matrix/expected_matches.json @@ -0,0 +1,9154 @@ +{ + "seasons": [ + { + "year": 2010, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 8769." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 8525." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 7674." + }, + { + "anilist_index": 3, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 8795." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 8937." + }, + { + "anilist_index": 5, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 8861." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 9181." + }, + { + "anilist_index": 7, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 8129." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 9062." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 8407." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 10067." + }, + { + "anilist_index": 11, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 8557." + }, + { + "anilist_index": 12, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 8460." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 8424." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 8247." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 8277." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 9074." + }, + { + "anilist_index": 17, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 9107." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 8934." + }, + { + "anilist_index": 20, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 7662." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 9136." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 8876." + }, + { + "anilist_index": 23, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 8476." + } + ] + }, + { + "year": 2010, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 6547." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 7054." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 7791." + }, + { + "anilist_index": 3, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 7785." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 7593." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 7088." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 6956." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 6114." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 7647." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 7817." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 7472." + }, + { + "anilist_index": 11, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 4106." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 7590." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 7588." + }, + { + "anilist_index": 16, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 6895." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 8740." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 8310." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 6772." + }, + { + "anilist_index": 22, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 7058." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 6408." + }, + { + "anilist_index": 24, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 7661." + } + ] + }, + { + "year": 2010, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 8074." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 7724." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 8675." + }, + { + "anilist_index": 3, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 7711." + }, + { + "anilist_index": 4, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 6707." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 8676." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 8086." + }, + { + "anilist_index": 8, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 8142." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 8246." + }, + { + "anilist_index": 10, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 7769." + }, + { + "anilist_index": 11, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 7592." + }, + { + "anilist_index": 12, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 5277." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 6166." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 8408." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 7059." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 7627." + }, + { + "anilist_index": 17, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 7695." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 10298." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 6974." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 6381." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 8577." + }, + { + "anilist_index": 22, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 8768." + } + ] + }, + { + "year": 2010, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 6746." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 7311." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 6594." + }, + { + "anilist_index": 3, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 6347." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 6500." + }, + { + "anilist_index": 5, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 6922." + }, + { + "anilist_index": 6, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 6862." + }, + { + "anilist_index": 7, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 6802." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 7148." + }, + { + "anilist_index": 9, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 7338." + }, + { + "anilist_index": 10, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 6324." + }, + { + "anilist_index": 11, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 6747." + }, + { + "anilist_index": 12, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 6336." + }, + { + "anilist_index": 13, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 6574." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 5690." + }, + { + "anilist_index": 15, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 6951." + }, + { + "anilist_index": 16, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 8023." + }, + { + "anilist_index": 17, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 7645." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 7079." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 6645." + } + ] + }, + { + "year": 2011, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 11061." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 10620." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 10087." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 10793." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 10719." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 10800." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 9617." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 10396." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 9936." + }, + { + "anilist_index": 9, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 10030." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 10213." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 10588." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 10521." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 6773." + }, + { + "anilist_index": 14, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 10456." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 10460." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 10578." + }, + { + "anilist_index": 18, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 10798." + }, + { + "anilist_index": 19, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 12231." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 10397." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 11266." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 10418." + } + ] + }, + { + "year": 2011, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 9253." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 9919." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 9989." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 6880." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 10165." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 9969." + }, + { + "anilist_index": 6, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 9289." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 10080." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 8630." + }, + { + "anilist_index": 9, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 9379." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 9515." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 10163." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 9760." + }, + { + "anilist_index": 13, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 10271." + }, + { + "anilist_index": 14, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 10711." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 9941." + }, + { + "anilist_index": 16, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 9863." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 10155." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 9982." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 10079." + }, + { + "anilist_index": 21, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 9926." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 9736." + } + ] + }, + { + "year": 2011, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2011, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 9756." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 9041." + }, + { + "anilist_index": 2, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 8425." + }, + { + "anilist_index": 3, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 9656." + }, + { + "anilist_index": 4, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 8841." + }, + { + "anilist_index": 5, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 9513." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 9367." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 10020." + }, + { + "anilist_index": 9, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 6954." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 8426." + }, + { + "anilist_index": 11, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 9330." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 9471." + }, + { + "anilist_index": 14, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 9331." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 9834." + }, + { + "anilist_index": 17, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 9587." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 9314." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 9130." + }, + { + "anilist_index": 21, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 9539." + } + ] + }, + { + "year": 2012, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 14719." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 13601." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 14741." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 13759." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 14227." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 14513." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 13125." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 14467." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 14713." + }, + { + "anilist_index": 9, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 14345." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 14289." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 15689." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 3785." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 14075." + }, + { + "anilist_index": 14, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 14131." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 15417." + }, + { + "anilist_index": 16, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 13663." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 14199." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 13655." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 11703." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 12859." + }, + { + "anilist_index": 21, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 16001." + }, + { + "anilist_index": 22, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 12365." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 11737." + } + ] + }, + { + "year": 2012, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 12189." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 11771." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 11741." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 11759." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 11499." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 12531." + }, + { + "anilist_index": 7, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 12445." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 12413." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 11785." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 12467." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 12291." + }, + { + "anilist_index": 12, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 10790." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 11761." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 12431." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 11701." + }, + { + "anilist_index": 17, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 12883." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 12893." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 12029." + }, + { + "anilist_index": 20, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 10681." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 11837." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 12815." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 12979." + } + ] + }, + { + "year": 2012, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 11757." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 11887." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 13161." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 12549." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 12293." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 13667." + }, + { + "anilist_index": 6, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 12729." + }, + { + "anilist_index": 7, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 12679." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 11933." + }, + { + "anilist_index": 9, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 10357." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 12031." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 12175." + }, + { + "anilist_index": 12, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 13469." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 13535." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 12403." + }, + { + "anilist_index": 16, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 12049." + }, + { + "anilist_index": 17, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 13367." + }, + { + "anilist_index": 18, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 14753." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 13333." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 8888." + }, + { + "anilist_index": 21, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 12967." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 13807." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 13851." + } + ] + }, + { + "year": 2012, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 11111." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 11617." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 11843." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 11597." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 10863." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 11013." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 11433." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 11319." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 11285." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 10218." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 11665." + }, + { + "anilist_index": 11, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 11751." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 11179." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 11235." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 11079." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 11241." + }, + { + "anilist_index": 16, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 11227." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 10447." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 8917." + }, + { + "anilist_index": 20, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 10638." + }, + { + "anilist_index": 22, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 11697." + }, + { + "anilist_index": 24, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 11371." + } + ] + }, + { + "year": 2013, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 18679." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 18153." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 17895." + }, + { + "anilist_index": 3, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 17265." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 16894." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 18115." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 16067." + }, + { + "anilist_index": 7, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 18397." + }, + { + "anilist_index": 8, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 18277." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 17549." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 11981." + }, + { + "anilist_index": 11, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 16011." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 19221." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 19369." + }, + { + "anilist_index": 14, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 12477." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 18247." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 20021." + }, + { + "anilist_index": 18, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 16664." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 18677." + }, + { + "anilist_index": 20, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 17513." + }, + { + "anilist_index": 21, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 17247." + }, + { + "anilist_index": 23, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 18689." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 18245." + } + ] + }, + { + "year": 2013, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 16498." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 15809." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 14813." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 16782." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 15583." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 11577." + }, + { + "anilist_index": 6, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 16049." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 15225." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 13659." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 16524." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 16201." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 15699." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 16035." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 16668." + }, + { + "anilist_index": 15, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 14669." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 16528." + }, + { + "anilist_index": 17, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 15911." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 16397." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 16512." + }, + { + "anilist_index": 23, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 14921." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 16355." + } + ] + }, + { + "year": 2013, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 24, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2013, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 14749." + }, + { + "anilist_index": 1, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 16417." + }, + { + "anilist_index": 2, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 15315." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 15051." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 14833." + }, + { + "anilist_index": 5, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 14967." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 14349." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 15379." + }, + { + "anilist_index": 8, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 13271." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 14353." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 14397." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 12115." + }, + { + "anilist_index": 12, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 15085." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 14811." + }, + { + "anilist_index": 14, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 11743." + }, + { + "anilist_index": 15, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 14355." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 15119." + }, + { + "anilist_index": 17, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 16005." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 15751." + }, + { + "anilist_index": 19, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 16916." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 15109." + }, + { + "anilist_index": 23, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 15613." + } + ] + }, + { + "year": 2014, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 23273." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 23755." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 22535." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 22297." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 25013." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 25157." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 22147." + }, + { + "anilist_index": 7, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 17729." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 16870." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 23281." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 23321." + }, + { + "anilist_index": 11, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 28025." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 24405." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 25835." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 25159." + }, + { + "anilist_index": 15, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 23673." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 21843." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 26349." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 24455." + }, + { + "anilist_index": 19, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 24701." + }, + { + "anilist_index": 20, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 25731." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 24231." + } + ] + }, + { + "year": 2014, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 20583." + }, + { + "anilist_index": 1, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 19815." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 20899." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 20785." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 20787." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 22043." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 19163." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 22135." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 21647." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 21603." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 20853." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 21405." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 21327." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 21431." + }, + { + "anilist_index": 14, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 21273." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 22101." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 21939." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 19111." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 19429." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 21863." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 21561." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 22777." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 21033." + }, + { + "anilist_index": 23, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 19775." + } + ] + }, + { + "year": 2014, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 22319." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 22199." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 21881." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 23283." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 21995." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 23289." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 22789." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 21855." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 22729." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 22265." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 21557." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 22145." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 22877." + }, + { + "anilist_index": 13, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 21659." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 16904." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 21105." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 23309." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 20509." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 23327." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 20709." + }, + { + "anilist_index": 22, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 22865." + }, + { + "anilist_index": 24, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 23421." + } + ] + }, + { + "year": 2014, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 20507." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 18897." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 18671." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 20541." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 20057." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 20031." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 21085." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 20767." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 20047." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 20689." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 18139." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 20847." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 19769." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 18095." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 19315." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 17777." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 20457." + }, + { + "anilist_index": 17, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 20973." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 21329." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 15565." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 19363." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 20431." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 20931." + } + ] + }, + { + "year": 2015, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 30276." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 28891." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 30503." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 30296." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 28927." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 30544." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 31181." + }, + { + "anilist_index": 7, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 31704." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 30363." + }, + { + "anilist_index": 9, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 32188." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 24133." + }, + { + "anilist_index": 11, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 31374." + }, + { + "anilist_index": 12, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 31251." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 25099." + }, + { + "anilist_index": 14, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 27991." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 31297." + }, + { + "anilist_index": 16, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 19489." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 30187." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 28621." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 30885." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 31174." + }, + { + "anilist_index": 21, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 31592." + } + ] + }, + { + "year": 2015, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 28171." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 28121." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 26243." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 23847." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 27775." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 24439." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 28701." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 28677." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 24703." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 27787." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 28297." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 27989." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 28977." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 29095." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 28249." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 28675." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 29093." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 28617." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 25389." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 29067." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 26443." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 29589." + } + ] + }, + { + "year": 2015, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2015, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 24833." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 28223." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 27899." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 26055." + }, + { + "anilist_index": 4, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 23277." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 24415." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 23233." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 25397." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 23199." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 25681." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 22663." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 21339." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 27655." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 21511." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 30300." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 25015." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 26441." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 24873." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 28285." + }, + { + "anilist_index": 20, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 26165." + }, + { + "anilist_index": 21, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 25429." + } + ] + }, + { + "year": 2016, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 32935." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 32867." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 32995." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 31646." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 31339." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 32686." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 32899." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 30016." + }, + { + "anilist_index": 8, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 31988." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 33161." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 34321." + }, + { + "anilist_index": 11, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 32979." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 15227." + }, + { + "anilist_index": 13, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 33253." + }, + { + "anilist_index": 15, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 32801." + }, + { + "anilist_index": 16, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 33286." + }, + { + "anilist_index": 17, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 34213." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 32962." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 33433." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 33003." + }, + { + "anilist_index": 23, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 32983." + } + ] + }, + { + "year": 2016, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 31964." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 31240." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 31478." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 31933." + }, + { + "anilist_index": 4, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 31798." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 28623." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 32542." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 31404." + }, + { + "anilist_index": 8, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 32380." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 32093." + }, + { + "anilist_index": 10, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 32105." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 31741." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 31737." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 31338." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 31376." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 31245." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 31904." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 32681." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 32438." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 31405." + }, + { + "anilist_index": 20, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 31630." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 31327." + }, + { + "anilist_index": 23, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 32245." + } + ] + }, + { + "year": 2016, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 32281." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 28851." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 32182." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 33255." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 32282." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 30015." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 32729." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 32998." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 31722." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 31757." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 31953." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 32189." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 33028." + }, + { + "anilist_index": 13, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 32828." + }, + { + "anilist_index": 14, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 31952." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 32648." + }, + { + "anilist_index": 16, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 31764." + }, + { + "anilist_index": 17, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 32379." + }, + { + "anilist_index": 18, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 30911." + }, + { + "anilist_index": 19, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 32902." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 31845." + }, + { + "anilist_index": 21, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 31229." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 29758." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 31490." + } + ] + }, + { + "year": 2016, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 31043." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 30831." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 30654." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 31859." + }, + { + "anilist_index": 4, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 9260." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 31442." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 31637." + }, + { + "anilist_index": 7, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 31580." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 31636." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 30749." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 31173." + }, + { + "anilist_index": 11, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 32268." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 30346." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 28735." + }, + { + "anilist_index": 14, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 27833." + }, + { + "anilist_index": 16, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 31163." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 31553." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 31414." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 32013." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 32485." + }, + { + "anilist_index": 21, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 31559." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 32491." + }, + { + "anilist_index": 23, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 31710." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 28391." + } + ] + }, + { + "year": 2017, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 34572." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 35062." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 35788." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 34618." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 34542." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 35557." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 25537." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 36038." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 35838." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 35180." + }, + { + "anilist_index": 10, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 34451." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 35413." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 36106." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 35639." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 35076." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 35712." + }, + { + "anilist_index": 16, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 34712." + }, + { + "anilist_index": 17, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 35376." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 36220." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 36027." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 35484." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 33478." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 35079." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 35843." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 35241." + } + ] + }, + { + "year": 2017, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 25777." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 33486." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 34566." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 32951." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 32901." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 34822." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 34561." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 33502." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 30727." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 33475." + }, + { + "anilist_index": 10, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 32887." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 32262." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 34176." + }, + { + "anilist_index": 14, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 33929." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 34019." + }, + { + "anilist_index": 16, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 34480." + }, + { + "anilist_index": 17, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 30736." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 32900." + }, + { + "anilist_index": 21, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 31629." + }, + { + "anilist_index": 22, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 30778." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 33834." + }, + { + "anilist_index": 24, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 34055." + } + ] + }, + { + "year": 2017, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2017, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 32937." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 33206." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 32615." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 33487." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 31765." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 32949." + }, + { + "anilist_index": 6, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 33506." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 33489." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 31758." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 33731." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 33988." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 34096." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 33743." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 33836." + }, + { + "anilist_index": 14, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 33095." + }, + { + "anilist_index": 15, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 33337." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 31812." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 33581." + }, + { + "anilist_index": 20, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 32924." + }, + { + "anilist_index": 21, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 34086." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 34051." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 34414." + } + ] + }, + { + "year": 2018, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 37450." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 37430." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 37349." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 37991." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 36474." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 37799." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 37976." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 35972." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 37786." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 36946." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 37475." + }, + { + "anilist_index": 11, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 36286." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 35847." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 37497." + }, + { + "anilist_index": 14, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 37965." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 38249." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 36432." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 37202." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 37989." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 36653." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 37597." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 36632." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 37447." + } + ] + }, + { + "year": 2018, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 36456." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 35968." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 36511." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 30484." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 36949." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 36475." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 36296." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 36563." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 36028." + }, + { + "anilist_index": 9, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 34281." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 36793." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 36470." + }, + { + "anilist_index": 12, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 35249." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 35928." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 36023." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 36266." + }, + { + "anilist_index": 16, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 35677." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 36904." + }, + { + "anilist_index": 18, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 36214." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 36864." + }, + { + "anilist_index": 20, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 36754." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 35756." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 36652." + } + ] + }, + { + "year": 2018, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 35760." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 36098." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 36649." + }, + { + "anilist_index": 3, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 37675." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 37105." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 36896." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 35994." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 37141." + }, + { + "anilist_index": 8, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 37210." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 37171." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 37095." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 37517." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 35946." + }, + { + "anilist_index": 14, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 36726." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 21877." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 37569." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 37396." + }, + { + "anilist_index": 18, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 36704." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 37491." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 37446." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 36936." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 37259." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 36817." + } + ] + }, + { + "year": 2018, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 33352." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 35849." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 35120." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 34577." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 35073." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 34612." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 35860." + }, + { + "anilist_index": 7, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 35839." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 34798." + }, + { + "anilist_index": 9, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 35851." + }, + { + "anilist_index": 10, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 34382." + }, + { + "anilist_index": 11, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 34497." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 35466." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 32827." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 35222." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 34984." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 34944." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 35608." + }, + { + "anilist_index": 18, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 34279." + }, + { + "anilist_index": 19, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 35330." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 33047." + }, + { + "anilist_index": 21, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 36838." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 36124." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 35905." + } + ] + }, + { + "year": 2019, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 38408." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 39195." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 39597." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 39701." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 38659." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 39940." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 39565." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 39196." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 38483." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 39468." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 38572." + }, + { + "anilist_index": 11, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 40542." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 39523." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 40004." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 38084." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 37972." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 39491." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 37393." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 39539." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 37403." + }, + { + "anilist_index": 20, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 36885." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 39030." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 38328." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 38889." + } + ] + }, + { + "year": 2019, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 38000." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 38524." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 34134." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 38680." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 38329." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 38003." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 36407." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 38186." + }, + { + "anilist_index": 8, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 35848." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 38759." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 38397." + }, + { + "anilist_index": 11, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 38472." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 37435." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 38080." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 38594." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 38778." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 37614." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 38787." + }, + { + "anilist_index": 20, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 37426." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 34544." + }, + { + "anilist_index": 23, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 34620." + }, + { + "anilist_index": 24, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 39063." + } + ] + }, + { + "year": 2019, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2019, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 37779." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 37999." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 35790." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 37510." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 37520." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 38101." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 37086." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 37982." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 33049." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 36633." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 34437." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 37055." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 37451." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 37348." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 37993." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 38145." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 37956." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 37515." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 38699." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 37514." + }, + { + "anilist_index": 21, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 37920." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 31537." + } + ] + }, + { + "year": 2020, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 40748." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 40456." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 40776." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 41389." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 40454." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 40787." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 41433." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 40911." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 40571." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 41619." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 40497." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 40595." + }, + { + "anilist_index": 12, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 41468." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 41380." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 41345." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 41930." + }, + { + "anilist_index": 16, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 41006." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 39790." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 40397." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 41312." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 40974." + }, + { + "anilist_index": 21, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 40059." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 40359." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 41911." + } + ] + }, + { + "year": 2020, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 40591." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 40221." + }, + { + "anilist_index": 3, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 41168." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 40417." + }, + { + "anilist_index": 5, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 41120." + }, + { + "anilist_index": 6, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 39463." + }, + { + "anilist_index": 7, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 40902." + }, + { + "anilist_index": 8, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 38555." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 40060." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 40716." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 39710." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 39292." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 38830." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 40815." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 39555." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 40532." + }, + { + "anilist_index": 17, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 40128." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 38843." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 39469." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 40513." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 40485." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 39730." + }, + { + "anilist_index": 24, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 40682." + } + ] + }, + { + "year": 2020, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 39587." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 40839." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 41353." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 40956." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 40496." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 39547." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 37987." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 40540." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 41226." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 33050." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 40056." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 40421." + }, + { + "anilist_index": 12, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 40615." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 40708." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 40436." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 42603." + }, + { + "anilist_index": 16, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 40515." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 40623." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 40936." + }, + { + "anilist_index": 19, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 42091." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 40416." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 39753." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 40215." + } + ] + }, + { + "year": 2020, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 38883." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 39534." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 38668." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 38790." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 38656." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 36862." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 39017." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 37345." + }, + { + "anilist_index": 8, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 40262." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 40046." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 38992." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 39792." + }, + { + "anilist_index": 12, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 40010." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 39576." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 39575." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 38481." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 39988." + }, + { + "anilist_index": 17, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 38924." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 40483." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 38909." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 38256." + }, + { + "anilist_index": 21, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 40392." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 40453." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 40746." + } + ] + }, + { + "year": 2021, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 48561." + }, + { + "anilist_index": 1, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 49926." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 48926." + }, + { + "anilist_index": 3, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 45576." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 40834." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 47790." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 48569." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 48661." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 48556." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 48483." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 46352." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 44961." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 44037." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 42351." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 48761." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 42916." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 46985." + }, + { + "anilist_index": 18, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 48171." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 48707." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 48471." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 45055." + }, + { + "anilist_index": 22, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 42847." + } + ] + }, + { + "year": 2021, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 42249." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 41587." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 41025." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 41457." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 42361." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 40938." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 46095." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 42938." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 43692." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 46102." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 40586." + }, + { + "anilist_index": 11, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 44942." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 41623." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 41456." + }, + { + "anilist_index": 14, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 41402." + }, + { + "anilist_index": 15, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 43439." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 41488." + }, + { + "anilist_index": 17, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 43609." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 42192." + }, + { + "anilist_index": 19, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 43007." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 43325." + }, + { + "anilist_index": 21, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 44276." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 42205." + } + ] + }, + { + "year": 2021, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 23, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 24, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2021, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 40028." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 42897." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 39535." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 40852." + }, + { + "anilist_index": 4, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 39617." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 39551." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 42203." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 43299." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 42923." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 39783." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 37984." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 40750." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 40935." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 40530." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 41491." + }, + { + "anilist_index": 15, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 43690." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 40908." + }, + { + "anilist_index": 17, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 41899." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 3786." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 40594." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 39586." + }, + { + "anilist_index": 21, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 38474." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 41109." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 41694." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 39486." + } + ] + }, + { + "year": 2022, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 44511." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 50602." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 49596." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 48316." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 49918." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 50172." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 47917." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 41467." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 50594." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 50425." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 49891." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 49709." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 52865." + }, + { + "anilist_index": 13, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 49877." + }, + { + "anilist_index": 14, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 50710." + }, + { + "anilist_index": 15, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 52046." + }, + { + "anilist_index": 16, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 49828." + }, + { + "anilist_index": 17, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 52193." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 49784." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 49979." + }, + { + "anilist_index": 20, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 42962." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 51403." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 51098." + } + ] + }, + { + "year": 2022, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 50265." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 43608." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 40356." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 47194." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 45613." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 50631." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 50273." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 49520." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 50461." + }, + { + "anilist_index": 9, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 48548." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 48675." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 48760." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 48415." + }, + { + "anilist_index": 13, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 50175." + }, + { + "anilist_index": 14, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 50380." + }, + { + "anilist_index": 15, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 50549." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 49052." + }, + { + "anilist_index": 17, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 48643." + }, + { + "anilist_index": 18, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 41461." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 47162." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 42429." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 48842." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 48903." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 43470." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 48779." + } + ] + }, + { + "year": 2022, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 42310." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 50346." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 51096." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 50709." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 48895." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 48413." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 41084." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 42963." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 49220." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 47164." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 51367." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 50612." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 51213." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 49470." + }, + { + "anilist_index": 14, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 50593." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 51064." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 51417." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 49776." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 49438." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 47163." + }, + { + "anilist_index": 20, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 44524." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 50410." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 45653." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 51837." + } + ] + }, + { + "year": 2022, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 47778." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 48583." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 48736." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 40507." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 47159." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 49114." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 47161." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 49930." + }, + { + "anilist_index": 8, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 48414." + }, + { + "anilist_index": 9, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 50360." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 44055." + }, + { + "anilist_index": 11, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 41946." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 48553." + }, + { + "anilist_index": 13, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 49909." + }, + { + "anilist_index": 14, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 44516." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 48997." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 48239." + }, + { + "anilist_index": 17, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 49721." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 49310." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 42670." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 45560." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 42072." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 49893." + } + ] + }, + { + "year": 2023, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 52991." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 54492." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 53887." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 54595." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 52347." + }, + { + "anilist_index": 6, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 40357." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 55644." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 52741." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 54714." + }, + { + "anilist_index": 10, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 47160." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 51297." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 53888." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 35737." + }, + { + "anilist_index": 14, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 53439." + }, + { + "anilist_index": 15, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 54918." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 52990." + }, + { + "anilist_index": 17, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 54362." + }, + { + "anilist_index": 18, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 54870." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 54852." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 53833." + }, + { + "anilist_index": 21, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 50184." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 53879." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 50664." + } + ] + }, + { + "year": 2023, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 51019." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 46569." + }, + { + "anilist_index": 2, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 52034." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 52211." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 53393." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 48549." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 53126." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 52578." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 52830." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 50416." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 51958." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 50796." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 48585." + }, + { + "anilist_index": 14, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 53613." + }, + { + "anilist_index": 15, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 50307." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 51693." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 53129." + }, + { + "anilist_index": 18, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 52608." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 52308." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 51705." + }, + { + "anilist_index": 21, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 50220." + }, + { + "anilist_index": 22, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 52955." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 51632." + } + ] + }, + { + "year": 2023, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2023, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 49387." + }, + { + "anilist_index": 1, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 51535." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 52305." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 50739." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 50608." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 48417." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 53411." + }, + { + "anilist_index": 7, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 51105." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 53446." + }, + { + "anilist_index": 9, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 50330." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 51462." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 50197." + }, + { + "anilist_index": 12, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 53111." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 50932." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 52173." + }, + { + "anilist_index": 15, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 51815." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 52093." + }, + { + "anilist_index": 17, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 52736." + }, + { + "anilist_index": 18, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 41514." + }, + { + "anilist_index": 19, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 51711." + }, + { + "anilist_index": 20, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 51678." + }, + { + "anilist_index": 21, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 50854." + }, + { + "anilist_index": 22, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 49612." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 52446." + } + ] + }, + { + "year": 2024, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 57334." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 54857." + }, + { + "anilist_index": 2, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 57181." + }, + { + "anilist_index": 3, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 54865." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 52215." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 56784." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 58572." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 40333." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 57066." + }, + { + "anilist_index": 9, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 52995." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 50306." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 58172." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 59145." + }, + { + "anilist_index": 13, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 57891." + }, + { + "anilist_index": 14, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 56894." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 56964." + }, + { + "anilist_index": 16, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 54853." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 57611." + }, + { + "anilist_index": 18, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 60022." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 58714." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 56228." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 55887." + }, + { + "anilist_index": 23, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 59131." + } + ] + }, + { + "year": 2024, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 52588." + }, + { + "anilist_index": 1, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 55701." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 55888." + }, + { + "anilist_index": 3, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 54900." + }, + { + "anilist_index": 4, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 49458." + }, + { + "anilist_index": 5, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 54789." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 53580." + }, + { + "anilist_index": 7, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 58125." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 51122." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 53516." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 56923." + }, + { + "anilist_index": 11, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 53770." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 53434." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 55265." + }, + { + "anilist_index": 14, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 53865." + }, + { + "anilist_index": 15, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 48418." + }, + { + "anilist_index": 16, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 56690." + }, + { + "anilist_index": 17, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 55102." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 53835." + }, + { + "anilist_index": 20, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 57100." + }, + { + "anilist_index": 21, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 50713." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 55597." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 53407." + }, + { + "anilist_index": 24, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 56230." + } + ] + }, + { + "year": 2024, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 54744." + }, + { + "anilist_index": 1, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 55791." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 58059." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 57524." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 52635." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 58426." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 52367." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 57892." + }, + { + "anilist_index": 8, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 54968." + }, + { + "anilist_index": 9, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 54724." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 57058." + }, + { + "anilist_index": 11, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 52481." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 54913." + }, + { + "anilist_index": 13, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 48896." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 55848." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 53802." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 57810." + }, + { + "anilist_index": 17, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 49785." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 56062." + }, + { + "anilist_index": 19, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 57876." + }, + { + "anilist_index": 20, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 56538." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 49981." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 57864." + }, + { + "anilist_index": 24, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 57217." + } + ] + }, + { + "year": 2024, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 52299." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 52701." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 51180." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 55813." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 55866." + }, + { + "anilist_index": 5, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 49613." + }, + { + "anilist_index": 6, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 49889." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 50392." + }, + { + "anilist_index": 8, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 55690." + }, + { + "anilist_index": 9, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 52742." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 56352." + }, + { + "anilist_index": 11, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 53421." + }, + { + "anilist_index": 12, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 51648." + }, + { + "anilist_index": 13, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 56285." + }, + { + "anilist_index": 14, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 54722." + }, + { + "anilist_index": 15, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 54837." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 53730." + }, + { + "anilist_index": 17, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 52816." + }, + { + "anilist_index": 18, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 53889." + }, + { + "anilist_index": 19, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 53488." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 55129." + }, + { + "anilist_index": 21, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 50803." + }, + { + "anilist_index": 22, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 54265." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 53590." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 54449." + } + ] + }, + { + "year": 2025, + "season": "fall", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 52807." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 59027." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 60098." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 61026." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 59846." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 54703." + }, + { + "anilist_index": 6, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 60303." + }, + { + "anilist_index": 7, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 57025." + }, + { + "anilist_index": 8, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 59267." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 47158." + }, + { + "anilist_index": 10, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 61903." + }, + { + "anilist_index": 11, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 62405." + }, + { + "anilist_index": 12, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 59644." + }, + { + "anilist_index": 13, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 59517." + }, + { + "anilist_index": 14, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 60168." + }, + { + "anilist_index": 15, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 56854." + }, + { + "anilist_index": 16, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 61917." + }, + { + "anilist_index": 17, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 61276." + }, + { + "anilist_index": 18, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 61174." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 60564." + }, + { + "anilist_index": 20, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 60619." + }, + { + "anilist_index": 21, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 60531." + }, + { + "anilist_index": 22, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 60254." + }, + { + "anilist_index": 23, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 61930." + } + ] + }, + { + "year": 2025, + "season": "spring", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 51818." + }, + { + "anilist_index": 1, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 56038." + }, + { + "anilist_index": 2, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 59160." + }, + { + "anilist_index": 3, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 59597." + }, + { + "anilist_index": 4, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 60146." + }, + { + "anilist_index": 5, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 59452." + }, + { + "anilist_index": 6, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 60593." + }, + { + "anilist_index": 7, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 58359." + }, + { + "anilist_index": 8, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 60083." + }, + { + "anilist_index": 9, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 52709." + }, + { + "anilist_index": 10, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 49778." + }, + { + "anilist_index": 11, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 59457." + }, + { + "anilist_index": 12, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 58131." + }, + { + "anilist_index": 13, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 50738." + }, + { + "anilist_index": 14, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 59636." + }, + { + "anilist_index": 15, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 60140." + }, + { + "anilist_index": 16, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id 59833." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 60154." + }, + { + "anilist_index": 18, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 59360." + }, + { + "anilist_index": 22, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 60157." + }, + { + "anilist_index": 23, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 59466." + }, + { + "anilist_index": 24, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 59189." + } + ] + }, + { + "year": 2025, + "season": "summer", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 1, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 3, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 4, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 5, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 7, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 9, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 10, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 11, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 12, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 14, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 15, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 17, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 18, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 19, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 20, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 21, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 23, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id." + }, + { + "anilist_index": 24, + "jikan_index": 24, + "confidence": "high", + "reason": "Shared MAL id." + } + ] + }, + { + "year": 2025, + "season": "winter", + "matches": [ + { + "anilist_index": 0, + "jikan_index": 0, + "confidence": "high", + "reason": "Shared MAL id 58567." + }, + { + "anilist_index": 1, + "jikan_index": 1, + "confidence": "high", + "reason": "Shared MAL id 58939." + }, + { + "anilist_index": 2, + "jikan_index": 2, + "confidence": "high", + "reason": "Shared MAL id 58514." + }, + { + "anilist_index": 3, + "jikan_index": 3, + "confidence": "high", + "reason": "Shared MAL id 57592." + }, + { + "anilist_index": 4, + "jikan_index": 4, + "confidence": "high", + "reason": "Shared MAL id 57616." + }, + { + "anilist_index": 5, + "jikan_index": 5, + "confidence": "high", + "reason": "Shared MAL id 58502." + }, + { + "anilist_index": 6, + "jikan_index": 6, + "confidence": "high", + "reason": "Shared MAL id 59135." + }, + { + "anilist_index": 7, + "jikan_index": 8, + "confidence": "high", + "reason": "Shared MAL id 55997." + }, + { + "anilist_index": 8, + "jikan_index": 11, + "confidence": "high", + "reason": "Shared MAL id 58271." + }, + { + "anilist_index": 9, + "jikan_index": 7, + "confidence": "high", + "reason": "Shared MAL id 56701." + }, + { + "anilist_index": 10, + "jikan_index": 10, + "confidence": "high", + "reason": "Shared MAL id 59144." + }, + { + "anilist_index": 11, + "jikan_index": 9, + "confidence": "high", + "reason": "Shared MAL id 59361." + }, + { + "anilist_index": 12, + "jikan_index": 13, + "confidence": "high", + "reason": "Shared MAL id 58822." + }, + { + "anilist_index": 13, + "jikan_index": 12, + "confidence": "high", + "reason": "Shared MAL id 58853." + }, + { + "anilist_index": 14, + "jikan_index": 15, + "confidence": "high", + "reason": "Shared MAL id 59730." + }, + { + "anilist_index": 15, + "jikan_index": 14, + "confidence": "high", + "reason": "Shared MAL id 59349." + }, + { + "anilist_index": 16, + "jikan_index": 17, + "confidence": "high", + "reason": "Shared MAL id 59002." + }, + { + "anilist_index": 17, + "jikan_index": 19, + "confidence": "high", + "reason": "Shared MAL id 59561." + }, + { + "anilist_index": 18, + "jikan_index": 20, + "confidence": "high", + "reason": "Shared MAL id 58600." + }, + { + "anilist_index": 19, + "jikan_index": 21, + "confidence": "high", + "reason": "Shared MAL id 57648." + }, + { + "anilist_index": 20, + "jikan_index": 16, + "confidence": "high", + "reason": "Shared MAL id 57719." + }, + { + "anilist_index": 21, + "jikan_index": 22, + "confidence": "high", + "reason": "Shared MAL id 55318." + }, + { + "anilist_index": 22, + "jikan_index": 18, + "confidence": "high", + "reason": "Shared MAL id 53924." + }, + { + "anilist_index": 23, + "jikan_index": 23, + "confidence": "high", + "reason": "Shared MAL id 58437." + } + ] + } + ] +} diff --git a/test/fixtures/anilist/season_matrix/01-2010-winter.yaml b/test/fixtures/anilist/season_matrix/01-2010-winter.yaml new file mode 100644 index 0000000..f8f944b --- /dev/null +++ b/test/fixtures/anilist/season_matrix/01-2010-winter.yaml @@ -0,0 +1,658 @@ +metadata: + captured_at: '2026-05-11T11:32:19Z' + label: 2010-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2010 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:19 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '29' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 6746 + idMal: 6746 + title: + romaji: Durarara!! + english: Durarara!! + native: デュラララ!! + synonyms: + - DRRR!! + - דורארארה!! + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 8 + endDate: + year: 2010 + month: 6 + day: 25 + averageScore: 79 + nextAiringEpisode: null + - id: 7311 + idMal: 7311 + title: + romaji: Suzumiya Haruhi no Shoushitsu + english: The Disappearance of Haruhi Suzumiya + native: 涼宮ハルヒの消失 + synonyms: + - 스즈미야 하루히의 소실 + - La Disparition de Haruhi Suzumiya + - La Scomparsa di Haruhi Suzumiya + - 'Исчезновение Харухи Судзумии ' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 2 + day: 6 + endDate: + year: 2010 + month: 2 + day: 6 + averageScore: 86 + nextAiringEpisode: null + - id: 6594 + idMal: 6594 + title: + romaji: Katanagatari + english: Katanagatari + native: 刀語 + synonyms: + - Sword Story + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 26 + endDate: + year: 2010 + month: 12 + day: 11 + averageScore: 81 + nextAiringEpisode: null + - id: 6347 + idMal: 6347 + title: + romaji: Baka to Test to Shoukanjuu + english: Baka and Test - Summon the Beasts + native: バカとテストと召喚獣 + synonyms: + - The Idiot + - the Tests + - and the Summoned Creatures + - Baka to Test to Shokanju + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 7 + endDate: + year: 2010 + month: 4 + day: 1 + averageScore: 71 + nextAiringEpisode: null + - id: 6500 + idMal: 6500 + title: + romaji: Seikon no Qwaser + english: The Qwaser of Stigmata + native: 聖痕のクェイサー + synonyms: + - Seikon no Quasar + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 10 + endDate: + year: 2010 + month: 6 + day: 20 + averageScore: 55 + nextAiringEpisode: null + - id: 6922 + idMal: 6922 + title: + romaji: 'Fate/stay night Movie: UNLIMITED BLADE WORKS' + english: 'Fate/stay night: Unlimited Blade Works (Movie)' + native: 劇場版 Fate/stay night UNLIMITED BLADE WORKS + synonyms: + - 'Gekijouban Fate/Stay Night: Unlimited Blade Works' + - Fate/stay night UBW + - 'Судaьба/Ночь схватки: Бесконечный мир клинков' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 23 + endDate: + year: 2010 + month: 1 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 6862 + idMal: 6862 + title: + romaji: 'K-ON!: Live House!' + english: 'K-ON!: Live House!' + native: けいおん!「ライブハウス!」 + synonyms: + - K-On! OVA + - Keion OVA + - K-On! Episode 14 + - Keion OVA + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 19 + endDate: + year: 2010 + month: 1 + day: 19 + averageScore: 77 + nextAiringEpisode: null + - id: 6802 + idMal: 6802 + title: + romaji: So Ra No Wo To + english: Sound of the Sky + native: ソ・ラ・ノ・ヲ・ト + synonyms: + - Sora no Oto + - Soranowoto + - Sora no Woto + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 5 + endDate: + year: 2010 + month: 3 + day: 23 + averageScore: 74 + nextAiringEpisode: null + - id: 7148 + idMal: 7148 + title: + romaji: Ladies versus Butlers! + english: Ladies Versus Butlers + native: れでぃ×ばと! + synonyms: + - Ladies vs. Butlers! + - Redei x Bato + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 5 + endDate: + year: 2010 + month: 3 + day: 23 + averageScore: 61 + nextAiringEpisode: null + - id: 7338 + idMal: 7338 + title: + romaji: 'DARKER THAN BLACK: Kuro no Keiyakusha - Gaiden' + english: 'Darker than Black: Origins' + native: DARKER THAN BLACK -黒の契約者- 外伝 + synonyms: + - 'Darker than BLACK: Origin' + status: FINISHED + format: SPECIAL + episodes: 4 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 27 + endDate: + year: 2010 + month: 7 + day: 21 + averageScore: 76 + nextAiringEpisode: null + - id: 6324 + idMal: 6324 + title: + romaji: Omamori Himari + english: Omamori Himari + native: おまもりひまり + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 7 + endDate: + year: 2010 + month: 3 + day: 25 + averageScore: 63 + nextAiringEpisode: null + - id: 6747 + idMal: 6747 + title: + romaji: Dance in the Vampire Bund + english: Dance in the Vampire Bund + native: ダンスインザヴァンパイアバンド + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 7 + endDate: + year: 2010 + month: 4 + day: 1 + averageScore: 65 + nextAiringEpisode: null + - id: 6336 + idMal: 6336 + title: + romaji: Kidou Senshi Gundam UC + english: Mobile Suit Gundam UC + native: 機動戦士ガンダムUC + synonyms: + - Kidou Senshi Gundam Unicorn + - Mobile Suit Gundam Unicorn + status: FINISHED + format: OVA + episodes: 7 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 2 + day: 20 + endDate: + year: 2014 + month: 5 + day: 17 + averageScore: 78 + nextAiringEpisode: null + - id: 6574 + idMal: 6574 + title: + romaji: Hanamaru Youchien + english: Hanamaru Kindergarten + native: はなまる幼稚園 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 10 + endDate: + year: 2010 + month: 3 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 5690 + idMal: 5690 + title: + romaji: Nodame Cantabile Finale + english: null + native: のだめカンタービレ フィナーレ + synonyms: + - Nodame Cantabile Third Season + - Nodame Cantabile Season 3 + - 'Nodame Cantabile: Finale' + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 15 + endDate: + year: 2010 + month: 3 + day: 26 + averageScore: 80 + nextAiringEpisode: null + - id: 6951 + idMal: 6951 + title: + romaji: 'Yu☆Gi☆Oh!: Chou Yuugou! Toki wo Koeta Kizuna' + english: 'Yu-Gi-Oh! 3D: Bonds Beyond Time' + native: 劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~ + synonyms: + - Yugioh + - 'Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space' + - Yu-Gi-Oh! 10th Anniversary Special + - 10th Anniversary Gekijouban + - 'Yu-Gi-Oh!: Vínculos Além do Tempo' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 23 + endDate: + year: 2010 + month: 1 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 8023 + idMal: 8023 + title: + romaji: 'Toaru Kagaku no Railgun: Motto Marutto Railgun' + english: null + native: とある科学の超電磁砲 もっとまるっと超電磁砲 + synonyms: + - Toaru Kagaku no Railgun MMR + - A Certain Scientific Railgun Specials + status: FINISHED + format: SPECIAL + episodes: 2 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 29 + endDate: + year: 2010 + month: 5 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 7645 + idMal: 7645 + title: + romaji: Heartcatch Precure! + english: Heartcatch Precure! + native: ハートキャッチプリキュア! + synonyms: + - Heartcatch Pretty Cure! + status: FINISHED + format: TV + episodes: 49 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 2 + day: 7 + endDate: + year: 2011 + month: 1 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 7079 + idMal: 7079 + title: + romaji: Ookami Kakushi + english: Okamikakushi ~ Masque of the Wolf + native: おおかみかくし + synonyms: + - Ookamikakushi + - Wolfed Away + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 8 + endDate: + year: 2010 + month: 3 + day: 26 + averageScore: 58 + nextAiringEpisode: null + - id: 6645 + idMal: 6645 + title: + romaji: Chuu Bra!! + english: 'Chu-Bra!: Panty Appreciation Society' + native: ちゅーぶら!! + synonyms: + - Chu-Bra!! + - Chubra!! + - Chuubra!! + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 4 + endDate: + year: 2010 + month: 3 + day: 22 + averageScore: 57 + nextAiringEpisode: null + - id: 7062 + idMal: 7062 + title: + romaji: Hidamari Sketch x ☆☆☆ + english: Hidamari Sketch x Hoshimittsu + native: ひだまりスケッチ x ☆☆☆ + synonyms: + - Hidamari Sketch S3 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 8 + endDate: + year: 2010 + month: 3 + day: 26 + averageScore: 79 + nextAiringEpisode: null + - id: 4985 + idMal: 4985 + title: + romaji: 'Mahou Shoujo Lyrical Nanoha: The MOVIE 1st' + english: 'Magical Girl Lyrical Nanoha: The Movie 1st' + native: 魔法少女リリカルなのは The MOVIE 1st + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 1 + day: 23 + endDate: + year: 2010 + month: 1 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 8115 + idMal: 8115 + title: + romaji: Uchuu Show e Youkoso + english: Welcome to THE SPACE SHOW + native: 宇宙ショーへようこそ + synonyms: + - Uchu Show e Youkoso + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 2 + day: 18 + endDate: + year: 2010 + month: 2 + day: 18 + averageScore: 70 + nextAiringEpisode: null + - id: 9213 + idMal: 9213 + title: + romaji: Kowarekake no Orgel + english: null + native: こわれかけのオルゴール + synonyms: + - Kowarekake no Orgol + - Half-Broken Music Box + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2010 + startDate: + year: 2009 + month: 12 + day: 31 + endDate: + year: 2009 + month: 12 + day: 31 + averageScore: 69 + nextAiringEpisode: null + - id: 7762 + idMal: 7762 + title: + romaji: Yondemasu yo, Azazel-san. + english: null + native: よんでますよ、アザゼルさん。 + synonyms: [] + status: FINISHED + format: OVA + episodes: 4 + season: WINTER + seasonYear: 2010 + startDate: + year: 2010 + month: 2 + day: 23 + endDate: + year: 2014 + month: 6 + day: 23 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/02-2010-spring.yaml b/test/fixtures/anilist/season_matrix/02-2010-spring.yaml new file mode 100644 index 0000000..a952839 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/02-2010-spring.yaml @@ -0,0 +1,666 @@ +metadata: + captured_at: '2026-05-11T11:32:22Z' + label: 2010-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2010 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:22 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '28' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 6547 + idMal: 6547 + title: + romaji: Angel Beats! + english: Angel Beats! + native: Angel Beats! + synonyms: + - エンジェルビーツ + - פעימות מלאך + - الملاك الوحش + - Ангельские ритмы + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 3 + endDate: + year: 2010 + month: 6 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 7054 + idMal: 7054 + title: + romaji: Kaichou wa Maid-sama! + english: Maid-Sama! + native: 会長はメイド様! + synonyms: + - Kaicho wa Maidsama + - Kaichou wa Meido Sama + - Class President is a Maid! + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 2 + endDate: + year: 2010 + month: 9 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 7791 + idMal: 7791 + title: + romaji: K-ON!! + english: K-ON! Season 2 + native: けいおん!! + synonyms: + - Keion 2 + - K-On!! 2nd Season + - K on 2 + - 케이온!! + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 7 + endDate: + year: 2010 + month: 9 + day: 29 + averageScore: 82 + nextAiringEpisode: null + - id: 7785 + idMal: 7785 + title: + romaji: Yojouhan Shinwa Taikei + english: The Tatami Galaxy + native: 四畳半神話大系 + synonyms: + - Yojo-Han Shinwa Taikei + - Yojou-Han Shinwa Taikei + - Yojohan Shinwa Taikei + - 四叠半神话大系 + - 4½ Tatami Mythological Chronicles + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 23 + endDate: + year: 2010 + month: 7 + day: 2 + averageScore: 85 + nextAiringEpisode: null + - id: 7593 + idMal: 7593 + title: + romaji: kiss×sis (TV) + english: null + native: kiss×sis (TV) + synonyms: + - キスシス + - kiss x sis + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 5 + endDate: + year: 2010 + month: 6 + day: 21 + averageScore: 59 + nextAiringEpisode: null + - id: 7088 + idMal: 7088 + title: + romaji: Ichiban Ushiro no Daimaou + english: Demon King Daimao + native: いちばんうしろの大魔王 + synonyms: + - Ichiban Ushiro no Dai Mao + - Rei Demônio Daimao + - El Gran Rey Demonio + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 3 + endDate: + year: 2010 + month: 6 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 6956 + idMal: 6956 + title: + romaji: WORKING!! + english: Wagnaria!! + native: WORKING!! + synonyms: + - ワーキング!! + - 워킹!! + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 4 + endDate: + year: 2010 + month: 6 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 6114 + idMal: 6114 + title: + romaji: 'RAINBOW: Nisha Rokubou no Shichinin' + english: Rainbow + native: RAINBOW -二舎六房の七人- + synonyms: + - 'Rainbow: The Seven From Compound Two, Cell Six' + - Rainbow, os sete do bloco 2, cela 6 + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 2 + endDate: + year: 2010 + month: 9 + day: 29 + averageScore: 82 + nextAiringEpisode: null + - id: 7647 + idMal: 7647 + title: + romaji: Arakawa Under the Bridge + english: Arakawa Under the Bridge + native: 荒川アンダー ザ ブリッジ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 5 + endDate: + year: 2010 + month: 6 + day: 28 + averageScore: 74 + nextAiringEpisode: null + - id: 7817 + idMal: 7817 + title: + romaji: B Gata H Kei + english: 'Yamada''s First Time: B Gata H Kei' + native: B型H系 + synonyms: + - Yamada ma première fois + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 2 + endDate: + year: 2010 + month: 6 + day: 18 + averageScore: 64 + nextAiringEpisode: null + - id: 7472 + idMal: 7472 + title: + romaji: 'Gintama: Shinyaku Benizakura-hen' + english: Gintama - The Movie + native: 銀魂 新訳紅桜篇 + synonyms: + - 'Gintama: Benizakura Arc - A New Retelling' + - 'Gintama Movie: Crimson Sakura Chapter New Edition' + - 'Gintama: Shin-yaku Benizakura-hen' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 24 + endDate: + year: 2010 + month: 4 + day: 24 + averageScore: 83 + nextAiringEpisode: null + - id: 4106 + idMal: 4106 + title: + romaji: 'TRIGUN: Badlands Rumble' + english: 'Trigun: Badlands Rumble' + native: TRIGUN Badlands Rumble + synonyms: + - 劇場版トライガン + - Trigun Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 2 + endDate: + year: 2010 + month: 4 + day: 2 + averageScore: 76 + nextAiringEpisode: null + - id: 7465 + idMal: 7465 + title: + romaji: Eve no Jikan Movie + english: 'Time of Eve: The Movie' + native: イヴの時間 劇場版 + synonyms: + - Eve no Jikan - Are you enjoying the time of EVE ? Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 3 + day: 6 + endDate: + year: 2010 + month: 3 + day: 6 + averageScore: 77 + nextAiringEpisode: null + - id: 6637 + idMal: 6637 + title: + romaji: 'Higashi no Eden Movie II: Paradise Lost' + english: 'Eden of the East the Movie II: Paradise Lost' + native: 東のエデン 劇場版II Paradise Lost + synonyms: + - 'Higashi no Eden: Gekijouban II Paradise Lost' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 3 + day: 13 + endDate: + year: 2010 + month: 3 + day: 13 + averageScore: 72 + nextAiringEpisode: null + - id: 7590 + idMal: 7590 + title: + romaji: Mayoi Neko Overrun! + english: null + native: 迷い猫オーバーラン! + synonyms: + - Stray Cats Overrun! + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 6 + endDate: + year: 2010 + month: 6 + day: 29 + averageScore: 62 + nextAiringEpisode: null + - id: 7588 + idMal: 7588 + title: + romaji: Saraiya Goyou + english: House of Five Leaves + native: さらい屋 五葉 + synonyms: + - Sarai-ya Goyou + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 16 + endDate: + year: 2010 + month: 7 + day: 2 + averageScore: 75 + nextAiringEpisode: null + - id: 6895 + idMal: 6895 + title: + romaji: Hakuouki + english: Hakuoki ~Demon of the Fleeting Blossom~ + native: 薄桜鬼 + synonyms: + - Hakuoki + - Hakuouki Shinsengumi Kitan + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 4 + endDate: + year: 2010 + month: 6 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 8410 + idMal: 8410 + title: + romaji: 'Metal Fight Beyblade: Baku' + english: 'Beyblade: Metal Masters' + native: メタルファイト ベイブレード~爆~ + synonyms: + - 'Metal Fight Beyblade: Explosion' + - Metal Fight Beyblade 2 + - 'Beyblade: Metal Fusion 2' + status: FINISHED + format: TV + episodes: 51 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 4 + endDate: + year: 2011 + month: 3 + day: 27 + averageScore: 69 + nextAiringEpisode: null + - id: 8740 + idMal: 8740 + title: + romaji: 'ONE PIECE FILM: STRONG WORLD - EPISODE:0' + english: null + native: ONE PIECE FILM STRONG WORLD EPISODE:0 + synonyms: [] + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 16 + endDate: + year: 2010 + month: 4 + day: 16 + averageScore: 76 + nextAiringEpisode: null + - id: 8479 + idMal: 8479 + title: + romaji: Hetalia World Series + english: Hetalia World Series + native: ヘタリア World Series + synonyms: [] + status: FINISHED + format: ONA + episodes: 48 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 3 + day: 26 + endDate: + year: 2011 + month: 3 + day: 11 + averageScore: 68 + nextAiringEpisode: null + - id: 8310 + idMal: 8310 + title: + romaji: Magic Kaito + english: null + native: まじっく快斗 + synonyms: + - Kaito Kid + - Majikku Kaito + - Kaitou Kid + - Magic Kaitou + status: FINISHED + format: SPECIAL + episodes: 12 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 17 + endDate: + year: 2012 + month: 12 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 6772 + idMal: 6772 + title: + romaji: 'Break Blade 1: Kakusei no Toki' + english: Broken Blade + native: ブレイク ブレイド 覚醒ノ刻 + synonyms: + - Breaker Blade + - 'Break Blade 1: The Time of Awakening' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 5 + day: 29 + endDate: + year: 2010 + month: 5 + day: 29 + averageScore: 72 + nextAiringEpisode: null + - id: 7058 + idMal: 7058 + title: + romaji: Uragiri wa Boku no Namae wo Shitteiru + english: The Betrayal Knows My Name + native: 裏切りは僕の名前を知っている + synonyms: + - Uraboku + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 12 + endDate: + year: 2010 + month: 9 + day: 20 + averageScore: 67 + nextAiringEpisode: null + - id: 6408 + idMal: 6408 + title: + romaji: Bungaku Shoujo + english: null + native: 文学少女 + synonyms: + - Book Girl + - Literature Girl + - 'Book Girl: La chica de los libros' + - Book Girl, La Chica que Devoraba Libros + - Bungaku Shoujo - O Filme + - 'Garota dos Livros: O Filme' + - Буквоежка + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 5 + day: 1 + endDate: + year: 2010 + month: 5 + day: 1 + averageScore: 69 + nextAiringEpisode: null + - id: 7661 + idMal: 7661 + title: + romaji: GIANT KILLING + english: Giant Killing + native: GIANT KILLING + synonyms: + - ジャイアントキリング + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2010 + startDate: + year: 2010 + month: 4 + day: 4 + endDate: + year: 2010 + month: 9 + day: 26 + averageScore: 72 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/03-2010-summer.yaml b/test/fixtures/anilist/season_matrix/03-2010-summer.yaml new file mode 100644 index 0000000..24a8c18 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/03-2010-summer.yaml @@ -0,0 +1,689 @@ +metadata: + captured_at: '2026-05-11T11:32:25Z' + label: 2010-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2010 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:24 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '27' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 8074 + idMal: 8074 + title: + romaji: 'Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD' + english: High School of the Dead + native: 学園黙示録HIGHSCHOOL OF THE DEAD + synonyms: + - HOTD + - HSOTD + - 'High School of the Dead: Apocalipsis en el Instituto' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 5 + endDate: + year: 2010 + month: 9 + day: 20 + averageScore: 67 + nextAiringEpisode: null + - id: 7724 + idMal: 7724 + title: + romaji: Shiki + english: Shiki + native: 屍鬼 + synonyms: + - Corpse Demon + status: FINISHED + format: TV + episodes: 22 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 9 + endDate: + year: 2010 + month: 12 + day: 31 + averageScore: 75 + nextAiringEpisode: null + - id: 8675 + idMal: 8675 + title: + romaji: Seitokai Yakuindomo + english: Seitokai Yakuindomo + native: 生徒会役員共 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 4 + endDate: + year: 2010 + month: 9 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 7711 + idMal: 7711 + title: + romaji: Karigurashi no Arrietty + english: The Secret World of Arrietty + native: 借りぐらしのアリエッティ + synonyms: + - Karigurashi no Arrietti + - The Borrower Arrietty + - 'Arrietty: Le Petit Monde des Chapardeurs' + - Arrietty y el Mundo de los Diminutos + - O Mundo dos Pequeninos + - Arrietty + - Tajemniczy świat Arrietty + - العالم السري لآريتي + - Arrietty - Die wundersame Welt der Borger + - Arriettas hemmelige verden + - Arrietty - Il mondo segreto sotto il pavimento + - Lånaren Arrietty + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 17 + endDate: + year: 2010 + month: 7 + day: 17 + averageScore: 77 + nextAiringEpisode: null + - id: 6707 + idMal: 6707 + title: + romaji: Kuroshitsuji II + english: Black Butler II + native: 黒執事II + synonyms: + - Kuroshitsuji 2 + - Black Butler 2 + - คนลึกไขปริศนาลับ ภาค 2 + - คนลึกไขปริศนาลับ II + - Hắc quản gia 2 + - 黑执事 第2季 + - 黑執事 第2季 + - Hắc Quản Gia – Phần 2 + - 흑집사 2기 + - Diácono Negro temporada 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 2 + endDate: + year: 2010 + month: 9 + day: 17 + averageScore: 67 + nextAiringEpisode: null + - id: 8676 + idMal: 8676 + title: + romaji: Amagami SS + english: Amagami SS + native: アマガミSS + synonyms: + - 圣诞之吻SS + - 아마가미 SS + - Амагами СС + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 2 + endDate: + year: 2010 + month: 12 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 4901 + idMal: 4901 + title: + romaji: 'BLACK LAGOON: Roberta''s Blood Trail' + english: 'Black Lagoon: Roberta''s Blood Trail' + native: BLACK LAGOON Roberta's Blood Trail + synonyms: + - Black Lagoon 3 + status: FINISHED + format: OVA + episodes: 5 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 6 + day: 27 + endDate: + year: 2011 + month: 6 + day: 22 + averageScore: 79 + nextAiringEpisode: null + - id: 8086 + idMal: 8086 + title: + romaji: Densetsu no Yuusha no Densetsu + english: The Legend of the Legendary Heroes + native: 伝説の勇者の伝説 + synonyms: + - DenYuDen + - DenYuuDen + - Densetsu no Yusha no Densetsu + - LOLH + - 传说的勇者的传说 + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 2 + endDate: + year: 2010 + month: 12 + day: 17 + averageScore: 71 + nextAiringEpisode: null + - id: 8142 + idMal: 8142 + title: + romaji: Colorful + english: Colorful ~ The Motion Picture + native: カラフル + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 8 + day: 21 + endDate: + year: 2010 + month: 8 + day: 21 + averageScore: 75 + nextAiringEpisode: null + - id: 8246 + idMal: 8246 + title: + romaji: 'NARUTO: Shippuuden - The Lost Tower' + english: 'Naruto Shippuden the Movie: The Lost Tower' + native: 劇場版 NARUTO -ナルト- 疾風伝 ザ・ロストタワー + synonyms: + - Naruto Movie 7 + - 'Gekijouban Naruto Shippuuden: The Lost Tower' + - 'Naruto Shippūden la película: La torre perdida' + - 'Naruto Shippuden Movie 04: La torre perduta' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 31 + endDate: + year: 2010 + month: 7 + day: 31 + averageScore: 71 + nextAiringEpisode: null + - id: 7769 + idMal: 7769 + title: + romaji: Ookami-san to Shichinin no Nakama-tachi + english: Okami-san and Her Seven Companions + native: オオカミさんと七人の仲間たち + synonyms: + - Ookami-san to Shichinin no Nakamatachi + - Okamisan and Seven Companions + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 1 + endDate: + year: 2010 + month: 9 + day: 16 + averageScore: 68 + nextAiringEpisode: null + - id: 7592 + idMal: 7592 + title: + romaji: Nurarihyon no Mago + english: 'Nura: Rise of the Yokai Clan' + native: ぬらりひょんの孫 + synonyms: + - The Grandson of Nurarihyon + - Grandchild of Nurarihyon + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 6 + endDate: + year: 2010 + month: 12 + day: 21 + averageScore: 73 + nextAiringEpisode: null + - id: 5277 + idMal: 5277 + title: + romaji: 'Sekirei: Pure Engagement' + english: null + native: セキレイ~Pure Engagement~ + synonyms: + - Sekirei 2 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 6 + day: 13 + endDate: + year: 2010 + month: 9 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 6166 + idMal: 6166 + title: + romaji: Asobi ni Iku yo! + english: Cat Planet Cuties + native: あそびにいくヨ! + synonyms: + - Asobi ni Ikuyo! + - Let's Go Play! + - 'Asobi ni Ikuyo: Bombshells from the Sky' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 11 + endDate: + year: 2010 + month: 9 + day: 26 + averageScore: 61 + nextAiringEpisode: null + - id: 8408 + idMal: 8408 + title: + romaji: Durarara!! Specials + english: null + native: デュラララ!! + synonyms: + - Durarara!! Episode 12.5 + - Durarara!! Episode 25 + - Dhurarara!! + - Dyurarara!! + status: FINISHED + format: SPECIAL + episodes: 2 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 8 + day: 25 + endDate: + year: 2011 + month: 2 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 7059 + idMal: 7059 + title: + romaji: Black★Rock Shooter (OVA) + english: null + native: ブラック★ロックシューター (OVA) + synonyms: + - BRS OVA + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 24 + endDate: + year: 2010 + month: 7 + day: 24 + averageScore: 66 + nextAiringEpisode: null + - id: 7627 + idMal: 7627 + title: + romaji: Mitsudomoe + english: null + native: みつどもえ + synonyms: + - Three Way Struggle + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 3 + endDate: + year: 2010 + month: 9 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 7695 + idMal: 7695 + title: + romaji: 'Pocket Monsters Diamond & Pearl: Genei no Hasha Zoroark' + english: 'Pokémon: Zoroark—Master of Illusions' + native: ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク + synonyms: + - 'Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark' + - Pokemon Movie 13 + - 'Pokémon: Zoroark, Illusjonens mester' + - 'Pokémon: Zoroark, el maestro de ilusiones' + - 'Pokémon: Zoroark – Illuusioiden mestari' + - 'Pokémon: Zoroark, mistrz iluzji' + - 'Pokémon 13: Zoroark - Meester der Illusie' + - 'Pokémon Zororark: illusionernas mästare' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 10 + endDate: + year: 2010 + month: 7 + day: 10 + averageScore: 66 + nextAiringEpisode: null + - id: 10298 + idMal: 10298 + title: + romaji: 'Kaichou wa Maid-sama!: Goshujin-sama to Asonjao♥' + english: Maid-Sama! LaLa Special + native: 会長はメイド様! ご主人様と遊んじゃお♥ + synonyms: + - Kaichou wa Maid-sama LaLa Special + - Kaicho wa Maidsama LaLa Special + - Kaichou wa Meido Sama LaLa Special + - Class President is a Maid! LaLa Special + status: FINISHED + format: SPECIAL + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 24 + endDate: + year: 2010 + month: 7 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 6974 + idMal: 6974 + title: + romaji: Seikimatsu Occult Gakuin + english: Occult Academy + native: 世紀末オカルト学院 + synonyms: + - Zaidanhoujin Occult Designer Gakuin + - Seikimatsu Occult Academy + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 6 + endDate: + year: 2010 + month: 9 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 6381 + idMal: 6381 + title: + romaji: Strike Witches 2 + english: Strike Witches 2 + native: ストライクウィッチーズ 2 + synonyms: + - 强袭魔女2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 8 + endDate: + year: 2010 + month: 9 + day: 23 + averageScore: 71 + nextAiringEpisode: null + - id: 8577 + idMal: 8577 + title: + romaji: 'Aki-Sora: Yume no Naka' + english: Aki Sora + native: あきそら~夢の中~ + synonyms: + - 'Akisora: Yume no Naka' + - 'Aki-Sora: In a Dream' + status: FINISHED + format: OVA + episodes: 2 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 30 + endDate: + year: 2010 + month: 11 + day: 17 + averageScore: 54 + nextAiringEpisode: null + - id: 8768 + idMal: 8768 + title: + romaji: Hiyokoi + english: null + native: ひよ恋 + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 30 + endDate: + year: 2010 + month: 7 + day: 30 + averageScore: 68 + nextAiringEpisode: null + - id: 10659 + idMal: 10659 + title: + romaji: 'NARUTO: Soyokazeden - Naruto to Mashin to Mitsu no Onegai Dattebayo!!' + english: null + native: 劇場版 NARUTO -ナルト- そよかぜ伝 ナルトと魔神と3つのお願いだってばよ!! + synonyms: + - 'Gekijouban Naruto Soyokazeden: Naruto to Mashin to Mitsu no Onegai Dattebayo!!' + - 'Naruto: Gentle Breeze Chronicles the Film: Naruto' + - the Genie + - and the Three Wishes Dattebayo!! + status: FINISHED + format: SPECIAL + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 31 + endDate: + year: 2010 + month: 7 + day: 31 + averageScore: 64 + nextAiringEpisode: null + - id: 9063 + idMal: 9063 + title: + romaji: 'Toaru Kagaku no Railgun: Entenka no Satsuei Model mo Raku ja Arimasen wa ne.' + english: null + native: とある科学の超電磁砲 炎天下の撮影モデルも楽じゃありませんわね. + synonyms: + - Toaru Beach no Tokuten Eizo + - Toaru Kagaku no Railgun Episode 13 + - A Certain Scientific Railgun Episode 13 + - 'A Certain Scientific Railgun: Being a Photo Shoot Model Under the Blazing Sun Isn''t Easy, Is It?' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2010 + startDate: + year: 2010 + month: 7 + day: 24 + endDate: + year: 2010 + month: 7 + day: 24 + averageScore: 64 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/04-2010-fall.yaml b/test/fixtures/anilist/season_matrix/04-2010-fall.yaml new file mode 100644 index 0000000..d06c599 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/04-2010-fall.yaml @@ -0,0 +1,667 @@ +metadata: + captured_at: '2026-05-11T11:32:27Z' + label: 2010-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2010 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:27 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '26' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 8769 + idMal: 8769 + title: + romaji: Ore no Imouto ga Konna ni Kawaii Wake ga Nai + english: Oreimo + native: 俺の妹がこんなに可愛いわけがない + synonyms: + - My Little Sister Can't Be This Cute + - 我的妹妹哪有这么可爱! + - น้องสาวของผมไม่น่ารักขนาดนั้นหรอก + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 3 + endDate: + year: 2010 + month: 12 + day: 19 + averageScore: 65 + nextAiringEpisode: null + - id: 8525 + idMal: 8525 + title: + romaji: Kami nomi zo Shiru Sekai + english: The World God Only Knows + native: 神のみぞ知るセカイ + synonyms: + - Kaminomi + - Que sa volonté soit faite + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 7 + endDate: + year: 2010 + month: 12 + day: 23 + averageScore: 74 + nextAiringEpisode: null + - id: 7674 + idMal: 7674 + title: + romaji: Bakuman. + english: Bakuman. + native: バクマン。 + synonyms: + - Бакуман. + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 2 + endDate: + year: 2011 + month: 4 + day: 2 + averageScore: 79 + nextAiringEpisode: null + - id: 8795 + idMal: 8795 + title: + romaji: Panty & Stocking with Garterbelt + english: Panty & Stocking with Garterbelt + native: パンティ&ストッキングwithガーターベルト + synonyms: + - PanSto + - PSG + - P&SWG + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 2 + endDate: + year: 2010 + month: 12 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 8937 + idMal: 8937 + title: + romaji: Toaru Majutsu no Index II + english: A Certain Magical Index II + native: とある魔術の禁書目録II + synonyms: + - Toaru Majutsu no Index 2 + - Toaru Majutsu no Kinsho Mokuroku 2 + - 魔法禁书目录第二季 + - 魔法禁书目录 2 + - อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 2 + - Cấm thư ma thuật Index II + - Daftar Sihir Terlarang II + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 8 + endDate: + year: 2011 + month: 4 + day: 1 + averageScore: 73 + nextAiringEpisode: null + - id: 8861 + idMal: 8861 + title: + romaji: Yosuga no Sora + english: 'Yosuga no Sora: In Solitude Where We are Least Alone' + native: ヨスガノソラ + synonyms: + - Sky of Connection + - 缘之空 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 4 + endDate: + year: 2010 + month: 12 + day: 20 + averageScore: 56 + nextAiringEpisode: null + - id: 9181 + idMal: 9181 + title: + romaji: Motto To LOVE-Ru + english: Motto To Love Ru + native: もっと To LOVEる -とらぶる- + synonyms: + - Motto To-Love-Ru + - More Trouble + - More ToLoveRu + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 6 + endDate: + year: 2010 + month: 12 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 8129 + idMal: 8129 + title: + romaji: Kuragehime + english: Princess Jellyfish + native: 海月姫 + synonyms: + - Princesa Água Viva + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 15 + endDate: + year: 2010 + month: 12 + day: 31 + averageScore: 78 + nextAiringEpisode: null + - id: 9062 + idMal: 9062 + title: + romaji: Angel Beats! Specials + english: Angel Beats! Specials + native: エンジェルビーツ 特別篇 + synonyms: + - 'Angel Beats!: Stairway to Heaven' + - 'Angel Beats!: Hell''s Kitchen' + status: FINISHED + format: SPECIAL + episodes: 2 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 12 + day: 22 + endDate: + year: 2015 + month: 6 + day: 24 + averageScore: 72 + nextAiringEpisode: null + - id: 8407 + idMal: 8407 + title: + romaji: 'Sora no Otoshimono: Forte' + english: 'Heaven''s Lost Property: Forte' + native: そらのおとしものf(フォルテ) + synonyms: + - 'Sora no Otoshimono: f' + - Lost Property of the Sky 2 + - Misplaced by Heaven 2 + - Heaven's Lost Property 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 2 + endDate: + year: 2010 + month: 12 + day: 18 + averageScore: 70 + nextAiringEpisode: null + - id: 10067 + idMal: 10067 + title: + romaji: 'Angel Beats!: Another Epilogue' + english: null + native: エンジェルビーツ! アナザーエピローグ + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 12 + day: 22 + endDate: + year: 2010 + month: 12 + day: 22 + averageScore: 70 + nextAiringEpisode: null + - id: 8557 + idMal: 8557 + title: + romaji: Shinryaku! Ika Musume + english: Squid Girl + native: 侵略!イカ娘 + synonyms: + - The Invader Comes From the Bottom of the Sea! + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 5 + endDate: + year: 2010 + month: 12 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 8460 + idMal: 8460 + title: + romaji: Mirai Nikki OVA + english: null + native: 未来日記 + synonyms: + - The Future Diary OVA + - The Future Diary Pilot + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 12 + day: 9 + endDate: + year: 2010 + month: 12 + day: 9 + averageScore: 66 + nextAiringEpisode: null + - id: 8424 + idMal: 8424 + title: + romaji: MM! + english: MM! + native: えむえむっ! + synonyms: + - MM! Group + - Emu Emu! + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 2 + endDate: + year: 2010 + month: 12 + day: 18 + averageScore: 65 + nextAiringEpisode: null + - id: 8247 + idMal: 8247 + title: + romaji: 'BLEACH: Jigoku-hen' + english: 'Bleach the Movie: Hell Verse' + native: BLEACH 地獄篇 + synonyms: + - Bleach Movie 4 + - 'Bleach: The Hell Chapter' + - 'بليتش: قصيدة الجحيم' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 12 + day: 4 + endDate: + year: 2010 + month: 12 + day: 4 + averageScore: 73 + nextAiringEpisode: null + - id: 8277 + idMal: 8277 + title: + romaji: 'Hyakka Ryouran: Samurai Girls' + english: Samurai Girls + native: 百花繚乱 サムライガールズ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 9 + day: 4 + endDate: + year: 2010 + month: 12 + day: 20 + averageScore: 63 + nextAiringEpisode: null + - id: 9074 + idMal: 9074 + title: + romaji: Arakawa Under the Bridge x Bridge + english: Arakawa Under the Bridge x Bridge + native: 荒川アンダー ザ ブリッジ×ブリッジ + synonyms: + - Arakawa Under the Bridge*2 + - Arakawa Under the Bridge x2 + - Arakawa Under the Bridge 2nd Season + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 4 + endDate: + year: 2010 + month: 12 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 9107 + idMal: 9107 + title: + romaji: Pocket Monsters Best Wishes! + english: 'Pokémon: Black & White' + native: ポケットモンスターベストウイッシュ + synonyms: + - 'Pokemon: Best Wishes!' + - Black & White + - 'Pokemon: Black & White' + - 'Pokemon: Bianco e Nero' + status: FINISHED + format: TV + episodes: 84 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 9 + day: 23 + endDate: + year: 2012 + month: 6 + day: 14 + averageScore: 62 + nextAiringEpisode: null + - id: 8934 + idMal: 8934 + title: + romaji: 'STAR DRIVER: Kagayaki no Takuto' + english: Star Driver + native: STAR DRIVER 輝きのタクト + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 3 + endDate: + year: 2011 + month: 4 + day: 3 + averageScore: 69 + nextAiringEpisode: null + - id: 8726 + idMal: 8726 + title: + romaji: Soredemo Machi wa Mawatteiru + english: And Yet The Town Moves + native: それでも町は廻っている + synonyms: + - SoreMachi + - それ町 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 8 + endDate: + year: 2010 + month: 12 + day: 24 + averageScore: 74 + nextAiringEpisode: null + - id: 7662 + idMal: 7662 + title: + romaji: Shinrei Tantei Yakumo + english: Psychic Detective Yakumo + native: 心霊探偵 八雲 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 3 + endDate: + year: 2010 + month: 12 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 9136 + idMal: 9136 + title: + romaji: Kuroshitsuji II OVA + english: Black Butler II OVA + native: 黒執事II OVA + synonyms: + - Welcome to the Phantomhive Family + - Ciel in Wonderland + - คนลึกไขปริศนาลับ ภาค 2 OVA + - คนลึกไขปริศนาลับ II OVA + status: FINISHED + format: OVA + episodes: 6 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 27 + endDate: + year: 2011 + month: 5 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 8876 + idMal: 8876 + title: + romaji: 'Koe de Oshigoto!: The ANIMATION' + english: Koe de Oshigoto + native: こえでおしごと! The ANIMATION + synonyms: + - Koe de Oshigoto! The Animation + status: FINISHED + format: OVA + episodes: 2 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 11 + day: 17 + endDate: + year: 2011 + month: 5 + day: 11 + averageScore: 64 + nextAiringEpisode: null + - id: 8476 + idMal: 8476 + title: + romaji: Otome Youkai Zakuro + english: Zakuro + native: おとめ妖怪 ざくろ + synonyms: + - Otome Yokai Zakuro + - Girl Demon Zakuro + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 10 + day: 5 + endDate: + year: 2010 + month: 12 + day: 28 + averageScore: 71 + nextAiringEpisode: null + - id: 7858 + idMal: 7858 + title: + romaji: Sora no Otoshimono OVA + english: Heaven's Lost Property OVA + native: そらのおとしもの + synonyms: + - 'Sora no Otoshimono: Project Pink' + - Sora no Otoshimono Special + - Lost Property of the Sky OVA + - Misplaced by Heaven OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2010 + startDate: + year: 2010 + month: 9 + day: 9 + endDate: + year: 2010 + month: 9 + day: 9 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/05-2011-winter.yaml b/test/fixtures/anilist/season_matrix/05-2011-winter.yaml new file mode 100644 index 0000000..04139df --- /dev/null +++ b/test/fixtures/anilist/season_matrix/05-2011-winter.yaml @@ -0,0 +1,648 @@ +metadata: + captured_at: '2026-05-11T11:32:30Z' + label: 2011-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2011 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:30 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '25' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 9756 + idMal: 9756 + title: + romaji: Mahou Shoujo Madoka☆Magica + english: Puella Magi Madoka Magica + native: 魔法少女まどか☆マギカ + synonyms: + - Mahou Shoujo Madoka Magika + - Magical Girl Madoka Magica + - PMMM + - MSMM + - הנערה הקסומה מאדוקה מאגיקה + - Девочка-волшебница Мадока☆Волшебство + - Μάντοκα, το Μαγικό Κορίτσι + - สาวน้อยเวทมนตร์ มาโดกะ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 7 + endDate: + year: 2011 + month: 4 + day: 22 + averageScore: 83 + nextAiringEpisode: null + - id: 9041 + idMal: 9041 + title: + romaji: 'IS: Infinite Stratos' + english: Infinite Stratos + native: IS〈インフィニット・ストラトス〉 + synonyms: + - IS ปฏิบัติการรักจักรกลทะยานฟ้า + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 7 + endDate: + year: 2011 + month: 4 + day: 1 + averageScore: 61 + nextAiringEpisode: null + - id: 8425 + idMal: 8425 + title: + romaji: GOSICK + english: Gosick + native: GOSICK + synonyms: + - ゴシック + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 8 + endDate: + year: 2011 + month: 7 + day: 2 + averageScore: 77 + nextAiringEpisode: null + - id: 9656 + idMal: 9656 + title: + romaji: Kimi ni Todoke 2ND SEASON + english: 'Kimi ni Todoke: From Me to You Season 2' + native: 君に届け 2ND SEASON + synonyms: + - Reaching You 2nd Season + - 'Llegando a ti: Temporada 2' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 12 + endDate: + year: 2011 + month: 3 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 8841 + idMal: 8841 + title: + romaji: Kore wa Zombie desu ka? + english: Is this a Zombie? + native: これはゾンビですか? + synonyms: + - 'เจ้านี่เหรอซอมบี้ ' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 11 + endDate: + year: 2011 + month: 3 + day: 30 + averageScore: 69 + nextAiringEpisode: null + - id: 9513 + idMal: 9513 + title: + romaji: Beelzebub + english: Beelzebub + native: べるぜバブ + synonyms: [] + status: FINISHED + format: TV + episodes: 60 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 9 + endDate: + year: 2012 + month: 3 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 9367 + idMal: 9367 + title: + romaji: Freezing + english: Freezing + native: フリージング + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 8 + endDate: + year: 2011 + month: 4 + day: 7 + averageScore: 63 + nextAiringEpisode: null + - id: 11553 + idMal: 11553 + title: + romaji: 'Toradora!: Bentou no Gokui' + english: 'Toradora!: Bento Battle' + native: とらドラ! 弁当の極意 + synonyms: + - Toradora! Special + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 21 + endDate: + year: 2011 + month: 12 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 10020 + idMal: 10020 + title: + romaji: Ore no Imouto ga Konna ni Kawaii Wake ga Nai (ONA) + english: Oreimo (ONA) + native: 俺の妹がこんなに可愛いわけがない + synonyms: + - My Little Sister Can't Be This Cute Specials + - น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ตอนพิเศษ + status: FINISHED + format: ONA + episodes: 4 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 2 + day: 22 + endDate: + year: 2011 + month: 5 + day: 31 + averageScore: 70 + nextAiringEpisode: null + - id: 6954 + idMal: 6954 + title: + romaji: 'Kara no Kyoukai: Shuushou' + english: 'the Garden of sinners Chapter 8: The Final Chapter' + native: 空の境界 終章 + synonyms: + - 'The Garden of Sinners: Epilogue' + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 2 + day: 2 + endDate: + year: 2011 + month: 2 + day: 2 + averageScore: 71 + nextAiringEpisode: null + - id: 8426 + idMal: 8426 + title: + romaji: Hourou Musuko + english: Wandering Son + native: 放浪息子 + synonyms: + - The Transient Son + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 14 + endDate: + year: 2011 + month: 4 + day: 1 + averageScore: 74 + nextAiringEpisode: null + - id: 9330 + idMal: 9330 + title: + romaji: Dragon Crisis! + english: Dragon Crisis + native: ドラゴンクライシス! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 11 + endDate: + year: 2011 + month: 3 + day: 29 + averageScore: 61 + nextAiringEpisode: null + - id: 10794 + idMal: 10794 + title: + romaji: 'IS: Infinite Stratos Encore - Koi ni Kogareru Sextet' + english: 'IS: Infinite Stratos Encore: A Sextet Yearning for Love' + native: IS <インフィニット・ストラトス> アンコール『恋に焦がれる六重奏』 + synonyms: + - Infinite Stratos OVA + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 7 + endDate: + year: 2011 + month: 12 + day: 7 + averageScore: 64 + nextAiringEpisode: null + - id: 9471 + idMal: 9471 + title: + romaji: 'Baka to Test to Shoukanjuu: Matsuri' + english: 'Baka and Test - Summon the Beasts: Matsuri' + native: バカとテストと召喚獣 ~祭~ + synonyms: + - Baka to Test to Shoukanjuu OVA + - Baka to Test to Shokanju OVA + - The Idiot, the Tests, and the Summoned Creatures OVA + - 'Baka and Test: Summon the Beasts OVA' + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 2 + day: 23 + endDate: + year: 2011 + month: 3 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 9331 + idMal: 9331 + title: + romaji: Yumekui Merry + english: Dream Eater Merry + native: 夢喰いメリー + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 7 + endDate: + year: 2011 + month: 4 + day: 8 + averageScore: 65 + nextAiringEpisode: null + - id: 9834 + idMal: 9834 + title: + romaji: Level E + english: Level E + native: レベルE + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 11 + endDate: + year: 2011 + month: 4 + day: 5 + averageScore: 71 + nextAiringEpisode: null + - id: 10851 + idMal: 10851 + title: + romaji: euphoria + english: null + native: euphoria + synonyms: [] + status: FINISHED + format: OVA + episodes: 6 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 22 + endDate: + year: 2016 + month: 2 + day: 26 + averageScore: 53 + nextAiringEpisode: null + - id: 9587 + idMal: 9587 + title: + romaji: Onii-chan no Koto nanka Zenzen Suki Janain Dakara ne!! + english: I don't like my big brother at all!! + native: お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!! + synonyms: + - Oniichan no Koto Nanka Zenzen Suki Janain Dakara ne!! + - Onii-chan no Koto Nanka Zenzen Suki JanainDakara ne!! + - Onisuki + - Eu não gosto nem um pouco do meu maninho!! + - Definitivamente. ¡No me gusta mi hermano para nada! + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 9 + endDate: + year: 2011 + month: 3 + day: 27 + averageScore: 55 + nextAiringEpisode: null + - id: 9314 + idMal: 9314 + title: + romaji: Fractale + english: Fractale + native: フラクタル + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 14 + endDate: + year: 2011 + month: 4 + day: 1 + averageScore: 65 + nextAiringEpisode: null + - id: 10893 + idMal: 10893 + title: + romaji: Kyousougiga + english: null + native: 京騒戯画 + synonyms: + - Kyousogiga + - 第一弾 + status: FINISHED + format: ONA + episodes: 1 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 10 + endDate: + year: 2011 + month: 12 + day: 10 + averageScore: 68 + nextAiringEpisode: null + - id: 9130 + idMal: 9130 + title: + romaji: 'Saint Seiya: THE LOST CANVAS - Meiou Shinwa 2' + english: 'Saint Seiya: The Lost Canvas 2' + native: 聖闘士星矢 THE LOST CANVAS 冥王神話 2 + synonyms: + - 'Los Guerreros del Zodiaco: El lienzo perdido - Parte 2' + status: FINISHED + format: OVA + episodes: 13 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 2 + day: 23 + endDate: + year: 2011 + month: 7 + day: 20 + averageScore: 78 + nextAiringEpisode: null + - id: 9539 + idMal: 9539 + title: + romaji: Cardfight!! Vanguard + english: Cardfight Vanguard + native: カードファイト!! ヴァンガード + synonyms: [] + status: FINISHED + format: TV + episodes: 65 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 8 + endDate: + year: 2012 + month: 3 + day: 31 + averageScore: 67 + nextAiringEpisode: null + - id: 10075 + idMal: 10075 + title: + romaji: NARUTO×UT + english: null + native: NARUTO×UT + synonyms: + - NARUTO x UT + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 1 + endDate: + year: 2011 + month: 1 + day: 1 + averageScore: 69 + nextAiringEpisode: null + - id: 9510 + idMal: 9510 + title: + romaji: Mitsudomoe Zouryouchuu! + english: null + native: みつどもえ増量中! + synonyms: + - Mitsudomoe Dai Ni Ki + - Mitsudomoe 2-ki + status: FINISHED + format: TV + episodes: 8 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 1 + day: 9 + endDate: + year: 2011 + month: 2 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 10330 + idMal: 10330 + title: + romaji: 'Bakugan Battle Brawlers: Mechtanium Surge' + english: 'Bakugan: Mechtanium Surge' + native: 爆丸 バトルブローラーズ メクタニウムサージ + synonyms: + - 爆丸4 机械波涛 + - 'Bakugan: Świat Mechtoganów' + - 'Bakugan: El Surgimiento de Mechtanium' + status: FINISHED + format: TV + episodes: 46 + season: WINTER + seasonYear: 2011 + startDate: + year: 2011 + month: 2 + day: 13 + endDate: + year: 2012 + month: 1 + day: 26 + averageScore: 58 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/06-2011-spring.yaml b/test/fixtures/anilist/season_matrix/06-2011-spring.yaml new file mode 100644 index 0000000..7516467 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/06-2011-spring.yaml @@ -0,0 +1,689 @@ +metadata: + captured_at: '2026-05-11T11:32:32Z' + label: 2011-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2011 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:32 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '24' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 9253 + idMal: 9253 + title: + romaji: Steins;Gate + english: Steins;Gate + native: シュタインズ・ゲート + synonyms: + - S;G + - סטיינס;גייט + - 命运石之门 + - Врата;Штейна + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 6 + endDate: + year: 2011 + month: 9 + day: 14 + averageScore: 89 + nextAiringEpisode: null + - id: 9919 + idMal: 9919 + title: + romaji: Ao no Exorcist + english: Blue Exorcist + native: 青の祓魔師 + synonyms: + - Ao no Futsumashi + - اللهب الأزرق + - 'Ο Γαλάζιος Εξορκιστής ' + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 17 + endDate: + year: 2011 + month: 10 + day: 2 + averageScore: 73 + nextAiringEpisode: null + - id: 9989 + idMal: 9989 + title: + romaji: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. + english: 'Anohana: The Flower We Saw That Day' + native: あの日見た花の名前を僕達はまだ知らない。 + synonyms: + - AnoHana + - We Still Don't Know the Name of the Flower We Saw That Day. + - 'אנוהאנה: הפרח שראינו ביום ההוא' + - อาโนะฮานะ ดอกไม้ ความทรงจำ และมิตรภาพ + - あの花 + - 'AnoHana: ancora non conosciamo il nome del fiore che abbiamo visto quel giorno' + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2011 + month: 6 + day: 24 + averageScore: 80 + nextAiringEpisode: null + - id: 6880 + idMal: 6880 + title: + romaji: Deadman Wonderland + english: Deadman Wonderland + native: デッドマン・ワンダーランド + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 17 + endDate: + year: 2011 + month: 7 + day: 3 + averageScore: 67 + nextAiringEpisode: null + - id: 10165 + idMal: 10165 + title: + romaji: Nichijou + english: Nichijou - My Ordinary Life + native: 日常 + synonyms: + - Everyday + - Мелочи Жизни + - Повсякденнощі + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 3 + endDate: + year: 2011 + month: 9 + day: 25 + averageScore: 83 + nextAiringEpisode: null + - id: 9969 + idMal: 9969 + title: + romaji: Gintama' + english: Gintama Season 2 + native: 銀魂’ + synonyms: + - Gintama (2011) + status: FINISHED + format: TV + episodes: 51 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 4 + endDate: + year: 2012 + month: 3 + day: 26 + averageScore: 89 + nextAiringEpisode: null + - id: 9289 + idMal: 9289 + title: + romaji: Hanasaku Iroha + english: Hanasaku Iroha ~Blossoms for Tomorrow~ + native: 花咲くいろは + synonyms: + - Hana-Saku Iroha + - Hanairo + - 花开伊吕波 + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 3 + endDate: + year: 2011 + month: 9 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 10080 + idMal: 10080 + title: + romaji: Kami nomi zo Shiru Sekai II + english: The World God Only Knows II + native: 神のみぞ知るセカイⅡ + synonyms: + - Kami nomi zo Shiru Sekai 2 + - Kaminomi II + - The World God Only Knows 2 + - Que sa volonté soit faite II + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 12 + endDate: + year: 2011 + month: 6 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 8630 + idMal: 8630 + title: + romaji: Hidan no Aria + english: Aria the Scarlet Ammo + native: 緋弾のアリア + synonyms: + - Aria da Bala Escarlate + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2011 + month: 7 + day: 1 + averageScore: 64 + nextAiringEpisode: null + - id: 9379 + idMal: 9379 + title: + romaji: Denpa Onna to Seishun Otoko + english: Ground Control to Psychoelectric Girl + native: 電波女と青春男 + synonyms: + - Electromagnetic Wave Woman and Adolescent Man + - หนุ่มสามัญกับสาวหลุดโลก + - 电波女与青春男 + - 電波女與青春男 + - 전파녀와 청춘남 + - Дівчинка-Електромагнітна хвиля і хлопець-підліток + - Радиодевушка и юноша + - Радиосигнал от чудачки. Юноша на связи + - امرأة الموجة الكهرومغناطيسية والشاب المراهق, دختر الکترو مغناطیسی و پسر نوجوان + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2011 + month: 7 + day: 1 + averageScore: 68 + nextAiringEpisode: null + - id: 9515 + idMal: 9515 + title: + romaji: 'Gakuen Mokushiroku: HIGHSCHOOL OF THE DEAD - Drifters of the Dead' + english: 'High School of the Dead: Drifters of the Dead' + native: 学園黙示録HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド + synonyms: + - High School of the Dead OVA + - HOTD + - HSOTD + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 26 + endDate: + year: 2011 + month: 4 + day: 26 + averageScore: 62 + nextAiringEpisode: null + - id: 10163 + idMal: 10163 + title: + romaji: 'C: THE MONEY OF SOUL AND POSSIBILITY CONTROL' + english: '[C] - CONTROL - The Money and Soul of Possibility' + native: 「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL + synonyms: + - '[C] The Money of Soul and Possibility Control' + - '[C] - Control' + - C-Control + - The Money of Souland Possibility Controul + - Dusza na sprzedaż + - C + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2011 + month: 6 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 9760 + idMal: 9760 + title: + romaji: Hoshi wo Ou Kodomo + english: Children who Chase Lost Voices + native: 星を追う子ども + synonyms: + - Children who Chase Lost Voices from Deep Below + - Journey to Agartha + - Viaje a Agartha + - Csillaghajsza + - Voyage vers Agartha + - Die Reise nach Agartha + - Viaggio verso Agartha + - I bambini che inseguono le stelle + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 5 + day: 7 + endDate: + year: 2011 + month: 5 + day: 7 + averageScore: 71 + nextAiringEpisode: null + - id: 10271 + idMal: 10271 + title: + romaji: 'Gyakkyou Burai Kaiji: Hakairoku-hen' + english: Kaiji - Against All Rules + native: 逆境無頼カイジ 破戒録篇 + synonyms: + - 'The Suffering Pariah Kaiji: Backslide Arc' + - Kaiji 2 + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 6 + endDate: + year: 2011 + month: 9 + day: 28 + averageScore: 82 + nextAiringEpisode: null + - id: 10711 + idMal: 10711 + title: + romaji: Plastic Nee-san + english: Plastic Elder Sister + native: +チック姉さん + synonyms: + - +tic Nee-san + - +tic Elder Sister + - Plustic Neesan + - Plastic Nesan + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 5 + day: 16 + endDate: + year: 2012 + month: 7 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 9941 + idMal: 9941 + title: + romaji: TIGER & BUNNY + english: Tiger & Bunny + native: TIGER & BUNNY + synonyms: + - タイガー・アンド・バニー + - Tiger and Bunny + - Taibani + - Тигр та Кролик + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 3 + endDate: + year: 2011 + month: 9 + day: 18 + averageScore: 78 + nextAiringEpisode: null + - id: 9863 + idMal: 9863 + title: + romaji: SKET DANCE + english: SKET Dance + native: SKET DANCE + synonyms: + - スケットダンス + status: FINISHED + format: TV + episodes: 77 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 7 + endDate: + year: 2012 + month: 9 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 9734 + idMal: 9734 + title: + romaji: 'K-ON!!: Keikaku!' + english: 'K-ON! Season 2: Plan!' + native: けいおん!! 計画! + synonyms: + - Keion 2 Special + - K-On!! 2nd Season Special + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 3 + day: 16 + endDate: + year: 2011 + month: 3 + day: 16 + averageScore: 77 + nextAiringEpisode: null + - id: 10155 + idMal: 10155 + title: + romaji: Dog Days + english: Dog Days + native: ドッグデイズ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 2 + endDate: + year: 2011 + month: 6 + day: 25 + averageScore: 64 + nextAiringEpisode: null + - id: 9982 + idMal: 9982 + title: + romaji: FAIRY TAIL OVA + english: null + native: FAIRY TAIL OVA + synonyms: [] + status: FINISHED + format: OVA + episodes: 5 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2013 + month: 6 + day: 17 + averageScore: 70 + nextAiringEpisode: null + - id: 10079 + idMal: 10079 + title: + romaji: Hoshizora e Kakaru Hashi + english: A Bridge to the Starry Skies + native: 星空へ架かる橋 + synonyms: + - 星架か + - HoshiKaka + - Hoshizora - Ponte para o Céu Estrelado + - Un puente al cielo estrellado + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 11 + endDate: + year: 2011 + month: 6 + day: 27 + averageScore: 62 + nextAiringEpisode: null + - id: 9926 + idMal: 9926 + title: + romaji: Sekaiichi Hatsukoi + english: Sekai Ichi Hatsukoi - The World's Greatest First Love + native: 世界一初恋 TV + synonyms: + - Sekai-ichi Hatsukoi + - Sekai'ichi Hatsukoi + - World's Greatest First Love + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 9 + endDate: + year: 2011 + month: 6 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 9736 + idMal: 9736 + title: + romaji: Astarotte no Omocha! + english: Astarotte's Toy + native: アスタロッテのおもちゃ! + synonyms: + - Lotte no Omocha! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 11 + endDate: + year: 2011 + month: 6 + day: 26 + averageScore: 60 + nextAiringEpisode: null + - id: 10119 + idMal: 10119 + title: + romaji: Seitokai Yakuindomo OVA + english: null + native: 生徒会役員共 OVA + synonyms: + - Seitokai Yakuindomo (2011) + - Seitokai Yakuindomo (2012) + status: FINISHED + format: OVA + episodes: 8 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 4 + day: 15 + endDate: + year: 2013 + month: 10 + day: 17 + averageScore: 75 + nextAiringEpisode: null + - id: 9366 + idMal: 9366 + title: + romaji: 'Kaichou wa Maid-sama!: Omake dayo!' + english: Maid-Sama! It's an extra! + native: 会長はメイド様!おまけだよ! + synonyms: + - Kaicho wa Maid-sama! Special + - Kaicho wa Maidsama! Special + - Kaichou wa Meido Sama Special + - Class President is a Maid! Special + status: FINISHED + format: SPECIAL + episodes: 1 + season: SPRING + seasonYear: 2011 + startDate: + year: 2011 + month: 5 + day: 11 + endDate: + year: 2011 + month: 5 + day: 11 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/07-2011-summer.yaml b/test/fixtures/anilist/season_matrix/07-2011-summer.yaml new file mode 100644 index 0000000..0c1cba9 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/07-2011-summer.yaml @@ -0,0 +1,686 @@ +metadata: + captured_at: '2026-05-11T11:32:35Z' + label: 2011-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2011 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:35 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '23' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 10408 + idMal: 10408 + title: + romaji: Hotarubi no Mori e + english: Into the Forest of Fireflies' Light + native: 蛍火の杜へ + synonyms: + - To the Forest of Firefly Lights + - สู่ป่าแห่งแสงหิ่งห้อย + - Lạc Vào Khu Rừng Đom Đóm + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 9 + day: 17 + endDate: + year: 2011 + month: 9 + day: 17 + averageScore: 80 + nextAiringEpisode: null + - id: 10161 + idMal: 10161 + title: + romaji: NO.6 + english: No.6 + native: NO.6 + synonyms: + - ナンバー・シックス + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 9 + day: 16 + averageScore: 73 + nextAiringEpisode: null + - id: 10162 + idMal: 10162 + title: + romaji: Usagi Drop + english: Bunny Drop + native: うさぎドロップ + synonyms: + - 白兔糖 + - Un drôle de père + - White Rabbit Candy + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 9 + day: 16 + averageScore: 81 + nextAiringEpisode: null + - id: 10110 + idMal: 10110 + title: + romaji: Mayo Chiki! + english: Mayo Chiki! + native: まよチキ! + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 9 + day: 30 + averageScore: 69 + nextAiringEpisode: null + - id: 10490 + idMal: 10490 + title: + romaji: BLOOD-C + english: Blood-C + native: BLOOD-C + synonyms: + - ブラッドシー + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 9 + day: 30 + averageScore: 62 + nextAiringEpisode: null + - id: 10495 + idMal: 10495 + title: + romaji: Yuru Yuri + english: YuruYuri + native: ゆるゆり + synonyms: + - YRYR + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 5 + endDate: + year: 2011 + month: 9 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 10721 + idMal: 10721 + title: + romaji: Mawaru Penguindrum + english: Penguindrum + native: 輪るピングドラム + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 12 + day: 23 + averageScore: 79 + nextAiringEpisode: null + - id: 8516 + idMal: 8516 + title: + romaji: Baka to Test to Shoukanjuu Ni! + english: Baka and Test - Summon the Beasts 2 + native: バカとテストと召喚獣 にっ! + synonyms: + - Baka to Test to Shoukanjuu 2 + - The Idiot + - the Tests + - and the Summoned Creatures 2 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 9 + day: 30 + averageScore: 74 + nextAiringEpisode: null + - id: 10029 + idMal: 10029 + title: + romaji: Coquelicot-zaka kara + english: From Up on Poppy Hill + native: コクリコ坂から + synonyms: + - Kokuriko-saka kara + - Kokuriko-zaka kara + - La Colina de las Amapolas + - Da Colina Kokuriko + - La collina dei papaveri + - A Colina das Papoilas + - La Colline aux coquelicots + - Der Mohnblumenberg + - Makowe wzgórze + - من أعلى تلة الخشخاش + - Møte på valmueåsen + - Uppe på vallmokullen + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 16 + endDate: + year: 2011 + month: 7 + day: 16 + averageScore: 75 + nextAiringEpisode: null + - id: 10012 + idMal: 10012 + title: + romaji: Carnival Phantasm + english: null + native: カーニバル・ファンタズム + synonyms: + - Карнавальный Фантазм + status: FINISHED + format: OVA + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 8 + day: 14 + endDate: + year: 2011 + month: 12 + day: 31 + averageScore: 77 + nextAiringEpisode: null + - id: 10589 + idMal: 10589 + title: + romaji: 'NARUTO: Blood Prison' + english: 'Naruto Shippuden the Movie: Blood Prison' + native: 劇場版 NARUTO -ナルト- ブラッド・プリズン + synonyms: + - Naruto Movie 8 + - Naruto Shippuuden Movie 5 + - 'Naruto Shippūden la película: Prisión de sangre' + - 'Naruto Shippuden Movie 05: La prigione insanguinata' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 30 + endDate: + year: 2011 + month: 7 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 10568 + idMal: 10568 + title: + romaji: Kamisama no Memochou + english: Heaven's Memo Pad + native: 神様のメモ帳 + synonyms: + - It's the Only NEET Thing to Do + - Kami-sama no Memo-chou + - Kamisama no Memo-chou + - God's Notebook + - 'Kamisama no Memo-chou: It''s the Only NEET Thing to Do.' + - ผ่าคดีลับนักสืบนีท + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 2 + endDate: + year: 2011 + month: 9 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 10379 + idMal: 10379 + title: + romaji: Natsume Yuujinchou San + english: Natsume's Book of Friends Season 3 + native: 夏目友人帳 参 + synonyms: + - Natsume Yuujinchou Three + - Natsume Yuujinchou 3 + - Natsume Yujincho 3 + - O Livro de Amigos de Natsume 3 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 5 + endDate: + year: 2011 + month: 9 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 10278 + idMal: 10278 + title: + romaji: THE IDOLM@STER + english: The Idol Master + native: アイドルマスター + synonyms: + - The Idolmaster + - The iDOLM@STER + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 8 + endDate: + year: 2011 + month: 12 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 9135 + idMal: 9135 + title: + romaji: 'Hagane no Renkinjutsushi: Milos no Seinaru Hoshi' + english: 'Fullmetal Alchemist: The Sacred Star of Milos' + native: 鋼の錬金術師 嘆きの丘の聖なる星 + synonyms: + - Fullmetal Alchemist Movie 2 + - Hagane no Renkinjutsushi Movie 2 + - FMA Movie 2 + - 'Fullmetal Alchemist: La Estrella Sagrada de Milos' + - 钢之炼金术师 叹息之丘的圣星 + - Fullmetal Alchemist – Święta Gwiazda Milos + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 2 + endDate: + year: 2011 + month: 7 + day: 2 + averageScore: 69 + nextAiringEpisode: null + - id: 8915 + idMal: 8915 + title: + romaji: Dantalian no Shoka + english: The Mystic Archives of Dantalian + native: ダンタリアンの書架 + synonyms: + - Bibliotheca Mystica de Dantalian + - Dantalian's Bookshelf + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 16 + endDate: + year: 2011 + month: 10 + day: 1 + averageScore: 69 + nextAiringEpisode: null + - id: 10321 + idMal: 10321 + title: + romaji: Uta no☆Prince-sama♪ Maji LOVE 1000% + english: Uta no Prince Sama + native: うたの☆プリンスさまっ♪ マジLOVE1000% + synonyms: + - 'Uta no Prince-sama: Maji Love 1000%' + - UtaPri + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 3 + endDate: + year: 2011 + month: 9 + day: 24 + averageScore: 65 + nextAiringEpisode: null + - id: 10209 + idMal: 10209 + title: + romaji: Kore wa Zombie desu ka? OVA + english: Is this a Zombie? OVA + native: これはゾンビですか? OVA + synonyms: + - เจ้านี่เหรอซอมบี้ OVA + status: FINISHED + format: OVA + episodes: 2 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 6 + day: 10 + endDate: + year: 2012 + month: 4 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 9790 + idMal: 9790 + title: + romaji: 'Sora no Otoshimono: Tokeijikake no Angeloid' + english: 'Heaven''s Lost Property the Movie: The Angeloid of Clockwork' + native: 劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド) + synonyms: + - 'Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid' + - 'Sora no Otoshimono: The Movie' + - Lost Property of the Sky Movie + - Misplaced by Heaven + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 6 + day: 25 + endDate: + year: 2011 + month: 6 + day: 25 + averageScore: 71 + nextAiringEpisode: null + - id: 10805 + idMal: 10805 + title: + romaji: 'Kami nomi zo Shiru Sekai: 4-nin to Idol' + english: 'The World God Only Knows: 4 Girls and an Idol' + native: 神のみぞ知るセカイ 4人とアイドル + synonyms: + - 'Kami nomi zo Shiru Sekai: Yonin to Idol' + - Kaminomi OVA + - Kami Nomi zo Shiru Sekai OVA + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 9 + day: 16 + endDate: + year: 2011 + month: 9 + day: 16 + averageScore: 70 + nextAiringEpisode: null + - id: 10049 + idMal: 10049 + title: + romaji: 'Nurarihyon no Mago: Sennen Makyou' + english: 'Nura: Rise of the Yokai Clan - Demon Capital' + native: ぬらりひょんの孫 千年魔京 + synonyms: + - Nurarihyon no Mago 2 + - The Grandson of Nurarihyon 2 + - Grandchild of Nurarihyon 2 + - 'Nura: Rise of the Yokai Clan: Demon Capital' + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 3 + endDate: + year: 2011 + month: 12 + day: 18 + averageScore: 77 + nextAiringEpisode: null + - id: 9750 + idMal: 9750 + title: + romaji: Itsuka Tenma no Kuro Usagi + english: A Dark Rabbit has Seven Lives + native: いつか天魔の黒ウサギ + synonyms: + - Itsuka Tenma no Kuro-Usagi + - Itsuten + - Itsu-ten + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 9 + endDate: + year: 2011 + month: 9 + day: 24 + averageScore: 60 + nextAiringEpisode: null + - id: 11077 + idMal: 11077 + title: + romaji: 'HELLSING: THE DAWN' + english: null + native: HELLSING:THE DAWN + synonyms: + - 'Hellsing: The Dawn: A supplementary of HELLSING' + - Hellsing OVA Specials + - Hellsing Ultimate Specials + - 漫画:THE DAWN + - 'ヘルシング: THE DAWN' + status: FINISHED + format: SPECIAL + episodes: 3 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 27 + endDate: + year: 2012 + month: 12 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 10686 + idMal: 10686 + title: + romaji: 'NARUTO: Honoo no Chuunin Shiken! Naruto vs Konohamaru!!' + english: null + native: NARUTO -ナルト- 炎の中忍試験! ナルトvs木ノ葉丸!! + synonyms: + - 'Naruto Shippuden: Chuunin Exam on Fire! Naruto vs. Konohamaru!' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 7 + day: 30 + endDate: + year: 2011 + month: 7 + day: 30 + averageScore: 68 + nextAiringEpisode: null + - id: 10389 + idMal: 10389 + title: + romaji: Momo e no Tegami + english: A Letter to Momo + native: ももへの手紙 + synonyms: + - Una Carta para Momo + - Lettre à Momo + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2011 + startDate: + year: 2011 + month: 9 + day: 10 + endDate: + year: 2011 + month: 9 + day: 10 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/08-2011-fall.yaml b/test/fixtures/anilist/season_matrix/08-2011-fall.yaml new file mode 100644 index 0000000..e9cf9a6 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/08-2011-fall.yaml @@ -0,0 +1,668 @@ +metadata: + captured_at: '2026-05-11T11:32:38Z' + label: 2011-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2011 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:37 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '22' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 11061 + idMal: 11061 + title: + romaji: HUNTER×HUNTER (2011) + english: Hunter x Hunter (2011) + native: HUNTER×HUNTER (2011) + synonyms: + - ハンター×ハンター + - HxH + - 全职猎人 + - האנטר האנטר + - ฮันเตอร์ x ฮันเตอร์ + - 'القناص ' + - Мисливець X Мисливець + status: FINISHED + format: TV + episodes: 148 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 2 + endDate: + year: 2014 + month: 9 + day: 24 + averageScore: 89 + nextAiringEpisode: null + - id: 10620 + idMal: 10620 + title: + romaji: Mirai Nikki + english: The Future Diary + native: 未来日記 + synonyms: + - 未来日记 + - יומן העתיד + status: FINISHED + format: TV + episodes: 26 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 9 + endDate: + year: 2012 + month: 4 + day: 15 + averageScore: 69 + nextAiringEpisode: null + - id: 10087 + idMal: 10087 + title: + romaji: Fate/Zero + english: Fate/Zero + native: Fate/Zero + synonyms: + - フェイト/ゼロ + - F/Z + - القدر/زيرو + - פייט/זירו + - Судьба/Начало + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 2 + endDate: + year: 2011 + month: 12 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 10793 + idMal: 10793 + title: + romaji: Guilty Crown + english: Guilty Crown + native: ギルティクラウン + synonyms: + - المُلك المُدان + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 14 + endDate: + year: 2012 + month: 3 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 10719 + idMal: 10719 + title: + romaji: Boku wa Tomodachi ga Sukunai + english: Haganai + native: 僕は友達が少ない + synonyms: + - I Don't Have Many Friends + - Boku ha Tomodachi ga Sukunai + - 我的朋友很少 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 7 + endDate: + year: 2011 + month: 12 + day: 23 + averageScore: 68 + nextAiringEpisode: null + - id: 10800 + idMal: 10800 + title: + romaji: Chihayafuru + english: Chihayafuru + native: ちはやふる + synonyms: + - Chihayafull + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 5 + endDate: + year: 2012 + month: 3 + day: 28 + averageScore: 80 + nextAiringEpisode: null + - id: 9617 + idMal: 9617 + title: + romaji: K-ON! Movie + english: 'K-ON!: The Movie' + native: 映画けいおん! + synonyms: + - Eiga K-On! + - Keion Movie + - K on Movie + - Film K-On! + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 3 + endDate: + year: 2011 + month: 12 + day: 3 + averageScore: 83 + nextAiringEpisode: null + - id: 10396 + idMal: 10396 + title: + romaji: Ben-To + english: Ben-To + native: ベン・トー + synonyms: + - Bento + - Ben-Tou + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 9 + endDate: + year: 2011 + month: 12 + day: 25 + averageScore: 68 + nextAiringEpisode: null + - id: 9936 + idMal: 9936 + title: + romaji: Maken-Ki! + english: Maken-Ki! Battling Venus + native: マケン姫っ! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 5 + endDate: + year: 2011 + month: 12 + day: 21 + averageScore: 59 + nextAiringEpisode: null + - id: 10030 + idMal: 10030 + title: + romaji: Bakuman. 2 + english: null + native: バクマン。2 + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 1 + endDate: + year: 2012 + month: 3 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 10213 + idMal: 10213 + title: + romaji: Maji de Watashi ni Koi Shinasai! + english: 'Majikoi: Oh! Samurai Girls' + native: 真剣で私に恋しなさい! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 2 + endDate: + year: 2011 + month: 12 + day: 18 + averageScore: 62 + nextAiringEpisode: null + - id: 10588 + idMal: 10588 + title: + romaji: Persona 4 the Animation + english: Persona 4 the Animation + native: ペルソナ4アニメーション + synonyms: + - P4A + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 7 + endDate: + year: 2012 + month: 3 + day: 30 + averageScore: 73 + nextAiringEpisode: null + - id: 10521 + idMal: 10521 + title: + romaji: WORKING'!! + english: Wagnaria!!2 + native: WORKING'!! + synonyms: + - ワーキング’!! + - Working!! 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 1 + endDate: + year: 2011 + month: 12 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 6773 + idMal: 6773 + title: + romaji: Shakugan no Shana III (Final) + english: 'Shakugan no Shana: Season III' + native: 灼眼のシャナIII (Final) + synonyms: + - Shakugan no Shana Third + - Shakugan no Shana 3 + - Shakugan no Shana Final + - 'ชานะ นักรบเนตรอัคคี ภาคที่ 3 ' + - Hoả nhãn của Shana 3 + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 8 + endDate: + year: 2012 + month: 3 + day: 24 + averageScore: 72 + nextAiringEpisode: null + - id: 10456 + idMal: 10456 + title: + romaji: Kyoukaisenjou no Horizon + english: Horizon in the Middle of Nowhere + native: 境界線上のホライゾン + synonyms: + - Horizon on the Middle of Nowhere + - Kyoukai Senjou no Horizon + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 2 + endDate: + year: 2011 + month: 12 + day: 25 + averageScore: 66 + nextAiringEpisode: null + - id: 10460 + idMal: 10460 + title: + romaji: Kimi to Boku. + english: You and Me. + native: 君と僕。 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 4 + endDate: + year: 2011 + month: 12 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 10578 + idMal: 10578 + title: + romaji: C³ + english: C3 + native: シーキューブ + synonyms: + - C Cube + - C^3 + - C³ - CubexCursedxCurious + - C3 Anime + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 1 + endDate: + year: 2011 + month: 12 + day: 17 + averageScore: 61 + nextAiringEpisode: null + - id: 12565 + idMal: 12565 + title: + romaji: Fate/Prototype + english: null + native: Fate/Prototype + synonyms: + - フェイト/プロトタイプ + - Судьба/Прототип + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 31 + endDate: + year: 2011 + month: 12 + day: 31 + averageScore: 63 + nextAiringEpisode: null + - id: 10798 + idMal: 10798 + title: + romaji: UN-GO + english: UN-GO + native: UN-GO アン ゴ + synonyms: + - Un Go + - Ungo + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 14 + endDate: + year: 2011 + month: 12 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 12231 + idMal: 12231 + title: + romaji: 'Dragon Ball: Episode of Bardock' + english: 'Dragon Ball: Episode of Bardock' + native: ドラゴンボール エピソード オブ バーダック + synonyms: + - 'Драконий жемчуг: Эпизод Бардока' + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 12 + day: 17 + endDate: + year: 2011 + month: 12 + day: 17 + averageScore: 68 + nextAiringEpisode: null + - id: 10397 + idMal: 10397 + title: + romaji: 'Mashiroiro Symphony: The color of lovers' + english: Mashiroiro Symphony + native: ましろ色シンフォニー -The color of lovers- + synonyms: + - 'Mashiroiro Symphony: Love Is Pure White' + - Mashiro-iro Symphony + - Pure White Symphony + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 5 + endDate: + year: 2011 + month: 12 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 10897 + idMal: 10897 + title: + romaji: 'Boku wa Tomodachi ga Sukunai Episode 0: Yaminabe wa Bishoujo ga Zannen na Nioi' + english: 'Haganai: Episode 0' + native: 僕は友達が少ない 第0語 闇鍋は美少女が残念な臭い(;´∀`) + synonyms: + - Boku wa Tomodachi ga Sukunai OVA + - Haganai OVA + - I Don't Have Many Friends OVA + - Boku ha Tomodachi ga Sukunai OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 9 + day: 22 + endDate: + year: 2011 + month: 9 + day: 22 + averageScore: 63 + nextAiringEpisode: null + - id: 11266 + idMal: 11266 + title: + romaji: 'Ao no Exorcist: Kuro no Iede' + english: 'Blue Exorcist: Runaway Kuro' + native: 青の祓魔師 クロの家出 + synonyms: + - Ao no Exorcist Special + - 'Ao no Futsumashi: Kuro no Iede' + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 26 + endDate: + year: 2011 + month: 10 + day: 26 + averageScore: 69 + nextAiringEpisode: null + - id: 10418 + idMal: 10418 + title: + romaji: 'Deadman Wonderland: Akai Knife Tsukai' + english: 'Deadman Wonderland: The Red Knife Wielder' + native: デッドマン・ワンダーランド 赤いナイフ使い + synonyms: + - Deadman Wonderland OAD + - Deadman Wonderland OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 10 + day: 8 + endDate: + year: 2011 + month: 10 + day: 8 + averageScore: 65 + nextAiringEpisode: null + - id: 10378 + idMal: 10378 + title: + romaji: Shinryaku!? Ika Musume + english: Squid Girl 2 + native: 侵略!?イカ娘 + synonyms: + - The Invader Comes From the Bottom of the Sea! + - Shinryaku! Ika Musume 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2011 + startDate: + year: 2011 + month: 9 + day: 27 + endDate: + year: 2011 + month: 12 + day: 25 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/09-2012-winter.yaml b/test/fixtures/anilist/season_matrix/09-2012-winter.yaml new file mode 100644 index 0000000..bb6ace8 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/09-2012-winter.yaml @@ -0,0 +1,655 @@ +metadata: + captured_at: '2026-05-11T11:32:40Z' + label: 2012-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2012 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:40 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '21' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 11111 + idMal: 11111 + title: + romaji: Another + english: Another + native: アナザー + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 10 + endDate: + year: 2012 + month: 3 + day: 27 + averageScore: 71 + nextAiringEpisode: null + - id: 11617 + idMal: 11617 + title: + romaji: High School DxD + english: High School DxD + native: ハイスクールD×D + synonyms: + - תיכון די אקס די + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 6 + endDate: + year: 2012 + month: 3 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 11843 + idMal: 11843 + title: + romaji: Danshi Koukousei no Nichijou + english: Daily Lives of High School Boys + native: 男子高校生の日常 + synonyms: + - Nichibros + - La vie quotidienne de lycéens + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 10 + endDate: + year: 2012 + month: 3 + day: 27 + averageScore: 80 + nextAiringEpisode: null + - id: 11597 + idMal: 11597 + title: + romaji: Nisemonogatari + english: Nisemonogatari + native: 偽物語 + synonyms: + - Fake Tale + - Истории подделок + - ปกรณัมของเทียม + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 8 + endDate: + year: 2012 + month: 3 + day: 18 + averageScore: 79 + nextAiringEpisode: null + - id: 10863 + idMal: 10863 + title: + romaji: 'Steins;Gate: Oukoubakko no Poriomania' + english: 'Steins;Gate: Egoistic Poriomania' + native: シュタインズ・ゲート 横行跋扈のポリオマニア + synonyms: + - Steins + - Gate Special + - Poriomanía del egoismo + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 22 + endDate: + year: 2012 + month: 2 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 11013 + idMal: 11013 + title: + romaji: Inu x Boku SS + english: Inu X Boku Secret Service + native: 妖狐×僕SS + synonyms: + - Youko x Boku SS + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 13 + endDate: + year: 2012 + month: 3 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 11433 + idMal: 11433 + title: + romaji: Ano Natsu de Matteru + english: Waiting in the Summer + native: あの夏で待ってる + synonyms: + - Natsumachi + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 10 + endDate: + year: 2012 + month: 3 + day: 27 + averageScore: 71 + nextAiringEpisode: null + - id: 11319 + idMal: 11319 + title: + romaji: Zero no Tsukaima F + english: The Familiar of Zero F + native: ゼロの使い魔F + synonyms: + - Zero no Tsukaima Final Series + - Zero's Familiar Final Series + - Zero no Tsukaima S4 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 7 + endDate: + year: 2012 + month: 3 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 11285 + idMal: 11285 + title: + romaji: Black★Rock Shooter (TV) + english: Black Rock Shooter + native: ブラック★ロックシューター (TV) + synonyms: + - BRS TV + - Black Rock Shooter TV + status: FINISHED + format: TV + episodes: 8 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 3 + endDate: + year: 2012 + month: 3 + day: 23 + averageScore: 63 + nextAiringEpisode: null + - id: 10218 + idMal: 10218 + title: + romaji: 'Berserk: Ougon Jidai-hen I - Haou no Tamago' + english: 'Berserk: The Golden Age Arc I - The Egg of the King' + native: ベルセルク 黄金時代篇Ⅰ 覇王の卵 + synonyms: + - Berserk Movie + - Berserk Saga + - 'Berserk: Golden Age Arc I - Egg of the Supreme Ruler' + - 'The Golden Age Arc I: The High King''s Egg' + - 'Berserk: La Edad de Oro I - El Huevo del Rey Conquistador' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 4 + endDate: + year: 2012 + month: 2 + day: 4 + averageScore: 74 + nextAiringEpisode: null + - id: 11665 + idMal: 11665 + title: + romaji: Natsume Yuujinchou Shi + english: Natsume's Book of Friends Season 4 + native: 夏目友人帳 肆 + synonyms: + - Natsume Yuujinchou Four + - Natsume Yuujinchou 4 + - Natsume Yujincho 4 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 3 + endDate: + year: 2012 + month: 3 + day: 27 + averageScore: 85 + nextAiringEpisode: null + - id: 11751 + idMal: 11751 + title: + romaji: Senki Zesshou Symphogear + english: Symphogear + native: 戦姫絶唱シンフォギア + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 7 + endDate: + year: 2012 + month: 3 + day: 30 + averageScore: 69 + nextAiringEpisode: null + - id: 11179 + idMal: 11179 + title: + romaji: Papa no Iukoto wo Kikinasai! + english: Listen to Me, Girls. I Am Your Father! + native: パパのいうことを聞きなさい! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 11 + endDate: + year: 2012 + month: 3 + day: 28 + averageScore: 69 + nextAiringEpisode: null + - id: 11235 + idMal: 11235 + title: + romaji: Amagami SS+ plus + english: null + native: アマガミSS+ plus + synonyms: + - Amagami SS Dai Ni Ki + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 6 + endDate: + year: 2012 + month: 3 + day: 30 + averageScore: 71 + nextAiringEpisode: null + - id: 11079 + idMal: 11079 + title: + romaji: Kill Me Baby + english: Kill Me Baby + native: キルミーベイベー + synonyms: + - Baby, Please Kill Me. + - תהרוג אותי מותק + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 6 + endDate: + year: 2012 + month: 3 + day: 30 + averageScore: 66 + nextAiringEpisode: null + - id: 11241 + idMal: 11241 + title: + romaji: Brave 10 + english: null + native: ブレイブ・テン + synonyms: + - Brave10 + - Brave Ten + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 8 + endDate: + year: 2012 + month: 3 + day: 25 + averageScore: 62 + nextAiringEpisode: null + - id: 11227 + idMal: 11227 + title: + romaji: Rinne no Lagrange + english: 'Lagrange: The Flower of Rin-ne' + native: 輪廻のラグランジェ + synonyms: + - Flower declaration of your heart + - Lag-Rin + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 8 + endDate: + year: 2012 + month: 3 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 10447 + idMal: 10447 + title: + romaji: Aquarion EVOL + english: Aquarion EVOL + native: アクエリオンEVOL + synonyms: [] + status: FINISHED + format: TV + episodes: 26 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 9 + endDate: + year: 2012 + month: 6 + day: 25 + averageScore: 67 + nextAiringEpisode: null + - id: 12191 + idMal: 12191 + title: + romaji: Smile Precure! + english: Glitter Force + native: スマイルプリキュア + synonyms: + - Smile Pretty Cure! + status: FINISHED + format: TV + episodes: 48 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 5 + endDate: + year: 2013 + month: 1 + day: 27 + averageScore: 69 + nextAiringEpisode: null + - id: 8917 + idMal: 8917 + title: + romaji: Mouretsu Pirates + english: Bodacious Space Pirates + native: モーレツ宇宙海賊 + synonyms: + - Mouretsu Uchuu Kaizoku + - Miniskirt Pirates + - Moretsu Uchuu Kaizoku + status: FINISHED + format: TV + episodes: 26 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 8 + endDate: + year: 2012 + month: 7 + day: 1 + averageScore: 68 + nextAiringEpisode: null + - id: 10638 + idMal: 10638 + title: + romaji: 'Denpa Onna to Seishun Otoko: Mayonaka no Taiyou' + english: 'Ground Control to Psychoelectric Girl: The Nighttime Sun' + native: 電波女と青春男 真夜中の太陽 + synonyms: + - Denpa Onna to Seishun Otoko Episode 13 + - Electromagnetic Wave Woman and Adolescent Man Special + - 'Ground Control to Psychoelectric Girl: Episode 13' + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 8 + endDate: + year: 2012 + month: 2 + day: 8 + averageScore: 70 + nextAiringEpisode: null + - id: 10417 + idMal: 10417 + title: + romaji: Gyo + english: 'GYO: Tokyo Fish Attack' + native: ギョ + synonyms: + - ปลามรณะ + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 2 + day: 15 + endDate: + year: 2012 + month: 2 + day: 15 + averageScore: 47 + nextAiringEpisode: null + - id: 11697 + idMal: 11697 + title: + romaji: Area no Kishi + english: The Knight in the Area + native: エリアの騎士 + synonyms: + - Il cavaliere dell'area di rigore + status: FINISHED + format: TV + episodes: 37 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 7 + endDate: + year: 2012 + month: 9 + day: 29 + averageScore: 67 + nextAiringEpisode: null + - id: 11491 + idMal: 11491 + title: + romaji: Recorder to Randoseru Do♪ + english: Recorder and Randsell + native: リコーダーとランドセル ド♪ + synonyms: + - Recorder and Backpack Do + - Recorder and Satchel Do + - Recorder and Randsell Do + - Recorder and Ransel Do + status: FINISHED + format: TV_SHORT + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 6 + endDate: + year: 2012 + month: 3 + day: 28 + averageScore: 62 + nextAiringEpisode: null + - id: 11371 + idMal: 11371 + title: + romaji: Shin Tennis no Ouji-sama + english: The Prince of Tennis II + native: 新テニスの王子様 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2012 + startDate: + year: 2012 + month: 1 + day: 5 + endDate: + year: 2012 + month: 3 + day: 29 + averageScore: 72 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/10-2012-spring.yaml b/test/fixtures/anilist/season_matrix/10-2012-spring.yaml new file mode 100644 index 0000000..b9409b3 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/10-2012-spring.yaml @@ -0,0 +1,653 @@ +metadata: + captured_at: '2026-05-11T11:32:42Z' + label: 2012-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2012 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:42 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '20' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 12189 + idMal: 12189 + title: + romaji: Hyouka + english: Hyouka + native: 氷菓 + synonyms: + - 'Hyouka: Forbidden Secrets' + - เฮียวกะปริศนาความทรงจำ + - Хёка + - 빙과 + - 冰菓 + status: FINISHED + format: TV + episodes: 22 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 23 + endDate: + year: 2012 + month: 9 + day: 16 + averageScore: 79 + nextAiringEpisode: null + - id: 11771 + idMal: 11771 + title: + romaji: Kuroko no Basket + english: Kuroko's Basketball + native: 黒子のバスケ + synonyms: + - Kuroko no Basuke + - The Basketball Which Kuroko Plays + - הכדורסל של קורוקו + - Баскетбол Куроко + - Το Μπάσκετ του Κουρόκο + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 8 + endDate: + year: 2012 + month: 9 + day: 22 + averageScore: 78 + nextAiringEpisode: null + - id: 11741 + idMal: 11741 + title: + romaji: Fate/Zero 2nd Season + english: Fate/Zero Season 2 + native: Fate/Zero 2ndシーズン + synonyms: + - フェイト/ゼロ 2ndシーズン + - F/Z + - Судьба/Начало 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 8 + endDate: + year: 2012 + month: 6 + day: 24 + averageScore: 84 + nextAiringEpisode: null + - id: 12355 + idMal: 12355 + title: + romaji: Ookami Kodomo no Ame to Yuki + english: Wolf Children + native: おおかみこどもの雨と雪 + synonyms: + - The Wolf Children Ame and Yuki + - Los Niños Lobo + - Les Enfants loups, Ame & Yuki + - Wilcze Dzieci + - Ame e Yuki i bambini lupo + - Crianças Lobo + - Vargbarnen + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 6 + day: 25 + endDate: + year: 2012 + month: 6 + day: 25 + averageScore: 83 + nextAiringEpisode: null + - id: 11759 + idMal: 11759 + title: + romaji: Accel World + english: Accel World + native: アクセル・ワールド + synonyms: + - Accelerated World + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 7 + endDate: + year: 2012 + month: 9 + day: 22 + averageScore: 67 + nextAiringEpisode: null + - id: 11499 + idMal: 11499 + title: + romaji: Sankarea + english: 'Sankarea: Undying Love' + native: さんかれあ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 6 + endDate: + year: 2012 + month: 6 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 12531 + idMal: 12531 + title: + romaji: Sakamichi no Apollon + english: Kids on the Slope + native: 坂道のアポロン + synonyms: + - Sakamichi no Aporon + - Apollo on the Slope + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 13 + endDate: + year: 2012 + month: 6 + day: 29 + averageScore: 80 + nextAiringEpisode: null + - id: 12445 + idMal: 12445 + title: + romaji: Tasogare Otome x Amnesia + english: Dusk Maiden of Amnesia + native: 黄昏乙女×アムネジア + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 9 + endDate: + year: 2012 + month: 6 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 12413 + idMal: 12413 + title: + romaji: Jormungand + english: Jormungand + native: ヨルムンガンド + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 11 + endDate: + year: 2012 + month: 6 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 11785 + idMal: 11785 + title: + romaji: Haiyore! Nyaruko-san + english: 'Nyaruko: Crawling with Love!' + native: 這いよれ!ニャル子さん + synonyms: + - Haiyoru! Nyaruko-san + - 'Nyarko-san: Another Crawling Chaos' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 10 + endDate: + year: 2012 + month: 6 + day: 26 + averageScore: 66 + nextAiringEpisode: null + - id: 12467 + idMal: 12467 + title: + romaji: Nazo no Kanojo X + english: Mysterious Girlfriend X + native: 謎の彼女X + synonyms: + - MGX + - NazoKanoX + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 8 + endDate: + year: 2012 + month: 7 + day: 1 + averageScore: 69 + nextAiringEpisode: null + - id: 12291 + idMal: 12291 + title: + romaji: Acchi Kocchi + english: Place to Place + native: あっちこっち + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 6 + endDate: + year: 2012 + month: 6 + day: 29 + averageScore: 72 + nextAiringEpisode: null + - id: 10790 + idMal: 10790 + title: + romaji: Kore wa Zombie desu ka? of the Dead + english: Is this A Zombie? of the Dead + native: これはゾンビですか?オブ・ザ・デッド + synonyms: + - Kore wa Zombie Desu ka? Jigoku-hen + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 5 + endDate: + year: 2012 + month: 6 + day: 7 + averageScore: 71 + nextAiringEpisode: null + - id: 11761 + idMal: 11761 + title: + romaji: Medaka Box + english: Medaka Box + native: めだかボックス + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 5 + endDate: + year: 2012 + month: 6 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 12431 + idMal: 12431 + title: + romaji: Uchuu Kyoudai + english: Space Brothers + native: 宇宙兄弟 + synonyms: + - Uchu Kyodai + - Space Bros + status: FINISHED + format: TV + episodes: 99 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 1 + endDate: + year: 2014 + month: 3 + day: 22 + averageScore: 83 + nextAiringEpisode: null + - id: 13357 + idMal: 13357 + title: + romaji: High School DxD Specials + english: 'High School DxD: Fantasy Jiggles Unleashed' + native: ハイスクールD×Dスペシャル + synonyms: + - Highschool DxD Specials + status: FINISHED + format: SPECIAL + episodes: 6 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 3 + day: 21 + endDate: + year: 2012 + month: 8 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 11701 + idMal: 11701 + title: + romaji: 'Another: The Other - Inga' + english: 'Another: The Other' + native: アナザー The Other -因果- + synonyms: + - Another 00 + - 'Another: The Other -Inga-' + - Another OAD + - Another OVA + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 5 + day: 26 + endDate: + year: 2012 + month: 5 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 12883 + idMal: 12883 + title: + romaji: Tsuritama + english: Tsuritama + native: つり球 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 13 + endDate: + year: 2012 + month: 6 + day: 29 + averageScore: 73 + nextAiringEpisode: null + - id: 12893 + idMal: 12893 + title: + romaji: Danshi Koukousei no Nichijou Specials + english: Daily Lives of High School Boys Specials + native: 男子高校生の日常 + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 6 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 3 + endDate: + year: 2012 + month: 9 + day: 4 + averageScore: 76 + nextAiringEpisode: null + - id: 12029 + idMal: 12029 + title: + romaji: Uchuu Senkan Yamato 2199 + english: 'Star Blazers: Space Battleship Yamato 2199' + native: 宇宙戦艦ヤマト2199 + synonyms: [] + status: FINISHED + format: OVA + episodes: 26 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 6 + endDate: + year: 2013 + month: 8 + day: 24 + averageScore: 80 + nextAiringEpisode: null + - id: 10681 + idMal: 10681 + title: + romaji: 'BLOOD-C: The Last Dark' + english: 'BLOOD-C: The Last Dark' + native: 劇場版 BLOOD-C The Last Dark + synonyms: + - Blood-C Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 6 + day: 2 + endDate: + year: 2012 + month: 6 + day: 2 + averageScore: 68 + nextAiringEpisode: null + - id: 11837 + idMal: 11837 + title: + romaji: Zetman + english: Zetman + native: ゼットマン + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 3 + endDate: + year: 2012 + month: 6 + day: 26 + averageScore: 64 + nextAiringEpisode: null + - id: 13203 + idMal: 13203 + title: + romaji: 'LUPIN the Third: Mine Fujiko to Iu Onna' + english: 'Lupin the Third: The Woman Called Fujiko Mine' + native: LUPIN the Third ~峰不二子という女~ + synonyms: + - Lupin III + - Lupin III~Mine Fujiko to Iu Onna~ + - 'Lupin the Third: La donna chiamata Fujiko Mine' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 5 + endDate: + year: 2012 + month: 6 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 12815 + idMal: 12815 + title: + romaji: Shirokuma Cafe + english: Polar Bear's Café + native: しろくまカフェ + synonyms: + - Polar Bear Cafe + - Shirokuma Café + status: FINISHED + format: TV + episodes: 50 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 5 + endDate: + year: 2013 + month: 3 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 12979 + idMal: 12979 + title: + romaji: NARUTO SD Rock Lee no Seishun Full-Power Ninden + english: 'NARUTO Spin-Off: Rock Lee & His Ninja Pals' + native: NARUTOナルトSD ロック・リーの青春フルパワー忍伝 + synonyms: + - Naruto SD-Rock Lee:Les Péripéties d'un ninja en herbe + status: FINISHED + format: TV + episodes: 51 + season: SPRING + seasonYear: 2012 + startDate: + year: 2012 + month: 4 + day: 3 + endDate: + year: 2013 + month: 3 + day: 26 + averageScore: 66 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/11-2012-summer.yaml b/test/fixtures/anilist/season_matrix/11-2012-summer.yaml new file mode 100644 index 0000000..ab3fbca --- /dev/null +++ b/test/fixtures/anilist/season_matrix/11-2012-summer.yaml @@ -0,0 +1,656 @@ +metadata: + captured_at: '2026-05-11T11:32:46Z' + label: 2012-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2012 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:46 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '19' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 11757 + idMal: 11757 + title: + romaji: Sword Art Online + english: Sword Art Online + native: ソードアート・オンライン + synonyms: + - S.A.O + - SAO + - אומנות החרב אונליין + - 刀剑神域 + - ซอร์ดอาร์ตออนไลน์ + - Мастера меча онлайн + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 8 + endDate: + year: 2012 + month: 12 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 11887 + idMal: 11887 + title: + romaji: Kokoro Connect + english: Kokoro Connect + native: ココロコネクト + synonyms: + - Kokoroco + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 8 + endDate: + year: 2012 + month: 9 + day: 30 + averageScore: 75 + nextAiringEpisode: null + - id: 13161 + idMal: 13161 + title: + romaji: Hagure Yuusha no Estetica + english: Aesthetica of a Rogue Hero + native: はぐれ勇者の鬼畜美学 (エステティカ) + synonyms: + - Hagure Yuusha no Aesthetica + - ชีวิตอันแสนรื่นรมย์ของผู้กล้านอกระบบ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 21 + averageScore: 61 + nextAiringEpisode: null + - id: 12549 + idMal: 12549 + title: + romaji: Dakara Boku wa, H ga Dekinai. + english: So, I Can't Play H! + native: だから僕は、Hができない。 + synonyms: + - Dakara boku-ha H ga Dekinai. + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 25 + averageScore: 60 + nextAiringEpisode: null + - id: 12293 + idMal: 12293 + title: + romaji: 'Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou' + english: Campione! + native: カンピオーネ! ~まつろわぬ神々と神殺しの魔王~ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 28 + averageScore: 64 + nextAiringEpisode: null + - id: 13667 + idMal: 13667 + title: + romaji: 'ROAD TO NINJA: NARUTO THE MOVIE' + english: 'Road to Ninja: Naruto the Movie' + native: ROAD TO NINJA -NARUTO THE MOVIE- + synonyms: + - Naruto Movie 9 + - 'Naruto Shippūden la película: El camino Ninja' + - 'Naruto Shippuden Movie 06: La via del Ninja' + - 'Naruto Shippuden the Movie 6: Road to Ninja' + - 'Naruto Shippuden O Filme: Caminho do Ninja' + - 'Naruto Shippuden 6: O Caminho Ninja' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 28 + endDate: + year: 2012 + month: 7 + day: 28 + averageScore: 74 + nextAiringEpisode: null + - id: 12729 + idMal: 12729 + title: + romaji: High School DxD OVA + english: null + native: ハイスクールD×D OVA + synonyms: + - High School DxD Episodes 13, 14 and 15 + - Highschool DxD OVA + status: FINISHED + format: OVA + episodes: 2 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 9 + day: 6 + endDate: + year: 2013 + month: 5 + day: 31 + averageScore: 68 + nextAiringEpisode: null + - id: 12679 + idMal: 12679 + title: + romaji: Joshiraku + english: Joshiraku + native: じょしらく + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 11933 + idMal: 11933 + title: + romaji: Oda Nobuna no Yabou + english: The Ambition of Oda Nobuna + native: 織田信奈の野望 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 9 + endDate: + year: 2012 + month: 9 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 10357 + idMal: 10357 + title: + romaji: Jinrui wa Suitai Shimashita + english: Humanity Has Declined + native: 人類は衰退しました + synonyms: + - Jintai + - ตัวฉันกับวันสิ้นโลก + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 2 + endDate: + year: 2012 + month: 9 + day: 16 + averageScore: 75 + nextAiringEpisode: null + - id: 12031 + idMal: 12031 + title: + romaji: Kingdom + english: Kingdom + native: キングダム + synonyms: + - Царство + status: FINISHED + format: TV + episodes: 38 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 6 + day: 4 + endDate: + year: 2013 + month: 2 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 12175 + idMal: 12175 + title: + romaji: Koi to Senkyo to Chocolate + english: Love, Election and Chocolate + native: 恋と選挙とチョコレート + synonyms: + - Koichoco + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 13469 + idMal: 13469 + title: + romaji: 'Hyouka: Motsubeki Mono wa' + english: 'Hyouka: What Should Be Had' + native: 氷菓 持つべきものは + synonyms: + - Hyouka Episode 11.5 + - Hyouka OVA + - Hyou-ka OVA + - 'Hyouka: You can''t escape OVA' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 8 + endDate: + year: 2012 + month: 7 + day: 8 + averageScore: 72 + nextAiringEpisode: null + - id: 13535 + idMal: 13535 + title: + romaji: Binbougami ga! + english: Good Luck Girl! + native: 貧乏神が! + synonyms: + - Binbou Gami ga! + - Binboukami ga! + - Binbou Kami ga! + - The God Of Poverty is! + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 5 + endDate: + year: 2012 + month: 9 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 12113 + idMal: 12113 + title: + romaji: 'Berserk: Ougon Jidai-hen II - Doldrey Kouryaku' + english: 'Berserk: The Golden Age Arc II - The Battle for Doldrey' + native: ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略 + synonyms: + - Berserk Movie + - Berserk Saga + - 'Berserk: La Edad de Oro II - La Batalla por Doldrey' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 6 + day: 23 + endDate: + year: 2012 + month: 6 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 12403 + idMal: 12403 + title: + romaji: Yuru Yuri♪♪ + english: YuruYuri Season 2 + native: ゆるゆり♪♪ + synonyms: + - YRYR 2 + - ゆるゆり 第2期 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 3 + endDate: + year: 2012 + month: 9 + day: 18 + averageScore: 77 + nextAiringEpisode: null + - id: 12049 + idMal: 12049 + title: + romaji: 'FAIRY TAIL: Houou no Miko' + english: 'Fairy Tail: Phoenix Priestess' + native: 劇場版 FAIRY TAIL 鳳凰の巫女 + synonyms: + - Fairy Tail - 1er Film - La prêtresse du Phoenix + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 8 + day: 18 + endDate: + year: 2012 + month: 8 + day: 18 + averageScore: 70 + nextAiringEpisode: null + - id: 13367 + idMal: 13367 + title: + romaji: Kono Naka ni Hitori, Imouto ga Iru! + english: NAKAIMO - My Little Sister Is Among Them! + native: この中に1人, 妹がいる! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 6 + endDate: + year: 2012 + month: 9 + day: 28 + averageScore: 60 + nextAiringEpisode: null + - id: 14753 + idMal: 14753 + title: + romaji: Hori-san to Miyamura-kun + english: null + native: 堀さんと宮村くん + synonyms: + - Horimiya + status: FINISHED + format: OVA + episodes: 6 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 9 + day: 26 + endDate: + year: 2021 + month: 5 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 13333 + idMal: 13333 + title: + romaji: TARI TARI + english: Tari Tari + native: TARI TARI + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 1 + endDate: + year: 2012 + month: 9 + day: 23 + averageScore: 74 + nextAiringEpisode: null + - id: 8888 + idMal: 8888 + title: + romaji: 'Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita' + english: 'Code Geass: Akito the Exiled - The Wyvern Arrives' + native: コードギアス 亡国のアキト 第1章 翼竜は舞い降りた + synonyms: + - 'Code Geass: Akito the Exiled – Przybycie Wiwerny' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 8 + day: 4 + endDate: + year: 2012 + month: 8 + day: 4 + averageScore: 69 + nextAiringEpisode: null + - id: 12967 + idMal: 12967 + title: + romaji: 'Arcana Famiglia: La storia della Arcana Famiglia' + english: La Storia Della Arcana Famiglia + native: アルカナ・ファミリア -La storia della Arcana Famiglia- + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 7 + day: 1 + endDate: + year: 2012 + month: 9 + day: 16 + averageScore: 57 + nextAiringEpisode: null + - id: 13807 + idMal: 13807 + title: + romaji: 'Corpse Party: Missing Footage' + english: null + native: コープスパーティー Missing Footage + synonyms: + - Corpse Party OVA + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 8 + day: 2 + endDate: + year: 2012 + month: 8 + day: 2 + averageScore: 54 + nextAiringEpisode: null + - id: 13851 + idMal: 13851 + title: + romaji: To LOVE-Ru Darkness OVA + english: null + native: To LOVEる -とらぶる- ダークネス + synonyms: + - To LOVE-Ru Trouble Darkness OVA + - To-Love-Ru Darkness OVA + - ToLoveRu Darkness OVA + - To Love Ru Darkness OVA + status: FINISHED + format: OVA + episodes: 6 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 8 + day: 17 + endDate: + year: 2015 + month: 4 + day: 3 + averageScore: 72 + nextAiringEpisode: null + - id: 13055 + idMal: 13055 + title: + romaji: Sankarea (OVA) + english: null + native: さんかれあ (OVA) + synonyms: + - Sankarea Episode 0 + - Sankarea Episode 14 + status: FINISHED + format: OVA + episodes: 2 + season: SUMMER + seasonYear: 2012 + startDate: + year: 2012 + month: 6 + day: 8 + endDate: + year: 2012 + month: 11 + day: 9 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/12-2012-fall.yaml b/test/fixtures/anilist/season_matrix/12-2012-fall.yaml new file mode 100644 index 0000000..ff17adb --- /dev/null +++ b/test/fixtures/anilist/season_matrix/12-2012-fall.yaml @@ -0,0 +1,679 @@ +metadata: + captured_at: '2026-05-11T11:32:50Z' + label: 2012-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2012 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:49 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '18' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 14719 + idMal: 14719 + title: + romaji: JoJo no Kimyou na Bouken (TV) + english: JoJo's Bizarre Adventure (TV) + native: ジョジョの奇妙な冒険 (TV) + synonyms: + - JoJo no Kimyou na Bouken (2012) + - 'JoJo no Kimyou na Bouken: Sentou Chouryuu' + - 'JoJo''s Bizarre Adventure: Phantom Blood' + - 'JoJo''s Bizarre Adventure: Battle Tendency' + - مغامرات جوجو العجيبة + - مغامرات جوجو العجيبة:الدماء الوهمية + - مغامرات جوجو العجيبة:حمى القتال + - Le bizzarre avventure di JoJo (2012) + - 'Le bizzarre avventure di JoJo: Phantom Blood' + - 'Le bizzarre avventure di JoJo: Battle Tendency' + - 'Химерні пригоди ДжоДжо: Тяжіння до бою' + - 'Химерні пригоди ДжоДжо: Примарна кров' + - JJBA + - 'Невероятные приключения ДжоДжо: Призрачная кровь' + - 'Невероятные приключения ДжоДжо: Стремление к бою' + status: FINISHED + format: TV + episodes: 26 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 6 + endDate: + year: 2013 + month: 4 + day: 6 + averageScore: 77 + nextAiringEpisode: null + - id: 13601 + idMal: 13601 + title: + romaji: PSYCHO-PASS + english: PSYCHO-PASS + native: PSYCHO-PASS サイコパス + synonyms: + - Психопаспорт + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 12 + endDate: + year: 2013 + month: 3 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 14741 + idMal: 14741 + title: + romaji: Chuunibyou demo Koi ga Shitai! + english: Love, Chunibyo & Other Delusions + native: 中二病でも恋がしたい! + synonyms: + - Chu-2 Byo demo Koi ga Shitai! + - Regardless of My Adolescent Delusions of Grandeur, I Want a Date! + - Miłość, gimbaza i kosmiczna faza + - 中二病也要谈恋爱! + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 4 + endDate: + year: 2012 + month: 12 + day: 20 + averageScore: 76 + nextAiringEpisode: null + - id: 13759 + idMal: 13759 + title: + romaji: Sakurasou no Pet na Kanojo + english: The Pet Girl of Sakurasou + native: さくら荘のペットな彼女 + synonyms: + - Sakura-sou no Pet na Kanojo + - 樱花庄的宠物女孩 + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 9 + endDate: + year: 2013 + month: 3 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 14227 + idMal: 14227 + title: + romaji: Tonari no Kaibutsu-kun + english: My Little Monster + native: となりの怪物くん + synonyms: + - Tonari no Kaibutsukun + - The Monster Next Door + - My Neighbor Monster-kun + - Le Garçon d'à coté + - Bestia z ławki obok + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 2 + endDate: + year: 2012 + month: 12 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 14513 + idMal: 14513 + title: + romaji: 'Magi: The labyrinth of magic' + english: 'Magi: The Labyrinth of Magic' + native: マギ The labyrinth of magic + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 7 + endDate: + year: 2013 + month: 3 + day: 31 + averageScore: 78 + nextAiringEpisode: null + - id: 13125 + idMal: 13125 + title: + romaji: Shinsekai yori + english: From the New World + native: 新世界より + synonyms: + - Shin Sekai Yori + - Del nuevo mundo + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 9 + day: 29 + endDate: + year: 2013 + month: 3 + day: 23 + averageScore: 80 + nextAiringEpisode: null + - id: 14467 + idMal: 14467 + title: + romaji: K + english: K + native: K + synonyms: + - K-Project (K-プロジェクト) + - K -eine weitere Geschichte- + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 5 + endDate: + year: 2012 + month: 12 + day: 28 + averageScore: 71 + nextAiringEpisode: null + - id: 14713 + idMal: 14713 + title: + romaji: Kamisama Hajimemashita + english: Kamisama Kiss + native: 神様はじめました + synonyms: + - Kami-sama Hajimemashita + - Kami-sama Kiss + - Soy Una Diosa ¿Y ahora qué? + - Приємно познайомитись, Бог + - Очень приятно, Бог + - The Girl In The World Of Spirit + - Jak zostałam bóstwem!? + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 2 + endDate: + year: 2012 + month: 12 + day: 25 + averageScore: 80 + nextAiringEpisode: null + - id: 14345 + idMal: 14345 + title: + romaji: BTOOOM! + english: BTOOOM! + native: BTOOOM! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 4 + endDate: + year: 2012 + month: 12 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 14289 + idMal: 14289 + title: + romaji: Sukitte Ii na yo. + english: Say "I love you". + native: 好きっていいなよ。 + synonyms: + - Sukinayo + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 7 + endDate: + year: 2012 + month: 12 + day: 30 + averageScore: 71 + nextAiringEpisode: null + - id: 15689 + idMal: 15689 + title: + romaji: Nekomonogatari (Kuro) + english: Nekomonogatari Black + native: 猫物語(黒) + synonyms: [] + status: FINISHED + format: TV + episodes: 4 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 12 + day: 31 + endDate: + year: 2012 + month: 12 + day: 31 + averageScore: 77 + nextAiringEpisode: null + - id: 3785 + idMal: 3785 + title: + romaji: 'Evangelion Shin Movie: Kyuu' + english: 'Evangelion: 3.0 You Can (Not) Redo' + native: ヱヴァンゲリヲン新劇場版:Q + synonyms: + - Rebuild of Evangelion 3.33 + - Rebuild of Evangelion 3.0 Q Quickening + - EVANGELION:3.33 VOCÊ (NÃO) PODE REFAZER + - 'EVANGELION: 3.33 TÚ (NO) LO PUEDES REHACER' + - Evangelion 3.33 (Nie) możesz powtórzyć + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 11 + day: 17 + endDate: + year: 2012 + month: 11 + day: 17 + averageScore: 76 + nextAiringEpisode: null + - id: 14075 + idMal: 14075 + title: + romaji: Zetsuen no Tempest + english: Blast of Tempest + native: 絶園のテンペスト + synonyms: + - 'Zetsuen no Tempest: The Civilization Blaster' + - 絶園のテンペスト ~THE CIVILIZATION BLASTER~ + - Penghancuran Peradaban + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 5 + endDate: + year: 2013 + month: 3 + day: 29 + averageScore: 76 + nextAiringEpisode: null + - id: 14131 + idMal: 14131 + title: + romaji: Girls und Panzer + english: Girls und Panzer + native: ガールズ&パンツァー + synonyms: + - Garupan + - 少女与战车 + - GuP + - Девушки и танки + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 9 + endDate: + year: 2013 + month: 3 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 15417 + idMal: 15417 + title: + romaji: 'Gintama'': Enchousen' + english: Gintama Season 2 Part 2 + native: 銀魂’延長戦 + synonyms: + - Gintama' (2012) + - Gintama' Overdrive + - Kintama + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 4 + endDate: + year: 2013 + month: 3 + day: 28 + averageScore: 89 + nextAiringEpisode: null + - id: 13663 + idMal: 13663 + title: + romaji: To LOVE-Ru Darkness + english: To Love Ru Darkness + native: To LOVEる -とらぶる- ダークネス + synonyms: + - To LOVE-Ru Trouble Darkness + - To-Love-Ru Darkness + - ToLoveRu Darkness + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 6 + endDate: + year: 2012 + month: 12 + day: 29 + averageScore: 71 + nextAiringEpisode: null + - id: 14199 + idMal: 14199 + title: + romaji: Onii-chan Dakedo Ai Sae Areba Kankeinai yo ne! + english: OniAi + native: お兄ちゃんだけど愛さえあれば関係ないよねっ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 5 + endDate: + year: 2012 + month: 12 + day: 21 + averageScore: 60 + nextAiringEpisode: null + - id: 13655 + idMal: 13655 + title: + romaji: Little Busters! + english: Little Busters! + native: リトルバスターズ! + synonyms: + - LB! + status: FINISHED + format: TV + episodes: 26 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 6 + endDate: + year: 2013 + month: 4 + day: 6 + averageScore: 72 + nextAiringEpisode: null + - id: 11703 + idMal: 11703 + title: + romaji: CØDE:BREAKER + english: Code:Breaker + native: CØDE:BREAKER + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 7 + endDate: + year: 2012 + month: 12 + day: 23 + averageScore: 63 + nextAiringEpisode: null + - id: 12859 + idMal: 12859 + title: + romaji: 'ONE PIECE FILM: Z' + english: 'One Piece Film: Z' + native: ONE PIECE FILM Z + synonyms: + - 'One Piece Film 12: Z' + - 海贼王剧场版Z + - One Piece Gold - Il film + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 12 + day: 15 + endDate: + year: 2012 + month: 12 + day: 15 + averageScore: 79 + nextAiringEpisode: null + - id: 16001 + idMal: 16001 + title: + romaji: 'Kokoro Connect: Michi Random' + english: Kokoro Connect ~ The OVAs + native: ココロコネクト ミチランダム + synonyms: + - Kokoro Connect Episodes 14, 15, 16 and 17 + - 'Kokoroco: Michi Random' + status: FINISHED + format: OVA + episodes: 4 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 11 + day: 19 + endDate: + year: 2012 + month: 12 + day: 10 + averageScore: 77 + nextAiringEpisode: null + - id: 12365 + idMal: 12365 + title: + romaji: Bakuman. 3 + english: null + native: バクマン。3 + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 6 + endDate: + year: 2013 + month: 3 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 11737 + idMal: 11737 + title: + romaji: Ao no Exorcist Movie + english: 'Blue Exorcist: The Movie' + native: 青の祓魔師 -劇場版- + synonyms: + - Ao no Exorcist Gekijouban + - Ao no Futsumashi Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 12 + day: 28 + endDate: + year: 2012 + month: 12 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 11977 + idMal: 11977 + title: + romaji: 'Mahou Shoujo Madoka☆Magica: Hajimari no Monogatari' + english: 'Puella Magi Madoka Magica the Movie Part 1: Beginnings' + native: 劇場版 魔法少女まどか☆マギカ 始まりの物語 + synonyms: + - Mahou Shoujo Madoka Magika Movie 1 + - Magical Girl Madoka Magica Movie 1 + - 'Puella Magi Madoka Magica the Movie Part I: Beginnings' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2012 + startDate: + year: 2012 + month: 10 + day: 6 + endDate: + year: 2012 + month: 10 + day: 6 + averageScore: 80 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/13-2013-winter.yaml b/test/fixtures/anilist/season_matrix/13-2013-winter.yaml new file mode 100644 index 0000000..ade0495 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/13-2013-winter.yaml @@ -0,0 +1,649 @@ +metadata: + captured_at: '2026-05-11T11:32:52Z' + label: 2013-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2013 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:52 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '17' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 14749 + idMal: 14749 + title: + romaji: Ore no Kanojo to Osananajimi ga Shuraba Sugiru + english: Oreshura + native: 俺の彼女と幼なじみが修羅場すぎる + synonyms: + - My Girlfriend and Childhood Friend Fight Too Much + - สมรภูมิรักแฟนสาวกับเพื่อนข้างบ้าน + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 6 + endDate: + year: 2013 + month: 3 + day: 31 + averageScore: 66 + nextAiringEpisode: null + - id: 16417 + idMal: 16417 + title: + romaji: Tamako Market + english: Tamako Market + native: たまこまーけっと + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 10 + endDate: + year: 2013 + month: 3 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 15315 + idMal: 15315 + title: + romaji: Mondaiji-tachi ga Isekai kara Kuru Sou desu yo? + english: Problem Children Are Coming From Another World, Aren't They? + native: 問題児たちが異世界から来るそうですよ? + synonyms: + - ตัวป่วนชั้นเซียน มาตบเกรียนถึงต่างโลก + - 문제아들이 이세계에서 온다는 모양인데요? + - 문제아들이 다른 세계에서 온다는 모양인데요? + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 12 + endDate: + year: 2013 + month: 3 + day: 16 + averageScore: 70 + nextAiringEpisode: null + - id: 15051 + idMal: 15051 + title: + romaji: Love Live! School idol project + english: Love Live! School Idol Project + native: ラブライブ! School idol project + synonyms: + - 'Живая любовь: проект "Школьный идол"' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 6 + endDate: + year: 2013 + month: 3 + day: 31 + averageScore: 72 + nextAiringEpisode: null + - id: 14833 + idMal: 14833 + title: + romaji: Maoyuu Maou Yuusha + english: 'Maoyu: Archenemy & Hero' + native: まおゆう魔王勇者 + synonyms: + - Maoyu Maou Yusha + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 5 + endDate: + year: 2013 + month: 3 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 14967 + idMal: 14967 + title: + romaji: Boku wa Tomodachi ga Sukunai NEXT + english: Haganai NEXT + native: 僕は友達が少ない NEXT + synonyms: + - Boku wa Tomodachi ga Sukunai 2nd Season + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 11 + endDate: + year: 2013 + month: 3 + day: 29 + averageScore: 69 + nextAiringEpisode: null + - id: 14349 + idMal: 14349 + title: + romaji: Little Witch Academia + english: Little Witch Academia + native: リトルウィッチアカデミア + synonyms: + - LWA + - Wakate Animator Ikusei Project + - 2012 Young Animator Training Project + - Anime Mirai 2012 + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 3 + day: 2 + endDate: + year: 2013 + month: 3 + day: 2 + averageScore: 76 + nextAiringEpisode: null + - id: 15379 + idMal: 15379 + title: + romaji: Kotoura-san + english: The Troubled Life of Miss Kotoura + native: 琴浦さん + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 11 + endDate: + year: 2013 + month: 3 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 13271 + idMal: 13271 + title: + romaji: 'HUNTER×HUNTER: Phantom Rouge' + english: 'Hunter x Hunter: Phantom Rouge' + native: 劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ) + synonyms: + - 'Gekijouban Hunter x Hunter: Hiiro no Genei' + - HxH Movie + - 'HxH: Phantom Rogue' + - 'Hunter x Hunter: Fantasma Vermelho' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 12 + endDate: + year: 2013 + month: 1 + day: 12 + averageScore: 71 + nextAiringEpisode: null + - id: 14353 + idMal: 14353 + title: + romaji: Death Billiards + english: null + native: デス・ビリヤード + synonyms: + - Wakate Animator Ikusei Project + - 2012 Young Animator Training Project + - Anime Mirai 2012 + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 3 + day: 2 + endDate: + year: 2013 + month: 3 + day: 2 + averageScore: 77 + nextAiringEpisode: null + - id: 14397 + idMal: 14397 + title: + romaji: Chihayafuru 2 + english: Chihayafuru 2 + native: ちはやふる 2 + synonyms: + - Chihayafull 2 + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 12 + endDate: + year: 2013 + month: 6 + day: 29 + averageScore: 83 + nextAiringEpisode: null + - id: 12115 + idMal: 12115 + title: + romaji: 'Berserk: Ougon Jidai-hen III - Kourin' + english: 'Berserk: The Golden Age Arc III - The Advent' + native: ベルセルク 黄金時代篇Ⅲ 降臨 + synonyms: + - Berserk Movie + - Berserk Saga + - 'Berserk: Golden Age Arc III - Descent' + - 'Berserk: La Edad de Oro III - El Advenimiento' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 2 + day: 1 + endDate: + year: 2013 + month: 2 + day: 1 + averageScore: 79 + nextAiringEpisode: null + - id: 15085 + idMal: 15085 + title: + romaji: AMNESIA + english: AMNESIA + native: AMNESIA + synonyms: + - アムネシア + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 7 + endDate: + year: 2013 + month: 3 + day: 25 + averageScore: 54 + nextAiringEpisode: null + - id: 14811 + idMal: 14811 + title: + romaji: GJ-bu + english: GJ Club + native: GJ部 + synonyms: + - Good Job-bu + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 10 + endDate: + year: 2013 + month: 3 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 11743 + idMal: 11743 + title: + romaji: 'Toaru Majutsu no Index: Endymion no Kiseki' + english: 'A Certain Magical Index: The Miracle of Endymion' + native: 劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟 + synonyms: + - Gekijouban To Aru Majutsu no Kinsho Mokuroku + - 'อินเด็กซ์ คัมภีร์คาถาต้องห้าม เดอะ มูฟวี่ ' + - Movie Cấm thư ma thuật Index + - Daftar Sihir Terlarang The Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 2 + day: 23 + endDate: + year: 2013 + month: 2 + day: 23 + averageScore: 72 + nextAiringEpisode: null + - id: 14355 + idMal: 14355 + title: + romaji: Yama no Susume + english: Encouragement of Climb + native: ヤマノススメ + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 3 + endDate: + year: 2013 + month: 3 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 15119 + idMal: 15119 + title: + romaji: Senran Kagura + english: 'Senran Kagura: Ninja Flash!' + native: 閃乱カグラ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 6 + endDate: + year: 2013 + month: 3 + day: 24 + averageScore: 58 + nextAiringEpisode: null + - id: 16005 + idMal: 16005 + title: + romaji: 'Zettai Karen Children: THE UNLIMITED - Hyoubu Kyousuke' + english: Unlimited Psychic Squad + native: 絶対可憐チルドレン THE UNLIMITED 兵部京介 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 8 + endDate: + year: 2013 + month: 3 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 15751 + idMal: 15751 + title: + romaji: Senyuu. + english: Senyuu + native: 戦勇. + synonyms: + - Senyu. + - Senyu + status: FINISHED + format: TV_SHORT + episodes: 13 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 9 + endDate: + year: 2013 + month: 4 + day: 3 + averageScore: 69 + nextAiringEpisode: null + - id: 16916 + idMal: 16916 + title: + romaji: 'Kuroko no Basket: Tip Off' + english: 'Kuroko''s Basketball: Tip Off' + native: 黒子のバスケ 第22.5Q 「Tip off」 + synonyms: + - Kuroko no Basket Special + - Kuroko no Basket Episode 22.5 + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 2 + day: 22 + endDate: + year: 2013 + month: 2 + day: 22 + averageScore: 75 + nextAiringEpisode: null + - id: 15879 + idMal: 15879 + title: + romaji: 'Chuunibyou demo Koi ga Shitai!: DEPTH OF FIELD - Ai to Nikushimi Gekijou' + english: 'Love, Chunibyo & Other Delusions: Depth of Field - Ai to Nikushimi Gekijou' + native: 中二病でも恋がしたい!DEPTH OF FIELD ~ 愛と憎しみ劇場 + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 7 + season: WINTER + seasonYear: 2013 + startDate: + year: 2012 + month: 12 + day: 19 + endDate: + year: 2013 + month: 6 + day: 19 + averageScore: 65 + nextAiringEpisode: null + - id: 14515 + idMal: 14515 + title: + romaji: Sasami-san@Ganbaranai + english: null + native: ささみさん@がんばらない + synonyms: + - Sasami-san at Ganbaranai + - Sasami-san@Unmotivated + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 11 + endDate: + year: 2013 + month: 3 + day: 29 + averageScore: 64 + nextAiringEpisode: null + - id: 15109 + idMal: 15109 + title: + romaji: Cuticle Tantei Inaba + english: Cuticle Detective Inaba + native: キューティクル探偵因幡 + synonyms: + - Inaba, detective cuticular + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 4 + endDate: + year: 2013 + month: 3 + day: 22 + averageScore: 67 + nextAiringEpisode: null + - id: 15613 + idMal: 15613 + title: + romaji: 'Hakkenden: Touhou Hakken Ibun' + english: 'Hakkenden: Eight Dogs of the East' + native: 八犬伝 -東方八犬異聞- + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 1 + day: 6 + endDate: + year: 2013 + month: 3 + day: 31 + averageScore: 69 + nextAiringEpisode: null + - id: 17121 + idMal: 17121 + title: + romaji: Dareka no Manazashi + english: null + native: だれかのまなざし + synonyms: + - Someone's Gaze + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2013 + startDate: + year: 2013 + month: 2 + day: 10 + endDate: + year: 2013 + month: 2 + day: 10 + averageScore: 70 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/14-2013-spring.yaml b/test/fixtures/anilist/season_matrix/14-2013-spring.yaml new file mode 100644 index 0000000..a5bc2df --- /dev/null +++ b/test/fixtures/anilist/season_matrix/14-2013-spring.yaml @@ -0,0 +1,684 @@ +metadata: + captured_at: '2026-05-11T11:32:55Z' + label: 2013-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2013 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:55 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '16' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 16498 + idMal: 16498 + title: + romaji: Shingeki no Kyojin + english: Attack on Titan + native: 進撃の巨人 + synonyms: + - SnK + - AoT + - Ataque a los Titanes + - Ataque dos Titãs + - L'Attacco dei Giganti + - מתקפת הטיטאנים + - 进击的巨人 + - L’Attaque des Titans + - الهجوم على العمالقة + - ผ่าพิภพไททัน + - حمله به تایتان + - Ataque de Titãs + - Atak Tytanów + - Атака титанов + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 7 + endDate: + year: 2013 + month: 9 + day: 28 + averageScore: 85 + nextAiringEpisode: null + - id: 15809 + idMal: 15809 + title: + romaji: Hataraku Maou-sama! + english: The Devil is a Part-Timer! + native: はたらく魔王さま! + synonyms: + - ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต + - Raja Iblis Nyambi! + - 打工吧!魔王大人 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 4 + endDate: + year: 2013 + month: 6 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 14813 + idMal: 14813 + title: + romaji: Yahari Ore no Seishun Love Come wa Machigatteiru. + english: My Teen Romantic Comedy SNAFU + native: やはり俺の青春ラブコメはまちがっている。 + synonyms: + - Oregairu + - My youth romantic comedy is wrong as I expected. + - 俺ガイル + - 我的青春恋爱物语果然有问题 + - กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 5 + endDate: + year: 2013 + month: 6 + day: 28 + averageScore: 78 + nextAiringEpisode: null + - id: 16782 + idMal: 16782 + title: + romaji: Kotonoha no Niwa + english: The Garden of Words + native: 言の葉の庭 + synonyms: + - Koto no Ha no Niwa + - The Garden of Kotonoha + - El Jardín de las Palabras + - A szavak kertje + - ยามสายฝนโปรยปราย + - Ogród słów + - Сад изящных слов + - Il giardino delle parole + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 5 + day: 31 + endDate: + year: 2013 + month: 5 + day: 31 + averageScore: 75 + nextAiringEpisode: null + - id: 15583 + idMal: 15583 + title: + romaji: Date A Live + english: Date A Live + native: デート・ア・ライブ + synonyms: + - พิชิตรัก พิทักษ์โลก + - ' Рандеву с жизнью' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 6 + endDate: + year: 2013 + month: 6 + day: 22 + averageScore: 68 + nextAiringEpisode: null + - id: 11577 + idMal: 11577 + title: + romaji: 'Steins;Gate: Fuka Ryouiki no Déjà vu' + english: Steins;Gate The Movie – Load Region of Déjà Vu + native: 劇場版 シュタインズゲート 負荷領域のデジャヴ + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 20 + endDate: + year: 2013 + month: 4 + day: 20 + averageScore: 82 + nextAiringEpisode: null + - id: 16049 + idMal: 16049 + title: + romaji: Toaru Kagaku no Railgun S + english: A Certain Scientific Railgun S + native: とある科学の超電磁砲S + synonyms: + - Toaru Kagaku no Railgun 2nd Season + - A Certain Scientific Railgun 2nd Season + - เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 2 + - Некий научный Рейлган 2 + - Некий научный Рейлган С + - เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาคที่ 2 + - 'Cấm thư ma thuật Index ngoại truyện: Siêu Railgun khoa học Phần 2 ' + - 魔法禁書目錄外傳 科學超電磁砲 第二季 + - 科學超電磁砲 S + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 12 + endDate: + year: 2013 + month: 9 + day: 27 + averageScore: 79 + nextAiringEpisode: null + - id: 15225 + idMal: 15225 + title: + romaji: Hentai Ouji to Warawanai Neko. + english: Hentai Prince & the Stony Cat + native: 変態王子と笑わない猫。 + synonyms: + - HENNEKO + - El príncipe pervertido y el gato de piedra + - O príncipe pervertido e o gato inexpressivo + - The "Hentai" Prince and the Stony Cat. + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 13 + endDate: + year: 2013 + month: 6 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 13659 + idMal: 13659 + title: + romaji: Ore no Imouto ga Konna ni Kawaii Wake ga Nai. + english: Oreimo 2 + native: 俺の妹がこんなに可愛いわけがない。 + synonyms: + - My Little Sister Can't Be This Cute 2 + - Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2 + - น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 7 + endDate: + year: 2013 + month: 6 + day: 30 + averageScore: 65 + nextAiringEpisode: null + - id: 14837 + idMal: 14837 + title: + romaji: 'Dragon Ball Z: Kami to Kami' + english: 'Dragon Ball Z: Battle of Gods' + native: 'ドラゴンボールZ: 神と神' + synonyms: + - Dragon Ball Z 2013 + - DBZ (2013) + - Saikyou Shidou + - 'Dragon Ball Z Movie 14: God & God' + - 'Bola de Drac Z: La Batalla dels Déus' + - Dragon Ball Z - Kampf der Götter + - 'Dragon Ball Z: A Batalha dos Deuses' + - 'Драконий жемчуг Зет: Битва богов' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 3 + day: 30 + endDate: + year: 2013 + month: 3 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 16524 + idMal: 16524 + title: + romaji: Suisei no Gargantia + english: Gargantia on the Verdurous Planet + native: 翠星のガルガンティア + synonyms: + - Suisei no Galgantia + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 7 + endDate: + year: 2013 + month: 6 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 16201 + idMal: 16201 + title: + romaji: Aku no Hana + english: Flowers of Evil + native: 惡の華 + synonyms: + - Kwiaty zła + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 5 + endDate: + year: 2013 + month: 6 + day: 30 + averageScore: 68 + nextAiringEpisode: null + - id: 15699 + idMal: 15699 + title: + romaji: Haiyore! Nyaruko-san W + english: 'Nyaruko-san: Another Crawling Chaos W' + native: 這いよれ!ニャル子さん W + synonyms: + - Haiyore! Nyaruko-san 2 + - Haiyoru! Nyaruko-san 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 8 + endDate: + year: 2013 + month: 7 + day: 1 + averageScore: 70 + nextAiringEpisode: null + - id: 16035 + idMal: 16035 + title: + romaji: Karneval (TV) + english: Karneval (TV) + native: カーニヴァル (TV) + synonyms: + - ล่าทรชน + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 4 + endDate: + year: 2013 + month: 6 + day: 27 + averageScore: 66 + nextAiringEpisode: null + - id: 16668 + idMal: 16668 + title: + romaji: Kakumeiki Valvrave + english: Valvrave the Liberator + native: 革命機ヴァルヴレイヴ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 12 + endDate: + year: 2013 + month: 6 + day: 28 + averageScore: 67 + nextAiringEpisode: null + - id: 14669 + idMal: 14669 + title: + romaji: 'AURA: Maryuuinkouga Saigo no Tatakai' + english: Aura + native: AURA~魔竜院光牙最後の闘い~ + synonyms: + - 'Aura: Maryuinkoga Saigo no Tatakai' + - 'Aura: Maryuin Kouga Saigo no Tatakai' + - 'Aura: Koga Maryuin''s Last War' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 13 + endDate: + year: 2013 + month: 4 + day: 13 + averageScore: 70 + nextAiringEpisode: null + - id: 16528 + idMal: 16528 + title: + romaji: Hal + english: Hal + native: ハル + synonyms: + - Haru + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 8 + endDate: + year: 2013 + month: 6 + day: 8 + averageScore: 70 + nextAiringEpisode: null + - id: 15911 + idMal: 15911 + title: + romaji: Yuyushiki + english: Yuyushiki + native: ゆゆ式 + synonyms: + - Yuyu-shiki + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 10 + endDate: + year: 2013 + month: 6 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 16397 + idMal: 16397 + title: + romaji: Photokano + english: Photo Kano + native: フォトカノ + synonyms: + - Foto Kano + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 5 + endDate: + year: 2013 + month: 6 + day: 28 + averageScore: 57 + nextAiringEpisode: null + - id: 16512 + idMal: 16512 + title: + romaji: 'Devil Survivor 2: THE ANIMATION' + english: 'Devil Survivor 2: The Animation' + native: デビルサバイバー2 THE ANIMATION + synonyms: + - DS2A + - 'Shin Megami Tensei: Devil Survivor 2' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 5 + endDate: + year: 2013 + month: 6 + day: 28 + averageScore: 63 + nextAiringEpisode: null + - id: 15771 + idMal: 15771 + title: + romaji: Saint☆Onii-san + english: null + native: 聖☆おにいさん + synonyms: + - Saint☆Oniisan (Movie) + - Saint☆Young Men + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 5 + day: 10 + endDate: + year: 2013 + month: 5 + day: 10 + averageScore: 75 + nextAiringEpisode: null + - id: 17082 + idMal: 17082 + title: + romaji: Aiura + english: AIURA + native: あいうら + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 10 + endDate: + year: 2013 + month: 6 + day: 26 + averageScore: 65 + nextAiringEpisode: null + - id: 14175 + idMal: 14175 + title: + romaji: 'Hanasaku Iroha: HOME SWEET HOME' + english: Hanasaku Iroha the Movie ~ HOME SWEET HOME ~ + native: 花咲くいろは HOME SWEET HOME + synonyms: + - 'Hana-Saku Iroha: Home Sweet Home' + - Hanairo Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 3 + day: 9 + endDate: + year: 2013 + month: 3 + day: 9 + averageScore: 77 + nextAiringEpisode: null + - id: 14921 + idMal: 14921 + title: + romaji: 'RDG: Red Data Girl' + english: Red Data Girl + native: RDG レッドデータガール + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 4 + endDate: + year: 2013 + month: 6 + day: 20 + averageScore: 61 + nextAiringEpisode: null + - id: 16355 + idMal: 16355 + title: + romaji: Dansai Bunri no Crime Edge + english: The Severing Crime Edge + native: 断裁分離のクライムエッジ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2013 + startDate: + year: 2013 + month: 4 + day: 4 + endDate: + year: 2013 + month: 6 + day: 27 + averageScore: 62 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/15-2013-summer.yaml b/test/fixtures/anilist/season_matrix/15-2013-summer.yaml new file mode 100644 index 0000000..baf3944 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/15-2013-summer.yaml @@ -0,0 +1,660 @@ +metadata: + captured_at: '2026-05-11T11:32:57Z' + label: 2013-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2013 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:32:57 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '15' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 16592 + idMal: 16592 + title: + romaji: 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation' + english: 'Danganronpa: The Animation' + native: ダンガンロンパ 希望の学園と絶望の高校生 The Animation + synonyms: + - ダンガンロンパ The Animation + - 'Danganronpa: Academy of Hope and High School Students of Despair THE ANIMATION' + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 23 + endDate: + year: 2013 + month: 9 + day: 27 + averageScore: 69 + nextAiringEpisode: null + - id: 15451 + idMal: 15451 + title: + romaji: High School DxD NEW + english: null + native: ハイスクールD×D NEW + synonyms: + - High School DxD 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 29 + endDate: + year: 2013 + month: 9 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 18507 + idMal: 18507 + title: + romaji: Free! + english: Free! -Iwatobi Swim Club- + native: Free! + synonyms: + - フリー! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 26 + endDate: + year: 2013 + month: 9 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 17074 + idMal: 17074 + title: + romaji: 'Monogatari Series: Second Season' + english: Monogatari Series Second Season + native: 〈物語〉シリーズ セカンドシーズン + synonyms: + - Nekomonogatari White + - Kabukimonogatari + - Otorimonogatari + - Onimonogatari + - Koimonogatari + status: FINISHED + format: TV + episodes: 26 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 7 + endDate: + year: 2013 + month: 12 + day: 29 + averageScore: 88 + nextAiringEpisode: null + - id: 16742 + idMal: 16742 + title: + romaji: Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui! + english: 'WataMote: No Matter How I Look At It, It''s You Guys'' Fault I''m Not Popular!' + native: 私がモテないのはどう考えてもお前らが悪い! + synonyms: + - Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui! + - It's Not My Fault That I'm Not Popular! + - WataMote + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 9 + endDate: + year: 2013 + month: 9 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 11633 + idMal: 11633 + title: + romaji: Blood Lad + english: Blood Lad + native: ブラッドラッド + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 8 + endDate: + year: 2013 + month: 9 + day: 9 + averageScore: 69 + nextAiringEpisode: null + - id: 16662 + idMal: 16662 + title: + romaji: Kaze Tachinu + english: The Wind Rises + native: 風立ちぬ + synonyms: + - El Viento se Levanta + - Si Alza il Vento + - Szél támad + - Zrywa się wiatr + - Wie der Wind sich hebt + - Le vent se lève + - Vidas ao vento + - Vinden Stiger + - Det Blåser upp en Vind + - Vindurinn Rís + - 바람은 분다 + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 20 + endDate: + year: 2013 + month: 7 + day: 20 + averageScore: 80 + nextAiringEpisode: null + - id: 16762 + idMal: 16762 + title: + romaji: 'Mirai Nikki: Redial' + english: 'The Future Diary: Redial' + native: 未来日記リダイヤル + synonyms: + - Mirai Nikki OVA + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 19 + endDate: + year: 2013 + month: 6 + day: 19 + averageScore: 68 + nextAiringEpisode: null + - id: 15037 + idMal: 15037 + title: + romaji: 'Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou' + english: Corpse Party + native: コープスパーティー Tortured Souls -暴虐された魂の呪叫- + synonyms: + - 'Corpse Party: Tortured Souls – The Curse of Tortured Souls' + status: FINISHED + format: OVA + episodes: 4 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 24 + endDate: + year: 2013 + month: 7 + day: 24 + averageScore: 59 + nextAiringEpisode: null + - id: 16934 + idMal: 16934 + title: + romaji: 'Chuunibyou demo Koi ga Shitai!: Kirameki no… Slapstick Noel' + english: 'Love, Chunibyo & Other Delusions: Glimmering...Explosive Festival (Slapstick Noel)' + native: 中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル) + synonyms: [] + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 19 + endDate: + year: 2013 + month: 6 + day: 19 + averageScore: 73 + nextAiringEpisode: null + - id: 15039 + idMal: 15039 + title: + romaji: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie + english: 'Anohana the Movie: The Flower We Saw That Day' + native: 劇場版 あの日見た花の名前を僕達はまだ知らない。 + synonyms: + - ดอกไม้ มิตรภาพ และความทรงจำ เดอะมูฟวี่ + - 'Anohana: The Flower We Saw That Day Movie' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 8 + day: 31 + endDate: + year: 2013 + month: 8 + day: 31 + averageScore: 76 + nextAiringEpisode: null + - id: 14829 + idMal: 14829 + title: + romaji: Fate/kaleid liner Prisma☆Illya + english: Fate/kaleid liner Prisma☆Illya + native: Fate/kaleid liner プリズマ☆イリヤ + synonyms: + - 'Судьба: Девочка-волшебница Иллия' + status: FINISHED + format: ONA + episodes: 10 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 6 + endDate: + year: 2013 + month: 9 + day: 7 + averageScore: 67 + nextAiringEpisode: null + - id: 16918 + idMal: 16918 + title: + romaji: Gin no Saji + english: Silver Spoon + native: 銀の匙 + synonyms: + - Ginsaji + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 11 + endDate: + year: 2013 + month: 9 + day: 19 + averageScore: 79 + nextAiringEpisode: null + - id: 16706 + idMal: 16706 + title: + romaji: 'Kami nomi zo Shiru Sekai: Megami-hen' + english: 'The World God Only Knows: Goddesses' + native: 神のみぞ知るセカイ 女神篇 + synonyms: + - Kami nomi zo Shiru Sekai III + - Kami nomi zo Shiru Sekai 3 + - Kaminomi III + - Kaminomi 3 + - Que sa volonté soit faite III + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 9 + endDate: + year: 2013 + month: 9 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 15335 + idMal: 15335 + title: + romaji: 'Gintama: Kanketsu-hen - Yorozuya yo Eien Nare' + english: 'Gintama: The Final Chapter - Be Forever Yorozuya' + native: 劇場版 銀魂 完結篇 万事屋よ永遠なれ + synonyms: + - Gintama Movie 2 + - Gintama the Final Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 6 + endDate: + year: 2013 + month: 7 + day: 6 + averageScore: 87 + nextAiringEpisode: null + - id: 18119 + idMal: 18119 + title: + romaji: Servant x Service + english: Servant x Service + native: サーバント×サービス + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 5 + endDate: + year: 2013 + month: 9 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 16353 + idMal: 16353 + title: + romaji: Love Lab + english: Love Lab + native: 恋愛ラボ + synonyms: + - Renai Lab + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 30 + endDate: + year: 2013 + month: 9 + day: 27 + averageScore: 71 + nextAiringEpisode: null + - id: 16732 + idMal: 16732 + title: + romaji: Kiniro Mosaic + english: KINMOZA! + native: きんいろモザイク + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 23 + endDate: + year: 2013 + month: 9 + day: 21 + averageScore: 70 + nextAiringEpisode: null + - id: 17909 + idMal: 17909 + title: + romaji: Uchouten Kazoku + english: The Eccentric Family + native: 有頂天家族 + synonyms: + - Uchoten Kazoku + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 7 + endDate: + year: 2013 + month: 9 + day: 29 + averageScore: 77 + nextAiringEpisode: null + - id: 16009 + idMal: 16009 + title: + romaji: Kamisama no Inai Nichiyoubi + english: Sunday Without God + native: 神さまのいない日曜日 + synonyms: + - The Sunday without God + - Kami-Nai + - Kaminai + - วันอาทิตย์ที่ไม่มีพระเจ้า + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 29 + endDate: + year: 2013 + month: 9 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 18229 + idMal: 18229 + title: + romaji: Gatchaman Crowds + english: null + native: ガッチャマン クラウズ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 13 + endDate: + year: 2013 + month: 9 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 18857 + idMal: 18857 + title: + romaji: Ore no Imouto ga Konna ni Kawaii Wake ga Nai. (ONA) + english: Oreimo 2 (ONA) + native: 俺の妹がこんなに可愛いわけがない。 + synonyms: + - My Little Sister Can't Be This Cute 2 Specials + - น้องสาวของผมไม่น่ารักขนาดนั้นหรอก ภาค 2 ตอนพิเศษ + status: FINISHED + format: ONA + episodes: 3 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 8 + day: 18 + endDate: + year: 2013 + month: 8 + day: 18 + averageScore: 59 + nextAiringEpisode: null + - id: 16157 + idMal: 16157 + title: + romaji: Choujigen Game Neptune THE ANIMATION + english: Hyperdimension Neptunia + native: 超次元ゲイム ネプテューヌ THE ANIMATION + synonyms: + - Kami Jigen Game Neptune V + - Hyperdimension Neptunia Victory + - 'Hyperdimension Neptunia: The Animation' + - '초차원 게임 넵튠 : The Animation' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 6 + day: 22 + endDate: + year: 2013 + month: 9 + day: 27 + averageScore: 65 + nextAiringEpisode: null + - id: 17831 + idMal: 17831 + title: + romaji: Inu to Hasami wa Tsukaiyou + english: Dog & Scissors + native: 犬とハサミは使いよう + synonyms: + - InuHasa + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 2 + endDate: + year: 2013 + month: 9 + day: 17 + averageScore: 61 + nextAiringEpisode: null + - id: 17741 + idMal: 17741 + title: + romaji: Kimi no Iru Machi + english: A Town Where You Live + native: 君のいる町 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2013 + startDate: + year: 2013 + month: 7 + day: 13 + endDate: + year: 2013 + month: 9 + day: 28 + averageScore: 64 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/16-2013-fall.yaml b/test/fixtures/anilist/season_matrix/16-2013-fall.yaml new file mode 100644 index 0000000..de10c8f --- /dev/null +++ b/test/fixtures/anilist/season_matrix/16-2013-fall.yaml @@ -0,0 +1,671 @@ +metadata: + captured_at: '2026-05-11T11:33:00Z' + label: 2013-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2013 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:00 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '14' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 18679 + idMal: 18679 + title: + romaji: Kill la Kill + english: Kill la Kill + native: キルラキル + synonyms: + - Kiru Ra Kiru + - KLK + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 4 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 79 + nextAiringEpisode: null + - id: 18153 + idMal: 18153 + title: + romaji: Kyoukai no Kanata + english: Beyond the Boundary + native: 境界の彼方 + synonyms: + - Beyond the Horizon + - 境界的彼方 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 3 + endDate: + year: 2013 + month: 12 + day: 18 + averageScore: 74 + nextAiringEpisode: null + - id: 17895 + idMal: 17895 + title: + romaji: Golden Time + english: Golden Time + native: ゴールデンタイム + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 4 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 75 + nextAiringEpisode: null + - id: 17265 + idMal: 17265 + title: + romaji: Log Horizon + english: Log Horizon + native: ログ・ホライズン + synonyms: + - รวมพลคนติดอยู่ในเกมส์ + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 5 + endDate: + year: 2014 + month: 3 + day: 22 + averageScore: 76 + nextAiringEpisode: null + - id: 16894 + idMal: 16894 + title: + romaji: Kuroko no Basket 2nd SEASON + english: Kuroko's Basketball 2 + native: 黒子のバスケ 2nd SEASON + synonyms: + - Kuroko no Basuke 2 + - הכדורסל של קורוקו 2 + - Баскетбол Куроко 2 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 6 + endDate: + year: 2014 + month: 3 + day: 30 + averageScore: 80 + nextAiringEpisode: null + - id: 18115 + idMal: 18115 + title: + romaji: 'Magi: The kingdom of magic' + english: 'Magi: The Kingdom of Magic' + native: マギ The kingdom of magic + synonyms: + - 'Magi: The Labyrinth of Magic 2' + - マギ The labyrinth of magic 2 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 7 + endDate: + year: 2014 + month: 3 + day: 30 + averageScore: 81 + nextAiringEpisode: null + - id: 16067 + idMal: 16067 + title: + romaji: Nagi no Asukara + english: A Lull in the Sea + native: 凪のあすから + synonyms: + - NagiAsu + - 'Nagi no Asu Kara: Calmaria do Mar' + - 'Nagi no Asukara: Calma en el mar' + - From a calm tomorrow + status: FINISHED + format: TV + episodes: 26 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 3 + endDate: + year: 2014 + month: 4 + day: 3 + averageScore: 77 + nextAiringEpisode: null + - id: 18397 + idMal: 18397 + title: + romaji: Shingeki no Kyojin OVA + english: Attack on Titan OVA + native: 進撃の巨人 OVA + synonyms: + - 'Attack on Titan: Ilse''s Journal' + - 'Attack on Titan: A Sudden Visitor' + - ผ่าพิภพไททัน OAD + - Атака титанов OVA + status: FINISHED + format: OVA + episodes: 3 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 12 + day: 9 + endDate: + year: 2014 + month: 8 + day: 8 + averageScore: 77 + nextAiringEpisode: null + - id: 18277 + idMal: 18277 + title: + romaji: Strike the Blood + english: Strike the Blood + native: ストライク・ザ・ブラッド + synonyms: + - ราชันย์โลหิตรัตติกาล + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 4 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 17549 + idMal: 17549 + title: + romaji: Non Non Biyori + english: Non Non Biyori + native: のんのんびより + synonyms: + - 悠哉日常大王 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 8 + endDate: + year: 2013 + month: 12 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 11981 + idMal: 11981 + title: + romaji: 'Mahou Shoujo Madoka☆Magica: Hangyaku no Monogatari' + english: Puella Magi Madoka Magica the Movie -Rebellion- + native: 劇場版 魔法少女まどか☆マギカ 叛逆の物語 + synonyms: + - Mahou Shoujo Madoka Magika Movie 3 + - Magical Girl Madoka Magica Movie 3 + - 'Puella Magi Madoka Magica the Movie Part III: Rebellion' + - 'Puella Magi Madoka Magica the Movie: Rebellion' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 26 + endDate: + year: 2013 + month: 10 + day: 26 + averageScore: 84 + nextAiringEpisode: null + - id: 16011 + idMal: 16011 + title: + romaji: Tokyo Ravens + english: Tokyo Ravens + native: 東京レイヴンズ + synonyms: + - โตเกียว อนเมียวจิ + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 9 + endDate: + year: 2014 + month: 3 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 19221 + idMal: 19221 + title: + romaji: Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru + english: My Mental Choices Are Completely Interfering With My School Romantic Comedy + native: 俺の脳内選択肢が、学園ラブコメを全力で邪魔している + synonyms: + - NouKome + - NouCome + - Ore no Nounai Sentakushi ga + - ' Gakuen Lovecome o Zenryoku de Jama Shite Iru' + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 10 + endDate: + year: 2013 + month: 12 + day: 12 + averageScore: 67 + nextAiringEpisode: null + - id: 19369 + idMal: 19369 + title: + romaji: Outbreak Company + english: Outbreak Company + native: アウトブレイク・カンパニー + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 4 + endDate: + year: 2013 + month: 12 + day: 20 + averageScore: 69 + nextAiringEpisode: null + - id: 12477 + idMal: 12477 + title: + romaji: Sakasama no Patema + english: Patema Inverted + native: サカサマのパテマ + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 11 + day: 9 + endDate: + year: 2013 + month: 11 + day: 9 + averageScore: 77 + nextAiringEpisode: null + - id: 18247 + idMal: 18247 + title: + romaji: 'IS: Infinite Stratos 2' + english: Infinite Stratos 2 + native: IS〈インフィニット・ストラトス〉2 + synonyms: + - IS2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 4 + endDate: + year: 2013 + month: 12 + day: 20 + averageScore: 61 + nextAiringEpisode: null + - id: 20021 + idMal: 20021 + title: + romaji: 'Sword Art Online: Extra Edition' + english: Sword Art Online EXTRA EDITION + native: ソードアート・オンライン Extra Edition + synonyms: + - 'S.A.O: Extra Edition' + - 'SAO: Extra Edition' + - 'ซอร์ดอาร์ตออนไลน์: Extra Edition' + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 12 + day: 31 + endDate: + year: 2013 + month: 12 + day: 31 + averageScore: 62 + nextAiringEpisode: null + - id: 18753 + idMal: 18753 + title: + romaji: 'Yahari Ore no Seishun Love Come wa Machigatteiru.: Kochira to Shite mo Karera Kanojora no Yukusue ni + Sachi Ookaran Koto wo Negawazaru wo Enai.' + english: My Teen Romantic Comedy SNAFU OVA + native: やはり俺の青春ラブコメはまちがっている。「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」 + synonyms: + - Oregairu OVA + - My youth romantic comedy is wrong as I expected. OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 9 + day: 19 + endDate: + year: 2013 + month: 9 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 16664 + idMal: 16664 + title: + romaji: Kaguya-hime no Monogatari + english: The Tale of The Princess Kaguya + native: かぐや姫の物語 + synonyms: + - Kaguyahime no Monogatari + - Princess Kaguya Story + - El Cuento de la Princesa Kaguya + - O Conto da Princesa Kaguya + - Księżniczka Kaguya + - La leyenda de la Princesa Kaguya + - حكاية اﻷميرة كاجويا + - Die Legende der Prinzessin Kaguya + - La storia della Principessa Splendente + - Le Conte de la princesse Kaguya + - Fortellingen om Prinsesse Kaguya + - Sagan om Prinsessan Kaguya + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 11 + day: 23 + endDate: + year: 2013 + month: 11 + day: 23 + averageScore: 81 + nextAiringEpisode: null + - id: 18677 + idMal: 18677 + title: + romaji: Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita. + english: I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job. + native: 勇者になれなかった俺はしぶしぶ就職を決意しました。 + synonyms: + - Yu-sibu + - Yusibu + - Yuushibu + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 5 + endDate: + year: 2013 + month: 12 + day: 21 + averageScore: 64 + nextAiringEpisode: null + - id: 17513 + idMal: 17513 + title: + romaji: DIABOLIK LOVERS + english: Diabolik Lovers + native: DIABOLIK LOVERS + synonyms: + - ディアボリックラヴァーズ + status: FINISHED + format: TV_SHORT + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 9 + day: 16 + endDate: + year: 2013 + month: 12 + day: 9 + averageScore: 47 + nextAiringEpisode: null + - id: 17247 + idMal: 17247 + title: + romaji: Machine-Doll wa Kizutsukanai + english: Unbreakable Machine-Doll + native: 機巧少女は傷つかない + synonyms: + - Kikou Shoujo wa Kizutsukanai + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 7 + endDate: + year: 2013 + month: 12 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 19703 + idMal: 19703 + title: + romaji: Kyousougiga (TV) + english: Kyousougiga + native: 京騒戯画 (TV) + synonyms: + - Kyousogiga + - Kyousou Giga + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 10 + endDate: + year: 2013 + month: 12 + day: 19 + averageScore: 75 + nextAiringEpisode: null + - id: 18689 + idMal: 18689 + title: + romaji: Diamond no Ace + english: Ace of the Diamond + native: ダイヤのA + synonyms: + - Daiya no Ace + - Ace of Diamond + - Daiya no A + status: FINISHED + format: TV + episodes: 75 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 6 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 80 + nextAiringEpisode: null + - id: 18245 + idMal: 18245 + title: + romaji: WHITE ALBUM 2 + english: White Album 2 + native: WHITE ALBUM 2 + synonyms: + - WA2 + - ホワイトアルバム2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2013 + startDate: + year: 2013 + month: 10 + day: 6 + endDate: + year: 2013 + month: 12 + day: 29 + averageScore: 74 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/17-2014-winter.yaml b/test/fixtures/anilist/season_matrix/17-2014-winter.yaml new file mode 100644 index 0000000..9155db2 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/17-2014-winter.yaml @@ -0,0 +1,643 @@ +metadata: + captured_at: '2026-05-11T11:33:02Z' + label: 2014-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2014 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:02 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '13' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20447 + idMal: 20507 + title: + romaji: Noragami + english: Noragami + native: ノラガミ + synonyms: + - Stray God + - 野良神 + - โนรางามิ เทวดาขาจร ภาค 1 + - Бездомный бог + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 5 + endDate: + year: 2014 + month: 3 + day: 23 + averageScore: 78 + nextAiringEpisode: null + - id: 18897 + idMal: 18897 + title: + romaji: Nisekoi + english: Nisekoi + native: ニセコイ + synonyms: + - 'Nisekoi: False Love' + - ' รักลวงป่วนใจ' + status: FINISHED + format: TV + episodes: 20 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 11 + endDate: + year: 2014 + month: 5 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 18671 + idMal: 18671 + title: + romaji: Chuunibyou demo Koi ga Shitai! Ren + english: Love, Chunibyo & Other Delusions - Heart Throb - + native: 中二病でも恋がしたい!戀 + synonyms: + - Chuunibyou demo Koi ga Shitai! 2 + - ' Miłość, gimbaza i kosmiczna faza: Porywy serca' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 9 + endDate: + year: 2014 + month: 3 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 20483 + idMal: 20541 + title: + romaji: Mikakunin de Shinkoukei + english: Engaged to the Unidentified + native: 未確認で進行形 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 9 + endDate: + year: 2014 + month: 3 + day: 27 + averageScore: 71 + nextAiringEpisode: null + - id: 20057 + idMal: 20057 + title: + romaji: Space☆Dandy + english: Space Dandy + native: スペース☆ダンディ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 5 + endDate: + year: 2014 + month: 3 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 20031 + idMal: 20031 + title: + romaji: D-Frag! + english: null + native: ディーふらぐ! + synonyms: + - D Frag + - D-Fragments! + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 7 + endDate: + year: 2014 + month: 3 + day: 25 + averageScore: 73 + nextAiringEpisode: null + - id: 20503 + idMal: 21085 + title: + romaji: Witch Craft Works + english: Witch Craft Works + native: ウィッチクラフトワークス + synonyms: + - Witchcraft Works + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 5 + endDate: + year: 2014 + month: 3 + day: 23 + averageScore: 67 + nextAiringEpisode: null + - id: 20494 + idMal: 20767 + title: + romaji: Noragami OVA + english: Noragami OVA + native: ノラガミ OAD + synonyms: + - ノラガミ OVA + - Noragami OAD + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 2 + day: 17 + endDate: + year: 2014 + month: 7 + day: 17 + averageScore: 75 + nextAiringEpisode: null + - id: 20047 + idMal: 20047 + title: + romaji: Sakura Trick + english: Sakura Trick + native: 桜Trick + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 10 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 20521 + idMal: 20689 + title: + romaji: Hamatora THE ANIMATION + english: Hamatora + native: ハマトラ THE ANIMATION + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 8 + endDate: + year: 2014 + month: 3 + day: 26 + averageScore: 69 + nextAiringEpisode: null + - id: 18139 + idMal: 18139 + title: + romaji: Tonari no Seki-kun + english: 'Tonari no Seki-kun: The Master of Killing Time' + native: となりの関くん + synonyms: + - My Neighbor Seki + status: FINISHED + format: TV_SHORT + episodes: 21 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 6 + endDate: + year: 2014 + month: 5 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 20448 + idMal: 20847 + title: + romaji: Seitokai Yakuindomo* + english: Seitokai Yakuindomo Season 2 + native: 生徒会役員共* + synonyms: + - 'Seitokai Yakuindomo Season 2 ' + - Seitokai 2 + - Seitokai Yakuindomo* + - SYD* + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 4 + endDate: + year: 2014 + month: 3 + day: 30 + averageScore: 75 + nextAiringEpisode: null + - id: 19769 + idMal: 19769 + title: + romaji: Mahou Sensou + english: Magical Warfare + native: 魔法戦争 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 10 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 54 + nextAiringEpisode: null + - id: 18095 + idMal: 18095 + title: + romaji: Nourin + english: No-Rin + native: のうりん + synonyms: + - ไอดอลสาวชาวไร่ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 11 + endDate: + year: 2014 + month: 3 + day: 29 + averageScore: 64 + nextAiringEpisode: null + - id: 19315 + idMal: 19315 + title: + romaji: Pupa + english: null + native: ピューパ + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 10 + endDate: + year: 2014 + month: 3 + day: 28 + averageScore: 27 + nextAiringEpisode: null + - id: 17777 + idMal: 17777 + title: + romaji: Saikin, Imouto no Yousu ga Chotto Okashiinda ga. + english: Recently, My Sister Is Unusual + native: 最近、妹のようすがちょっとおかしいんだが。 + synonyms: + - imocho + - imocyo + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 4 + endDate: + year: 2014 + month: 3 + day: 23 + averageScore: 57 + nextAiringEpisode: null + - id: 20488 + idMal: 20457 + title: + romaji: Inari, Konkon, Koi Iroha. + english: Inari Kon Kon + native: いなり、こんこん、恋いろは。 + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 16 + endDate: + year: 2014 + month: 3 + day: 20 + averageScore: 69 + nextAiringEpisode: null + - id: 20496 + idMal: 20973 + title: + romaji: 'Sekai Seifuku: Bouryaku no Zvezda' + english: World Conquest Zvezda Plot + native: 世界征服~謀略のズヴィズダー~ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 12 + endDate: + year: 2014 + month: 3 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 20526 + idMal: 21329 + title: + romaji: 'Mushishi: Hihamukage' + english: MUSHI-SHI OVA + native: 蟲師 特別篇「日蝕む翳」 + synonyms: + - 'Mushi-shi Tokubetsu-hen: Hihamu Kage' + - 'MUSHI-SHI: The Shadow that Devours the Sun' + - 'MUSHI-SHI: L''ombre qui dévore le soleil' + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 4 + endDate: + year: 2014 + month: 1 + day: 4 + averageScore: 83 + nextAiringEpisode: null + - id: 15565 + idMal: 15565 + title: + romaji: Maken-Ki! Tsuu + english: Maken-Ki! Battling Venus 2 + native: マケン姫っ!通 + synonyms: + - Maken-Ki! Dai 2-ki + - Maken-Ki! 2 + - Maken-Ki! Second Season + - Maken-Ki! 2nd Season + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 16 + endDate: + year: 2014 + month: 3 + day: 20 + averageScore: 58 + nextAiringEpisode: null + - id: 19363 + idMal: 19363 + title: + romaji: Gin no Saji 2 + english: Silver Spoon Season 2 + native: 銀の匙 2 + synonyms: + - Ginsaji 2 + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 10 + endDate: + year: 2014 + month: 3 + day: 27 + averageScore: 81 + nextAiringEpisode: null + - id: 20431 + idMal: 20431 + title: + romaji: Hoozuki no Reitetsu + english: Hozuki's Coolheadedness + native: 鬼灯の冷徹 + synonyms: + - Hozuki no Reitetsu + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 10 + endDate: + year: 2014 + month: 4 + day: 4 + averageScore: 74 + nextAiringEpisode: null + - id: 20473 + idMal: 20931 + title: + romaji: Onee-chan ga Kita + english: Onee-chan ga Kita + native: お姉ちゃんが来た + synonyms: + - My Big Sister Arrived + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 1 + day: 9 + endDate: + year: 2014 + month: 3 + day: 27 + averageScore: 60 + nextAiringEpisode: null + - id: 20582 + idMal: 21797 + title: + romaji: Chuunibyou demo Koi ga Shitai! Ren Lite + english: Love, Chunibyo & Other Delusions - Heart Throb - Lite + native: 中二病でも恋がしたい!戀 Lite + synonyms: [] + status: FINISHED + format: ONA + episodes: 6 + season: WINTER + seasonYear: 2014 + startDate: + year: 2013 + month: 12 + day: 25 + endDate: + year: 2014 + month: 3 + day: 16 + averageScore: 69 + nextAiringEpisode: null + - id: 20831 + idMal: 22839 + title: + romaji: Cross Road + english: null + native: クロスロード + synonyms: + - Crossroad + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2014 + startDate: + year: 2014 + month: 2 + day: 25 + endDate: + year: 2014 + month: 2 + day: 25 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/18-2014-spring.yaml b/test/fixtures/anilist/season_matrix/18-2014-spring.yaml new file mode 100644 index 0000000..6ec4f9c --- /dev/null +++ b/test/fixtures/anilist/season_matrix/18-2014-spring.yaml @@ -0,0 +1,669 @@ +metadata: + captured_at: '2026-05-11T11:33:06Z' + label: 2014-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2014 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:05 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '12' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20464 + idMal: 20583 + title: + romaji: Haikyuu!! + english: HAIKYU!! + native: ハイキュー!! + synonyms: + - High Kyuu!! + - HAIKYÛ !! + - 排球少年!! + - Haikyu!! L'asso del volley + - ไฮคิว!! คู่ตบฟ้าประทาน + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2014 + month: 9 + day: 21 + averageScore: 84 + nextAiringEpisode: null + - id: 19815 + idMal: 19815 + title: + romaji: No Game No Life + english: No Game, No Life + native: ノーゲーム・ノーライフ + synonyms: + - NGNL + - NO GAME NO LIFE游戏人生 + - 游戏人生 + - โนเกม โนไลฟ์ + - 遊戲人生 + - NO GAME NO LIFE 遊戲人生 + - 'nogenora ' + - ノゲノラ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 9 + endDate: + year: 2014 + month: 6 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 20474 + idMal: 20899 + title: + romaji: 'JoJo no Kimyou na Bouken: Stardust Crusaders' + english: 'JoJo''s Bizarre Adventure: Stardust Crusaders' + native: ジョジョの奇妙な冒険 スターダストクルセイダース + synonyms: + - 'Dai San Bu Kujo Jotaro: Mirai e no Isan' + - 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders' + - 'JoJo''s Bizarre Adventure Part 3: Stardust Crusaders' + - 'ההרפתקה המוזרה של ג''וג''ו: צלבני אבק כוכבים ' + - 'مغامرات جوجو العجيبة : فرسان غبار النجم' + - 'Le bizzarre avventure di JoJo: Stardust Crusaders' + - 'Невероятные приключения ДжоДжо: Крестоносцы звездной пыли' + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 5 + endDate: + year: 2014 + month: 9 + day: 13 + averageScore: 79 + nextAiringEpisode: null + - id: 20458 + idMal: 20785 + title: + romaji: Mahouka Koukou no Rettousei + english: The Irregular at Magic High School + native: 魔法科高校の劣等生 + synonyms: + - พี่น้องปริศนาโรงเรียนมหาเวท + - Непутёвый ученик в школе магии + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2014 + month: 9 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 20457 + idMal: 20787 + title: + romaji: Black Bullet + english: Black Bullet + native: ブラック・ブレット + synonyms: + - 'แบล็ค บุลเลท ' + - 黑色子彈 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 8 + endDate: + year: 2014 + month: 7 + day: 1 + averageScore: 67 + nextAiringEpisode: null + - id: 20626 + idMal: 22043 + title: + romaji: FAIRY TAIL (2014) + english: Fairy Tail Series 2 + native: FAIRY TAIL (2014) + synonyms: + - Fairy Tail 2 + - Fairy Tail Season 2 + - フェアリーテイル (2014) + status: FINISHED + format: TV + episodes: 102 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 5 + endDate: + year: 2016 + month: 3 + day: 26 + averageScore: 74 + nextAiringEpisode: null + - id: 19163 + idMal: 19163 + title: + romaji: Date A Live II + english: Date A Live II + native: デート・ア・ライブⅡ + synonyms: + - Date A Live 2 + - พิชิตรัก พิทักษ์โลก ภาค 2 + - Рандеву с жизнью + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 12 + endDate: + year: 2014 + month: 6 + day: 14 + averageScore: 69 + nextAiringEpisode: null + - id: 20607 + idMal: 22135 + title: + romaji: Ping Pong THE ANIMATION + english: Ping Pong the Animation + native: ピンポン THE ANIMATION + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 11 + endDate: + year: 2014 + month: 6 + day: 20 + averageScore: 86 + nextAiringEpisode: null + - id: 20519 + idMal: 21647 + title: + romaji: Tamako Love Story + english: Tamako -love story- + native: たまこラブストーリー + synonyms: + - Miłosna opowieść Tamako + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 26 + endDate: + year: 2014 + month: 4 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 20541 + idMal: 21603 + title: + romaji: Mekakucity Actors + english: null + native: メカクシティアクターズ + synonyms: + - Kagerou Days + - Heat-Haze Days + - Mekaku City Actors + - Kagerou Project + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 13 + endDate: + year: 2014 + month: 6 + day: 29 + averageScore: 67 + nextAiringEpisode: null + - id: 20462 + idMal: 20853 + title: + romaji: Hitsugi no Chaika + english: Chaika -The Coffin Princess- + native: 棺姫のチャイカ + synonyms: + - Hitsugi Hime no Chaika + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 10 + endDate: + year: 2014 + month: 6 + day: 26 + averageScore: 69 + nextAiringEpisode: null + - id: 20529 + idMal: 21405 + title: + romaji: Bokura wa Minna Kawaisou + english: The Kawai Complex Guide to Manors and Hostel Behavior + native: 僕らはみんな河合荘 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 4 + endDate: + year: 2014 + month: 6 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 20527 + idMal: 21327 + title: + romaji: Isshuukan Friends. + english: One Week Friends + native: 一週間フレンズ。 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 7 + endDate: + year: 2014 + month: 6 + day: 23 + averageScore: 73 + nextAiringEpisode: null + - id: 20534 + idMal: 21431 + title: + romaji: Gokukoku no Brynhildr + english: Brynhildr in the Darkness + native: 極黒のブリュンヒルデ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2014 + month: 6 + day: 29 + averageScore: 64 + nextAiringEpisode: null + - id: 20517 + idMal: 21273 + title: + romaji: Gochuumon wa Usagi desu ka? + english: Is the Order a Rabbit? + native: ご注文はうさぎですか? + synonyms: + - Gochiusa + - ごちうさ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 10 + endDate: + year: 2014 + month: 6 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 20599 + idMal: 22101 + title: + romaji: Soredemo Sekai wa Utsukushii + english: The World is Still Beautiful + native: それでも世界は美しい + synonyms: + - Sore demo Sekai wa Utsukushii + - Even so, the World is Beautiful + - Still, the World is Beautiful + - O Mundo Ainda é Belo + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2014 + month: 6 + day: 29 + averageScore: 73 + nextAiringEpisode: null + - id: 20595 + idMal: 21939 + title: + romaji: Mushishi Zoku Shou + english: MUSHI-SHI The Next Passage + native: 蟲師 続章 + synonyms: + - Mushi-shi Zoku Shou + - Mushishi Zokushou + - 'Mushishi: The Next Chapter' + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 5 + endDate: + year: 2014 + month: 6 + day: 21 + averageScore: 86 + nextAiringEpisode: null + - id: 19111 + idMal: 19111 + title: + romaji: Love Live! School idol project 2nd Season + english: Love Live! School Idol Project 2nd Season + native: ラブライブ! School idol project 2期 + synonyms: + - 'Живая любовь: проект "Школьный идол". 2 сезон' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2014 + month: 6 + day: 29 + averageScore: 76 + nextAiringEpisode: null + - id: 19429 + idMal: 19429 + title: + romaji: Akuma no Riddle + english: Riddle Story of Devil + native: 悪魔のリドル + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 4 + endDate: + year: 2014 + month: 6 + day: 20 + averageScore: 65 + nextAiringEpisode: null + - id: 20537 + idMal: 21863 + title: + romaji: Mangaka-san to Assistant-san to THE ANIMATION + english: The Comic Artist & His Assistants + native: マンガ家さんとアシスタントさんと THE ANIMATION + synonyms: + - The Comic Artist and His Assistants + - The Manga Creator and the Assistant and + - Mangaka-san and Assistant-san and... + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 8 + endDate: + year: 2014 + month: 6 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 20556 + idMal: 21561 + title: + romaji: Ryuugajou Nanana no Maizoukin + english: Nanana's Buried Treasure + native: 龍ヶ嬢七々々の埋蔵金 + synonyms: + - ล่าขุมสมบัติปริศนา นานานะ + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 11 + endDate: + year: 2014 + month: 6 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 20635 + idMal: 22777 + title: + romaji: Dragon Ball Kai (2014) + english: 'Dragon Ball Z Kai: The Final Chapters' + native: ドラゴンボール改 (2014) + synonyms: + - Dragon Ball Kai + - DBK + - DB Kai + - DBZ Kai + - Драконий жемчуг Кай (2014) + status: FINISHED + format: TV + episodes: 69 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 6 + endDate: + year: 2015 + month: 6 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 20592 + idMal: 21033 + title: + romaji: Seikoku no Dragonar + english: Dragonar Academy + native: 星刻の竜騎士 + synonyms: + - อัศวินมือใหม่มังกรป้ายแดง + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 5 + endDate: + year: 2014 + month: 6 + day: 21 + averageScore: 60 + nextAiringEpisode: null + - id: 19775 + idMal: 19775 + title: + romaji: Sidonia no Kishi + english: Knights of Sidonia + native: シドニアの騎士 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 11 + endDate: + year: 2014 + month: 6 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 19685 + idMal: 19685 + title: + romaji: Kanojo ga Flag wo Oraretara + english: If Her Flag Breaks + native: 彼女がフラグをおられたら + synonyms: + - がをられ + - Gaworare + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2014 + startDate: + year: 2014 + month: 4 + day: 7 + endDate: + year: 2014 + month: 6 + day: 30 + averageScore: 59 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/19-2014-summer.yaml b/test/fixtures/anilist/season_matrix/19-2014-summer.yaml new file mode 100644 index 0000000..ed3e090 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/19-2014-summer.yaml @@ -0,0 +1,670 @@ +metadata: + captured_at: '2026-05-11T11:33:08Z' + label: 2014-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2014 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:08 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '11' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20605 + idMal: 22319 + title: + romaji: Tokyo Ghoul + english: Tokyo Ghoul + native: 東京喰種 トーキョーグール + synonyms: + - Tokyo Kushu + - שדי טוקיו + - 东京食种 + - طوكيو غول + - Токийский гуль + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 4 + endDate: + year: 2014 + month: 9 + day: 19 + averageScore: 76 + nextAiringEpisode: null + - id: 20613 + idMal: 22199 + title: + romaji: Akame ga Kill! + english: Akame ga Kill! + native: アカメが斬る! + synonyms: + - Akame ga Kiru! + - 'أكامي: قاتلة بالإكراه!' + - Red Eyes Sword + - 斬!赤紅之瞳 + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 7 + endDate: + year: 2014 + month: 12 + day: 15 + averageScore: 73 + nextAiringEpisode: null + - id: 20594 + idMal: 21881 + title: + romaji: Sword Art Online II + english: Sword Art Online II + native: ソードアート・オンライン II + synonyms: + - SAO2 + - GGO + - ซอร์ดอาร์ตออนไลน์ ภาค 2 + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 5 + endDate: + year: 2014 + month: 12 + day: 20 + averageScore: 65 + nextAiringEpisode: null + - id: 20661 + idMal: 23283 + title: + romaji: Zankyou no Terror + english: Terror in Resonance + native: 残響のテロル + synonyms: + - Terror in Tokyo + - Эхо террора + - Zagadkowi terroryści + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 11 + endDate: + year: 2014 + month: 9 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 20596 + idMal: 21995 + title: + romaji: Ao Haru Ride + english: Blue Spring Ride + native: アオハライド + synonyms: + - Aoharaido + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 8 + endDate: + year: 2014 + month: 9 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 20668 + idMal: 23289 + title: + romaji: Gekkan Shoujo Nozaki-kun + english: Monthly Girls' Nozaki-kun + native: 月刊少女野崎くん + synonyms: + - Revista mensual para chicas Nozaki + - 月刊少女野崎君 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 7 + endDate: + year: 2014 + month: 9 + day: 22 + averageScore: 77 + nextAiringEpisode: null + - id: 20722 + idMal: 22789 + title: + romaji: Barakamon + english: Barakamon + native: ばらかもん + synonyms: + - 元气囝仔 + - 'บารากะมอน เกาะมีฮา คนมีเฮ ' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 6 + endDate: + year: 2014 + month: 9 + day: 28 + averageScore: 82 + nextAiringEpisode: null + - id: 20593 + idMal: 21855 + title: + romaji: Hanamonogatari + english: Hanamonogatari + native: 花物語 + synonyms: + - Monogatari Series Second Season +α + - ปกรณัมแห่งบุปผา + status: FINISHED + format: TV + episodes: 5 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 8 + day: 16 + endDate: + year: 2014 + month: 8 + day: 16 + averageScore: 78 + nextAiringEpisode: null + - id: 20632 + idMal: 22729 + title: + romaji: Aldnoah.Zero + english: ALDNOAH.ZERO + native: アルドノア・ゼロ + synonyms: + - A/Z + - 'ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall.' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 6 + endDate: + year: 2014 + month: 9 + day: 21 + averageScore: 70 + nextAiringEpisode: null + - id: 20614 + idMal: 22265 + title: + romaji: 'Free!: Eternal Summer' + english: Free! -Eternal Summer- + native: Free!-Eternal Summer- + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 3 + endDate: + year: 2014 + month: 9 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 20555 + idMal: 21557 + title: + romaji: Omoide no Marnie + english: When Marnie Was There + native: 思い出のマーニー + synonyms: + - Souvenirs de Marnie + - Quando c'era Marnie + - Erinnerungen an Marnie + - El Recuerdo de Marnie + - Marnie - min hemmelige venninne + - När Marnie var där + - Marnie. Przyjaciółka ze snów + - As memórias de Marnie + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 19 + endDate: + year: 2014 + month: 7 + day: 19 + averageScore: 78 + nextAiringEpisode: null + - id: 20606 + idMal: 22145 + title: + romaji: 'Kuroshitsuji: Book of Circus' + english: 'Black Butler: Book of Circus' + native: 黒執事 Book of Circus + synonyms: + - Black Butler 3 + - Kuroshitsuji Circus Hen + - Kuroshitsuji Shin Series + - คนลึกไขปริศนาลับ ภาค 3 + - 'คนลึกไขปริศนาลับ: Book of Circus' + - 'Hắc quản gia: Chương đoàn xiếc' + - 黑执事 Book of Circus 第3季 + - 黑執事 Book of Circus 第3季 + - Black Butler Book of Circus S3 + - 'Hắc Quản Gia – Phần 3: Thách Đố Của Đoàn Xiếc Thú' + - 흑집사 Book of Circus + - 'Diácono Negro: Libro de circo temporada 3' + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 11 + endDate: + year: 2014 + month: 9 + day: 12 + averageScore: 79 + nextAiringEpisode: null + - id: 20663 + idMal: 22877 + title: + romaji: Seirei Tsukai no Blade Dance + english: Blade Dance of the Elementalers + native: 精霊使いの剣舞【ブレイドダンス】 + synonyms: + - 'Seirei Tsukai no Kenbu: Blade Dance' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 14 + endDate: + year: 2014 + month: 9 + day: 29 + averageScore: 62 + nextAiringEpisode: null + - id: 20572 + idMal: 21659 + title: + romaji: Kill la Kill Tokubetsu-hen + english: 'Kill la Kill: GOODBYE AGAIN' + native: キルラキル 特別編 + synonyms: + - Kill la Kill Episode 25 + - Kill la Kill Special + - KLK + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 9 + day: 3 + endDate: + year: 2014 + month: 9 + day: 3 + averageScore: 75 + nextAiringEpisode: null + - id: 16904 + idMal: 16904 + title: + romaji: 'K: MISSING KINGS' + english: null + native: K MISSING KINGS + synonyms: + - K-Project Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 5 + endDate: + year: 2014 + month: 7 + day: 5 + averageScore: 74 + nextAiringEpisode: null + - id: 20520 + idMal: 21105 + title: + romaji: LOVE STAGE!! + english: null + native: LOVE STAGE!! + synonyms: + - ラブステージ + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 10 + endDate: + year: 2014 + month: 9 + day: 11 + averageScore: 67 + nextAiringEpisode: null + - id: 20583 + idMal: 23309 + title: + romaji: Rail Wars! + english: Rail Wars! + native: レールウォーズ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 4 + endDate: + year: 2014 + month: 9 + day: 19 + averageScore: 59 + nextAiringEpisode: null + - id: 20769 + idMal: 24991 + title: + romaji: No Game No Life Specials + english: No Game No Life Specials + native: ノーゲーム・ノーライフ ミニ + synonyms: + - NGNL Specials + status: FINISHED + format: SPECIAL + episodes: 6 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 6 + day: 25 + endDate: + year: 2014 + month: 11 + day: 26 + averageScore: 64 + nextAiringEpisode: null + - id: 20467 + idMal: 20509 + title: + romaji: Fate/kaleid liner Prisma☆Illya 2wei! + english: Fate/kaleid liner Prisma☆Illya 2wei! + native: Fate/kaleid linerプリズマ☆イリヤ ツヴァイ! + synonyms: + - Fate/kaleid liner Prisma☆Illya Zwei! + - 'Судьба: Девочка-волшебница Иллия 2' + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 10 + endDate: + year: 2014 + month: 9 + day: 11 + averageScore: 70 + nextAiringEpisode: null + - id: 20666 + idMal: 23327 + title: + romaji: Space☆Dandy 2 + english: Space Dandy 2 + native: スペース☆ダンディ 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 6 + endDate: + year: 2014 + month: 9 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 20889 + idMal: 27601 + title: + romaji: 'Chuunibyou demo Koi ga Shitai! Ren: Saisei no... Jaou Shingan Mokushiroku' + english: 'Love, Chunibyo & Other Delusions - Heart Throb -: The Rikka Wars/ Apocalypse of the Wicked Lord Shingan + Reborn' + native: 中二病でも恋がしたい!戀 再生の・・・邪王真眼黙示録 + synonyms: [] + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 9 + day: 16 + endDate: + year: 2014 + month: 9 + day: 16 + averageScore: 73 + nextAiringEpisode: null + - id: 20475 + idMal: 20709 + title: + romaji: Sabagebu! + english: Sabagebu! - Survival Game Club! + native: さばげぶっ! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 6 + endDate: + year: 2014 + month: 9 + day: 21 + averageScore: 71 + nextAiringEpisode: null + - id: 20638 + idMal: 22865 + title: + romaji: Rokujouma no Shinryakusha!? + english: Invaders of the Rokujoma!? + native: 六畳間の侵略者!? + synonyms: + - ห้องเช่าป่วนก๊วนคนแปลก + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 12 + endDate: + year: 2014 + month: 9 + day: 27 + averageScore: 68 + nextAiringEpisode: null + - id: 20779 + idMal: 23385 + title: + romaji: 'Kyoukai no Kanata #0 Shinonome' + english: 'Beyond the Boundary: Daybreak' + native: 境界の彼方#0 東雲 + synonyms: + - Beyond the Boundary OVA + - 'Beyond the Boundary: Daybreak' + - 'Kyokai no Kanat Episode 0: Shinonome' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 2 + endDate: + year: 2014 + month: 7 + day: 2 + averageScore: 74 + nextAiringEpisode: null + - id: 20711 + idMal: 23421 + title: + romaji: Re:_HAMATORA + english: 'Re: Hamatora' + native: Re:␣ハマトラ + synonyms: + - Hamatora The Animation Season 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2014 + startDate: + year: 2014 + month: 7 + day: 8 + endDate: + year: 2014 + month: 9 + day: 23 + averageScore: 70 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/20-2014-fall.yaml b/test/fixtures/anilist/season_matrix/20-2014-fall.yaml new file mode 100644 index 0000000..8fc3983 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/20-2014-fall.yaml @@ -0,0 +1,658 @@ +metadata: + captured_at: '2026-05-11T11:33:11Z' + label: 2014-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2014 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:11 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '10' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20665 + idMal: 23273 + title: + romaji: Shigatsu wa Kimi no Uso + english: Your lie in April + native: 四月は君の嘘 + synonyms: + - KimiUso + - השקר שלך באפריל + - Bugie d'aprile + - 四月是你的谎言 + - YLIA + - Sekunden in Moll + - Твоя апрельская ложь + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 10 + endDate: + year: 2015 + month: 3 + day: 20 + averageScore: 84 + nextAiringEpisode: null + - id: 20789 + idMal: 23755 + title: + romaji: Nanatsu no Taizai + english: The Seven Deadly Sins + native: 七つの大罪 + synonyms: + - 七大罪 + - ศึกตำนาน 7 อัศวิน + - 7DS + - Семь смертных грехов + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 73 + nextAiringEpisode: null + - id: 20623 + idMal: 22535 + title: + romaji: 'Kiseijuu: Sei no Kakuritsu' + english: Parasyte -the maxim- + native: 寄生獣 セイの格率 + synonyms: + - Kiseiju - L'ospite indesiderato + - 'Parasite : La Maxime' + - 'Паразит: Учение о жизни' + - Pasożyt + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 9 + endDate: + year: 2015 + month: 3 + day: 26 + averageScore: 81 + nextAiringEpisode: null + - id: 19603 + idMal: 22297 + title: + romaji: 'Fate/stay night: Unlimited Blade Works' + english: 'Fate/stay night: Unlimited Blade Works' + native: Fate/stay night [Unlimited Blade Works] + synonyms: + - フェイト/ステイナイト Unlimited Blade Works + - Fate/UBW + - 'פייט/סטיי נייט: מלאכת חרבות אינסופית' + - 'Судьба/Ночь схватки: Бесконечный мир клинков' + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2014 + month: 12 + day: 28 + averageScore: 80 + nextAiringEpisode: null + - id: 20770 + idMal: 25013 + title: + romaji: Akatsuki no Yona + english: Yona of the Dawn + native: 暁のヨナ + synonyms: + - AkaYona + - Йона на заре + - Ёна на заре + - Рассвет Йоны + - Yona, princesse de l'aube + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 7 + endDate: + year: 2015 + month: 3 + day: 24 + averageScore: 79 + nextAiringEpisode: null + - id: 20631 + idMal: 25157 + title: + romaji: Trinity Seven + english: TRINITY SEVEN + native: トリニティセブン + synonyms: + - 'Trinity Seven: 7-nin no Mahoutsukai' + - 'Trinity Seven: Shichinin no Mahoutsukai' + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 8 + endDate: + year: 2014 + month: 12 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 20602 + idMal: 22147 + title: + romaji: Amagi Brilliant Park + english: Amagi Brilliant Park + native: 甘城ブリリアントパーク + synonyms: + - Amaburi + - 甘ブリ + - Cudowny park Amagi + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 7 + endDate: + year: 2014 + month: 12 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 17729 + idMal: 17729 + title: + romaji: Grisaia no Kajitsu + english: The Fruit of Grisaia + native: グリザイアの果実 + synonyms: + - Le Fruit De La Grisaia + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2014 + month: 12 + day: 28 + averageScore: 72 + nextAiringEpisode: null + - id: 16870 + idMal: 16870 + title: + romaji: 'THE LAST: NARUTO THE MOVIE' + english: 'The Last: Naruto the Movie' + native: THE LAST -NARUTO THE MOVIE- + synonyms: + - Naruto Movie 10 + - 'Naruto Shippuden Movie 07: The Last' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 12 + day: 6 + endDate: + year: 2014 + month: 12 + day: 6 + averageScore: 76 + nextAiringEpisode: null + - id: 20513 + idMal: 23281 + title: + romaji: PSYCHO-PASS 2 + english: PSYCHO-PASS 2 + native: PSYCHO-PASS サイコパス2 + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 10 + endDate: + year: 2014 + month: 12 + day: 19 + averageScore: 71 + nextAiringEpisode: null + - id: 20671 + idMal: 23321 + title: + romaji: Log Horizon 2 + english: Log Horizon 2 + native: ログ・ホライズン 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 4 + endDate: + year: 2015 + month: 3 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 20918 + idMal: 28025 + title: + romaji: Tsukimonogatari + english: Tsukimonogatari + native: 憑物語 + synonyms: + - Possession Tale + status: FINISHED + format: TV + episodes: 4 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 12 + day: 31 + endDate: + year: 2014 + month: 12 + day: 31 + averageScore: 79 + nextAiringEpisode: null + - id: 20729 + idMal: 24405 + title: + romaji: World Trigger + english: World Trigger + native: ワールドトリガー + synonyms: [] + status: FINISHED + format: TV + episodes: 73 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2016 + month: 4 + day: 3 + averageScore: 72 + nextAiringEpisode: null + - id: 20812 + idMal: 25835 + title: + romaji: SHIROBAKO + english: SHIROBAKO + native: SHIROBAKO + synonyms: + - White Box + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 9 + endDate: + year: 2015 + month: 3 + day: 26 + averageScore: 81 + nextAiringEpisode: null + - id: 20646 + idMal: 25159 + title: + romaji: Inou-Battle wa Nichijou-kei no Naka de + english: When Supernatural Battles Became Commonplace + native: 異能バトルは日常系のなかで + synonyms: + - InoBato + - Inou-Battle in the Usually Daze. + - Inou Battle Within Everyday Life + - พลังป่วนก๊วนเหนือธรรมชาติ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 7 + endDate: + year: 2014 + month: 12 + day: 23 + averageScore: 68 + nextAiringEpisode: null + - id: 20701 + idMal: 23673 + title: + romaji: Ookami Shoujo to Kuro Ouji + english: Wolf Girl and Black Prince + native: オオカミ少女と黒王子 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2014 + month: 12 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 20590 + idMal: 21843 + title: + romaji: 'Shingeki no Bahamut: GENESIS' + english: 'Rage of Bahamut: Genesis' + native: 神撃のバハムート GENESIS + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 6 + endDate: + year: 2014 + month: 12 + day: 29 + averageScore: 74 + nextAiringEpisode: null + - id: 20735 + idMal: 26349 + title: + romaji: Danna ga Nani wo Itteiru ka Wakaranai Ken + english: I Can't Understand What My Husband Is Saying + native: 旦那が何を言っているかわからない件 + synonyms: + - Danna ga Nani o Itte Iruka Wakaranai Ken + status: FINISHED + format: TV_SHORT + episodes: 13 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 3 + endDate: + year: 2014 + month: 12 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 20809 + idMal: 24455 + title: + romaji: Madan no Ou to Vanadis + english: Lord Marksman and Vanadis + native: 魔弾の王と戦姫 (ヴァナディース) + synonyms: + - The King of the Magic Bullet and Vanadis + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 4 + endDate: + year: 2014 + month: 12 + day: 27 + averageScore: 67 + nextAiringEpisode: null + - id: 20751 + idMal: 24701 + title: + romaji: Mushishi Zoku Shou 2 + english: MUSHI-SHI The Next Passage 2 + native: 蟲師 続章 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 19 + endDate: + year: 2014 + month: 12 + day: 22 + averageScore: 86 + nextAiringEpisode: null + - id: 20806 + idMal: 25731 + title: + romaji: 'Cross Ange: Tenshi to Ryuu no Rondo' + english: 'Cross Ange: Rondo of Angel and Dragon' + native: クロスアンジュ 天使と竜の輪舞 + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 5 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 69 + nextAiringEpisode: null + - id: 20767 + idMal: 22961 + title: + romaji: 'Date A Live II: Kurumi Star Festival' + english: null + native: デート・ア・ライブ II 狂三スターフェスティバル + synonyms: + - ' Date A Live II Episode 11' + - ' Date A Live II OVA' + - 'Date A Live: Encore' + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 12 + day: 9 + endDate: + year: 2014 + month: 12 + day: 9 + averageScore: 76 + nextAiringEpisode: null + - id: 20800 + idMal: 25519 + title: + romaji: Yuuki Yuuna wa Yuusha de Aru + english: Yuki Yuna is a Hero + native: 結城友奈は勇者である + synonyms: + - ' YuYuYu' + - สาวน้อยชมรมผู้กล้า + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 17 + endDate: + year: 2014 + month: 12 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 20670 + idMal: 23317 + title: + romaji: 'Kuroshitsuji: Book of Murder' + english: 'Black Butler: Book of Murder' + native: 黒執事 Book of Murder + synonyms: + - Phantomhive Manor Murder Case + - 'คนลึกไขปริศนาลับ: Book of Murder' + status: FINISHED + format: OVA + episodes: 2 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 25 + endDate: + year: 2014 + month: 11 + day: 15 + averageScore: 78 + nextAiringEpisode: null + - id: 20719 + idMal: 24231 + title: + romaji: 'Hitsugi no Chaika: AVENGING BATTLE' + english: Chaika -The Coffin Princess- AVENGING BATTLE + native: 棺姫のチャイカ AVENGING BATTLE + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2014 + startDate: + year: 2014 + month: 10 + day: 9 + endDate: + year: 2014 + month: 12 + day: 11 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/21-2015-winter.yaml b/test/fixtures/anilist/season_matrix/21-2015-winter.yaml new file mode 100644 index 0000000..8f17a52 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/21-2015-winter.yaml @@ -0,0 +1,654 @@ +metadata: + captured_at: '2026-05-11T11:33:13Z' + label: 2015-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2015 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:13 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '9' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20755 + idMal: 24833 + title: + romaji: Ansatsu Kyoushitsu + english: Assassination Classroom + native: 暗殺教室 + synonyms: + - כיתת ההתנקשות + - فصل الاغتيال + - Klasa skrytobójców + status: FINISHED + format: TV + episodes: 22 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 10 + endDate: + year: 2015 + month: 6 + day: 20 + averageScore: 79 + nextAiringEpisode: null + - id: 20931 + idMal: 28223 + title: + romaji: Death Parade + english: Death Parade + native: デス・パレード + synonyms: + - תהלוכת המוות + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 10 + endDate: + year: 2015 + month: 3 + day: 28 + averageScore: 80 + nextAiringEpisode: null + - id: 20850 + idMal: 27899 + title: + romaji: Tokyo Ghoul √A + english: Tokyo Ghoul √A + native: 東京喰種[トーキョーグール]√A + synonyms: + - Tokyo Kushu 2 + - Tokyo Ghoul Root A + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 9 + endDate: + year: 2015 + month: 3 + day: 27 + averageScore: 67 + nextAiringEpisode: null + - id: 20799 + idMal: 26055 + title: + romaji: 'JoJo no Kimyou na Bouken: Stardust Crusaders - Egypt-hen' + english: 'JoJo''s Bizarre Adventure: Stardust Crusaders - Battle in Egypt' + native: ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編 + synonyms: + - 'Dai San Bu Kujo Jotaro: Mirai e no Isan' + - 'JoJo''s Bizarre Adventure: Stardust Crusaders 2nd Season' + - 'JoJo no Kimyou na Bouken: Stardust Crusaders 2nd Season' + - 'JoJo''s Bizarre Adventure Part 3: Stardust Crusaders - Battle in Egypt' + - 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen' + - 'JoJo''s Bizarre Adventure: Stardust Crusaders - Egypt Arc' + - 'Le bizzarre avventure di JoJo: Stardust Crusaders' + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 11 + endDate: + year: 2015 + month: 6 + day: 20 + averageScore: 82 + nextAiringEpisode: null + - id: 20657 + idMal: 23277 + title: + romaji: Saenai Heroine no Sodatekata + english: 'Saekano: How to Raise a Boring Girlfriend' + native: 冴えない彼女の育てかた + synonyms: + - Saekano + - 路人女主的养成方法 + - วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 9 + endDate: + year: 2015 + month: 3 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 20725 + idMal: 24415 + title: + romaji: Kuroko no Basket 3rd SEASON + english: Kuroko's Basketball 3 + native: 黒子のバスケ 3rd SEASON + synonyms: + - Kuroko no Basuke 3 + - הכדורסל של קורוקו 3 + - Баскетбол Куроко 3 + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 12 + endDate: + year: 2015 + month: 6 + day: 30 + averageScore: 81 + nextAiringEpisode: null + - id: 20678 + idMal: 23233 + title: + romaji: Shinmai Maou no Testament + english: The Testament of Sister New Devil + native: 新妹魔王の契約者 + synonyms: + - Shinmai Maou no Keiyakusha + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 8 + endDate: + year: 2015 + month: 3 + day: 26 + averageScore: 63 + nextAiringEpisode: null + - id: 20811 + idMal: 25781 + title: + romaji: 'Shingeki no Kyojin Gaiden: Kuinaki Sentaku' + english: 'Attack on Titan: No Regrets' + native: 進撃の巨人 外伝 悔いなき選択 + synonyms: + - SnK + - AoT + - ผ่าพิภพไททัน ภาค OAD No Regret + - 'ผ่าพิภพไททัน OAD ' + - 'Атака титанов: Выбор без сожалений' + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2015 + startDate: + year: 2014 + month: 12 + day: 9 + endDate: + year: 2015 + month: 4 + day: 9 + averageScore: 83 + nextAiringEpisode: null + - id: 20785 + idMal: 25397 + title: + romaji: Absolute Duo + english: Absolute Duo + native: アブソリュート・デュオ + synonyms: + - 'แอบโซลูท ดูโอ ' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 4 + endDate: + year: 2015 + month: 3 + day: 22 + averageScore: 60 + nextAiringEpisode: null + - id: 20652 + idMal: 23199 + title: + romaji: Durarara!!x2 Shou + english: Durarara!! X2 + native: デュラララ!!×2 承 + synonyms: + - DRRR!! 2 Shou + - דורארארה!!2x התפתחות + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 10 + endDate: + year: 2015 + month: 3 + day: 28 + averageScore: 78 + nextAiringEpisode: null + - id: 20801 + idMal: 25681 + title: + romaji: Kamisama Hajimemashita◎ + english: Kamisama Kiss◎ + native: 神様はじめました◎ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 6 + endDate: + year: 2015 + month: 3 + day: 31 + averageScore: 82 + nextAiringEpisode: null + - id: 20627 + idMal: 22663 + title: + romaji: Seiken Tsukai no World Break + english: 'World Break: Aria of Curse for a Holy Swordsman' + native: 聖剣使いの禁呪詠唱<ワールドブレイク> + synonyms: + - World Break เทพนักดาบข้ามภพ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 12 + endDate: + year: 2015 + month: 3 + day: 30 + averageScore: 63 + nextAiringEpisode: null + - id: 20514 + idMal: 21339 + title: + romaji: PSYCHO-PASS Movie + english: 'PSYCHO-PASS: The Movie' + native: 劇場版 PSYCHO-PASS サイコパス + synonyms: + - 'PSYCHO-PASS: La Película' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 9 + endDate: + year: 2015 + month: 1 + day: 9 + averageScore: 75 + nextAiringEpisode: null + - id: 20853 + idMal: 27655 + title: + romaji: Aldnoah.Zero Part 2 + english: ALDNOAH.ZERO Season 2 + native: アルドノア・ゼロ 第2クール + synonyms: + - A/Z 2 + - 'ALDNOAH.ZERO: Let Justice Be Done, Though The Heavens Fall.' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 11 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 20553 + idMal: 21511 + title: + romaji: 'Kantai Collection: KanColle' + english: KanColle + native: 艦隊これくしょん -艦これ- + synonyms: + - KanKore + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 8 + endDate: + year: 2015 + month: 3 + day: 26 + averageScore: 64 + nextAiringEpisode: null + - id: 21103 + idMal: 30300 + title: + romaji: High School DxD NEW OVA Oppai, Tsutsumimasu! + english: null + native: ハイスクールD×D NEW OVA おっぱい、包みます! + synonyms: + - High School DxD New Episode 13 + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 3 + day: 10 + endDate: + year: 2015 + month: 3 + day: 10 + averageScore: 69 + nextAiringEpisode: null + - id: 20768 + idMal: 25015 + title: + romaji: 'Kyoukai no Kanata: I''LL BE HERE - Kako-hen' + english: 'Beyond the Boundary -I''LL BE HERE-: Past' + native: 劇場版 境界の彼方 I'LL BE HERE 過去篇 + synonyms: + - 'Kyoukai no Kanata: I’ll Be Here – przeszłość' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 3 + day: 14 + endDate: + year: 2015 + month: 3 + day: 14 + averageScore: 75 + nextAiringEpisode: null + - id: 20840 + idMal: 26441 + title: + romaji: Junketsu no Maria + english: Maria the Virgin Witch + native: 純潔のマリア + synonyms: + - Sorcière de gré + - ' pucelle de force' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 11 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 20758 + idMal: 24873 + title: + romaji: Juuou Mujin no Fafnir + english: Unlimited Fafnir + native: 銃皇無尽のファフニール + synonyms: + - Unlimited Fafnir School Battle + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 9 + endDate: + year: 2015 + month: 3 + day: 27 + averageScore: 57 + nextAiringEpisode: null + - id: 21064 + idMal: 28285 + title: + romaji: 'Trinity Seven: Nanatsu no Taizai to Nana Madoushi' + english: null + native: トリニティセブン 七つの大罪と七魔道士 + synonyms: [] + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 3 + day: 25 + endDate: + year: 2015 + month: 3 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 20827 + idMal: 26165 + title: + romaji: Yuri Kuma Arashi + english: Yurikuma Arashi + native: ユリ熊嵐 + synonyms: + - 'Love Bullet: Yuri Kuma Arashi' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 6 + endDate: + year: 2015 + month: 3 + day: 31 + averageScore: 68 + nextAiringEpisode: null + - id: 20746 + idMal: 25429 + title: + romaji: Isuca + english: Isuca + native: イスカ + synonyms: + - Isuka + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 24 + endDate: + year: 2015 + month: 3 + day: 28 + averageScore: 54 + nextAiringEpisode: null + - id: 20815 + idMal: 25867 + title: + romaji: Rolling☆Girls + english: The Rolling Girls + native: ローリング☆ガールズ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 11 + endDate: + year: 2015 + month: 3 + day: 29 + averageScore: 64 + nextAiringEpisode: null + - id: 20740 + idMal: 24627 + title: + romaji: Yamada-kun to 7-nin no Majo (OVA) + english: Yamada and the Seven Witches (OVA) + native: 山田くんと7人の魔女 OAD + synonyms: + - Yamajo OVA + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2015 + startDate: + year: 2014 + month: 12 + day: 17 + endDate: + year: 2015 + month: 5 + day: 15 + averageScore: 71 + nextAiringEpisode: null + - id: 20693 + idMal: 23587 + title: + romaji: THE IDOLM@STER Cinderella Girls + english: THE IDOLM@STER CINDERELLA GIRLS + native: アイドルマスターシンデレラガールズ + synonyms: + - 'The Idolmaster: Cinderella Girls' + - The iDOLM@STER Cinderella Girls + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2015 + startDate: + year: 2015 + month: 1 + day: 10 + endDate: + year: 2015 + month: 4 + day: 11 + averageScore: 70 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/22-2015-spring.yaml b/test/fixtures/anilist/season_matrix/22-2015-spring.yaml new file mode 100644 index 0000000..b071edb --- /dev/null +++ b/test/fixtures/anilist/season_matrix/22-2015-spring.yaml @@ -0,0 +1,665 @@ +metadata: + captured_at: '2026-05-11T11:33:17Z' + label: 2015-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2015 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:16 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '8' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20923 + idMal: 28171 + title: + romaji: Shokugeki no Souma + english: Food Wars! + native: 食戟のソーマ + synonyms: + - لا سلام على طعام + - Food Wars! The First Plate + - 食戟之灵 + - ยอดนักปรุงโซมะ + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 9 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 20920 + idMal: 28121 + title: + romaji: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka + english: Is It Wrong to Try to Pick Up Girls in a Dungeon? + native: ダンジョンに出会いを求めるのは間違っているだろうか + synonyms: + - Danmachi + - 'Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth' + - 'DanMachi: É Errado Tentar Pegar Garotas numa Masmorra?' + - 'DanMachi: Família Myth' + - 'Danmachi: ¿Qué Tiene de Malo Intentar Ligar en una Mazmorra?' + - 在地下城寻求邂逅是否搞错了什么 + - فارسة أحلامي + - มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน + - DanMachi - È sbagliato cercare di incontrare ragazze in un Dungeon? + - ダンまち + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 6 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 20829 + idMal: 26243 + title: + romaji: Owari no Seraph + english: 'Seraph of the End: Vampire Reign' + native: 終わりのセラフ + synonyms: + - OwaSera + - 'Seraph of the End: El Reino de los Vampiros' + - เทวทูตแห่งโลกมืด + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 6 + day: 20 + averageScore: 73 + nextAiringEpisode: null + - id: 20698 + idMal: 23847 + title: + romaji: Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku + english: My Teen Romantic Comedy SNAFU TOO! + native: やはり俺の青春ラブコメはまちがっている。続 + synonyms: + - Oregairu Zoku + - Oregairu 2 + - 俺ガイル2 + - 我的青春恋爱物语果然有问题 续 + - กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 3 + endDate: + year: 2015 + month: 6 + day: 26 + averageScore: 81 + nextAiringEpisode: null + - id: 20872 + idMal: 27775 + title: + romaji: Plastic Memories + english: Plastic Memories + native: プラスティックメモリーズ + synonyms: + - Plamemo + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 5 + endDate: + year: 2015 + month: 6 + day: 28 + averageScore: 77 + nextAiringEpisode: null + - id: 20727 + idMal: 24439 + title: + romaji: Kekkai Sensen + english: Blood Blockade Battlefront + native: 血界戦線 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 5 + endDate: + year: 2015 + month: 10 + day: 4 + averageScore: 74 + nextAiringEpisode: null + - id: 20792 + idMal: 28701 + title: + romaji: 'Fate/stay night: Unlimited Blade Works 2nd Season' + english: 'Fate/stay night: Unlimited Blade Works 2nd Season' + native: Fate/stay night [Unlimited Blade Works] 2ndシーズン + synonyms: + - フェイト/ステイナイト Unlimited Blade Works 2ndシーズン + - 'Судьба/Ночь схватки: Бесконечный мир клинков 2' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 5 + endDate: + year: 2015 + month: 6 + day: 28 + averageScore: 82 + nextAiringEpisode: null + - id: 20966 + idMal: 28677 + title: + romaji: Yamada-kun to 7-nin no Majo + english: Yamada and the Seven Witches + native: 山田くんと7人の魔女 + synonyms: + - Yamadakun to Nananin no Majo + - Yamajo + - ยามาดะคุงกับแม่มดทั้ง 7 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 12 + endDate: + year: 2015 + month: 6 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 20745 + idMal: 24703 + title: + romaji: High School DxD BorN + english: null + native: ハイスクールD×D BorN + synonyms: + - Highschool DxD 3 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 6 + day: 20 + averageScore: 71 + nextAiringEpisode: null + - id: 20876 + idMal: 27787 + title: + romaji: 'Nisekoi:' + english: 'Nisekoi:' + native: ニセコイ: + synonyms: + - Nisekoi2 -False Love- + - ' รักลวงป่วนใจ ภาค 2' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 10 + endDate: + year: 2015 + month: 6 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 20946 + idMal: 28297 + title: + romaji: Ore Monogatari!! + english: My Love Story!! + native: 俺物語!! + synonyms: + - Mon Histoire + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 9 + endDate: + year: 2015 + month: 9 + day: 24 + averageScore: 77 + nextAiringEpisode: null + - id: 20912 + idMal: 27989 + title: + romaji: Hibike! Euphonium + english: Sound! Euphonium + native: 響け!ユーフォニアム + synonyms: + - Résonne ! Euphonium + - 吹响吧!上低音号 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 8 + endDate: + year: 2015 + month: 7 + day: 1 + averageScore: 80 + nextAiringEpisode: null + - id: 20996 + idMal: 28977 + title: + romaji: Gintama° + english: Gintama Season 3 + native: 銀魂゜ + synonyms: [] + status: FINISHED + format: TV + episodes: 51 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 8 + endDate: + year: 2016 + month: 3 + day: 30 + averageScore: 90 + nextAiringEpisode: null + - id: 21006 + idMal: 29095 + title: + romaji: Grisaia no Rakuen + english: The Eden of Grisaia + native: グリザイアの楽園 + synonyms: + - Le Eden De La Grisaia + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 19 + endDate: + year: 2015 + month: 6 + day: 21 + averageScore: 75 + nextAiringEpisode: null + - id: 20935 + idMal: 28249 + title: + romaji: Arslan Senki (TV) + english: The Heroic Legend of Arslan + native: アルスラーン戦記 (TV) + synonyms: + - La Heroica Leyenda de Arslan + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 5 + endDate: + year: 2015 + month: 9 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 20963 + idMal: 28675 + title: + romaji: 'Kyoukai no Kanata: I''LL BE HERE - Mirai-hen' + english: 'Beyond the Boundary -I''LL BE HERE-: Future' + native: 劇場版 境界の彼方 I'LL BE HERE 未来篇 + synonyms: + - 'Kyoukai no Kanata: I’ll Be Here – przyszłość' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 25 + endDate: + year: 2015 + month: 4 + day: 25 + averageScore: 79 + nextAiringEpisode: null + - id: 21005 + idMal: 29093 + title: + romaji: Grisaia no Meikyuu + english: The Labyrinth of Grisaia + native: グリザイアの迷宮 + synonyms: + - Le Labyrinthe De La Grisaia + status: FINISHED + format: SPECIAL + episodes: 1 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 12 + endDate: + year: 2015 + month: 4 + day: 12 + averageScore: 76 + nextAiringEpisode: null + - id: 20964 + idMal: 28617 + title: + romaji: Punch Line + english: PUNCH LINE + native: パンチライン + synonyms: + - Punchline + - Linea Final + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 10 + endDate: + year: 2015 + month: 6 + day: 26 + averageScore: 66 + nextAiringEpisode: null + - id: 20778 + idMal: 25389 + title: + romaji: 'Dragon Ball Z: Fukkatsu no "F"' + english: 'Dragon Ball Z: Resurrection ''F''' + native: ドラゴンボールZ 復活の「F」 + synonyms: + - 'Dragon Ball Z: La Resurrección de "F"' + - 龙珠Z:复活的弗利萨 + - Dragon Ball Z - La resurrezione di 'F' + - “未来”トランクス特別編 + - Future Trunks Special Edition + - 'Драконий жемчуг Зет: Воскрешение «Ф»' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 18 + endDate: + year: 2015 + month: 4 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 21000 + idMal: 29067 + title: + romaji: Danna ga Nani wo Itteiru ka Wakaranai Ken 2-sure-me + english: I Can't Understand What My Husband is Saying 2nd Thread + native: 旦那が何を言っているかわからない件2スレ目 + synonyms: + - Danna ga Nani o Itte Iruka Wakaranai Ken 2-sure-me + status: FINISHED + format: TV_SHORT + episodes: 13 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 3 + endDate: + year: 2015 + month: 6 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 20766 + idMal: 24997 + title: + romaji: Love Live! The School Idol Movie + english: Love Live! The School Idol Movie + native: ラブライブ!The School Idol Movie + synonyms: + - Gekijouban Love Live! + - Love Live! School Idol Project Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 6 + day: 13 + endDate: + year: 2015 + month: 6 + day: 13 + averageScore: 77 + nextAiringEpisode: null + - id: 20839 + idMal: 26443 + title: + romaji: Triage X + english: Triage X + native: トリアージX + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 9 + endDate: + year: 2015 + month: 6 + day: 11 + averageScore: 58 + nextAiringEpisode: null + - id: 21247 + idMal: 29027 + title: + romaji: 'Shinmai Maou no Testament: Toujou Basara no Hard Sweet na Nichijou' + english: 'The Testament of Sister New Devil: Tojo Basara''s Hard, Sweet Daily Life' + native: 新妹魔王の契約者 東城刃更のハードスウィートな日常 + synonyms: + - Shinmai Maou no Keiyakusha OVA + - The Testament of Sister New Devil OVA + - 'Shinmai Maou no Keiyakusha: Toujou Basara no Hard Sweet na Nichijou' + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 6 + day: 22 + endDate: + year: 2015 + month: 6 + day: 22 + averageScore: 65 + nextAiringEpisode: null + - id: 20566 + idMal: 26351 + title: + romaji: Nagato Yuki-chan no Shoushitsu + english: The Disappearance of Nagato Yuki-chan + native: 長門有希ちゃんの消失 + synonyms: + - La Disparition de Yuki Nagato + status: FINISHED + format: TV + episodes: 16 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 7 + day: 18 + averageScore: 64 + nextAiringEpisode: null + - id: 21018 + idMal: 29589 + title: + romaji: Denpa Kyoushi + english: Ultimate Otaku Teacher + native: 電波教師 + synonyms: + - He Is A Ultimate Teacher + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2015 + startDate: + year: 2015 + month: 4 + day: 4 + endDate: + year: 2015 + month: 9 + day: 26 + averageScore: 63 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/23-2015-summer.yaml b/test/fixtures/anilist/season_matrix/23-2015-summer.yaml new file mode 100644 index 0000000..9d71744 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/23-2015-summer.yaml @@ -0,0 +1,663 @@ +metadata: + captured_at: '2026-05-11T11:33:19Z' + label: 2015-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2015 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:19 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '29' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20997 + idMal: 28999 + title: + romaji: Charlotte + english: null + native: Charlotte(シャーロット) + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 5 + endDate: + year: 2015 + month: 9 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 20832 + idMal: 29803 + title: + romaji: Overlord + english: Overlord + native: オーバーロード + synonyms: + - Over Lord + - โอเวอร์ลอร์ด + - โอเวอร์ ลอร์ด จอมมารพิชิตโลก + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 7 + endDate: + year: 2015 + month: 9 + day: 29 + averageScore: 77 + nextAiringEpisode: null + - id: 20807 + idMal: 30240 + title: + romaji: Prison School + english: Prison School + native: 監獄学園〈プリズンスクール〉 + synonyms: + - โรงเรียนคุกนรก + - Kangoku Gakuen + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 11 + endDate: + year: 2015 + month: 9 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 21175 + idMal: 30694 + title: + romaji: Dragon Ball Super + english: Dragon Ball Super + native: ドラゴンボール超 + synonyms: + - DBS + - Dragonball Super + - דרגון בול סופר + - 'Драконий жемчуг: Супер' + status: FINISHED + format: TV + episodes: 131 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 5 + endDate: + year: 2018 + month: 3 + day: 25 + averageScore: 73 + nextAiringEpisode: null + - id: 20910 + idMal: 29786 + title: + romaji: Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai + english: 'SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist' + native: 下ネタという概念が存在しない退屈な世界 + synonyms: + - Shimoseka + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 4 + endDate: + year: 2015 + month: 9 + day: 19 + averageScore: 69 + nextAiringEpisode: null + - id: 20994 + idMal: 28907 + title: + romaji: 'GATE: Jieitai Kanochi nite, Kaku Tatakaeri' + english: Gate + native: GATE 自衛隊 彼の地にて、斯く戦えり + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 4 + endDate: + year: 2015 + month: 9 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 21058 + idMal: 30123 + title: + romaji: Akagami no Shirayuki-hime + english: Snow White with the Red Hair + native: 赤髪の白雪姫 + synonyms: + - Shirayuki aux cheveux rouges + - สโนว์ไวท์ผมแดง + - Красноволосая Белоснежка + - Красноволосая принцесса Белоснежка + - Die rothaarige Schneeprinzessin + - Blancanieves pelirroja + - 'Shirayuki: Śnieżka o czerwonych włosach' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 7 + endDate: + year: 2015 + month: 9 + day: 22 + averageScore: 77 + nextAiringEpisode: null + - id: 20987 + idMal: 28825 + title: + romaji: Himouto! Umaru-chan + english: Himouto! Umaru-chan + native: 干物妹!うまるちゃん + synonyms: + - 干物妹!小埋 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 9 + endDate: + year: 2015 + month: 9 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 21093 + idMal: 30307 + title: + romaji: Monster Musume no Iru Nichijou + english: 'Monster Musume: Everyday Life With Monster Girls' + native: モンスター娘のいる日常 + synonyms: + - MonMusu + - Die Monster Mädchen + - บันทึกอุ่นรักสาวมอนสเตอร์ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 8 + endDate: + year: 2015 + month: 9 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 20773 + idMal: 25183 + title: + romaji: GANGSTA. + english: GANGSTA. + native: GANGSTA. + synonyms: + - ギャングスタ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 2 + endDate: + year: 2015 + month: 9 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 20955 + idMal: 28497 + title: + romaji: Rokka no Yuusha + english: Rokka -Braves of the Six Flowers- + native: 六花の勇者 + synonyms: + - ผู้กล้าแห่งบุปผา + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 5 + endDate: + year: 2015 + month: 9 + day: 20 + averageScore: 70 + nextAiringEpisode: null + - id: 20754 + idMal: 24765 + title: + romaji: Gakkou Gurashi! + english: SCHOOL-LIVE! + native: がっこうぐらし! + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 9 + endDate: + year: 2015 + month: 9 + day: 24 + averageScore: 74 + nextAiringEpisode: null + - id: 20849 + idMal: 27631 + title: + romaji: GOD EATER + english: God Eater + native: GOD EATER + synonyms: + - ゴッドイーター + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 12 + endDate: + year: 2016 + month: 3 + day: 26 + averageScore: 69 + nextAiringEpisode: null + - id: 20981 + idMal: 28805 + title: + romaji: Bakemono no Ko + english: The Boy and The Beast + native: バケモノの子 + synonyms: + - El niño y la bestia + - O Rapaz e o Monstro + - El nen i la bèstia + - Учень чудовиська + - Ученик чудовища + - Berniukas ir Pabaisa + - Құбыжықтың шәкірті + - Băiatul și bestia + - Əjdahanın şagirdi + - Odjuret och hans lärling + - Le Garçon et la Bête + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 11 + endDate: + year: 2015 + month: 7 + day: 11 + averageScore: 79 + nextAiringEpisode: null + - id: 21220 + idMal: 28755 + title: + romaji: 'BORUTO: NARUTO THE MOVIE' + english: 'Boruto: Naruto the Movie' + native: BORUTO -NARUTO THE MOVIE- + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 8 + day: 7 + endDate: + year: 2015 + month: 8 + day: 7 + averageScore: 71 + nextAiringEpisode: null + - id: 20968 + idMal: 28725 + title: + romaji: Kokoro ga Sakebitagatterun da. + english: The Anthem of the Heart + native: 心が叫びたがってるんだ。 + synonyms: + - Kokosake + - El Himno del Corazón + - 'The Anthem of the Heart: Beautiful Word Beautiful World' + - Jun La voix du Coeur + - เมื่อใจกู่ร้องอยากบอกโลก + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 9 + day: 19 + endDate: + year: 2015 + month: 9 + day: 19 + averageScore: 76 + nextAiringEpisode: null + - id: 20879 + idMal: 27831 + title: + romaji: Durarara!!x2 Ten + english: Durarara!! X2 The Second Arc + native: デュラララ!!×2 転 + synonyms: + - DRRR!! 2 Ten + - דורארארה!!2x תפנית + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 4 + endDate: + year: 2015 + month: 9 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 20984 + idMal: 28819 + title: + romaji: Okusama ga Seitokaichou! + english: My Wife is the Student Council President + native: おくさまが生徒会長! + synonyms: + - Okusama ga Seito Kaichou! + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 2 + endDate: + year: 2015 + month: 9 + day: 17 + averageScore: 61 + nextAiringEpisode: null + - id: 21033 + idMal: 29785 + title: + romaji: Jitsu wa Watashi wa + english: Actually, I Am + native: 実は私は + synonyms: + - จุ๊จุ๊ จะบอกว่าฉันคือ… + - My Monster Secret + - Na verdade, eu sou... + - En realidad, soy... + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 7 + endDate: + year: 2015 + month: 9 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 21132 + idMal: 30458 + title: + romaji: 'Tokyo Ghoul: [JACK]' + english: null + native: 東京喰種トーキョーグール [JACK] + synonyms: + - 'Tokyo Kushu: Jack' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 9 + day: 30 + endDate: + year: 2015 + month: 9 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 20995 + idMal: 28979 + title: + romaji: To LOVE-Ru Darkness 2nd + english: To Love Ru Darkness 2 + native: To LOVEる -とらぶる- ダークネス2nd + synonyms: + - To LOVE-Ru Trouble Darkness 2nd + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 7 + endDate: + year: 2015 + month: 9 + day: 29 + averageScore: 71 + nextAiringEpisode: null + - id: 20694 + idMal: 23623 + title: + romaji: 'Non Non Biyori: Repeat' + english: Non Non Biyori Repeat + native: のんのんびより りぴーと + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 7 + endDate: + year: 2015 + month: 9 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 20774 + idMal: 25283 + title: + romaji: Kuusen Madoushi Kouhosei no Kyoukan + english: Sky Wizards Academy + native: 空戦魔導士候補生の教官 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 9 + endDate: + year: 2015 + month: 9 + day: 24 + averageScore: 58 + nextAiringEpisode: null + - id: 20741 + idMal: 24655 + title: + romaji: 'Date A Live Movie: Mayuri Judgement' + english: Date A Live Mayuri Judgement + native: 劇場版デート・ア・ライブ 万由里ジャッジメント + synonyms: + - 'Date A Live Movie: Mayuri Judgment' + - 'พิชิตรัก พิทักษ์โลก : เดอะมูฟวี่ คำพิพากษาของมายูริ' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 8 + day: 22 + endDate: + year: 2015 + month: 8 + day: 22 + averageScore: 70 + nextAiringEpisode: null + - id: 20819 + idMal: 25879 + title: + romaji: WORKING!!! + english: Wagnaria!!3 + native: WORKING!!! + synonyms: + - ワーキング!!! + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2015 + startDate: + year: 2015 + month: 7 + day: 5 + endDate: + year: 2015 + month: 9 + day: 27 + averageScore: 78 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/24-2015-fall.yaml b/test/fixtures/anilist/season_matrix/24-2015-fall.yaml new file mode 100644 index 0000000..1a313fc --- /dev/null +++ b/test/fixtures/anilist/season_matrix/24-2015-fall.yaml @@ -0,0 +1,664 @@ +metadata: + captured_at: '2026-05-11T11:33:22Z' + label: 2015-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2015 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:22 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '28' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21087 + idMal: 30276 + title: + romaji: One Punch Man + english: One-Punch Man + native: ワンパンマン + synonyms: + - OPM + - Wanpanman + - איש האגרוף הבודד + - 一拳超人 + - วันพันช์แมน + - Jagoan Sekali Pukul S1 + - رجل اللكمة الواحدة + - ون بنش مان + - Ванпанчмен + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 5 + endDate: + year: 2015 + month: 12 + day: 21 + averageScore: 83 + nextAiringEpisode: null + - id: 20992 + idMal: 28891 + title: + romaji: Haikyuu!! 2nd Season + english: HAIKYU!! 2nd Season + native: ハイキュー!! セカンドシーズン + synonyms: + - ไฮคิว!! คู่ตบฟ้าประทาน ภาค 2 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 4 + endDate: + year: 2016 + month: 3 + day: 26 + averageScore: 86 + nextAiringEpisode: null + - id: 21128 + idMal: 30503 + title: + romaji: Noragami ARAGOTO + english: Noragami Aragoto + native: ノラガミ ARAGOTO + synonyms: + - โนรางามิ เทวดาขาจร ภาค 2 + - ノラガミ アラゴト + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 3 + endDate: + year: 2015 + month: 12 + day: 26 + averageScore: 80 + nextAiringEpisode: null + - id: 21092 + idMal: 30296 + title: + romaji: Rakudai Kishi no Cavalry + english: Chivalry of a Failed Knight + native: 落第騎士の英雄譚(キャバルリィ) + synonyms: + - Rakudai Kishi no Eiyuutan + - A tale of worst one + - เจ้าหญิงสีชาดกับอัศวินดาบไร้เทียมทาน + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 3 + endDate: + year: 2015 + month: 12 + day: 19 + averageScore: 72 + nextAiringEpisode: null + - id: 20993 + idMal: 28927 + title: + romaji: 'Owari no Seraph: Nagoya Kessen-hen' + english: 'Seraph of the End: Battle in Nagoya' + native: 終わりのセラフ 名古屋決戦編 + synonyms: + - OwaSera 2 + - 'Seraph of the End: El Reino de los Vampiros' + - เทวทูตแห่งโลกมืด ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 10 + endDate: + year: 2015 + month: 12 + day: 26 + averageScore: 75 + nextAiringEpisode: null + - id: 21131 + idMal: 30544 + title: + romaji: Gakusen Toshi Asterisk + english: The Asterisk War + native: 学戦都市アスタリスク + synonyms: + - Academy Battle City Asterisk + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 3 + endDate: + year: 2015 + month: 12 + day: 19 + averageScore: 65 + nextAiringEpisode: null + - id: 21262 + idMal: 31181 + title: + romaji: Owarimonogatari + english: Owarimonogatari + native: 終物語 + synonyms: + - End Tale + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 4 + endDate: + year: 2015 + month: 12 + day: 20 + averageScore: 85 + nextAiringEpisode: null + - id: 21386 + idMal: 31704 + title: + romaji: 'One Punch Man: Road to Hero' + english: 'One-Punch Man: Road to Hero' + native: ワンパンマン「ロード・トゥ・ヒーロー」 + synonyms: + - 'One Punch Man OVA 1 ' + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 12 + day: 4 + endDate: + year: 2015 + month: 12 + day: 4 + averageScore: 75 + nextAiringEpisode: null + - id: 21110 + idMal: 30363 + title: + romaji: 'Shinmai Maou no Testament: BURST' + english: The Testament of Sister New Devil BURST + native: 新妹魔王の契約者 BURST + synonyms: + - Shinmai Maou no Keiyakusha BURST + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 10 + endDate: + year: 2015 + month: 12 + day: 12 + averageScore: 64 + nextAiringEpisode: null + - id: 21624 + idMal: 32188 + title: + romaji: 'Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero' + english: 'Steins;Gate 0: 23β -Divide by Zero-' + native: シュタインズ・ゲート 境界面上のミッシングリンク -Divide By Zero- + synonyms: + - 'Steins;Gate: Episode 23 (β)' + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 12 + day: 3 + endDate: + year: 2015 + month: 12 + day: 3 + averageScore: 81 + nextAiringEpisode: null + - id: 20704 + idMal: 24133 + title: + romaji: Taimadou Gakuen 35 Shiken Shoutai + english: 'Anti-Magic Academy: The 35th Test Platoon' + native: 対魔導学園35試験小隊 + synonyms: + - หมวดเตรียม 35 ล่าทรชนเวท + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 8 + endDate: + year: 2015 + month: 12 + day: 24 + averageScore: 64 + nextAiringEpisode: null + - id: 21281 + idMal: 31374 + title: + romaji: Shingeki! Kyojin Chuugakkou + english: 'Attack on Titan: Junior High' + native: 進撃!巨人中学校 + synonyms: + - 'Ataque a los Titanes: Junior High' + - ผ่ามัธยมไททัน + - ผ่า! มัธยมไททัน + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 4 + endDate: + year: 2015 + month: 12 + day: 20 + averageScore: 70 + nextAiringEpisode: null + - id: 21268 + idMal: 31251 + title: + romaji: 'Kidou Senshi Gundam: Tekketsu no Orphans' + english: Mobile Suit GUNDAM Iron Blooded Orphans + native: 機動戦士ガンダム 鉄血のオルフェンズ + synonyms: + - Gundam IBO + - G-Tekketsu + - 'Gundam: Sirotci s železnou krví' + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 4 + endDate: + year: 2016 + month: 3 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 20771 + idMal: 25099 + title: + romaji: Ore ga Ojou-sama Gakkou ni "Shomin Sample" Toshite Gets-Sareta Ken + english: Shomin Sample + native: 俺がお嬢様学校に「庶民サンプル」としてゲッツされた件 + synonyms: + - นายสามัญชนจอมกวน ป่วนหัวใจยัยคุณหนูไฮโซ + - Story in Which I Was Kidnapped by a Young Lady's School to be a "Sample of the Common People" + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 7 + endDate: + year: 2015 + month: 12 + day: 23 + averageScore: 63 + nextAiringEpisode: null + - id: 20913 + idMal: 27991 + title: + romaji: 'K: RETURN OF KINGS' + english: null + native: K RETURN OF KINGS + synonyms: + - K-Project 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 3 + endDate: + year: 2015 + month: 12 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 21326 + idMal: 31297 + title: + romaji: 'Tokyo Ghoul: [PINTO]' + english: null + native: 東京喰種トーキョーグール【PINTO】 + synonyms: + - 'Toukyou Kushu: Pinto' + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 12 + day: 25 + endDate: + year: 2015 + month: 12 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 19489 + idMal: 19489 + title: + romaji: 'Little Witch Academia: Mahou-jikake no Parade' + english: 'Little Witch Academia: The Enchanted Parade' + native: リトルウィッチアカデミア 魔法仕掛けのパレード + synonyms: + - Little Witch Academia Movie + - Little Witch Academia 2 + - LWA Movie + - LWA 2 + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 9 + endDate: + year: 2015 + month: 10 + day: 9 + averageScore: 76 + nextAiringEpisode: null + - id: 21066 + idMal: 30187 + title: + romaji: Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru + english: Beautiful Bones -Sakurako's Investigation- + native: 櫻子さんの足下には死体が埋まっている + synonyms: + - A Corpse is Buried Under Sakurako's Feet. + - Труп под ногами Сакурако + - Трупи під ногами Сакурако + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 8 + endDate: + year: 2015 + month: 12 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 21190 + idMal: 28621 + title: + romaji: 'Subete ga F ni Naru: THE PERFECT INSIDER' + english: The Perfect Insider + native: すべてがFになる THE PERFECT INSIDER + synonyms: + - 'Everything Becomes F: The Perfect Insider' + - O Infiltrado Perfeito + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 9 + endDate: + year: 2015 + month: 12 + day: 18 + averageScore: 69 + nextAiringEpisode: null + - id: 119941 + idMal: 30885 + title: + romaji: Noragami ARAGOTO OVA + english: null + native: ノラガミ ARAGOTO OAD + synonyms: + - ノラガミ アラゴト OAD + status: FINISHED + format: OVA + episodes: 2 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 11 + day: 17 + endDate: + year: 2016 + month: 3 + day: 17 + averageScore: 75 + nextAiringEpisode: null + - id: 21261 + idMal: 31174 + title: + romaji: Osomatsu-san + english: Mr. Osomatsu + native: おそ松さん + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 6 + endDate: + year: 2016 + month: 3 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 21356 + idMal: 31592 + title: + romaji: Pocket Monsters XY&Z + english: 'Pokémon the Series: XYZ' + native: ポケットモンスター XY&Z + synonyms: + - Pokémon Seria XYZ + status: FINISHED + format: TV + episodes: 47 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 29 + endDate: + year: 2016 + month: 10 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 21138 + idMal: 30370 + title: + romaji: Akatsuki no Yona OVA + english: Yona of the Dawn OVA + native: 暁のヨナ OVA + synonyms: + - AkaYona OVA + - 'Akatsuki no Yona: Sono Se ni wa' + - 'Akatsuki no Yona: Zeno-hen' + - 暁のヨナ その背には + - Йона на заре + - Рассвет Йоны + - Ёна на заре + status: FINISHED + format: OVA + episodes: 3 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 9 + day: 18 + endDate: + year: 2016 + month: 12 + day: 20 + averageScore: 80 + nextAiringEpisode: null + - id: 21318 + idMal: 31389 + title: + romaji: 'Fate/stay night: Unlimited Blade Works 2nd Season - sunny day' + english: 'Fate/stay night: Unlimited Blade Works 2nd Season - sunny day' + native: Fate/stay night [Unlimited Blade Works] 2ndシーズン - sunny day + synonyms: + - フェイト/ステイナイト Unlimited Blade Works 2ndシーズン - sunny day + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 7 + endDate: + year: 2015 + month: 10 + day: 7 + averageScore: 73 + nextAiringEpisode: null + - id: 21116 + idMal: 30385 + title: + romaji: 'Valkyrie Drive: Mermaid' + english: 'Valkyrie Drive: Mermaid' + native: ヴァルキリードライヴ マーメイド + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2015 + startDate: + year: 2015 + month: 10 + day: 10 + endDate: + year: 2015 + month: 12 + day: 26 + averageScore: 55 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/25-2016-winter.yaml b/test/fixtures/anilist/season_matrix/25-2016-winter.yaml new file mode 100644 index 0000000..ffb4a26 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/25-2016-winter.yaml @@ -0,0 +1,656 @@ +metadata: + captured_at: '2026-05-11T11:33:25Z' + label: 2016-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2016 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:24 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '27' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21234 + idMal: 31043 + title: + romaji: Boku dake ga Inai Machi + english: ERASED + native: 僕だけがいない街 + synonyms: + - Bokumachi + - Desaparecido + - Miasto beze mnie + - รีไววัล ย้อนอดีตไขปริศนา + - ย้อนอดีตไขปริศนา + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 3 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 21202 + idMal: 30831 + title: + romaji: Kono Subarashii Sekai ni Shukufuku wo! + english: KONOSUBA -God's blessing on this wonderful world! + native: この素晴らしい世界に祝福を! + synonyms: + - Konosuba + - Kono Subarashii Sekai ni Syukufuku wo! + - Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso + - 为美好的世界献上祝福! + - ขอให้โชคดีมีชัยในโลกแฟนตาซี! + - 'Konosuba : Sois béni monde merveilleux !' + - Да благословят боги сей расчудесный мир! + - 'Konosuba: Un mundo maravilloso!' + - ' Konosuba: ¡Bendito sea este maravilloso mundo!' + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 14 + endDate: + year: 2016 + month: 3 + day: 17 + averageScore: 79 + nextAiringEpisode: null + - id: 21170 + idMal: 30654 + title: + romaji: Ansatsu Kyoushitsu 2nd Season + english: Assassination Classroom Second Season + native: 暗殺教室 第2期 + synonyms: + - فصل الاغتيال 2 + - Klasa skrytobójców 2 + - Assassination Classroom Season 2 + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 7 + day: 1 + averageScore: 83 + nextAiringEpisode: null + - id: 21428 + idMal: 31859 + title: + romaji: Hai to Gensou no Grimgar + english: Grimgar of Fantasy and Ash + native: 灰と幻想のグリムガル + synonyms: + - Grimgar + - ' Ashes and Illusions' + - ขี้เถ้าในกริมการ์แดนมายา + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 11 + endDate: + year: 2016 + month: 3 + day: 28 + averageScore: 74 + nextAiringEpisode: null + - id: 9260 + idMal: 9260 + title: + romaji: 'Kizumonogatari I: Tekketsu-hen' + english: 'Kizumonogatari Part 1: Tekketsu' + native: 傷物語〈Ⅰ鉄血篇〉 + synonyms: + - 'Wound Tale 1: Iron Blood' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 1 + day: 8 + averageScore: 83 + nextAiringEpisode: null + - id: 21306 + idMal: 31442 + title: + romaji: Musaigen no Phantom World + english: Myriad Colors Phantom World + native: 無彩限のファントム・ワールド + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 7 + endDate: + year: 2016 + month: 3 + day: 31 + averageScore: 65 + nextAiringEpisode: null + - id: 21364 + idMal: 31637 + title: + romaji: 'GATE: Jieitai Kanochi nite, Kaku Tatakaeri Part 2' + english: Gate 2 + native: GATE 自衛隊 彼の地にて、斯く戦えり 第2クール + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 9 + endDate: + year: 2016 + month: 3 + day: 26 + averageScore: 75 + nextAiringEpisode: null + - id: 21341 + idMal: 31580 + title: + romaji: Ajin + english: 'AJIN: Demi-Human' + native: 亜人 + synonyms: + - 'AJIN: Semihumano' + - อาจิน สายพันธุ์อมนุษย์ + - 'أجين: أنصاف البشر' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 16 + endDate: + year: 2016 + month: 4 + day: 9 + averageScore: 71 + nextAiringEpisode: null + - id: 21365 + idMal: 31636 + title: + romaji: Dagashi Kashi + english: null + native: だがしかし + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 4 + day: 1 + averageScore: 64 + nextAiringEpisode: null + - id: 21188 + idMal: 30749 + title: + romaji: Saijaku Muhai no Bahamut + english: Undefeated Bahamut Chronicle + native: 最弱無敗の神装機竜《バハムート》 + synonyms: + - บาฮามุท มังกรเหล็กไร้พ่าย + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 11 + endDate: + year: 2016 + month: 3 + day: 28 + averageScore: 62 + nextAiringEpisode: null + - id: 21258 + idMal: 31173 + title: + romaji: Akagami no Shirayuki-hime 2nd Season + english: Snow White with the Red Hair Season 2 + native: 赤髪の白雪姫 2ndシーズン + synonyms: + - สโนว์ไวท์ผมแดง ภาค 2 + - Die rothaarige Schneeprinzessin 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 12 + endDate: + year: 2016 + month: 3 + day: 29 + averageScore: 79 + nextAiringEpisode: null + - id: 21520 + idMal: 32268 + title: + romaji: Koyomimonogatari + english: Koyomimonogatari + native: 暦物語 + synonyms: + - Calendar Tale + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 9 + endDate: + year: 2016 + month: 3 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 21096 + idMal: 30346 + title: + romaji: Doukyuusei + english: Doukyuusei -Classmates- + native: 同級生 + synonyms: + - Classmates + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 2 + day: 20 + endDate: + year: 2016 + month: 2 + day: 20 + averageScore: 81 + nextAiringEpisode: null + - id: 20972 + idMal: 28735 + title: + romaji: Shouwa Genroku Rakugo Shinjuu + english: Showa Genroku Rakugo Shinju + native: 昭和元禄落語心中 + synonyms: + - 'Descending Stories: Showa Genroku Rakugo Shinju' + - Le Rakugo ou la vie + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 9 + endDate: + year: 2016 + month: 4 + day: 2 + averageScore: 84 + nextAiringEpisode: null + - id: 20880 + idMal: 27833 + title: + romaji: Durarara!!x2 Ketsu + english: Durarara!! X2 The Third Arc + native: デュラララ!!×2 結 + synonyms: + - DRRR!! 2 Ketsu + - דורארארה!!2x סיום + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 9 + endDate: + year: 2016 + month: 3 + day: 26 + averageScore: 79 + nextAiringEpisode: null + - id: 21416 + idMal: 31772 + title: + romaji: One Punch Man OVA + english: One-Punch Man OVA + native: ワンパンマン OVA + synonyms: [] + status: FINISHED + format: OVA + episodes: 6 + season: WINTER + seasonYear: 2016 + startDate: + year: 2015 + month: 12 + day: 24 + endDate: + year: 2016 + month: 5 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 21256 + idMal: 31163 + title: + romaji: Dimension W + english: Dimension W + native: ディメンション ダブリュー + synonyms: + - มิติปริศนา + - Измерение W + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 10 + endDate: + year: 2016 + month: 3 + day: 27 + averageScore: 68 + nextAiringEpisode: null + - id: 21339 + idMal: 31553 + title: + romaji: 'Charlotte: Tsuyoimono-tachi' + english: 'Charlotte: Strong People' + native: Charlotte 強い者たち + synonyms: + - Charlotte(シャーロット)TV未放送エピソード特別篇 + - Charlotte TV mi Housou Episode Tokubetsu-hen + - Charlotte Special + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 3 + day: 30 + endDate: + year: 2016 + month: 3 + day: 30 + averageScore: 73 + nextAiringEpisode: null + - id: 21292 + idMal: 31414 + title: + romaji: Nijiiro Days + english: Rainbow Days + native: 虹色デイズ + synonyms: + - Niji-iro Days + - Beztroskie dni + - รักสุดใจคนวัยซ่า + status: FINISHED + format: TV_SHORT + episodes: 24 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 10 + endDate: + year: 2016 + month: 6 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 21472 + idMal: 32013 + title: + romaji: Oshiete! Galko-chan + english: Please tell me! Galko-chan + native: おしえて! ギャル子ちゃん + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 3 + day: 25 + averageScore: 67 + nextAiringEpisode: null + - id: 21565 + idMal: 32485 + title: + romaji: 'Prison School: Mad Wax' + english: null + native: 監獄学園[プリズンスクール] マッドワックス + synonyms: + - 'Kangoku Gakuen: Mad Wax' + - Kangoku Gakuen OVA + - Prison School OVA + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 3 + day: 4 + endDate: + year: 2016 + month: 3 + day: 4 + averageScore: 71 + nextAiringEpisode: null + - id: 21330 + idMal: 31559 + title: + romaji: 'Prince of Stride: Alternative' + english: 'Prince of Stride: Alternative' + native: プリンス・オブ・ストライド オルタナティブ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 5 + endDate: + year: 2016 + month: 3 + day: 22 + averageScore: 65 + nextAiringEpisode: null + - id: 21577 + idMal: 32491 + title: + romaji: 'Kanojo to Kanojo no Neko: Everything Flows' + english: She and Her Cat -Everything Flows- + native: 彼女と彼女の猫 -Everything Flows- + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 4 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 3 + day: 4 + endDate: + year: 2016 + month: 3 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 21380 + idMal: 31710 + title: + romaji: Divine Gate + english: Divine Gate + native: ディバインゲート + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 8 + endDate: + year: 2016 + month: 3 + day: 25 + averageScore: 50 + nextAiringEpisode: null + - id: 21319 + idMal: 28391 + title: + romaji: Ao no Kanata no Four Rhythm + english: 'AOKANA: Four Rhythm Across the Blue' + native: 蒼の彼方のフォーリズム + synonyms: + - AoKana + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2016 + startDate: + year: 2016 + month: 1 + day: 12 + endDate: + year: 2016 + month: 3 + day: 29 + averageScore: 63 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/26-2016-spring.yaml b/test/fixtures/anilist/season_matrix/26-2016-spring.yaml new file mode 100644 index 0000000..70ef410 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/26-2016-spring.yaml @@ -0,0 +1,659 @@ +metadata: + captured_at: '2026-05-11T11:33:27Z' + label: 2016-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2016 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:27 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '26' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21459 + idMal: 31964 + title: + romaji: Boku no Hero Academia + english: My Hero Academia + native: 僕のヒーローアカデミア + synonyms: + - BNHA + - MHA + - 나의 히어로 아카데미아 1기 + - 나히아 1기 + - אקדמיית הגיבורים שלי + - 我的英雄学院 + - มายฮีโร่ อคาเดเมีย + - أكاديميتي للأبطال + - Η Δική Μου Ακαδημία Ηρώων + - Akademia bohaterów + - Моя геройская академия + - Hősakadémia + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 3 + endDate: + year: 2016 + month: 6 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 21355 + idMal: 31240 + title: + romaji: Re:Zero kara Hajimeru Isekai Seikatsu + english: Re:ZERO -Starting Life in Another World- + native: Re:ゼロから始める異世界生活 + synonyms: + - 'Re: Life in a different world from zero' + - ReZero + - Re Zero + - Re:从零开始的异世界生活 + - Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก + - Re:Zero — жизнь с нуля в другом мире + - Re:Zero Empezar de cero en un mundo diferente + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 4 + endDate: + year: 2016 + month: 9 + day: 19 + averageScore: 81 + nextAiringEpisode: null + - id: 21311 + idMal: 31478 + title: + romaji: Bungou Stray Dogs + english: Bungo Stray Dogs + native: 文豪ストレイドッグス + synonyms: + - כלבי ספרות נודדים + - Văn hào lưu lạc + - คณะประพันธกรจรจัด + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 7 + endDate: + year: 2016 + month: 6 + day: 23 + averageScore: 77 + nextAiringEpisode: null + - id: 21450 + idMal: 31933 + title: + romaji: 'JoJo no Kimyou na Bouken: Diamond wa Kudakenai' + english: 'JoJo''s Bizarre Adventure: Diamond is Unbreakable' + native: ジョジョの奇妙な冒険 ダイヤモンドは砕けない + synonyms: + - 'JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai' + - 'JoJo''s Bizarre Adventure Part 4: Diamond is Unbreakable' + - 'مغامرات جوجو العجيبة: الألماس غير قابل للكسر' + - 'Le bizzarre avventure di JoJo: Diamond is Unbreakable' + - 'Невероятные приключения ДжоДжо: Diamond is Unbreakable' + status: FINISHED + format: TV + episodes: 39 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 2 + endDate: + year: 2016 + month: 12 + day: 24 + averageScore: 84 + nextAiringEpisode: null + - id: 21421 + idMal: 31798 + title: + romaji: Kiznaiver + english: Kiznaiver + native: キズナイーバー + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 9 + endDate: + year: 2016 + month: 6 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 21196 + idMal: 28623 + title: + romaji: Koutetsujou no Kabaneri + english: Kabaneri of the Iron Fortress + native: 甲鉄城のカバネリ + synonyms: + - Kabaneri de la Fortaleza de Hierro + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 8 + endDate: + year: 2016 + month: 7 + day: 1 + averageScore: 70 + nextAiringEpisode: null + - id: 21595 + idMal: 32542 + title: + romaji: Sakamoto desu ga? + english: Haven't You Heard? I'm Sakamoto + native: 坂本ですが? + synonyms: + - Sakamoto, pour vous servir ! + - เทพศาสตร์ซากาโมโต้ + - Gak Pernah Dengar Nama Aku Sakamoto? + - Soy Sakamoto, ¿por? + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 8 + endDate: + year: 2016 + month: 7 + day: 1 + averageScore: 73 + nextAiringEpisode: null + - id: 21290 + idMal: 31404 + title: + romaji: Netoge no Yome wa Onnanoko ja Nai to Omotta? + english: And you thought there is never a girl online? + native: ネトゲの嫁は女の子じゃないと思った? + synonyms: + - ถามหน่อยครับ คิดว่าเจ้าสาวผมในเกมออนไลน์เป็นผู้หญิงจริงหรือเปล่า? + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 7 + endDate: + year: 2016 + month: 6 + day: 23 + averageScore: 63 + nextAiringEpisode: null + - id: 21574 + idMal: 32380 + title: + romaji: 'Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!' + english: 'KONOSUBA -God''s blessing on this wonderful world!: God''s Blessings On This Wonderful Choker!' + native: この素晴らしい世界に祝福を! この素晴らしいチョーカーに祝福を! + synonyms: + - 'Konosuba - As Bençãos de Deus Neste Mundo Maravilhoso: As Bençãos de Deus Nesta Maravilhosa Gargantilha!' + - 'Konosuba ¡Bendito sea este mundo maravilloso!: ¡Bendita sea esta gargantilla maravillosa!' + - Konosuba OVA + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 6 + day: 24 + endDate: + year: 2016 + month: 6 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 21495 + idMal: 32093 + title: + romaji: Tanaka-kun wa Itsumo Kedaruge + english: Tanaka-kun is Always Listless + native: 田中くんはいつもけだるげ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 9 + endDate: + year: 2016 + month: 6 + day: 25 + averageScore: 76 + nextAiringEpisode: null + - id: 21499 + idMal: 32105 + title: + romaji: Sousei no Onmyouji + english: Twin Star Exorcists + native: 双星の陰陽師 + synonyms: + - ทวิดารา มหาองเมียวจิ + status: FINISHED + format: TV + episodes: 50 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 6 + endDate: + year: 2017 + month: 3 + day: 29 + averageScore: 69 + nextAiringEpisode: null + - id: 21394 + idMal: 31741 + title: + romaji: 'Magi: Sinbad no Bouken' + english: 'Magi: Adventure of Sinbad' + native: マギ シンドバッドの冒険 + synonyms: + - 'מאגי: הרפתקאותיו של סינבד' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 16 + endDate: + year: 2016 + month: 7 + day: 2 + averageScore: 77 + nextAiringEpisode: null + - id: 21390 + idMal: 31737 + title: + romaji: Gakusen Toshi Asterisk 2 + english: The Asterisk War 2 + native: 学戦都市アスタリスク 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 2 + endDate: + year: 2016 + month: 6 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 21362 + idMal: 31338 + title: + romaji: Hundred + english: Hundred + native: ハンドレッド + synonyms: + - ฮันเดรด + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 5 + endDate: + year: 2016 + month: 6 + day: 21 + averageScore: 59 + nextAiringEpisode: null + - id: 21284 + idMal: 31376 + title: + romaji: Flying Witch + english: Flying Witch + native: ふらいんぐうぃっち + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 10 + endDate: + year: 2016 + month: 6 + day: 26 + averageScore: 74 + nextAiringEpisode: null + - id: 21296 + idMal: 31245 + title: + romaji: 'Zutto Mae kara Suki deshita.: Kokuhaku Jikkou Iinkai' + english: I've Always Liked You + native: ずっと前から好きでした。~告白実行委員会~ + synonyms: + - 'Kokuhaku Jikkou Iinkai: Renai Series' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 23 + endDate: + year: 2016 + month: 4 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 21445 + idMal: 31904 + title: + romaji: Big Order + english: Big Order + native: ビッグオーダー + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 16 + endDate: + year: 2016 + month: 6 + day: 18 + averageScore: 48 + nextAiringEpisode: null + - id: 21637 + idMal: 32681 + title: + romaji: Uchuu Patrol Luluco + english: Space Patrol Luluco + native: 宇宙パトロールルル子 + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 13 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 1 + endDate: + year: 2016 + month: 6 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 21567 + idMal: 32438 + title: + romaji: Mayoiga + english: The Lost Village + native: 迷家-マヨイガ- + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 1 + endDate: + year: 2016 + month: 6 + day: 17 + averageScore: 50 + nextAiringEpisode: null + - id: 21291 + idMal: 31405 + title: + romaji: Joker Game + english: Joker Game + native: ジョーカー・ゲーム + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 5 + endDate: + year: 2016 + month: 6 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 21360 + idMal: 31630 + title: + romaji: 'Gyakuten Saiban: Sono "Shinjitsu", Igi Ari!' + english: Ace Attorney + native: 逆転裁判 その『真実』、異議あり! + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 2 + endDate: + year: 2016 + month: 9 + day: 24 + averageScore: 61 + nextAiringEpisode: null + - id: 21586 + idMal: 31378 + title: + romaji: 'Owari no Seraph: Kyuuketsuki Shahal' + english: 'Seraph of the End: Kyuuketsuki Shahal' + native: 終わりのセラフ 吸血鬼シャハル + synonyms: + - 'Owari no Seraph: Jump Festa 2015 Special' + - 'Owari no Seraph: Vampire Shahar' + - Owari no Seraph OVA + - 終わりのセラフ ジャンプフェスタ2015 + - เทวทูตแห่งโลกมืด OVA + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 5 + day: 2 + endDate: + year: 2016 + month: 5 + day: 2 + averageScore: 71 + nextAiringEpisode: null + - id: 21691 + idMal: 31327 + title: + romaji: Shokugeki no Souma OVA + english: Food Wars! Shokugeki no Soma OVA + native: 食戟のソーマ OVA + synonyms: + - 'Food Wars! Shokugeki no Soma: Takumi''s Downtown Competition' + - 'Food Wars! Shokugeki no Soma: Erina''s Summer Vacation' + status: FINISHED + format: OVA + episodes: 2 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 5 + day: 2 + endDate: + year: 2016 + month: 7 + day: 4 + averageScore: 71 + nextAiringEpisode: null + - id: 21516 + idMal: 32245 + title: + romaji: Kuromukuro + english: Kuromukuro + native: クロムクロ + synonyms: [] + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 7 + endDate: + year: 2016 + month: 9 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 21316 + idMal: 31500 + title: + romaji: High School Fleet + english: High School Fleet + native: ハイスクール・フリート + synonyms: + - Haifuri + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2016 + startDate: + year: 2016 + month: 4 + day: 10 + endDate: + year: 2016 + month: 6 + day: 26 + averageScore: 70 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/27-2016-summer.yaml b/test/fixtures/anilist/season_matrix/27-2016-summer.yaml new file mode 100644 index 0000000..fc86710 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/27-2016-summer.yaml @@ -0,0 +1,666 @@ +metadata: + captured_at: '2026-05-11T11:33:31Z' + label: 2016-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2016 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:30 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '25' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21519 + idMal: 32281 + title: + romaji: Kimi no Na wa. + english: Your Name. + native: 君の名は。 + synonyms: + - 'Your Name. - Gestern, heute und für immer ' + - 'Mi a Neved? ' + - 你的名字。 + - 너의 이름은. + - Tu nombre + - Твоё имя + - หลับตาฝันถึงชื่อเธอ + - Il tuo nome + - השם שלך. + - Twoje imię + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 8 + day: 26 + endDate: + year: 2016 + month: 8 + day: 26 + averageScore: 86 + nextAiringEpisode: null + - id: 20954 + idMal: 28851 + title: + romaji: Koe no Katachi + english: A Silent Voice + native: 聲の形 + synonyms: + - The Shape of Voice + - A Voz do Silêncio + - A Forma da Voz + - La Forma della Voce + - צורתו של קול + - 声之形 + - الحزن الصامت + - Una voz silenciosa + - La Forme de la voix + - Форма голоса + - Форма голосу + - Tylus balsas + - Balss forma + - Дауыс пішіні + - Sakit səs + - รักไร้เสียง + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 9 + day: 17 + endDate: + year: 2016 + month: 9 + day: 17 + averageScore: 88 + nextAiringEpisode: null + - id: 21507 + idMal: 32182 + title: + romaji: Mob Psycho 100 + english: Mob Psycho 100 + native: モブサイコ100 + synonyms: + - מוב פסיכו 100 + - ม็อบไซโค 100 คนพลังจิต + - Моб Психо 100 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 12 + endDate: + year: 2016 + month: 9 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 21804 + idMal: 33255 + title: + romaji: Saiki Kusuo no Ψ-nan + english: The Disastrous Life of Saiki K. + native: 斉木楠雄のΨ難 + synonyms: + - חייו הרי-האסון של סאיקי ק + - Η Καταστροφική Ζωή του Σάικι Κ + - Ох уж этот экстрасенс Сайки Кусуо! + status: FINISHED + format: TV_SHORT + episodes: 120 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 4 + endDate: + year: 2016 + month: 12 + day: 26 + averageScore: 83 + nextAiringEpisode: null + - id: 21518 + idMal: 32282 + title: + romaji: 'Shokugeki no Souma: Ni no Sara' + english: Food Wars! The Second Plate + native: 食戟のソーマ 弍ノ皿 + synonyms: + - 食戟之灵 贰之皿 + - ยอดนักปรุงโซมะ ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 2 + endDate: + year: 2016 + month: 9 + day: 24 + averageScore: 79 + nextAiringEpisode: null + - id: 21049 + idMal: 30015 + title: + romaji: ReLIFE + english: ReLIFE + native: ReLIFE + synonyms: + - リライフ + - Повторная жизнь + status: FINISHED + format: ONA + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 6 + day: 24 + endDate: + year: 2016 + month: 6 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 21647 + idMal: 32729 + title: + romaji: orange + english: Orange + native: orange + synonyms: + - オレンジ + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 4 + endDate: + year: 2016 + month: 9 + day: 26 + averageScore: 75 + nextAiringEpisode: null + - id: 21711 + idMal: 32998 + title: + romaji: 91Days + english: 91 Days + native: 91Days + synonyms: + - 91デイズ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 9 + endDate: + year: 2016 + month: 10 + day: 1 + averageScore: 76 + nextAiringEpisode: null + - id: 21385 + idMal: 31722 + title: + romaji: 'Nanatsu no Taizai: Seisen no Shirushi' + english: 'The Seven Deadly Sins: Signs of A Holy War' + native: 七つの大罪 聖戦の予兆 + synonyms: + - 'The Seven Deadly Sins: Signs of Holy War' + - The Seven Deadly Sins - Anzeichen eines Heiligen Kriegs + - ศึกตำนาน 7 อัศวิน ภาค สัญญาณสงครามศักดิ์สิทธิ์ + - 'The Seven Deadly Sins: Ślady Świętej Wojny' + - 'Семь смертных грехов: Знамение священной войны' + status: FINISHED + format: TV + episodes: 4 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 8 + day: 28 + endDate: + year: 2016 + month: 9 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 21399 + idMal: 31757 + title: + romaji: 'Kizumonogatari II: Nekketsu-hen' + english: 'Kizumonogatari Part 2: Nekketsu' + native: 傷物語〈Ⅱ熱血篇〉 + synonyms: + - 'Wound Tale 2: Hot Blood' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 8 + day: 19 + endDate: + year: 2016 + month: 8 + day: 19 + averageScore: 85 + nextAiringEpisode: null + - id: 21455 + idMal: 31953 + title: + romaji: NEW GAME! + english: NEW GAME! + native: NEW GAME! + synonyms: + - Новая игра! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 4 + endDate: + year: 2016 + month: 9 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 21509 + idMal: 32189 + title: + romaji: 'Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen' + english: 'Danganronpa 3: The End of Hope’s Peak High School - Future Arc' + native: ダンガンロンパ3 –The End of 希望ヶ峰学園– 未来編 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 11 + endDate: + year: 2016 + month: 9 + day: 26 + averageScore: 69 + nextAiringEpisode: null + - id: 21825 + idMal: 33028 + title: + romaji: 'Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen' + english: 'Danganronpa 3: The End of Hope’s Peak High School - Despair Arc' + native: ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編 + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 14 + endDate: + year: 2016 + month: 9 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 21659 + idMal: 32828 + title: + romaji: Amaama to Inazuma + english: Sweetness & Lightning + native: 甘々と稲妻 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 5 + endDate: + year: 2016 + month: 9 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 21457 + idMal: 31952 + title: + romaji: Kono Bijutsu-bu ni wa Mondai ga Aru! + english: This Art Club Has a Problem! + native: この美術部には問題がある! + synonyms: + - Konobi + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 8 + endDate: + year: 2016 + month: 9 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 21626 + idMal: 32648 + title: + romaji: Handa-kun + english: Handa-kun + native: はんだくん + synonyms: + - ฮันดะคุง + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 8 + endDate: + year: 2016 + month: 9 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 21410 + idMal: 31764 + title: + romaji: 'Nejimaki Seirei Senki: Tenkyou no Alderamin' + english: Alderamin on the Sky + native: ねじ巻き精霊戦記 天鏡のアルデラミン + synonyms: + - สงครามภูติล้างบัลลังก์ อัลเดรามินแห่งฟากฟ้า + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 9 + endDate: + year: 2016 + month: 10 + day: 1 + averageScore: 73 + nextAiringEpisode: null + - id: 21560 + idMal: 32379 + title: + romaji: Berserk + english: Berserk (2016) + native: ベルセルク + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 1 + endDate: + year: 2016 + month: 9 + day: 16 + averageScore: 55 + nextAiringEpisode: null + - id: 21221 + idMal: 30911 + title: + romaji: Tales of Zestiria the Cross + english: Tales of Zestiria the X + native: テイルズ オブ ゼスティリア ザ クロス + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 3 + endDate: + year: 2016 + month: 9 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 21688 + idMal: 32902 + title: + romaji: 'Mahoutsukai no Yome: Hoshi Matsu Hito' + english: 'The Ancient Magus'' Bride: Those Awaiting a Star' + native: 魔法使いの嫁 星待つひと + synonyms: + - 'Mahou Tsukai no Yome: Hoshi Matsu Hito' + - The Ancient Magus Bride + - The Ancient Magus' Bride + status: FINISHED + format: OVA + episodes: 3 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 8 + day: 13 + endDate: + year: 2017 + month: 9 + day: 9 + averageScore: 79 + nextAiringEpisode: null + - id: 21378 + idMal: 31845 + title: + romaji: Masou Gakuen HxH + english: Hybrid x Heart Magias Academy Ataraxia + native: 魔装学園H×H + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 6 + endDate: + year: 2016 + month: 9 + day: 21 + averageScore: 56 + nextAiringEpisode: null + - id: 21269 + idMal: 31229 + title: + romaji: SERVAMP + english: SERVAMP + native: SERVAMP + synonyms: + - サーヴァンプ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 5 + endDate: + year: 2016 + month: 9 + day: 20 + averageScore: 65 + nextAiringEpisode: null + - id: 21031 + idMal: 29758 + title: + romaji: Taboo Tattoo + english: null + native: タブー・タトゥー + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 5 + endDate: + year: 2016 + month: 9 + day: 20 + averageScore: 53 + nextAiringEpisode: null + - id: 21584 + idMal: 32526 + title: + romaji: Love Live! Sunshine!! + english: Love Live! Sunshine!! + native: ラブライブ!サンシャイン!! + synonyms: + - Love Live! School Idol Project Sunshine!! + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 2 + endDate: + year: 2016 + month: 9 + day: 24 + averageScore: 72 + nextAiringEpisode: null + - id: 21335 + idMal: 31490 + title: + romaji: 'ONE PIECE FILM: GOLD' + english: 'One Piece Film: Gold' + native: ONE PIECE FILM GOLD + synonyms: + - One Piece Film 13 + - 航海王之黄金城 + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2016 + startDate: + year: 2016 + month: 7 + day: 23 + endDate: + year: 2016 + month: 7 + day: 23 + averageScore: 77 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/28-2016-fall.yaml b/test/fixtures/anilist/season_matrix/28-2016-fall.yaml new file mode 100644 index 0000000..262bf06 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/28-2016-fall.yaml @@ -0,0 +1,660 @@ +metadata: + captured_at: '2026-05-11T11:33:33Z' + label: 2016-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2016 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:33 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '24' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21698 + idMal: 32935 + title: + romaji: 'Haikyuu!!: Karasuno Koukou VS Shiratorizawa Gakuen Koukou' + english: HAIKYU!! 3rd Season + native: ハイキュー!! 烏野高校 VS 白鳥沢学園高校 + synonyms: + - Haikyu!! Karasuno High vs Shiratorizawa Academy + - Haikyuu!! 3 + - ไฮคิว!! คู่ตบฟ้าประทาน ภาค 3 + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 8 + endDate: + year: 2016 + month: 12 + day: 10 + averageScore: 87 + nextAiringEpisode: null + - id: 21679 + idMal: 32867 + title: + romaji: Bungou Stray Dogs 2nd Season + english: Bungo Stray Dogs 2 + native: 文豪ストレイドッグス 第2シーズン + synonyms: + - Bungou Stray Dogs (2016) + - คณะประพันธกรจรจัด ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 6 + endDate: + year: 2016 + month: 12 + day: 16 + averageScore: 81 + nextAiringEpisode: null + - id: 21709 + idMal: 32995 + title: + romaji: Yuuri!!! on ICE + english: Yuri!!! on ICE + native: ユーリ!!! on ICE + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 6 + endDate: + year: 2016 + month: 12 + day: 22 + averageScore: 78 + nextAiringEpisode: null + - id: 21366 + idMal: 31646 + title: + romaji: 3-gatsu no Lion + english: March comes in like a lion + native: 3月のライオン + synonyms: + - Sangatsu no Lion + - Un marzo da leoni + - מרץ מגיע כאריה + - أسد آذار + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 8 + endDate: + year: 2017 + month: 3 + day: 18 + averageScore: 83 + nextAiringEpisode: null + - id: 21123 + idMal: 31339 + title: + romaji: DRIFTERS + english: DRIFTERS + native: DRIFTERS + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 7 + endDate: + year: 2016 + month: 12 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 21639 + idMal: 32686 + title: + romaji: Keijo!!!!!!!! + english: Keijo!!!!!!!! + native: 競女!!!!!!!! + synonyms: + - Hip Whip Girl + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 6 + endDate: + year: 2016 + month: 12 + day: 22 + averageScore: 68 + nextAiringEpisode: null + - id: 21686 + idMal: 32899 + title: + romaji: Watashi ga Motete Dousunda + english: Kiss Him, Not Me + native: 私がモテてどうすんだ + synonyms: + - 私モテ + - WatashiMote + - WataMote + - Bésalo a él, no a mí + - Aku Jadi Populer, Gimana Sih? + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 7 + endDate: + year: 2016 + month: 12 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 21051 + idMal: 30016 + title: + romaji: Nanbaka + english: NANBAKA + native: ナンバカ + synonyms: + - Nambaka + - The Numbers + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 5 + endDate: + year: 2016 + month: 12 + day: 28 + averageScore: 71 + nextAiringEpisode: null + - id: 21460 + idMal: 31988 + title: + romaji: Hibike! Euphonium 2 + english: Sound! Euphonium 2 + native: 響け!ユーフォニアム 2 + synonyms: + - Résonne ! Euphonium 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 6 + endDate: + year: 2016 + month: 12 + day: 29 + averageScore: 83 + nextAiringEpisode: null + - id: 21769 + idMal: 33161 + title: + romaji: 'Yahari Ore no Seishun Love Come wa Machigatteiru. Zoku: Kitto, Onnanoko wa Osatou to Spice to Suteki + na Nanika de Dekiteiru' + english: My Teen Romantic Comedy SNAFU TOO! OVA + native: やはり俺の青春ラブコメはまちがっている。 続 「きっと、女の子はお砂糖とスパイスと素敵な何かでできている。」 + synonyms: + - Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA + - 'やはり俺の青春ラブコメはまちがっている。 続 OVA ' + - Oregairu Zoku OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 27 + endDate: + year: 2016 + month: 10 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 97815 + idMal: 34321 + title: + romaji: 'Fate/Grand Order: First Order' + english: 'Fate/Grand Order: First Order' + native: Fate/Grand Order -First Order- + synonyms: + - 'פייט/המסדר העליון: הפקודה הראשונה' + - 'Судьба/Великий приказ: Первый приказ' + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 12 + day: 31 + endDate: + year: 2016 + month: 12 + day: 31 + averageScore: 65 + nextAiringEpisode: null + - id: 21714 + idMal: 32979 + title: + romaji: Flip Flappers + english: FLIP FLAPPERS + native: フリップフラッパーズ + synonyms: + - 轻拍翻转小魔女 + - 'Flip Flappers: Fantazja kontra świat' + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 6 + endDate: + year: 2016 + month: 12 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 15227 + idMal: 15227 + title: + romaji: Kono Sekai no Katasumi ni + english: In This Corner of the World + native: この世界の片隅に + synonyms: + - To All the Corners of the World + - En Este Rincón del Mundo + - Dans un recoin de ce monde + - Ở một góc nhân gian + - W tym zakątku świata + - In questo angolo di mondo + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 11 + day: 12 + endDate: + year: 2016 + month: 11 + day: 12 + averageScore: 81 + nextAiringEpisode: null + - id: 21799 + idMal: 33253 + title: + romaji: Ajin 2 + english: 'AJIN: Demi-Human 2' + native: 亜人 2 + synonyms: + - 'AJIN: Semihumano 2' + - อาจิน สายพันธุ์อมนุษย์ ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 8 + endDate: + year: 2016 + month: 12 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 97672 + idMal: 34103 + title: + romaji: 'Danganronpa 3: The End of Kibougamine Gakuen - Kibou-hen' + english: 'Danganronpa 3: The End of Hope''s Peak High School - Hope Arc' + native: ダンガンロンパ3-The End of 希望ヶ峰学園-希望編 + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 9 + day: 29 + endDate: + year: 2016 + month: 9 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 21660 + idMal: 32801 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru + Darou ka' + english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?' + native: ダンジョンに出会いを求めるのは間違っているだろうか ダンジョンに温泉を求めるのは 間違っているだろうか + synonyms: + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA + - Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA + - ダンまち OVA + status: FINISHED + format: OVA + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 12 + day: 7 + endDate: + year: 2016 + month: 12 + day: 7 + averageScore: 67 + nextAiringEpisode: null + - id: 21815 + idMal: 33286 + title: + romaji: Strike the Blood II + english: Strike the Blood Second + native: ストライク・ザ・ブラッド II + synonyms: + - ราชันย์โลหิตรัตติกาล ภาค 2 + status: FINISHED + format: OVA + episodes: 8 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 11 + day: 23 + endDate: + year: 2017 + month: 5 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 97716 + idMal: 34213 + title: + romaji: Getsuyoubi no Tawawa + english: Tawawa on Monday + native: 月曜日のたわわ + synonyms: + - วันจันทร์คือวันดึ๋งดึ๋ง + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 10 + endDate: + year: 2016 + month: 12 + day: 26 + averageScore: 61 + nextAiringEpisode: null + - id: 21708 + idMal: 32962 + title: + romaji: Occultic;Nine + english: Occultic;Nine + native: Occultic;Nine -オカルティック・ナイン- + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 9 + endDate: + year: 2016 + month: 12 + day: 25 + averageScore: 65 + nextAiringEpisode: null + - id: 21838 + idMal: 33433 + title: + romaji: Shuumatsu no Izetta + english: 'Izetta: The Last Witch' + native: 終末のイゼッタ + synonyms: + - Izetta, die letzte Hexe + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 1 + endDate: + year: 2016 + month: 12 + day: 17 + averageScore: 69 + nextAiringEpisode: null + - id: 21340 + idMal: 33003 + title: + romaji: Mahou Shoujo Ikusei Keikaku + english: Magical Girl Raising Project + native: 魔法少女育成計画 + synonyms: + - まほいく + - MahoIku + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 2 + endDate: + year: 2016 + month: 12 + day: 18 + averageScore: 66 + nextAiringEpisode: null + - id: 21803 + idMal: 33263 + title: + romaji: 'Kubikiri Cycle: Aoiro Savant to Zaregotozukai' + english: 'Kubikiri Cycle: The Blue Savant and the Nonsense User' + native: クビキリサイクル 青色サヴァンと戯言遣い + synonyms: + - Zaregoto Series + - Decapitation Cycle + - 'Kubikiri Cycle: Aoiro Savant to Zaregoto Tsukai' + status: FINISHED + format: OVA + episodes: 8 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 26 + endDate: + year: 2017 + month: 9 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 97669 + idMal: 34136 + title: + romaji: 'orange: Mirai' + english: 'Orange: Future' + native: orange -未来- + synonyms: + - オレンジ -未来- + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 11 + day: 18 + endDate: + year: 2016 + month: 11 + day: 18 + averageScore: 73 + nextAiringEpisode: null + - id: 21710 + idMal: 32983 + title: + romaji: Natsume Yuujinchou Go + english: Natsume's Book of Friends Season 5 + native: 夏目友人帳 伍 + synonyms: + - Natsume's Book of Friends Five + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 10 + day: 5 + endDate: + year: 2016 + month: 12 + day: 21 + averageScore: 84 + nextAiringEpisode: null + - id: 101102 + idMal: 33513 + title: + romaji: 'Ansatsu Kyoushitsu Movie: 365-Nichi no Jikan' + english: 'Assassination Classroom the Movie: 365 Days‘ Time' + native: 劇場版 暗殺教室 365日の時間 + synonyms: + - 'Assassination Classroom the Movie: 365 Days' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2016 + startDate: + year: 2016 + month: 11 + day: 19 + endDate: + year: 2016 + month: 11 + day: 19 + averageScore: 71 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/29-2017-winter.yaml b/test/fixtures/anilist/season_matrix/29-2017-winter.yaml new file mode 100644 index 0000000..3bb2ab8 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/29-2017-winter.yaml @@ -0,0 +1,659 @@ +metadata: + captured_at: '2026-05-11T11:33:36Z' + label: 2017-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2017 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:35 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '23' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21699 + idMal: 32937 + title: + romaji: Kono Subarashii Sekai ni Shukufuku wo! 2 + english: KONOSUBA -God's blessing on this wonderful world! 2 + native: この素晴らしい世界に祝福を!2 + synonyms: + - Konosuba 2 + - Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2! + - 为美好的世界献上祝福!2 + - 为美好的世界献上祝福第二季 + - ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 2 + - 'Konosuba : Une explosion dans ce monde merveilleux !' + - Да благословят боги сей расчудесный мир! 2 + - Konosuba! Un mundo maravilloso 2 + status: FINISHED + format: TV + episodes: 10 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 12 + endDate: + year: 2017 + month: 3 + day: 16 + averageScore: 81 + nextAiringEpisode: null + - id: 21776 + idMal: 33206 + title: + romaji: Kobayashi-san Chi no Maidragon + english: Miss Kobayashi's Dragon Maid + native: 小林さんちのメイドラゴン + synonyms: + - Kobayashi-san Chi no Maid Dragon + - 小林家的龙女仆 + - น้องเมดมังกรของคุณโคบายาชิ + - Дракониха-горничная госпожи Кобаяси + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 12 + endDate: + year: 2017 + month: 4 + day: 6 + averageScore: 78 + nextAiringEpisode: null + - id: 21613 + idMal: 32615 + title: + romaji: Youjo Senki + english: Saga of Tanya the Evil + native: 幼女戦記 + synonyms: + - 幼女战记 + - Колдунья в погонах + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 6 + endDate: + year: 2017 + month: 3 + day: 31 + averageScore: 78 + nextAiringEpisode: null + - id: 21857 + idMal: 33487 + title: + romaji: Masamune-kun no Revenge + english: Masamune-kun's Revenge + native: 政宗くんのリベンジ + synonyms: + - การแก้แค้นของมาซามุเนะคุง + - Месть Масамунэ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 5 + endDate: + year: 2017 + month: 3 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 21403 + idMal: 31765 + title: + romaji: 'Sword Art Online: Ordinal Scale' + english: 'Sword Art Online the Movie: Ordinal Scale' + native: ソードアート・オンライン -オーディナル・スケール- + synonyms: + - SAO THE MOVIE + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 2 + day: 18 + endDate: + year: 2017 + month: 2 + day: 18 + averageScore: 74 + nextAiringEpisode: null + - id: 21701 + idMal: 32949 + title: + romaji: Kuzu no Honkai + english: Scum's Wish + native: クズの本懐 + synonyms: + - Desejos Proibidos + - El deseo de la escoria + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 13 + endDate: + year: 2017 + month: 3 + day: 31 + averageScore: 68 + nextAiringEpisode: null + - id: 21861 + idMal: 33506 + title: + romaji: 'Ao no Exorcist: Kyoto Fujouou-hen' + english: 'Blue Exorcist: Kyoto Saga' + native: 青の祓魔師 京都不浄王篇 + synonyms: + - 'Blue Exorcist: Kyoto Impure King Arc' + - Blue Exorcist Season 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 7 + endDate: + year: 2017 + month: 3 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 21858 + idMal: 33489 + title: + romaji: Little Witch Academia (TV) + english: Little Witch Academia (TV) + native: リトルウィッチアカデミア (TV) + synonyms: + - LWA (TV) + - 小魔女学园 + - Det lille hekseakademiet + - האקדמיה למכשפות קטנות + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 9 + endDate: + year: 2017 + month: 6 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 21400 + idMal: 31758 + title: + romaji: 'Kizumonogatari III: Reiketsu-hen' + english: 'Kizumonogatari Part 3: Reiketsu' + native: 傷物語〈Ⅲ冷血篇〉 + synonyms: + - 'Wound Tale 3: Cold Blood' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 6 + endDate: + year: 2017 + month: 1 + day: 6 + averageScore: 87 + nextAiringEpisode: null + - id: 21878 + idMal: 33731 + title: + romaji: Gabriel Dropout + english: Gabriel DropOut + native: ガヴリールドロップアウト + synonyms: + - GabDro + - 珈百璃的堕落 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 9 + endDate: + year: 2017 + month: 3 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 97592 + idMal: 33988 + title: + romaji: Demi-chan wa Kataritai + english: Interviews with Monster Girls + native: 亜人ちゃんは語りたい + synonyms: + - Entrevistas con chicas monstruo + - Interviews mit Monster-Mädchen + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 8 + endDate: + year: 2017 + month: 3 + day: 26 + averageScore: 74 + nextAiringEpisode: null + - id: 97889 + idMal: 34096 + title: + romaji: Gintama. + english: Gintama Season 4 + native: 銀魂。 + synonyms: + - Gintama. (2017) + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 9 + endDate: + year: 2017 + month: 3 + day: 27 + averageScore: 88 + nextAiringEpisode: null + - id: 21887 + idMal: 33743 + title: + romaji: Fuuka + english: Fuuka + native: 風夏 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 6 + endDate: + year: 2017 + month: 3 + day: 24 + averageScore: 61 + nextAiringEpisode: null + - id: 97730 + idMal: 33836 + title: + romaji: Seiren + english: Seiren + native: セイレン + synonyms: + - Divina Juventud + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 6 + endDate: + year: 2017 + month: 3 + day: 24 + averageScore: 59 + nextAiringEpisode: null + - id: 21733 + idMal: 33095 + title: + romaji: 'Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen' + english: 'Descending Stories: Showa Genroku Rakugo Shinju' + native: 昭和元禄落語心中~助六再び篇~ + synonyms: + - Le Rakugo ou la vie 2 + - Shouwa Genroku Rakugo Shinjuu 2nd Season + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 7 + endDate: + year: 2017 + month: 3 + day: 25 + averageScore: 86 + nextAiringEpisode: null + - id: 21823 + idMal: 33337 + title: + romaji: 'ACCA: 13-ku Kansatsu-ka' + english: 'ACCA: 13-Territory Inspection Dept.' + native: ACCA 13区監察課 + synonyms: + - 'ACCA: Jusan-ku Kansatsu-ka' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 10 + endDate: + year: 2017 + month: 3 + day: 28 + averageScore: 75 + nextAiringEpisode: null + - id: 21425 + idMal: 31812 + title: + romaji: 'Kuroshitsuji: Book of the Atlantic' + english: 'Black Butler: Book of the Atlantic' + native: 黒執事 Book of the Atlantic + synonyms: + - Kuroshitsuji + - Black Butler + - Book of Atlantic + - 'คนลึกไขปริศนาลับ: Book of the Atlantic' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 21 + endDate: + year: 2017 + month: 1 + day: 21 + averageScore: 81 + nextAiringEpisode: null + - id: 21874 + idMal: 33581 + title: + romaji: Trinity Seven Movie - Yuukyuu Toshokan to Renkinjutsu Shoujo + english: 'Trinity Seven: Eternal Library & Alchemic Girl' + native: 劇場版 トリニティセブン -悠久図書館と錬金術少女- + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 2 + day: 25 + endDate: + year: 2017 + month: 2 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 97857 + idMal: 34392 + title: + romaji: One Room + english: OneRoom + native: One Room + synonyms: + - ワンルーム + - В одной комнате + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 11 + endDate: + year: 2017 + month: 3 + day: 29 + averageScore: 52 + nextAiringEpisode: null + - id: 87435 + idMal: 33573 + title: + romaji: BanG Dream! + english: BanG Dream! + native: BanG Dream!(バンドリ!) + synonyms: + - Bandori + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 21 + endDate: + year: 2017 + month: 4 + day: 22 + averageScore: 68 + nextAiringEpisode: null + - id: 21696 + idMal: 32924 + title: + romaji: Urara Meirochou + english: Urara Meirocho + native: うらら迷路帖 + synonyms: + - Adivina como puedas + - 우라라 미로첩 + - uramei + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 6 + endDate: + year: 2017 + month: 3 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 97645 + idMal: 34086 + title: + romaji: Tales of Zestiria the Cross 2 + english: Tales of Zestiria the X Season 2 + native: テイルズ オブ ゼスティリア ザ クロス 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 8 + endDate: + year: 2017 + month: 4 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 97636 + idMal: 34051 + title: + romaji: 'Akiba''s Trip: The Animation' + english: Akiba's Trip the Animation + native: Akiba's Trip -The Animation- + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 4 + endDate: + year: 2017 + month: 3 + day: 29 + averageScore: 61 + nextAiringEpisode: null + - id: 97875 + idMal: 34414 + title: + romaji: Nanbaka 2 + english: NANBAKA - Part Two + native: ナンバカ 2 + synonyms: + - Nambaka 2 + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 4 + endDate: + year: 2017 + month: 3 + day: 22 + averageScore: 73 + nextAiringEpisode: null + - id: 98153 + idMal: 34152 + title: + romaji: Super Danganronpa 2.5 Komaeda Nagito to Sekai no Hakaimono + english: null + native: スーパーダンガンロンパ2.5 狛枝凪斗と世界の破壊者 + synonyms: + - 'Super Danganronpa 2.5: Nagito Komaeda and the Destroyer of the World' + - 'Super Danganronpa 2.5: Nagito Komaeda and the World Destroyer' + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2017 + startDate: + year: 2017 + month: 1 + day: 12 + endDate: + year: 2017 + month: 1 + day: 12 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/30-2017-spring.yaml b/test/fixtures/anilist/season_matrix/30-2017-spring.yaml new file mode 100644 index 0000000..2c668f7 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/30-2017-spring.yaml @@ -0,0 +1,681 @@ +metadata: + captured_at: '2026-05-11T11:33:38Z' + label: 2017-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2017 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:38 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '22' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 20958 + idMal: 25777 + title: + romaji: Shingeki no Kyojin Season 2 + english: Attack on Titan Season 2 + native: 進撃の巨人 Season2 + synonyms: + - SnK 2 + - AoT 2 + - +מתקפת הטיטאנים עונה 2 + - L'Attacco dei Giganti 2 + - L'Attacco dei Giganti - Seconda Stagione + - ผ่าพิภพไททัน ภาค 2 + - حمله به تایتان فصل 2 + - Атака титанов 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 1 + endDate: + year: 2017 + month: 6 + day: 17 + averageScore: 85 + nextAiringEpisode: null + - id: 21856 + idMal: 33486 + title: + romaji: Boku no Hero Academia 2 + english: My Hero Academia Season 2 + native: 僕のヒーローアカデミア2 + synonyms: + - BNHA 2 + - MHA 2 + - 나의 히어로 아카데미아 2기 + - 나히아 2기 + - 我的英雄学院 2 + - 我的英雄学院第二季 + - มายฮีโร่ อคาเดเมีย ภาค 2 + - أكاديميتي للأبطال2 + - Моя геройская академия 2 + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 1 + endDate: + year: 2017 + month: 9 + day: 30 + averageScore: 80 + nextAiringEpisode: null + - id: 97938 + idMal: 34566 + title: + romaji: 'BORUTO: NARUTO NEXT GENERATIONS' + english: 'Boruto: Naruto Next Generations' + native: BORUTO-ボルト- NARUTO NEXT GENERATIONS + synonyms: + - 博人传 火影忍者新时代 + - 'โบรูโตะ: นารูโตะ เน็กซ์ เจนเนเรชั่น' + - 'بوروتو: الأجيال القادمة من ناروتو' + status: FINISHED + format: TV + episodes: 293 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 5 + endDate: + year: 2023 + month: 3 + day: 26 + averageScore: 57 + nextAiringEpisode: null + - id: 21700 + idMal: 32951 + title: + romaji: Rokudenashi Majutsu Koushi to Akashic Records + english: Akashic Records of Bastard Magic Instructor + native: ロクでなし魔術講師と禁忌教典(アカシックレコード) + synonyms: + - RokuAka + - 'อาจารย์เวทมนตร์ไม่เอาไหนกับตำนานปราสาทลอยฟ้า ' + - 不正經的魔術講師與禁忌教典 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 4 + endDate: + year: 2017 + month: 6 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 21685 + idMal: 32901 + title: + romaji: Eromanga Sensei + english: Eromanga Sensei + native: エロマンガ先生 + synonyms: + - Ero Manga Sensei + - 情色漫画老师 + - น้องสาวของผมคืออาจารย์เอโรมังงะ + - 埃罗芒阿老师 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 9 + endDate: + year: 2017 + month: 6 + day: 25 + averageScore: 60 + nextAiringEpisode: null + - id: 98202 + idMal: 34822 + title: + romaji: Tsuki ga Kirei + english: Tsukigakirei + native: 月がきれい + synonyms: + - as the moon, so beautiful. + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 7 + endDate: + year: 2017 + month: 6 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 97980 + idMal: 34561 + title: + romaji: Re:CREATORS + english: Re:CREATORS + native: Re:CREATORS + synonyms: + - レクリエイターズ + - Re:CRIADORES + status: FINISHED + format: TV + episodes: 22 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 8 + endDate: + year: 2017 + month: 9 + day: 16 + averageScore: 73 + nextAiringEpisode: null + - id: 21860 + idMal: 33502 + title: + romaji: Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka? + english: 'WorldEnd: What are you doing at the end of the world? Are you busy? Will you save us?' + native: 終末なにしてますか? 忙しいですか? 救ってもらっていいですか? + synonyms: + - Do you have what THE END? Are you busy? Shall you save xxx? + - Sukasuka + - 末日时在做什么?有没有空?可以来拯救吗? + - 'WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?' + - Apa yang Engkau Lakukan Saat Akhir Dunia? Apakah Engkau Sibuk? Bisakah Engkau Menolongku? + - 'เวิลด์เอนด์: วันสิ้นโลกนี้ทำอะไร ยุ่งหรือเปล่า มาช่วยเราได้ไหม' + - Конец человечества. Что ты будешь делать после того, как людей не стало? + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 11 + endDate: + year: 2017 + month: 6 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 21180 + idMal: 30727 + title: + romaji: Saenai Heroine no Sodatekata ♭ + english: 'Saekano: How to Raise a Boring Girlfriend ♭' + native: 冴えない彼女の育てかた ♭ + synonyms: + - Saekano 2 + - Saekano ♭ + - Saekano Flat + - Saenai Heroine no Sodatekata 2 + - Saenai Heroine no Sodatekata Flat + - วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม ภาค 2 + - 'Saekano: How to Raise a Boring Girlfriend Flat' + - Saekano Cómo criar a una novia aburrida + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 6 + endDate: + year: 2017 + month: 6 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 21851 + idMal: 33475 + title: + romaji: Busou Shoujo Machiavellianism + english: Armed Girl's Machiavellism + native: 武装少女マキャヴェリズム + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 5 + endDate: + year: 2017 + month: 6 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 21676 + idMal: 32887 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria' + english: 'Sword Oratoria: Is it Wrong to Try to Pick Up Girls in a Dungeon? On the Side' + native: ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア + synonyms: + - 'Is It Wrong to Hope to Meet a Girl in a Dungeon? On the Side: Sword Oratoria' + - Danmachi Sword Oratoria + - ¿Qué tiene de malo ligar en una mazmorra? Sword Oratoria + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 15 + endDate: + year: 2017 + month: 7 + day: 1 + averageScore: 68 + nextAiringEpisode: null + - id: 21517 + idMal: 32262 + title: + romaji: Renai Boukun + english: Love Tyrant + native: 恋愛暴君 + synonyms: + - The very lovely tyrant of love♥ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 7 + endDate: + year: 2017 + month: 6 + day: 23 + averageScore: 63 + nextAiringEpisode: null + - id: 21377 + idMal: 31658 + title: + romaji: 'Kuroko no Basket: Last Game' + english: 'Kuroko''s Basketball: Last Game' + native: 劇場版 黒子のバスケ Last Game + synonyms: + - 'Kuroko no Basket: EXTRA GAME' + - 'Το Μπάσκετ του Κουρόκο: Το Τελευταίο Παιχνίδι' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 3 + day: 18 + endDate: + year: 2017 + month: 3 + day: 18 + averageScore: 79 + nextAiringEpisode: null + - id: 97682 + idMal: 34176 + title: + romaji: Zero kara Hajimeru Mahou no Sho + english: Grimoire of Zero + native: ゼロから始める魔法の書 + synonyms: + - ปฐมมนตรา ตำราพลิกโลก + - Grymuar Zero + - El mágico libro de Zero + - 从零开始的魔法书 + - 제로부터 시작하는 마법의 서 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 10 + endDate: + year: 2017 + month: 6 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 87486 + idMal: 33929 + title: + romaji: 'Boku no Hero Academia: Sukue! Kyuujo Kunren!' + english: null + native: 僕のヒーローアカデミア救え!救助訓練! + synonyms: + - 'Boku no Hero Academia: Jump Festa 2016 Special' + - 'My Hero Academia: Rescue! Rescue Training' + - 'My Hero Academia: Save! Rescue Training' + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 4 + endDate: + year: 2017 + month: 4 + day: 4 + averageScore: 70 + nextAiringEpisode: null + - id: 97625 + idMal: 34019 + title: + romaji: Tsugumomo + english: Tsugumomo + native: つぐもも + synonyms: + - สึกุโมโมะ ภูตสาวแสบดุ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 2 + endDate: + year: 2017 + month: 6 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 98702 + idMal: 34480 + title: + romaji: 'Shokugeki no Souma: Ni no Sara OVA' + english: Food Wars! The Second Plate OVA + native: 食戟のソーマ 弍ノ皿 OVA + synonyms: + - 'Food Wars! The Second Plate: A Fateful Encounter Under the Autumn Moon' + - 'Food Wars! The Second Plate: The Totsuki Elite Ten' + - ยอดนักปรุงโซมะ ภาค 2 OVA + status: FINISHED + format: OVA + episodes: 2 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 5 + day: 1 + endDate: + year: 2017 + month: 7 + day: 4 + averageScore: 73 + nextAiringEpisode: null + - id: 21184 + idMal: 30736 + title: + romaji: 'Shingeki no Bahamut: VIRGIN SOUL' + english: 'Rage of Bahamut: Virgin Soul' + native: 神撃のバハムート VIRGIN SOUL + synonyms: + - BahaSoul + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 8 + endDate: + year: 2017 + month: 9 + day: 30 + averageScore: 71 + nextAiringEpisode: null + - id: 21684 + idMal: 32900 + title: + romaji: 'Mahouka Koukou no Rettousei: Hoshi wo Yobu Shoujo' + english: 'The Irregular at Magic High School The Movie: The Girl Who Summons the Stars' + native: 劇場版 魔法科高校の劣等生 星を呼ぶ少女 + synonyms: + - พี่น้องปริศนาโรงเรียนมหาเวท เดอะมูฟวี่ + - 'Непутёвый ученик в школе магии: Взывающая к звёздам' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 6 + day: 17 + endDate: + year: 2017 + month: 6 + day: 17 + averageScore: 72 + nextAiringEpisode: null + - id: 97917 + idMal: 34537 + title: + romaji: Yoru wa Mijikashi Arukeyo Otome + english: The Night is Short, Walk on Girl + native: 夜は短し歩けよ乙女 + synonyms: + - 春宵苦短,少女前进吧! + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 7 + endDate: + year: 2017 + month: 4 + day: 7 + averageScore: 81 + nextAiringEpisode: null + - id: 97903 + idMal: 34494 + title: + romaji: Sakura Quest + english: Sakura Quest + native: サクラクエスト + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 6 + endDate: + year: 2017 + month: 9 + day: 21 + averageScore: 75 + nextAiringEpisode: null + - id: 21361 + idMal: 31629 + title: + romaji: GRANBLUE FANTASY The Animation + english: 'Granblue Fantasy: The Animation' + native: GRANBLUE FANTASY The Animation + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 2 + endDate: + year: 2017 + month: 6 + day: 25 + averageScore: 64 + nextAiringEpisode: null + - id: 21191 + idMal: 30778 + title: + romaji: 'FAIRY TAIL: DRAGON CRY' + english: 'Fairy Tail: Dragon Cry' + native: 劇場版 FAIRY TAIL -DRAGON CRY- + synonyms: + - 'Fairy Tail Movie 2: Dragon Cry' + - 'Fairy Tail the Movie: Dragon Cry' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 5 + day: 6 + endDate: + year: 2017 + month: 5 + day: 6 + averageScore: 74 + nextAiringEpisode: null + - id: 20705 + idMal: 33834 + title: + romaji: 'sin: Nanatsu no Taizai' + english: Seven Mortal Sins + native: sin 七つの大罪 + synonyms: + - 'Sin: The 7 Deadly Sins' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 15 + endDate: + year: 2017 + month: 7 + day: 29 + averageScore: 52 + nextAiringEpisode: null + - id: 97643 + idMal: 34055 + title: + romaji: Berserk 2 + english: Berserk 2 + native: ベルセルク 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2017 + startDate: + year: 2017 + month: 4 + day: 7 + endDate: + year: 2017 + month: 6 + day: 23 + averageScore: 60 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/31-2017-summer.yaml b/test/fixtures/anilist/season_matrix/31-2017-summer.yaml new file mode 100644 index 0000000..2d8eaec --- /dev/null +++ b/test/fixtures/anilist/season_matrix/31-2017-summer.yaml @@ -0,0 +1,677 @@ +metadata: + captured_at: '2026-05-11T11:33:41Z' + label: 2017-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2017 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:41 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '21' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 98314 + idMal: 34933 + title: + romaji: Kakegurui + english: Kakegurui + native: 賭ケグルイ + synonyms: + - Kakegurui - Compulsive Gambler + - 'Kakegurui: Das Leben ist ein Spiel' + - Gambling School + - 'โคตรเซียนโรงเรียนพนัน ' + - Безумный Азарт + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 1 + endDate: + year: 2017 + month: 9 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 98659 + idMal: 35507 + title: + romaji: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e + english: Classroom of the Elite + native: ようこそ実力至上主義の教室へ + synonyms: + - Youjitsu + - You-Zitsu + - ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน + - Cote + - 歡迎來到實力至上主義的教室 + - Добро пожаловать в класс для особо одарённых + - فصل النخبة + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 12 + endDate: + year: 2017 + month: 9 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 97986 + idMal: 34599 + title: + romaji: Made in Abyss + english: Made in Abyss + native: メイドインアビス + synonyms: + - صنع في الهاوية + - Созданный в Бездне + - ผ่าเหวนรก + - นักบุกเบิกหลุมยักษ์ + - Đến từ Abyss + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 7 + endDate: + year: 2017 + month: 9 + day: 29 + averageScore: 85 + nextAiringEpisode: null + - id: 21875 + idMal: 33674 + title: + romaji: No Game No Life Zero + english: No Game, No Life Zero + native: ノーゲーム・ノーライフ ゼロ + synonyms: + - NO GAME NO LIFE Movie + - 游戏人生 零 + - โนเกม โนไลฟ์ เดอะมูฟวี่ + - โนเกม โนไลฟ์ ซีโร่ + - NGNL Zero + - ノゲノラ ゼロ + - nogenora 0 + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 15 + endDate: + year: 2017 + month: 7 + day: 15 + averageScore: 80 + nextAiringEpisode: null + - id: 98291 + idMal: 34902 + title: + romaji: Tsurezure Children + english: Tsuredure Children + native: 徒然チルドレン + synonyms: + - Tsure x dure children + - Признания + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 4 + endDate: + year: 2017 + month: 9 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 97766 + idMal: 34280 + title: + romaji: Gamers! + english: GAMERS! + native: ゲーマーズ! + synonyms: + - Gamers! Amano Keita to Seishun Continue + - Gamers! Keita Amano and youth continue + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 13 + endDate: + year: 2017 + month: 9 + day: 28 + averageScore: 65 + nextAiringEpisode: null + - id: 98491 + idMal: 35203 + title: + romaji: Isekai wa Smartphone to Tomo ni. + english: In Another World With My Smartphone + native: 異世界はスマートフォンとともに。 + synonyms: + - IseSuma + - 'ไปต่างโลก! ก็ต้องไปกับสมาร์ทโฟนสิ!!! ' + - 帶著智慧型手機闖蕩異世界。 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 11 + endDate: + year: 2017 + month: 9 + day: 26 + averageScore: 57 + nextAiringEpisode: null + - id: 97863 + idMal: 34403 + title: + romaji: Hajimete no Gal + english: My First Girlfriend is a Gal + native: はじめてのギャル + synonyms: + - Hajimete no Gyaru + - First-Time Gal + - My First Gal + - แฟนผมเป็นสาวแกล + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 12 + endDate: + year: 2017 + month: 9 + day: 13 + averageScore: 59 + nextAiringEpisode: null + - id: 98035 + idMal: 34662 + title: + romaji: Fate/Apocrypha + english: Fate/Apocrypha + native: Fate/Apocrypha + synonyms: + - פייט/אפוקריפה + - Судьба/Апокриф + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 2 + endDate: + year: 2017 + month: 12 + day: 31 + averageScore: 69 + nextAiringEpisode: null + - id: 98251 + idMal: 34881 + title: + romaji: Aho-Girl + english: AHO-GIRL + native: アホガール + synonyms: + - 'Ahogaru: Clueless Girl' + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 4 + endDate: + year: 2017 + month: 9 + day: 19 + averageScore: 64 + nextAiringEpisode: null + - id: 21745 + idMal: 35247 + title: + romaji: Owarimonogatari (Ge) + english: Owarimonogatari Second Season + native: 終物語(下) + synonyms: + - Owarimonogatari 2 + - End Tale + status: FINISHED + format: TV + episodes: 7 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 8 + day: 12 + endDate: + year: 2017 + month: 8 + day: 13 + averageScore: 89 + nextAiringEpisode: null + - id: 98320 + idMal: 34934 + title: + romaji: Koi to Uso + english: LOVE and LIES + native: 恋と嘘 + synonyms: + - Love & Lies + - จะรักหรือจะหลอก + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 4 + endDate: + year: 2017 + month: 9 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 97996 + idMal: 34626 + title: + romaji: 'Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!' + english: 'KONOSUBA -God''s blessing on this wonderful world! 2: God''s Blessings on These Wonderful Works of Art!' + native: この素晴らしい世界に祝福を! 2 この素晴らしい芸術に祝福を! + synonyms: + - Konosuba 2 OVA + - 'Konosuba! - As Bençãos de Deus Neste Mundo Maravilhoso 2!: As Bençãos de Deus Nestas Obras de Arte Maravilhosas!' + - 'Konosuba ¡Bendito sea este mundo maravilloso!: ¡Benditas sean estas maravillosas obras de arte!' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 24 + endDate: + year: 2017 + month: 7 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 98005 + idMal: 34636 + title: + romaji: Ballroom e Youkoso + english: Welcome to the Ballroom + native: ボールルームへようこそ + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 9 + endDate: + year: 2017 + month: 12 + day: 17 + averageScore: 79 + nextAiringEpisode: null + - id: 97617 + idMal: 34012 + title: + romaji: Isekai Shokudou + english: Restaurant to Another World + native: 異世界食堂 + synonyms: + - 异世界食堂 + - ' ร้านอาหารต่างโลก' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 4 + endDate: + year: 2017 + month: 9 + day: 19 + averageScore: 72 + nextAiringEpisode: null + - id: 98580 + idMal: 35363 + title: + romaji: 'Kobayashi-san Chi no Maidragon: Valentine, Soshite Onsen! (Amari Kitai Shinaide Kudasai)' + english: 'Miss Kobayashi''s Dragon Maid: Valentines and Hot Springs! (Please Don''t Get Your Hopes Up)' + native: 小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください) + synonyms: + - Miss Kobayashi's Dragon Maid Episode 14 + - 'Kobayashi-san Chi no Maid Dragon Episode 14 ' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 9 + day: 20 + endDate: + year: 2017 + month: 9 + day: 20 + averageScore: 76 + nextAiringEpisode: null + - id: 98292 + idMal: 34914 + title: + romaji: NEW GAME!! + english: NEW GAME!! + native: NEW GAME!! + synonyms: + - Новая игра!! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 11 + endDate: + year: 2017 + month: 9 + day: 26 + averageScore: 76 + nextAiringEpisode: null + - id: 97908 + idMal: 34498 + title: + romaji: Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka? + english: Fireworks + native: 打ち上げ花火、下から見るか?横から見るか? + synonyms: + - ' Should We See It from the Side or the Bottom?' + - 升起的烟花,从下面看?还是从侧面看? + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 8 + day: 18 + endDate: + year: 2017 + month: 8 + day: 18 + averageScore: 59 + nextAiringEpisode: null + - id: 98505 + idMal: 35240 + title: + romaji: Princess Principal + english: Princess Principal + native: プリンセス・プリンシパル + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 9 + endDate: + year: 2017 + month: 9 + day: 24 + averageScore: 75 + nextAiringEpisode: null + - id: 97663 + idMal: 34104 + title: + romaji: Knight's & Magic + english: Knight's & Magic + native: ナイツ&マジック + synonyms: + - Knight's and Magic + - Naitsuma + - ไนท์ & แมจิก + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 2 + endDate: + year: 2017 + month: 9 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 98205 + idMal: 34825 + title: + romaji: Keppeki Danshi! Aoyama-kun + english: Clean Freak! Aoyama kun + native: 潔癖男子! 青山くん + synonyms: + - Cleanliness Boy! Aoyama-kun + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 3 + endDate: + year: 2017 + month: 9 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 21778 + idMal: 33191 + title: + romaji: Kishibe Rohan wa Ugokanai + english: Thus Spoke Rohan Kishibe + native: 岸辺露伴は動かない + synonyms: + - Thus Spoke Kishibe Rohan + - Assim Falava Kishibe Rohan + - Así habló Kishibe Rohan + - على لسان كيشيبي روهان + - Αυτά Είπε ο Ρόχαν Κίσιμπε + status: FINISHED + format: OVA + episodes: 4 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 9 + day: 20 + endDate: + year: 2020 + month: 3 + day: 25 + averageScore: 76 + nextAiringEpisode: null + - id: 21791 + idMal: 33071 + title: + romaji: 'Bungou Stray Dogs: Hitori Ayumu' + english: 'Bungo Stray Dogs 2: Walking Alone' + native: 文豪ストレイドッグス 『独り歩む』; + synonyms: + - Bungou Stray Dogs 2 OVA + - 'Bungou Stray Dogs 2: Episode 13' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 8 + day: 4 + endDate: + year: 2017 + month: 8 + day: 4 + averageScore: 76 + nextAiringEpisode: null + - id: 87494 + idMal: 33654 + title: + romaji: Hitorijime My Hero + english: Hitorijime My Hero + native: ひとりじめマイヒーロー + synonyms: + - My Very Own Hero + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 8 + endDate: + year: 2017 + month: 9 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 97833 + idMal: 34383 + title: + romaji: 'Netsuzou Trap: NTR' + english: Netsuzou Trap -NTR- + native: 捏造トラップ―NTR― + synonyms: + - Netsuzou TRap + - กลรักกับดักลวง NTR + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2017 + startDate: + year: 2017 + month: 7 + day: 5 + endDate: + year: 2017 + month: 9 + day: 20 + averageScore: 48 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/32-2017-fall.yaml b/test/fixtures/anilist/season_matrix/32-2017-fall.yaml new file mode 100644 index 0000000..9feb776 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/32-2017-fall.yaml @@ -0,0 +1,676 @@ +metadata: + captured_at: '2026-05-11T11:33:44Z' + label: 2017-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2017 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:43 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '20' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 97940 + idMal: 34572 + title: + romaji: Black Clover + english: Black Clover + native: ブラッククローバー + synonyms: + - תלתן שחור + - แบล็กโคลเวอร์ + - Чёрный клевер + status: FINISHED + format: TV + episodes: 170 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 3 + endDate: + year: 2021 + month: 3 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 98436 + idMal: 35062 + title: + romaji: Mahoutsukai no Yome + english: The Ancient Magus' Bride + native: 魔法使いの嫁 + synonyms: + - Mahou Tsukai no Yome + - Mahoyome + - Невеста чародея + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 8 + endDate: + year: 2018 + month: 3 + day: 25 + averageScore: 78 + nextAiringEpisode: null + - id: 99255 + idMal: 35788 + title: + romaji: 'Shokugeki no Souma: San no Sara' + english: Food Wars! The Third Plate + native: 食戟のソーマ 餐ノ皿 + synonyms: + - 食戟之灵 餐之皿 + - ยอดนักปรุงโซมะ ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 4 + endDate: + year: 2017 + month: 12 + day: 20 + averageScore: 78 + nextAiringEpisode: null + - id: 97994 + idMal: 34618 + title: + romaji: Blend S + english: BLEND-S + native: ブレンド・S + synonyms: + - 調教咖啡廳 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 8 + endDate: + year: 2017 + month: 12 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 97922 + idMal: 34542 + title: + romaji: Inuyashiki + english: INUYASHIKI LAST HERO + native: いぬやしき + synonyms: + - اینو یاشیکی + - อินุยาชิกิ + - 犬屋敷 + - 犬舍 + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 13 + endDate: + year: 2017 + month: 12 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 98707 + idMal: 35557 + title: + romaji: Houseki no Kuni + english: Land of the Lustrous + native: 宝石の国 + synonyms: + - L'Ère des Cristaux + - Das Land der Juwelen + - Страна самоцветов + - Vương Quốc Bảo Thạch + - ดินแดนอัญมณี + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 7 + endDate: + year: 2017 + month: 12 + day: 23 + averageScore: 83 + nextAiringEpisode: null + - id: 20791 + idMal: 25537 + title: + romaji: Fate/stay night [Heaven's Feel] I. presage flower + english: Fate/stay night [Heaven's Feel] I. presage flower + native: Fate/stay night[Heaven's Feel] Ⅰ.presage flower + synonyms: + - Fate/HF + - 'Судьба/Ночь схватки: Прикосновение небес' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 14 + endDate: + year: 2017 + month: 10 + day: 14 + averageScore: 80 + nextAiringEpisode: null + - id: 99726 + idMal: 36038 + title: + romaji: Net-juu no Susume + english: Recovery of an MMO Junkie + native: ネト充のススメ + synonyms: + - Neto-juu no Susume + - Netojuu no Susume + - Recommendation of the Wonderful Virtual Life + - Recommendation of The Internet Enhancement + - Netoju + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 6 + endDate: + year: 2017 + month: 12 + day: 8 + averageScore: 73 + nextAiringEpisode: null + - id: 99420 + idMal: 35838 + title: + romaji: Shoujo Shuumatsu Ryokou + english: Girls' Last Tour + native: 少女終末旅行 + synonyms: + - '少女终末旅行 ' + - GLT + - Wisata Gadis di Akhir Hayat + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 6 + endDate: + year: 2017 + month: 12 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 98478 + idMal: 35180 + title: + romaji: 3-gatsu no Lion 2nd Season + english: March comes in like a lion Season 2 + native: 3月のライオン 第2シリーズ + synonyms: + - Sangatsu no Lion 2 + - מרץ מגיע כאריה 2 + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 14 + endDate: + year: 2018 + month: 3 + day: 31 + averageScore: 89 + nextAiringEpisode: null + - id: 97886 + idMal: 34451 + title: + romaji: Kekkai Sensen & BEYOND + english: Blood Blockade Battlefront & Beyond + native: 血界戦線 & BEYOND + synonyms: + - Bloodline Battlefront & Beyond + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 8 + endDate: + year: 2017 + month: 12 + day: 24 + averageScore: 77 + nextAiringEpisode: null + - id: 98596 + idMal: 35413 + title: + romaji: Imouto sae Ireba Ii. + english: A Sister's All You Need. + native: 妹さえいればいい。 + synonyms: + - Imoto sae Ireba Ii. + - A Sister's All You Need + - It'd be Good if Only Little Sister Was Here + - Imosae + - Imoutosae + - Imotosae + - 如果有妹妹就好了。 + - คงจะดี ถ้ามีน้องสาวสักคน + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 8 + endDate: + year: 2017 + month: 12 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 99634 + idMal: 36106 + title: + romaji: 'Shingeki no Kyojin: LOST GIRLS' + english: 'Attack on Titan: Lost Girls' + native: 進撃の巨人 LOST GIRLS + synonyms: + - 'Episode 16.5A: Wall Sina. Goodbye' + - 'Episode 16.5B: Wall Sina. Goodbye' + - SnK + - AoT + - ผ่าพิภพไททัน OAD + - ผ่าพิภพไททัน ภาค OAD Lost Girls + - 'Атака титанов: Потерянные девушки' + status: FINISHED + format: OVA + episodes: 3 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 12 + day: 8 + endDate: + year: 2018 + month: 8 + day: 9 + averageScore: 77 + nextAiringEpisode: null + - id: 98820 + idMal: 35639 + title: + romaji: Just Because! + english: Just Because! + native: Just Because! + synonyms: + - ジャストビコーズ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 5 + endDate: + year: 2017 + month: 12 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 98443 + idMal: 35076 + title: + romaji: Juuni Taisen + english: JUNI TAISEN:ZODIAC WAR + native: 十二大戦 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 3 + endDate: + year: 2017 + month: 12 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 98951 + idMal: 35712 + title: + romaji: Boku no Kanojo ga Majime Sugiru Shoujo Bitch na Ken + english: My Girlfriend is Shobitch + native: 僕の彼女がマジメ過ぎる処女ビッチな件 + synonyms: + - My Girlfriend Is a Virgin Who Takes Being Slutty Too Seriously + - My girlfriend is faithful virgin bitch + - This girlfriend is too much to handle! + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 12 + endDate: + year: 2017 + month: 12 + day: 14 + averageScore: 58 + nextAiringEpisode: null + - id: 98449 + idMal: 34712 + title: + romaji: Kujira no Kora wa Sajou ni Utau + english: Children of the Whales + native: クジラの子らは砂上に歌う + synonyms: + - KujiSuna + - Die Walkinder + - Hijos de las Ballenas + - أبناء الحيتان + - ลำนำของเหล่าลูกปลาวาฬ + - Kujira no Kora - Filhos das Baleias + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 8 + endDate: + year: 2017 + month: 12 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 98572 + idMal: 35376 + title: + romaji: Himouto! Umaru-chan R + english: Himouto! Umaru-chan R + native: 干物妹! うまるちゃん R + synonyms: + - Himouto! Umaru-chan Season 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 9 + endDate: + year: 2017 + month: 12 + day: 25 + averageScore: 71 + nextAiringEpisode: null + - id: 98977 + idMal: 36220 + title: + romaji: Itsudatte Bokura no Koi wa 10 cm Datta. + english: Our love has always been 10 centimeters apart. + native: いつだって僕らの恋は10センチだった。 + synonyms: [] + status: FINISHED + format: TV + episodes: 6 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 11 + day: 25 + endDate: + year: 2017 + month: 12 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 99698 + idMal: 36027 + title: + romaji: Ousama Game The Animation + english: King's Game + native: 王様ゲーム The Animation + synonyms: + - 国王游戏 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 5 + endDate: + year: 2017 + month: 12 + day: 21 + averageScore: 46 + nextAiringEpisode: null + - id: 98657 + idMal: 35484 + title: + romaji: Osake wa Fuufu ni Natte kara + english: Love is Like a Cocktail + native: お酒は夫婦になってから + synonyms: + - Osake wa Fuufu ni Nattekara + - Alcohol is for married couples + - Osakefufu + status: FINISHED + format: TV_SHORT + episodes: 13 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 4 + endDate: + year: 2017 + month: 12 + day: 27 + averageScore: 67 + nextAiringEpisode: null + - id: 21855 + idMal: 33478 + title: + romaji: 'UQ Holder!: Mahou Sensei Negima! 2' + english: UQ Holder! + native: UQ Holder! ~魔法先生ネギま!2~ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 3 + endDate: + year: 2017 + month: 12 + day: 19 + averageScore: 66 + nextAiringEpisode: null + - id: 98448 + idMal: 35079 + title: + romaji: Kino no Tabi -the Beautiful World- the Animated Series + english: Kino's Journey -the Beautiful World- the Animated Series + native: キノの旅 -the Beautiful World- the Animated Series + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 6 + endDate: + year: 2017 + month: 12 + day: 22 + averageScore: 73 + nextAiringEpisode: null + - id: 99714 + idMal: 35843 + title: + romaji: 'Gintama.: Porori-hen' + english: 'Gintama.: Slip Arc' + native: 銀魂. ポロリ編 + synonyms: + - Gintama. (2017) + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 2 + endDate: + year: 2017 + month: 12 + day: 25 + averageScore: 82 + nextAiringEpisode: null + - id: 98506 + idMal: 35241 + title: + romaji: Konohana Kitan + english: KONOHANA KITAN + native: このはな綺譚 + synonyms: + - 此花绮谭 + - 此花亭奇谭 + - fox spirit tales + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2017 + startDate: + year: 2017 + month: 10 + day: 4 + endDate: + year: 2017 + month: 12 + day: 20 + averageScore: 72 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/33-2018-winter.yaml b/test/fixtures/anilist/season_matrix/33-2018-winter.yaml new file mode 100644 index 0000000..1f40e3f --- /dev/null +++ b/test/fixtures/anilist/season_matrix/33-2018-winter.yaml @@ -0,0 +1,682 @@ +metadata: + captured_at: '2026-05-11T11:33:46Z' + label: 2018-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2018 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:46 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '19' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 21827 + idMal: 33352 + title: + romaji: Violet Evergarden + english: Violet Evergarden + native: ヴァイオレット・エヴァーガーデン + synonyms: + - ויולט אברגרדן + - فيوليت + - 紫罗兰永恒花园 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 11 + endDate: + year: 2018 + month: 4 + day: 5 + averageScore: 85 + nextAiringEpisode: null + - id: 99423 + idMal: 35849 + title: + romaji: Darling in the Franxx + english: DARLING in the FRANXX + native: ダーリン・イン・ザ・フランキス + synonyms: + - DitF + - DarliFra + - Любимый во Франксе + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 13 + endDate: + year: 2018 + month: 7 + day: 7 + averageScore: 69 + nextAiringEpisode: null + - id: 98460 + idMal: 35120 + title: + romaji: DEVILMAN crybaby + english: Devilman Crybaby + native: DEVILMAN crybaby + synonyms: + - デビルマン クライベイビー + - 'דווילמן: בכיין' + - طفل الشيطان + - เดวิลแมน ครายเบบี้ + status: FINISHED + format: ONA + episodes: 10 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 5 + endDate: + year: 2018 + month: 1 + day: 5 + averageScore: 76 + nextAiringEpisode: null + - id: 99539 + idMal: 34577 + title: + romaji: 'Nanatsu no Taizai: Imashime no Fukkatsu' + english: 'The Seven Deadly Sins: Revival of the Commandments' + native: 七つの大罪 戒めの復活 + synonyms: + - 'The Seven Deadly Sins: Die Rückkehr der Gebote' + - ศึกตำนาน 7 อัศวิน ภาค 2 คืนชีพบัญญัติสิบประการ + - 'The Seven Deadly Sins: Odrodzenie przykazań' + - 'Семь смертных грехов: Возрождение Заповедей' + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 13 + endDate: + year: 2018 + month: 6 + day: 30 + averageScore: 73 + nextAiringEpisode: null + - id: 98437 + idMal: 35073 + title: + romaji: Overlord II + english: Overlord II + native: オーバーロードⅡ + synonyms: + - Over Lord 2 + - โอเวอร์ลอร์ด ภาค 2 + - โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 9 + endDate: + year: 2018 + month: 4 + day: 3 + averageScore: 76 + nextAiringEpisode: null + - id: 98034 + idMal: 34612 + title: + romaji: Saiki Kusuo no Ψ-nan 2 + english: The Disastrous Life of Saiki K. Season 2 + native: 斉木楠雄のΨ難 2 + synonyms: + - Saiki Kusuo no Psi Nan 2 + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 17 + endDate: + year: 2018 + month: 6 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 99468 + idMal: 35860 + title: + romaji: Karakai Jouzu no Takagi-san + english: Teasing Master Takagi-san + native: からかい上手の高木さん + synonyms: + - Skilled Teaser Takagi-san + - 'Takagi-san: Experta en Bromas Pesadas' + - טאקאגי-סאן אלופת ההקנטות + - 擅长捉弄的高木同学 + - سيد الدعابة تاكاجي-سان + - Nhất quỷ Nhì ma, Thứ ba Takagi + - Nicht schon wieder, Takagi-san + - 'แกล้งนัก รักนะ รู้ยัง ' + - Τακάγκι-σαν, το Αρχιπειραχτήρι + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 8 + endDate: + year: 2018 + month: 3 + day: 26 + averageScore: 74 + nextAiringEpisode: null + - id: 99426 + idMal: 35839 + title: + romaji: Sora yori mo Tooi Basho + english: A Place Further Than the Universe + native: 宇宙よりも遠い場所 + synonyms: + - Uchuu Yorimo Toui Basho + - Sora yorimo Tooi Basho + - Uchuu yori mo Tooi Basho + - Yorimoi + - מקום רחוק יותר מהיקום + - ตามหัวใจไปสุดขอบฟ้า + - ดินแดนที่ห่างไกลยิ่งกว่าอวกาศ + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 2 + endDate: + year: 2018 + month: 3 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 98444 + idMal: 34798 + title: + romaji: Yuru Camp△ + english: Laid-Back Camp + native: ゆるキャン△ + synonyms: + - Yurucamp + - Yurukyan△ + - 摇曳露营△ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 4 + endDate: + year: 2018 + month: 3 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 99457 + idMal: 35851 + title: + romaji: Sayonara no Asa ni Yakusoku no Hana wo Kazarou + english: 'Maquia: When the Promised Flower Blooms' + native: さよならの朝に約束の花をかざろう + synonyms: + - SayoAsa + - さよあさ + - ' Maquia - Decoriamo la mattina dell''addio con i fiori promessi' + - Maquia - Eine unsterbliche Liebesgeschichte + - Укрась прощальное утро цветами обещания + - 'Maquia: Una historia de amor eterno' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 2 + day: 24 + endDate: + year: 2018 + month: 2 + day: 24 + averageScore: 82 + nextAiringEpisode: null + - id: 97832 + idMal: 34382 + title: + romaji: citrus + english: Citrus + native: citrus + synonyms: + - Цитрус + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 6 + endDate: + year: 2018 + month: 3 + day: 24 + averageScore: 61 + nextAiringEpisode: null + - id: 97907 + idMal: 34497 + title: + romaji: Death March Kara Hajimaru Isekai Kyousoukyoku + english: Death March to the Parallel World Rhapsody + native: デスマーチからはじまる異世界狂想曲 + synonyms: + - โศกนาฏกรรมต่างโลกเริ่มต้นจากเดธมาร์ช + - Pawai Maut Berujung Rapsodi Dunia Lain + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 11 + endDate: + year: 2018 + month: 3 + day: 29 + averageScore: 61 + nextAiringEpisode: null + - id: 98635 + idMal: 35466 + title: + romaji: 'ReLIFE: Kanketsu-hen' + english: 'ReLIFE: Final Arc' + native: ReLIFE 完結編 + synonyms: + - ReLIFE OVA + - Повторная жизнь ОВА + status: FINISHED + format: OVA + episodes: 4 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 3 + day: 21 + endDate: + year: 2018 + month: 3 + day: 21 + averageScore: 81 + nextAiringEpisode: null + - id: 21665 + idMal: 32827 + title: + romaji: 'B: The Beginning' + english: 'B: The Beginning' + native: 'B: The Beginning' + synonyms: + - Perfect Bones + - 'بي: البداية' + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 3 + day: 2 + endDate: + year: 2018 + month: 3 + day: 2 + averageScore: 69 + nextAiringEpisode: null + - id: 98503 + idMal: 35222 + title: + romaji: Gakuen Babysitters + english: School Babysitters + native: 学園ベビーシッターズ + synonyms: + - 学园奶爸 + - นักเรียนพี่เลี้ยงเด็ก + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 7 + endDate: + year: 2018 + month: 3 + day: 25 + averageScore: 79 + nextAiringEpisode: null + - id: 98385 + idMal: 34984 + title: + romaji: Koi wa Ameagari no You ni + english: After the Rain + native: 恋は雨上がりのように + synonyms: + - KoiAme + - Love is Like after the Rain + - Depois da Chuva + - Dopo la pioggia + - Après la pluie + - เส้นทางชีวิต ลิขิตหัวใจ + - Después de la lluvia + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 10 + endDate: + year: 2018 + month: 3 + day: 30 + averageScore: 73 + nextAiringEpisode: null + - id: 98384 + idMal: 34944 + title: + romaji: 'Bungou Stray Dogs: DEAD APPLE' + english: 'Bungo Stray Dogs: DEAD APPLE' + native: 文豪ストレイドッグス DEAD APPLE + synonyms: + - Bungou Stray Dogs Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 3 + day: 3 + endDate: + year: 2018 + month: 3 + day: 3 + averageScore: 78 + nextAiringEpisode: null + - id: 98762 + idMal: 35608 + title: + romaji: 'Chuunibyou demo Koi ga Shitai!: Take On Me' + english: 'Love, Chunibyo & Other Delusions: Take on Me' + native: 映画 中二病でも恋がしたい! -Take On Me- + synonyms: + - Miłość, gimbaza i kosmiczna faza! Za mną leć + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 6 + endDate: + year: 2018 + month: 1 + day: 6 + averageScore: 80 + nextAiringEpisode: null + - id: 97768 + idMal: 34279 + title: + romaji: Grancrest Senki + english: Record of Grancrest War + native: グランクレスト戦記 + synonyms: + - บันทึกสงครามแกรนเครสท์ + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 6 + endDate: + year: 2018 + month: 6 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 98549 + idMal: 35330 + title: + romaji: Poputepipikku + english: Pop Team Epic + native: ポプテピピック + synonyms: + - PPTP + - PTE + - Poptepipic + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 7 + endDate: + year: 2018 + month: 3 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 21717 + idMal: 33047 + title: + romaji: Fate/EXTRA Last Encore + english: Fate/EXTRA Last Encore + native: Fate/EXTRA Last Encore + synonyms: + - Oblitus Copernican Theory + - Illustrias Geocentric Theory + - פייט/אקסטרה ההדרן האחרון + - 'Судьба/Дополнение: Последний вызов на бис' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 28 + endDate: + year: 2018 + month: 7 + day: 29 + averageScore: 61 + nextAiringEpisode: null + - id: 100784 + idMal: 36838 + title: + romaji: 'Gintama.: Shirogane no Tamashii-hen' + english: 'Gintama.: Silver Soul Arc' + native: 銀魂. 銀ノ魂篇 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 8 + endDate: + year: 2018 + month: 3 + day: 26 + averageScore: 86 + nextAiringEpisode: null + - id: 99940 + idMal: 36124 + title: + romaji: 'Itou Junji: Collection' + english: Junji Ito Collection + native: 伊藤潤二「コレクション」 + synonyms: + - จุนจิ อิโต้ คอลเลคชั่นสยอง + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 5 + endDate: + year: 2018 + month: 3 + day: 23 + averageScore: 62 + nextAiringEpisode: null + - id: 99507 + idMal: 35905 + title: + romaji: Ryuuou no Oshigoto! + english: The Ryuo's Work is Never Done! + native: りゅうおうのおしごと! + synonyms: + - สอนหมากหนูที คุณพี่จ้าวมังกร! + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 8 + endDate: + year: 2018 + month: 3 + day: 26 + averageScore: 65 + nextAiringEpisode: null + - id: 100332 + idMal: 36548 + title: + romaji: Kokkoku + english: KOKKOKU + native: 刻刻 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2018 + startDate: + year: 2018 + month: 1 + day: 8 + endDate: + year: 2018 + month: 3 + day: 26 + averageScore: 66 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/34-2018-spring.yaml b/test/fixtures/anilist/season_matrix/34-2018-spring.yaml new file mode 100644 index 0000000..a67a5fe --- /dev/null +++ b/test/fixtures/anilist/season_matrix/34-2018-spring.yaml @@ -0,0 +1,674 @@ +metadata: + captured_at: '2026-05-11T11:33:49Z' + label: 2018-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2018 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:48 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '18' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 100166 + idMal: 36456 + title: + romaji: Boku no Hero Academia 3 + english: My Hero Academia Season 3 + native: 僕のヒーローアカデミア3 + synonyms: + - BNHA 3 + - MHA 3 + - 我的英雄学院 3 + - 我的英雄学院第三季 + - มายฮีโร่ อคาเดเมีย ภาค 3 + - 3أكاديميتي للأبطال + - Моя геройская академия 3 + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 7 + endDate: + year: 2018 + month: 9 + day: 29 + averageScore: 79 + nextAiringEpisode: null + - id: 99578 + idMal: 35968 + title: + romaji: Wotaku ni Koi wa Muzukashii + english: 'Wotakoi: Love is Hard for Otaku' + native: ヲタクに恋は難しい + synonyms: + - Otaku ni Koi wa Muzukashii + - WotaKoi + - It’s Difficult to Love an Otaku + - Love is Hard for an Otaku + - Love is Hard for Nerds + - 'ווטקוי: האהבה קשה לאוטאקו' + - 阿宅的恋爱真难 + - ยากแท้จริงหนอรักของโอตาคุ + - الحب صعب على الأوتاكو + - 'Wotakoi: Keine Cheats für die Liebe' + - 'Уотаку: Непроста любовь для отаку' + - 'Wotakoi: O Amor é Difícil para Otaku' + - 'Wotakoi: El Amor es Duro para los Otakus' + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 13 + endDate: + year: 2018 + month: 6 + day: 22 + averageScore: 78 + nextAiringEpisode: null + - id: 100240 + idMal: 36511 + title: + romaji: Tokyo Ghoul:re + english: Tokyo Ghoul:re + native: 東京喰種-トーキョーグール-:re + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 3 + endDate: + year: 2018 + month: 6 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 21127 + idMal: 30484 + title: + romaji: Steins;Gate 0 + english: Steins;Gate 0 + native: シュタインズ・ゲート ゼロ + synonyms: + - s;g0 + - 命运石之门0 + status: FINISHED + format: TV + episodes: 23 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 12 + endDate: + year: 2018 + month: 9 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 100773 + idMal: 36949 + title: + romaji: 'Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen' + english: 'Food Wars! The Third Plate: Totsuki Train Arc' + native: 『食戟のソーマ 餐ノ皿』 遠月列車篇 + synonyms: + - 食戟之灵 餐之皿 远月列车篇 + - ยอดนักปรุงโซมะ ภาค 3 ครึ่งหลัง + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 9 + endDate: + year: 2018 + month: 6 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 100183 + idMal: 36475 + title: + romaji: 'Sword Art Online Alternative: Gun Gale Online' + english: 'Sword Art Online Alternative: Gun Gale Online' + native: ソードアート・オンライン オルタナティブ ガンゲイル・オンライン + synonyms: + - 'SAO Alternative: Gun Gale Online' + - SAO GGO + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 8 + endDate: + year: 2018 + month: 7 + day: 1 + averageScore: 69 + nextAiringEpisode: null + - id: 100077 + idMal: 36296 + title: + romaji: Hinamatsuri + english: HINAMATSURI + native: ヒナまつり + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 6 + endDate: + year: 2018 + month: 6 + day: 22 + averageScore: 80 + nextAiringEpisode: null + - id: 100298 + idMal: 36563 + title: + romaji: Megalo Box + english: Megalobox + native: メガロボクス + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 6 + endDate: + year: 2018 + month: 6 + day: 29 + averageScore: 77 + nextAiringEpisode: null + - id: 99699 + idMal: 36028 + title: + romaji: Golden Kamuy + english: Golden Kamuy + native: ゴールデンカムイ + synonyms: + - Golden Kamui + - 黄金神威 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 9 + endDate: + year: 2018 + month: 6 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 97767 + idMal: 34281 + title: + romaji: High School DxD HERO + english: null + native: ハイスクールD×D HERO + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 10 + endDate: + year: 2018 + month: 7 + day: 3 + averageScore: 69 + nextAiringEpisode: null + - id: 100526 + idMal: 36793 + title: + romaji: '3D Kanojo: Real Girl' + english: Real Girl + native: 3D彼女 リアルガール + synonyms: + - 3D Girlfriend + - Three D Kanojo Real Girl + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 4 + endDate: + year: 2018 + month: 6 + day: 20 + averageScore: 65 + nextAiringEpisode: null + - id: 100179 + idMal: 36470 + title: + romaji: Tada-kun wa Koi wo Shinai + english: Tada Never Falls In Love + native: 多田くんは恋をしない + synonyms: + - Tadakun wa Koi wo Shinai + - Tadakoi + - Tada-kun Never Falls In Love + - ทาดะคุงไม่ตกหลุมรัก + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 5 + endDate: + year: 2018 + month: 6 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 98514 + idMal: 35249 + title: + romaji: 'Uma Musume: Pretty Derby' + english: 'Umamusume: Pretty Derby' + native: ウマ娘 プリティーダービー + synonyms: + - สาวม้าโมเอะ + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 2 + endDate: + year: 2018 + month: 6 + day: 18 + averageScore: 73 + nextAiringEpisode: null + - id: 99531 + idMal: 35928 + title: + romaji: Devils' Line + english: Devils' Line + native: デビルズライン + synonyms: + - Devil's Line + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 7 + endDate: + year: 2018 + month: 6 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 99693 + idMal: 36023 + title: + romaji: PERSONA5 the Animation + english: PERSONA5 the Animation + native: PERSONA5 the Animation + synonyms: + - P5A + - ペルソナ5アニメーション + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 8 + endDate: + year: 2018 + month: 9 + day: 30 + averageScore: 62 + nextAiringEpisode: null + - id: 100010 + idMal: 36266 + title: + romaji: Mahou Shoujo Site + english: MAGICAL GIRL SITE + native: 魔法少女サイト + synonyms: + - Garota Mágica .Com + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 7 + endDate: + year: 2018 + month: 6 + day: 23 + averageScore: 61 + nextAiringEpisode: null + - id: 100178 + idMal: 35677 + title: + romaji: Liz to Aoi Tori + english: Liz and the Blue Bird + native: リズと青い鳥 + synonyms: + - Liz und ein Blauer Vogel + - ' Liz et l''Oiseau bleu' + - 莉茲與青鳥 + - Liz und der Blaue Vogel + - ליז והציפור הכחולה + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 21 + endDate: + year: 2018 + month: 4 + day: 21 + averageScore: 83 + nextAiringEpisode: null + - id: 101571 + idMal: 36904 + title: + romaji: Aggressive Retsuko + english: Aggretsuko + native: アグレッシブ烈子 + synonyms: + - Η Ρέτσουκο Έξω Φρενών + status: FINISHED + format: ONA + episodes: 10 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 20 + endDate: + year: 2018 + month: 4 + day: 20 + averageScore: 75 + nextAiringEpisode: null + - id: 99916 + idMal: 36214 + title: + romaji: Asagao to Kase-san. + english: Kase-san and Morning Glories + native: あさがおと加瀬さん。 + synonyms: + - คุณคาเซะกับดอกบานเช้า + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 6 + day: 9 + endDate: + year: 2018 + month: 6 + day: 9 + averageScore: 76 + nextAiringEpisode: null + - id: 100645 + idMal: 36864 + title: + romaji: Akkun to Kanojo + english: My Sweet Tyrant + native: あっくんとカノジョ + synonyms: + - Akkun and His Girlfriend + status: FINISHED + format: TV_SHORT + episodes: 25 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 6 + endDate: + year: 2018 + month: 9 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 100500 + idMal: 36754 + title: + romaji: Kakuriyo no Yadomeshi + english: Kakuriyo -Bed & Breakfast for Spirits- + native: かくりよの宿飯 + synonyms: [] + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 2 + endDate: + year: 2018 + month: 9 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 99131 + idMal: 35756 + title: + romaji: Comic Girls + english: Comic Girls + native: こみっくがーるず + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 5 + endDate: + year: 2018 + month: 6 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 21746 + idMal: 33010 + title: + romaji: FLCL Progressive + english: FLCL Progressive + native: フリクリ プログレ + synonyms: + - FLCL 2 + - Furi Kuri Progressive + - Fooly Cooly Progressive + status: FINISHED + format: TV + episodes: 6 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 6 + day: 3 + endDate: + year: 2018 + month: 7 + day: 8 + averageScore: 61 + nextAiringEpisode: null + - id: 100401 + idMal: 36652 + title: + romaji: Piano no Mori (TV) + english: Forest of Piano + native: ピアノの森 (TV) + synonyms: + - Piano Forest + - The Perfect World of Kai + - El Bosque del Piano + - יער הפסנתר + - بيانو + - Το Πιάνο στο Δάσος + - Il piano nella foresta + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 9 + endDate: + year: 2018 + month: 7 + day: 1 + averageScore: 71 + nextAiringEpisode: null + - id: 100673 + idMal: 36884 + title: + romaji: Hisone to Maso-tan + english: 'Dragon Pilot: Hisone & Masotan' + native: ひそねとまそたん + synonyms: + - HisoMaso + - 'Hisone y Masotan: A Lomos del Dragón' + - Pilotos de Dragão - Hisone to Masotan + - هيسونا والتنين + - 'Smocza pilotka: Hisone i Masotan' + - Drachenflieger + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2018 + startDate: + year: 2018 + month: 4 + day: 13 + endDate: + year: 2018 + month: 6 + day: 29 + averageScore: 71 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/35-2018-summer.yaml b/test/fixtures/anilist/season_matrix/35-2018-summer.yaml new file mode 100644 index 0000000..df5acc6 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/35-2018-summer.yaml @@ -0,0 +1,695 @@ +metadata: + captured_at: '2026-05-11T11:33:53Z' + label: 2018-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2018 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:53 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '17' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 99147 + idMal: 35760 + title: + romaji: Shingeki no Kyojin Season 3 + english: Attack on Titan Season 3 + native: 進撃の巨人 Season3 + synonyms: + - SnK 3 + - AoT 3 + - Shingeki no Kyojin Season 3 + - מתקפת הטיטאנים עונה 3 + - L'Attacco dei Giganti 3 + - L'Attacco dei Giganti - Terza Stagione + - ผ่าพิภพไททัน ภาค 3 + - حمله به تایتان فصل 3 + - ผ่าพิภพไททัน ภาค 3 Part 1 + - Атака титанов 3 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 23 + endDate: + year: 2018 + month: 10 + day: 15 + averageScore: 86 + nextAiringEpisode: null + - id: 99750 + idMal: 36098 + title: + romaji: Kimi no Suizou wo Tabetai + english: I Want to Eat Your Pancreas + native: 君の膵臓をたべたい + synonyms: + - Quiero Comerme tu Páncreas + - Voglio mangiare il tuo pancreas + - Je veux manger ton pancréas + - Vull menjar-me el teu pàncrees + - Kimisui + - Eu Quero Comer Seu Pâncreas + - Хочу съесть твою поджелудочную железу + - ตับอ่อนเธอนั้นขอฉันเถอะนะ + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 9 + day: 1 + endDate: + year: 2018 + month: 9 + day: 1 + averageScore: 84 + nextAiringEpisode: null + - id: 100388 + idMal: 36649 + title: + romaji: BANANA FISH + english: BANANA FISH + native: BANANA FISH + synonyms: + - バナナフィッシュ + - 香蕉鱼 + - Банановая рыба + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 6 + endDate: + year: 2018 + month: 12 + day: 21 + averageScore: 84 + nextAiringEpisode: null + - id: 101474 + idMal: 37675 + title: + romaji: Overlord III + english: Overlord III + native: オーバーロードⅢ + synonyms: + - Over Lord 3 + - โอเวอร์ลอร์ด ภาค 3 + - โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 3 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 10 + endDate: + year: 2018 + month: 10 + day: 2 + averageScore: 77 + nextAiringEpisode: null + - id: 100922 + idMal: 37105 + title: + romaji: Grand Blue + english: Grand Blue Dreaming + native: ぐらんぶる + synonyms: + - ก๊วนป่วนชวนบุ๋งบุ๋ง + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 14 + endDate: + year: 2018 + month: 9 + day: 29 + averageScore: 82 + nextAiringEpisode: null + - id: 100723 + idMal: 36896 + title: + romaji: 'Boku no Hero Academia THE MOVIE: Futari no Hero' + english: 'My Hero Academia: Two Heroes' + native: 僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 + synonyms: + - My Hero Academia the Movie + - 我的英雄学院 ~两位英雄~ + - มายฮีโร่ อคาเดเมีย กำเนิดใหม่ 2 วีรบุรุษ + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 8 + day: 3 + endDate: + year: 2018 + month: 8 + day: 3 + averageScore: 74 + nextAiringEpisode: null + - id: 99629 + idMal: 35994 + title: + romaji: Satsuriku no Tenshi + english: Angels of Death + native: 殺戮の天使 + synonyms: + - Angel of Massacre + - Angel Slaughter + - ทูตสวรรค์ทัณฑ์อำมหิต + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 6 + endDate: + year: 2018 + month: 9 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 100977 + idMal: 37141 + title: + romaji: Hataraku Saibou + english: Cells at Work! + native: はたらく細胞 + synonyms: + - Les brigades immunitaires + - เซลล์ขยัน พันธุ์เดือด + - Lavori in corpo + - Клетки за работой! + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 8 + endDate: + year: 2018 + month: 9 + day: 30 + averageScore: 74 + nextAiringEpisode: null + - id: 101004 + idMal: 37210 + title: + romaji: Isekai Maou to Shoukan Shoujo no Dorei Majutsu + english: How NOT to Summon a Demon Lord + native: 異世界魔王と召喚少女の奴隷魔術 + synonyms: + - The King of Darkness Another World Story + - 异世界魔王与召唤少女的奴隶魔术 + - จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ + - 異世界魔王與召喚少女的奴隸魔術 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 5 + endDate: + year: 2018 + month: 9 + day: 20 + averageScore: 66 + nextAiringEpisode: null + - id: 101001 + idMal: 37171 + title: + romaji: Asobi Asobase + english: Asobi Asobase - workshop of fun - + native: あそびあそばせ + synonyms: + - 'Asobi Asobase: Workshop of Fun' + - 游戏3人娘 + - 来玩游戏吧 + - ชมรมสาวรักสนุก + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 8 + endDate: + year: 2018 + month: 9 + day: 23 + averageScore: 79 + nextAiringEpisode: null + - id: 97888 + idMal: 34443 + title: + romaji: Baki + english: BAKI + native: バキ + synonyms: + - Baki - O Campeão + - Баки + - Μπάκι + status: FINISHED + format: ONA + episodes: 26 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 6 + day: 25 + endDate: + year: 2018 + month: 12 + day: 17 + averageScore: 72 + nextAiringEpisode: null + - id: 101432 + idMal: 37095 + title: + romaji: 'Violet Evergarden: Kitto "Ai" wo Shiru Hi ga Kuru no Darou' + english: 'Violet Evergarden: Special' + native: ヴァイオレット・エヴァーガーデン きっと"愛"を知る日が来るのだろう + synonyms: + - 'فيوليت: رسالة' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 4 + endDate: + year: 2018 + month: 7 + day: 4 + averageScore: 82 + nextAiringEpisode: null + - id: 101351 + idMal: 37517 + title: + romaji: Happy Sugar Life + english: Happy Sugar Life + native: ハッピーシュガーライフ + synonyms: + - White Sugar Garden, Black Salt Cage + - 幸福甜蜜生活 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 14 + endDate: + year: 2018 + month: 9 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 99540 + idMal: 35946 + title: + romaji: 'Nanatsu no Taizai Movie: Tenkuu no Torawarebito' + english: 'The Seven Deadly Sins the Movie: Prisoners of the Sky' + native: 劇場版 七つの大罪 天空の囚われ人 + synonyms: + - 'ศึกตำนาน 7 อัศวิน: นักโทษแห่งท้องนภา ' + - 'Семь смертных грехов: Узники небес' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 8 + day: 18 + endDate: + year: 2018 + month: 8 + day: 18 + averageScore: 69 + nextAiringEpisode: null + - id: 100483 + idMal: 36726 + title: + romaji: Yuragi-sou no Yuuna-san + english: Yuuna and the Haunted Hot Springs + native: ゆらぎ荘の幽奈さん + synonyms: + - Yuragisou no Yuuna-san + - Yuuna of Yuragi Manor + - Yunas Geisterhaus + - Yûna de la pension Yuragi + - 'ยูรากิโซ ที่นี่ผีน่ารักนะ ' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 14 + endDate: + year: 2018 + month: 9 + day: 29 + averageScore: 67 + nextAiringEpisode: null + - id: 20574 + idMal: 21877 + title: + romaji: Hi Score Girl + english: Hi Score Girl + native: ハイスコアガール + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 14 + endDate: + year: 2018 + month: 9 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 101361 + idMal: 37569 + title: + romaji: 'Tenrou: Sirius the Jaeger' + english: Sirius the Jaeger + native: 天狼 Sirius the Jaeger + synonyms: + - Sirius + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 12 + endDate: + year: 2018 + month: 9 + day: 27 + averageScore: 68 + nextAiringEpisode: null + - id: 101231 + idMal: 37396 + title: + romaji: Shikioriori + english: Flavors of Youth + native: 詩季織々 + synonyms: + - 肆式青春 + - Si Shi Qing Chun + - 'Shiki Oriori: O Sabor da Juventude' + status: FINISHED + format: MOVIE + episodes: 3 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 8 + day: 4 + endDate: + year: 2018 + month: 8 + day: 4 + averageScore: 69 + nextAiringEpisode: null + - id: 101117 + idMal: 36704 + title: + romaji: 'Free!: Dive to the Future' + english: Free! -Dive to the Future- + native: Free!-Dive to the Future- + synonyms: + - Free! 3rd Season + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 12 + endDate: + year: 2018 + month: 9 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 101925 + idMal: 37491 + title: + romaji: 'Gintama.: Shirogane no Tamashii-hen - Kouhan-sen' + english: 'Gintama.: Silver Soul Arc - Second Half War' + native: 銀魂. 銀ノ魂篇2 + synonyms: + - 'Gintama.: Silver Soul Arc 2' + - Gintama. Silver Soul Arc Season 2 + - 'Gintama.: Shirogane no Tamashii-hen Season 2' + status: FINISHED + format: TV + episodes: 14 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 9 + endDate: + year: 2018 + month: 10 + day: 8 + averageScore: 87 + nextAiringEpisode: null + - id: 101289 + idMal: 37446 + title: + romaji: Hyakuren no Haou to Seiyaku no Valkyria + english: The Master of Ragnarök & Blesser of Einherjar + native: 百錬の覇王と聖約の戦乙女 + synonyms: + - The Master of Ragnarok & Blesser of Einherjar + - ราชาอาชาไนยกับวาลคิรีแห่งพันธสัญญา + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 8 + endDate: + year: 2018 + month: 9 + day: 23 + averageScore: 52 + nextAiringEpisode: null + - id: 100749 + idMal: 36936 + title: + romaji: Mirai no Mirai + english: Mirai + native: 未来のミライ + synonyms: + - Mirai of the Future + - Miraï, ma petite sœur + - 未来的未来 + - 'Mirai: Mi pequeña hermana' + - Μιράι, η μικρή μου αδελφή + - Мірай + - Мирай из будущего + - Mano mažoji sesutė Mirai + - Болашақтан келген Мирай + - Mirai tulevikust + - Gələcəkdən olan Miray + - Miraï, min lillasyster + - Mirai, min lillasyster + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 20 + endDate: + year: 2018 + month: 7 + day: 20 + averageScore: 72 + nextAiringEpisode: null + - id: 98658 + idMal: 35503 + title: + romaji: Shoujo☆Kageki Revue Starlight + english: Revue Starlight + native: 少女☆歌劇 レヴュー・スタァライト + synonyms: + - Girls' Musical Revue Starlight + - 少女☆歌剧 Revue Starlight + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 13 + endDate: + year: 2018 + month: 9 + day: 28 + averageScore: 77 + nextAiringEpisode: null + - id: 101045 + idMal: 37259 + title: + romaji: Hanebado! + english: HANEBADO! + native: はねバド! + synonyms: + - Hanebado! - The Badminton Play of Ayano Hanesaki! + - Hanebad! + - ฮาเนซากิ อายาโนะ นักแบดสาวเจ้าสนาม + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 2 + endDate: + year: 2018 + month: 10 + day: 1 + averageScore: 66 + nextAiringEpisode: null + - id: 100556 + idMal: 36817 + title: + romaji: Sunoharasou no Kanrinin-san + english: Miss Caretaker of Sunohara-sou + native: すのはら荘の管理人さん + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2018 + startDate: + year: 2018 + month: 7 + day: 5 + endDate: + year: 2018 + month: 9 + day: 20 + averageScore: 64 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/36-2018-fall.yaml b/test/fixtures/anilist/season_matrix/36-2018-fall.yaml new file mode 100644 index 0000000..2398d57 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/36-2018-fall.yaml @@ -0,0 +1,680 @@ +metadata: + captured_at: '2026-05-11T11:33:58Z' + label: 2018-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2018 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:33:57 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '16' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 101291 + idMal: 37450 + title: + romaji: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai + english: Rascal Does Not Dream of Bunny Girl Senpai + native: 青春ブタ野郎はバニーガール先輩の夢を見ない + synonyms: + - AoButa + - 青春猪头少年不会梦到兔女郎学姐 + - Негодник, которому не снилась девушка-кролик + - Этот глупый свин не понимает мечту девочки-зайки + - 青ブタ + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 4 + endDate: + year: 2018 + month: 12 + day: 27 + averageScore: 81 + nextAiringEpisode: null + - id: 101280 + idMal: 37430 + title: + romaji: Tensei Shitara Slime Datta Ken + english: That Time I Got Reincarnated as a Slime + native: 転生したらスライムだった件 + synonyms: + - 転スラ + - TenSura + - Vita da Slime + - Moi, quand je me réincarne en Slime + - 关于我转生变成史莱姆这档事 + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว + - Meine Wiedergeburt als Schleim in einer anderen Welt + - О моём перерождении в слизь + - TTIGRAAS + - Lúc đó tôi đã chuyển sinh thành Slime + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 2 + endDate: + year: 2019 + month: 3 + day: 19 + averageScore: 80 + nextAiringEpisode: null + - id: 101165 + idMal: 37349 + title: + romaji: Goblin Slayer + english: GOBLIN SLAYER + native: ゴブリンスレイヤー + synonyms: + - ก็อบลิน สเลเยอร์ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 7 + endDate: + year: 2018 + month: 12 + day: 30 + averageScore: 71 + nextAiringEpisode: null + - id: 102883 + idMal: 37991 + title: + romaji: 'JoJo no Kimyou na Bouken: Ougon no Kaze' + english: 'JoJo''s Bizarre Adventure: Golden Wind' + native: ジョジョの奇妙な冒険 黄金の風 + synonyms: + - JoJo's Bizarre Adventure Part 5 + - 'JoJo''s Bizarre Adventure: Vento Aureo' + - 'Le Bizzarre Avventure Di GioGio: Vento Aureo' + - 'مغامرات جوجو العجيبة: الرياح الذهبية' + - 'Невероятные приключения ДжоДжо: Золотой ветер' + status: FINISHED + format: TV + episodes: 39 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2019 + month: 7 + day: 28 + averageScore: 84 + nextAiringEpisode: null + - id: 100182 + idMal: 36474 + title: + romaji: 'Sword Art Online: Alicization' + english: 'Sword Art Online: Alicization' + native: ソードアート・オンライン アリシゼーション + synonyms: + - SAOIII + - SAO3 + - Alicization + - Sword Art Online III + - 'ซอร์ดอาร์ตออนไลน์: Alicization' + - ซอร์ดอาร์ตออนไลน์ ภาค 3 + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 7 + endDate: + year: 2019 + month: 3 + day: 31 + averageScore: 75 + nextAiringEpisode: null + - id: 102351 + idMal: 37799 + title: + romaji: Tokyo Ghoul:re 2 + english: Tokyo Ghoul:re 2 + native: 東京喰種-トーキョーグール-:re 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 9 + endDate: + year: 2018 + month: 12 + day: 25 + averageScore: 62 + nextAiringEpisode: null + - id: 103871 + idMal: 37976 + title: + romaji: Zombie Land Saga + english: ZOMBIE LAND SAGA + native: ゾンビランドサガ + synonyms: + - Zombieland Saga + - 佐贺偶像是传奇 + - Зомбилэнд-Сага + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 4 + endDate: + year: 2018 + month: 12 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 99749 + idMal: 35972 + title: + romaji: FAIRY TAIL (2018) + english: Fairy Tail Final Season + native: FAIRY TAIL (2018) + synonyms: + - Fairy Tail 3 + - Fairy Tail Series 3 + - フェアリーテイル (2018) + status: FINISHED + format: TV + episodes: 51 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 7 + endDate: + year: 2019 + month: 9 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 101573 + idMal: 37786 + title: + romaji: Yagate Kimi ni Naru + english: Bloom Into You + native: やがて君になる + synonyms: + - YagaKimi + - สุดท้ายก็คือเธอ + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 5 + endDate: + year: 2018 + month: 12 + day: 28 + averageScore: 78 + nextAiringEpisode: null + - id: 101302 + idMal: 36946 + title: + romaji: 'Dragon Ball Super: Broly' + english: 'Dragon Ball Super: Broly' + native: ドラゴンボール超 ブロリー + synonyms: + - 'Драконий жемчуг: Супер — Броли' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 12 + day: 14 + endDate: + year: 2018 + month: 12 + day: 14 + averageScore: 81 + nextAiringEpisode: null + - id: 101310 + idMal: 37475 + title: + romaji: Kishuku Gakkou no Juliet + english: Boarding School Juliet + native: 寄宿学校のジュリエット + synonyms: + - To LOVE, or not to LOVE + - JULIET NO INTERNATO + - รักลับๆ ข้ามหอของนายหมากับน้องแมว + - Juliet en el internado + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2018 + month: 12 + day: 22 + averageScore: 73 + nextAiringEpisode: null + - id: 100049 + idMal: 36286 + title: + romaji: Re:Zero kara Hajimeru Isekai Seikatsu OVAs + english: Re:ZERO -Starting Life in Another World- OVAs + native: Re:ゼロから始める異世界生活 OVAs + synonyms: + - Re:ZERO -Starting Life in Another World- Memory Snow + - Re:ZERO -Starting Life in Another World- The Frozen Bond + - Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow + - 'Re:Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna' + - Re:ゼロから始める異世界生活 Memory Snow + - Re:ゼロから始める異世界生活 氷結の絆 + - Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก Memory Snow + - Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก The Frozen Bond + - Re:Zero — жизнь с нуля в другом мире OVA. Ледяные узы + status: FINISHED + format: OVA + episodes: 2 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2019 + month: 11 + day: 8 + averageScore: 76 + nextAiringEpisode: null + - id: 99424 + idMal: 35847 + title: + romaji: SSSS.GRIDMAN + english: SSSS.GRIDMAN + native: SSSS.GRIDMAN + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 7 + endDate: + year: 2018 + month: 12 + day: 23 + averageScore: 71 + nextAiringEpisode: null + - id: 101316 + idMal: 37497 + title: + romaji: Irozuku Sekai no Ashita kara + english: 'IRODUKU: The World in Colors' + native: 色づく世界の明日から + synonyms: + - So Many Colors In The Future What A Wonderful World + - Iroduku + - 'IRODUKU: O Mundo em Cores' + - 'IRODUKU: Le Monde en couleur' + - 'IRODUKU: El mundo en colores' + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2018 + month: 12 + day: 29 + averageScore: 73 + nextAiringEpisode: null + - id: 101903 + idMal: 37965 + title: + romaji: Kaze ga Tsuyoku Fuiteiru + english: Run with the Wind + native: 風が強く吹いている + synonyms: + - KazeTsuyo + - В ногу с ветром + status: FINISHED + format: TV + episodes: 23 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 3 + endDate: + year: 2019 + month: 3 + day: 27 + averageScore: 83 + nextAiringEpisode: null + - id: 104580 + idMal: 38249 + title: + romaji: 'Saiki Kusuo no Ψ-nan: Kanketsu-hen' + english: The Disastrous Life of Saiki K. Season 3 + native: 斉木楠雄のΨ難 完結編 + synonyms: + - Saiki Kusuo no Psi Nan 3 + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 12 + day: 28 + endDate: + year: 2018 + month: 12 + day: 28 + averageScore: 82 + nextAiringEpisode: null + - id: 100185 + idMal: 36432 + title: + romaji: Toaru Majutsu no Index III + english: A Certain Magical Index III + native: とある魔術の禁書目録III + synonyms: + - Toaru Majutsu no Index 3 + - 魔法禁书目录第三季 + - 魔法禁书目录 3 + - อินเดกซ์คัมภีร์คาถาต้องห้าม ภาค 3 + - Cấm thư ma thuật Index III + status: FINISHED + format: TV + episodes: 26 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 5 + endDate: + year: 2019 + month: 4 + day: 5 + averageScore: 66 + nextAiringEpisode: null + - id: 101024 + idMal: 37202 + title: + romaji: Radiant + english: RADIANT + native: ラディアン + synonyms: [] + status: FINISHED + format: TV + episodes: 21 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2019 + month: 2 + day: 23 + averageScore: 65 + nextAiringEpisode: null + - id: 102977 + idMal: 37989 + title: + romaji: Golden Kamuy 2nd Season + english: Golden Kamuy Season 2 + native: ゴールデンカムイ 第二期 + synonyms: + - Golden Kamui 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 8 + endDate: + year: 2018 + month: 12 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 100402 + idMal: 36653 + title: + romaji: 'Tsurune: Kazemai Koukou Kyuudou-bu' + english: Tsurune + native: ツルネ ―風舞高校弓道部― + synonyms: + - Tsurune - Il tiro che unisce + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 22 + endDate: + year: 2019 + month: 1 + day: 21 + averageScore: 76 + nextAiringEpisode: null + - id: 101381 + idMal: 37597 + title: + romaji: Dakaretai Otoko 1-i ni Odosarete Imasu. + english: DAKAICHI -I'm being harassed by the sexiest man of the year- + native: 抱かれたい男1位に脅されています。 + synonyms: + - 我让最想被拥抱的男人给威胁了 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 6 + endDate: + year: 2018 + month: 12 + day: 29 + averageScore: 71 + nextAiringEpisode: null + - id: 100382 + idMal: 36632 + title: + romaji: Ore ga Suki nano wa Imouto dakedo Imouto ja Nai + english: My Sister, My Writer + native: 俺が好きなのは妹だけど妹じゃない + synonyms: + - ImoImo + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 10 + endDate: + year: 2018 + month: 12 + day: 19 + averageScore: 44 + nextAiringEpisode: null + - id: 100093 + idMal: 36317 + title: + romaji: Gaikotsu Shotenin Honda-san + english: Skull-face Bookseller Honda-san + native: ガイコツ書店員本田さん + synonyms: + - Gaikotsu Shotenin Honda san + - Gaikotsu Syotenin Honda san + status: FINISHED + format: TV_SHORT + episodes: 12 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 8 + endDate: + year: 2018 + month: 12 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 104243 + idMal: null + title: + romaji: Satsuriku no Tenshi (ONA) + english: Angels of Death (ONA) + native: 殺戮の天使 (ONA) + synonyms: [] + status: FINISHED + format: ONA + episodes: 4 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 5 + endDate: + year: 2018 + month: 10 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 101336 + idMal: 37447 + title: + romaji: Karakuri Circus + english: Karakuri Circus + native: からくりサーカス + synonyms: + - Le Cirque de Karakuri + status: FINISHED + format: TV + episodes: 36 + season: FALL + seasonYear: 2018 + startDate: + year: 2018 + month: 10 + day: 11 + endDate: + year: 2019 + month: 6 + day: 27 + averageScore: 67 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/37-2019-winter.yaml b/test/fixtures/anilist/season_matrix/37-2019-winter.yaml new file mode 100644 index 0000000..c29a6b7 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/37-2019-winter.yaml @@ -0,0 +1,669 @@ +metadata: + captured_at: '2026-05-11T11:34:01Z' + label: 2019-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2019 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:01 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '15' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 101759 + idMal: 37779 + title: + romaji: Yakusoku no Neverland + english: The Promised Neverland + native: 約束のネバーランド + synonyms: + - YakuNeba + - TPN + - نيفرلاند الموعودة + - 约定的梦幻岛 + - พันธสัญญาเนเวอร์แลนด์ + - 約定的夢幻島 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 10 + endDate: + year: 2019 + month: 3 + day: 29 + averageScore: 84 + nextAiringEpisode: null + - id: 101921 + idMal: 37999 + title: + romaji: 'Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen' + english: 'Kaguya-sama: Love is War' + native: かぐや様は告らせたい~天才たちの恋愛頭脳戦~ + synonyms: + - 'Kaguya Wants to be Confessed To: The Geniuses'' War of Love and Brains' + - קאגויה סאמה + - 辉夜大小姐想让我告白~天才们的恋爱头脑战~ + - 辉夜姬想让人告白 + - 辉夜姬想让人告白~天才们的恋爱头脑战~ + - 辉告 + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen' + - 'Kaguya-sama : L''Amour est une guerre' + - สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ + - 'Госпожа Кагуя: В любви как на войне' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 12 + endDate: + year: 2019 + month: 3 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 99263 + idMal: 35790 + title: + romaji: Tate no Yuusha no Nariagari + english: The Rising of the Shield Hero + native: 盾の勇者の成り上がり + synonyms: + - 盾之勇者成名录 + - ผู้กล้าโล่ผงาด + - Восхождение героя щита + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 9 + endDate: + year: 2019 + month: 6 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 101338 + idMal: 37510 + title: + romaji: Mob Psycho 100 II + english: Mob Psycho 100 II + native: モブサイコ100 II + synonyms: + - Mob Psycho Hyaku + - ม็อบไซโค 100 คนพลังจิต ภาค 2 + - Моб Психо 100 II + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 7 + endDate: + year: 2019 + month: 4 + day: 1 + averageScore: 87 + nextAiringEpisode: null + - id: 101347 + idMal: 37520 + title: + romaji: Dororo + english: Dororo + native: どろろ + synonyms: + - Дороро + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 7 + endDate: + year: 2019 + month: 6 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 103572 + idMal: 38101 + title: + romaji: Go-toubun no Hanayome + english: The Quintessential Quintuplets + native: 五等分の花嫁 + synonyms: + - 5-toubun no Hanayome + - The Five Wedded Brides + - เจ้าสาวผมเป็นแฝดห้า + - 五等分的新娘 + - Eşsiz Beşizler + - Sposób na pięcioraczki + - Пять невест + - Квинтэссенция пяти близнецов + - Las Quintillizas + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 11 + endDate: + year: 2019 + month: 3 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 100876 + idMal: 37086 + title: + romaji: Kakegurui ×× + english: Kakegurui xx + native: 賭ケグルイ×× + synonyms: + - Kakegurui - Compulsive Gambler 2 + - โคตรเซียนโรงเรียนพนัน ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 9 + endDate: + year: 2019 + month: 3 + day: 27 + averageScore: 71 + nextAiringEpisode: null + - id: 103139 + idMal: 37982 + title: + romaji: Domestic na Kanojo + english: Domestic Girlfriend + native: ドメスティックな彼女 + synonyms: + - DomeKano + - บทเรียนรักเส้นทางหัวใจ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 12 + endDate: + year: 2019 + month: 3 + day: 30 + averageScore: 64 + nextAiringEpisode: null + - id: 21718 + idMal: 33049 + title: + romaji: Fate/stay night [Heaven's Feel] II. lost butterfly + english: Fate/stay night [Heaven's Feel] II. lost butterfly + native: Fate/stay night[Heaven's Feel] ⅠⅠ.lost butterfly + synonyms: + - Fate/HF II + - 'Судьба/Ночь схватки: Прикосновение небес 2' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 12 + endDate: + year: 2019 + month: 1 + day: 12 + averageScore: 84 + nextAiringEpisode: null + - id: 100722 + idMal: 36633 + title: + romaji: Date A Live III + english: Date A Live III + native: デート・ア・ライブⅢ + synonyms: + - Date a Live 3rd Season + - Date a Live 3 + - DAL 3 + - พิชิตรัก พิทักษ์โลก ภาค 3 + - Рандеву с Жизнью 3 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 11 + endDate: + year: 2019 + month: 3 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 97880 + idMal: 34437 + title: + romaji: 'Code Geass: Fukkatsu no Lelouch' + english: 'Code Geass: Lelouch of the Re;surrection' + native: コードギアス 復活のルルーシュ + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 2 + day: 9 + endDate: + year: 2019 + month: 2 + day: 9 + averageScore: 77 + nextAiringEpisode: null + - id: 100878 + idMal: 37055 + title: + romaji: Youjo Senki Movie + english: Saga of Tanya the Evil - the Movie - + native: 劇場版 幼女戦記 + synonyms: + - Колдунья в погонах. Фильм + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 2 + day: 8 + endDate: + year: 2019 + month: 2 + day: 8 + averageScore: 81 + nextAiringEpisode: null + - id: 100815 + idMal: 36999 + title: + romaji: Zoku Owarimonogatari + english: Zoku Owarimonogatari + native: 続・終物語 + synonyms: + - Continued End Tale + status: FINISHED + format: OVA + episodes: 6 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 2 + day: 27 + endDate: + year: 2019 + month: 3 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 101283 + idMal: 37451 + title: + romaji: Boogiepop wa Warawanai + english: Boogiepop and Others + native: ブギーポップは笑わない + synonyms: + - Boogiepop wa Warawanai (2019) + status: FINISHED + format: TV + episodes: 18 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 4 + endDate: + year: 2019 + month: 3 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 101166 + idMal: 37348 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Orion no Ya' + english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion' + native: ダンジョンに出会いを求めるのは間違っているだろうか ─ オリオンの矢 ─ + synonyms: + - 'DanMachi: Arrow of the Orion' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 2 + day: 15 + endDate: + year: 2019 + month: 2 + day: 15 + averageScore: 73 + nextAiringEpisode: null + - id: 102680 + idMal: 37993 + title: + romaji: Watashi ni Tenshi ga Maiorita! + english: 'WATATEN!: an Angel Flew Down to Me' + native: 私に天使が舞い降りた! + synonyms: + - Wataten + - An Angel Swooped Down on Me! + - นางฟ้าตัวน้อยได้ลงมาโปรดฉันค่ะ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 8 + endDate: + year: 2019 + month: 3 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 103874 + idMal: 38145 + title: + romaji: Doukyonin wa Hiza, Tokidoki, Atama no Ue. + english: My Roommate is a Cat + native: 同居人はひざ、時々、頭のうえ。 + synonyms: + - Hizaue + - นายท่านอยู่บนตักหรือบางทีอยู่บนหัวเรา + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 9 + endDate: + year: 2019 + month: 3 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 102882 + idMal: 37956 + title: + romaji: '3D Kanojo: Real Girl 2' + english: Real Girl 2 + native: 3D彼女 リアルガール 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 9 + endDate: + year: 2019 + month: 3 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 101344 + idMal: 37515 + title: + romaji: 'Made in Abyss: Hourou Suru Tasogare' + english: 'Made in Abyss: Wandering Twilight' + native: メイドインアビス 放浪する黄昏 + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 18 + endDate: + year: 2019 + month: 1 + day: 18 + averageScore: 83 + nextAiringEpisode: null + - id: 105893 + idMal: 38699 + title: + romaji: 'Boku no Hero Academia THE MOVIE: Futari no Hero Specials' + english: 'My Hero Academia the Movie: Two Heroes Specials' + native: 僕のヒーローアカデミア THE MOVIE 〜2人の英雄〜 特典 + synonyms: + - 'All Might: Rising The Animation' + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 2 + day: 13 + endDate: + year: 2019 + month: 2 + day: 13 + averageScore: 71 + nextAiringEpisode: null + - id: 101343 + idMal: 37514 + title: + romaji: 'Made in Abyss: Tabidachi no Yoake' + english: 'Made in Abyss: Journey''s Dawn' + native: メイドインアビス 旅立ちの夜明け + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 4 + endDate: + year: 2019 + month: 1 + day: 4 + averageScore: 81 + nextAiringEpisode: null + - id: 101773 + idMal: 37920 + title: + romaji: Ueno-san wa Bukiyou + english: How clumsy you are, Miss Ueno. + native: 上野さんは不器用 + synonyms: + - '笨拙之极的上野 ' + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 7 + endDate: + year: 2019 + month: 3 + day: 25 + averageScore: 63 + nextAiringEpisode: null + - id: 21322 + idMal: 31537 + title: + romaji: Manaria Friends + english: Mysteria Friends + native: マナリアフレンズ + synonyms: + - 'Shingeki no Bahamut: Manaria Friends' + status: FINISHED + format: TV_SHORT + episodes: 10 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 21 + endDate: + year: 2019 + month: 3 + day: 25 + averageScore: 66 + nextAiringEpisode: null + - id: 104174 + idMal: 37492 + title: + romaji: 'Steins;Gate 0: Kesshou Takei no Valentine - Bittersweet Day' + english: 'Steins;Gate 0: Valentine''s of Crystal Polymorphism -Bittersweet Intermedio-' + native: シュタインズ・ゲート ゼロ 結晶多形のバレンタイン + synonyms: + - Steins;Gate 0 Special + - 'San Valentín de polimorfismo de cristal: Intermedio agridulce' + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2019 + startDate: + year: 2018 + month: 12 + day: 21 + endDate: + year: 2018 + month: 12 + day: 21 + averageScore: 71 + nextAiringEpisode: null + - id: 100523 + idMal: 36792 + title: + romaji: Eromanga Sensei OVA + english: null + native: エロマンガ先生 OVA + synonyms: + - Ero Manga Sensei + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2019 + startDate: + year: 2019 + month: 1 + day: 16 + endDate: + year: 2019 + month: 1 + day: 16 + averageScore: 66 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/38-2019-spring.yaml b/test/fixtures/anilist/season_matrix/38-2019-spring.yaml new file mode 100644 index 0000000..ec2c069 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/38-2019-spring.yaml @@ -0,0 +1,714 @@ +metadata: + captured_at: '2026-05-11T11:34:04Z' + label: 2019-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2019 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:04 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '14' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 101922 + idMal: 38000 + title: + romaji: Kimetsu no Yaiba + english: 'Demon Slayer: Kimetsu no Yaiba' + native: 鬼滅の刃 + synonyms: + - KnY + - 'Kimetsu no Yaiba: Kyoudai no Kizuna' + - 'Demon Slayer: Kimetsu no Yaiba: Bonds of Siblings' + - 鬼滅の刃-兄妹の絆- + - 鬼灭之刃 + - הלהב קוטל השדים + - قاتل الشياطين + - ดาบพิฆาตอสูร + - Miecz zabójcy demonów – Kimetsu no Yaiba + - ' Guardians de la nit: Kimetsu no Yaiba' + - İblis Keser + - 'ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA' + - Zabiják démonů + - شیطان کش + - 귀멸의 칼날 + - Истребитель демонов + - Клинок, рассекающий демонов + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 6 + endDate: + year: 2019 + month: 9 + day: 28 + averageScore: 83 + nextAiringEpisode: null + - id: 104578 + idMal: 38524 + title: + romaji: Shingeki no Kyojin Season 3 Part 2 + english: Attack on Titan Season 3 Part 2 + native: 進撃の巨人 Season3 Part.2 + synonyms: + - SnK 3 + - AoT 3 + - Shingeki no Kyojin Season 3 (2019) + - L'Attaco dei Giganti 3 Parte 2 + - L'Attacco dei Giganti - Terza Stagione Parte 2 + - מתקפת הטיטאנים עונה 3 חלק 2 + - 'L''Attaque des Titans Saison 3 Partie 2 ' + - ผ่าพิภพไททัน ภาค 3 Part 2 + - ผ่าพิภพไททัน ภาค 3 พาร์ท 2 + - حمله به تایتان فصل 3 + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 29 + endDate: + year: 2019 + month: 7 + day: 1 + averageScore: 90 + nextAiringEpisode: null + - id: 97668 + idMal: 34134 + title: + romaji: One Punch Man 2 + english: One-Punch Man Season 2 + native: ワンパンマン 2 + synonyms: + - OPM2 + - Wanpanman 2 + - مرد تک مشتی + - วันพันช์แมน ภาคที่ 2 + - One-Punch Man Phần 2 + - 一拳超人 第二季 + - Jagoan Sekali Pukul S2 + - ون بنش مان 2 + - رجل اللكمة الواحدة 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 10 + endDate: + year: 2019 + month: 7 + day: 3 + averageScore: 74 + nextAiringEpisode: null + - id: 105334 + idMal: 38680 + title: + romaji: 'Fruits Basket: 1st Season' + english: Fruits Basket (2019) + native: フルーツバスケット 1st Season + synonyms: + - Fruits Basket (Zenpen) + - Furuba + - Fruba + - フルバ + - 水果篮子(第一季) + - 水果篮子(2019) + - เสน่ห์สาวข้าวปั้น + - Корзинка фруктов + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 6 + endDate: + year: 2019 + month: 9 + day: 21 + averageScore: 82 + nextAiringEpisode: null + - id: 104157 + idMal: 38329 + title: + romaji: Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai + english: Rascal Does Not Dream of a Dreaming Girl + native: 青春ブタ野郎はゆめみる少女の夢を見ない + synonyms: + - 青ブタ + - 'Ao Buta ' + - 青春猪头少年不会梦到怀梦美少女 + - Этот глупый свин не понимает мечту девочки-зайки. Фильм + - Негодник, которому не снилась девушка-кролик. Фильм + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 6 + day: 15 + endDate: + year: 2019 + month: 6 + day: 15 + averageScore: 84 + nextAiringEpisode: null + - id: 103223 + idMal: 38003 + title: + romaji: Bungou Stray Dogs 3rd Season + english: Bungo Stray Dogs 3 + native: 文豪ストレイドッグス 第3シーズン + synonyms: + - Bungou Stray Dogs (2019) + - BSD 3 + - BungouSD 3 + - คณะประพันธกรจรจัด ภาค 3 + - 文豪野犬 第三季 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 12 + endDate: + year: 2019 + month: 6 + day: 28 + averageScore: 81 + nextAiringEpisode: null + - id: 100112 + idMal: 36407 + title: + romaji: Kenja no Mago + english: Wise Man’s Grandchild + native: 賢者の孫 + synonyms: + - The Wise Grandson + - The Sage's Grandson + - Philosopher's Grandson + - Magi's Grandson + - หลานจอมปราชญ์ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 10 + endDate: + year: 2019 + month: 6 + day: 26 + averageScore: 64 + nextAiringEpisode: null + - id: 103900 + idMal: 38186 + title: + romaji: Bokutachi wa Benkyou ga Dekinai + english: 'We Never Learn: BOKUBEN' + native: ぼくたちは勉強ができない + synonyms: + - BokuBen + - We Can't Study + - Boku-tachi wa Benkyou ga Dekinai + - 'เรื่องนี้ตําราไม่มีสอน ' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 7 + endDate: + year: 2019 + month: 6 + day: 30 + averageScore: 71 + nextAiringEpisode: null + - id: 99425 + idMal: 35848 + title: + romaji: Promare + english: Promare + native: プロメア + synonyms: + - 普罗米亚 + - Промар + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 5 + day: 24 + endDate: + year: 2019 + month: 5 + day: 24 + averageScore: 77 + nextAiringEpisode: null + - id: 105914 + idMal: 38759 + title: + romaji: Sewayaki Kitsune no Senko-san + english: The Helpful Fox Senko-san + native: 世話やきキツネの仙狐さん + synonyms: + - 贤惠幼妻仙狐小姐 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 10 + endDate: + year: 2019 + month: 6 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 104325 + idMal: 38397 + title: + romaji: Nande Koko ni Sensei ga!? + english: Why the hell are you here, Teacher!? + native: なんでここに先生が!? + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 8 + endDate: + year: 2019 + month: 6 + day: 24 + averageScore: 62 + nextAiringEpisode: null + - id: 104454 + idMal: 38472 + title: + romaji: Isekai Quartet + english: Isekai Quartet + native: 異世界かるてっと + synonyms: + - Квартет попаданцев + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 10 + endDate: + year: 2019 + month: 6 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 101281 + idMal: 37435 + title: + romaji: Carole & Tuesday + english: Carole & Tuesday + native: キャロル&チューズデイ + synonyms: + - C&T + - Carole y Tuesday + - عشق الموسيقى + - แครอลกับทูสเดย์ + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 10 + endDate: + year: 2019 + month: 10 + day: 3 + averageScore: 76 + nextAiringEpisode: null + - id: 103302 + idMal: 38080 + title: + romaji: Kono Oto Tomare! + english: 'Kono Oto Tomare!: Sounds of Life' + native: この音とまれ! + synonyms: + - Stop at this Sound! + - ฝากฝันไว้ที่เสียงโคโตะ! + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 7 + endDate: + year: 2019 + month: 6 + day: 30 + averageScore: 78 + nextAiringEpisode: null + - id: 105018 + idMal: 38594 + title: + romaji: Kimi to, Nami ni Noretara + english: Ride Your Wave + native: きみと、波にのれたら + synonyms: + - El amor está en el agua + - Піймай свою хвилю + - На твоей волне + - Mėgaukis savo banga + - Uz tava viļņa + - Сенің толқыныңда + - Sənin dalğanda + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 6 + day: 21 + endDate: + year: 2019 + month: 6 + day: 21 + averageScore: 76 + nextAiringEpisode: null + - id: 105989 + idMal: 38778 + title: + romaji: Midara na Ao-chan wa Benkyou ga Dekinai + english: Ao-chan Can't Study! + native: 淫らな青ちゃんは勉強ができない + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 6 + endDate: + year: 2019 + month: 6 + day: 22 + averageScore: 65 + nextAiringEpisode: null + - id: 101386 + idMal: 37614 + title: + romaji: Hitoribocchi no ○○ Seikatsu + english: Hitoribocchi no Marumaruseikatsu + native: ひとりぼっちの○○生活 + synonyms: + - Hitoribocchi + - Bocchi Seikatsu + - 一个人的○○小日子 + - Hitoribocchi no Marumaru Seikatsu + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 6 + endDate: + year: 2019 + month: 6 + day: 22 + averageScore: 73 + nextAiringEpisode: null + - id: 104217 + idMal: 38349 + title: + romaji: Wotaku ni Koi wa Muzukashii OVA + english: null + native: ヲタクに恋は難しい OVA + synonyms: + - WotaKoi + - 'Wotaku ni Koi wa Muzukashii: Youth' + - 'Wotakoi: Love is Hard for Otaku OVA' + - 'WotaKoi: Sore wa, ikinari otozureta=koi' + - 'ヲタ恋: それは、いきなりおとづれた=恋' + - ヲタクに恋は難しい OAD + status: FINISHED + format: OVA + episodes: 3 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 3 + day: 29 + endDate: + year: 2021 + month: 10 + day: 14 + averageScore: 79 + nextAiringEpisode: null + - id: 106051 + idMal: 38787 + title: + romaji: Senryuu Shoujo + english: Senryu Girl + native: 川柳少女 + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 6 + endDate: + year: 2019 + month: 6 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 103221 + idMal: 37981 + title: + romaji: Kaijuu no Kodomo + english: Children of the Sea + native: 海獣の子供 + synonyms: + - Los Niños del Mar + - Les enfants de la Mer + - 海兽之子 + - Дети моря + - I figli del mare + - Dzieci morza + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 6 + day: 7 + endDate: + year: 2019 + month: 6 + day: 7 + averageScore: 72 + nextAiringEpisode: null + - id: 101261 + idMal: 37426 + title: + romaji: Sarazanmai + english: Sarazanmai + native: さらざんまい + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 12 + endDate: + year: 2019 + month: 6 + day: 21 + averageScore: 73 + nextAiringEpisode: null + - id: 106967 + idMal: 38935 + title: + romaji: Miru Tights + english: null + native: みるタイツ + synonyms: + - 絲襪視界 + - 丝袜视界 + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 5 + day: 11 + endDate: + year: 2019 + month: 7 + day: 27 + averageScore: 61 + nextAiringEpisode: null + - id: 97918 + idMal: 34544 + title: + romaji: 'Koutetsujou no Kabaneri: Unato Kessen' + english: 'Kabaneri of the Iron Fortress: The Battle of Unato' + native: 甲鉄城のカバネリ 〜海門決戦〜 + synonyms: + - 'Kabaneri de la Fortaleza de Hierro: La Batalla de Unato' + - 'Kabaneri da Fortaleza de Ferro: A Batalha de Unato' + - 'حماة الحصون المنيعة: معركة الحصن المهجور' + - 'Les Kabaneri de la Forteresse de fer : la bataille d''Unato' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 5 + day: 10 + endDate: + year: 2019 + month: 5 + day: 10 + averageScore: 75 + nextAiringEpisode: null + - id: 97995 + idMal: 34620 + title: + romaji: Kono Yo no Hate de Koi wo Utau Shoujo YU-NO + english: 'YU-NO: A Girl Who Chants Love at the Bound of This World' + native: この世の果てで恋を唄う少女YU-NO + synonyms: + - 'YU-NO: A girl who chants love at the bound of this world.' + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 2 + endDate: + year: 2019 + month: 10 + day: 1 + averageScore: 62 + nextAiringEpisode: null + - id: 107418 + idMal: 39063 + title: + romaji: Fairy Gone + english: Fairy gone + native: フェアリーゴーン + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2019 + startDate: + year: 2019 + month: 4 + day: 8 + endDate: + year: 2019 + month: 6 + day: 24 + averageScore: 53 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/39-2019-summer.yaml b/test/fixtures/anilist/season_matrix/39-2019-summer.yaml new file mode 100644 index 0000000..96ce108 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/39-2019-summer.yaml @@ -0,0 +1,695 @@ +metadata: + captured_at: '2026-05-11T11:34:07Z' + label: 2019-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2019 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:07 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '13' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 105333 + idMal: 38691 + title: + romaji: Dr. STONE + english: Dr. STONE + native: Dr.STONE + synonyms: + - Dcst + - 石纪元 + - ドクターストーン + - ดร.สโตน เจ้าแห่งวิทยาศาสตร์กู้คืนอารยธรรมโลก + - Доктор Стоун + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 5 + endDate: + year: 2019 + month: 12 + day: 13 + averageScore: 81 + nextAiringEpisode: null + - id: 101348 + idMal: 37521 + title: + romaji: VINLAND SAGA + english: Vinland Saga + native: ヴィンランド・サガ + synonyms: + - סאגת וינלנד + - فينلاند ساغا + - สงครามคนทมิฬ + - Сага о Винланде + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 8 + endDate: + year: 2019 + month: 12 + day: 30 + averageScore: 87 + nextAiringEpisode: null + - id: 105310 + idMal: 38671 + title: + romaji: Enen no Shouboutai + english: Fire Force + native: 炎炎ノ消防隊 + synonyms: + - หน่วยผจญคนไฟลุก + - כוח האש + - Полум'яні вогнеборці + - Пламенный отряд + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 6 + endDate: + year: 2019 + month: 12 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 106286 + idMal: 38826 + title: + romaji: Tenki no Ko + english: Weathering With You + native: 天気の子 + synonyms: + - El Tiempo Contigo + - Weathering With You - Das Mädchen, das die Sonne berührte + - Les enfants du temps + - O Tempo Com Você + - 天气之子 + - La ragazza del tempo + - Дитя погоды + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 19 + endDate: + year: 2019 + month: 7 + day: 19 + averageScore: 81 + nextAiringEpisode: null + - id: 101167 + idMal: 37347 + title: + romaji: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II + english: Is It Wrong to Try to Pick Up Girls in a Dungeon? II + native: ダンジョンに出会いを求めるのは間違っているだろうかⅡ + synonyms: + - Danmachi II + - ダンジョンに出会いを求めるのは間違っているだろうか2 + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 2 + - 'Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth II' + - มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 2 + - ダンまちⅡ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 13 + endDate: + year: 2019 + month: 9 + day: 28 + averageScore: 71 + nextAiringEpisode: null + - id: 102976 + idMal: 38040 + title: + romaji: Kono Subarashii Sekai ni Shukufuku wo! Kurenai Densetsu + english: KONOSUBA -God's blessing on this wonderful world!- Legend of Crimson + native: この素晴らしい世界に祝福を!紅伝説 + synonyms: + - Konosuba Movie + - このすば紅伝説 + - ขอให้โชคดีมีชัยในโลกแฟนตาซี เดอะ มูฟวี่ ตำนานสีชาด + - Konosuba! Un mundo maravilloso. La leyenda del carmesí + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 8 + day: 30 + endDate: + year: 2019 + month: 8 + day: 30 + averageScore: 82 + nextAiringEpisode: null + - id: 100668 + idMal: 36882 + title: + romaji: Arifureta Shokugyou de Sekai Saikyou + english: 'Arifureta: From Commonplace to World''s Strongest' + native: ありふれた職業で世界最強 + synonyms: + - 平凡职业造就世界最强 + - อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 8 + endDate: + year: 2019 + month: 10 + day: 7 + averageScore: 65 + nextAiringEpisode: null + - id: 108430 + idMal: 39533 + title: + romaji: Given + english: given + native: ギヴン + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 12 + endDate: + year: 2019 + month: 9 + day: 20 + averageScore: 83 + nextAiringEpisode: null + - id: 109190 + idMal: 39741 + title: + romaji: 'Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou' + english: 'Violet Evergarden: Eternity and the Auto Memory Doll' + native: ヴァイオレット・エヴァーガーデン 外伝~永遠と自動手記人形~ + synonyms: + - Violet Evergarden und das Band der Freundschaft + - 'Violet Evergarden Gaiden: La Eternidad y la Muñeca de Recuerdos Automáticos' + - 'Violet Evergarden Gaiden: Eternidade e a Boneca de Automemória' + - 'فيوليت: الأبدية وذكريات الدمية الآلية' + - 'Вайолет Эвергарден: Вечность и призрак пера' + - 'Violet Evergarden: Věčnost a Píšící panenka' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 9 + day: 6 + endDate: + year: 2019 + month: 9 + day: 6 + averageScore: 83 + nextAiringEpisode: null + - id: 107226 + idMal: 39026 + title: + romaji: Dumbbell Nan Kilo Moteru? + english: How Heavy Are the Dumbbells You Lift? + native: ダンベル何キロ持てる? + synonyms: + - How Many Kilograms are the Dumbbells You Lift? + - Danberu Nan Kiro Moteru? + - 'Dumbbell : Combien tu peux soulever ?' + - แก๊งสาวป่วน ก๊วนฟิตเนส + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 3 + endDate: + year: 2019 + month: 9 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 105932 + idMal: 38753 + title: + romaji: Araburu Kisetsu no Otome-domo yo. + english: O Maidens in Your Savage Season + native: 荒ぶる季節の乙女どもよ。 + synonyms: + - AraOto + - Nuestra Salvaje Juventud + - 'O maiden: Wahai Para Dara dalam Masa Beringas' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 6 + endDate: + year: 2019 + month: 9 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 107663 + idMal: 39198 + title: + romaji: Kanata no Astra + english: ASTRA LOST IN SPACE + native: 彼方のアストラ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 3 + endDate: + year: 2019 + month: 9 + day: 18 + averageScore: 78 + nextAiringEpisode: null + - id: 107961 + idMal: 39326 + title: + romaji: Kawaikereba Hentai demo Suki ni Natte Kuremasu ka? + english: 'Hensuki: Are you willing to fall in love with a pervert, as long as she’s a cutie?' + native: 可愛ければ変態でも好きになってくれますか? + synonyms: + - Would you even fall in love with a pervert as long as it's a cutie? + - Kawaiikereba Hentai demo Suki ni Natte Kuremasu ka? + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 8 + endDate: + year: 2019 + month: 9 + day: 23 + averageScore: 62 + nextAiringEpisode: null + - id: 101547 + idMal: 37744 + title: + romaji: Isekai Cheat Magician + english: Isekai Cheat Magician + native: 異世界チート魔術師 + synonyms: + - ผ่ามิติแหกกฎมนตรา + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 10 + endDate: + year: 2019 + month: 9 + day: 25 + averageScore: 52 + nextAiringEpisode: null + - id: 106240 + idMal: 38816 + title: + romaji: HELLO WORLD + english: null + native: HELLO WORLD + synonyms: + - ハロー・ワールド + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 9 + day: 20 + endDate: + year: 2019 + month: 9 + day: 20 + averageScore: 73 + nextAiringEpisode: null + - id: 107068 + idMal: 38993 + title: + romaji: Karakai Jouzu no Takagi-san 2 + english: Teasing Master Takagi-san Season 2 + native: からかい上手の高木さん 2 + synonyms: + - Skilled Teaser Takagi-san 2nd Season + - טאקאגי-סאן אלופת ההקנטות 2 + - Nhất quỷ Nhì ma, Thứ ba Takagi 2 + - แกล้งนัก รักนะ รู้ยัง ภาค 2 + - Takagi-san, experta en bromas pesadas + - Nicht schon wieder, Takagi-san + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 7 + endDate: + year: 2019 + month: 9 + day: 22 + averageScore: 79 + nextAiringEpisode: null + - id: 104723 + idMal: 38573 + title: + romaji: Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka? + english: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + native: 通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか? + synonyms: + - Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power + - Tsuujou Kougeki ga Zentai Kougeki de 2-kai Kougeki no Okaasan wa Suki desu ka? + - Okaa-san online + - Okaasuki + - คุณแม่ที่มีสกิลพื้นฐานเป็นการโจมตีหมู่แถมยังเบิ้ลได้แบบนี้ชอบไหมจ๊ะ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 13 + endDate: + year: 2019 + month: 9 + day: 28 + averageScore: 52 + nextAiringEpisode: null + - id: 106509 + idMal: 38793 + title: + romaji: Tensei Shitara Slime Datta Ken OVA + english: That Time I Got Reincarnated as a Slime OAD + native: 転生したらスライムだった件 OVA + synonyms: + - ten·sura + - 転スラ + - Tensei Shitara Slime Datta Ken (2019) + - That Time I Got Reincarnated as a Slime OVA + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว OAD + - Moi, quand je me réincarne en Slime OAD + status: FINISHED + format: OVA + episodes: 5 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 9 + endDate: + year: 2020 + month: 11 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 105074 + idMal: 38610 + title: + romaji: Tejina Senpai + english: Magical Sempai + native: 手品先輩 + synonyms: + - Magical Senpai + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 2 + endDate: + year: 2019 + month: 9 + day: 17 + averageScore: 61 + nextAiringEpisode: null + - id: 104252 + idMal: 38297 + title: + romaji: Maou-sama, Retry! + english: Demon Lord, Retry! + native: 魔王様、リトライ! + synonyms: + - จอมมารรีไทร์ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 4 + endDate: + year: 2019 + month: 9 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 104463 + idMal: 38480 + title: + romaji: Toaru Kagaku no Accelerator + english: A Certain Scientific Accelerator + native: とある科学の一方通行【アクセラレータ】 + synonyms: + - 科学一方通行 + - แอคเซลเลอร์เรเตอร์ แฟ้มลับคดีวิทยาศาสตร์ + - แฟ้มลับคดีเด็กหาย + - Máy gia tốc khoa học nhất định + - Akselerator Ilmu Pengetahuan Tertentu + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 12 + endDate: + year: 2019 + month: 9 + day: 27 + averageScore: 70 + nextAiringEpisode: null + - id: 107956 + idMal: 39324 + title: + romaji: Uchi no Ko no Tame Naraba, Ore wa Moshikashitara Maou mo Taoseru Kamo Shirenai. + english: If It's for My Daughter, I'd Even Defeat a Demon Lord + native: うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。 + synonyms: + - For My Daughter, I'd Even Defeat a Demon Lord + - Uchinoko + - UchiMusume + - เพื่อลูกจ๋า ปะป๋าขอลุย + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 4 + endDate: + year: 2019 + month: 9 + day: 19 + averageScore: 68 + nextAiringEpisode: null + - id: 107490 + idMal: 39071 + title: + romaji: Machikado Mazoku + english: The Demon Girl Next Door + native: まちカドまぞく + synonyms: + - Street Corner Demon + - 街角魔族 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 12 + endDate: + year: 2019 + month: 9 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 105143 + idMal: 38234 + title: + romaji: ONE PIECE STAMPEDE + english: 'One Piece: Stampede' + native: ONE PIECE STAMPEDE + synonyms: + - ワンピース スタンピード + - 'One Piece: Estampida' + - 航海王:狂热行动 + - One Piece Film 14 + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 8 + day: 9 + endDate: + year: 2019 + month: 8 + day: 9 + averageScore: 80 + nextAiringEpisode: null + - id: 106918 + idMal: 38959 + title: + romaji: 'Lord El-Melloi II-sei no Jikenbo: "Rail Zeppelin" Grace note' + english: Lord El-Melloi II's Case Files {Rail Zeppelin} Grace note + native: ロード・エルメロイⅡ世の事件簿 {魔眼蒐集列車} Grace note + synonyms: + - Досье лорда Эль-Меллоя II + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2019 + startDate: + year: 2019 + month: 7 + day: 7 + endDate: + year: 2019 + month: 9 + day: 29 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/40-2019-fall.yaml b/test/fixtures/anilist/season_matrix/40-2019-fall.yaml new file mode 100644 index 0000000..3fb8b46 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/40-2019-fall.yaml @@ -0,0 +1,680 @@ +metadata: + captured_at: '2026-05-11T11:34:09Z' + label: 2019-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2019 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:09 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '12' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 104276 + idMal: 38408 + title: + romaji: Boku no Hero Academia 4 + english: My Hero Academia Season 4 + native: 僕のヒーローアカデミア4 + synonyms: + - BNHA 4 + - MHA 4 + - 我的英雄学院 4 + - 我的英雄学院第四季 + - มายฮีโร่ อคาเดเมีย ภาค 4 + - أكاديميتي للأبطال + - Моя геройская академия 4 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 12 + endDate: + year: 2020 + month: 4 + day: 4 + averageScore: 79 + nextAiringEpisode: null + - id: 107660 + idMal: 39195 + title: + romaji: BEASTARS + english: BEASTARS + native: BEASTARS + synonyms: + - ビースターズ + - BEASTARS - O Lobo Bom + - חייתיים + - บีสตาร์ + - Выдающиеся звери + - براءة ذئب + - 비스타즈 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 10 + endDate: + year: 2019 + month: 12 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 108759 + idMal: 39597 + title: + romaji: 'Sword Art Online: Alicization - War of Underworld' + english: 'Sword Art Online: Alicization - War of Underworld' + native: ソードアート・オンライン アリシゼーション War of Underworld + synonyms: + - SAOIV + - SAO4 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 13 + endDate: + year: 2019 + month: 12 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 108928 + idMal: 39701 + title: + romaji: 'Nanatsu no Taizai: Kamigami no Gekirin' + english: 'The Seven Deadly Sins: Imperial Wrath of the Gods' + native: 七つの大罪 神々の逆鱗 + synonyms: + - 'The Seven Deadly Sins: Wrath of the Gods' + - ศึกตำนาน 7 อัศวิน ภาค 3 เพลิงพิโรธของเหล่าทวยเทพ + - 'Семь смертных грехов: Гнев богов' + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 9 + endDate: + year: 2020 + month: 3 + day: 25 + averageScore: 63 + nextAiringEpisode: null + - id: 105156 + idMal: 38659 + title: + romaji: 'Shinchou Yuusha: Kono Yuusha ga Ore TUEEE Kuse ni Shinchou Sugiru' + english: 'Cautious Hero: The Hero Is Overpowered but Overly Cautious' + native: 慎重勇者~この勇者が俺TUEEEくせに慎重すぎる~ + synonyms: + - This Hero is Invincible but "Too Cautious" + - Shinchou Yuusha + - 慎重勇者~这个勇者明明超强却过分慎重~ + - ผู้กล้าสุดแกร่ง ขี้ระแวงขั้นวิกฤติ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 2 + endDate: + year: 2019 + month: 12 + day: 27 + averageScore: 73 + nextAiringEpisode: null + - id: 109963 + idMal: 39940 + title: + romaji: 'Shokugeki no Souma: Shin no Sara' + english: Food Wars! The Fourth Plate + native: 食戟のソーマ 神ノ皿 + synonyms: + - 食戟之灵:神之皿 + - ยอดนักปรุงโซมะ ภาค 4 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 12 + endDate: + year: 2019 + month: 12 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 108553 + idMal: 39565 + title: + romaji: 'Boku no Hero Academia THE MOVIE: Heroes:Rising' + english: 'My Hero Academia: Heroes Rising' + native: 僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング + synonyms: + - Boku no Hero Academia the Movie 2 + - 'My Hero Academia: El Despertar de los Héroes' + - 'มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก' + - 'มายฮีโร่ อคาเดเมีย เดอะมูฟวี่: วีรบุรุษกู้โลก' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 12 + day: 20 + endDate: + year: 2019 + month: 12 + day: 20 + averageScore: 79 + nextAiringEpisode: null + - id: 107693 + idMal: 39196 + title: + romaji: Mairimashita! Iruma-kun + english: Welcome to Demon School! Iruma-kun + native: 魔入りました!入間くん + synonyms: + - Welcome to Demon School, Iruma-kun! + - 入间同学入魔了! + - อิรุมะคุง พจญในแดนปีศาจ! + status: FINISHED + format: TV + episodes: 23 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 5 + endDate: + year: 2020 + month: 3 + day: 7 + averageScore: 77 + nextAiringEpisode: null + - id: 104464 + idMal: 38483 + title: + romaji: Ore wo Suki nano wa Omae dake ka yo + english: 'ORESUKI: Are you the only one who loves me?' + native: 俺を好きなのはお前だけかよ + synonyms: + - อุตส่าห์มีคนมาชอบทั้งที ทำไมต้องเป็นยัยนี่ด้วยนะ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 3 + endDate: + year: 2019 + month: 12 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 108268 + idMal: 39468 + title: + romaji: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen' + english: Ascendance of a Bookworm + native: 本好きの下剋上 司書になるためには手段を選んでいられません + synonyms: + - 'Ascendance of a Bookworm: I''ll do anything to become a librarian' + - 爱书的下克上:为了成为图书管理员不择手段! + - 'หนอนหนังสือยึดอำนาจ ' + status: FINISHED + format: TV + episodes: 14 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 3 + endDate: + year: 2019 + month: 12 + day: 26 + averageScore: 78 + nextAiringEpisode: null + - id: 104722 + idMal: 38572 + title: + romaji: Assassins Pride + english: ASSASSINS PRIDE + native: アサシンズプライド + synonyms: + - Assassin's Pride + - แอสแซสซินส์ ไพรด์) + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 10 + endDate: + year: 2019 + month: 12 + day: 26 + averageScore: 57 + nextAiringEpisode: null + - id: 112625 + idMal: 40542 + title: + romaji: 'Saiki Kusuo no Ψ-nan: Ψ-shidou-hen' + english: 'The Disastrous Life of Saiki K.: Reawakened' + native: 斉木楠雄のΨ難 Ψ始動編 + synonyms: + - The Disastrous Life of Saiki K. + - ' Starting Arc' + status: FINISHED + format: ONA + episodes: 6 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 12 + day: 30 + endDate: + year: 2019 + month: 12 + day: 30 + averageScore: 81 + nextAiringEpisode: null + - id: 108388 + idMal: 39523 + title: + romaji: Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu! + english: High School Prodigies Have It Easy Even In Another World + native: 超人高校生たちは異世界でも余裕で生き抜くようです! + synonyms: + - CHOYOYU! + - ¡Los prodigios de bachillerato han llegado a otro mundo! + - Les super lycéens arrivent dans un autre monde! + - I prodigi delle superiori sono arrivati in un altro mondo! + - Die Oberschul-Wunderkinder sind in einer anderen Welt eingetroffen! + - Сверходарённые школьники прибыли в другой мир + - เจ็ดเทพม.ปลายกับการใช้ชีวิตสบายๆในต่างโลก + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 3 + endDate: + year: 2019 + month: 12 + day: 19 + averageScore: 61 + nextAiringEpisode: null + - id: 110229 + idMal: 40004 + title: + romaji: Bokutachi wa Benkyou ga Dekinai! + english: 'We Never Learn!: BOKUBEN Season 2' + native: ぼくたちは勉強ができない! + synonyms: + - BokuBen 2 + - We Never Learn 2 + - Boku-tachi wa Benkyou ga Dekinai 2nd Season + - Boku-tachi wa Benkyou ga Dekinai! + - เรื่องนี้ตําราไม่มีสอน ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 6 + endDate: + year: 2019 + month: 12 + day: 29 + averageScore: 72 + nextAiringEpisode: null + - id: 103275 + idMal: 38084 + title: + romaji: 'Fate/Grand Order: Zettai Majuu Sensen Babylonia' + english: 'Fate/Grand Order Absolute Demonic Front: Babylonia' + native: Fate/Grand Order -絶対魔獣戦線バビロニア- + synonyms: + - 'FGO: Babylonia' + - フェイト/グランドオーダー -絶対魔獣戦線バビロニア- + - 'Судьба/Великий приказ: Вавилония' + status: FINISHED + format: TV + episodes: 21 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 5 + endDate: + year: 2020 + month: 3 + day: 21 + averageScore: 78 + nextAiringEpisode: null + - id: 104052 + idMal: 37972 + title: + romaji: Hoshiai no Sora + english: Stars Align + native: 星合の空 + synonyms: + - Star-Crossing Skies + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 11 + endDate: + year: 2019 + month: 12 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 108307 + idMal: 39491 + title: + romaji: PSYCHO-PASS 3 + english: PSYCHO-PASS 3 + native: PSYCHO-PASS サイコパス3 + synonyms: [] + status: FINISHED + format: TV + episodes: 8 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 24 + endDate: + year: 2019 + month: 12 + day: 13 + averageScore: 73 + nextAiringEpisode: null + - id: 101227 + idMal: 37393 + title: + romaji: Watashi, Nouryoku wa Heikinchi de tte Itta yo ne! + english: Didn't I Say to Make My Abilities Average in the Next Life?! + native: 私、能力は平均値でって言ったよね! + synonyms: + - Noukin + - ก็บอกว่าขอแค่ค่าเฉลี่ยไงล่ะคะ! + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 7 + endDate: + year: 2019 + month: 12 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 108478 + idMal: 39539 + title: + romaji: No Guns Life + english: No Guns Life + native: ノー・ガンズ・ライフ + synonyms: + - The Way of Life of a Man Loading a Magazine + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 11 + endDate: + year: 2019 + month: 12 + day: 27 + averageScore: 66 + nextAiringEpisode: null + - id: 101239 + idMal: 37403 + title: + romaji: Ahiru no Sora + english: Ahiru no Sora + native: あひるの空 + synonyms: [] + status: FINISHED + format: TV + episodes: 50 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 2 + endDate: + year: 2020 + month: 9 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 100675 + idMal: 36885 + title: + romaji: Saenai Heroine no Sodatekata Fine + english: 'Saekano the Movie: Finale' + native: 冴えない彼女の育てかた Fine + synonyms: + - Saekano Movie + - Saekano Fine + - Saenai Heroine no Sodatekata Movie + - วิธีปั้นสาวบ้านให้มาเป็นนางเอกของผม เดอะ มูฟวี่ + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 26 + endDate: + year: 2019 + month: 10 + day: 26 + averageScore: 83 + nextAiringEpisode: null + - id: 107339 + idMal: 39030 + title: + romaji: Hataage! Kemono Michi + english: 'Kemono Michi: Rise Up' + native: 旗揚!けものみち + synonyms: + - Rise Up! Animal Road + - 旗扬!兽道 + - เคโมโนมิจิ ร้านสัตว์เลี้ยงในโลกแฟนตาซี + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 2 + endDate: + year: 2019 + month: 12 + day: 18 + averageScore: 64 + nextAiringEpisode: null + - id: 104159 + idMal: 38328 + title: + romaji: Azur Lane + english: AZUR LANE + native: アズールレーン + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 3 + endDate: + year: 2020 + month: 3 + day: 20 + averageScore: 58 + nextAiringEpisode: null + - id: 101349 + idMal: 37525 + title: + romaji: Babylon + english: BABYLON + native: バビロン + synonyms: + - Babilonia + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 7 + endDate: + year: 2020 + month: 1 + day: 27 + averageScore: 64 + nextAiringEpisode: null + - id: 108891 + idMal: 38889 + title: + romaji: Kono Oto Tomare! 2 + english: 'Kono Oto Tomare!: Sounds of Life Season 2' + native: この音とまれ!2 + synonyms: + - Stop at this Sound! 2 + - ฝากฝันไว้ที่เสียงโคโตะ! ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2019 + startDate: + year: 2019 + month: 10 + day: 6 + endDate: + year: 2019 + month: 12 + day: 29 + averageScore: 83 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/41-2020-winter.yaml b/test/fixtures/anilist/season_matrix/41-2020-winter.yaml new file mode 100644 index 0000000..a7c2048 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/41-2020-winter.yaml @@ -0,0 +1,679 @@ +metadata: + captured_at: '2026-05-11T11:34:12Z' + label: 2020-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2020 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:12 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '11' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 106625 + idMal: 38883 + title: + romaji: Haikyuu!! TO THE TOP + english: HAIKYU!! TO THE TOP + native: ハイキュー!! TO THE TOP + synonyms: + - Haikyu!! Season 4 + - Haikyuu!! Season 4 + - ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 1 + - 排球少年!! 第四季 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 11 + endDate: + year: 2020 + month: 4 + day: 4 + averageScore: 83 + nextAiringEpisode: null + - id: 108463 + idMal: 39534 + title: + romaji: Jibaku Shounen Hanako-kun + english: Toilet-bound Hanako-kun + native: 地縛少年 花子くん + synonyms: + - 지박소년 하나코 군 + - 地缚少年花子君 + - Туалетный мальчик Ханако + - Hanako-kun e os Mistérios do Colégio Kamone + - ฮานาโกะคุง วิญญาณติดที่ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 10 + endDate: + year: 2020 + month: 3 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 105228 + idMal: 38668 + title: + romaji: Dorohedoro + english: Dorohedoro + native: ドロヘドロ + synonyms: + - دوروهيدورو + - สาปพันธุ์อสูร + - Дорохедоро + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 13 + endDate: + year: 2020 + month: 3 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 106479 + idMal: 38790 + title: + romaji: Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. + english: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense.' + native: 痛いのは嫌なので防御力に極振りしたいと思います。 + synonyms: + - I hate being in pain, so I think I’ll make a full defense build + - bofuri + - 因为太怕痛就全点防御力了。 + - 'Bofuri : Je suis pas venue ici pour souffrir alors j''ai tout mis en défense.' + - น้องโล่สายแทงก์แกร่งเกินร้อย + - 'Bofuri: Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan' + - Бофури. Я боюсь боли, так что качаю только защиту + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 8 + endDate: + year: 2020 + month: 3 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 105190 + idMal: 38656 + title: + romaji: Darwin's Game + english: Darwin's Game + native: ダーウィンズゲーム + synonyms: + - 达尔文游戏 + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 4 + endDate: + year: 2020 + month: 3 + day: 21 + averageScore: 70 + nextAiringEpisode: null + - id: 100643 + idMal: 36862 + title: + romaji: 'Made in Abyss: Fukaki Tamashii no Reimei' + english: 'Made in Abyss: Dawn of the Deep Soul' + native: メイドインアビス 深き魂の黎明 + synonyms: + - 'Made in Abyss: Dawn of a Deep Soul' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 17 + endDate: + year: 2020 + month: 1 + day: 17 + averageScore: 85 + nextAiringEpisode: null + - id: 107201 + idMal: 39017 + title: + romaji: Kyokou Suiri + english: In/Spectre + native: 虚構推理 + synonyms: + - 虚构推理 + - ไขปมปริศนาภูต + - Ложные выводы + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 12 + endDate: + year: 2020 + month: 3 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 101168 + idMal: 37345 + title: + romaji: Plunderer + english: Plunderer + native: プランダラ + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 9 + endDate: + year: 2020 + month: 6 + day: 25 + averageScore: 63 + nextAiringEpisode: null + - id: 111790 + idMal: 40262 + title: + romaji: Haikyuu!! Riku VS Kuu + english: HAIKYU!! LAND VS. AIR + native: ハイキュー!! 陸 VS 空 + synonyms: + - ボールの"道" + - Booru no "Michi" + - The "Path" of the Ball + - Haikyuu!! OVA + - ไฮคิว คู่ตบฟ้าประทาน Riku vs Kuu OVA + status: FINISHED + format: OVA + episodes: 2 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 10 + endDate: + year: 2020 + month: 1 + day: 10 + averageScore: 79 + nextAiringEpisode: null + - id: 110350 + idMal: 40046 + title: + romaji: 'ID: INVADED' + english: 'ID: INVADED' + native: イド:インヴェイデッド + synonyms: + - 异度侵入 ID:INVADED + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 6 + endDate: + year: 2020 + month: 3 + day: 23 + averageScore: 77 + nextAiringEpisode: null + - id: 107067 + idMal: 38992 + title: + romaji: Rikei ga Koi ni Ochita no de Shoumei shitemita. + english: Science Fell in Love, So I Tried to Prove It + native: 理系が恋に落ちたので証明してみた。 + synonyms: + - RikeKoi + - 理科生坠入情网,故尝试证明。 + - พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 11 + endDate: + year: 2020 + month: 1 + day: 11 + averageScore: 72 + nextAiringEpisode: null + - id: 109298 + idMal: 39792 + title: + romaji: Eizouken ni wa Te wo Dasu na! + english: Keep Your Hands Off Eizouken! + native: 映像研には手を出すな! + synonyms: + - Don't mess with the Motion Picture Club! + - Hands off the Motion Picture Club! + - 别对映像研出手! + - Ước mơ sản xuất anime + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 6 + endDate: + year: 2020 + month: 3 + day: 23 + averageScore: 80 + nextAiringEpisode: null + - id: 110270 + idMal: 40010 + title: + romaji: Ishuzoku Reviewers + english: Interspecies Reviewers + native: 異種族レビュアーズ + synonyms: + - 异种族风俗娘评鉴指南 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 11 + endDate: + year: 2020 + month: 3 + day: 28 + averageScore: 72 + nextAiringEpisode: null + - id: 108623 + idMal: 39576 + title: + romaji: 'Goblin Slayer: GOBLIN''S CROWN' + english: GOBLIN SLAYER -GOBLIN’S CROWN- + native: ゴブリンスレイヤー -GOBLIN'S CROWN- + synonyms: + - 'Goblin Slayer: Korona' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 2 + day: 1 + endDate: + year: 2020 + month: 2 + day: 1 + averageScore: 71 + nextAiringEpisode: null + - id: 108617 + idMal: 39575 + title: + romaji: Somali to Mori no Kamisama + english: Somali and the Forest Spirit + native: ソマリと森の神様 + synonyms: + - Somari and the Guardian of the Forest + - ' Somali et l''esprit de la forêt' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 10 + endDate: + year: 2020 + month: 3 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 104462 + idMal: 38481 + title: + romaji: Toaru Kagaku no Railgun T + english: A Certain Scientific Railgun T + native: とある科学の超電磁砲T + synonyms: + - Toaru Kagaku no Railgun 3 + - とある科学の超電磁砲3 + - A Certain Scientific Railgun 3 + - เรลกัน แฟ้มลับคดีวิทยาศาสตร์ T + - เรลกัน แฟ้มลับคดีวิทยาศาสตร์ ภาค 3 + - Siêu Railgun của khoa học nào đó + - Railgun T Ilmu Pengetahuan Tertentu + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 110178 + idMal: 39988 + title: + romaji: Isekai Quartet 2 + english: Isekai Quartet 2 + native: 異世界かるてっと 2 + synonyms: + - Квартет попаданцев 2 + status: FINISHED + format: TV_SHORT + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 15 + endDate: + year: 2020 + month: 4 + day: 1 + averageScore: 72 + nextAiringEpisode: null + - id: 106863 + idMal: 38924 + title: + romaji: Nekopara + english: Nekopara + native: ネコぱら + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 9 + endDate: + year: 2020 + month: 3 + day: 26 + averageScore: 64 + nextAiringEpisode: null + - id: 112293 + idMal: 40483 + title: + romaji: Murenase! Seton Gakuen + english: 'Seton Academy: Join the Pack!' + native: 群れなせ!シートン学園 + synonyms: + - Murenase! Shiiton Gakuen + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 7 + endDate: + year: 2020 + month: 3 + day: 24 + averageScore: 67 + nextAiringEpisode: null + - id: 107420 + idMal: 38909 + title: + romaji: Infinite Dendrogram + english: Infinite Dendrogram + native: インフィニット・デンドログラム + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 9 + endDate: + year: 2020 + month: 4 + day: 16 + averageScore: 59 + nextAiringEpisode: null + - id: 104051 + idMal: 38256 + title: + romaji: 'Magia Record: Mahou Shoujo Madoka☆Magica Gaiden' + english: 'Magia Record: Puella Magi Madoka Magica Side Story' + native: マギアレコード 魔法少女まどか☆マギカ外伝 + synonyms: + - MagiReco + - Magia Record + - สาวน้อยเวทมนตร์ มาโดกะ + - สาวน้อยเวทมนตร์ มาโดกะ [บันทึกมากิอา] + - 'Записи о магии: Другая история девочки-волшебницы Мадоки' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 5 + endDate: + year: 2020 + month: 3 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 111501 + idMal: 40392 + title: + romaji: Runway de Waratte + english: Smile Down the Runway + native: ランウェイで笑って + synonyms: + - Smile at the Runway + - ถักทอฝันสู่รันเวย์ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 11 + endDate: + year: 2020 + month: 3 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 112125 + idMal: 40453 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II: Mujintou ni Yakusou wo Motomeru no wa Machigatteiru + Darou ka' + english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to Go Searching for Herbs on a Deserted + Island?' + native: ダンジョンに出会いを求めるのは間違っているだろうかⅡ 無人島に薬草を求めるのは間違っているだろうか + synonyms: + - Is It Wrong to Try to Pick Up Girls in a Dungeon? II OVA + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA + - ダンまちⅡ OVA + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 29 + endDate: + year: 2020 + month: 1 + day: 29 + averageScore: 63 + nextAiringEpisode: null + - id: 108092 + idMal: 39388 + title: + romaji: Koisuru Asteroid + english: Asteroid in Love + native: 恋する小惑星〈アステロイド〉 + synonyms: + - Koisuru Shouwakusei + - KoiAs + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 3 + endDate: + year: 2020 + month: 3 + day: 27 + averageScore: 67 + nextAiringEpisode: null + - id: 113417 + idMal: 40746 + title: + romaji: Overflow + english: Overflow + native: おーばーふろぉ + synonyms: + - 오버플로우 + - 'Overflow: Desbordándose' + - 'Overflow: Transbordando' + - Accident Dans Le Bain + status: FINISHED + format: ONA + episodes: 8 + season: WINTER + seasonYear: 2020 + startDate: + year: 2020 + month: 1 + day: 6 + endDate: + year: 2020 + month: 2 + day: 24 + averageScore: 68 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/42-2020-spring.yaml b/test/fixtures/anilist/season_matrix/42-2020-spring.yaml new file mode 100644 index 0000000..4a9bc49 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/42-2020-spring.yaml @@ -0,0 +1,682 @@ +metadata: + captured_at: '2026-05-11T11:34:15Z' + label: 2020-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2020 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:14 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '10' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 112641 + idMal: 40591 + title: + romaji: 'Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen' + english: 'Kaguya-sama: Love is War?' + native: かぐや様は告らせたい?~天才たちの恋愛頭脳戦~ + synonyms: + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2' + - 'Kaguya-sama: Love is War Season 2' + - 辉夜大小姐想让我告白~天才们的恋爱头脑战~第二季 + - 辉夜大小姐想让我告白~天才们的恋爱头脑战~ 2 + - 'Kaguya-sama wa Kokurasetai?: Tensai-tachi no Renai Zunousen' + - สารภาพรักกับคุณคางุยะซะดีๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 2 + - 'Госпожа Кагуя: в любви как на войне. 2 сезон' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 11 + endDate: + year: 2020 + month: 6 + day: 27 + averageScore: 85 + nextAiringEpisode: null + - id: 115230 + idMal: 40221 + title: + romaji: 'Kami no Tou: Tower of God' + english: Tower of God + native: 神之塔 -Tower of God- + synonyms: + - タワーオブ・ゴッド + - 신의 탑 + - Sinui Tap + - Kami no Tou + - TOG + - Башня Бога + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 2 + endDate: + year: 2020 + month: 6 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 110349 + idMal: 40052 + title: + romaji: GREAT PRETENDER + english: Great Pretender + native: GREAT PRETENDER + synonyms: + - 大欺诈师 + - הנוכל + - المحتال العظيم + - El timador timado + - Великий притворщик + - Ο Μεγάλος Υποκριτής + - EL GRAN FARSANTE + - GrePre + - グレプリ + status: FINISHED + format: ONA + episodes: 23 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 6 + day: 2 + endDate: + year: 2020 + month: 9 + day: 21 + averageScore: 81 + nextAiringEpisode: null + - id: 114963 + idMal: 41168 + title: + romaji: Nakitai Watashi wa Neko wo Kaburu + english: A Whisker Away + native: 泣きたい私は猫をかぶる + synonyms: + - Nakineko + - Amor de Gata + - Loin de moi, près de toi + - Olhos de Gato + - Um ein Schnurrhaar + - Miyo - Un amore felino + - Для тебя я стану кошкой + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 6 + day: 18 + endDate: + year: 2020 + month: 6 + day: 18 + averageScore: 73 + nextAiringEpisode: null + - id: 111762 + idMal: 40417 + title: + romaji: 'Fruits Basket: 2nd Season' + english: Fruits Basket Season 2 + native: フルーツバスケット 2nd Season + synonyms: + - Furuba + - Fruba + - フルバ + - 水果篮子 第二季 + - เสน่ห์สาวข้าวปั้น ภาค 2 + - Fruits Basket (2019) 2 + - Корзинка фруктов 2 + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 7 + endDate: + year: 2020 + month: 9 + day: 22 + averageScore: 85 + nextAiringEpisode: null + - id: 114888 + idMal: 41120 + title: + romaji: 'Fugou Keiji: Balance:UNLIMITED' + english: 'The Millionaire Detective - Balance: UNLIMITED' + native: 富豪刑事 Balance:UNLIMITED + synonyms: [] + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 108241 + idMal: 39463 + title: + romaji: Gleipnir + english: Gleipnir + native: グレイプニル + synonyms: + - 格莱普尼尔 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 5 + endDate: + year: 2020 + month: 6 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 114043 + idMal: 40902 + title: + romaji: 'Shokugeki no Souma: Gou no Sara' + english: Food Wars! The Fifth Plate + native: 食戟のソーマ 豪ノ皿 + synonyms: + - 食戟之灵:豪之皿 + - ยอดนักปรุงโซมะ ภาค 5 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 11 + endDate: + year: 2020 + month: 9 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 104647 + idMal: 38555 + title: + romaji: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… + english: 'My Next Life as a Villainess: All Routes Lead to Doom!' + native: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった… + synonyms: + - I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags.. + - Hamefura + - Hamehura + - Bakarina + - 转生成为了只有乙女游戏破灭Flag的邪恶大小姐… + - เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 5 + endDate: + year: 2020 + month: 6 + day: 21 + averageScore: 73 + nextAiringEpisode: null + - id: 110354 + idMal: 40060 + title: + romaji: BNA + english: BNA + native: BNA ビー・エヌ・エー + synonyms: + - Brand New Animal + - 'BNA: Brand New Animal' + - יש חיה כזאת + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 3 + day: 21 + endDate: + year: 2020 + month: 5 + day: 6 + averageScore: 72 + nextAiringEpisode: null + - id: 113311 + idMal: 40716 + title: + romaji: Kakushigoto + english: Kakushigoto + native: かくしごと + synonyms: + - ความลับของคุณพ่อเลี้ยงเดี่ยว + - Тайная работа Какуси Гото + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 2 + endDate: + year: 2020 + month: 6 + day: 18 + averageScore: 78 + nextAiringEpisode: null + - id: 109020 + idMal: 39710 + title: + romaji: Yesterday wo Utatte + english: SING "YESTERDAY" FOR ME + native: イエスタデイをうたって + synonyms: + - Sing Yesterday for Me + - Спой мне "Yesterday" + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 5 + endDate: + year: 2020 + month: 6 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 107871 + idMal: 39292 + title: + romaji: Princess Connect! Re:Dive + english: Princess Connect! Re:Dive + native: プリンセスコネクト!Re:Dive + synonyms: + - Priconne + - 'ปรินเซส คอนเนค รี: ไดฟ์' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 7 + endDate: + year: 2020 + month: 6 + day: 30 + averageScore: 69 + nextAiringEpisode: null + - id: 106319 + idMal: 38830 + title: + romaji: Hachi-nan tte, Sore wa Nai deshou! + english: The 8th Son? Are You Kidding Me? + native: 八男って、それはないでしょう! + synonyms: + - ผมเนี่ยนะ...ชายแปด! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 2 + endDate: + year: 2020 + month: 6 + day: 18 + averageScore: 61 + nextAiringEpisode: null + - id: 113693 + idMal: 40815 + title: + romaji: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season' + english: Ascendance of a Bookworm Part 2 + native: 本好きの下剋上 司書になるためには手段を選んでいられません 第2期 + synonyms: + - Ascendance of a Bookworm Season 2 + - 爱书的下克上:为了成为图书管理员不择手段!2 + - หนอนหนังสือยึดอำนาจ ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 5 + endDate: + year: 2020 + month: 6 + day: 21 + averageScore: 79 + nextAiringEpisode: null + - id: 108522 + idMal: 39555 + title: + romaji: 'Baki: Dai Raitaisai-hen' + english: 'Baki: The Great Raitai Tournament Saga' + native: バキ 大擂台賽編 + synonyms: + - Baki 2nd Season + - 'Баки: Великий турнир Райтай' + - 'BAKI: La saga del gran torneo de Raitai' + - Baki. Saga Wielkiego Turnieju Raitai + status: FINISHED + format: ONA + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 6 + day: 4 + endDate: + year: 2020 + month: 6 + day: 4 + averageScore: 74 + nextAiringEpisode: null + - id: 112444 + idMal: 40532 + title: + romaji: Appare-Ranman! + english: APPARE-RANMAN! + native: 天晴爛漫! + synonyms: + - Appare Ranman! + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 110547 + idMal: 40128 + title: + romaji: Arte + english: Arte + native: アルテ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 4 + endDate: + year: 2020 + month: 6 + day: 20 + averageScore: 69 + nextAiringEpisode: null + - id: 113917 + idMal: 40858 + title: + romaji: 'PSYCHO-PASS 3: FIRST INSPECTOR' + english: 'PSYCHO-PASS 3: First Inspector' + native: PSYCHO-PASS サイコパス 3 FIRST INSPECTOR + synonyms: + - 'PSYCHO-PASS 3: PRIMEIRO INSPETOR' + status: FINISHED + format: ONA + episodes: 3 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 3 + day: 27 + endDate: + year: 2020 + month: 3 + day: 27 + averageScore: 76 + nextAiringEpisode: null + - id: 110458 + idMal: 38843 + title: + romaji: 'Shironeko Project: ZERO CHRONICLE' + english: Shironeko Project ZERO CHRONICLE + native: 白猫プロジェクトZERO CHRONICLE + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 6 + endDate: + year: 2020 + month: 6 + day: 22 + averageScore: 52 + nextAiringEpisode: null + - id: 108266 + idMal: 39469 + title: + romaji: Tsugu Tsugumomo + english: Tsugumomo2 + native: 継つぐもも + synonyms: + - สึกุโมโมะ ภูตสาวแสบดุ ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 5 + endDate: + year: 2020 + month: 6 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 112353 + idMal: 40513 + title: + romaji: Nami yo Kiitekure + english: Wave, Listen to Me! + native: 波よ聞いてくれ + synonyms: + - Born to Be On Air! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 4 + endDate: + year: 2020 + month: 6 + day: 20 + averageScore: 70 + nextAiringEpisode: null + - id: 112296 + idMal: 40485 + title: + romaji: Strike the Blood IV + english: null + native: ストライク・ザ・ブラッド IV + synonyms: + - Strike the Blood Fourth + - ราชันย์โลหิตรัตติกาล ภาค 4 + status: FINISHED + format: OVA + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 8 + endDate: + year: 2021 + month: 6 + day: 30 + averageScore: 67 + nextAiringEpisode: null + - id: 109019 + idMal: 39730 + title: + romaji: Houkago Teibou Nisshi + english: Diary of Our Days at the Breakwater + native: 放課後ていぼう日誌 + synonyms: + - Afterschool Embankment Journal + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 7 + endDate: + year: 2020 + month: 9 + day: 22 + averageScore: 72 + nextAiringEpisode: null + - id: 113108 + idMal: 40682 + title: + romaji: Kingdom 3rd Season + english: Kingdom Season 3 + native: キングダム 第3シリーズ + synonyms: + - สงครามบัลลังก์ผงาดจิ๋นซี ภาค 3 + - Царство 3 + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2020 + startDate: + year: 2020 + month: 4 + day: 6 + endDate: + year: 2021 + month: 10 + day: 18 + averageScore: 86 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/43-2020-summer.yaml b/test/fixtures/anilist/season_matrix/43-2020-summer.yaml new file mode 100644 index 0000000..7a92fca --- /dev/null +++ b/test/fixtures/anilist/season_matrix/43-2020-summer.yaml @@ -0,0 +1,667 @@ +metadata: + captured_at: '2026-05-11T11:34:17Z' + label: 2020-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2020 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:17 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '9' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 108632 + idMal: 39587 + title: + romaji: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season + english: Re:ZERO -Starting Life in Another World- Season 2 + native: Re:ゼロから始める異世界生活 2nd Season + synonyms: + - Re:Zero kara Hajimeru Isekai Seikatsu (2020) + - 'Re: 제로부터 시작하는 이세계 생활 2기' + - Re:从零开始的异世界生活第二季(上半) + - Re:从零开始的异世界生活 2 上半 + - Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 + - Re:Zero — жизнь с нуля в другом мире. Второй сезон + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 8 + endDate: + year: 2020 + month: 9 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 113813 + idMal: 40839 + title: + romaji: Kanojo, Okarishimasu + english: Rent-a-Girlfriend + native: 彼女、お借りします + synonyms: + - I'd like to Borrow a Girlfriend + - Kanokari + - สะดุดรักยัยแฟนเช่า + - Pacar Sewaan + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 11 + endDate: + year: 2020 + month: 9 + day: 26 + averageScore: 66 + nextAiringEpisode: null + - id: 116006 + idMal: 41353 + title: + romaji: THE GOD OF HIGH SCHOOL + english: The God of High School + native: THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール + synonyms: + - GoH + - 갓 오브 하이스쿨 + - Бог старшей школы + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 6 + endDate: + year: 2020 + month: 9 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 114236 + idMal: 40956 + title: + romaji: 'Enen no Shouboutai: Ni no Shou' + english: Fire Force Season 2 + native: 炎炎ノ消防隊 弐ノ章 + synonyms: + - Enen no Shouboutai 2 + - หน่วยผจญคนไฟลุก ภาค 2 + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 4 + endDate: + year: 2020 + month: 12 + day: 12 + averageScore: 78 + nextAiringEpisode: null + - id: 112301 + idMal: 40496 + title: + romaji: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou' + english: 'The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with + His Descendants' + native: 魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ + synonyms: + - Maou Gakuin no Futekigousha + - The Misfit of Demon King Academy + - 魔王学院の不適合者 + - 'ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน' + - 魔王学院的不适任者~史上最强的魔王始祖,转生就读子孙们的学校~ + - Непригодный для Академии владыки тьмы + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 4 + endDate: + year: 2020 + month: 9 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 108489 + idMal: 39547 + title: + romaji: Yahari Ore no Seishun Love Come wa Machigatteiru. Kan + english: My Teen Romantic Comedy SNAFU Climax! + native: やはり俺の青春ラブコメはまちがっている。完 + synonyms: + - Oregairu 3 + - 俺ガイル3 + - กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาค 3 + - กะแล้วชีวิตรักวัยรุ่นของผมมันต้องไม่สดใสเลยสักนิด ภาคอวสาน + - Oregairu Kan + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 82 + nextAiringEpisode: null + - id: 103047 + idMal: 37987 + title: + romaji: Violet Evergarden Movie + english: 'Violet Evergarden: the Movie' + native: 劇場版 ヴァイオレット・エヴァーガーデン + synonyms: + - Виолетта Эвергарден + - Вайоллет Эвергарден + - 薇尔莉特·伊芙加登 + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 9 + day: 18 + endDate: + year: 2020 + month: 9 + day: 18 + averageScore: 87 + nextAiringEpisode: null + - id: 114308 + idMal: 40540 + title: + romaji: 'Sword Art Online: Alicization - War of Underworld Part 2' + english: 'Sword Art Online: Alicization - War of Underworld Part 2' + native: ソードアート・オンライン アリシゼーション War of Underworld 最終章 (2nd Season) + synonyms: + - 'Sword Art Online: Alicization - War of Underworld Last Season' + - SAOV + - SAO5 + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 12 + endDate: + year: 2020 + month: 9 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 115113 + idMal: 41226 + title: + romaji: Uzaki-chan wa Asobitai! + english: Uzaki-chan Wants to Hang Out! + native: 宇崎ちゃんは遊びたい! + synonyms: + - 宇崎学妹想要玩! + - รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 67 + nextAiringEpisode: null + - id: 21719 + idMal: 33050 + title: + romaji: Fate/stay night [Heaven's Feel] III. spring song + english: Fate/stay night [Heaven’s Feel] III. spring song + native: Fate/stay night[Heaven's Feel] ⅠⅠⅠ.spring song + synonyms: + - Fate/HF III + - 'Судьба/Ночь схватки: Прикосновение небес 3' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 8 + day: 15 + endDate: + year: 2020 + month: 8 + day: 15 + averageScore: 85 + nextAiringEpisode: null + - id: 110353 + idMal: 40056 + title: + romaji: Deca-Dence + english: DECA-DENCE + native: デカダンス + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 8 + endDate: + year: 2020 + month: 9 + day: 23 + averageScore: 71 + nextAiringEpisode: null + - id: 111734 + idMal: 40421 + title: + romaji: Given Movie + english: Given The Movie + native: 映画 ギヴン + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 8 + day: 22 + endDate: + year: 2020 + month: 8 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 112788 + idMal: 40615 + title: + romaji: Umibe no Étranger + english: The Stranger by the Shore + native: 海辺のエトランゼ + synonyms: + - Seaside Stranger + - Umibe no Etranger + - L'Étranger de la plage + - The Stranger by the Beach + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 9 + day: 11 + endDate: + year: 2020 + month: 9 + day: 11 + averageScore: 77 + nextAiringEpisode: null + - id: 113286 + idMal: 40708 + title: + romaji: Monster Musume no Oisha-san + english: Monster Girl Doctor + native: モンスター娘のお医者さん + synonyms: + - MonIsha + - モン医者 + - รักษาหนูหน่อยคุณหมอมอนสเตอร์ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 12 + endDate: + year: 2020 + month: 9 + day: 27 + averageScore: 62 + nextAiringEpisode: null + - id: 111965 + idMal: 40436 + title: + romaji: Peter Grill to Kenja no Jikan + english: Peter Grill and the Philosopher's Time + native: ピーターグリルと賢者の時間 + synonyms: [] + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 11 + endDate: + year: 2020 + month: 9 + day: 26 + averageScore: 53 + nextAiringEpisode: null + - id: 122349 + idMal: 42603 + title: + romaji: 'Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren' + english: 'My Hero Academia: Make It! Do-or-Die Survival Training' + native: 僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練 + synonyms: [] + status: FINISHED + format: ONA + episodes: 2 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 8 + day: 16 + endDate: + year: 2020 + month: 8 + day: 16 + averageScore: 70 + nextAiringEpisode: null + - id: 112357 + idMal: 40515 + title: + romaji: 'Nihon Chinbotsu: 2020' + english: 'Japan Sinks: 2020' + native: 日本沈没2020 + synonyms: + - '2020: Japão Submerso' + - 'El Hundimiento de Japón: 2020' + - 'Japón se hunde: 2020' + status: FINISHED + format: ONA + episodes: 10 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 9 + endDate: + year: 2020 + month: 7 + day: 9 + averageScore: 64 + nextAiringEpisode: null + - id: 112818 + idMal: 40623 + title: + romaji: Dokyuu Hentai HxEros + english: SUPER HXEROS + native: ド級編隊エグゼロス + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 4 + endDate: + year: 2020 + month: 9 + day: 26 + averageScore: 54 + nextAiringEpisode: null + - id: 114195 + idMal: 40936 + title: + romaji: 'Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set' + english: 'ORESUKI: Are you the only one who loves me?: Our Playball / Our End Run / Our Game' + native: 俺を好きなのはお前だけかよ~俺たちのゲームセット~ + synonyms: [] + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 9 + day: 2 + endDate: + year: 2020 + month: 9 + day: 2 + averageScore: 73 + nextAiringEpisode: null + - id: 119113 + idMal: 42091 + title: + romaji: 'Shingeki no Kyojin: Chronicle' + english: Attack on Titan ~Chronicle~ + native: 進撃の巨人 〜クロニクル〜 + synonyms: + - ผ่าพิภพไททัน Chronicle + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 17 + endDate: + year: 2020 + month: 7 + day: 17 + averageScore: 77 + nextAiringEpisode: null + - id: 111852 + idMal: 40416 + title: + romaji: 'Date A Bullet: Dead or Bullet' + english: 'Date A Bullet: Dead or Bullet & Nightmare or Queen' + native: デート・ア・バレット デッド・オア・バレット + synonyms: + - พิชิตรัก พิทักษ์โลก เดอะมูฟวี่ Date A Bullet + - 'Рандеву с пулей: Смерть или пуля' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 8 + day: 14 + endDate: + year: 2020 + month: 8 + day: 14 + averageScore: 73 + nextAiringEpisode: null + - id: 109125 + idMal: 39753 + title: + romaji: Omoi, Omoware, Furi, Furare + english: null + native: 思い、思われ、ふり、ふられ + synonyms: + - Love, Be Loved, Leave, Be Left + - Love Me, Love Me Not + - Любит — не любит + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 9 + day: 18 + endDate: + year: 2020 + month: 9 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 110857 + idMal: 40215 + title: + romaji: Aggressive Retsuko Season 3 + english: 'Aggretsuko: Season 3' + native: アグレッシブ烈子 シーズン3 + synonyms: [] + status: FINISHED + format: ONA + episodes: 10 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 8 + day: 27 + endDate: + year: 2020 + month: 8 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 112803 + idMal: 40529 + title: + romaji: No Guns Life 2 + english: No Guns Life Season 2 + native: ノー・ガンズ・ライフ 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 10 + endDate: + year: 2020 + month: 9 + day: 25 + averageScore: 69 + nextAiringEpisode: null + - id: 110371 + idMal: 40075 + title: + romaji: 'Koi to Producer: EVOL×LOVE' + english: 'Mr Love: Queen''s Choice' + native: 恋とプロデューサー~EVOL×LOVE~ + synonyms: + - Love and Producer + - 恋与制作人 + - Lian Yu Zhizuoren + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2020 + startDate: + year: 2020 + month: 7 + day: 16 + endDate: + year: 2020 + month: 9 + day: 30 + averageScore: 59 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/44-2020-fall.yaml b/test/fixtures/anilist/season_matrix/44-2020-fall.yaml new file mode 100644 index 0000000..74685c1 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/44-2020-fall.yaml @@ -0,0 +1,696 @@ +metadata: + captured_at: '2026-05-11T11:34:20Z' + label: 2020-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2020 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:19 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '29' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 113415 + idMal: 40748 + title: + romaji: Jujutsu Kaisen + english: JUJUTSU KAISEN + native: 呪術廻戦 + synonyms: + - JJK + - Sorcery Fight + - 咒术回战 + - 주술회전 + - มหาเวทย์ผนึกมาร + - جوجوتسو كايسن + - Магическая битва + - 咒術迴戰 + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 3 + endDate: + year: 2021 + month: 3 + day: 27 + averageScore: 84 + nextAiringEpisode: null + - id: 112151 + idMal: 40456 + title: + romaji: 'Kimetsu no Yaiba: Mugen Ressha-hen' + english: 'Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train' + native: 鬼滅の刃 無限列車編 + synonyms: + - KnY Movie + - 'Els Guardians de la Nit: El Tren Infinit' + - 'Guardianes de la Noche: Tren Infinito' + - 'Demon Slayer: Mugen Treni' + - 'Demon Slayer: Il Treno Mugen' + - 鬼灭之刃:无限列车篇 + - 'قاتل الشياطين الفيلم: قطار اللانهاية' + - 'ดาบพิฆาตอสูร เดอะมูฟวี่ : ศึกรถไฟสู่นิรันดร์' + - 'Demon Slayer: Kimetsu no Yaiba - Le film : Le train de l''Infini' + - 'ΚΥΝΗΓΟΣ ΔΑΙΜΟΝΩΝ: KIMETSU NO YAIBA – Η ΤΑΙΝΙΑ: ΤΟ ΤΡΕΝΟ ΜΟΥΓΚΕΝ' + - '극장판 귀멸의 칼날: 무한열차편' + - 'Клинок, Рассекающий Демонов: Бесконечный Поезд' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 16 + endDate: + year: 2020 + month: 10 + day: 16 + averageScore: 84 + nextAiringEpisode: null + - id: 113538 + idMal: 40776 + title: + romaji: Haikyuu!! TO THE TOP 2 + english: HAIKYU!! TO THE TOP Part 2 + native: ハイキュー!! TO THE TOP 2 + synonyms: + - ไฮคิว!! คู่ตบฟ้าประทาน ภาค 4 Part 2 + - Haikyu!! Season 4 Part 2 + - 排球少年!! 第四季 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 3 + endDate: + year: 2020 + month: 12 + day: 19 + averageScore: 85 + nextAiringEpisode: null + - id: 116267 + idMal: 41389 + title: + romaji: Tonikaku Kawaii + english: 'TONIKAWA: Over The Moon For You' + native: トニカクカワイイ + synonyms: + - Fly Me to the Moon + - Tonikaku Cawaii + - Generally Cute + - 总之就是非常可爱 + - จะยังไงภรรยาของผมก็น่ารัก + - 'Красавица: Унеси меня на Луну' + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 3 + endDate: + year: 2020 + month: 12 + day: 19 + averageScore: 77 + nextAiringEpisode: null + - id: 112124 + idMal: 40454 + title: + romaji: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III + english: Is It Wrong to Try to Pick Up Girls in a Dungeon? III + native: ダンジョンに出会いを求めるのは間違っているだろうかⅢ + synonyms: + - ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH III + - 'Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth III' + - Danmachi III + - มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 3 + - ダンまちⅢ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 3 + endDate: + year: 2020 + month: 12 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 113596 + idMal: 40787 + title: + romaji: Josee to Tora to Sakanatachi + english: Josee, the Tiger and the Fish + native: ジョゼと虎と魚たち + synonyms: + - Josee to Tora to Sakana-tachi + - 乔西的虎与鱼 + - Josee, el Tigre y los Peces + - Josee, El Tigre i Els Peixos + - โจเซ่ กับเสือและหมู่ปลา + - Josie, der Tiger und die Fische. + - Josée, le tigre et les poissons + - Её заветное желание + - Жозе, тигр и рыба + - ' Josée, la Tigre e i Pesci' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 12 + day: 25 + endDate: + year: 2020 + month: 12 + day: 25 + averageScore: 82 + nextAiringEpisode: null + - id: 116566 + idMal: 41433 + title: + romaji: Akudama Drive + english: Akudama Drive + native: アクダマドライブ + synonyms: + - 아쿠다마 드라이브 + - Акудама Драйв + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 8 + endDate: + year: 2020 + month: 12 + day: 24 + averageScore: 75 + nextAiringEpisode: null + - id: 114124 + idMal: 40911 + title: + romaji: Yuukoku no Moriarty + english: Moriarty the Patriot + native: 憂国のモリアーティ + synonyms: + - มอริอาร์ตี้ผู้รักชาติ + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 11 + endDate: + year: 2020 + month: 12 + day: 20 + averageScore: 80 + nextAiringEpisode: null + - id: 112609 + idMal: 40571 + title: + romaji: Majo no Tabitabi + english: 'Wandering Witch: The Journey of Elaina' + native: 魔女の旅々 + synonyms: + - MajoTabi + - 마녀의 여행 + - 魔女之旅 + - Elainas Reise + - การเดินทางของคุณแม่มด + - Странствующая ведьма + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 2 + endDate: + year: 2020 + month: 12 + day: 18 + averageScore: 74 + nextAiringEpisode: null + - id: 117343 + idMal: 41619 + title: + romaji: Munou na Nana + english: Talentless Nana + native: 無能なナナ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 4 + endDate: + year: 2020 + month: 12 + day: 27 + averageScore: 70 + nextAiringEpisode: null + - id: 112300 + idMal: 40497 + title: + romaji: 'Mahouka Koukou no Rettousei: Raihousha-hen' + english: 'The Irregular at Magic High School: Visitor Arc' + native: 魔法科高校の劣等生 来訪者編 + synonyms: + - The Irregular at Magic High School Season 2 + - พี่น้องปริศนาโรงเรียนมหาเวท ภาค 2 + - พี่น้องปริศนาโรงเรียนมหาเวท บทผู้มาเยือน + - 'Непутёвый ученик в школе магии: Гость' + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 4 + endDate: + year: 2020 + month: 12 + day: 27 + averageScore: 72 + nextAiringEpisode: null + - id: 112667 + idMal: 40595 + title: + romaji: Kimi to Boku no Saigo no Senjo, Arui wa Sekai ga Hajimaru Seisen + english: Our Last Crusade or the Rise of a New World + native: キミと僕の最後の戦場、あるいは世界が始まる聖戦 + synonyms: + - Kimisen + - ' ศึกสุดท้ายของเธอกับผมคือจุดเริ่มต้นของโลกใบใหม่' + - Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 7 + endDate: + year: 2020 + month: 12 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 116673 + idMal: 41468 + title: + romaji: BURN THE WITCH + english: BURN THE WITCH + native: BURN THE WITCH + synonyms: [] + status: FINISHED + format: ONA + episodes: 3 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 2 + endDate: + year: 2020 + month: 10 + day: 2 + averageScore: 70 + nextAiringEpisode: null + - id: 116242 + idMal: 41380 + title: + romaji: 100-man no Inochi no Ue ni Ore wa Tatteiru + english: I'm Standing on a Million Lives + native: 100万の命の上に俺は立っている + synonyms: + - I'm standing on 1,000,000 lives. + - ข้าก้าวผ่าน 1 ล้านชีวิตเพื่อพิชิตเกมมรณะ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 2 + endDate: + year: 2020 + month: 12 + day: 18 + averageScore: 63 + nextAiringEpisode: null + - id: 116005 + idMal: 41345 + title: + romaji: NOBLESSE + english: Noblesse + native: NOBLESSE -ノブレス- + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 8 + endDate: + year: 2020 + month: 12 + day: 31 + averageScore: 66 + nextAiringEpisode: null + - id: 118419 + idMal: 41930 + title: + romaji: Kamisama ni Natta Hi + english: The Day I Became a God + native: 神様になった日 + synonyms: + - День, когда я стала Богом + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 11 + endDate: + year: 2020 + month: 12 + day: 27 + averageScore: 65 + nextAiringEpisode: null + - id: 114446 + idMal: 41006 + title: + romaji: Higurashi no Naku Koro ni Gou + english: 'Higurashi: When They Cry - GOU' + native: ひぐらしのなく頃に業 + synonyms: + - 'When the Cicadas Cry ' + - 'Higurashi: When They Cry - NEW' + - Higurashi no Naku Koro ni (2020) + - ひぐらしのなく頃に (2020) + - 'HIGURASHI: Когда плачут цикады — GOU' + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 1 + endDate: + year: 2021 + month: 3 + day: 19 + averageScore: 69 + nextAiringEpisode: null + - id: 109287 + idMal: 39790 + title: + romaji: Adachi to Shimamura + english: Adachi and Shimamura + native: 安達としまむら + synonyms: + - AdaShima + - Адати и Симамура + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 9 + endDate: + year: 2020 + month: 12 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 111428 + idMal: 40397 + title: + romaji: Maou-jou de Oyasumi + english: Sleepy Princess in the Demon Castle + native: 魔王城でおやすみ + synonyms: + - Maou Jou de Oyasumi + - Maoujou de Oyasumi + - MaouYasu + - 在魔王城说晚安 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 6 + endDate: + year: 2020 + month: 12 + day: 22 + averageScore: 78 + nextAiringEpisode: null + - id: 115740 + idMal: 41312 + title: + romaji: Kamitachi ni Hirowareta Otoko + english: By the Grace of the Gods + native: 神達に拾われた男 + synonyms: + - The man picked up by the gods + - Kamihiro + - Kami-tachi ni Hirowareta Otoko + - เพราะพระเจ้าเลือกเลยได้เกิดใหม่มาเลี้ยงสไลม์ในต่างโลก + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 4 + endDate: + year: 2020 + month: 12 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 114340 + idMal: 40974 + title: + romaji: Kuma Kuma Kuma Bear + english: Kuma Kuma Kuma Bear + native: くまクマ熊ベアー + synonyms: + - The Bears Bear a Bare Kuma + - 熊熊勇闯异世界 + - Ми-ми-ми-мишка + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 7 + endDate: + year: 2020 + month: 12 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 110355 + idMal: 40059 + title: + romaji: Golden Kamuy 3rd Season + english: Golden Kamuy Season 3 + native: ゴールデンカムイ 第三期 + synonyms: + - Golden Kamui 3 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 5 + endDate: + year: 2020 + month: 12 + day: 21 + averageScore: 83 + nextAiringEpisode: null + - id: 111324 + idMal: 40359 + title: + romaji: Ikebukuro West Gate Park + english: Ikebukuro West Gate Park + native: 池袋ウエストゲートパーク + synonyms: + - IWGP + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 6 + endDate: + year: 2020 + month: 12 + day: 22 + averageScore: 65 + nextAiringEpisode: null + - id: 103276 + idMal: 38085 + title: + romaji: 'Fate/Grand Order: Shinsei Entaku Ryouiki Camelot - Wandering; Agateram' + english: 'Fate/Grand Order Divine Realm of the Round Table: Camelot - Wandering; Agateram' + native: 劇場版 Fate/Grand Order -神聖円卓領域キャメロット- 前編 Wandering; Agateram + synonyms: + - 'Судьба/Великий приказ: Камелот — Странствие' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 12 + day: 5 + endDate: + year: 2020 + month: 12 + day: 5 + averageScore: 68 + nextAiringEpisode: null + - id: 118399 + idMal: 41911 + title: + romaji: Hanyou no Yashahime + english: 'Yashahime: Princess Half-Demon' + native: 半妖の夜叉姫 + synonyms: + - 'ยาฉะฮิเมะ: เจ้าหญิงครึ่งอสูร' + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2020 + startDate: + year: 2020 + month: 10 + day: 3 + endDate: + year: 2021 + month: 3 + day: 20 + averageScore: 65 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/45-2021-winter.yaml b/test/fixtures/anilist/season_matrix/45-2021-winter.yaml new file mode 100644 index 0000000..231233e --- /dev/null +++ b/test/fixtures/anilist/season_matrix/45-2021-winter.yaml @@ -0,0 +1,724 @@ +metadata: + captured_at: '2026-05-11T11:34:22Z' + label: 2021-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2021 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:22 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '28' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 110277 + idMal: 40028 + title: + romaji: 'Shingeki no Kyojin: The Final Season' + english: Attack on Titan Final Season + native: 進撃の巨人 The Final Season + synonyms: + - SnK 4 + - AoT 4 + - Shingeki no Kyojin 4 + - 進撃の巨人4 + - Attack on Titan Season 4 + - 진격의 거인 더 파이널 시즌 + - מתקפת הטיטאנים העונה האחרונה + - L'Attaque des Titans Saison Finale + - L'Attacco dei Giganti 4 + - L'Attacco dei Giganti - La Stagione Finale + - 'حمله به تایتان فصل 4 ' + - ' ผ่าพิภพไททัน ไฟนอล ซีซั่น' + - ผ่าพิภพไททัน Final Season + - ผ่าพิภพไททัน ภาค 4 + - هجوم العملاقة الجزء الأخير + - 'Атака Титанов: Финал' + status: FINISHED + format: TV + episodes: 16 + season: WINTER + seasonYear: 2021 + startDate: + year: 2020 + month: 12 + day: 7 + endDate: + year: 2021 + month: 3 + day: 29 + averageScore: 87 + nextAiringEpisode: null + - id: 124080 + idMal: 42897 + title: + romaji: Horimiya + english: Horimiya + native: ホリミヤ + synonyms: + - 堀与宫村 + - โฮริมิยะ สาวมั่นกับนายมืดมน + - Хоримия + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 10 + endDate: + year: 2021 + month: 4 + day: 4 + averageScore: 81 + nextAiringEpisode: null + - id: 108465 + idMal: 39535 + title: + romaji: 'Mushoku Tensei: Isekai Ittara Honki Dasu' + english: 'Mushoku Tensei: Jobless Reincarnation' + native: 無職転生 ~異世界行ったら本気だす~ + synonyms: + - 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - 无职转生 ~到了异世界就拿出真本事~ + - เกิดชาตินี้พี่ต้องเทพ + - Thất nghiệp chuyển sinh + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 11 + endDate: + year: 2021 + month: 3 + day: 22 + averageScore: 82 + nextAiringEpisode: null + - id: 113936 + idMal: 40852 + title: + romaji: 'Dr. STONE: STONE WARS' + english: 'Dr. STONE: STONE WARS' + native: Dr.STONE STONE WARS + synonyms: + - ドクターストーン STONE WARS + - Dr.STONE第2期 + - Dr. STONE 2 + - 닥터 스톤 STONE WARS + - 石纪元第二季 + - DR.STONE ภาค 2 + - 'Доктор Стоун: Каменные войны' + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 14 + endDate: + year: 2021 + month: 3 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 108725 + idMal: 39617 + title: + romaji: Yakusoku no Neverland 2 + english: The Promised Neverland Season 2 + native: 約束のネバーランド2 + synonyms: + - YakuNeba + - TPN2 + - พันธสัญญาเนเวอร์แลนด์ ภาค 2 + - 約定的夢幻島 第二季 + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 3 + day: 26 + averageScore: 52 + nextAiringEpisode: null + - id: 108511 + idMal: 39551 + title: + romaji: Tensei Shitara Slime Datta Ken 2nd Season + english: That Time I Got Reincarnated as a Slime Season 2 + native: 転生したらスライムだった件 第2期 + synonyms: + - 転スラ2 + - TenSura 2 + - 关于我转生变成史莱姆这档事第二季(上半) + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 + - Moi, quand je me réincarne en Slime Saison 2 + - Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2 + - О моём перерождении в слизь 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 12 + endDate: + year: 2021 + month: 3 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 119661 + idMal: 42203 + title: + romaji: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2 + english: Re:ZERO -Starting Life in Another World- Season 2 Part 2 + native: Re:ゼロから始める異世界生活 2nd Season Part 2 + synonyms: + - Re:Zero kara Hajimeru Isekai Seikatsu (2021) + - 'Re: 제로부터 시작하는 이세계 생활 2기 파트 2' + - Re:从零开始的异世界生活第二季(下半) + - Re:从零开始的异世界生活 2 下半 + - Re:Zero รีเซทชีวิต ฝ่าวิกฤตต่างโลก ภาค 2 พาร์ท 2 + - Re:Zero — жизнь с нуля в другом мире. Второй сезон + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 6 + endDate: + year: 2021 + month: 3 + day: 24 + averageScore: 84 + nextAiringEpisode: null + - id: 124845 + idMal: 43299 + title: + romaji: Wonder Egg Priority + english: WONDER EGG PRIORITY + native: ワンダーエッグ・プライオリティ + synonyms: + - WonEgg + - WEP + - 奇蛋物语 + - วันเดอร์เอ็ก ไพรออริตี + - Приоритет чудо-яйца + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 13 + endDate: + year: 2021 + month: 3 + day: 31 + averageScore: 74 + nextAiringEpisode: null + - id: 124153 + idMal: 42923 + title: + romaji: SK∞ + english: SK8 the Infinity + native: SK∞ エスケーエイト + synonyms: + - SK Eight + - เอสเคเอท สเกตบอร์ดล้างเมือง + - Hội Thanh Niên Lướt Ván SK∞ + - Ski Tak Terbatas SK∞ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 10 + endDate: + year: 2021 + month: 4 + day: 4 + averageScore: 79 + nextAiringEpisode: null + - id: 109261 + idMal: 39783 + title: + romaji: Go-toubun no Hanayome ∬ + english: The Quintessential Quintuplets 2 + native: 五等分の花嫁∬ + synonyms: + - 5-toubun no Hanayome ∬ + - Go-toubun no Hanayome 2nd Season + - The Five Wedded Brides 2nd Season + - 五等分的新娘∬ + - เจ้าสาวผมเป็นแฝดห้า ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 3 + day: 26 + averageScore: 80 + nextAiringEpisode: null + - id: 103632 + idMal: 37984 + title: + romaji: Kumo desu ga, Nani ka? + english: So I'm a Spider, So What? + native: 蜘蛛ですが、なにか? + synonyms: + - 转生成蜘蛛又怎样! + - حسنا أنا عنكبوت، ماذا في ذلك؟ + - 'แมงมุมแล้วไง ข้องใจเหรอคะ ' + - Tôi Là Nhện Đấy, Có Sao Không? + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 7 + day: 3 + averageScore: 72 + nextAiringEpisode: null + - id: 113425 + idMal: 40750 + title: + romaji: Kaifuku Jutsushi no Yarinaoshi + english: Redo of Healer + native: 回復術士のやり直し + synonyms: + - 回复术士的重启人生 + - La Venganza del Sanador + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 13 + endDate: + year: 2021 + month: 3 + day: 31 + averageScore: 57 + nextAiringEpisode: null + - id: 114194 + idMal: 40935 + title: + romaji: BEASTARS 2nd Season + english: BEASTARS Season 2 + native: BEASTARS 第2期 + synonyms: + - บีสตาร์ ภาค 2 + - Выдающиеся звери 2 + - ビースターズ 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 7 + endDate: + year: 2021 + month: 3 + day: 25 + averageScore: 78 + nextAiringEpisode: null + - id: 112443 + idMal: 40530 + title: + romaji: Jaku-Chara Tomozaki-kun + english: Bottom-Tier Character Tomozaki + native: 弱キャラ友崎くん + synonyms: + - เกมพลิกโฉมนายกระจอก + - Низкоуровневый Томодзаки + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 3 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 116752 + idMal: 41491 + title: + romaji: 'Nanatsu no Taizai: Funnu no Shinpan' + english: 'The Seven Deadly Sins: Dragon''s Judgement' + native: 七つの大罪 憤怒の審判 + synonyms: + - 七大罪:愤怒的审判 + - 'The Seven Deadly Sins: Dragens dom' + - ศึกตำนาน 7 อัศวิน ภาค 4 + - 'Сім смертних гріхів: Правосуддя Дракона' + - 'Семь смертных грехов: Яростное правосудие' + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 13 + endDate: + year: 2021 + month: 6 + day: 23 + averageScore: 65 + nextAiringEpisode: null + - id: 125428 + idMal: 43690 + title: + romaji: Tenkuu Shinpan + english: High-Rise Invasion + native: 天空侵犯 + synonyms: + - 'Sky-High Survival ' + - Tenku Shinpan - Sem Saída + - غزاة ناطحات السحاب + - หน้ากากเดนนรก + - Invasión en las Alturas + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 2 + day: 25 + endDate: + year: 2021 + month: 2 + day: 25 + averageScore: 66 + nextAiringEpisode: null + - id: 114085 + idMal: 40908 + title: + romaji: Kemono Jihen + english: Kemono Jihen + native: 怪物事変 + synonyms: + - けものじへん + - Monster Incidents + - Kemono Incidents + - คดีประหลาดคนปีศาจ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 10 + endDate: + year: 2021 + month: 3 + day: 28 + averageScore: 72 + nextAiringEpisode: null + - id: 118375 + idMal: 41899 + title: + romaji: Ore dake Haireru Kakushi Dungeon + english: The Hidden Dungeon Only I Can Enter + native: 俺だけ入れる隠しダンジョン + synonyms: + - Special training in the Secret Dungeon! + - ดันเจี้ยนที่มีแต่ข้าเท่านั้นที่เข้าได้ ~แอบฝึกปรืนจนบรรลุสู่สุดแกร่ง~ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 9 + endDate: + year: 2021 + month: 3 + day: 27 + averageScore: 60 + nextAiringEpisode: null + - id: 3786 + idMal: 3786 + title: + romaji: Shin Evangelion Movie:|| + english: 'Evangelion: 3.0+1.0 Thrice Upon a Time' + native: シン・エヴァンゲリオン劇場版:|| + synonyms: + - Rebuild of Evangelion 4.0 + - 'EVANGELION:3.0+1.01 THRICE UPON A TIME ' + - EVANGELION:3.0+1.01 A ESPERANÇA + - อีวานเกเลียน:3.0+1.01 สามครั้งก่อน เมื่อเนิ่นนานมาแล้ว + - Evangelion 3.0+1.11 + - EVANGELION:3.0+1.01 TRIPLE + - Evangelion 3.0+1.01 Od-nowa + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 3 + day: 8 + endDate: + year: 2021 + month: 3 + day: 8 + averageScore: 85 + nextAiringEpisode: null + - id: 112649 + idMal: 40594 + title: + romaji: Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari + english: Suppose a Kid from the Last Dungeon Boonies moved to a starter town? + native: たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語 + synonyms: + - LASDAN + - Imagine, un cambrousard du dernier donjon dans la ville de départ ! + - หนุ่มน้อยใสซื่อจากหมู่บ้านหน้าลาสท์ดันเจี้ยนมาเข้ากรุงแล้ว + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 4 + endDate: + year: 2021 + month: 3 + day: 22 + averageScore: 62 + nextAiringEpisode: null + - id: 108631 + idMal: 39586 + title: + romaji: Hataraku Saibou!! + english: Cells at Work!! + native: はたらく細胞!! + synonyms: + - Les brigades immunitaires 2 + - เซลล์ขยัน พันธุ์เดือด ภาค 2 + status: FINISHED + format: TV + episodes: 8 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 2 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 104459 + idMal: 38474 + title: + romaji: Yuru Camp△ SEASON 2 + english: LAID-BACK CAMP SEASON2 + native: ゆるキャン△ SEASON2 + synonyms: + - Yurucamp + - Yurukyan△ + - 摇曳露营△第二季 + - 摇曳露营△ 2 + - โลลิตั้งแคมป์ ภาค 2 + - แคมป์สบายสไตล์สาวๆ ภาค 2 + - Laid-Back Camp Season 2 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 7 + endDate: + year: 2021 + month: 4 + day: 1 + averageScore: 84 + nextAiringEpisode: null + - id: 114862 + idMal: 41109 + title: + romaji: 'Log Horizon: Entaku Houkai' + english: 'Log Horizon: Destruction of the Round Table' + native: ログ・ホライズン 円卓崩壊 + synonyms: + - Log Horizon 3 + - รวมพลคนติดอยู่ในเกมส์ ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 13 + endDate: + year: 2021 + month: 3 + day: 31 + averageScore: 69 + nextAiringEpisode: null + - id: 117533 + idMal: 41694 + title: + romaji: Hataraku Saibou BLACK + english: Cells at Work! CODE BLACK + native: はたらく細胞BLACK + synonyms: + - Les brigades immunitaires BLACK + - เซลล์ขยันพันธุ์เดือด BLACK + - 'Клетки за работой! КОД: ТЬМА' + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 3 + day: 19 + averageScore: 73 + nextAiringEpisode: null + - id: 114129 + idMal: 39486 + title: + romaji: 'Gintama: THE FINAL' + english: 'Gintama: THE VERY FINAL' + native: 銀魂 THE FINAL + synonyms: + - กินทามะ THE FINAL + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2021 + startDate: + year: 2021 + month: 1 + day: 8 + endDate: + year: 2021 + month: 1 + day: 8 + averageScore: 91 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/46-2021-spring.yaml b/test/fixtures/anilist/season_matrix/46-2021-spring.yaml new file mode 100644 index 0000000..809209f --- /dev/null +++ b/test/fixtures/anilist/season_matrix/46-2021-spring.yaml @@ -0,0 +1,740 @@ +metadata: + captured_at: '2026-05-11T11:34:25Z' + label: 2021-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2021 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:25 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '27' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 120120 + idMal: 42249 + title: + romaji: Tokyo Revengers + english: Tokyo Revengers + native: 東京リベンジャーズ + synonyms: + - 重生之道 + - โตเกียวรีเวนเจอร์ส + - โตเกียว卍รีเวนเจอร์ส + - 东京复仇者 + - נוקמי טוקיו + - Токийские мстители + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 11 + endDate: + year: 2021 + month: 9 + day: 19 + averageScore: 77 + nextAiringEpisode: null + - id: 117193 + idMal: 41587 + title: + romaji: Boku no Hero Academia 5 + english: My Hero Academia Season 5 + native: 僕のヒーローアカデミア5 + synonyms: + - BNHA 5 + - MHA 5 + - 我的英雄学院 5 + - 我的英雄学院第五季 + - มายฮีโร่ อคาเดเมีย ภาค 5 + - أكاديميتي للأبطال + - Моя геройская академия 5 + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 3 + day: 27 + endDate: + year: 2021 + month: 9 + day: 25 + averageScore: 73 + nextAiringEpisode: null + - id: 114535 + idMal: 41025 + title: + romaji: Fumetsu no Anata e + english: To Your Eternity + native: 不滅のあなたへ + synonyms: + - To You, the Immortal + - Uma vida imortal + - 致不灭的你 + - A te, l'immortale + - Ku twej wieczności + - 불멸의 그대에게 + - Untukmu yang Abadi + - Gửi em, người bất tử + - แด่เธอผู้เป็นนิรันดร์ + status: FINISHED + format: TV + episodes: 20 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 12 + endDate: + year: 2021 + month: 8 + day: 30 + averageScore: 81 + nextAiringEpisode: null + - id: 116589 + idMal: 41457 + title: + romaji: '86: Eighty Six' + english: 86 EIGHTY-SIX + native: 86-エイティシックス- + synonyms: + - 86--EIGHTY-SIX + - 86 -เอทตี้ซิกซ์- + - 86 ВОСЕМЬДЕСЯТ ШЕСТЬ + - 86 -不存在的战区- + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 11 + endDate: + year: 2021 + month: 6 + day: 20 + averageScore: 83 + nextAiringEpisode: null + - id: 120697 + idMal: 42361 + title: + romaji: Ijiranaide, Nagatoro-san + english: DON'T TOY WITH ME, MISS NAGATORO + native: イジらないで、長瀞さん + synonyms: + - 不要欺负我、长瀞同学 + - Arrête de me chauffer, Nagatoro! + - ยัยตัวแสบแอบน่ารัก นางาโทโระ + - Не издевайся надо мной, Нагаторо + - "괴롭히지 말아요, 나가토로 양\t" + - 'Jangan main-main denganku, Nona Nagatoro Serangan Ke-2 ' + - No me rayes, Nagatoro + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 11 + endDate: + year: 2021 + month: 6 + day: 27 + averageScore: 69 + nextAiringEpisode: null + - id: 114232 + idMal: 40938 + title: + romaji: Hige wo Soru. Soshite Joshikousei wo Hirou. + english: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + native: ひげを剃る。そして女子高生を拾う。 + synonyms: + - Higehiro + - I Shaved My Beard Then Picked Up a High School Girl. + - 剃须。然后捡到女高中生。 + - 刮掉鬍子的我與撿到的女高中生 + - โกนหนวดไปทำงาน แล้วกลับบ้านมาพบเธอ + - Я побрился. И приютил школьницу + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 5 + endDate: + year: 2021 + month: 6 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 128546 + idMal: 46095 + title: + romaji: 'Vivy: Fluorite Eye’s Song' + english: Vivy -Fluorite Eye's Song- + native: Vivy -Fluorite Eye’s Song- + synonyms: + - ヴィヴィ -フローライトアイズソング- + - วีวี่ บทเพลงจักรกลกู้ศตวรรษ + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 3 + endDate: + year: 2021 + month: 6 + day: 19 + averageScore: 82 + nextAiringEpisode: null + - id: 124194 + idMal: 42938 + title: + romaji: 'Fruits Basket: The Final' + english: Fruits Basket The Final Season + native: フルーツバスケットThe Final + synonyms: + - Furuba + - Fruba + - フルバ + - Fruits Basket Season 3 + - 水果篮子 最终季 + - เสน่ห์สาวข้าวปั้น ภาค 3 + - เสน่ห์สาวข้าวปั้น ภาคสุดท้าย + - 'Корзинка фруктов: Финал' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 6 + endDate: + year: 2021 + month: 6 + day: 29 + averageScore: 89 + nextAiringEpisode: null + - id: 125426 + idMal: 43692 + title: + romaji: Gokushufudou + english: The Way of the Househusband + native: 極主夫道 + synonyms: + - La Via del Grembiule + - 'Gokushufudou: Tatsu Imortal' + - De yakuza a amo de casa + - La Voie du Tablier + - Yakuza w fartuszku. Kodeks perfekcyjnego pana domu + - على طريقة ربّ المنزل + - Gokushufudou Part 1 + - The Way of the Househusband Part 1 + - 'พ่อบ้านสุดเก๋า ' + - พ่อบ้านสุดเก๋า พาร์ท 1 + - Ο Καλός Νοικοκύρης + - Шлях домогосподаря + status: FINISHED + format: ONA + episodes: 5 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 8 + endDate: + year: 2021 + month: 4 + day: 8 + averageScore: 71 + nextAiringEpisode: null + - id: 128547 + idMal: 46102 + title: + romaji: Odd Taxi + english: ODDTAXI + native: オッドタクシー + synonyms: + - Необычное такси + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 6 + endDate: + year: 2021 + month: 6 + day: 29 + averageScore: 85 + nextAiringEpisode: null + - id: 112608 + idMal: 40586 + title: + romaji: Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita + english: I've Been Killing Slimes for 300 Years and Maxed Out My Level + native: スライム倒して300年、知らないうちにレベルMAXになってました + synonyms: + - Slime 300 + - 打了300年的史莱姆,不知不觉就练到了满级 + - La Sorcière invincible tueuse de Slime depuis 300 ans + - ล่าสไลม์มา 300 ปีรู้ตัวอีกทีก็เลเวล MAX ซะแล้ว + - Tanpa Sadar Levelku Mentok Setelah Membasmi Slime Selama 300 Tahun + - Я 300 лет убивала слизь и прокачалась на максимум + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 10 + endDate: + year: 2021 + month: 6 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 127399 + idMal: 44942 + title: + romaji: Shuumatsu no Valkyrie + english: Record of Ragnarok + native: 終末のワルキューレ + synonyms: + - Shuumatsu no Walkure + - معركة راغناروك + - Valkyrie Apocalypse + - มหาศึกคนชนเทพ + - Повесть о конце света + - Τα Χρονικά του Ράγκναροκ + - Хроніка Раґнароку + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 6 + day: 17 + endDate: + year: 2021 + month: 6 + day: 17 + averageScore: 67 + nextAiringEpisode: null + - id: 117448 + idMal: 41623 + title: + romaji: Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω + english: How NOT to Summon a Demon Lord Ω + native: 異世界魔王と召喚少女の奴隷魔術Ω + synonyms: + - Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2 + - Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega + - How NOT To Summon A Demon Lord Omega + - 异世界魔王与召唤少女的奴隶魔术Ω + - จอมมารต่างโลกกับ บริวารสาวนักอัญเชิญ ภาค 2 + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 9 + endDate: + year: 2021 + month: 6 + day: 11 + averageScore: 66 + nextAiringEpisode: null + - id: 116588 + idMal: 41456 + title: + romaji: Sentouin, Hakenshimasu! + english: Combatants Will Be Dispatched! + native: 戦闘員、派遣します! + synonyms: + - Kombattanten werden entsandt! + - 战斗员派遣中! + - 'นักรบสายป่วนออกปฏิบัติกวน ' + - Les combattants seront déployés ! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 4 + endDate: + year: 2021 + month: 6 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 116338 + idMal: 41402 + title: + romaji: Mairimashita! Iruma-kun 2 + english: Welcome to Demon School! Iruma-kun Season 2 + native: 魔入りました!入間くん 第2シリーズ + synonyms: + - Welcome to Demon School, Iruma-kun! Season 2 + - 入间同学入魔了 第二季 + - 入间同学入魔了!2 + - อิรุมะคุง พจญในแดนปีศาจ! ภาค 2 + status: FINISHED + format: TV + episodes: 21 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 17 + endDate: + year: 2021 + month: 9 + day: 11 + averageScore: 80 + nextAiringEpisode: null + - id: 125038 + idMal: 43439 + title: + romaji: Shadows House + english: SHADOWS HOUSE + native: シャドーハウス + synonyms: + - Shadow House + - 影之宅 + - 影宅 + - Dinh Thự Bóng + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 11 + endDate: + year: 2021 + month: 7 + day: 4 + averageScore: 77 + nextAiringEpisode: null + - id: 116741 + idMal: 41488 + title: + romaji: 'Tensei Shitara Slime Datta Ken: Tensura Nikki' + english: The Slime Diaries + native: 転生したらスライムだった件 転スラ日記 + synonyms: + - 'The Slime Diaries: That Time I Got Reincarnated as a Slime' + - 'เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว : เดอะ สไลม์ ไดอารี่' + - 关于我转生变成史莱姆这档事 转生史莱姆日记 + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ไดอารี่ของสไลม์ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 6 + endDate: + year: 2021 + month: 6 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 125368 + idMal: 43609 + title: + romaji: 'Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen OVA' + english: null + native: かぐや様は告らせたい~天才たちの恋愛頭脳戦~OVA + synonyms: + - 'Kaguya-sama: Love is War OVA' + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen OVA' + status: FINISHED + format: OVA + episodes: 1 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 5 + day: 19 + endDate: + year: 2021 + month: 5 + day: 19 + averageScore: 75 + nextAiringEpisode: null + - id: 119683 + idMal: 42192 + title: + romaji: EDENS ZERO + english: EDENS ZERO + native: EDENS ZERO + synonyms: + - エデンズゼロ + - إيدينز زيرو + - אדנס זירו + - เอเดนส์ซีโร่ + - НУЛЕВОЙ ЭДЕМ + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 11 + endDate: + year: 2021 + month: 10 + day: 3 + averageScore: 70 + nextAiringEpisode: null + - id: 124675 + idMal: 43007 + title: + romaji: Osananajimi ga Zettai ni Makenai Love Come + english: 'Osamake: Romcom Where The Childhood Friend Won''t Lose' + native: 幼なじみが絶対に負けないラブコメ + synonyms: + - Osananajimi ga Zettai ni Makenai Love Comedy + - OsaMake + - ความรักนี้เพื่อนสมัยเด็กไม่แพ้รักแรกหรอก + - เลิฟคอเมดี้เรื่องนี้ เพื่อนสมัยเด็กไม่มีวันแพ้ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 14 + endDate: + year: 2021 + month: 6 + day: 30 + averageScore: 58 + nextAiringEpisode: null + - id: 124858 + idMal: 43325 + title: + romaji: Yuukoku no Moriarty Part 2 + english: Moriarty the Patriot Part 2 + native: 憂国のモリアーティ2クール + synonyms: + - มอริอาร์ตี้ผู้รักชาติ Part 2 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 4 + endDate: + year: 2021 + month: 6 + day: 27 + averageScore: 82 + nextAiringEpisode: null + - id: 126791 + idMal: 44276 + title: + romaji: Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara + english: 'Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!' + native: 究極進化したフルダイブRPGが現実よりもクソゲーだったら + synonyms: + - What If the Ultimate in Fully Immersive VR RPGs Was a Crappier Game Than Reality Itself + - 如果究极进化的完全潜行 RPG 比现实还更像垃圾游戏的话 + - 'Full Dive : L''ultime RPG est encore plus foireux que la réalité !' + - เมื่อ Full Dive RPG ได้กลายเป็นสิ่งที่แย่กว่าชีวิตจริง + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 7 + endDate: + year: 2021 + month: 6 + day: 23 + averageScore: 62 + nextAiringEpisode: null + - id: 119675 + idMal: 42205 + title: + romaji: SHAMAN KING (2021) + english: SHAMAN KING (2021) + native: SHAMAN KING (2021) + synonyms: + - シャーマンキング (2021) + - ملك الشامان + - 通灵王 + - שאמן קינג + - Король шаманов + - Βασιλιάς Σαμάνος + - Król szamanów + - Rey Chamán + - Король шаманів + status: FINISHED + format: TV + episodes: 52 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 1 + endDate: + year: 2022 + month: 4 + day: 21 + averageScore: 64 + nextAiringEpisode: null + - id: 123802 + idMal: 42826 + title: + romaji: Seijo no Maryoku wa Bannou desu + english: The Saint's Magic Power is Omnipotent + native: 聖女の魔力は万能です + synonyms: + - The power of the saint is all around + - 圣女的魔力是万能的 + - สตรีศักดิ์สิทธิ์อิทธิฤทธิ์สารพัดอย่าง + - Kekuatan Sihir Santa Sungguh Mahaguna + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 6 + endDate: + year: 2021 + month: 6 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 110733 + idMal: 40174 + title: + romaji: 'Zombie Land Saga: Revenge' + english: ZOMBIE LAND SAGA REVENGE + native: ゾンビランドサガ リベンジ + synonyms: + - 'Zombieland Saga: Revenge' + - 佐贺偶像是传奇 Revenge + - 'ซอมบี้เเลนด์ซากะ Revenge ' + - 'Зомбилэнд-Сага: Возмездие' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2021 + startDate: + year: 2021 + month: 4 + day: 8 + endDate: + year: 2021 + month: 6 + day: 24 + averageScore: 79 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/47-2021-summer.yaml b/test/fixtures/anilist/season_matrix/47-2021-summer.yaml new file mode 100644 index 0000000..7540c58 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/47-2021-summer.yaml @@ -0,0 +1,695 @@ +metadata: + captured_at: '2026-05-11T11:34:28Z' + label: 2021-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2021 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:27 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '26' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 116742 + idMal: 41487 + title: + romaji: Tensei Shitara Slime Datta Ken 2nd Season Part 2 + english: That Time I Got Reincarnated as a Slime Season 2 Part 2 + native: 転生したらスライムだった件 第2期 第2クール + synonyms: + - Tensura 2 + - 关于我转生变成史莱姆这档事第二季(下半) + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 2 พาร์ท 2 + - Moi, quand je me réincarne en Slime Saison 2 Partie 2 + - О моём перерождении в слизь 2 + - 転スラ 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 6 + endDate: + year: 2021 + month: 9 + day: 21 + averageScore: 82 + nextAiringEpisode: null + - id: 131646 + idMal: 48580 + title: + romaji: Vanitas no Carte + english: The Case Study of Vanitas + native: ヴァニタスの手記 + synonyms: + - Vanitas no Karte + - Les Mémoires de Vanitas + - 瓦尼塔斯的手记 + - บันทึกแวมไพร์วานิทัส + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 3 + endDate: + year: 2021 + month: 9 + day: 18 + averageScore: 78 + nextAiringEpisode: null + - id: 107717 + idMal: 39247 + title: + romaji: Kobayashi-san Chi no Maidragon S + english: Miss Kobayashi's Dragon Maid S + native: 小林さんちのメイドラゴンS + synonyms: + - 小林家的龙女仆 S + - 小林家的龍女僕S + - น้องเมดมังกรของคุณโคบายาชิ ภาค 2 + - ' Kobayashi-san Chi no Maid Dragon 2nd Season' + - Дракониха-горничная госпожи Кобаяси S + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 8 + endDate: + year: 2021 + month: 9 + day: 23 + averageScore: 81 + nextAiringEpisode: null + - id: 125206 + idMal: 43523 + title: + romaji: Tsuki ga Michibiku Isekai Douchuu + english: TSUKIMICHI -Moonlit Fantasy- + native: 月が導く異世界道中 + synonyms: + - Moon-led Journey Across Another World + - จันทรานำพาสู่ต่างโลก + - 月光下的异世界之旅 + - Благословлённое лунным светом приключение в другом мире + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 7 + endDate: + year: 2021 + month: 9 + day: 22 + averageScore: 76 + nextAiringEpisode: null + - id: 126546 + idMal: 44203 + title: + romaji: Seirei Gensouki + english: 'Seirei Gensouki: Spirit Chronicles' + native: 精霊幻想記 + synonyms: + - 精灵幻想记 + - ตำนานวิญญาณแฟนซี + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 6 + endDate: + year: 2021 + month: 9 + day: 21 + averageScore: 69 + nextAiringEpisode: null + - id: 117612 + idMal: 41710 + title: + romaji: Genjitsu Shugi Yuusha no Oukoku Saikenki + english: How a Realist Hero Rebuilt the Kingdom + native: 現実主義勇者の王国再建記 + synonyms: + - Genjitsushugisha no Oukokukaizouki + - A Realist's Kingdom Reform Chronicles + - Genkoku + - ยุทธศาสตร์กู้ชาติของราชามือใหม่ + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 4 + endDate: + year: 2021 + month: 9 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 132126 + idMal: 48849 + title: + romaji: Sonny Boy + english: Sonny Boy + native: Sonny Boy + synonyms: + - サニーボーイ + - ซันนีบอย + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 16 + endDate: + year: 2021 + month: 10 + day: 1 + averageScore: 78 + nextAiringEpisode: null + - id: 126192 + idMal: 43969 + title: + romaji: Kanojo mo Kanojo + english: Girlfriend, Girlfriend + native: カノジョも彼女 + synonyms: + - KanoKano + - She is also my Girlfriend + - 'จะคนไหนก็แฟนสาว ' + - Мои девушки + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 3 + endDate: + year: 2021 + month: 9 + day: 18 + averageScore: 63 + nextAiringEpisode: null + - id: 128712 + idMal: 46471 + title: + romaji: Tantei wa mou, Shindeiru. + english: The Detective Is Already Dead + native: 探偵はもう、死んでいる。 + synonyms: + - La detective esta muerta. + - Tanmoshi + - 侦探已经,死了 + - 侦探已死 + - นักสืบตายแล้ว + - Детектив уже мёртв + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 4 + endDate: + year: 2021 + month: 9 + day: 19 + averageScore: 61 + nextAiringEpisode: null + - id: 114065 + idMal: 40904 + title: + romaji: Bokutachi no Remake + english: Remake Our Life! + native: ぼくたちのリメイク + synonyms: + - Bokurema + - 我们的重制人生 + - ย้อนเวลา รีเมคชีวิต + - Ремейк нашей жизни! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 3 + endDate: + year: 2021 + month: 9 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 126659 + idMal: 44200 + title: + romaji: 'Boku no Hero Academia THE MOVIE: World Heroes'' Mission' + english: 'My Hero Academia: World Heroes'' Mission' + native: 僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション + synonyms: + - My Hero Academia the Movie 3 + - 'My Hero Academia: Misión Mundial de Héroes' + - 'My Hero Academia: Missão Mundial de Heróis' + - 'มาย ฮีโร่ อาคาเดเมีย : รวมพลฮีโร่กู้วิกฤตโลก' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 8 + day: 6 + endDate: + year: 2021 + month: 8 + day: 6 + averageScore: 76 + nextAiringEpisode: null + - id: 107625 + idMal: 39175 + title: + romaji: Cider no You ni Kotoba ga Wakiagaru + english: Words Bubble Up Like Soda Pop + native: サイダーのように言葉が湧き上がる + synonyms: + - Palavras que Borbulham como Refrigerante + - Palabras que burbujean como un refresco + - מילים מתפצפצות כמו גזוז + - Nos mots comme des bulles + - ถ้อยคำเอ่อล้นด้วยหัวใจรัก + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 22 + endDate: + year: 2021 + month: 7 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 112802 + idMal: 40620 + title: + romaji: Uramichi Oniisan + english: Life Lessons with Uramichi Oniisan + native: うらみちお兄さん + synonyms: + - อูรามิจิ โอนีซัง + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 6 + endDate: + year: 2021 + month: 9 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 132456 + idMal: 48753 + title: + romaji: Jahy-sama wa Kujikenai! + english: The Great Jahy Will Not Be Defeated! + native: ジャヒー様はくじけない! + synonyms: + - ท่านปีศาจจาฮี ชีวิตนี้ไม่มีถอย! + - Niepokonana Jahy + status: FINISHED + format: TV + episodes: 20 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 8 + day: 1 + endDate: + year: 2021 + month: 12 + day: 19 + averageScore: 68 + nextAiringEpisode: null + - id: 129277 + idMal: 47257 + title: + romaji: Shinigami Bocchan to Kuro Maid + english: The Duke of Death and His Maid + native: 死神坊ちゃんと黒メイド + synonyms: + - คุณชายวิปริตกับเมดสาวรอบจัด + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 4 + endDate: + year: 2021 + month: 9 + day: 19 + averageScore: 74 + nextAiringEpisode: null + - id: 120209 + idMal: 42282 + title: + romaji: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta… X + english: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + native: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X + synonyms: + - Hamefura 2 + - Hamehura 2 + - เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ X + - เกิดใหม่เป็นนางร้ายจะเลือกทางไหนก็หายนะ ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 3 + endDate: + year: 2021 + month: 9 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 120608 + idMal: 42340 + title: + romaji: Meikyuu Black Company + english: The Dungeon of Black Company + native: 迷宮ブラックカンパニー + synonyms: + - เมคีว แบล็กคอมพานี + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 9 + endDate: + year: 2021 + month: 9 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 126047 + idMal: 43814 + title: + romaji: Deatte 5-byou de Battle + english: Battle Game in 5 Seconds + native: 出会って5秒でバトル + synonyms: + - Battle in 5 seconds after meeting. + - ศึกเดือด 5 วิ พลิกชะตา + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 13 + endDate: + year: 2021 + month: 9 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 122052 + idMal: 42544 + title: + romaji: Kaizoku Oujo + english: 'Fena: Pirate Princess' + native: 海賊王女 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 8 + day: 15 + endDate: + year: 2021 + month: 10 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 127271 + idMal: 44807 + title: + romaji: Ryuu to Sobakasu no Hime + english: BELLE + native: 竜とそばかすの姫 + synonyms: + - The Dragon and Freckled Princess + - BELLE เจ้าหญิงแห่งเสียงเพลง + - Красавица и дракон + - 'Μπελ: Ο Δράκος και Η Πριγκίπισσα' + - 龙与雀斑公主 + - Дракон та веснянкувата принцеса + - 'Belle: The Dragon and the Freckled Princess' + - Skaistule un briesmonis + - Сұлу қыз бен айдаһар + - Gözəl və əjdaha + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 16 + endDate: + year: 2021 + month: 7 + day: 16 + averageScore: 73 + nextAiringEpisode: null + - id: 117989 + idMal: 41812 + title: + romaji: Megami-ryou no Ryoubo-kun. + english: Mother of the Goddess’ Dormitory + native: 女神寮の寮母くん。 + synonyms: [] + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 14 + endDate: + year: 2021 + month: 9 + day: 15 + averageScore: 62 + nextAiringEpisode: null + - id: 128545 + idMal: 46093 + title: + romaji: Shiroi Suna no Aquatope + english: The aquatope on white sand + native: 白い砂のアクアトープ + synonyms: + - Aquatope of White Sand + - The two girls met in the ruins of damaged dream + - อควาโทปแห่งทรายขาว + - Aquatope di Atas Pasir Putih + - Акватоп на белом песке + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 9 + endDate: + year: 2021 + month: 12 + day: 17 + averageScore: 73 + nextAiringEpisode: null + - id: 127371 + idMal: 44931 + title: + romaji: 'Tonikaku Kawaii: SNS' + english: 'TONIKAWA: Over The Moon For You ~SNS~' + native: トニカクカワイイ ~SNS~ + synonyms: + - Tonikaku Kawaii OVA + - TONIKAWA OVA + - Tonikaku Kawaii Episode 13 + - 'Красавица: Унеси меня на Луну. Социальная сеть' + status: FINISHED + format: OVA + episodes: 1 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 8 + day: 18 + endDate: + year: 2021 + month: 8 + day: 18 + averageScore: 79 + nextAiringEpisode: null + - id: 122434 + idMal: 42625 + title: + romaji: Heion Sedai no Idaten-tachi + english: The Idaten Deities Know Only Peace + native: 平穏世代の韋駄天達 + synonyms: + - Idaten Deities in the Peaceful Generation + - อิดะเท็น เทพต่อสู้กู้ยุคสันติ + - Боги-стражники не ведали войны + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 23 + endDate: + year: 2021 + month: 9 + day: 28 + averageScore: 74 + nextAiringEpisode: null + - id: 122441 + idMal: 42627 + title: + romaji: Peach Boy Riverside + english: Peach Boy Riverside + native: ピーチボーイリバーサイド + synonyms: + - พีชบอยริเวอร์ไซด์ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2021 + startDate: + year: 2021 + month: 7 + day: 1 + endDate: + year: 2021 + month: 9 + day: 16 + averageScore: 60 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/48-2021-fall.yaml b/test/fixtures/anilist/season_matrix/48-2021-fall.yaml new file mode 100644 index 0000000..dc38676 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/48-2021-fall.yaml @@ -0,0 +1,706 @@ +metadata: + captured_at: '2026-05-11T11:34:31Z' + label: 2021-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2021 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:30 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '25' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 131573 + idMal: 48561 + title: + romaji: Jujutsu Kaisen 0 + english: JUJUTSU KAISEN 0 + native: 呪術廻戦 0 + synonyms: + - JJK 0 + - 咒术回战0 + - 'มหาเวทย์ผนึกมาร : ซีโร่' + - ‎جوجوتسو كايسن 0 + - Jujutsu Kaisen Movie + - Магическая битва 0 + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 12 + day: 24 + endDate: + year: 2021 + month: 12 + day: 24 + averageScore: 83 + nextAiringEpisode: null + - id: 129874 + idMal: 49926 + title: + romaji: 'Kimetsu no Yaiba: Mugen Ressha-hen (TV)' + english: 'Demon Slayer: Kimetsu no Yaiba Mugen Train Arc' + native: 鬼滅の刃 無限列車編 (TV) + synonyms: + - KnY 2 + - 'ดาบพิฆาตอสูร : ศึกรถไฟสู่นิรันดร์ (TV)' + - 鬼灭之刃 无限列车篇 + - 'Demon Slayer: Kimetsu no Yaiba: Le train de l''Infini' + - 'Demon Slayer: Kimetsu no Yaiba season 2' + - 'Miecz zabójcy demonów – Kimetsu no Yaiba: Nieskończony Pociąg' + - '귀멸의 칼날: 무한열차편' + - 'Клинок, Рассекающий Демонов: Бесконечный Поезд' + status: FINISHED + format: TV + episodes: 7 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 10 + endDate: + year: 2021 + month: 11 + day: 28 + averageScore: 82 + nextAiringEpisode: null + - id: 133965 + idMal: 48926 + title: + romaji: Komi-san wa, Komyushou desu. + english: Komi Can’t Communicate + native: 古見さんは、コミュ症です。 + synonyms: + - Comi san ha Comyusho desu + - مشكلة كومي + - Komi-san wa, Comyushou desu. + - โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง + - Komi cherche ses mots + - Komi không thể giao tiếp + - Komi-san no puede comunicarse + - У Коми проблемы с общением + - Η Κόμι Δεν Επικοινωνεί + - Комі не вміє спілкуватися + - המשאלה של קומי + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 7 + endDate: + year: 2021 + month: 12 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 127720 + idMal: 45576 + title: + romaji: 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2' + english: 'Mushoku Tensei: Jobless Reincarnation Cour 2' + native: 無職転生 ~異世界行ったら本気だす~ 第2クール + synonyms: + - 'Mushoku Tensei: Jobless Reincarnation Part 2' + - เกิดชาตินี้พี่ต้องเทพ พาร์ท 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 4 + endDate: + year: 2021 + month: 12 + day: 20 + averageScore: 85 + nextAiringEpisode: null + - id: 113717 + idMal: 40834 + title: + romaji: Ousama Ranking + english: Ranking of Kings + native: 王様ランキング + synonyms: + - King Ranking + - อันดับพระราชา + - تصنيف الملوك + - 國王排名 + status: FINISHED + format: TV + episodes: 23 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 15 + endDate: + year: 2022 + month: 3 + day: 25 + averageScore: 83 + nextAiringEpisode: null + - id: 129898 + idMal: 47790 + title: + romaji: Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru + english: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat + native: 世界最高の暗殺者、異世界貴族に転生する + synonyms: + - Ansatsu Kizoku + - สุดยอดมือสังหาร อวตารมาต่างโลก + - 世界顶尖的暗杀者转生为异世界贵族 + - Pembunuh Terhebat di Dunia Reinkarnasi Menjadi Bangsawan Dunia lain + - המתנקש הטוב ביותר נולד מחדש בעולם אחר בתור אריסטוקרט + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 6 + endDate: + year: 2021 + month: 12 + day: 22 + averageScore: 72 + nextAiringEpisode: null + - id: 131586 + idMal: 48569 + title: + romaji: '86: Eighty Six Part 2' + english: 86 EIGHTY-SIX Part 2 + native: 86-エイティシックス- 第2クール + synonyms: + - 86-エイティシックス- 2クール + - 86 -เอทตี้ซิกซ์- พาร์ท 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 3 + endDate: + year: 2022 + month: 3 + day: 19 + averageScore: 87 + nextAiringEpisode: null + - id: 131942 + idMal: 48661 + title: + romaji: 'JoJo no Kimyou na Bouken: Stone Ocean' + english: 'JoJo''s Bizarre Adventure: STONE OCEAN' + native: ジョジョの奇妙な冒険 ストーンオーシャン + synonyms: + - 'JoJo''s Bizarre Adventure: Stone Ocean' + - JoJo's Bizarre Adventure Part 6 + - JoJo no Kimyou na Bouken Part 6 + - 'Le bizzarre avventure di JoJo: Stone Ocean' + - 'โจโจ้ ล่าข้ามศตวรรษ: สโตนโอเชียน ' + - โจโจ้ ล่าข้ามศตวรรษ ภาค 6 + - 'مغامرات جوجو العجيبة: محيط الأحجار' + - 'ההרפתקה המוזרה של ג''וג''ו: אוקיינוס האבן' + - 'Невероятные приключения ДжоДжо: Каменный океан ' + - 'Химерні пригоди ДжоДжо: Кам''яний океан' + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 12 + day: 1 + endDate: + year: 2021 + month: 12 + day: 1 + averageScore: 80 + nextAiringEpisode: null + - id: 131565 + idMal: 48556 + title: + romaji: takt op.Destiny + english: takt op.Destiny + native: takt op.Destiny + synonyms: + - タクトオーパス + - แท็กต์ โอปัส. เดสตินี ~ลิขิตเสียง บรรเลงชะตา~ + - 宿命回响:命运节拍 + - Такт. Опус Дестини + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 6 + endDate: + year: 2021 + month: 12 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 131083 + idMal: 48483 + title: + romaji: Mieruko-chan + english: Mieruko-chan + native: 見える子ちゃん + synonyms: + - มิเอรุโกะจัง ใครว่าหนูเห็นผี + - 'Mieruko: Gadis yang Bisa Melihat Hantu' + - Girl That Can See It + - Mieruko-chan. Dziewczyna, która widzi więcej + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 3 + endDate: + year: 2021 + month: 12 + day: 19 + averageScore: 72 + nextAiringEpisode: null + - id: 128705 + idMal: 46352 + title: + romaji: Blue Period + english: Blue Period + native: ブルーピリオド + synonyms: + - Periodo Azul + - Голубой период + - Блакитний період + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 9 + day: 25 + endDate: + year: 2021 + month: 12 + day: 11 + averageScore: 77 + nextAiringEpisode: null + - id: 127401 + idMal: 44961 + title: + romaji: Platinum End + english: Platinum End + native: プラチナエンド + synonyms: [] + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 8 + endDate: + year: 2022 + month: 3 + day: 25 + averageScore: 58 + nextAiringEpisode: null + - id: 126213 + idMal: 44037 + title: + romaji: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita + english: Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside + native: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました + synonyms: + - Banished from the Heroes' Party, I Decided to Live a Quiet Life in the Countryside + - ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน + - Banished from the brave man's group, I decided to lead a slow life in the back country. + - I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the + Frontier + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 6 + endDate: + year: 2021 + month: 12 + day: 29 + averageScore: 68 + nextAiringEpisode: null + - id: 120646 + idMal: 42351 + title: + romaji: Senpai ga Uzai Kouhai no Hanashi + english: My Senpai is Annoying + native: 先輩がうざい後輩の話 + synonyms: + - ลุ้นรักรุ่นน้องตัวจิ๋วกับรุ่นพี่ตัวป่วน + - Seniorku yang Menyebalkan + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 10 + endDate: + year: 2021 + month: 12 + day: 26 + averageScore: 75 + nextAiringEpisode: null + - id: 132473 + idMal: 48761 + title: + romaji: Saihate no Paladin + english: The Faraway Paladin + native: 最果てのパラディン + synonyms: + - พาลาดิน ยอดอัศวินจากแดนไกล + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 9 + endDate: + year: 2022 + month: 1 + day: 3 + averageScore: 68 + nextAiringEpisode: null + - id: 124140 + idMal: 42916 + title: + romaji: 'Sword Art Online: Progressive - Hoshinaki Yoru no Aria' + english: Sword Art Online the Movie -Progressive- Aria of a Starless Night + native: 劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア + synonyms: + - SAO Progressive + - 'Sword Art Online: Progressive - อาเรียแห่งคืนที่ไร้ดาว' + - 'Sword Art Online Progressive: Ária de Uma Noite Sem Estrelas' + - SAOP + - 'Sword Art Online: Progressive - Aria de una noche sin estrellas' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 30 + endDate: + year: 2021 + month: 10 + day: 30 + averageScore: 78 + nextAiringEpisode: null + - id: 129068 + idMal: 46985 + title: + romaji: 'Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei' + english: 'The Fruit of Evolution: Before I Knew It, My Life Had It Made' + native: 進化の実~知らないうちに勝ち組人生~ + synonyms: + - 'ผลไม้วิวัฒนาการ: ชีวิตผู้ชนะแบบไม่ทันตั้งตัว' + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 5 + endDate: + year: 2021 + month: 12 + day: 21 + averageScore: 59 + nextAiringEpisode: null + - id: 124195 + idMal: 42940 + title: + romaji: Hanma Baki + english: Baki Hanma + native: 範馬刃牙 + synonyms: + - 'Baki: Son of Ogre' + - 'Hanma Baki: SON OF OGRE' + - ฮันมะ บากิ + - Баки Ханма + - Μπάκι Χάνμα + - Бакі Ханма + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 9 + day: 30 + endDate: + year: 2021 + month: 9 + day: 30 + averageScore: 76 + nextAiringEpisode: null + - id: 130050 + idMal: 48171 + title: + romaji: Summer Ghost + english: Summer Ghost + native: サマーゴースト + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 11 + day: 12 + endDate: + year: 2021 + month: 11 + day: 12 + averageScore: 78 + nextAiringEpisode: null + - id: 132193 + idMal: 48707 + title: + romaji: Gokushufudou Part 2 + english: The Way of the Househusband Part 2 + native: 極主夫道 パート2 + synonyms: + - พ่อบ้านสุดเก๋า พาร์ท 2 + - La Voie du Tablier Partie 2 + - De yakuza a amo de casa parte 2 + - Шлях домогосподаря 2 + status: FINISHED + format: ONA + episodes: 5 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 7 + endDate: + year: 2021 + month: 10 + day: 7 + averageScore: 74 + nextAiringEpisode: null + - id: 131019 + idMal: 48471 + title: + romaji: Tsuki to Laika to Nosferatu + english: 'Irina: The Vampire Cosmonaut' + native: 月とライカと吸血姫 + synonyms: + - ノスフェラトゥ + - The Moon, Laika, and Nosferatu + - จันทรากับไลคร่าและเจ้าหญิงแวมไพร์ + - จันทรากับไลก้าและนอสเฟราตู + - Луна, Лайка и Носферату + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 4 + endDate: + year: 2021 + month: 12 + day: 20 + averageScore: 72 + nextAiringEpisode: null + - id: 127412 + idMal: 45055 + title: + romaji: Taishou Otome Otogibanashi + english: Taisho Otome Fairy Tale + native: 大正オトメ御伽話 + synonyms: + - 'เรื่องเล่าของสาวน้อยยุคไทโช ' + - Kisah Gadis Zaman Taisho + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 9 + endDate: + year: 2021 + month: 12 + day: 25 + averageScore: 76 + nextAiringEpisode: null + - id: 123899 + idMal: 42847 + title: + romaji: Ai no Utagoe wo Kikasete + english: Sing a Bit of Harmony + native: アイの歌声を聴かせて + synonyms: + - Canta con una chispa de armonía + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 10 + day: 29 + endDate: + year: 2021 + month: 10 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 137877 + idMal: 49605 + title: + romaji: Ganbare, Douki-chan + english: GANBARE DOUKICHAN + native: がんばれ同期ちゃん + synonyms: + - Senpai is Mine + - สู้เขาน้องหนูเพื่อนร่วมงาน + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 9 + day: 20 + endDate: + year: 2021 + month: 12 + day: 6 + averageScore: 63 + nextAiringEpisode: null + - id: 138060 + idMal: 49357 + title: + romaji: 'Star Wars: Visions' + english: 'Star Wars: Visions' + native: スター・ウォーズ:ビジョンズ + synonyms: + - Star Wars ビジョンズ + - 'Gwiezdne wojny: Wizje' + status: FINISHED + format: ONA + episodes: 9 + season: FALL + seasonYear: 2021 + startDate: + year: 2021 + month: 9 + day: 22 + endDate: + year: 2021 + month: 9 + day: 22 + averageScore: 70 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/49-2022-winter.yaml b/test/fixtures/anilist/season_matrix/49-2022-winter.yaml new file mode 100644 index 0000000..f8357b2 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/49-2022-winter.yaml @@ -0,0 +1,695 @@ +metadata: + captured_at: '2026-05-11T11:34:33Z' + label: 2022-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2022 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:33 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '24' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 142329 + idMal: 47778 + title: + romaji: 'Kimetsu no Yaiba: Yuukaku-hen' + english: 'Demon Slayer: Kimetsu no Yaiba Entertainment District Arc' + native: 鬼滅の刃 遊郭編 + synonyms: + - KnY 2 + - 'Demon Slayer: Kimetsu no Yaiba - Le quartier des plaisirs' + - ดาบพิฆาตอสูร ภาค 2 บทย่านเริงรมย์ + - 'Miecz zabójcy demonów – Kimetsu no Yaiba: Dzielnica uciech' + - '귀멸의 칼날: 환락의 거리편' + - 'Клинок, Рассекающий Демонов: Квартал Красных Фонарей' + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2022 + startDate: + year: 2021 + month: 12 + day: 5 + endDate: + year: 2022 + month: 2 + day: 13 + averageScore: 86 + nextAiringEpisode: null + - id: 131681 + idMal: 48583 + title: + romaji: 'Shingeki no Kyojin: The Final Season Part 2' + english: Attack on Titan Final Season Part 2 + native: 進撃の巨人 The Final Season Part 2 + synonyms: + - SnK 4 + - AoT 4 + - L'attaque des titans Saison Finale Partie 2 + - 'Shingeki no Kyojin: The Final Season (2022)' + - اتک عن تایتان + - حمله به غول ها + - 'حمله به تایتان فصل 4 ' + - ' ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 2' + - ผ่าพิภพไททัน ภาค 4 + - L'Attacco dei Giganti 4 Parte 2 + - 'Атака титанов: Финал. Часть 2' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 10 + endDate: + year: 2022 + month: 4 + day: 4 + averageScore: 86 + nextAiringEpisode: null + - id: 132405 + idMal: 48736 + title: + romaji: Sono Bisque Doll wa Koi wo Suru + english: My Dress-Up Darling + native: その着せ替え人形は恋をする + synonyms: + - Sono Kisekae Ningyou wa Koi wo suru + - หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ + - その着せ替え人形(ビスク・ドール)は恋をする + - kisekoi + - Si Boneka Rias Sedang Jatuh Cinta + - 'Projekt: cosplay' + - Любовь с иголочки + - 着せ恋 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 9 + endDate: + year: 2022 + month: 3 + day: 27 + averageScore: 80 + nextAiringEpisode: null + - id: 112323 + idMal: 40507 + title: + romaji: Arifureta Shokugyou de Sekai Saikyou 2nd season + english: 'Arifureta: From Commonplace to World''s Strongest Season 2' + native: ありふれた職業で世界最強 2nd season + synonyms: + - อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 2 + - 'ARIFURETA: from commonplace to world''s strongest second season' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 13 + endDate: + year: 2022 + month: 3 + day: 31 + averageScore: 70 + nextAiringEpisode: null + - id: 129190 + idMal: 47159 + title: + romaji: Tensai Ouji no Akaji Kokka Saisei Jutsu + english: The Genius Prince's Guide to Raising a Nation Out of Debt + native: 天才王子の赤字国家再生術 + synonyms: + - บูรณะมันวุ่นวาย ขายชาติเลยแล้วกัน + - 天才王子的赤字国家振兴术 + - Kiat Pemulihan Negara Berutang Ala Pangeran Genius + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 11 + endDate: + year: 2022 + month: 3 + day: 29 + averageScore: 72 + nextAiringEpisode: null + - id: 135136 + idMal: 49114 + title: + romaji: Vanitas no Carte Part 2 + english: The Case Study of Vanitas Part 2 + native: ヴァニタスの手記 2クール + synonyms: + - บันทึกแวมไพร์วานิทัส พาร์ท 2 + - Vanitas no Karte (2022) + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 15 + endDate: + year: 2022 + month: 4 + day: 2 + averageScore: 81 + nextAiringEpisode: null + - id: 129191 + idMal: 47161 + title: + romaji: Shikkakumon no Saikyou Kenja + english: The Strongest Sage with the Weakest Crest + native: 失格紋の最強賢者 + synonyms: + - ปราชญ์หนึ่งในใต้หล้ากับตราสุดอัปยศ + - 失格纹的最强贤者 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 8 + endDate: + year: 2022 + month: 3 + day: 26 + averageScore: 61 + nextAiringEpisode: null + - id: 139648 + idMal: 49930 + title: + romaji: Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2 + english: How a Realist Hero Rebuilt the Kingdom Part 2 + native: 現実主義勇者の王国再建記 第二部 + synonyms: + - ยุทธศาสตร์กู้ชาติของราชามือใหม่ พาร์ท 2 + - Genkoku Part 2 + - Genjitsu Shugi Yuusha no Oukoku Saikenki (2022) + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 9 + endDate: + year: 2022 + month: 4 + day: 3 + averageScore: 73 + nextAiringEpisode: null + - id: 130591 + idMal: 48414 + title: + romaji: Sabikui Bisco + english: Sabikui Bisco + native: 錆喰いビスコ + synonyms: + - Rust-Eater Bisco + - บิสโก้ นรชนคนโคตรเห็ด + - Bisco Si Pemakan Karat + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 11 + endDate: + year: 2022 + month: 3 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 141534 + idMal: 50360 + title: + romaji: 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 - Eris no Goblin Toubatsu' + english: 'Mushoku Tensei: Jobless Reincarnation Cour 2 - Eris the Goblin Slayer' + native: 無職転生 ~異世界行ったら本気だす~ 第2クール エリスのゴブリン討伐 + synonyms: + - 'Mushoku Tensei: Jobless Reincarnation Cour 2 Special' + - 'Mushoku Tensei: Jobless Reincarnation Part 2 Special' + - เกิดชาตินี้พี่ต้องเทพ OVA + - 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 Special' + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 3 + day: 16 + endDate: + year: 2022 + month: 3 + day: 16 + averageScore: 78 + nextAiringEpisode: null + - id: 126288 + idMal: 44055 + title: + romaji: Sasaki to Miyano + english: Sasaki and Miyano + native: 佐々木と宮野 + synonyms: + - ซาซากิกับมิยาโนะ + - Sasaki i Miyano + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 10 + endDate: + year: 2022 + month: 3 + day: 28 + averageScore: 81 + nextAiringEpisode: null + - id: 118465 + idMal: 41946 + title: + romaji: Shuumatsu no Harem + english: World's End Harem + native: 終末のハーレム + synonyms: + - ฮาเร็มวันสิ้นโลก + - Гарем конца света + - Тотальный гарем + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 7 + endDate: + year: 2022 + month: 3 + day: 18 + averageScore: 55 + nextAiringEpisode: null + - id: 131548 + idMal: 48553 + title: + romaji: Akebi-chan no Sailor Fuku + english: Akebi’s Sailor Uniform + native: 明日ちゃんのセーラー服 + synonyms: + - Akebi-chan no Serafuku + - Akebi's School Uniform + - ชุดกะลาสีของอาเคบิจัง + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 9 + endDate: + year: 2022 + month: 3 + day: 27 + averageScore: 75 + nextAiringEpisode: null + - id: 139589 + idMal: 49909 + title: + romaji: Kotarou wa Hitorigurashi + english: Kotaro Lives Alone + native: コタローは1人暮らし + synonyms: + - Kotaro vive solo + - โคทาโร่อยู่คนเดียว + - Kotaro En Solo + - Ο Κόταρο Ζει Μόνος του + - Kotaro Vai Morar Sozinho + - Kotaro abita da solo + status: FINISHED + format: ONA + episodes: 10 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 3 + day: 10 + endDate: + year: 2022 + month: 3 + day: 10 + averageScore: 81 + nextAiringEpisode: null + - id: 127050 + idMal: 44516 + title: + romaji: Koroshi Ai + english: Love of Kill + native: 殺し愛 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 12 + endDate: + year: 2022 + month: 3 + day: 30 + averageScore: 67 + nextAiringEpisode: null + - id: 134252 + idMal: 48997 + title: + romaji: Fantasy Bishoujo Juniku Oji-san to + english: Life With an Ordinary Guy Who Reincarnated Into a Total Fantasy Knockout + native: 異世界美少女受肉おじさんと + synonyms: + - เกิดใหม่ต่างโลก เพื่อนผมน่ารักโฮกเลยครับ + - Fabiniku + - В другом мире с мужчиной, обратившимся красоткой + - ファ美肉おじさん + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 12 + endDate: + year: 2022 + month: 3 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 130166 + idMal: 48239 + title: + romaji: Leadale no Daichi nite + english: In the Land of Leadale + native: リアデイルの大地にて + synonyms: + - มหาพิภพลีอาเดล + - World of Leadale + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 5 + endDate: + year: 2022 + month: 3 + day: 23 + averageScore: 68 + nextAiringEpisode: null + - id: 138424 + idMal: 49721 + title: + romaji: Karakai Jouzu no Takagi-san 3 + english: Teasing Master Takagi-san Season 3 + native: からかい上手の高木さん3 + synonyms: + - แกล้งนัก รักนะรู้ยัง ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 8 + endDate: + year: 2022 + month: 3 + day: 26 + averageScore: 82 + nextAiringEpisode: null + - id: 136192 + idMal: 49310 + title: + romaji: 'Fruits Basket: prelude' + english: Fruits Basket -prelude- + native: フルーツバスケット -prelude- + synonyms: + - The Story of Kyoko and Katsuya + - 今日子と勝也の物語 + - Kyouko to Katsuya no Monogatari + - Fruits Basket Movie + - 'Корзинка фруктов: Прелюдия' + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 2 + day: 18 + endDate: + year: 2022 + month: 2 + day: 18 + averageScore: 82 + nextAiringEpisode: null + - id: 122808 + idMal: 42670 + title: + romaji: Princess Connect! Re:Dive Season 2 + english: Princess Connect! Re:Dive Season 2 + native: プリンセスコネクト!Re:Dive Season 2 + synonyms: + - Priconne Season 2 + - 'ปรินเซส คอนเนค รี: ไดฟ์ ภาค 2' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 11 + endDate: + year: 2022 + month: 3 + day: 29 + averageScore: 77 + nextAiringEpisode: null + - id: 128034 + idMal: 45560 + title: + romaji: ORIENT + english: ORIENT + native: オリエント + synonyms: + - 2 สิงห์ พลิกตำนานพิฆาตอสูร + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 6 + endDate: + year: 2022 + month: 3 + day: 24 + averageScore: 62 + nextAiringEpisode: null + - id: 119056 + idMal: 42072 + title: + romaji: Kenja no Deshi wo Nanoru Kenja + english: She Professed Herself Pupil of the Wise Man + native: 賢者の弟子を名乗る賢者 + synonyms: + - KenDeshi + - ฉันเป็นศิษย์จอมปราชญ์จริงๆ นะ + - 自称贤者弟子的贤者 + - Petapa Sihir yang Mengaku sebagai Murid Petapa Sihir + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 12 + endDate: + year: 2022 + month: 3 + day: 30 + averageScore: 60 + nextAiringEpisode: null + - id: 130389 + idMal: 48375 + title: + romaji: 'Mahouka Koukou no Rettousei: Tsuioku-hen' + english: 'The Irregular at Magic High School: Reminiscence Arc' + native: 魔法科高校の劣等生 追憶編 + synonyms: + - พี่น้องปริศนาโรงเรียนมหาเวท ภาคย้อนความหลัง + - 'Непутёвый ученик в школе магии: Воспоминания' + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2022 + startDate: + year: 2021 + month: 12 + day: 31 + endDate: + year: 2021 + month: 12 + day: 31 + averageScore: 75 + nextAiringEpisode: null + - id: 136436 + idMal: 49893 + title: + romaji: 'Kobayashi-san Chi no Maidragon S: Nippon no Omotenashi (Attend wa Dragon desu)' + english: 'Miss Kobayashi’s Dragon Maid S: Japanese Hospitality (The Attendant Is a Dragon)' + native: 小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです) + synonyms: + - Miss Kobayashi's Dragon Maid S Special + - Miss Kobayashi's Dragon Maid S Episode 13 + - Kobayashi-san Chi no Maidragon S Episode 13 + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 1 + day: 19 + endDate: + year: 2022 + month: 1 + day: 19 + averageScore: 77 + nextAiringEpisode: null + - id: 130550 + idMal: 48405 + title: + romaji: Totsukuni no Shoujo (2022) + english: The Girl from the Other Side + native: とつくにの少女 (2022) + synonyms: + - Siúil, a Rún + - L'Enfant et le Maudit + status: FINISHED + format: OVA + episodes: 1 + season: WINTER + seasonYear: 2022 + startDate: + year: 2022 + month: 3 + day: 10 + endDate: + year: 2022 + month: 3 + day: 10 + averageScore: 75 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/50-2022-spring.yaml b/test/fixtures/anilist/season_matrix/50-2022-spring.yaml new file mode 100644 index 0000000..475bd52 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/50-2022-spring.yaml @@ -0,0 +1,710 @@ +metadata: + captured_at: '2026-05-11T11:34:36Z' + label: 2022-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2022 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:35 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '23' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 140960 + idMal: 50265 + title: + romaji: SPY×FAMILY + english: SPY x FAMILY + native: SPY×FAMILY + synonyms: + - SxF + - 스파이 패밀리 + - 间谍过家家 + - Семья шпиона + - سباي إكس فاميلي + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 9 + endDate: + year: 2022 + month: 6 + day: 25 + averageScore: 83 + nextAiringEpisode: null + - id: 125367 + idMal: 43608 + title: + romaji: 'Kaguya-sama wa Kokurasetai: Ultra Romantic' + english: 'Kaguya-sama: Love is War -Ultra Romantic-' + native: かぐや様は告らせたい-ウルトラロマンティック- + synonyms: + - 'Kaguya-sama: Love is War Season 3' + - 辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3 + - 辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季 + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3' + - สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3 + - สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก- + - Kaguya-sama wa Kokurasetai 3rd Season + - 'Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic' + - 'Госпожа Кагуя: в любви как на войне. Ультраромантика' + - 'Nona Kaguya Ingin Ditembak: Ultra Romantic' + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 9 + endDate: + year: 2022 + month: 6 + day: 25 + averageScore: 89 + nextAiringEpisode: null + - id: 111321 + idMal: 40356 + title: + romaji: Tate no Yuusha no Nariagari Season 2 + english: The Rising of the Shield Hero Season 2 + native: 盾の勇者の成り上がり Season 2 + synonyms: + - ผู้กล้าโล่ผงาด ภาค 2 + - Восхождение героя щита 2 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 6 + endDate: + year: 2022 + month: 6 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 129201 + idMal: 47194 + title: + romaji: Summer Time Render + english: Summer Time Rendering + native: サマータイムレンダ + synonyms: + - Summertime Render + - ปริศนาบ้านเก่า เงามรณะ + - A Ilha das Sombras + - 夏日重现 + - La Isla de las Sombras + - 'Tajemnica wyspy ' + - לעבור את הקיץ + - Bright Sun – Dark Shadows + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 15 + endDate: + year: 2022 + month: 9 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 127911 + idMal: 45613 + title: + romaji: Kawaii dake ja Nai Shikimori-san + english: Shikimori's Not Just a Cutie + native: 可愛いだけじゃない式守さん + synonyms: + - คุณชิกิโมริไม่ได้น่ารักแค่อย่างเดียวนะ + - Shikimori n'est pas juste mignonne + - Shikimori Không Chỉ Dễ Thương Thôi Đâu + - SHIKIMORI Tidak Hanya Manis + - Моя девушка не просто милашка + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 10 + endDate: + year: 2022 + month: 7 + day: 10 + averageScore: 68 + nextAiringEpisode: null + - id: 142984 + idMal: 50631 + title: + romaji: Komi-san wa, Komyushou desu. 2 + english: Komi Can't Communicate Part 2 + native: 古見さんは、コミュ症です。2 + synonyms: + - Komi Can't Communicate Season 2 + - โฉมงามพูดไม่เก่งกับผองเพื่อนไม่เต็มเต็ง ภาค 2 + - كومي لا تستطيع التواصل + - У Коми проблемы с общением 2 + - Комі не вміє спілкуватися 2 + - המשאלה של קומי + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 7 + endDate: + year: 2022 + month: 6 + day: 23 + averageScore: 79 + nextAiringEpisode: null + - id: 141014 + idMal: 50273 + title: + romaji: Tomodachi Game + english: Tomodachi Game + native: トモダチゲーム + synonyms: + - Friend Game + - 친구게임 + - โทโมดาจิ เกมมิตรภาพ + - لعبة الأصدقاء + - 'Tomodachi Game: Los juegos de la amistad' + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 6 + endDate: + year: 2022 + month: 6 + day: 22 + averageScore: 76 + nextAiringEpisode: null + - id: 137281 + idMal: 49520 + title: + romaji: Aharen-san wa Hakarenai + english: Aharen-san wa Hakarenai + native: 阿波連さんははかれない + synonyms: + - Aharen Is Indecipherable + - Aharen Is Unfathomable + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 2 + endDate: + year: 2022 + month: 6 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 142074 + idMal: 50461 + title: + romaji: Otomege Sekai wa Mob ni Kibishii Sekai desu + english: 'Trapped in a Dating Sim: The World of Otome Games Is Tough for Mobs' + native: 乙女ゲー世界はモブに厳しい世界です + synonyms: + - mobseka + - ชีวิตตัวประกอบอย่างตูช่างอยู่ยาก เมื่ออยู่ในโลกเกมจีบหนุ่ม + - 'Otome Game Sekai wa Mob ni Kibishii Sekai desu ' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 3 + endDate: + year: 2022 + month: 6 + day: 19 + averageScore: 71 + nextAiringEpisode: null + - id: 131520 + idMal: 48548 + title: + romaji: Go-toubun no Hanayome Movie + english: The Quintessential Quintuplets Movie + native: 映画 五等分の花嫁 + synonyms: + - 5-toubun no Hanayome Movie + - Eiga Go-toubun no Hanayome + - เจ้าสาวผมเป็นแฝดห้า The Movie + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 5 + day: 20 + endDate: + year: 2022 + month: 5 + day: 20 + averageScore: 78 + nextAiringEpisode: null + - id: 132052 + idMal: 48675 + title: + romaji: Kakkou no Iinazuke + english: A Couple of Cuckoos + native: カッコウの許嫁 + synonyms: + - รักอลวนคนสลับบ้าน + - Обручённые кукушками + - Kakkou no Iinazuke + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 24 + endDate: + year: 2022 + month: 10 + day: 2 + averageScore: 67 + nextAiringEpisode: null + - id: 132474 + idMal: 48760 + title: + romaji: Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu + english: Skeleton Knight in Another World + native: 骸骨騎士様、只今異世界へお出掛け中 + synonyms: + - บันทึกการเดินทางต่างโลกของท่านอัศวินกระดูก + - Kesatria Tengkorak Berkelana di Dunia Lain + - Hiệp Sĩ Xương Trên Đường Du Hành Đến Thế Giới Khác + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 7 + endDate: + year: 2022 + month: 6 + day: 23 + averageScore: 70 + nextAiringEpisode: null + - id: 130586 + idMal: 48415 + title: + romaji: Shijou Saikyou no Daimaou, Murabito A ni Tensei suru + english: The Greatest Demon Lord Is Reborn as a Typical Nobody + native: 史上最強の大魔王、村人Aに転生する + synonyms: + - ชีวิตใหม่ไม่ธรรมดาของราชาปีศาจขี้เหงา + - Raja Iblis Terkuat Sepanjang Sejarah Terlahir Kembali Sebagai Figuran + - Đại Ma Vương Mạnh Nhất Lịch Sử Chuyển Sinh Thành Dân Làng A + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 6 + endDate: + year: 2022 + month: 6 + day: 22 + averageScore: 62 + nextAiringEpisode: null + - id: 140457 + idMal: 50175 + title: + romaji: Yuusha, Yamemasu + english: I'm Quitting Heroing + native: 勇者、辞めます + synonyms: + - Yamemasu Tsugi No Shokuba Ha Mao Jo + - yuuyame + - 'I’m Quitting Heroing: Next Gig Is at the Demon Queen''s Castle' + - ผมน่ะเลิกเป็นผู้กล้าแล้วครับ + - 勇者、辭職不幹了 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 5 + endDate: + year: 2022 + month: 6 + day: 21 + averageScore: 69 + nextAiringEpisode: null + - id: 141774 + idMal: 50380 + title: + romaji: Paripi Koumei + english: Ya Boy Kongming! + native: パリピ孔明 + synonyms: + - Party People Kongming + - Paripi Kongming + - ขงเบ้งเจาะเวลามาปั้นดาว + - 派對咖孔明 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 3 + day: 31 + endDate: + year: 2022 + month: 6 + day: 16 + averageScore: 79 + nextAiringEpisode: null + - id: 142455 + idMal: 50549 + title: + romaji: Bubble + english: Bubble + native: バブル + synonyms: + - บับเบิ้ล + - Burbujas + - فقاعة + status: FINISHED + format: ONA + episodes: 1 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 28 + endDate: + year: 2022 + month: 4 + day: 28 + averageScore: 71 + nextAiringEpisode: null + - id: 134732 + idMal: 49052 + title: + romaji: Aoashi + english: Aoashi + native: アオアシ + synonyms: + - AOASHI แข็งเด็กหัวใจนักสู้ + - أواشي + - Ao Ashi - Playmaker + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 9 + endDate: + year: 2022 + month: 9 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 132010 + idMal: 48643 + title: + romaji: Koi wa Sekai Seifuku no Ato de + english: Love After World Domination + native: 恋は世界征服のあとで + synonyms: + - รักเรานั้นไว้หลังครองโลก + - รักหลังครองโลก + - Koiseka + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 8 + endDate: + year: 2022 + month: 6 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 116605 + idMal: 41461 + title: + romaji: Date A Live IV + english: Date A Live IV + native: デート・ア・ライブIV + synonyms: + - Date A Live Season 4 + - พิชิตรัก พิทักษ์โลก ภาค 4 + - Рандеву с Жизнью 4 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 8 + endDate: + year: 2022 + month: 6 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 129193 + idMal: 47162 + title: + romaji: Shokei Shoujo no Virgin Road + english: The Executioner and Her Way of Life + native: 処刑少女の生きる道(バージンロード) + synonyms: + - เวอร์จินโร้ด เพชฌฆาตสาวบนเส้นทางพิสุทธิ์ + - 處刑少女的生存之道 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 2 + endDate: + year: 2022 + month: 6 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 121176 + idMal: 42429 + title: + romaji: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season' + english: Ascendance of a Bookworm Season 3 + native: 本好きの下剋上 司書になるためには手段を選んでいられません 第3期 + synonyms: + - 爱书的下克上:为了成为图书管理员不择手段!3 + - หนอนหนังสือยึดอำนาจ ภาค 3 + - การปฏิวัติของสาวน้อยหนอนหนังสือ ภาค 3 + - 'Sự Nổi Dậy Của Cô Gái Mọt Sách: Mình Sẽ Làm Mọi Cách Để Trở Thành Thủ Thư 3' + - Власть книжного червя + status: FINISHED + format: TV + episodes: 10 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 12 + endDate: + year: 2022 + month: 6 + day: 14 + averageScore: 79 + nextAiringEpisode: null + - id: 133175 + idMal: 48842 + title: + romaji: Mahoutsukai Reimeiki + english: The Dawn of the Witch + native: 魔法使い黎明期 + synonyms: + - 魔法使黎明期 + - จอมเวทแห่งรุ่งอรุณ + - Bình Minh Của Phù Thủy + - Purwa Fajar Si Penyihir + - Рассвет ведьмы + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 8 + endDate: + year: 2022 + month: 7 + day: 1 + averageScore: 62 + nextAiringEpisode: null + - id: 133898 + idMal: 48903 + title: + romaji: 'Dragon Ball Super: Super Hero' + english: 'Dragon Ball Super: SUPER HERO' + native: ドラゴンボール超 スーパーヒーロー + synonyms: + - 'دراغون بول سوبر: البطل الخارق' + - Dragon Ball Super - Szuperhős + - 'Драконий жемчуг: Супер — Супергерой' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 6 + day: 11 + endDate: + year: 2022 + month: 6 + day: 11 + averageScore: 76 + nextAiringEpisode: null + - id: 125124 + idMal: 43470 + title: + romaji: Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart) + english: Science Fell in Love, So I Tried to Prove It r=1-sinθ + native: 理系が恋に落ちたので証明してみた。r=1-sinθ(ハート) + synonyms: + - พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ ภาค 2 + - Rikei ga Koi ni Ochita no de Shoumei shitemita. 2nd Season + - พิสูจน์นิยามความรักด้วยหลักวิชาสายวิทย์ r=1-sinθ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 2 + endDate: + year: 2022 + month: 6 + day: 18 + averageScore: 71 + nextAiringEpisode: null + - id: 132532 + idMal: 48779 + title: + romaji: Deaimon + english: 'Deaimon: Recipe for Happiness' + native: であいもん + synonyms: + - Kyoto & Wagashi & Family + - 相合之物 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2022 + startDate: + year: 2022 + month: 4 + day: 6 + endDate: + year: 2022 + month: 6 + day: 22 + averageScore: 74 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/51-2022-summer.yaml b/test/fixtures/anilist/season_matrix/51-2022-summer.yaml new file mode 100644 index 0000000..275f412 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/51-2022-summer.yaml @@ -0,0 +1,712 @@ +metadata: + captured_at: '2026-05-11T11:34:38Z' + label: 2022-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2022 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:38 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '22' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 120377 + idMal: 42310 + title: + romaji: 'Cyberpunk: Edgerunners' + english: 'Cyberpunk: Edgerunners' + native: サイバーパンク エッジランナーズ + synonyms: + - 'Cyberpunk: Mercenários' + - 電馭叛客:邊緣行者 + - 'CYBERPUNK: อาชญากรแดนเถื่อน' + - 'Киберпанк: Бегущие по краю' + status: FINISHED + format: ONA + episodes: 10 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 9 + day: 13 + endDate: + year: 2022 + month: 9 + day: 13 + averageScore: 85 + nextAiringEpisode: null + - id: 141391 + idMal: 50346 + title: + romaji: Yofukashi no Uta + english: Call of the Night + native: よふかしのうた + synonyms: + - Song of the Night Walkers + - Night Owl Song + - เพลงรักมนุษย์ค้างคาว + - نداء الليل + - Zew nocy + - Il richiamo della notte + - Поклик ночі + - Песнь ночных сов + - El canto de la noche + - Canções da Noite + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 8 + endDate: + year: 2022 + month: 9 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 145545 + idMal: 51096 + title: + romaji: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season + english: Classroom of the Elite Season 2 + native: ようこそ実力至上主義の教室へ 2nd Season + synonyms: + - You-Zitsu 2 + - Youjitsu 2 + - ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 2 + - Cote 2 + - Добро пожаловать в класс для особо одарённых 2 + - 歡迎來到實力至上主義的教室 第二季 + - فصل النخبة الموسم الثاني + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 4 + endDate: + year: 2022 + month: 9 + day: 26 + averageScore: 79 + nextAiringEpisode: null + - id: 143270 + idMal: 50709 + title: + romaji: Lycoris Recoil + english: Lycoris Recoil + native: リコリス・リコイル + synonyms: + - ไลโคริส รีคอยล์ + - LycoReco + - Ликорис Рекойл + - 莉可麗絲 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 2 + endDate: + year: 2022 + month: 9 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 133844 + idMal: 48895 + title: + romaji: Overlord IV + english: Overlord IV + native: オーバーロードⅣ + synonyms: + - Overlord 4 + - โอเวอร์ลอร์ด ภาค 4 + - โอเวอร์ ลอร์ด จอมมารพิชิตโลก ภาค 4 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 5 + endDate: + year: 2022 + month: 9 + day: 27 + averageScore: 80 + nextAiringEpisode: null + - id: 130592 + idMal: 48413 + title: + romaji: Hataraku Maou-sama!! + english: The Devil is a Part-Timer! Season 2 + native: はたらく魔王さま!! + synonyms: + - ผู้กล้าซึนซ่าส์กับจอมมารสู้ชีวิต ภาค 2 + - Hataraku Maou-sama! 2 + - The Devil is a Part-Timer!! + - Hataraku Maou-sama 2nd Season + - 打工吧!魔王大人 第二季 + - Raja Iblis Nyambi! Musim Kedua + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 14 + endDate: + year: 2022 + month: 9 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 114745 + idMal: 41084 + title: + romaji: 'Made in Abyss: Retsujitsu no Ougonkyou' + english: 'Made in Abyss: The Golden City of the Scorching Sun' + native: メイドインアビス 烈日の黄金郷 + synonyms: + - Made in Abyss Season 2 + - ผ่าเหวนรก ภาค 2 + - นักบุกเบิกหลุมยักษ์ ภาค 2 + - صنع في الهاوية 2 + - ผ่าเหวนรก นครทองคำแห่งอาทิตย์ที่เจิดจ้า + - Đến từ Vực Thẳm Mùa 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 6 + endDate: + year: 2022 + month: 9 + day: 28 + averageScore: 85 + nextAiringEpisode: null + - id: 124410 + idMal: 42963 + title: + romaji: Kanojo, Okarishimasu 2nd Season + english: Rent-a-Girlfriend Season 2 + native: 彼女、お借りします 第2期 + synonyms: + - KanoKari 2 + - สะดุดรักยัยแฟนเช่า ภาค 2 + - Pacar Sewaan 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 2 + endDate: + year: 2022 + month: 9 + day: 17 + averageScore: 65 + nextAiringEpisode: null + - id: 135806 + idMal: 49220 + title: + romaji: Isekai Oji-san + english: Uncle from Another World + native: 異世界おじさん + synonyms: + - Ojisan in Another World + - ยอดคุณน้าจากต่างโลก + - Mi tío es de otro mundo + - Coma héroïque dans un autre monde + - O Tio de Outro Mundo + - דוד מעולם אחר + - Θείος Από Άλλο Κόσμο + - Дядько з іншого світу + - Дядя из другого мира + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 6 + endDate: + year: 2023 + month: 3 + day: 8 + averageScore: 76 + nextAiringEpisode: null + - id: 129196 + idMal: 47164 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Meikyuu-hen' + english: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV + native: ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇 + synonyms: + - มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 + - Danmachi IV + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season + - Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 + - 'Liệu Có Sai Lầm Khi Tìm Kiếm Cuộc Gặp Gỡ Định Mệnh Trong Hầm Ngục? IV: Chương Mới Phần Mê Cung' + - ダンまちⅣ + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 21 + endDate: + year: 2022 + month: 9 + day: 29 + averageScore: 77 + nextAiringEpisode: null + - id: 146722 + idMal: 51367 + title: + romaji: 'JoJo no Kimyou na Bouken: Stone Ocean Part 2' + english: 'JoJo''s Bizarre Adventure: STONE OCEAN Part 2' + native: ジョジョの奇妙な冒険 ストーンオーシャン 2クール + synonyms: + - JoJo's Bizarre Adventure Part 6 (Part 2) + - JoJo no Kimyou na Bouken Part 6 (Part 2) + - 'JoJo''s Bizarre Adventure: STONE OCEAN The Final Episodes' + status: FINISHED + format: ONA + episodes: 26 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 9 + day: 1 + endDate: + year: 2022 + month: 12 + day: 1 + averageScore: 82 + nextAiringEpisode: null + - id: 142876 + idMal: 50612 + title: + romaji: 'Dr. STONE: Ryuusui' + english: Dr. STONE Special Episode – RYUSUI + native: Dr.STONE 龍水 + synonyms: + - 'Dr. STONE: Ryusui' + - 'Доктор Стоун: Рюсуй' + status: FINISHED + format: SPECIAL + episodes: 1 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 10 + endDate: + year: 2022 + month: 7 + day: 10 + averageScore: 81 + nextAiringEpisode: null + - id: 146210 + idMal: 51213 + title: + romaji: 'Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsuki Susumu' + english: Vermeil in Gold + native: 金装のヴェルメイユ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~ + synonyms: + - 'Vermeil in Gold: A Desperate Magician Barges Into the Magical World Alongside the Strongest Calamity' + - 'เวอร์มีลแห่งเวทสีทอง: นักอาคมหวิดซิ่วกับอสูรรับใช้สุดแกร่งบุกตะลุยโลกเวทมนตร์' + - Vermeil in Gold - Il mago a rischio bocciatura e la calamità più forte si fanno strada nel mondo della magia + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 5 + endDate: + year: 2022 + month: 9 + day: 20 + averageScore: 67 + nextAiringEpisode: null + - id: 136934 + idMal: 49470 + title: + romaji: Mamahaha no Tsurego ga Motokano datta + english: My Stepmom's Daughter is My Ex + native: 継母の連れ子が元カノだった + synonyms: + - Motokano + - Tsurekano + - My Stepsister is My Ex-Girlfriend + - เอาแล้วไง ยัยแฟนเก่าดันเป็นลูกสาวแม่ใหม่ + - Step-Exes + - 繼母的拖油瓶是我的前女友 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 6 + endDate: + year: 2022 + month: 9 + day: 21 + averageScore: 66 + nextAiringEpisode: null + - id: 142769 + idMal: 50593 + title: + romaji: Natsu e no Tunnel, Sayonara no Deguchi + english: The Tunnel to Summer, the Exit of Goodbyes + native: 夏へのトンネル、さよならの出口 + synonyms: + - คำจากลาของคิมหันต์ ณ ปลายอุโมงค์ + - Natsuton + - El túnel de los deseos + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 9 + day: 9 + endDate: + year: 2022 + month: 9 + day: 9 + averageScore: 79 + nextAiringEpisode: null + - id: 145260 + idMal: 51064 + title: + romaji: Kuro no Shoukanshi + english: Black Summoner + native: 黒の召喚士 + synonyms: + - นักอัญเชิญทมิฬ + - 黑之召喚士 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 9 + endDate: + year: 2022 + month: 9 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 146625 + idMal: 51417 + title: + romaji: Engage Kiss + english: Engage Kiss + native: Engage Kiss + synonyms: + - エンゲージ・キス + - Project Engage + - Клятвенный поцелуй + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 3 + endDate: + year: 2022 + month: 9 + day: 25 + averageScore: 66 + nextAiringEpisode: null + - id: 138882 + idMal: 49776 + title: + romaji: Kumichou Musume to Sewagakari + english: The Yakuza's Guide to Babysitting + native: 組長娘と世話係 + synonyms: + - Con Gái Ông Trùm Và Người Giám Hộ + - 組長女兒與保姆 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 7 + endDate: + year: 2022 + month: 9 + day: 22 + averageScore: 77 + nextAiringEpisode: null + - id: 136707 + idMal: 49438 + title: + romaji: Isekai Yakkyoku + english: Parallel World Pharmacy + native: 異世界薬局 + synonyms: + - เภสัชกรเทพสองโลก + - 奇幻世界药局 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 10 + endDate: + year: 2022 + month: 9 + day: 25 + averageScore: 72 + nextAiringEpisode: null + - id: 129192 + idMal: 47163 + title: + romaji: 'Tensei Kenja no Isekai Life: Daini no Shokugyou wo Ete, Sekai Saikyou ni Narimashita' + english: 'My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!' + native: 転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~ + synonyms: + - เกิดใหม่ในต่างโลกเป็นปราชญ์แกร่งสุดโดยไม่รู้ตัว + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 4 + endDate: + year: 2022 + month: 9 + day: 12 + averageScore: 61 + nextAiringEpisode: null + - id: 127090 + idMal: 44524 + title: + romaji: Isekai Meikyuu de Harem wo + english: Harem in the Labyrinth of Another World + native: 異世界迷宮でハーレムを + synonyms: + - ฮาเร็มนี้พี่ขอสร้างที่ต่างโลก + - Harem in the fantasy world dungeon + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 6 + endDate: + year: 2022 + month: 9 + day: 21 + averageScore: 63 + nextAiringEpisode: null + - id: 141902 + idMal: 50410 + title: + romaji: 'ONE PIECE FILM: RED' + english: 'One Piece Film: Red' + native: ONE PIECE FILM RED + synonyms: + - One Piece Film 15 + - 'فيلم ون بيس: ريد' + - วันพีซ ฟิล์ม เรด + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 8 + day: 6 + endDate: + year: 2022 + month: 8 + day: 6 + averageScore: 78 + nextAiringEpisode: null + - id: 128223 + idMal: 45653 + title: + romaji: Soredemo Ayumu wa Yosetekuru + english: When Will Ayumu Make His Move? + native: それでも歩は寄せてくる + synonyms: + - Shogi Senpai + - Even so, Ayumu draws closer to the endgame + - ' ขอรุกเข้าไปใกล้ๆ ใจเธอ' + - À quoi tu joues, Ayumu ?! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 8 + endDate: + year: 2022 + month: 9 + day: 23 + averageScore: 69 + nextAiringEpisode: null + - id: 141351 + idMal: 50339 + title: + romaji: Kakegurui Twin + english: Kakegurui Twin + native: 賭ケグルイ双 + synonyms: + - โคตรเซียนโรงเรียนพนัน ภาค Twin + - Compulsive Gambler Twin + - Шалений азарт. Затятий двійник + - Двойной азарт + status: FINISHED + format: ONA + episodes: 6 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 8 + day: 4 + endDate: + year: 2022 + month: 8 + day: 4 + averageScore: 71 + nextAiringEpisode: null + - id: 149326 + idMal: 51837 + title: + romaji: Saikin Yatotta Maid ga Ayashii + english: The Maid I Hired Recently is Mysterious + native: 最近雇ったメイドが怪しい + synonyms: + - 'Cô Hầu Gái Tôi Mới Thuê Gần Đây Thật Đáng Ngờ ' + - เมดคนนี้มีพิรุธ + - 新來的女傭有點怪 + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2022 + startDate: + year: 2022 + month: 7 + day: 24 + endDate: + year: 2022 + month: 10 + day: 9 + averageScore: 63 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/52-2022-fall.yaml b/test/fixtures/anilist/season_matrix/52-2022-fall.yaml new file mode 100644 index 0000000..8b485ec --- /dev/null +++ b/test/fixtures/anilist/season_matrix/52-2022-fall.yaml @@ -0,0 +1,711 @@ +metadata: + captured_at: '2026-05-11T11:34:41Z' + label: 2022-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2022 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:40 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Content-Security-Policy-Report-Only: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '21' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Nel: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 127230 + idMal: 44511 + title: + romaji: Chainsaw Man + english: Chainsaw Man + native: チェンソーマン + synonyms: + - CSM + - رجل المنشار + - 链锯人 + - Человек-бензопила + - 체인소 맨 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 12 + endDate: + year: 2022 + month: 12 + day: 28 + averageScore: 83 + nextAiringEpisode: null + - id: 142838 + idMal: 50602 + title: + romaji: SPY×FAMILY Part 2 + english: SPY x FAMILY Cour 2 + native: SPY×FAMILY 第2クール + synonyms: + - SxF + - 스파이 패밀리 + - 间谍过家家 + - スパイファミリー 2クール + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 1 + endDate: + year: 2022 + month: 12 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 137822 + idMal: 49596 + title: + romaji: Blue Lock + english: BLUE LOCK + native: ブルーロック + synonyms: + - BLUE LOCK ขังดวลแข้ง + - ' بلو لوك' + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 9 + endDate: + year: 2023 + month: 3 + day: 26 + averageScore: 80 + nextAiringEpisode: null + - id: 130298 + idMal: 48316 + title: + romaji: Kage no Jitsuryokusha ni Naritakute! + english: The Eminence in Shadow + native: 陰の実力者になりたくて! + synonyms: + - To Be a Power in the Shadows! + - ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา + - Un giorno sarò l'eminenza grigia + - TEIS + - Кардинал теней + status: FINISHED + format: TV + episodes: 20 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 5 + endDate: + year: 2023 + month: 2 + day: 15 + averageScore: 81 + nextAiringEpisode: null + - id: 139630 + idMal: 49918 + title: + romaji: Boku no Hero Academia 6 + english: My Hero Academia Season 6 + native: 僕のヒーローアカデミア6 + synonyms: + - BNHA 6 + - MHA 6 + - 我的英雄学院 6 + - 我的英雄学院第六季 + - มายฮีโร่ อคาเดเมีย ภาค 6 + - 'أكاديميتي للأبطال ' + - Моя геройская академия 6 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 1 + endDate: + year: 2023 + month: 3 + day: 25 + averageScore: 82 + nextAiringEpisode: null + - id: 140439 + idMal: 50172 + title: + romaji: Mob Psycho 100 III + english: Mob Psycho 100 III + native: モブサイコ100 Ⅲ + synonyms: + - モブサイコ100 III + - ม็อบไซโค 100 คนพลังจิต ภาค 3 + - Моб Психо 100 III + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 6 + endDate: + year: 2022 + month: 12 + day: 22 + averageScore: 87 + nextAiringEpisode: null + - id: 130003 + idMal: 47917 + title: + romaji: Bocchi the Rock! + english: BOCCHI THE ROCK! + native: ぼっち・ざ・ろっく! + synonyms: + - РОК-ТИХОНЯ! + - บจจิเดอะร็อก! + - 孤獨搖滾! + - 孤独摇滚! + - 외톨이 THE ROCK! + - 봇치 더 록! + - BTR + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 9 + endDate: + year: 2022 + month: 12 + day: 25 + averageScore: 87 + nextAiringEpisode: null + - id: 116674 + idMal: 41467 + title: + romaji: 'BLEACH: Sennen Kessen-hen' + english: 'BLEACH: Thousand-Year Blood War' + native: BLEACH 千年血戦篇 + synonyms: + - 'بليتش: حرب الألف سنة الدموية' + - 'Bleach: La guerre sanglante de mille ans' + - BLEACH TYBW + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 11 + endDate: + year: 2022 + month: 12 + day: 27 + averageScore: 88 + nextAiringEpisode: null + - id: 142770 + idMal: 50594 + title: + romaji: Suzume no Tojimari + english: Suzume + native: すずめの戸締まり + synonyms: + - 铃芽之旅 + - Khóa Chặt Cửa Nào Suzume + - การผนึกประตูของซุซุเมะ + - Судзуме зачиняє двері + - Судзумэ + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 11 + day: 11 + endDate: + year: 2022 + month: 11 + day: 11 + averageScore: 81 + nextAiringEpisode: null + - id: 141949 + idMal: 50425 + title: + romaji: Fuufu Ijou, Koibito Miman. + english: More than a Married Couple, but Not Lovers. + native: 夫婦以上、恋人未満。 + synonyms: + - More than a Couple, Less than Lovers. + - แผนสมรสไม่สมเลิฟ + - Presque mariés, loin d'être amoureux. + - Больше чем пара, меньше чем любовники + - Fuukoi + - ふうこい + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 9 + endDate: + year: 2022 + month: 12 + day: 25 + averageScore: 76 + nextAiringEpisode: null + - id: 139587 + idMal: 49891 + title: + romaji: Tensei Shitara Ken Deshita + english: Reincarnated as a Sword + native: 転生したら剣でした + synonyms: + - I Became the Sword by Transmigrating + - TenKen + - ซวยเหลือหลาย เกิดใหม่กลายเป็นดาบ + - TENKEN - Reincarnato in una spada + - 轉生就是劍 + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 9 + day: 28 + endDate: + year: 2022 + month: 12 + day: 14 + averageScore: 74 + nextAiringEpisode: null + - id: 138565 + idMal: 49709 + title: + romaji: Fumetsu no Anata e Season 2 + english: To Your Eternity Season 2 + native: 不滅のあなたへ Season 2 + synonyms: + - 不滅のあなたへ 第2シリーズ + - Uma vida imortal 2 + - แด่เธอผู้เป็นนิรันดร์ ภาค 2 + status: FINISHED + format: TV + episodes: 20 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 23 + endDate: + year: 2023 + month: 3 + day: 12 + averageScore: 80 + nextAiringEpisode: null + - id: 153930 + idMal: 52865 + title: + romaji: Romantic Killer + english: Romantic Killer + native: ロマンティック・キラー + synonyms: + - La asesina del romance + - Романтичний убивця + - Убийца-романтик + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 27 + endDate: + year: 2022 + month: 10 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 139498 + idMal: 49877 + title: + romaji: 'Tensei Shitara Slime Datta Ken: Guren no Kizuna-hen' + english: 'That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond' + native: 劇場版 転生したらスライムだった件 紅蓮の絆編 + synonyms: + - That Time I Got Reincarnated as a Slime Movie + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว เดอะมูฟวี่ + - 'Lúc đó tôi đã chuyển sinh thành Slime: Mối Liên Kết Đỏ Thẫm' + - 'О моём перерождении в слизь: Алые узы' + - Tensura Movie + - 'That Time I Got Reincarnated as a Slime: El Vínculo Escarlata' + - That Time I Got Reincarnated as a Slime - Laços Escarlates + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 11 + day: 25 + endDate: + year: 2022 + month: 11 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 143277 + idMal: 50710 + title: + romaji: Urusei Yatsura (2022) + english: Urusei Yatsura (2022) + native: うる星やつら (2022) + synonyms: + - 'Urusei Yatsura: All Stars' + - Lum, the Invader Girl + - Lamù e i casinisti planetari + - Turma do Barulho + - Urusei Yatsura (2022) Season 2 + - 'Urusei Yatsura: Kosmiczni natręci' + status: FINISHED + format: TV + episodes: 23 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 14 + endDate: + year: 2023 + month: 3 + day: 24 + averageScore: 72 + nextAiringEpisode: null + - id: 150695 + idMal: 52046 + title: + romaji: Yuusha Party wo Tsuihou Sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau + english: Beast Tamer + native: 勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う + synonyms: + - เทมเมอร์ถูกทิ้งกับสาวหูแมวสุดแกร่ง + - Penjinak Binatang yang Ditendang dari Regu Pahlawan Bertemu Gadis Bertelinga Hewan dari Ras Terkuat + - 被勇者隊伍開除的馭獸使,邂逅了最強種的貓耳少女 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 1 + endDate: + year: 2022 + month: 12 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 139274 + idMal: 49828 + title: + romaji: 'Kidou Senshi Gundam: Suisei no Majo' + english: 'Mobile Suit Gundam: The Witch from Mercury' + native: 機動戦士ガンダム 水星の魔女 + synonyms: + - G-Witch + - 'Mobile Suit Gundam: Penyihir dari Mercury' + - 機動戰士鋼彈 水星的魔女 + - 'Мобильный воин Гандам: Ведьма с Меркурия' + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 2 + endDate: + year: 2023 + month: 1 + day: 8 + averageScore: 78 + nextAiringEpisode: null + - id: 151379 + idMal: 52193 + title: + romaji: Akiba Meido Sensou + english: Akiba Maid War + native: アキバ冥途戦争 + synonyms: + - Akiba Maid Sensou + - Война горничных Акибы + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 7 + endDate: + year: 2022 + month: 12 + day: 23 + averageScore: 74 + nextAiringEpisode: null + - id: 139092 + idMal: 49784 + title: + romaji: Mairimashita! Iruma-kun 3 + english: Welcome to Demon School! Iruma-kun Season 3 + native: 魔入りました!入間くん 第3シリーズ + synonyms: + - อิรุมะคุง พจญในแดนปีศาจ! ภาค 3 + status: FINISHED + format: TV + episodes: 21 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 8 + endDate: + year: 2023 + month: 3 + day: 4 + averageScore: 78 + nextAiringEpisode: null + - id: 139820 + idMal: 49979 + title: + romaji: Akuyaku Reijou nano de Last Boss wo Kattemimashita + english: I'm the Villainess, So I'm Taming the Final Boss + native: 悪役令嬢なのでラスボスを飼ってみました + synonyms: + - 作为恶役大小姐就该养魔王 + - 悪ラス + - AkuLast + - AkuRasu + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 9 + day: 24 + endDate: + year: 2022 + month: 12 + day: 10 + averageScore: 71 + nextAiringEpisode: null + - id: 124395 + idMal: 42962 + title: + romaji: Uzaki-chan wa Asobitai! ω + english: Uzaki-chan Wants to Hang Out! Season 2 + native: 宇崎ちゃんは遊びたい!ω(だぶる) + synonyms: + - Uzaki-chan Wants to Hang Out! ω + - Uzaki-chan Wants to Hang Out! Double + - Uzaki-chan wa Asobitai! 2nd Season + - รุ่นน้องตัวป่วน อยากชวนเที่ยวเล่น ภาค 2 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 1 + endDate: + year: 2022 + month: 12 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 146676 + idMal: 51403 + title: + romaji: Renai Flops + english: LOVE FLOPS + native: 恋愛フロップス + synonyms: + - Renai Furoppusu + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 12 + endDate: + year: 2022 + month: 12 + day: 28 + averageScore: 65 + nextAiringEpisode: null + - id: 145604 + idMal: 51098 + title: + romaji: Shinobi no Ittoki + english: Shinobi no Ittoki + native: 忍の一時 + synonyms: + - Синоби Иттоки + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 4 + endDate: + year: 2022 + month: 12 + day: 20 + averageScore: 58 + nextAiringEpisode: null + - id: 140999 + idMal: 50275 + title: + romaji: 'Sword Art Online: Progressive - Kuraki Yuuyami no Scherzo' + english: Sword Art Online the Movie -Progressive- Scherzo of Deep Night + native: 劇場版 ソードアート・オンライン プログレッシブ 冥き夕闇のスケルツォ + synonyms: + - 'Sword Art Online: Progressive - Scherzo of Dark Night' + - SAO Progressive + - SAOP + - 'Sword Art Online : Progressive - สแกรโซแห่งสนธยาโศก' + - 'Sword Art Online: Progressive - Scherzo de una profunda oscuridad' + - 'Sword Art Online Progressive: Scherzo do Crepúsculo Sombrio ' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 22 + endDate: + year: 2022 + month: 10 + day: 22 + averageScore: 76 + nextAiringEpisode: null + - id: 139310 + idMal: 49834 + title: + romaji: Boku ga Aishita Subete no Kimi e + english: To Every You I’ve Loved Before + native: 僕が愛したすべての君へ + synonyms: + - Nhắn gửi tất cả các em, những người tôi đã yêu + - BokuAi + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2022 + startDate: + year: 2022 + month: 10 + day: 7 + endDate: + year: 2022 + month: 10 + day: 7 + averageScore: 74 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/53-2023-winter.yaml b/test/fixtures/anilist/season_matrix/53-2023-winter.yaml new file mode 100644 index 0000000..6eb971e --- /dev/null +++ b/test/fixtures/anilist/season_matrix/53-2023-winter.yaml @@ -0,0 +1,694 @@ +metadata: + captured_at: '2026-05-11T11:34:43Z' + label: 2023-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2023 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:43 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '20' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 136430 + idMal: 49387 + title: + romaji: VINLAND SAGA SEASON 2 + english: Vinland Saga Season 2 + native: ヴィンランド・サガ SEASON2 + synonyms: + - Сага о Винланде 2 + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 10 + endDate: + year: 2023 + month: 6 + day: 20 + averageScore: 88 + nextAiringEpisode: null + - id: 146984 + idMal: 51535 + title: + romaji: 'Shingeki no Kyojin: The Final Season - Kanketsu-hen Zenpen' + english: Attack on Titan Final Season THE FINAL CHAPTERS Special 1 + native: 進撃の巨人 The Final Season完結編 前編 + synonyms: + - 'Shingeki no Kyojin: The Final Season Final Edition' + - 'Shingeki no Kyojin: The Final Season Part 3' + - ผ่าพิภพไททัน ภาค 4 + - ผ่าพิภพไททัน ไฟนอล ซีซั่น Part 3 + - Attack on Titan Final Season Part 3 Final Arc Part 1 + - Attack on Titan The Final Season The Final Part Special + - Attack on Titan The Final Season The Final Part Part 1 + - 'حمله به تایتان فصل آخر قسمت ویژه 1 ' + - SnK 4 + - AoT 4 + status: FINISHED + format: SPECIAL + episodes: 1 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 3 + day: 4 + endDate: + year: 2023 + month: 3 + day: 4 + averageScore: 87 + nextAiringEpisode: null + - id: 151806 + idMal: 52305 + title: + romaji: Tomo-chan wa Onnanoko! + english: Tomo-chan Is a Girl! + native: トモちゃんは女の子! + synonyms: + - Tomo-chan wa Onna no ko! + - 小智是女孩啦! + - Томо — девушка! + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 5 + endDate: + year: 2023 + month: 3 + day: 30 + averageScore: 76 + nextAiringEpisode: null + - id: 143338 + idMal: 50739 + title: + romaji: Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken + english: The Angel Next Door Spoils Me Rotten + native: お隣の天使様にいつの間にか駄目人間にされていた件 + synonyms: + - ขาดคุณนางฟ้าข้างห้องไป ผมคงมีชีวิตต่อไปไม่ได้อีกแล้ว + - Meu Anjo de Vizinha Me Mima Demais + - Chouchouté par l’ange d’à côté + - Ангел по соседству меня балует + - 關於我在無意間被隔壁的天使變成廢柴這件事 + - Aku Dimanjakan Tetanggaku yang Seperti Malaikat + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 7 + endDate: + year: 2023 + month: 3 + day: 25 + averageScore: 78 + nextAiringEpisode: null + - id: 142853 + idMal: 50608 + title: + romaji: 'Tokyo Revengers: Seiya Kessen-hen' + english: Tokyo Revengers Season 2 + native: 東京リベンジャーズ 聖夜決戦編 + synonyms: + - 'Tokyo Revengers: Christmas Showdown' + - Os Vingadores de Tóquio + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 4 + day: 2 + averageScore: 75 + nextAiringEpisode: null + - id: 130588 + idMal: 48417 + title: + romaji: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou + II' + english: 'The Misfit of Demon King Academy Ⅱ: History''s Strongest Demon King Reincarnates and Goes to School + with His Descendants' + native: 魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ + synonyms: + - The Misfit of Demon King Academy II + - 'The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants + Season 2' + - 'ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค + 2' + - Непригодный для Академии владыки тьмы II + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 9 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 155907 + idMal: 53411 + title: + romaji: Buddy Daddies + english: Buddy Daddies + native: Buddy Daddies + synonyms: + - バディダディ + - Напарники-папаши + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 7 + endDate: + year: 2023 + month: 4 + day: 1 + averageScore: 80 + nextAiringEpisode: null + - id: 145665 + idMal: 51105 + title: + romaji: NieR:Automata Ver1.1a + english: NieR:Automata Ver1.1a + native: NieR:Automata Ver1.1a + synonyms: + - ニーア オートマタ + - NieR Automata Ver1.1a + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 7 + day: 23 + averageScore: 73 + nextAiringEpisode: null + - id: 156067 + idMal: 53446 + title: + romaji: Tondemo Skill de Isekai Hourou Meshi + english: Campfire Cooking in Another World with my Absurd Skill + native: とんでもスキルで異世界放浪メシ + synonyms: + - Regarding the Display of an Outrageous Skill Which Has Incredible Powers + - Gourmet Adventure of Legendary Tamer + - สกิลสุดพิสดารกับมื้ออาหารในต่างโลก + - Mengembara dan Memasak di Dunia Lain dengan Skil yang Absurd + - Hero Skill - Achats en ligne + - 擁有超常技能的異世界流浪美食家 + - Кулинар со странными навыками в параллельном мире + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 10 + endDate: + year: 2023 + month: 3 + day: 28 + averageScore: 76 + nextAiringEpisode: null + - id: 141249 + idMal: 50330 + title: + romaji: Bungou Stray Dogs 4th Season + english: Bungo Stray Dogs 4 + native: 文豪ストレイドッグス 第4シーズン + synonyms: + - BSD 4 + - BungouSD 4 + - คณะประพันธกรจรจัด ภาค 4 + - 文豪野犬第四季 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 4 + endDate: + year: 2023 + month: 3 + day: 29 + averageScore: 84 + nextAiringEpisode: null + - id: 146850 + idMal: 51462 + title: + romaji: Isekai Nonbiri Nouka + english: Farming Life in Another World + native: 異世界のんびり農家 + synonyms: + - ' ISEKAI FARMING - Vita contadina in un altro mondo' + - 異世界悠閒農家 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 6 + endDate: + year: 2023 + month: 3 + day: 24 + averageScore: 74 + nextAiringEpisode: null + - id: 140596 + idMal: 50197 + title: + romaji: Ijiranaide, Nagatoro-san 2nd Attack + english: DON'T TOY WITH ME, MISS NAGATORO 2nd Attack + native: イジらないで、長瀞さん 2nd Attack + synonyms: + - Don't Toy With Me, Miss Nagatoro Season 2 + - ยัยตัวแสบแอบน่ารัก นางาโทโระ ภาค 2 + - Не издевайся надо мной, Нагаторо! 2 раунд + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 3 + day: 19 + averageScore: 73 + nextAiringEpisode: null + - id: 155211 + idMal: 53111 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou Yakusai-hen' + english: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2 + native: ダンジョンに出会いを求めるのは間違っているだろうかⅣ 深章 厄災篇 + synonyms: + - มันผิดรึไงถ้าใจอยากจะพบรักในดันเจี้ยน ภาค 4 Part 2 + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 4th Season Part 2 + - Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 4 Part 2 + - Danmachi IV Part 2 + - ダンまちⅣ + status: FINISHED + format: TV + episodes: 11 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 5 + endDate: + year: 2023 + month: 3 + day: 16 + averageScore: 82 + nextAiringEpisode: null + - id: 144553 + idMal: 50932 + title: + romaji: Saikyou Onmyouji no Isekai Tenseiki + english: The Reincarnation of the Strongest Exorcist in Another World + native: 最強陰陽師の異世界転生記 + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 4 + day: 2 + averageScore: 70 + nextAiringEpisode: null + - id: 151252 + idMal: 52173 + title: + romaji: Koori Zokusei Danshi to Cool na Douryou Joshi + english: The Ice Guy and His Cool Female Colleague + native: 氷属性男子とクールな同僚女子 + synonyms: + - บริษัทลุ้นรัก หนุ่มหิมะกับสาวสุดคูล + - Pria Es dan Rekan Wanitanya yang Keren + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 3 + endDate: + year: 2023 + month: 3 + day: 21 + averageScore: 72 + nextAiringEpisode: null + - id: 148969 + idMal: 51815 + title: + romaji: Kubo-san wa Mob wo Yurusanai + english: Kubo Won't Let Me Be Invisible + native: 久保さんは僕を許さない + synonyms: + - Kubo Tidak Akan Membiarkanku Tak Terlihat + - คุณคุโบะไม่ยอมให้ผมเป็นตัวประกอบ + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 10 + endDate: + year: 2023 + month: 6 + day: 20 + averageScore: 74 + nextAiringEpisode: null + - id: 151040 + idMal: 52093 + title: + romaji: TRIGUN STAMPEDE + english: TRIGUN STAMPEDE + native: TRIGUN STAMPEDE + synonyms: + - トライガン スタンピード + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 7 + endDate: + year: 2023 + month: 3 + day: 25 + averageScore: 78 + nextAiringEpisode: null + - id: 153629 + idMal: 52736 + title: + romaji: Tensei Oujo to Tensai Reijou no Mahou Kakumei + english: The Magical Revolution of the Reincarnated Princess and the Genius Young Lady + native: 転生王女と天才令嬢の魔法革命 + synonyms: + - MagiRevo + - 転天 + - TenTen + - 轉生公主與天才千金的魔法革命 + - Revolusi Sihir Sang Putri Reinkarnasi dan Tuan Putri Genius + - การปฏิวัติเวทมนตร์ขององค์หญิงเกิดใหม่กับยัยคุณหนูยอดอัจฉริยะ + - TenTen Kakumei + - Магическая революция перерождённой принцессы и гениальной дочери благородного дома + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 4 + endDate: + year: 2023 + month: 3 + day: 22 + averageScore: 75 + nextAiringEpisode: null + - id: 116867 + idMal: 41514 + title: + romaji: Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2 + english: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense. Season 2' + native: 痛いのは嫌なので防御力に極振りしたいと思います。2 + synonyms: + - น้องโล่สายแทงก์แกร่งเกินร้อย ภาค 2 + - Bofuri 2 + - Aku Tidak Ingin Terluka Jadi Seluruh Poin Status Kufokuskan ke Pertahanan 2 + - Бофури. Я боюсь боли, так что качаю только защиту 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 11 + endDate: + year: 2023 + month: 4 + day: 19 + averageScore: 71 + nextAiringEpisode: null + - id: 148116 + idMal: 51711 + title: + romaji: Hyouken no Majutsushi ga Sekai wo Suberu + english: The Iceblade Sorcerer Shall Rule the World + native: 冰剣の魔術師が世界を統べる + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 6 + endDate: + year: 2023 + month: 3 + day: 24 + averageScore: 63 + nextAiringEpisode: null + - id: 147864 + idMal: 51678 + title: + romaji: Onii-chan wa Oshimai! + english: 'ONIMAI: I''m Now Your Sister!' + native: お兄ちゃんはおしまい! + synonyms: + - Onii-chan is Done For! + - 'ONIMAI: Sekarang Aku Kakak Perempuanmu!' + - อวสานพี่ชาย กลายเป็นพี่สาว + - 不當哥哥了! + - Я стал сестрой! + - 'ONIMAI: Ab sofort Schwester!' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 5 + endDate: + year: 2023 + month: 3 + day: 23 + averageScore: 75 + nextAiringEpisode: null + - id: 144092 + idMal: 50854 + title: + romaji: Benriya Saitou-san, Isekai ni Iku + english: Handyman Saitou in Another World + native: 便利屋斎藤さん、異世界に行く + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 8 + endDate: + year: 2023 + month: 3 + day: 26 + averageScore: 72 + nextAiringEpisode: null + - id: 137909 + idMal: 49612 + title: + romaji: Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu + english: 'Ningen Fushin: Adventurers Who Don’t Believe in Humanity Will Save the World' + native: 人間不信の冒険者たちが世界を救うようです + synonyms: + - Apparently, Disillusioned Adventurers Will Save the World + - Tampaknya para Petualang Misantropis Akan Menyelamatkan Dunia + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 3 + endDate: + year: 2023 + month: 3 + day: 21 + averageScore: 62 + nextAiringEpisode: null + - id: 146323 + idMal: 51252 + title: + romaji: Spy Kyoushitsu + english: Spy Classroom + native: スパイ教室 + synonyms: + - Spy Room + - ห้องเรียนจารชน + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 5 + endDate: + year: 2023 + month: 3 + day: 30 + averageScore: 61 + nextAiringEpisode: null + - id: 152523 + idMal: 52446 + title: + romaji: Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life + english: Chillin’ in My 30s after Getting Fired from the Demon King’s Army + native: 解雇された暗黒兵士(30代)のスローなセカンドライフ + synonyms: + - 被解僱的暗黑士兵(30多歲)開始了慢生活的第二人生 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2023 + startDate: + year: 2023 + month: 1 + day: 7 + endDate: + year: 2023 + month: 3 + day: 25 + averageScore: 68 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/54-2023-spring.yaml b/test/fixtures/anilist/season_matrix/54-2023-spring.yaml new file mode 100644 index 0000000..11b2b26 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/54-2023-spring.yaml @@ -0,0 +1,729 @@ +metadata: + captured_at: '2026-05-11T11:34:46Z' + label: 2023-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2023 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:46 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '19' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 145139 + idMal: 51019 + title: + romaji: 'Kimetsu no Yaiba: Katanakaji no Sato-hen' + english: 'Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc' + native: 鬼滅の刃 刀鍛冶の里編 + synonyms: + - KnY 3 + - ดาบพิฆาตอสูร ภาค 3 บทหมู่บ้านช่างตีดาบ + - 'Demon Slayer: Kimetsu no Yaiba - Le village des forgerons' + - 'Истребитель демонов: Kimetsu no Yaiba. Деревня кузнецов' + - 'Miecz zabójcy demonów – Kimetsu no Yaiba: Wioska płatnerzy' + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 9 + endDate: + year: 2023 + month: 6 + day: 18 + averageScore: 81 + nextAiringEpisode: null + - id: 128893 + idMal: 46569 + title: + romaji: Jigokuraku + english: Hell’s Paradise + native: 地獄楽 + synonyms: + - 'Hell’s Paradise: Jigokuraku' + - สุขาวดีอเวจี + - Адский рай + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 1 + endDate: + year: 2023 + month: 7 + day: 1 + averageScore: 80 + nextAiringEpisode: null + - id: 150672 + idMal: 52034 + title: + romaji: '[Oshi no Ko]' + english: Oshi No Ko + native: 【推しの子】 + synonyms: + - Favorite Girl + - My Idol's Child + - '[Mein*Star]' + - เกิดใหม่เป็นลูกโอชิ + - Anak Idola + - 【OSHI NO KO】 + - 【推しの子】Mother and Children + - '[Oshi no Ko] Mother and Children' + - 我推的孩子 + - 【최애의 아이】 + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 12 + endDate: + year: 2023 + month: 6 + day: 28 + averageScore: 84 + nextAiringEpisode: null + - id: 151801 + idMal: 52211 + title: + romaji: MASHLE + english: 'MASHLE: MAGIC AND MUSCLES' + native: マッシュル-MASHLE- + synonyms: + - MASHLE ศึกโลกเวทมนตร์คนพลังกล้าม + - 'MASHLE: MAGIA E MÚSCULOS' + - 'MASHLE: Магия и мускулы' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 8 + endDate: + year: 2023 + month: 6 + day: 30 + averageScore: 76 + nextAiringEpisode: null + - id: 155783 + idMal: 53393 + title: + romaji: Tengoku Daimakyou + english: Tengoku Daimakyo + native: 天国大魔境 + synonyms: + - Heavenly Delusion + - 'Tengoku-Daimakyo: Ilusão Celestial' + - ถ้ำปีศาจแดนสวรรค์ + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 1 + endDate: + year: 2023 + month: 6 + day: 24 + averageScore: 81 + nextAiringEpisode: null + - id: 131518 + idMal: 48549 + title: + romaji: 'Dr. STONE: NEW WORLD' + english: Dr. STONE New World + native: Dr.STONE NEW WORLD + synonyms: + - 石纪元第三季 + - Dr.STONE Season 3 + - DR.STONE ภาค 3 + - Dr.STONE 第3期 + - Dr. STONE 新石紀(第三季) + - 'Доктор Стоун: Новый Свет' + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 6 + endDate: + year: 2023 + month: 6 + day: 15 + averageScore: 81 + nextAiringEpisode: null + - id: 154965 + idMal: 53126 + title: + romaji: Yamada-kun to Lv999 no Koi wo Suru + english: My Love Story with Yamada-kun at Lv999 + native: 山田くんとLv999の恋をする + synonyms: + - Loving Yamada at LV999! + - My Lv999 Love for Yamada-kun + - Minha História de Amor com Yamada-kun Nível 999 + - 'รักสุดฟินเลเวล 999 กับยามาดะคุง ' + - 和山田进行LV.999的恋爱 + - Моя любовь к Ямаде 999 уровня + - Mon histoire d'amour avec Yamada à Lv999 + - 和山田談場 Lv999 的戀愛 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 2 + endDate: + year: 2023 + month: 6 + day: 25 + averageScore: 77 + nextAiringEpisode: null + - id: 153152 + idMal: 52578 + title: + romaji: Boku no Kokoro no Yabai Yatsu + english: The Dangers in My Heart + native: 僕の心のヤバイやつ + synonyms: + - BokuYaba + - เธอผู้อันตรายต่อใจผม + - 내 마음의 위험한 녀석 + - 我內心的糟糕念頭 + - 僕ヤバ + - Peligros en mi corazón + - Czarne chmury w moim sercu + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 2 + endDate: + year: 2023 + month: 6 + day: 18 + averageScore: 81 + nextAiringEpisode: null + - id: 151384 + idMal: 52198 + title: + romaji: 'Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai' + english: 'Kaguya-sama: Love is War -The First Kiss That Never Ends-' + native: かぐや様は告らせたい -ファーストキッスは終わらない- + synonyms: + - 'Kaguya-sama: Love is War Movie' + - 'Kaguya-sama: Cuộc chiến tỏ tình - Nụ hôn đầu không hồi kết' + - 'Госпожа Кагуя: в любви как на войне. Бесконечный первый поцелуй' + status: FINISHED + format: TV + episodes: 4 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 1 + endDate: + year: 2023 + month: 4 + day: 3 + averageScore: 87 + nextAiringEpisode: null + - id: 153845 + idMal: 52830 + title: + romaji: 'Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta' + english: I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too + native: 異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ + synonyms: + - I Got a Cheat Ability in a Different World, and Became Extraordinary Even in the Real World + - Isekai de Cheat Nouryoku Ote ni Shita Ore wa, Genjitsu Sekai o mo Musou Suru + - 'สกิลโกงไร้เทียมทาน สร้างตำนานในสองโลก: ชีวิตพลิกผันด้วยการอัปเลเวล' + - Ganhei um Poder Apelão em Outro Mundo e Agora Sou Imbatível no Mundo Real + - Iseleve + - 在异世界获得超强能力的我,在现实世界照样无敌~等级提升改变人生命运 + - いせれべ + - Skill Nge-Cheat yang Kudapat di Dunia Lain Juga Membuatku Tanpa Tanding di Dunia Asal + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 4 + endDate: + year: 2023 + month: 6 + day: 29 + averageScore: 63 + nextAiringEpisode: null + - id: 141911 + idMal: 50416 + title: + romaji: Skip to Loafer + english: Skip and Loafer + native: スキップとローファー + synonyms: + - จังหวะวัยรุ่น ว้าวุ่นหัวใจ + - В лоферах вприпрыжку + - 躍動青春 + - スキロー + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 4 + endDate: + year: 2023 + month: 6 + day: 20 + averageScore: 81 + nextAiringEpisode: null + - id: 150075 + idMal: 51958 + title: + romaji: Kono Subarashii Sekai ni Bakuen wo! + english: KONOSUBA -An Explosion on This Wonderful World! + native: この素晴らしい世界に爆焔を! + synonyms: + - ขอให้ระเบิดตูมตามในโลกแฟนตาซี! + - 為美好的世界獻上爆焰! + - Да благословит взрыв сей расчудесный мир! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 6 + endDate: + year: 2023 + month: 6 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 143653 + idMal: 50796 + title: + romaji: Kimi wa Houkago Insomnia + english: Insomniacs After School + native: 君は放課後インソムニア + synonyms: + - Insomniaques + - ถ้านอนไม่หลับไปนับดาวกันไหม + - 放学后失眠的你 + - Bezsenność po szkole + - Insomnia Sepulang Sekolah + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 11 + endDate: + year: 2023 + month: 7 + day: 4 + averageScore: 80 + nextAiringEpisode: null + - id: 131680 + idMal: 48585 + title: + romaji: 'Black Clover: Mahou Tei no Ken' + english: 'Black Clover: Sword of the Wizard King' + native: ブラッククローバー 魔法帝の剣 + synonyms: + - Black Clover Movie + - 'Чорна конюшина: Меч короля магів' + - 'Black Clover: A Espada do Rei Mago' + - 'Black Clover: La espada del rey mago' + - 'Черный клевер: Меч короля магов' + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 6 + day: 16 + endDate: + year: 2023 + month: 6 + day: 16 + averageScore: 80 + nextAiringEpisode: null + - id: 157198 + idMal: 53613 + title: + romaji: Dead Mount Death Play + english: Dead Mount Death Play + native: デッドマウント・デスプレイ + synonyms: + - 屍體如山的死亡遊戲 + - DMDP + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 11 + endDate: + year: 2023 + month: 6 + day: 27 + averageScore: 72 + nextAiringEpisode: null + - id: 141208 + idMal: 50307 + title: + romaji: Tonikaku Kawaii Season 2 + english: 'TONIKAWA: Over The Moon For You Season 2' + native: トニカクカワイイ(シーズン2) + synonyms: + - Fly Me to the Moon 2 + - Tonikaku Cawaii 2 + - Generally Cute 2 + - 总之就是非常可爱2 + - จะยังไงภรรยาของผมก็น่ารัก ภาค 2 + - 'Красавица: Унеси меня на Луну 2' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 8 + endDate: + year: 2023 + month: 6 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 148048 + idMal: 51693 + title: + romaji: Kaminaki Sekai no Kamisama Katsudou + english: 'KamiKatsu: Working for God in a Godless World' + native: 神無き世界のカミサマ活動 + synonyms: + - What God Does in a World Without Gods + - 'KamiKatsu: Atividades Divinas em um Mundo sem Deuses ' + - 'Kamisama : Opération Divine' + - KamiKatsu + - 'KamiKatsu: Meine Arbeit als Missionar in einer gottlosen Welt' + - โลกนี้ โลกหน้า ข้าก็เป็นพระเจ้า + - 'KamiKatsu: Как быть богу в мире без богов?' + - 無神世界的神明活動 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 6 + endDate: + year: 2023 + month: 7 + day: 6 + averageScore: 65 + nextAiringEpisode: null + - id: 154967 + idMal: 53129 + title: + romaji: Seishun Buta Yarou wa Odekake Sister no Yume wo Minai + english: Rascal Does Not Dream of a Sister Venturing Out + native: 青春ブタ野郎はおでかけシスターの夢を見ない + synonyms: + - Ao Buta + - 青ブタ + - เรื่องฝันปั่นป่วยของผมกับน้องสาวออกนอกบ้าน + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 6 + day: 23 + endDate: + year: 2023 + month: 6 + day: 23 + averageScore: 79 + nextAiringEpisode: null + - id: 153332 + idMal: 52608 + title: + romaji: 'Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito' + english: 'The Aristocrat’s Otherworldly Adventure: Serving Gods Who Go Too Far' + native: 転生貴族の異世界冒険録 〜自重を知らない神々の使徒〜 + synonyms: + - Chronicles of an Aristocrat Reborn in Another World + - 'เกิดใหม่เป็นขุนนางไปผจญภัยในต่างโลก: อัครทูตจอมซุ่มซ่ามของทวยเทพ' + - Crônicas de um Aristocrata em Outro Mundo + - Noble New World Adventures + - Die Parallelwelt-Chroniken des Aristokraten + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 2 + endDate: + year: 2023 + month: 6 + day: 18 + averageScore: 66 + nextAiringEpisode: null + - id: 151847 + idMal: 52308 + title: + romaji: Kanojo ga Koushaku-tei ni Itta Riyuu + english: Why Raeliana Ended Up at the Duke’s Mansion + native: 彼女が公爵邸に行った理由 + synonyms: + - 그녀가 공작저로 가야 했던 사정 + - Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong + - พระเอกของฉันเป็นท่านดยุค + - Como Raeliana Foi Parar na Mansão do Duque + - Comment Raeliana a survécu au manoir Wynknight + - The Reason Why Raeliana Ended up at the Duke's Mansion + - 'Raeliana: Warum sie die Verlobte des Dukes wurde' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 10 + endDate: + year: 2023 + month: 6 + day: 26 + averageScore: 74 + nextAiringEpisode: null + - id: 148098 + idMal: 51705 + title: + romaji: Otonari ni Ginga + english: A Galaxy Next Door + native: おとなりに銀河 + synonyms: + - Uma Vizinha de Outro Mundo + - 鄰人似銀河 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 9 + endDate: + year: 2023 + month: 6 + day: 25 + averageScore: 70 + nextAiringEpisode: null + - id: 140754 + idMal: 50220 + title: + romaji: Isekai Shoukan wa Nidome desu + english: Summoned to Another World for a Second Time + native: 異世界召喚は二度目です + synonyms: + - Summoned to Another World... Again?! + - Invocado Para Outro Mundo... De Novo?! + - Je me fais isekai pour la deuxième fois... Ça commence à faire beaucoup. + - IseNido + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 9 + endDate: + year: 2023 + month: 6 + day: 25 + averageScore: 55 + nextAiringEpisode: null + - id: 154364 + idMal: 52955 + title: + romaji: Mahoutsukai no Yome SEASON 2 + english: The Ancient Magus' Bride Season 2 + native: 魔法使いの嫁 SEASON2 + synonyms: + - Mahoyome 2 + - เจ้าสาวผมแดงกับจอมเวทอสูร ภาค 2 + - Невеста чародея 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 6 + endDate: + year: 2023 + month: 6 + day: 22 + averageScore: 77 + nextAiringEpisode: null + - id: 147571 + idMal: 51632 + title: + romaji: Isekai wa Smartphone to Tomo ni. 2 + english: In Another World With My Smartphone 2 + native: 異世界はスマートフォンとともに。2 + synonyms: + - Isesuma 2 + - 帶著智慧型手機闖蕩異世界。2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 3 + endDate: + year: 2023 + month: 6 + day: 19 + averageScore: 62 + nextAiringEpisode: null + - id: 148109 + idMal: 51706 + title: + romaji: Yuusha ga Shinda! + english: The Legendary Hero is Dead! + native: 勇者が死んだ! + synonyms: + - 勇者死了! + - เมื่อผู้กล้าลาโลกแล้ว! + - Герой мёртв! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2023 + startDate: + year: 2023 + month: 4 + day: 7 + endDate: + year: 2023 + month: 6 + day: 23 + averageScore: 63 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/55-2023-summer.yaml b/test/fixtures/anilist/season_matrix/55-2023-summer.yaml new file mode 100644 index 0000000..e136d3e --- /dev/null +++ b/test/fixtures/anilist/season_matrix/55-2023-summer.yaml @@ -0,0 +1,710 @@ +metadata: + captured_at: '2026-05-11T11:34:48Z' + label: 2023-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2023 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:48 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '18' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 145064 + idMal: 51009 + title: + romaji: Jujutsu Kaisen 2nd Season + english: JUJUTSU KAISEN Season 2 + native: 呪術廻戦 第2期 + synonyms: + - '呪術廻戦 懐玉・玉折/渋谷事変 ' + - 'Jujutsu Kaisen: Kaigyoku Gyokusetsu / Shibuya Jihen' + - 'Jujutsu Kaisen: Hidden Inventory / Premature Death' + - JJK2 + - 咒術迴戰 第二季 + - 'มหาเวทย์ผนึกมาร ภาค 2 ' + - 咒术回战 2 + - '2جوجوتسو كايسن ' + - 'Jujutsu Kaisen: Shibuya Incident' + status: FINISHED + format: TV + episodes: 23 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 6 + endDate: + year: 2023 + month: 12 + day: 28 + averageScore: 86 + nextAiringEpisode: null + - id: 146065 + idMal: 51179 + title: + romaji: 'Mushoku Tensei II: Isekai Ittara Honki Dasu' + english: 'Mushoku Tensei: Jobless Reincarnation Season 2' + native: 無職転生Ⅱ ~異世界行ったら本気だす~ + synonyms: + - เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 + - 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season' + - 'Mushoku Tensei II: Jobless Reincarnation' + - 'Mushoku Tensei II: Reencarnación desde cero' + - 无职转生~到了异世界就拿出真本事~第2季 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 3 + endDate: + year: 2023 + month: 9 + day: 25 + averageScore: 81 + nextAiringEpisode: null + - id: 159831 + idMal: 54112 + title: + romaji: 'Zom 100: Zombie ni Naru Made ni Shitai 100 no Koto' + english: 'Zom 100: Bucket List of the Dead' + native: ゾン100~ゾンビになるまでにしたい100のこと~ + synonyms: + - Zombie 100 ~100 Things I Want to do Before I Become a Zombie~ + - Zombie 100 ~Zombie ni Naru Made ni Shitai 100 no Koto~ + - 100 สิ่งที่อยากทำก่อนจะกลายเป็นซอมบี้ + - Зомби-апокалипсис и 100 предсмертных дел + - 100 Coisas para Fazer Antes de Virar Zumbi + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 9 + endDate: + year: 2023 + month: 12 + day: 26 + averageScore: 76 + nextAiringEpisode: null + - id: 163132 + idMal: 54856 + title: + romaji: 'Horimiya: piece' + english: 'Horimiya: The Missing Pieces' + native: ホリミヤ -piece- + synonyms: + - 'Хоримия: Фрагменты' + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 1 + endDate: + year: 2023 + month: 9 + day: 23 + averageScore: 81 + nextAiringEpisode: null + - id: 147103 + idMal: 51552 + title: + romaji: Watashi no Shiawase na Kekkon + english: My Happy Marriage + native: わたしの幸せな結婚 + synonyms: + - WataKon + - ขอให้รักเรานี้ได้มีความสุข + - Moje szczęśliwe małżeństwo + - Hôn nhân hạnh phúc của tôi + - Meu Casamento Feliz + - Il mio matrimonio felice + - Мій щасливий шлюб + - Mi feliz matrimonio + - Meine ganz besondere Hochzeit + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 5 + endDate: + year: 2023 + month: 9 + day: 20 + averageScore: 76 + nextAiringEpisode: null + - id: 159322 + idMal: 53998 + title: + romaji: 'BLEACH: Sennen Kessen-hen - Ketsubetsu-tan' + english: 'BLEACH: Thousand-Year Blood War - The Separation' + native: BLEACH 千年血戦篇-訣別譚- + synonyms: + - 'BLEACH: Thousand Year Blood War Part 2' + - BLEACH 千年血戦篇 第2クール + - BLEACH TYBW + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 8 + endDate: + year: 2023 + month: 9 + day: 30 + averageScore: 86 + nextAiringEpisode: null + - id: 160188 + idMal: 54234 + title: + romaji: Suki na Ko ga Megane wo Wasureta + english: The Girl I Like Forgot Her Glasses + native: 好きな子がめがねを忘れた + synonyms: + - Sukinako ga Megane wo Wasureta + - สาวลืมแว่นแสนวุ่นละมุนรัก + - Cô bạn tôi thầm thích lại quên mang kính rồi + - Sukimega + - Minha Crush Esqueceu os Óculos + - La chica que me gusta olvidó sus lentes + - Любовь, не скрытая очками + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 4 + endDate: + year: 2023 + month: 9 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 146953 + idMal: 51498 + title: + romaji: Masamune-kun no Revenge R + english: Masamune-kun's Revenge R + native: 政宗くんのリベンジR + synonyms: + - Masamune-kun’s Revenge Season 2 + - Masamune-kun no Revenge 2nd Season + - การแก้แค้นของมาซามุเนะคุง ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 3 + endDate: + year: 2023 + month: 9 + day: 18 + averageScore: 72 + nextAiringEpisode: null + - id: 157397 + idMal: 53632 + title: + romaji: Yumemiru Danshi wa Genjitsushugisha + english: The Dreaming Boy is a Realist + native: 夢見る男子は現実主義者 + synonyms: + - เด็กหนุ่มจอมเพ้อฝัน ผู้ตื่นมามองความเป็นจริง + - My Dreamy Realist + - Il giovane sognatore è un realista + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 4 + endDate: + year: 2023 + month: 9 + day: 19 + averageScore: 65 + nextAiringEpisode: null + - id: 163263 + idMal: 54898 + title: + romaji: Bungou Stray Dogs 5th Season + english: Bungo Stray Dogs 5 + native: 文豪ストレイドッグス 第5シーズン + synonyms: + - BSD 5 + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 12 + endDate: + year: 2023 + month: 9 + day: 20 + averageScore: 85 + nextAiringEpisode: null + - id: 154391 + idMal: 52969 + title: + romaji: Jitsu wa Ore, Saikyou Deshita? + english: Am I Actually the Strongest? + native: 実は俺、最強でした? + synonyms: + - ผมเทพสุดจริงเหรอ? + - Я что, сильнейший? + - É Sério Que Eu Sou o Mais Forte? + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 2 + endDate: + year: 2023 + month: 10 + day: 1 + averageScore: 63 + nextAiringEpisode: null + - id: 154745 + idMal: 53050 + title: + romaji: Kanojo, Okarishimasu 3rd Season + english: Rent-a-Girlfriend Season 3 + native: 彼女、お借りします 第3期 + synonyms: + - KanoKari 3 + - สะดุดรักยัยแฟนเช่า ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 8 + endDate: + year: 2023 + month: 9 + day: 30 + averageScore: 68 + nextAiringEpisode: null + - id: 142598 + idMal: 50582 + title: + romaji: Nanatsu no Maken ga Shihai Suru + english: Reign of the Seven Spellblades + native: 七つの魔剣が支配する + synonyms: + - Seven Magic Swords Rule + - ซ่อนคมเวทเจ็ดดาบมาร + - Nanatsuma + - ななつま + - O Reino das Sete Magilâminas + - Тирания семи разящих клинков + status: FINISHED + format: TV + episodes: 15 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 8 + endDate: + year: 2023 + month: 10 + day: 13 + averageScore: 64 + nextAiringEpisode: null + - id: 153360 + idMal: 52619 + title: + romaji: Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou + english: Reborn as a Vending Machine, I Now Wander the Dungeon + native: 自動販売機に生まれ変わった俺は迷宮を彷徨う + synonyms: + - Переродившись в торговый автомат, я блуждаю по подземелью + - 自動販売機に生まれ変わった俺は迷宮を彷徨う + - Jidōhanbaiki ni Umarekawatta Ore wa Meikyū ni Samayō + - Reencarnado numa Máquina de Vendas, Agora Exploro a Masmorra + - Jihanki + - 自販機 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 5 + endDate: + year: 2023 + month: 9 + day: 20 + averageScore: 63 + nextAiringEpisode: null + - id: 152802 + idMal: 52505 + title: + romaji: Dark Gathering + english: Dark Gathering + native: ダークギャザリング + synonyms: + - คู่หูต่างขั้วกับภารกิจกำจัดผี + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 10 + endDate: + year: 2023 + month: 12 + day: 25 + averageScore: 75 + nextAiringEpisode: null + - id: 131863 + idMal: 48633 + title: + romaji: Liar Liar + english: Liar, Liar + native: ライアー・ライアー + synonyms: + - Ложь на лжи + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 8 + endDate: + year: 2023 + month: 9 + day: 16 + averageScore: 61 + nextAiringEpisode: null + - id: 162983 + idMal: 54790 + title: + romaji: Undead Girl Murder Farce + english: Undead Murder Farce + native: アンデッドガール・マーダーファルス + synonyms: + - Фарс убитой нежити + - 不死少女的谋杀闹剧 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 6 + endDate: + year: 2023 + month: 9 + day: 28 + averageScore: 78 + nextAiringEpisode: null + - id: 109979 + idMal: 36699 + title: + romaji: Kimitachi wa Dou Ikiru ka + english: The Boy and the Heron + native: 君たちはどう生きるか + synonyms: + - How Do You Live? + - Il ragazzo e l’airone + - Chłopiec i czapla + - Le Garçon et le Héron + - Gutten og hegren + - Pojken och hägern + - Poika ja haikara + - El chico y la garza + - El niño y la garza + - Der Junge und der Reiher + - เด็กชายกับนกกระสา + - '그대들은 어떻게 살 것인가 ' + - הילד והאנפה + - O Menino e a Garça + - Drengen og hejren + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 14 + endDate: + year: 2023 + month: 7 + day: 14 + averageScore: 77 + nextAiringEpisode: null + - id: 142877 + idMal: 50613 + title: + romaji: 'Rurouni Kenshin: Meiji Kenkaku Romantan (2023)' + english: Rurouni Kenshin (2023) + native: るろうに剣心 -明治剣客浪漫譚-(2023) + synonyms: + - Samurai X (2023) + - Kenshin le vagabond (2023) + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 7 + endDate: + year: 2023 + month: 12 + day: 15 + averageScore: 74 + nextAiringEpisode: null + - id: 155168 + idMal: 53200 + title: + romaji: Hataraku Maou-sama!! 2nd Season + english: The Devil is a Part-Timer! Season 2 Part 2 + native: はたらく魔王さま!!2nd Season + synonyms: + - The Devil is a Part-Timer! Season 3 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 13 + endDate: + year: 2023 + month: 9 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 136149 + idMal: 49303 + title: + romaji: Alice to Therese no Maboroshi Koujou + english: maboroshi + native: アリスとテレスのまぼろし工場 + synonyms: + - Alice and Therese's Illusion Factory + - Мабороси + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 9 + day: 15 + endDate: + year: 2023 + month: 9 + day: 15 + averageScore: 71 + nextAiringEpisode: null + - id: 139606 + idMal: 49894 + title: + romaji: Eiyuu Kyoushitsu + english: Classroom for Heroes + native: 英雄教室 + synonyms: + - Класс героев + - Sala de Aula dos Heróis + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 9 + endDate: + year: 2023 + month: 9 + day: 24 + averageScore: 59 + nextAiringEpisode: null + - id: 148465 + idMal: 51764 + title: + romaji: Level 1 dakedo Unique Skill de Saikyou desu + english: My Unique Skill Makes Me OP even at Level 1 + native: レベル1だけどユニークスキルで最強です + synonyms: + - เลเวล 1 แล้วไง ผมมีสกิลแกร่งสุดล้ำไม่ซ้ำใคร + - Minha Habilidade Única Me Deixa Invencível no Nível 1 + - Aku Level 1 Tapi Jadi Orang Terkuat Karena Skill Unik + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 8 + endDate: + year: 2023 + month: 9 + day: 23 + averageScore: 61 + nextAiringEpisode: null + - id: 154966 + idMal: 53127 + title: + romaji: 'Fate/strange Fake: Whispers of Dawn' + english: Fate/strange Fake -Whispers of Dawn- + native: Fate/strange Fake -Whispers of Dawn- + synonyms: + - Судьба/Странная подделка. Шёпот рассвета + status: FINISHED + format: SPECIAL + episodes: 1 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 2 + endDate: + year: 2023 + month: 7 + day: 2 + averageScore: 81 + nextAiringEpisode: null + - id: 155730 + idMal: 53379 + title: + romaji: Uchi no Kaisha no Chiisai Senpai no Hanashi + english: My Tiny Senpai + native: うちの会社の小さい先輩の話 + synonyms: + - Story of a Small Senior in My Company + - My Company's Small Senpai + - My Tiny Senpai From Work + - A Veterana Pitica da Firma + - รุ่นพี่ตัวน้อยดูท่าจะตกหลุมรัก + - МОЯ НЕВЫСОКАЯ КОЛЛЕГА + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2023 + startDate: + year: 2023 + month: 7 + day: 2 + endDate: + year: 2023 + month: 10 + day: 1 + averageScore: 67 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/56-2023-fall.yaml b/test/fixtures/anilist/season_matrix/56-2023-fall.yaml new file mode 100644 index 0000000..25f696c --- /dev/null +++ b/test/fixtures/anilist/season_matrix/56-2023-fall.yaml @@ -0,0 +1,728 @@ +metadata: + captured_at: '2026-05-11T11:34:53Z' + label: 2023-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2023 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:53 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Content-Security-Policy-Report-Only: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '17' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Nel: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 154587 + idMal: 52991 + title: + romaji: Sousou no Frieren + english: 'Frieren: Beyond Journey’s End' + native: 葬送のフリーレン + synonyms: + - Frieren at the Funeral + - 장송의 프리렌 + - Frieren - Oltre la Fine del Viaggio + - คำอธิษฐานในวันที่จากลา Frieren + - Frieren e a Jornada para o Além + - Frieren – Nach dem Ende der Reise + - 葬送的芙莉蓮 + - 'Frieren: Más allá del final del viaje' + - Frieren en el funeral + - Sōsō no Furīren + - Frieren. U kresu drogi + - Frieren - Pháp sư tiễn táng + - Фрирен, провожающая в последний путь + - 'فريرن: ما وراء نهاية الرحلة' + - 'Frieren: Tras finalizar el viaje' + status: FINISHED + format: TV + episodes: 28 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 9 + day: 29 + endDate: + year: 2024 + month: 3 + day: 22 + averageScore: 91 + nextAiringEpisode: null + - id: 161645 + idMal: 54492 + title: + romaji: Kusuriya no Hitorigoto + english: The Apothecary Diaries + native: 薬屋のひとりごと + synonyms: + - Drugstore Soliloquy + - Les Carnets de l'Apothicaire + - Zapiski zielarki + - Diários de uma Apotecária + - Il monologo della Speziale + - Los diarios de la boticaria + - สืบคดีปริศนา หมอยาตำรับโคมแดง + - Записки аптекаря + - Die Tagebücher der Apothekerin + - يوميات الصيدلانيّة + - 藥師少女的獨語 + - 药屋少女的呢喃 + - Монолог фармацевта + - 약사의 혼잣말 + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 22 + endDate: + year: 2024 + month: 3 + day: 24 + averageScore: 88 + nextAiringEpisode: null + - id: 158927 + idMal: 53887 + title: + romaji: SPY×FAMILY Season 2 + english: SPY x FAMILY Season 2 + native: SPY×FAMILY Season 2 + synonyms: + - SxF 2 + - 스파이 패밀리 + - Семья шпиона + - スパイファミリー 2 + - Spy x Family – Sezon 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 7 + endDate: + year: 2023 + month: 12 + day: 23 + averageScore: 80 + nextAiringEpisode: null + - id: 161964 + idMal: 54595 + title: + romaji: Kage no Jitsuryokusha ni Naritakute! 2nd season + english: The Eminence in Shadow Season 2 + native: 陰の実力者になりたくて! 2nd season + synonyms: + - To Be a Power in the Shadows! 2 + - ชีวิตไม่ต้องเด่น ขอแค่เป็นเทพในเงา 2 + - Un giorno sarò l'eminenza grigia 2 + - TEIS 2 + - Кардинал теней 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 4 + endDate: + year: 2023 + month: 12 + day: 20 + averageScore: 82 + nextAiringEpisode: null + - id: 151970 + idMal: 52347 + title: + romaji: Shangri-La Frontier + english: Shangri-La Frontier + native: シャングリラ・フロンティア + synonyms: + - ShanFro + - シャンフロ + - シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 + - 'Shangri-La Frontier: Kusoge Hunter, Kami ge ni Idoman to su' + - SHANGRI-LA FRONTIER ~เมื่อนักล่าเกมขยะท้าสู้ในเกมเทพ~ + - Рубеж Шангри-Ла + - Thợ săn Game rác thách thức Game cấp Thánh + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 1 + endDate: + year: 2024 + month: 3 + day: 31 + averageScore: 80 + nextAiringEpisode: null + - id: 162314 + idMal: null + title: + romaji: 'Shingeki no Kyojin: The Final Season - Kanketsu-hen Kouhen' + english: Attack on Titan Final Season THE FINAL CHAPTERS Special 2 + native: 進撃の巨人 The Final Season完結編 後編 + synonyms: + - 'Shingeki no Kyojin: The Final Season Final Edition' + - Attack on Titan Final Season Part 3 Final Arc Part 2 + - 'Attack on Titan: The Final Season Part 4' + - 'Shingeki no Kyojin: The Final Season Part 4' + - SnK 4 + - AoT 4 + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 11 + day: 5 + endDate: + year: 2023 + month: 11 + day: 5 + averageScore: 87 + nextAiringEpisode: null + - id: 111322 + idMal: 40357 + title: + romaji: Tate no Yuusha no Nariagari Season 3 + english: The Rising of the Shield Hero Season 3 + native: 盾の勇者の成り上がり Season 3 + synonyms: + - ผู้กล้าโล่ผงาด ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 6 + endDate: + year: 2023 + month: 12 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 162670 + idMal: 55644 + title: + romaji: 'Dr. STONE: NEW WORLD Part 2' + english: Dr. STONE New World Part 2 + native: Dr.STONE NEW WORLD 第2クール + synonyms: + - 石纪元第三季 + - Dr.STONE Season 3 Part 2 + - DR.STONE ภาค 3 + - Dr.STONE 第3期 第2クール + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 12 + endDate: + year: 2023 + month: 12 + day: 21 + averageScore: 83 + nextAiringEpisode: null + - id: 154116 + idMal: 52741 + title: + romaji: Undead Unluck + english: Undead Unluck + native: アンデッドアンラック + synonyms: + - אל-מת ובלי מזל + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 7 + endDate: + year: 2024 + month: 3 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 162694 + idMal: 54714 + title: + romaji: Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo + english: The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You + native: 君のことが大大大大大好きな100人の彼女 + synonyms: + - 100 Kanojo + - 100Kano + - Hyakkano + - 100 Namoradas Que Te Amam Muuuuuito + - Les 100 petites amies qui t'aiiiment à en mourir + - 100 Pacar yang Sungguh Sangat Amat Benar-benar Mencintaimu + - 100 девушек, которые очень-очень-очень-очень-очень сильно тебя любят + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 8 + endDate: + year: 2023 + month: 12 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 129188 + idMal: 47160 + title: + romaji: Goblin Slayer II + english: GOBLIN SLAYER II + native: ゴブリンスレイヤーⅡ + synonyms: + - ก็อบลิน สเลเยอร์ ภาค 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 6 + endDate: + year: 2023 + month: 12 + day: 22 + averageScore: 71 + nextAiringEpisode: null + - id: 146493 + idMal: 51297 + title: + romaji: Ragna Crimson + english: Ragna Crimson + native: ラグナクリムゾン + synonyms: + - ตำนานนักล่ามังกร + - Рагна Багровый + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 1 + endDate: + year: 2024 + month: 3 + day: 31 + averageScore: 74 + nextAiringEpisode: null + - id: 158928 + idMal: 53888 + title: + romaji: 'SPY×FAMILY CODE: White' + english: 'SPY x FAMILY CODE: White' + native: 'SPY×FAMILY CODE: White' + synonyms: + - SxF Movie + - 劇場版 スパイファミリー + - 'SPY x FAMILY CÓDIGO: Branco' + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 12 + day: 22 + endDate: + year: 2023 + month: 12 + day: 22 + averageScore: 81 + nextAiringEpisode: null + - id: 99088 + idMal: 35737 + title: + romaji: PLUTO + english: PLUTO + native: PLUTO + synonyms: + - プルートウ + - ПЛУТОН + status: FINISHED + format: ONA + episodes: 8 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 26 + endDate: + year: 2023 + month: 10 + day: 26 + averageScore: 84 + nextAiringEpisode: null + - id: 156039 + idMal: 53439 + title: + romaji: Boushoku no Berserk + english: Berserk of Gluttony + native: 暴食のベルセルク + synonyms: + - จอมตะกละดาบคลั่ง + - Bousyoku + - O Berserker da Gula + - Berserk nan Rakus + - Ненасытный берсерк + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 2 + endDate: + year: 2023 + month: 12 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 163329 + idMal: 54918 + title: + romaji: 'Tokyo Revengers: Tenjiku-hen' + english: Tokyo Revengers Season 2 Part 2 + native: 東京リベンジャーズ 天竺編 + synonyms: + - 'Tokyo Revengers: Tenjiku Arc' + - Tokyo Revengers Season 3 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 4 + endDate: + year: 2023 + month: 12 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 154459 + idMal: 52990 + title: + romaji: Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi. + english: 'Our Dating Story: The Experienced You and The Inexperienced Me' + native: 経験済みなキミと、経験ゼロなオレが、お付き合いする話。 + synonyms: + - หนุ่มซิงกับสาวฮอต เดตนี้จะรอดมั้ยนะ + - Kimizero + - キミゼロ + - 'Kisah Asmara Kita: Kamu yang Berpengalaman dan Aku yang Polos' + - Искушённая ты и незрелый я + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 6 + endDate: + year: 2023 + month: 12 + day: 22 + averageScore: 67 + nextAiringEpisode: null + - id: 160900 + idMal: 54362 + title: + romaji: Hametsu no Oukoku + english: The Kingdoms of Ruin + native: はめつのおうこく + synonyms: + - Os Reinos da Ruína + - 破滅的王國 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 7 + endDate: + year: 2023 + month: 12 + day: 23 + averageScore: 61 + nextAiringEpisode: null + - id: 161474 + idMal: 54870 + title: + romaji: Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai + english: Rascal Does Not Dream of a Knapsack Kid + native: 青春ブタ野郎はランドセルガールの夢を見ない + synonyms: + - Rascal Does Not Dream of a Knapsack Kid + - Ao Buta + - 青ブタ + status: FINISHED + format: MOVIE + episodes: 1 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 12 + day: 1 + endDate: + year: 2023 + month: 12 + day: 1 + averageScore: 83 + nextAiringEpisode: null + - id: 163142 + idMal: 54852 + title: + romaji: Kikansha no Mahou wa Tokubetsu desu + english: A Returner's Magic Should Be Special + native: 帰還者の魔法は特別です + synonyms: + - Gwihwanjaui Mabeobeun Teukbyeolhaeya Hamnida + - 귀환자의 마법은 특별해야 합니다 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 8 + endDate: + year: 2023 + month: 12 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 158704 + idMal: 53833 + title: + romaji: Watashi no Oshi wa Akuyaku Reijou. + english: I'm in Love with the Villainess + native: 私の推しは悪役令嬢。 + synonyms: + - WataOshi + - わたおし + - ทำไงดีเกมนี้นางร้ายน่ารัก + - Me Enamoré de la Villana + - Me Apaixonei pela Vilã! + - Я влюблена в злодейку + - 我的推是壞人大小姐。 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 3 + endDate: + year: 2023 + month: 12 + day: 19 + averageScore: 73 + nextAiringEpisode: null + - id: 140501 + idMal: 50184 + title: + romaji: Seiken Gakuin no Maken Tsukai + english: The Demon Sword Master of Excalibur Academy + native: 聖剣学院の魔剣使い + synonyms: + - Demon's Sword Master of Excalibur School + - จอมมารเกิดใหม่ วิทยาลัยผู้พิทักษ์ + - Lo spadaccino demoniaco all'accademia delle arti sacre + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 9 + day: 26 + endDate: + year: 2023 + month: 12 + day: 12 + averageScore: 61 + nextAiringEpisode: null + - id: 158926 + idMal: 53879 + title: + romaji: Kamonohashi Ron no Kindan Suiri + english: Ron Kamonohashi's Forbidden Deductions + native: 鴨乃橋ロンの禁断推理 + synonyms: + - 'Ron Kamonohashi: Deranged Detective' + - El misterio prohibido de Ron Kamonohashi + - สืบลับฉบับคาโมโนะฮาชิ รอน + - Meisterdetektiv Ron Kamonohashi + - 鸭乃桥论的禁忌推理 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 2 + endDate: + year: 2023 + month: 12 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 159808 + idMal: 54103 + title: + romaji: Hikikomari Kyuuketsuki no Monmon + english: The Vexations of a Shut-In Vampire Princess + native: ひきこまり吸血姫の悶々 + synonyms: + - สารพันปัญหาวุ่นวาย ของยัยแวมไพร์ขี้จุ๊ + - ' I tormenti della vampira reclusa' + - 家裡蹲吸血姬的鬱悶 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 7 + endDate: + year: 2023 + month: 12 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 143085 + idMal: 50664 + title: + romaji: 'Saihate no Paladin: Tetsusabi no Yama no Ou' + english: 'The Faraway Paladin: The Lord of Rust Mountains' + native: 最果てのパラディン 鉄錆の山の王 + synonyms: + - The Faraway Paladin Season 2 + - พาลาดิน ยอดอัศวินจากแดนไกล ภาค 2 + - Saihate no Paladin 2nd Season + - 'The Faraway Paladin: O Senhor das Montanhas de Ferrugem' + - 世界盡頭的聖騎士 鐵鏽之山的君王 + - 'The Faraway Paladin : Le Seigneur des Montagnes de Rouille' + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2023 + startDate: + year: 2023 + month: 10 + day: 7 + endDate: + year: 2023 + month: 12 + day: 23 + averageScore: 73 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/57-2024-winter.yaml b/test/fixtures/anilist/season_matrix/57-2024-winter.yaml new file mode 100644 index 0000000..995310d --- /dev/null +++ b/test/fixtures/anilist/season_matrix/57-2024-winter.yaml @@ -0,0 +1,727 @@ +metadata: + captured_at: '2026-05-11T11:34:57Z' + label: 2024-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2024 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:34:57 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '16' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 151807 + idMal: 52299 + title: + romaji: Ore dake Level Up na Ken + english: Solo Leveling + native: 俺だけレベルアップな件 + synonyms: + - 나 혼자만 레벨업 + - Na Honjaman Level Up + - 'Solo Leveling: Поднятие уровня в одиночку' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 7 + endDate: + year: 2024 + month: 3 + day: 31 + averageScore: 81 + nextAiringEpisode: null + - id: 153518 + idMal: 52701 + title: + romaji: Dungeon Meshi + english: Delicious in Dungeon + native: ダンジョン飯 + synonyms: + - Dungeon Food + - Dungeon Meal + - Tragones y Mazmorras + - Gloutons et Dragons + - Подземелье вкусностей + - 던전밥 + - สูตรลับตำรับดันเจียน + - Mỹ vị hầm ngục + - Підземелля смакоти + - 迷宫饭 + - מבוכים ומטעמים + - Dunmeshi + - Labužníci v kobce + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 4 + endDate: + year: 2024 + month: 6 + day: 13 + averageScore: 85 + nextAiringEpisode: null + - id: 146066 + idMal: 51180 + title: + romaji: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season + english: Classroom of the Elite Season 3 + native: ようこそ実力至上主義の教室へ 3rd Season + synonyms: + - You-Zitsu 3 + - Youjitsu 3 + - ขอต้อนรับสู่ห้องเรียนนิยม (เฉพาะ) ยอดคน ภาค 3 + - Classroom of the Elite III + - 欢迎来到实力至上主义的教室 第三季 + - Добро пожаловать в класс для особо одарённых 3 + - فصل النخبة الموسم الثالث + - 歡迎來到實力至上主義的教室 第三季 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 3 + endDate: + year: 2024 + month: 3 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 166610 + idMal: 55813 + title: + romaji: 'MASHLE: Kami Shinkakusha Kouho Senbatsu Shiken-hen' + english: 'MASHLE: MAGIC AND MUSCLES Season 2' + native: マッシュル-MASHLE- 神覚者候補選抜試験編 + synonyms: + - マッシュル-MASHLE- 第2期 + - MASHLE 2nd Season + - 'MASHLE: MAGIC AND MUSCLES - The Divine Visionary Candidate Exam Arc' + - 肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 + - 'MASHLE: Магия и мускулы. Экзамен на звание Вестника Бога' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 6 + endDate: + year: 2024 + month: 3 + day: 30 + averageScore: 78 + nextAiringEpisode: null + - id: 166794 + idMal: 55866 + title: + romaji: Yubisaki to Renren + english: A Sign of Affection + native: ゆびさきと恋々 + synonyms: + - Ein Zeichen der Zuneigung + - 손끝과 연연 + - Signos de Afecto + - Кохання на кінчиках пальців + - Znaki naszych uczuć + - Cinta dan Isyarat + - Любовь с кончиков пальцев + - Жест беззаветной любви + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 6 + endDate: + year: 2024 + month: 3 + day: 23 + averageScore: 82 + nextAiringEpisode: null + - id: 137908 + idMal: 49613 + title: + romaji: Chiyu Mahou no Machigatta Tsukaikata + english: The Wrong Way to Use Healing Magic + native: 治癒魔法の間違った使い方 + synonyms: + - Penggunaan Sihir Penyembuh yang Keliru + - เวทรักษาที่ไหนเขาใช้กันแบบนี้ + - Cách dùng sai của ma thuật chữa trị + - Как (не) стоит использовать магию исцеления + - الطريقة الخاطئة لاستخدام سحر الشفاء + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 6 + endDate: + year: 2024 + month: 3 + day: 30 + averageScore: 75 + nextAiringEpisode: null + - id: 139518 + idMal: 49889 + title: + romaji: Tsuki ga Michibiku Isekai Douchuu 2nd Season + english: TSUKIMICHI -Moonlit Fantasy- Season 2 + native: 月が導く異世界道中 第二幕 + synonyms: + - จันทรานำพาสู่ต่างโลก ภาค 2 + - 月光下的異世界之旅 第二季 + - Благословлённое лунным светом приключение в другом мире 2 + status: FINISHED + format: TV + episodes: 25 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 8 + endDate: + year: 2024 + month: 6 + day: 24 + averageScore: 78 + nextAiringEpisode: null + - id: 141821 + idMal: 50392 + title: + romaji: Mato Seihei no Slave + english: Chained Soldier + native: 魔都精兵のスレイブ + synonyms: + - Slave of the Magic Capital's Elite Troops + - Demon Slave + - Slave of the Hell Soldiers + - ทาสสุดแกร่งแห่งหน่วยป้องกันอสูร + - Mabotai + - 'Demon Slave: The Chained Soldier' + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 4 + endDate: + year: 2024 + month: 3 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 166216 + idMal: 55690 + title: + romaji: Boku no Kokoro no Yabai Yatsu 2nd Season + english: The Dangers in My Heart Season 2 + native: 僕の心のヤバイやつ 第2期 + synonyms: + - BokuYaba 2 + - 僕ヤバ 2 + - เธอผู้อันตรายต่อใจผม ภาคที่ 2 + - Czarne chmury w moim sercu. Sezon 2 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 7 + endDate: + year: 2024 + month: 3 + day: 31 + averageScore: 86 + nextAiringEpisode: null + - id: 153658 + idMal: 52742 + title: + romaji: 'Haikyuu!!: Gomi Suteba no Kessen' + english: HAIKYU!! The Dumpster Battle + native: ハイキュー!! ゴミ捨て場の決戦 + synonyms: + - 'ハイキュー!! FINAL ' + - Haikyuu!! FINAL + - Haikyuu!! Battle at the Garbage Dump + - 'Haikyu!! Movie: Decisive Battle at the Garbage Dump' + - HAIKYU!! La Batalla del Basurero + - HAIKYU!! La Guerre des Poubelles + status: FINISHED + format: MOVIE + episodes: 1 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 2 + day: 16 + endDate: + year: 2024 + month: 2 + day: 16 + averageScore: 86 + nextAiringEpisode: null + - id: 168374 + idMal: 56352 + title: + romaji: Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu Suru + english: '7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!' + native: ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する + synonyms: + - ชีวิตลูปที่ 7 ของนางร้าย ขอเป็นเจ้าสาวนอนกลิ้งสบายในแดนอดีตศัตรู + - Седьмая беззаботная жизнь злодейки в браке со злейшим врагом + - LoopNana + - ルプなな + - 輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 7 + endDate: + year: 2024 + month: 3 + day: 24 + averageScore: 75 + nextAiringEpisode: null + - id: 155963 + idMal: 53421 + title: + romaji: Dosanko Gal wa Namara Menkoi + english: Hokkaido Gals Are Super Adorable! + native: 道産子ギャルはなまらめんこい + synonyms: + - Dosanko Gyaru Is Mega Cute + - Dosanko Gyaru wa Namaramenkoi + - สาวแกลเมืองเหนือน่าฮักขนาด + - Dosakoi + - どさこい + - Девчонки с Хоккайдо просто чума! + - غارو هوكّاديو ظريفات جدّاً + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 9 + endDate: + year: 2024 + month: 3 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 147642 + idMal: 51648 + title: + romaji: Nozomanu Fushi no Boukensha + english: The Unwanted Undead Adventurer + native: 望まぬ不死の冒険者 + synonyms: + - เส้นทางพลิกผันชองราชันอมตะ + - TUUA + - Petualang Mayat Hidup yang Tidak Diinginkan + - Нежеланно бессмертный авантюрист + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 5 + endDate: + year: 2024 + month: 3 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 151639 + idMal: 56285 + title: + romaji: Ninja Kamui + english: Ninja Kamui + native: Ninja Kamui + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 2 + day: 11 + endDate: + year: 2024 + month: 5 + day: 5 + averageScore: 64 + nextAiringEpisode: null + - id: 162780 + idMal: 54722 + title: + romaji: Mahou Shoujo ni Akogarete + english: Gushing Over Magical Girls + native: 魔法少女にあこがれて + synonyms: + - I Admire Magical Girls, and... + - Mahoako + - Looking up to Magical Girls + - 夢想成為魔法少女 + - Fascinada por Garotas Mágicas + - Me encantan las Magical Girls + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 3 + endDate: + year: 2024 + month: 3 + day: 27 + averageScore: 74 + nextAiringEpisode: null + - id: 163076 + idMal: 54837 + title: + romaji: 'Akuyaku Reijou Level 99: Watashi wa Ura Boss desu ga Maou de wa Arimasen' + english: 'Villainess Level 99: I May Be the Hidden Boss but I''m Not the Demon Lord' + native: 悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~ + synonyms: + - ชีวิตไม่ง่ายของนางร้าย LV99 + - Light Magic and the Hero + - 'Злодейка 99 уровня: Да, я скрытый босс, но не повелительница демонов' + - Akuyaku LV99 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 9 + endDate: + year: 2024 + month: 3 + day: 26 + averageScore: 71 + nextAiringEpisode: null + - id: 158028 + idMal: 53730 + title: + romaji: Sokushi Cheat ga Saikyou Sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga. + english: My Instant Death Ability is Overpowered + native: 即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。 + synonyms: + - Sokushicheat + - My Instant Death Ability Is So Overpowered, No One in This Other World Stands a Chance Against Me! + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 5 + endDate: + year: 2024 + month: 3 + day: 22 + averageScore: 63 + nextAiringEpisode: null + - id: 153818 + idMal: 52816 + title: + romaji: Majo to Yajuu + english: The Witch and the Beast + native: 魔女と野獣 + synonyms: + - Ведьма и зверь + - Відьма та чудовисько + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 12 + endDate: + year: 2024 + month: 4 + day: 5 + averageScore: 72 + nextAiringEpisode: null + - id: 158931 + idMal: 53889 + title: + romaji: 'Ao no Exorcist: Shimane Illuminati-hen' + english: Blue Exorcist -Shimane Illuminati Saga- + native: 青の祓魔師 島根啓明結社篇 + synonyms: + - Ao no Futsumashi + - 'Синий экзорцист 3: Иллюминаты Симанэ' + - Blue Exorcist Season 3 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 7 + endDate: + year: 2024 + month: 3 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 156131 + idMal: 53488 + title: + romaji: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni shimashita + 2nd + english: Banished from the Hero’s Party, I Decided to Live a Quiet Life in the Countryside Season 2 + native: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd + synonyms: + - Banished from the brave man's group, I decided to lead a slow life in the back country. 2nd + - I Was Kicked out of the Hero’s Party Because I Wasn’t a True Companion so I Decided to Have a Slow Life at the + Frontier Season 2 + - ผมโดนกลุ่มผู้กล้าขับไส เลยต้องไปสโลว์ไลฟ์ที่ชายแดน ภาค 2 + - Изгнанный из отряда героя, я решил поселиться в глубинке 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 7 + endDate: + year: 2024 + month: 3 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 164244 + idMal: 55129 + title: + romaji: Oroka na Tenshi wa Akuma to Odoru + english: The Foolish Angel Dances with the Devil + native: 愚かな天使は悪魔と踊る + synonyms: + - Stupid angel dances with the devil + - Die mit dem Teufel tanzt + - 愚蠢天使與惡魔共舞 + - Глупый ангел пляшет с демоном + - 'かな天 ' + - KanaTen + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 9 + endDate: + year: 2024 + month: 3 + day: 26 + averageScore: 67 + nextAiringEpisode: null + - id: 143866 + idMal: 50803 + title: + romaji: Jaku-Chara Tomozaki-kun 2nd STAGE + english: Bottom-Tier Character Tomozaki 2nd Stage + native: 弱キャラ友崎くん 2nd STAGE + synonyms: + - Bottom-Tier Character Tomozaki Season 2 + - Jaku-Chara Tomozaki-kun 2nd Season + - 弱キャラ友崎くん2 + - Низкоуровневый Томодзаки 2 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 3 + endDate: + year: 2024 + month: 3 + day: 27 + averageScore: 70 + nextAiringEpisode: null + - id: 160389 + idMal: 54265 + title: + romaji: Kekkon Yubiwa Monogatari + english: Tales of Wedding Rings + native: 結婚指輪物語 + synonyms: + - ตำนานผู้กล้าแห่งแหวน + - 婚戒物語 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 6 + endDate: + year: 2024 + month: 3 + day: 23 + averageScore: 59 + nextAiringEpisode: null + - id: 156891 + idMal: 53590 + title: + romaji: Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita. + english: The Weakest Tamer Began a Journey to Pick Up Trash + native: 最弱テイマーはゴミ拾いの旅を始めました。 + synonyms: + - การผจญภัยของเทมเมอร์มือใหม่กับสไลม์สุดด๋อย + - 最弱魔物使開始了撿垃圾之旅。 + - Слабейшая укротительница отправляется в путешествие по сбору мусора + - Kẻ Thuần Hóa Yếu Nhất Bắt Đầu Hành Trình Nhặt Rác + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 12 + endDate: + year: 2024 + month: 3 + day: 29 + averageScore: 74 + nextAiringEpisode: null + - id: 161476 + idMal: 54449 + title: + romaji: Ishura + english: ISHURA + native: 異修羅 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2024 + startDate: + year: 2024 + month: 1 + day: 3 + endDate: + year: 2024 + month: 3 + day: 20 + averageScore: 65 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/58-2024-spring.yaml b/test/fixtures/anilist/season_matrix/58-2024-spring.yaml new file mode 100644 index 0000000..e24cd30 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/58-2024-spring.yaml @@ -0,0 +1,698 @@ +metadata: + captured_at: '2026-05-11T11:35:02Z' + label: 2024-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2024 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:01 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '15' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 153288 + idMal: 52588 + title: + romaji: Kaijuu 8-gou + english: Kaiju No. 8 + native: 怪獣8号 + synonyms: + - 'Monster #8' + - 8Kaijuu + - KAIJU No. EIGHT + - Kaiju N°8 + - 괴수 8호 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 13 + endDate: + year: 2024 + month: 6 + day: 29 + averageScore: 81 + nextAiringEpisode: null + - id: 166240 + idMal: 55701 + title: + romaji: 'Kimetsu no Yaiba: Hashira Geiko-hen' + english: 'Demon Slayer: Kimetsu no Yaiba Hashira Training Arc' + native: 鬼滅の刃 柱稽古編 + synonyms: + - KnY 4 + - 'Demon Slayer: Kimetsu no Yaiba - L''entraînement des Piliers' + - 'Miecz zabójcy demonów – Kimetsu no Yaiba: Trening Filarów' + - 'Клинок, рассекающий демонов: Тренировка столпов' + status: FINISHED + format: TV + episodes: 8 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 5 + day: 12 + endDate: + year: 2024 + month: 6 + day: 30 + averageScore: 80 + nextAiringEpisode: null + - id: 166873 + idMal: 55888 + title: + romaji: 'Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2' + english: 'Mushoku Tensei: Jobless Reincarnation Season 2 Part 2' + native: 無職転生Ⅱ ~異世界行ったら本気だす~ 第2クール + synonyms: + - 'Mushoku Tensei: Jobless Reincarnation Season 2 Cour 2' + - เกิดชาตินี้พี่ต้องเทพ ซีซั่น 2 ครึ่งหลัง + - 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2' + - 'Mushoku Tensei II: Jobless Reincarnation Part 2' + - 'Mushoku Tensei II: Reencarnación desde cero' + - 无职转生~到了异世界就拿出真本事~第2季 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 8 + endDate: + year: 2024 + month: 7 + day: 1 + averageScore: 83 + nextAiringEpisode: null + - id: 163270 + idMal: 54900 + title: + romaji: WIND BREAKER + english: WIND BREAKER + native: WIND BREAKER + synonyms: + - WB + - ウィンブレ + - WBK + - ウィンドブレイカー + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 5 + endDate: + year: 2024 + month: 6 + day: 28 + averageScore: 77 + nextAiringEpisode: null + - id: 136804 + idMal: 49458 + title: + romaji: Kono Subarashii Sekai ni Shukufuku wo! 3 + english: KONOSUBA -God's blessing on this wonderful world! 3 + native: この素晴らしい世界に祝福を!3 + synonyms: + - Konosuba 3 + - ขอให้โชคดีมีชัยในโลกแฟนตาซี! ภาค 3 + - 為美好的世界獻上祝福!3 + - Да благословят боги сей расчудесный мир! 3 + - Konosuba! Un mundo maravilloso 3 + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 10 + endDate: + year: 2024 + month: 6 + day: 19 + averageScore: 82 + nextAiringEpisode: null + - id: 163139 + idMal: 54789 + title: + romaji: Boku no Hero Academia 7 + english: My Hero Academia Season 7 + native: 僕のヒーローアカデミア 7 + synonyms: + - BNHA 7 + - MHA 7 + - Моя геройская академия 7 + status: FINISHED + format: TV + episodes: 21 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 5 + day: 4 + endDate: + year: 2024 + month: 10 + day: 12 + averageScore: 82 + nextAiringEpisode: null + - id: 156822 + idMal: 53580 + title: + romaji: Tensei Shitara Slime Datta Ken 3rd Season + english: That Time I Got Reincarnated as a Slime Season 3 + native: 転生したらスライムだった件 第3期 + synonyms: + - Tensura 3 + - เกิดใหม่ทั้งทีก็เป็นสไลม์ไปซะแล้ว ภาค 3 + - Moi, quand je me réincarne en Slime Saison 3 + - 転スラ 3 + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 5 + endDate: + year: 2024 + month: 9 + day: 27 + averageScore: 77 + nextAiringEpisode: null + - id: 174788 + idMal: 58125 + title: + romaji: Look Back + english: LOOK BACK + native: ルックバック + synonyms: [] + status: FINISHED + format: MOVIE + episodes: 1 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 6 + day: 28 + endDate: + year: 2024 + month: 6 + day: 28 + averageScore: 86 + nextAiringEpisode: null + - id: 145728 + idMal: 51122 + title: + romaji: 'Ookami to Koushinryou: MERCHANT MEETS THE WISE WOLF' + english: 'Spice and Wolf: MERCHANT MEETS THE WISE WOLF' + native: 狼と香辛料 MERCHANT MEETS THE WISE WOLF + synonyms: + - Spice and Wolf (2024) + - Ookami to Koushinryou (2024) + - 'สาวหมาป่ากับนายเครื่องเทศ ' + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 2 + endDate: + year: 2024 + month: 9 + day: 24 + averageScore: 79 + nextAiringEpisode: null + - id: 156415 + idMal: 53516 + title: + romaji: Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu + english: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability + native: 転生したら第七王子だったので、気ままに魔術を極めます + synonyms: + - พอได้เกิดใหม่เป็นองค์ชายลำดับที่เจ็ด ก็เพื่อเรียนเวทย์ให้สนุก + - Dainanaoji + - 轉生為第七王子,隨心所欲的魔法學習之路 + - Я перевоплотился в седьмого принца, так что буду совершенствовать свою магию как захочу + - Bereinkarnasi Malah Menjadi Pangeran Ketujuh, jadi Aku Bisa Menyempurnakan Kemampuan Sihirku Sepuasnya + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 2 + endDate: + year: 2024 + month: 6 + day: 18 + averageScore: 73 + nextAiringEpisode: null + - id: 170130 + idMal: 56923 + title: + romaji: Lv2 Kara Cheat datta Moto Yuusha Kouho no Mattari Isekai Life + english: Chillin' in Another World with Level 2 Super Cheat Powers + native: Lv2からチートだった元勇者候補のまったり異世界ライフ + synonyms: + - Chillin Different World Life of the Ex-Brave Candidate Was Cheat from Lv2 + - Cuộc sống thảnh thơi tại dị giới gian lận của cựu ứng viên dũng giả từ cấp độ hai + - Беззаботная жизнь в ином мире с читерскими способностями со второго уровня + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 8 + endDate: + year: 2024 + month: 6 + day: 24 + averageScore: 68 + nextAiringEpisode: null + - id: 158417 + idMal: 53770 + title: + romaji: Sentai Daishikkaku + english: Go! Go! Loser Ranger! + native: 戦隊大失格 + synonyms: + - Ranger Reject + - ขบวนการกำมะลอ + - No Longer Rangers + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 7 + endDate: + year: 2024 + month: 6 + day: 30 + averageScore: 72 + nextAiringEpisode: null + - id: 156023 + idMal: 53434 + title: + romaji: Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii? + english: 'An Archdemon''s Dilemma: How to Love Your Elf Bride' + native: 魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい? + synonyms: + - Madome + - まどめ + - จอมมารอย่างข้า ควรรักภรรยาเอลฟ์อย่างไรดี + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 5 + endDate: + year: 2024 + month: 6 + day: 14 + averageScore: 72 + nextAiringEpisode: null + - id: 164702 + idMal: 55265 + title: + romaji: Tensei Kizoku, Kantei Skill de Nariagaru + english: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World + native: 転生貴族、鑑定スキルで成り上がる + synonyms: + - KanteiSkill + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 7 + endDate: + year: 2024 + month: 6 + day: 23 + averageScore: 71 + nextAiringEpisode: null + - id: 158898 + idMal: 53865 + title: + romaji: Yozakura-san Chi no Daisakusen + english: 'Mission: Yozakura Family' + native: 夜桜さんちの大作戦 + synonyms: + - 'Missão: Família Yozakura' + - 'Misión: Familia Yozakura' + - ปฏิบัติการลับบ้านโยซากุระ + - La misión de la familia Yozakura + - Миссия семьи Ёдзакура + - 'Misja: Rodzina Yozakura' + status: FINISHED + format: TV + episodes: 27 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 7 + endDate: + year: 2024 + month: 10 + day: 6 + averageScore: 74 + nextAiringEpisode: null + - id: 130590 + idMal: 48418 + title: + romaji: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou + II Part 2' + english: The Misfit of Demon King Academy II (Cour 2) + native: 魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ Ⅱ 2クール + synonyms: + - 'The Misfit of Demon King Academy: History’s Strongest Demon King Reincarnates and Goes to School with His Descendants + Season 2 Part 2' + - 'ใครว่าข้าไม่เหมาะเป็นจอมมาร: ต้นตระกูลจอมมารที่เเกร่งที่สุดในประวัติศาสตร์เกิดใหม่ไปเรียนที่โรงเรียนลูกหลาน ภาค + 2 Part 2' + - Непригодный для Академии владыки тьмы II + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 12 + endDate: + year: 2024 + month: 7 + day: 25 + averageScore: 65 + nextAiringEpisode: null + - id: 169417 + idMal: 56690 + title: + romaji: Re:Monster + english: Re:Monster + native: Re:Monster + synonyms: + - リ・モンスター + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 2 + endDate: + year: 2024 + month: 6 + day: 18 + averageScore: 65 + nextAiringEpisode: null + - id: 164212 + idMal: 55102 + title: + romaji: GIRLS BAND CRY + english: Girls Band Cry + native: ガールズバンドクライ + synonyms: + - Garukura + - ガルクラ + - GBC + - Крик дівочого гурту + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 6 + endDate: + year: 2024 + month: 6 + day: 29 + averageScore: 83 + nextAiringEpisode: null + - id: 163078 + idMal: 54839 + title: + romaji: Yoru no Kurage wa Oyogenai + english: Jellyfish Can’t Swim in the Night + native: 夜のクラゲは泳げない + synonyms: + - YoruKura + - ヨルクラ + - Meduzy nie pływają same + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 7 + endDate: + year: 2024 + month: 6 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 158709 + idMal: 53835 + title: + romaji: Unnamed Memory + english: Unnamed Memory + native: Unnamed Memory + synonyms: + - アンネームドメモリー + - อันเนมด์ เมโมรี + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 9 + endDate: + year: 2024 + month: 6 + day: 25 + averageScore: 66 + nextAiringEpisode: null + - id: 170890 + idMal: 57100 + title: + romaji: THE NEW GATE + english: THE NEW GATE + native: THE NEW GATE + synonyms: + - ザ・ニュー・ゲート + - TNG + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 14 + endDate: + year: 2024 + month: 6 + day: 30 + averageScore: 64 + nextAiringEpisode: null + - id: 143271 + idMal: 50713 + title: + romaji: Mahouka Koukou no Rettousei 3rd Season + english: The Irregular at Magic High School Season 3 + native: 魔法科高校の劣等生 第3シーズン + synonyms: + - พี่น้องปริศนาโรงเรียนมหาเวท ภาค 3 + - Непутёвый ученик в школе магии 3 + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 5 + endDate: + year: 2024 + month: 6 + day: 28 + averageScore: 70 + nextAiringEpisode: null + - id: 165855 + idMal: 55597 + title: + romaji: Hananoi-kun to Koi no Yamai + english: A Condition Called Love + native: 花野井くんと恋の病 + synonyms: + - ' I''m addicted to you' + - A tes côtés + - Ein Gefühl namens Liebe + - Adicto a ti + - รักติดหนึบของฮานาโนอิคุง + - Una enfermedad llamada amor + - 花野井同學與戀愛病 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 4 + endDate: + year: 2024 + month: 6 + day: 20 + averageScore: 66 + nextAiringEpisode: null + - id: 155890 + idMal: 53407 + title: + romaji: 'Bartender: Kami no Glass' + english: BARTENDER Glass of God + native: バーテンダー 神のグラス + synonyms: + - Bartender (New Anime) + - 'Бармен: божественный стакан' + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 4 + endDate: + year: 2024 + month: 6 + day: 20 + averageScore: 73 + nextAiringEpisode: null + - id: 168138 + idMal: 56230 + title: + romaji: Jii-san Baa-san Wakagaeru + english: Grandpa and Grandma Turn Young Again + native: じいさんばあさん若返る + synonyms: + - A Story About a Grandpa and Grandma Who Returned Back to Their Youth + - おじいさんとおばあさんが若返った話。 + - Ojiisan to Obaasan ga Wakagaetta Hanashi. + status: FINISHED + format: TV + episodes: 11 + season: SPRING + seasonYear: 2024 + startDate: + year: 2024 + month: 4 + day: 7 + endDate: + year: 2024 + month: 6 + day: 16 + averageScore: 71 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/59-2024-summer.yaml b/test/fixtures/anilist/season_matrix/59-2024-summer.yaml new file mode 100644 index 0000000..2cf11b6 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/59-2024-summer.yaml @@ -0,0 +1,689 @@ +metadata: + captured_at: '2026-05-11T11:35:04Z' + label: 2024-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2024 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:04 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '14' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 162804 + idMal: 54744 + title: + romaji: Tokidoki Bosotto Russiago de Dereru Tonari no Alya-san + english: Alya Sometimes Hides Her Feelings in Russian + native: 時々ボソッとロシア語でデレる隣のアーリャさん + synonyms: + - Roshidere + - ロシデレ + - 'คุณอาเรียโต๊ะข้างๆพูดรัสเซียหวานใส่ซะหัวใจจะวาย ' + - Иногда Аля внезапно кокетничает по-русски + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 3 + endDate: + year: 2024 + month: 9 + day: 18 + averageScore: 75 + nextAiringEpisode: null + - id: 166531 + idMal: 55791 + title: + romaji: '[Oshi no Ko] 2nd Season' + english: Oshi no Ko Season 2 + native: 【推しの子】第2期 + synonyms: + - 我推的孩子 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 3 + endDate: + year: 2024 + month: 10 + day: 6 + averageScore: 85 + nextAiringEpisode: null + - id: 174576 + idMal: 58059 + title: + romaji: Tsue to Tsurugi no Wistoria + english: 'Wistoria: Wand and Sword' + native: 杖と剣のウィストリア + synonyms: + - 杖與劍的魔劍譚 + - ตำนานดาบและคทาแห่งวิสตอเรีย + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 7 + endDate: + year: 2024 + month: 9 + day: 29 + averageScore: 78 + nextAiringEpisode: null + - id: 171457 + idMal: 57524 + title: + romaji: Make Heroine ga Oosugiru! + english: 'Makeine: Too Many Losing Heroines!' + native: 負けヒロインが多すぎる! + synonyms: + - Toooooo Many Losing Heroines + - マケイン + - รักครั้งนี้มีคนนกเยอะไปมั้ย! + - Makeine + - 敗北女角太多了! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 14 + endDate: + year: 2024 + month: 9 + day: 29 + averageScore: 81 + nextAiringEpisode: null + - id: 153406 + idMal: 52635 + title: + romaji: 'Kami no Tou: Tower of God 2nd Season' + english: Tower of God Season 2 + native: 神之塔 -Tower of God- 第2期 + synonyms: + - タワーオブ・ゴッド 2 + - Sinui Tap 2 + - TOG 2 + - 신의 탑 2 + - 'Tower of God Season 2: Return of the Prince' + - 神之塔 -Tower of God- 王子の帰還 + - 'Kami no Tou: Tower of God - Ouji no Kikan' + - 神之塔 -Tower of God- 工房戦 + - 'Kami no Tou: Tower of God - Koubou-sen' + - 'Tower of God Season 2: Workshop Battle' + status: FINISHED + format: TV + episodes: 26 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 7 + endDate: + year: 2024 + month: 12 + day: 29 + averageScore: 66 + nextAiringEpisode: null + - id: 175977 + idMal: 58426 + title: + romaji: Shikanoko Nokonoko Koshitantan + english: My Deer Friend Nokotan + native: しかのこのこのここしたんたん + synonyms: + - Minha Amiga Nokotan é um Cervo + - Mi Amiga Nokotan es un Ciervo + - 鹿乃子乃子虎视眈眈 + - Nokotan in Cerva di Amici + - Моя подруга-олениха Нокотан + - Shikanoko i dziwne zdarzenia w klubie jelenia + status: FINISHED + format: ONA + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 3 + endDate: + year: 2024 + month: 9 + day: 18 + averageScore: 67 + nextAiringEpisode: null + - id: 152137 + idMal: 52367 + title: + romaji: Isekai Shikkaku + english: No Longer Allowed in Another World + native: 異世界失格 + synonyms: + - No Longer Human…In Another World + - Disqualified from Another World + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 9 + endDate: + year: 2024 + month: 9 + day: 24 + averageScore: 71 + nextAiringEpisode: null + - id: 173694 + idMal: 57892 + title: + romaji: Hazure Waku no [Joutai Ijou Skill] de Saikyou ni Natta Ore ga Subete wo Juurin Suru made + english: 'Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells' + native: ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで + synonyms: + - Hazurewaku + - Dengan Bingkai Status Sampah "Skill Abnormal" Aku Menjadi Terkuat dan Akan Menghabisi Semuanya + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 5 + endDate: + year: 2024 + month: 9 + day: 27 + averageScore: 63 + nextAiringEpisode: null + - id: 163623 + idMal: 54968 + title: + romaji: Giji Harem + english: Pseudo Harem + native: 疑似ハーレム + synonyms: + - ฮาเร็มนี้มีแต่เธอ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 5 + endDate: + year: 2024 + month: 9 + day: 20 + averageScore: 76 + nextAiringEpisode: null + - id: 162896 + idMal: 54724 + title: + romaji: Nige Jouzu no Wakagimi + english: The Elusive Samurai + native: 逃げ上手の若君 + synonyms: + - Nigewaka + - นายน้อยจอมโกยก้าวสู่เส้นทางแห่งวีรบุรุษ + - Héroe fugitivo + - Беглый самурай + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 6 + endDate: + year: 2024 + month: 9 + day: 28 + averageScore: 77 + nextAiringEpisode: null + - id: 170695 + idMal: 57058 + title: + romaji: 'Ore wa Subete wo [Parry] Suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai' + english: I Parry Everything + native: 俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~ + synonyms: + - 'I Parry Everything: What Do You Mean I''m the Strongest? I''m Not Even an Adventurer Yet!' + - I Parry Everything to Become the Greatest Adventure! + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 5 + endDate: + year: 2024 + month: 9 + day: 20 + averageScore: 68 + nextAiringEpisode: null + - id: 152681 + idMal: 52481 + title: + romaji: Gimai Seikatsu + english: Days with My Stepsister + native: 義妹生活 + synonyms: + - แง้มหัวใจยัยน้องสาวจำเป็น + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 4 + endDate: + year: 2024 + month: 9 + day: 19 + averageScore: 73 + nextAiringEpisode: null + - id: 163292 + idMal: 54913 + title: + romaji: Shinmai Ossan Bouken-sha, Saikyou Party ni Shinu Hodo Kitaerarete Muteki ni Naru. + english: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible + native: 新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 2 + endDate: + year: 2024 + month: 9 + day: 24 + averageScore: 73 + nextAiringEpisode: null + - id: 133845 + idMal: 48896 + title: + romaji: 'Overlord: Sei Oukoku-hen' + english: 'OVERLORD: The Sacred Kingdom' + native: オーバーロード 聖王国編 + synonyms: + - Overlord Movie 3 + - 'Overlord: Holy Kingdom Arc' + - โอเวอร์ลอร์ด บทนครศักดิ์สิทธิ์ + - 'Overlord: The Paladin of the Sacred Kingdom Arc' + - 'Overlord: O Reino Sagrado' + - 'Overlord: El Reino Sagrado' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 9 + day: 20 + endDate: + year: 2024 + month: 9 + day: 20 + averageScore: 78 + nextAiringEpisode: null + - id: 166710 + idMal: 55848 + title: + romaji: Isekai Suicide Squad + english: Suicide Squad ISEKAI + native: 異世界スーサイド・スクワッド + synonyms: + - 'Legion samobójców: Isekai' + - 異世界自殺突擊隊 + - " Esquadrão Suicida: Isekai\t" + - 'Az Öngyilkos osztag: Iszekai' + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 6 + day: 27 + endDate: + year: 2024 + month: 8 + day: 15 + averageScore: 61 + nextAiringEpisode: null + - id: 158559 + idMal: 53802 + title: + romaji: 2.5 Jigen no Ririsa + english: 2.5 Dimensional Seduction + native: 2.5次元の誘惑 + synonyms: + - 2.5 Jigen no Yuuwaku + - 2.5 มิติ ริริสะ + - Ririsa of 2.5 Dimension + - にごリリ + - Nigoriri + - Ririsa, uma Garota em 2.5D + - Ririsa, una chica en 2.5D + - 2.5 Seducción Dimensional + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 5 + endDate: + year: 2024 + month: 12 + day: 13 + averageScore: 72 + nextAiringEpisode: null + - id: 173295 + idMal: 57810 + title: + romaji: Shoushimin Series + english: 'SHOSHIMIN: How to Become Ordinary' + native: 小市民シリーズ + synonyms: + - 小市民系列 + status: FINISHED + format: TV + episodes: 10 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 7 + endDate: + year: 2024 + month: 9 + day: 15 + averageScore: 74 + nextAiringEpisode: null + - id: 139095 + idMal: 49785 + title: + romaji: 'FAIRY TAIL: 100 YEARS QUEST' + english: FAIRY TAIL 100 YEARS QUEST + native: FAIRY TAIL 100 YEARS QUEST + synonyms: + - フェアリーテイル + - FAIRY TAIL 100年クエスト + - 'FAIRY TAIL: 100-nen Quest' + status: FINISHED + format: TV + episodes: 25 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 7 + endDate: + year: 2025 + month: 1 + day: 5 + averageScore: 75 + nextAiringEpisode: null + - id: 167419 + idMal: 56062 + title: + romaji: Naze Boku no Sekai wo Daremo Oboeteinai no ka? + english: Why Does Nobody Remember Me in This World? + native: なぜ僕の世界を誰も覚えていないのか? + synonyms: + - Why nobody remembers my world? + - Nazeboku + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 13 + endDate: + year: 2024 + month: 9 + day: 28 + averageScore: 62 + nextAiringEpisode: null + - id: 173584 + idMal: 57876 + title: + romaji: Maou Gun Saikyou no Majutsushi wa Ningen datta + english: The Strongest Magician in the Demon Lord's Army was a Human + native: 魔王軍最強の魔術師は人間だった + synonyms: + - Maou-gun Saikyou no Majutsushi wa Ningen datta + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 6 + day: 26 + endDate: + year: 2024 + month: 9 + day: 11 + averageScore: 62 + nextAiringEpisode: null + - id: 168872 + idMal: 56538 + title: + romaji: Kimi ni Todoke 3RD SEASON + english: 'Kimi ni Todoke: From Me to You Season 3' + native: 君に届け 3RD SEASON + synonyms: + - ฝากใจไปถึงเธอ ซีซั่น 3 + status: FINISHED + format: ONA + episodes: 5 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 8 + day: 1 + endDate: + year: 2024 + month: 8 + day: 1 + averageScore: 84 + nextAiringEpisode: null + - id: 139825 + idMal: 49981 + title: + romaji: Kimi to Boku no Saigo no Senjou, Arui wa Sekai ga Hajimaru Seisen Season II + english: Our Last Crusade or the Rise of a New World Season 2 + native: キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season II + synonyms: + - Kimisen 2 + - キミ戦 2 + - Kimi to Boku no Saigo no Senjo, Aruiwa Sekai ga Hajimaru Seisen + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 10 + endDate: + year: 2025 + month: 6 + day: 26 + averageScore: 67 + nextAiringEpisode: null + - id: 168013 + idMal: 56196 + title: + romaji: 'Boku no Hero Academia THE MOVIE: YOU''RE NEXT' + english: 'My Hero Academia: You’re Next' + native: '僕のヒーローアカデミア THE MOVIE: ユア ネクスト' + synonyms: + - My Hero Academia the Movie 4 + - 'My Hero Academia: Agora é a Sua Vez' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 8 + day: 2 + endDate: + year: 2024 + month: 8 + day: 2 + averageScore: 76 + nextAiringEpisode: null + - id: 173533 + idMal: 57864 + title: + romaji: 'Monogatari Series: Off & Monster Season' + english: 'MONOGATARI Series: OFF & MONSTER Season' + native: 〈物語〉シリーズ オフ&モンスターシーズン + synonyms: + - Orokamonogatari + - Nademonogatari + - Wazamonogatari + - Shinobumonogatari + status: FINISHED + format: ONA + episodes: 14 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 6 + endDate: + year: 2024 + month: 10 + day: 19 + averageScore: 86 + nextAiringEpisode: null + - id: 170938 + idMal: 57217 + title: + romaji: Katsute Mahou Shoujo to Aku wa Tekitai Shite Ita. + english: The Magical Girl and the Evil Lieutenant Used to Be Archenemies + native: かつて魔法少女と悪は敵対していた。 + synonyms: + - MahoAku + - まほあく + - Волшебница и злой офицер + status: FINISHED + format: TV_SHORT + episodes: 12 + season: SUMMER + seasonYear: 2024 + startDate: + year: 2024 + month: 7 + day: 9 + endDate: + year: 2024 + month: 9 + day: 24 + averageScore: 74 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/60-2024-fall.yaml b/test/fixtures/anilist/season_matrix/60-2024-fall.yaml new file mode 100644 index 0000000..19f34df --- /dev/null +++ b/test/fixtures/anilist/season_matrix/60-2024-fall.yaml @@ -0,0 +1,681 @@ +metadata: + captured_at: '2026-05-11T11:35:08Z' + label: 2024-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2024 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:08 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '13' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 171018 + idMal: 57334 + title: + romaji: Dandadan + english: DAN DA DAN + native: ダンダダン + synonyms: + - ดันดาดัน + - 膽大黨 + - 'DAN DA DAN: FIRST ENCOUNTER' + - Дандадан + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 4 + endDate: + year: 2024 + month: 12 + day: 20 + averageScore: 83 + nextAiringEpisode: null + - id: 163134 + idMal: 54857 + title: + romaji: Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season + english: Re:ZERO -Starting Life in Another World- Season 3 + native: Re:ゼロから始める異世界生活 3rd season + synonyms: + - Re:ZERO – Жизнь с нуля в альтернативном мире 3 + status: FINISHED + format: TV + episodes: 16 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 2 + endDate: + year: 2025 + month: 3 + day: 26 + averageScore: 84 + nextAiringEpisode: null + - id: 170942 + idMal: 57181 + title: + romaji: Ao no Hako + english: Blue Box + native: アオのハコ + synonyms: + - الصندوق الأزرق + - 青之箱 + - 푸른 상자 + - La caja azul + - กล่องรักวัยใส + - Niebieskie pudełko + status: FINISHED + format: ONA + episodes: 25 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 3 + endDate: + year: 2025 + month: 3 + day: 20 + averageScore: 81 + nextAiringEpisode: null + - id: 163146 + idMal: 54865 + title: + romaji: Blue Lock VS. U-20 JAPAN + english: BLUE LOCK Season 2 + native: ブルーロック VS. U-20 JAPAN + synonyms: + - ブルーロック第2期 + - Blue Lock 2nd Season + status: FINISHED + format: TV + episodes: 14 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 5 + endDate: + year: 2024 + month: 12 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 151514 + idMal: 52215 + title: + romaji: Chi. Chikyuu no Undou ni Tsuite + english: 'Orb: On the Movements of the Earth' + native: チ。-地球の運動について- + synonyms: + - 'Chi: About the Movement of the Earth' + - สุริยะปราชญ์ ทฤษฎีสีเลือด + - O ruchach Ziemi + - Du mouvement de la Terre + - 'Tierra, sangre, conocimiento: Sobre el movimiento de la Tierra' + - Ketzer - Tödliches Wissen über die Bewegung der Erde + - על תנועת כדור הארץ + - Il movimento della Terra + - Про рух Землі + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 5 + endDate: + year: 2025 + month: 3 + day: 15 + averageScore: 86 + nextAiringEpisode: null + - id: 169755 + idMal: 56784 + title: + romaji: 'BLEACH: Sennen Kessen-hen - Soukoku-tan' + english: 'BLEACH: Thousand-Year Blood War - The Conflict' + native: BLEACH 千年血戦篇-相剋譚- + synonyms: + - 'BLEACH: Thousand Year Blood War Part 3' + - BLEACH 千年血戦篇 第3クール + - BLEACH TYBW + status: FINISHED + format: TV + episodes: 14 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 5 + endDate: + year: 2024 + month: 12 + day: 28 + averageScore: 86 + nextAiringEpisode: null + - id: 176508 + idMal: 58572 + title: + romaji: Shangri-La Frontier 2nd Season + english: Shangri-La Frontier Season 2 + native: シャングリラ・フロンティア 2nd season + synonyms: + - シャンフロ2 + - シャングリラ・フロンティア〜クソゲーハンター, 神ゲーに挑まんとす〜 2nd season + - 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season' + - Рубеж Шангри-Ла 2 + - Thợ săn Game rác thách thức Game cấp Thánh, Mùa 2 + status: FINISHED + format: TV + episodes: 25 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 13 + endDate: + year: 2025 + month: 3 + day: 30 + averageScore: 82 + nextAiringEpisode: null + - id: 111314 + idMal: 40333 + title: + romaji: Uzumaki + english: Uzumaki + native: うずまき + synonyms: + - The Spiral + - ' ก้นหอยมรณะ' + - أوزوماكي + - Uzumaki. Spirala + - 'UZUMAKI: Animated TV Series' + status: FINISHED + format: TV + episodes: 4 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 9 + day: 29 + endDate: + year: 2024 + month: 10 + day: 20 + averageScore: 54 + nextAiringEpisode: null + - id: 170732 + idMal: 57066 + title: + romaji: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen' + english: Is It Wrong To Try To Pick Up Girls in a Dungeon? V + native: ダンジョンに出会いを求めるのは間違っているだろうかⅤ 豊穣の女神篇 + synonyms: + - DanMachi V + - Familia Myth V + - ダンまちⅤ + - Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 5 + - Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka 5th Season + - 'Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of Fertility Arc' + - 'Is It Wrong to Try to Pick Up Girls in a Dungeon? V: Goddess of the Harvest Arc' + status: FINISHED + format: ONA + episodes: 15 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 3 + endDate: + year: 2025 + month: 3 + day: 5 + averageScore: 79 + nextAiringEpisode: null + - id: 154473 + idMal: 52995 + title: + romaji: Arifureta Shokugyou de Sekai Saikyou 3rd season + english: 'Arifureta: From Commonplace to World''s Strongest Season 3' + native: ありふれた職業で世界最強 3rd season + synonyms: + - อาชีพกระจอกแล้วทำไม ยังไงข้าก็เทพ ภาค 3 + status: FINISHED + format: TV + episodes: 16 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 14 + endDate: + year: 2025 + month: 2 + day: 17 + averageScore: 70 + nextAiringEpisode: null + - id: 141182 + idMal: 50306 + title: + romaji: Seirei Gensouki 2 + english: 'Seirei Gensouki: Spirit Chronicles Season 2' + native: 精霊幻想記2 + synonyms: + - ตำนานวิญญาณแฟนซี ภาค 2 + - 精灵幻想记吧2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 8 + endDate: + year: 2024 + month: 12 + day: 24 + averageScore: 69 + nextAiringEpisode: null + - id: 175019 + idMal: 58172 + title: + romaji: Nageki no Bourei wa Intai Shitai + english: Let This Grieving Soul Retire + native: '嘆きの亡霊は引退したい ' + synonyms: + - Arwah Berduka yang Ingin Pensiun + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 9 + day: 29 + endDate: + year: 2024 + month: 12 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 178533 + idMal: 59145 + title: + romaji: Ranma 1/2 (2024) + english: Ranma1/2 (2024) + native: らんま1/2 (2024) + synonyms: + - Ranma 1/2 (New Anime) + - Ranma 1/2 (Shinsaku Anime) + - らんま1/2 (新作アニメ) + - 乱马 1/2 + - 란마1/2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 6 + endDate: + year: 2024 + month: 12 + day: 21 + averageScore: 79 + nextAiringEpisode: null + - id: 173693 + idMal: 57891 + title: + romaji: Hitoribocchi no Isekai Kouryaku + english: Loner Life in Another World + native: ひとりぼっちの異世界攻略 + synonyms: [] + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 9 + day: 27 + endDate: + year: 2024 + month: 12 + day: 13 + averageScore: 65 + nextAiringEpisode: null + - id: 170083 + idMal: 56894 + title: + romaji: Dragon Ball DAIMA + english: Dragon Ball DAIMA + native: ドラゴンボールDAIMA + synonyms: + - ドラゴンボール ダイマ + - Драконий жемчуг Дайма + status: FINISHED + format: TV + episodes: 20 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 11 + endDate: + year: 2025 + month: 2 + day: 28 + averageScore: 75 + nextAiringEpisode: null + - id: 170468 + idMal: 56964 + title: + romaji: Raise wa Tanin ga Ii + english: 'Yakuza Fiancé: Raise wa Tanin ga Ii' + native: 来世は他人がいい + synonyms: + - 'Yakuza Fiancé: Raise wa Tanin ga Ii' + - รักอันตรายของเจ้าสาวยากูซ่า + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 7 + endDate: + year: 2024 + month: 12 + day: 23 + averageScore: 71 + nextAiringEpisode: null + - id: 163135 + idMal: 54853 + title: + romaji: Maou 2099 + english: DEMON LORD 2099 + native: 魔王2099 + synonyms: + - '魔王2099: THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099' + - Maou 2099:THE LORD OF IMMORTALS BLOOMING IN THE ABYSS E.E. 2099 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 13 + endDate: + year: 2024 + month: 12 + day: 29 + averageScore: 72 + nextAiringEpisode: null + - id: 172190 + idMal: 57611 + title: + romaji: Kimi wa Meido-sama. + english: You are Ms. Servant + native: 君は冥土様。 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 6 + endDate: + year: 2024 + month: 12 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 182469 + idMal: 60022 + title: + romaji: ONE PIECE FAN LETTER + english: ONE PIECE FAN LETTER + native: ONE PIECE FAN LETTER + synonyms: [] + status: FINISHED + format: SPECIAL + episodes: 1 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 20 + endDate: + year: 2024 + month: 10 + day: 20 + averageScore: 90 + nextAiringEpisode: null + - id: 177104 + idMal: 58714 + title: + romaji: Saikyou no Shien-shoku [Wajutsushi] Dearu Ore wa Sekai Saikyou Clan wo Shitagaeru + english: The Most Notorious "Talker" Runs the World's Greatest Clan + native: 最凶の支援職【話術士】である俺は世界最強クランを従える + synonyms: + - Wajutsushi + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 1 + endDate: + year: 2024 + month: 12 + day: 16 + averageScore: 74 + nextAiringEpisode: null + - id: 168139 + idMal: 56228 + title: + romaji: Rekishi ni Nokoru Akujo ni Naruzo + english: I’ll Become a Villainess Who Goes Down in History + native: 歴史に残る悪女になるぞ + synonyms: + - I'll Become a Villainess That Will Go Down in History + - I'll Become a Villainess That Will Go Down in History - The More of a Villainess I Become, the More the Prince + Will Dote on Me + - 'Rekishi ni Nokoru Akujo ni Naruzo: Akuyaku Reijou ni Naru hodo Ouji no Dekiai wa Kasoku Suru you desu!' + - 歴史に残る悪女になるぞ 悪役令嬢になるほど王子の溺愛は加速するようです! + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 1 + endDate: + year: 2024 + month: 12 + day: 24 + averageScore: 72 + nextAiringEpisode: null + - id: 164172 + idMal: 55071 + title: + romaji: Amagami-san Chi no Enmusubi + english: Tying the Knot with an Amagami Sister + native: 甘神さんちの縁結び + synonyms: + - Matchmaking of the Amagami Household + - ด้ายแดงผูกรักบ้านอามากามิ + - 結緣甘神神社 + - 甘神家的连理枝 + - ربط العقد مع أخوات أماغامي + status: FINISHED + format: TV + episodes: 24 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 2 + endDate: + year: 2025 + month: 3 + day: 26 + averageScore: 73 + nextAiringEpisode: null + - id: 165790 + idMal: 55887 + title: + romaji: Kekkon Suru tte, Hontou desu ka + english: 365 Days to the Wedding + native: 結婚するって、本当ですか + synonyms: + - Are You Really Getting Married? + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 3 + endDate: + year: 2024 + month: 12 + day: 19 + averageScore: 70 + nextAiringEpisode: null + - id: 178434 + idMal: 59131 + title: + romaji: Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season + english: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2 + native: 転生貴族、鑑定スキルで成り上がる 第2期 + synonyms: + - KanteiSkill 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 9 + day: 29 + endDate: + year: 2024 + month: 12 + day: 22 + averageScore: 74 + nextAiringEpisode: null + - id: 174043 + idMal: 57944 + title: + romaji: Party kara Tsuihou sareta Sono Chiyushi, Jitsu wa Saikyou ni Tsuki + english: The Healer Who Was Banished From His Party, Is, in Fact, the Strongest + native: パーティーから追放されたその治癒師、実は最強につき + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2024 + startDate: + year: 2024 + month: 10 + day: 6 + endDate: + year: 2024 + month: 12 + day: 22 + averageScore: 56 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/61-2025-winter.yaml b/test/fixtures/anilist/season_matrix/61-2025-winter.yaml new file mode 100644 index 0000000..c85dfc8 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/61-2025-winter.yaml @@ -0,0 +1,689 @@ +metadata: + captured_at: '2026-05-11T11:35:11Z' + label: 2025-winter + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2025 + season: WINTER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:10 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '12' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 176496 + idMal: 58567 + title: + romaji: 'Ore dake Level Up na Ken: Season 2 - Arise from the Shadow' + english: Solo Leveling Season 2 -Arise from the Shadow- + native: 俺だけレベルアップな件 Season 2 -Arise from the Shadow- + synonyms: + - Na Honjaman Level Up 2 + - 나 혼자만 레벨업 2 + - 俺だけレベルアップな件 第2期 + - Ore dake Level Up na Ken 2nd Season + - Solo Leveling 2ª Temporada -Ergam-se das Sombras- + - 나 혼자만 레벨업 -ARISE FROM THE SHADOW- + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 5 + endDate: + year: 2025 + month: 3 + day: 30 + averageScore: 85 + nextAiringEpisode: null + - id: 177709 + idMal: 58939 + title: + romaji: SAKAMOTO DAYS + english: SAKAMOTO DAYS + native: SAKAMOTO DAYS + synonyms: + - サカモト デイズ + - أيام ساكاموتو + - 사카모토 데이즈 + - 坂本日常 + - Дни Сакамото + status: FINISHED + format: ONA + episodes: 11 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 11 + endDate: + year: 2025 + month: 3 + day: 15 + averageScore: 76 + nextAiringEpisode: null + - id: 176301 + idMal: 58514 + title: + romaji: Kusuriya no Hitorigoto 2nd Season + english: The Apothecary Diaries Season 2 + native: 薬屋のひとりごと 第2期 + synonyms: + - Die Tagebücher der Apothekerin Season 2 + - Diários de uma Apotecária 2ª Temporada + - Монолог фармацевта 2 + - Les Carnets de l'apothicaire Saison 2 + - Los diarios de la boticaria temporada 2 + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 10 + endDate: + year: 2025 + month: 7 + day: 4 + averageScore: 88 + nextAiringEpisode: null + - id: 172019 + idMal: 57592 + title: + romaji: 'Dr. STONE: SCIENCE FUTURE' + english: Dr. STONE SCIENCE FUTURE + native: Dr.STONE SCIENCE FUTURE + synonyms: + - Dr.STONE Season 4 + - Dr.STONE 第4期 + - ドクターストーン + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 9 + endDate: + year: 2025 + month: 3 + day: 27 + averageScore: 82 + nextAiringEpisode: null + - id: 172258 + idMal: 57616 + title: + romaji: Kimi no Koto ga Dai Dai Dai Dai Daisuki na 100-nin no Kanojo 2nd Season + english: The 100 Girlfriends Who Really, Really, Really, Really, REALLY Love You Season 2 + native: 君のことが大大大大大好きな100人の彼女 第2期 + synonyms: + - 100 Kanojo 2 + - 100Kano 2 + - Hyakkano 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 12 + endDate: + year: 2025 + month: 3 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 176273 + idMal: 58502 + title: + romaji: Zenshuu. + english: ZENSHU + native: 全修。 + synonyms: + - เซ็นชู + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 5 + endDate: + year: 2025 + month: 3 + day: 23 + averageScore: 73 + nextAiringEpisode: null + - id: 178462 + idMal: 59135 + title: + romaji: Class no Daikirai na Joshi to Kekkon Suru Koto ni Natta. + english: I'm Getting Married to a Girl I Hate in My Class + native: クラスの大嫌いな女子と結婚することになった。 + synonyms: + - Kurakon + - クラ婚 + - クラコン + - Cla-Kon + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 3 + endDate: + year: 2025 + month: 3 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 167143 + idMal: 55997 + title: + romaji: Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu + english: I May Be a Guild Receptionist, but I’ll Solo Any Boss to Clock Out on Time + native: ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います + synonyms: + - Uketsukejou Saikyou + - Girumasu + - ギルます + - 雖然是公會的櫃檯小姐,但因為不想加班所以打算獨自討伐迷宮頭目 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 11 + endDate: + year: 2025 + month: 3 + day: 29 + averageScore: 66 + nextAiringEpisode: null + - id: 175443 + idMal: 58271 + title: + romaji: Honey Lemon Soda + english: Honey Lemon Soda + native: ハニーレモンソーダ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 9 + endDate: + year: 2025 + month: 3 + day: 27 + averageScore: 70 + nextAiringEpisode: null + - id: 169441 + idMal: 56701 + title: + romaji: Watashi no Shiawase na Kekkon 2nd Season + english: My Happy Marriage Season 2 + native: わたしの幸せな結婚 第二期 + synonyms: + - WataKon 2 + - ขอให้รักเรานี้ได้มีความสุข + - Moje szczęśliwe małżeństwo. Sezon 2 + - Hôn nhân hạnh phúc của tôi + - Meu Casamento Feliz + - Il mio matrimonio felice + - Мій щасливий шлюб + - Mi feliz matrimonio + - わた婚2 + - Мой счастливый брак 2 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 6 + endDate: + year: 2025 + month: 4 + day: 9 + averageScore: 74 + nextAiringEpisode: null + - id: 178548 + idMal: 59144 + title: + romaji: 'Fuguushoku [Kanteishi] ga Jitsu wa Saikyou Datta: Naraku de Kitaeta Saikyou no [Shingan] de Musou Suru' + english: Even Given the Worthless “Appraiser” Class, I’m Actually the Strongest + native: 不遇職【鑑定士】が実は最強だった~奈落で鍛えた最強の【神眼】で無双する~ + synonyms: + - FuguKan + - ふぐ鑑 + - Đen đủi khi có nghề [Giám định sĩ] nhưng tôi lại là người mạnh nhất + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 9 + endDate: + year: 2025 + month: 3 + day: 27 + averageScore: 63 + nextAiringEpisode: null + - id: 179696 + idMal: 59361 + title: + romaji: Kono Kaisha ni Suki na Hito ga Imasu + english: I Have a Crush at Work + native: この会社に好きな人がいます + synonyms: + - I Have a Crush at Work + - Can You Keep a Secret? + - บริษัทนี้มีความรัก + - KonoSuki + - Ты умеешь хранить секреты? + - Bí mật Tình yêu nơi Công sở + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 6 + endDate: + year: 2025 + month: 3 + day: 24 + averageScore: 74 + nextAiringEpisode: null + - id: 177506 + idMal: 58822 + title: + romaji: Izure Saikyou no Renkinjutsushi? + english: Possibly the Greatest Alchemist of All Time + native: いずれ最強の錬金術師? + synonyms: + - Someday Will I Be The Greatest Alchemist? + - 遲早是最強的鍊金術師? + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 1 + endDate: + year: 2025 + month: 3 + day: 19 + averageScore: 66 + nextAiringEpisode: null + - id: 177552 + idMal: 58853 + title: + romaji: Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai + english: Medaka Kuroiwa is Impervious to My Charms + native: 黒岩メダカに私の可愛いが通じない + synonyms: + - メダかわ + - Medakawa + - Мэдака Куроива не понимает моей привлекательности + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 7 + endDate: + year: 2025 + month: 3 + day: 25 + averageScore: 64 + nextAiringEpisode: null + - id: 180812 + idMal: 59730 + title: + romaji: A-Rank Party wo Ridatsu Shita Ore wa, Moto Oshiegotachi to Meikyuu Shinbu wo Mezasu. + english: I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths! + native: Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。 + synonyms: + - After Leaving the A-Rank Party, I Aim for the Deep Part of the Labyrinth With My Former Students + - Aparida + - Покинув группу А-ранга, я направился вместе со своими бывшими учениками в глубины лабиринта + - Aku Meninggalkan Regu Peringkat-A untuk Membantu Mantan Muridku + - Sau khi rời khỏi Tổ đội hạng A, Tôi thám hiểm Mê cung cùng Đệ tử cũ + status: FINISHED + format: TV + episodes: 24 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 12 + endDate: + year: 2025 + month: 6 + day: 29 + averageScore: 65 + nextAiringEpisode: null + - id: 179689 + idMal: 59349 + title: + romaji: Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi + english: 'Headhunted to Another World: From Salaryman to Big Four!' + native: サラリーマンが異世界に行ったら四天王になった話 + synonyms: + - Salaryman Big 4 + - Nhân viên Văn phòng được Triệu hồi thành Tứ Đại Thiên Vương ở Thế giới khác + - 平凡上班族到異世界當上了四天王的故事 + status: FINISHED + format: ONA + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 1 + endDate: + year: 2025 + month: 3 + day: 17 + averageScore: 65 + nextAiringEpisode: null + - id: 178100 + idMal: 59002 + title: + romaji: 'Hazure Skill «Kinomi Master»: Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken Nitsuite' + english: Bogus Skill <> ~About that time I became able to eat unlimited numbers of Skill Fruits (that + kill you)~ + native: 外れスキル《木の実マスター》~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~ + synonyms: + - Kinomi Master + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 1 + endDate: + year: 2025 + month: 3 + day: 19 + averageScore: 57 + nextAiringEpisode: null + - id: 180292 + idMal: 59561 + title: + romaji: Arafou Otoko no Isekai Tsuuhan Seikatsu + english: The Daily Life of a Middle-Aged Online Shopper in Another World + native: アラフォー男の異世界通販生活 + synonyms: + - Around 40 Otoko no Isekai Tsuuhan Seikatsu + - ทะลุมิติไปเป็นยอดนักขายออนไลน์ในต่างโลกของชายวัยสี่สิบ + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 9 + endDate: + year: 2025 + month: 4 + day: 3 + averageScore: 62 + nextAiringEpisode: null + - id: 176642 + idMal: 58600 + title: + romaji: Ameku Takao no Suiri Karte + english: 'Ameku M.D.: Doctor Detective' + native: 天久鷹央の推理カルテ + synonyms: + - Ameku Takao's Detective Karte + - Ameku Takao no Suiri Karute + - 天久鷹央的推理病歷表 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 2 + endDate: + year: 2025 + month: 4 + day: 3 + averageScore: 69 + nextAiringEpisode: null + - id: 172439 + idMal: 57648 + title: + romaji: Nihon e Youkoso Elf-san. + english: Welcome to Japan, Ms. Elf! + native: 日本へようこそエルフさん。 + synonyms: + - 歡迎來到日本,妖精小姐。 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 10 + endDate: + year: 2025 + month: 3 + day: 28 + averageScore: 72 + nextAiringEpisode: null + - id: 172453 + idMal: 57719 + title: + romaji: Akuyaku Reijou Tensei Oji-san + english: 'From Bureaucrat to Villainess: Dad''s Been Reincarnated!' + native: 悪役令嬢転生おじさん + synonyms: + - The Middle-Aged Man that Reincarnated as a Villainess + - ' Om-om yang Bereinkarnasi Menjadi Putri Jahat' + - 中年大叔轉生反派千金 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 10 + endDate: + year: 2025 + month: 3 + day: 28 + averageScore: 73 + nextAiringEpisode: null + - id: 165171 + idMal: 55318 + title: + romaji: Medalist + english: Medalist + native: メダリスト + synonyms: + - 金牌得主 + status: FINISHED + format: TV + episodes: 13 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 5 + endDate: + year: 2025 + month: 3 + day: 30 + averageScore: 83 + nextAiringEpisode: null + - id: 170892 + idMal: 53924 + title: + romaji: Jibaku Shounen Hanako-kun 2 + english: Toilet-bound Hanako-kun Season 2 + native: 地縛少年花子くん2 + synonyms: + - ฮานาโกะคุง วิญญาณติดที่ ซีซั่น 2 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 12 + endDate: + year: 2025 + month: 3 + day: 30 + averageScore: 79 + nextAiringEpisode: null + - id: 176063 + idMal: 58437 + title: + romaji: Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwamete mita + english: I’m a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic + native: 没落予定の貴族だけど、暇だったから魔法を極めてみた + synonyms: + - BotsurakuKizoku + - 没落貴族 + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 7 + endDate: + year: 2025 + month: 3 + day: 18 + averageScore: 60 + nextAiringEpisode: null + - id: 179297 + idMal: 59265 + title: + romaji: 'Magic Maker: Isekai Mahou no Tsukurikata' + english: 'Magic Maker: How to Make Magic in Another World' + native: マジック・メイカー ~異世界魔法の作り方~ + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: WINTER + seasonYear: 2025 + startDate: + year: 2025 + month: 1 + day: 9 + endDate: + year: 2025 + month: 3 + day: 27 + averageScore: 66 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/62-2025-spring.yaml b/test/fixtures/anilist/season_matrix/62-2025-spring.yaml new file mode 100644 index 0000000..c4f8e2b --- /dev/null +++ b/test/fixtures/anilist/season_matrix/62-2025-spring.yaml @@ -0,0 +1,679 @@ +metadata: + captured_at: '2026-05-11T11:35:13Z' + label: 2025-spring + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2025 + season: SPRING + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:13 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Content-Security-Policy-Report-Only: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '11' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Nel: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 149118 + idMal: 51818 + title: + romaji: 'Enen no Shouboutai: San no Shou' + english: Fire Force Season 3 + native: 炎炎ノ消防隊 参ノ章 + synonyms: + - Enen no Shouboutai 3rd Season + - หน่วยผจญคนไฟลุก ภาค 3 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 5 + endDate: + year: 2025 + month: 6 + day: 21 + averageScore: 78 + nextAiringEpisode: null + - id: 167336 + idMal: 56038 + title: + romaji: Lazarus + english: LAZARUS + native: ラザロ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 6 + endDate: + year: 2025 + month: 6 + day: 29 + averageScore: 70 + nextAiringEpisode: null + - id: 178680 + idMal: 59160 + title: + romaji: WIND BREAKER Season 2 + english: WIND BREAKER Season 2 + native: WIND BREAKER Season 2 + synonyms: + - WB 2 + - ウィンブレ2 + - ' WBK 2' + - ウィンドブレイカー Season 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 4 + endDate: + year: 2025 + month: 6 + day: 20 + averageScore: 77 + nextAiringEpisode: null + - id: 180367 + idMal: 59597 + title: + romaji: Witch Watch + english: WITCH WATCH + native: ウィッチウォッチ + synonyms: [] + status: FINISHED + format: TV + episodes: 25 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 6 + endDate: + year: 2025 + month: 10 + day: 5 + averageScore: 72 + nextAiringEpisode: null + - id: 183161 + idMal: 60146 + title: + romaji: Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru? + english: The Beginning After the End + native: '最強の王様、二度目の人生は 何をする? ' + synonyms: + - TBATE + - 終末起點 + - Начало после конца + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 3 + endDate: + year: 2025 + month: 6 + day: 19 + averageScore: 59 + nextAiringEpisode: null + - id: 179955 + idMal: 59452 + title: + romaji: Katainaka no Ossan, Kensei ni Naru + english: From Old Country Bumpkin to Master Swordsman + native: 片田舎のおっさん、剣聖になる + synonyms: + - 'Katainaka no Ossan, Kensei ni Naru: Tada no Inaka no Kenjutsu Shihan Datta noni, Taisei Shita Deshitachi ga Ore + wo Hanattekurenai Ken' + - 片田舎のおっさん、剣聖になる ~ただの田舎の剣術師範だったのに、大成した弟子たちが俺を放ってくれない件~ + - Wieśniak mistrzem miecza + - De Caipira a Mestre Espadachim + - Pria Tua Pedesaan Menjadi Pendekar Pedang Elite + - Daripada Orang Kampung Biasa kepada Mahaguru Pedang + - Vom Landei zum Schwertheiligen + - De campesino cuarentón a espadachín legendario + - Da campagnolo stagionato a gran maestro di spada + - Sıradan Bir Köylü Hünerli Bir Kılıç Ustası Oluyor + - من ريفي كهل إلى معلّم مبارزة + - सामान्य ग्रामवासी से अज़ीम तलवारबाज़ तक + - ปรมาจารย์ดาบชั้นเซียนมาตบเกรียนถึงเมืองกรุง + - 乡下大叔成为剑圣 + - 鄉下大叔成為劍聖 + - 촌구석 아저씨, 검성이 되다 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 5 + endDate: + year: 2025 + month: 6 + day: 22 + averageScore: 69 + nextAiringEpisode: null + - id: 185736 + idMal: 60593 + title: + romaji: 'Vigilante: Boku no Hero Academia ILLEGALS' + english: 'My Hero Academia: Vigilantes' + native: ヴィジランテ -僕のヒーローアカデミア ILLEGALS- + synonyms: + - MHA Vigilantes + - BNHA Vigilantes + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 7 + endDate: + year: 2025 + month: 6 + day: 30 + averageScore: 76 + nextAiringEpisode: null + - id: 175872 + idMal: 58359 + title: + romaji: Isshun de Chiryou Shiteita no ni Yakutatazu to Tsuihou Sareta Tensai Chiyushi, Yami Healer Toshite Tanoshiku + Ikiru + english: The Brilliant Healer's New Life in the Shadows + native: 一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる + synonyms: + - 闇ヒーラー + - Cuộc Sống Mới Trong Bóng Tối Của Trị Liệu Sư Tài Ba + - 瞬間治癒卻被當成廢物踢出隊伍的天才治療師,改當無照治療師快樂過活 + - Yami Healer + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 3 + endDate: + year: 2025 + month: 6 + day: 19 + averageScore: 68 + nextAiringEpisode: null + - id: 182814 + idMal: 60083 + title: + romaji: Kowloon Generic Romance + english: KOWLOON GENERIC ROMANCE + native: 九龍ジェネリックロマンス + synonyms: + - 九龍GR + - เกาลูน อุบัติรักปริศนาลับ + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 5 + endDate: + year: 2025 + month: 6 + day: 28 + averageScore: 72 + nextAiringEpisode: null + - id: 153554 + idMal: 52709 + title: + romaji: Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!) + english: Can a Boy-Girl Friendship Survive? + native: 男女の友情は成立する?(いや、 しないっ!!) + synonyms: + - だんじょる + - Danjoru + - Can a Boy and Girl Friendship Hold Up? (No It Can't) + - เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!) + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 4 + endDate: + year: 2025 + month: 6 + day: 20 + averageScore: 65 + nextAiringEpisode: null + - id: 143598 + idMal: 49778 + title: + romaji: Kijin Gentoushou + english: 'Sword of the Demon Hunter: Kijin Gentosho' + native: 鬼人幻燈抄 + synonyms: + - 'Sword of the Demon Hunter: Kijin Gentosho' + - Le memorie del mezzo demone + status: FINISHED + format: TV + episodes: 24 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 3 + day: 31 + endDate: + year: 2025 + month: 9 + day: 30 + averageScore: 70 + nextAiringEpisode: null + - id: 179965 + idMal: 59457 + title: + romaji: Haite Kudasai, Takamine-san + english: Please Put Them On, Takamine-san + native: 履いてください、鷹峰さん + synonyms: + - Let Me Put Your Panties On, Takamine-san + - Please Put These On, Takamine + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 2 + endDate: + year: 2025 + month: 6 + day: 18 + averageScore: 58 + nextAiringEpisode: null + - id: 174802 + idMal: 58131 + title: + romaji: Shiunji-ke no Kodomotachi + english: The Shiunji Family Children + native: 紫雲寺家の子供たち + synonyms: + - รักว้าวุ่นในบ้านชิอุนจิ + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 8 + endDate: + year: 2025 + month: 6 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 143337 + idMal: 50738 + title: + romaji: 'Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita: Sono ni' + english: I've Been Killing Slimes For 300 Years And Maxed Out My Level Season 2 + native: スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~ + synonyms: + - スライム倒して300年、知らないうちにレベルMAXになってました 第2期 + - Slime Taoshite 300-nen, Shiranai Uchi ni Level MAX ni Nattemashita 2nd Season + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 5 + endDate: + year: 2025 + month: 6 + day: 21 + averageScore: 67 + nextAiringEpisode: null + - id: 180516 + idMal: 59636 + title: + romaji: 'Uma Musume: Cinderella Gray' + english: 'Umamusume: Cinderella Gray' + native: ウマ娘 シンデレラグレイ + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 6 + endDate: + year: 2025 + month: 6 + day: 29 + averageScore: 85 + nextAiringEpisode: null + - id: 183133 + idMal: 60140 + title: + romaji: 'Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank + Datta to Iu Yoku Aru Hanashi' + english: The Unaware Atelier Meister + native: 勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話~ + synonyms: + - 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 3 + day: 30 + endDate: + year: 2025 + month: 6 + day: 15 + averageScore: 64 + nextAiringEpisode: null + - id: 181244 + idMal: 59833 + title: + romaji: 'Kono Subarashii Sekai ni Shukufuku wo! 3: BONUS STAGE' + english: KONOSUBA -God's Blessing on This Wonderful World! 3 -BONUS STAGE- + native: この素晴らしい世界に祝福を!3ーBONUS STAGEー + synonyms: + - KONOSUBA -God's blessing on this wonderful world! 3 OVA + - Kono Subarashii Sekai ni Shukufuku wo! 3 OVA + - この素晴らしい世界に祝福を!3 OVA + status: FINISHED + format: OVA + episodes: 2 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 3 + day: 14 + endDate: + year: 2025 + month: 3 + day: 14 + averageScore: 80 + nextAiringEpisode: null + - id: 183274 + idMal: 60154 + title: + romaji: 'Ore wa Seikan Kokka no Akutoku Ryoushu! ' + english: I'm the Evil Lord of an Intergalactic Empire! + native: 俺は星間国家の悪徳領主! + synonyms: + - OreAku + - 我是星際國家的惡德領主! + - Aku Bangsawan Korup di Kekaisaran Antargalaksi! + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 6 + endDate: + year: 2025 + month: 6 + day: 22 + averageScore: 68 + nextAiringEpisode: null + - id: 179694 + idMal: 59360 + title: + romaji: Rock wa Lady no Tashinami Deshite + english: Rock is a Lady’s Modesty + native: ロックは淑女の嗜みでして + synonyms: + - Rock wa Shukujo no Tashinami de shite + status: FINISHED + format: TV + episodes: 13 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 3 + endDate: + year: 2025 + month: 6 + day: 26 + averageScore: 77 + nextAiringEpisode: null + - id: 180675 + idMal: 59675 + title: + romaji: Apocalypse Hotel + english: Apocalypse Hotel + native: アポカリプスホテル + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 9 + endDate: + year: 2025 + month: 6 + day: 25 + averageScore: 80 + nextAiringEpisode: null + - id: 143200 + idMal: 50694 + title: + romaji: Summer Pockets + english: Summer Pockets + native: Summer Pockets + synonyms: + - サマーポケッツ + - Samapoke + - サマポケ + status: FINISHED + format: TV + episodes: 26 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 7 + endDate: + year: 2025 + month: 9 + day: 29 + averageScore: 71 + nextAiringEpisode: null + - id: 185213 + idMal: 60449 + title: + romaji: Kidou Senshi Gundam GQuuuuuuX + english: Mobile Suit Gundam GQuuuuuuX + native: 機動戦士Gundam GQuuuuuuX + synonyms: + - 機動戦士Gundam ジークアクス + - Mobile Suit Gundam GQuuuuuuX -Beginning- + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 9 + endDate: + year: 2025 + month: 6 + day: 25 + averageScore: 68 + nextAiringEpisode: null + - id: 183275 + idMal: 60157 + title: + romaji: Kanpeki Sugite Kawai-ge ga Nai to Konyaku Haki Sareta Seijo wa Ringoku ni Urareru + english: 'The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom' + native: 完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる + synonyms: + - Kanpekiseijo + status: FINISHED + format: ONA + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 3 + endDate: + year: 2025 + month: 6 + day: 19 + averageScore: 72 + nextAiringEpisode: null + - id: 179979 + idMal: 59466 + title: + romaji: Aharen-san wa Hakarenai Season 2 + english: Aharen-san wa Hakarenai Season 2 + native: 阿波連さんははかれない season2 + synonyms: + - Aharen Is Indecipherable 2 + - Aharen Is Unfathomable 2 + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 7 + endDate: + year: 2025 + month: 6 + day: 23 + averageScore: 74 + nextAiringEpisode: null + - id: 178781 + idMal: 59189 + title: + romaji: Sentai Daishikkaku 2nd Season + english: Go! Go! Loser Ranger! Season 2 + native: 戦隊大失格 2nd season + synonyms: + - Ranger Reject + - ขบวนการกำมะลอ + - No Longer Rangers + - 戦隊大失格 2nd シーズン + status: FINISHED + format: TV + episodes: 12 + season: SPRING + seasonYear: 2025 + startDate: + year: 2025 + month: 4 + day: 13 + endDate: + year: 2025 + month: 6 + day: 29 + averageScore: 69 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/63-2025-summer.yaml b/test/fixtures/anilist/season_matrix/63-2025-summer.yaml new file mode 100644 index 0000000..06cd729 --- /dev/null +++ b/test/fixtures/anilist/season_matrix/63-2025-summer.yaml @@ -0,0 +1,673 @@ +metadata: + captured_at: '2026-05-11T11:35:16Z' + label: 2025-summer + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2025 + season: SUMMER + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:15 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '10' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 178025 + idMal: 59062 + title: + romaji: Gachiakuta + english: Gachiakuta + native: ガチアクタ + synonyms: + - Гачиакута + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 12 + day: 21 + averageScore: 82 + nextAiringEpisode: null + - id: 185660 + idMal: 60543 + title: + romaji: Dandadan 2nd Season + english: DAN DA DAN Season 2 + native: ダンダダン 第2期 + synonyms: + - 'Dan Da Dan: Evil Eye' + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 4 + endDate: + year: 2025 + month: 9 + day: 19 + averageScore: 83 + nextAiringEpisode: null + - id: 171627 + idMal: 57555 + title: + romaji: 'Chainsaw Man: Reze-hen' + english: 'Chainsaw Man – The Movie: Reze Arc' + native: チェンソーマン レゼ篇 + synonyms: + - 'CSM: Reze-hen' + - 'CSM – The Movie: Reze Arc' + - 'Chainsaw Man – O Filme: Arco da Reze' + - 'Chainsaw Man - La película: El arco de Reze' + - 'Chainsaw Man - Il Film: La Storia di Reze' + - 'Человек-бензопила: Фильм – История Резе' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 9 + day: 19 + endDate: + year: 2025 + month: 9 + day: 19 + averageScore: 90 + nextAiringEpisode: null + - id: 181444 + idMal: 59845 + title: + romaji: Kaoru Hana wa Rin to Saku + english: The Fragrant Flower Blooms With Dignity + native: 薫る花は凛と咲く + synonyms: + - 'Kaoru i Rin: Rozkwitając z tobą' + - BLOOM + - Благоухающий цветок расцветает с достоинством + - La nobleza de las flores + - Kaoru und Rin + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 9 + day: 28 + averageScore: 85 + nextAiringEpisode: null + - id: 178788 + idMal: 59192 + title: + romaji: 'Kimetsu no Yaiba: Mugenjou-hen Movie 1 - Akaza Sairai' + english: 'Demon Slayer: Kimetsu no Yaiba Infinity Castle' + native: 劇場版「鬼滅の刃」無限城編 第一章 猗窩座再来 + synonyms: + - 'Demon Slayer: Kimetsu no Yaiba La Forteresse infinie' + - 'Demon Slayer: Kimetsu no Yaiba Castelo Infinito' + - 'Клинок, Рассекающий Демонов: Бесконечный Замок' + status: FINISHED + format: MOVIE + episodes: 1 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 18 + endDate: + year: 2025 + month: 7 + day: 18 + averageScore: 86 + nextAiringEpisode: null + - id: 154768 + idMal: 53065 + title: + romaji: Sono Bisque Doll wa Koi wo Suru Season 2 + english: My Dress-Up Darling Season 2 + native: その着せ替え人形は恋をする Season 2 + synonyms: + - Sono Kisekae Ningyou wa Koi wo suru + - หนุ่มเย็บผ้ากับสาวนักคอสเพลย์ ภาค 2 + - その着せ替え人形(ビスク・ドール)は恋をする + - Kisekoi 2 + - Si Boneka Rias Sedang Jatuh Cinta + - 着せ恋 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 9 + day: 21 + averageScore: 82 + nextAiringEpisode: null + - id: 178754 + idMal: 59177 + title: + romaji: Kaijuu 8-gou 2nd Season + english: Kaiju No. 8 Season 2 + native: 怪獣8号 第2期 + synonyms: + - KAIJU No. EIGHT 2 + status: FINISHED + format: TV + episodes: 11 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 19 + endDate: + year: 2025 + month: 9 + day: 27 + averageScore: 78 + nextAiringEpisode: null + - id: 177689 + idMal: 58913 + title: + romaji: Hikaru ga Shinda Natsu + english: The Summer Hikaru Died + native: 光が死んだ夏 + synonyms: + - Lato, kiedy umarł Hikaru + - O Verão em que Hikaru Morreu + - صيف وفاة هيكارو + - 光死去的夏天 + - 光逝去的夏天 + - Der Sommer, in dem Hikaru starb + - L'estate in cui Hikaru è morto + - 히카루가 죽은 여름 + - El verano en que Hikaru murió + - หน้าร้อนที่ฮิคารุจากไป + - Лето, когда погас свет + - Léto, kdy umřel Hikaru + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 9 + day: 28 + averageScore: 80 + nextAiringEpisode: null + - id: 185407 + idMal: 60489 + title: + romaji: Takopii no Genzai + english: Takopi's Original Sin + native: タコピーの原罪 + synonyms: [] + status: FINISHED + format: ONA + episodes: 6 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 6 + day: 28 + endDate: + year: 2025 + month: 8 + day: 2 + averageScore: 86 + nextAiringEpisode: null + - id: 184237 + idMal: 60285 + title: + romaji: SAKAMOTO DAYS Part 2 + english: SAKAMOTO DAYS Part 2 + native: SAKAMOTO DAYS 第2クール + synonyms: + - サカモト デイズ 2クール + status: FINISHED + format: ONA + episodes: 11 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 15 + endDate: + year: 2025 + month: 9 + day: 16 + averageScore: 79 + nextAiringEpisode: null + - id: 175914 + idMal: 58390 + title: + romaji: Yofukashi no Uta Season 2 + english: Call of the Night Season 2 + native: よふかしのうた Season 2 + synonyms: + - Zew nocy. Sezon 2 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 4 + endDate: + year: 2025 + month: 9 + day: 19 + averageScore: 83 + nextAiringEpisode: null + - id: 179966 + idMal: 59459 + title: + romaji: 'Silent Witch: Chinmoku no Majo no Kakushigoto' + english: Secrets of the Silent Witch + native: サイレント・ウィッチ 沈黙の魔女の隠しごと + synonyms: + - 'ไซเลนต์วิตช์: ความลับของแม่มดแห่งความเงียบงัน' + - Silent Witch 沉默魔女的祕密 + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 5 + endDate: + year: 2025 + month: 10 + day: 5 + averageScore: 81 + nextAiringEpisode: null + - id: 186052 + idMal: 60732 + title: + romaji: Mizu Zokusei no Mahou Tsukai + english: The Water Magician + native: 水属性の魔法使い + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 4 + endDate: + year: 2025 + month: 9 + day: 26 + averageScore: 70 + nextAiringEpisode: null + - id: 171046 + idMal: 57433 + title: + romaji: Seishun Buta Yarou wa Santa Claus no Yume wo Minai + english: Rascal Does Not Dream of Santa Claus + native: 青春ブタ野郎はサンタクロースの夢を見ない + synonyms: + - AoButa + - 青ブタ + - 'Rascal Does Not Dream: University Student Arc' + - 'Rascal Series: University Arc' + - 青春ブタ野郎 大学生編 + - 'Seishun Buta Yarou: Daigakusei-hen' + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 5 + endDate: + year: 2025 + month: 9 + day: 27 + averageScore: 82 + nextAiringEpisode: null + - id: 189117 + idMal: 61322 + title: + romaji: 'Dr. STONE: SCIENCE FUTURE Part 2' + english: Dr. STONE SCIENCE FUTURE Cour 2 + native: Dr.STONE SCIENCE FUTURE 2クール + synonyms: + - Dr.STONE Season 4 Part 2 + - ドクターストーン + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 10 + endDate: + year: 2025 + month: 9 + day: 25 + averageScore: 85 + nextAiringEpisode: null + - id: 178869 + idMal: 59205 + title: + romaji: 'Clevatess: Majuu no Ou to Akago to Kabane no Yuusha' + english: Clevatess + native: クレバテス-魔獣の王と赤子と屍の勇者 + synonyms: + - 'Clevatess: The King of Devil Beasts' + - The Baby and the Brave of Undead + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 2 + endDate: + year: 2025 + month: 9 + day: 17 + averageScore: 77 + nextAiringEpisode: null + - id: 177474 + idMal: 58811 + title: + romaji: Tougen Anki + english: TOUGEN ANKI + native: 桃源暗鬼 + synonyms: + - 'Tougen Anki: Legend of the Cursed Blood' + - 'Tougen Anki: Dark Demon of Paradise' + status: FINISHED + format: TV + episodes: 24 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 11 + endDate: + year: 2025 + month: 12 + day: 26 + averageScore: 68 + nextAiringEpisode: null + - id: 173780 + idMal: 57907 + title: + romaji: Tate no Yuusha no Nariagari Season 4 + english: The Rising of the Shield Hero Season 4 + native: 盾の勇者の成り上がり Season 4 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 9 + endDate: + year: 2025 + month: 9 + day: 24 + averageScore: 70 + nextAiringEpisode: null + - id: 182309 + idMal: 59986 + title: + romaji: Grand Blue Season 2 + english: Grand Blue Dreaming Season 2 + native: ぐらんぶる Season 2 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 8 + endDate: + year: 2025 + month: 9 + day: 23 + averageScore: 83 + nextAiringEpisode: null + - id: 178090 + idMal: 59095 + title: + romaji: Tensei Shitara Dai Nana Ouji Datta node, Kimamani Majutsu wo Kiwamemasu 2nd Season + english: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2 + native: 転生したら第七王子だったので、気ままに魔術を極めます 第2期 + synonyms: + - Dainanaoji 2 + - 第七王子 第2期 + - 轉生為第七王子,隨心所欲的魔法學習之路 第二季 + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 10 + endDate: + year: 2025 + month: 9 + day: 25 + averageScore: 76 + nextAiringEpisode: null + - id: 184591 + idMal: 60326 + title: + romaji: Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?) + english: There's No Freaking Way I'll Be Your Lover! Unless… + native: わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?) + synonyms: + - WataNare + - Um Amor Impossível! Ou não... + - ให้เป็นแฟนได้ไง ไม่เอาไม่ไหวหรอก (※หรือว่าจะไหวนะ!?) + - わたなれ + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 8 + endDate: + year: 2025 + month: 9 + day: 23 + averageScore: 76 + nextAiringEpisode: null + - id: 178433 + idMal: 59130 + title: + romaji: 'Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku' + english: 'Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin' + native: 異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~ + synonyms: + - 'Khải huyền dị giới Mynoghra: Chinh phục thế giới từ nền văn minh suy tàn' + - 'Apokalips Dunia Lain Mynoghra: Menaklukkan Dunia Dimulai dari Peradaban Kehancuran' + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 9 + day: 28 + averageScore: 66 + nextAiringEpisode: null + - id: 181841 + idMal: 59898 + title: + romaji: CITY THE ANIMATION + english: CITY THE ANIMATION + native: CITY THE ANIMATION + synonyms: [] + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 7 + endDate: + year: 2025 + month: 9 + day: 29 + averageScore: 80 + nextAiringEpisode: null + - id: 178886 + idMal: 59207 + title: + romaji: Mikadono Sanshimai wa Angai, Choroi. + english: Dealing with Mikadono Sisters Is a Breeze + native: 帝乃三姉妹は案外、チョロい。 + synonyms: + - The Mikadono sisters are surprisingly easy to deal with. + status: FINISHED + format: TV + episodes: 12 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 10 + endDate: + year: 2025 + month: 9 + day: 18 + averageScore: 76 + nextAiringEpisode: null + - id: 180929 + idMal: 59791 + title: + romaji: Ruri no Houseki + english: Ruri Rocks + native: 瑠璃の宝石 + synonyms: + - Introduction to Mineralogy + status: FINISHED + format: TV + episodes: 13 + season: SUMMER + seasonYear: 2025 + startDate: + year: 2025 + month: 7 + day: 6 + endDate: + year: 2025 + month: 9 + day: 28 + averageScore: 79 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/anilist/season_matrix/64-2025-fall.yaml b/test/fixtures/anilist/season_matrix/64-2025-fall.yaml new file mode 100644 index 0000000..fa036bd --- /dev/null +++ b/test/fixtures/anilist/season_matrix/64-2025-fall.yaml @@ -0,0 +1,698 @@ +metadata: + captured_at: '2026-05-11T11:35:18Z' + label: 2025-fall + backend: anilist + path_slug: season_matrix +request: + method: POST + url: https://graphql.anilist.co/ + headers: + Content-Type: application/json + User-Agent: animedex/0.0.1 + params: null + json_body: + query: |- + query ($year: Int, $season: MediaSeason, $perPage: Int) { + Page(page: 1, perPage: $perPage) { + pageInfo { total } + media(seasonYear: $year, season: $season, type: ANIME, sort: POPULARITY_DESC) { + id idMal title { romaji english native } synonyms status format episodes season seasonYear + startDate { year month day } endDate { year month day } + averageScore nextAiringEpisode { airingAt episode timeUntilAiring } + } + } + } + variables: + year: 2025 + season: FALL + perPage: 25 + raw_body_b64: null +response: + status: 200 + headers: + Date: Mon, 11 May 2026 11:35:18 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Server: cloudflare + Nel: + Cache-Control: no-cache, private + X-RateLimit-Limit: '30' + X-RateLimit-Remaining: '9' + Set-Cookie: + X-Frame-Options: SAMEORIGIN + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Access-Control-Allow-Origin: '*' + Access-Control-Allow-Methods: GET, POST, OPTIONS + Access-Control-Allow-Headers: Authorization,Accept,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range + Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Content-Length, Content-Range + cf-cache-status: DYNAMIC + Report-To: + Content-Encoding: gzip + CF-RAY: + body_json: + data: + Page: + pageInfo: + total: 5000 + media: + - id: 153800 + idMal: 52807 + title: + romaji: One Punch Man 3 + english: One-Punch Man Season 3 + native: ワンパンマン3 + synonyms: + - OPM3 + - ون بنش مان 3 + - رجل اللكمة الواحدة 3 + - วันพันช์แมน ซีซั่น 3 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 12 + endDate: + year: 2025 + month: 12 + day: 28 + averageScore: 50 + nextAiringEpisode: null + - id: 177937 + idMal: 59027 + title: + romaji: SPY×FAMILY Season 3 + english: SPY x FAMILY Season 3 + native: SPY×FAMILY Season 3 + synonyms: + - SxF 3 + - スパイファミリー 3 + - SPY×FAMILY ซีซั่น 3 + - SPY×FAMILY 間諜家家酒 Season 3 + - 間諜家家酒 Season 3 + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 27 + averageScore: 82 + nextAiringEpisode: null + - id: 182896 + idMal: 60098 + title: + romaji: Boku no Hero Academia FINAL SEASON + english: My Hero Academia FINAL SEASON + native: 僕のヒーローアカデミア FINAL SEASON + synonyms: + - Boku no Hero Academia 8 + - My Hero Academia 8 + - BNHA 8 + - MHA 8 + - Моя геройская академия 8 + - ヒロアカ 8 + - มายฮีโร่ อคาเดเมีย ไฟนอลซีซัน + status: FINISHED + format: TV + episodes: 11 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 13 + averageScore: 87 + nextAiringEpisode: null + - id: 186794 + idMal: 61026 + title: + romaji: Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga + english: My Status as an Assassin Obviously Exceeds the Hero’s + native: 暗殺者である俺のステータスが 勇者よりも明らかに強いのだが + synonyms: + - Sutetsuyo + - ステつよ + - ถึงเป็นแค่นักฆ่า แต่ดูยังไงข้าก็เทพกว่าผู้กล้าซะอีก + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 7 + endDate: + year: 2025 + month: 12 + day: 23 + averageScore: 66 + nextAiringEpisode: null + - id: 181447 + idMal: 59846 + title: + romaji: Saigo ni Hitotsu dake Onegai Shite mo Yoroshii Deshou ka + english: May I Ask for One Final Thing? + native: 最後にひとつだけお願いしてもよろしいでしょうか + synonyms: + - さいひと + - SaiHito + - สุดท้ายนี้ขอเพียงอย่างหนึ่งได้ไหมคะ + status: FINISHED + format: ONA + episodes: 13 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 20 + averageScore: 73 + nextAiringEpisode: null + - id: 162669 + idMal: 54703 + title: + romaji: Fumetsu no Anata e Season 3 + english: To Your Eternity Season 3 + native: 不滅のあなたへ Season 3 + synonyms: [] + status: FINISHED + format: TV + episodes: 22 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2026 + month: 3 + day: 29 + averageScore: 75 + nextAiringEpisode: null + - id: 184322 + idMal: 60303 + title: + romaji: Shinjiteita Nakamatachi ni Dungeon Okuchi de Korosarekaketa ga Gift "Mugen Gacha" de Level 9999 no Nakamatachi + wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & "Zamaa!" Shimasu! + english: 'My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I''m Out for Revenge!' + native: 信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します! + synonyms: + - 'Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me, But Thanks to the Gift of an Unlimited + Gacha I Got LVL 9999 Friends' + - My Gift LVL 9999 Unlimited Gacha + - ผมถูกเพื่อนที่เชื่อใจหลอกไปฆ่า เลยใช้กิฟต์สุ่มกาชาพาพวกพ้องเลเวล 9999 กลับมาล้างแค้น + - Mugen Gacha + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 3 + endDate: + year: 2025 + month: 12 + day: 19 + averageScore: 70 + nextAiringEpisode: null + - id: 170577 + idMal: 57025 + title: + romaji: Tondemo Skill de Isekai Hourou Meshi 2 + english: Campfire Cooking in Another World with my Absurd Skill Season 2 + native: とんでもスキルで異世界放浪メシ2 + synonyms: + - とんでもスキルで異世界放浪メシ 第2期 + - Tondemo Skill de Isekai Hourou Meshi 2nd Season + - สกิลสุดพิสดารกับมื้ออาหารในต่างโลก ซีซั่น 2 + - Кулинар со странными навыками в параллельном мире 2 + - 擁有超常技能的異世界流浪美食家 S2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 8 + endDate: + year: 2025 + month: 12 + day: 24 + averageScore: 76 + nextAiringEpisode: null + - id: 179302 + idMal: 59267 + title: + romaji: SANDA + english: SANDA + native: SANDA + synonyms: + - サンダ + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 20 + averageScore: 75 + nextAiringEpisode: null + - id: 129195 + idMal: 47158 + title: + romaji: Tomodachi no Imouto ga Ore ni dake Uzai + english: My Friend's Little Sister Has It In for Me! + native: 友達の妹が俺にだけウザい + synonyms: + - ImoUza + - いもウザ + - น้องสาวเพื่อนตัวร้ายกับนายจืดจาง + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 5 + endDate: + year: 2025 + month: 12 + day: 21 + averageScore: 64 + nextAiringEpisode: null + - id: 194884 + idMal: 61903 + title: + romaji: 'Kaguya-sama wa Kokurasetai: Otona e no Kaidan' + english: 'Kaguya-sama: Love Is War -Stairway to Adulthood-' + native: かぐや様は告らせたい 大人への階段 + synonyms: + - 'Kaguya-sama: Love Is War - The Grown-Up Staircase' + status: FINISHED + format: SPECIAL + episodes: 2 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 12 + day: 31 + endDate: + year: 2025 + month: 12 + day: 31 + averageScore: 84 + nextAiringEpisode: null + - id: 198188 + idMal: 62405 + title: + romaji: Fujimoto Tatsuki 17-26 + english: Tatsuki Fujimoto 17-26 + native: 藤本タツキ 17-26 + synonyms: + - A Couple Clucking Chickens Were Still Kickin' in the Schoolyard + - Sasaki Stopped a Bullet + - Love is Blind + - Shikaku + - Mermaid Rhapsody + - Woke-Up-as-a-Girl Syndrome + - Nayuta of the Prophecy + - Sisters + - ' 庭には二羽 ニワトリがいた。' + - 佐々木くんが 銃弾止めた + - 恋は盲目 + - シカク + - 人魚ラプソディ + - '目が覚めたら 女の子になっていた病 ' + - 予言のナユタ + - 妹の姉 + status: FINISHED + format: MOVIE + episodes: 8 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 17 + endDate: + year: 2025 + month: 10 + day: 17 + averageScore: 79 + nextAiringEpisode: null + - id: 180523 + idMal: 59644 + title: + romaji: Yasei no Last Boss ga Arawareta! + english: A Wild Last Boss Appeared! + native: 野生のラスボスが現れた! + synonyms: + - A Wild Last Boss Appears! + - อุบัติการณ์ลาสบอสสุดแกร่ง + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 9 + day: 27 + endDate: + year: 2025 + month: 12 + day: 13 + averageScore: 74 + nextAiringEpisode: null + - id: 180082 + idMal: 59517 + title: + romaji: Chitose-kun wa Ramune Bin no Naka + english: Chitose Is in the Ramune Bottle + native: 千歳くんはラムネ瓶のなか + synonyms: + - Ramune no Bin ni Shizunda Biidama no Tsuki + - ラムネの瓶に沈んだビー玉の月 + - Chiramune + - チラムネ + - ชีวิตรสโซดาของจิโตะเสะคุง + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 7 + endDate: + year: 2026 + month: 3 + day: 31 + averageScore: 72 + nextAiringEpisode: null + - id: 183385 + idMal: 60168 + title: + romaji: Watashi wo Tabetai, Hitodenashi + english: This Monster Wants to Eat Me + native: 私を喰べたい、ひとでなし + synonyms: + - A Monster Wants to Eat Me + - WataTabe + - わたたべ + - หากวันใดใครตนนั้นใคร่กลืนกิน + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 2 + endDate: + year: 2025 + month: 12 + day: 25 + averageScore: 74 + nextAiringEpisode: null + - id: 169969 + idMal: 56854 + title: + romaji: 'Mushoku no Eiyuu: Betsu ni Skill nanka Ira Nakattan Daga' + english: 'Hero Without a Class: Who Even Needs Skills?!' + native: 無職の英雄 別にスキルなんか要らなかったんだが + synonyms: + - The Hero Who Has No Class. I Don't Need Any Skills, It's Okay. The hero who has no class. + - The Unemployed Hero Does Not Need Something Like Skills + - ผู้กล้าไร้อาชีพ + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 9 + day: 24 + endDate: + year: 2025 + month: 12 + day: 10 + averageScore: 62 + nextAiringEpisode: null + - id: 195153 + idMal: 61917 + title: + romaji: Towa no Yuugure + english: Dusk Beyond the End of the World + native: 永久のユウグレ + synonyms: + - ยามอัสดงกัลปาวสาน + - Bersamamu Kala Senjanya Dunia + status: FINISHED + format: TV + episodes: 13 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 9 + day: 26 + endDate: + year: 2025 + month: 12 + day: 19 + averageScore: 64 + nextAiringEpisode: null + - id: 188487 + idMal: 61276 + title: + romaji: Mikata ga Yowa Sugite Hojo Mahou ni Toushite Ita Kyuutei Mahoushi, Tsuihou Sarete Saikyou wo Mezasu + english: The Banished Court Magician Aims to Become the Strongest + native: 味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す + synonyms: + - Story of Lasting Period A Court Magician, Who Was Focused On Supportive Magic Because His Allies Were Too Weak, + Aims To Become The Strongest After Being Banished + - Story of Lasting Period + - Hojo Maho + - จอมเวทสายซัพพอร์ตมันไม่รุ่ง ก็มุ่งสู่จอมเวทสุดแกร่งมันซะเลย + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 20 + averageScore: 63 + nextAiringEpisode: null + - id: 187663 + idMal: 61174 + title: + romaji: Sozai Saishuka no Isekai Ryokouki + english: A Gatherer's Adventure in Isekai + native: 素材採取家の異世界旅行記 + synonyms: + - Material Collector's Another World Travels + status: FINISHED + format: ONA + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 9 + day: 30 + endDate: + year: 2025 + month: 12 + day: 16 + averageScore: 60 + nextAiringEpisode: null + - id: 185731 + idMal: 60564 + title: + romaji: Ranma 1/2 (2024) 2nd Season + english: Ranma1/2 (2024) Season 2 + native: らんま1/2 (2024) 第2期 + synonyms: + - Ranma1/2 – sezon 2 + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 5 + endDate: + year: 2025 + month: 12 + day: 20 + averageScore: 77 + nextAiringEpisode: null + - id: 185801 + idMal: 60619 + title: + romaji: Nageki no Bourei wa Intai Shitai 2 + english: Let This Grieving Soul Retire Cour 2 + native: 嘆きの亡霊は引退したい 2 + synonyms: + - Let This Grieving Soul Retire! Woe is the Weakling Who Leads the Strongest Party 2 + - Let This Grieving Soul Retire Sequel + - 嘆きの亡霊は引退したい 2クール + status: FINISHED + format: ONA + episodes: 11 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 4 + endDate: + year: 2025 + month: 12 + day: 13 + averageScore: 74 + nextAiringEpisode: null + - id: 185575 + idMal: 60531 + title: + romaji: Bukiyou na Senpai. + english: My Awkward Senpai + native: 不器用な先輩。 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 2 + endDate: + year: 2025 + month: 12 + day: 18 + averageScore: 69 + nextAiringEpisode: null + - id: 183965 + idMal: 60254 + title: + romaji: Yano-kun no Futsuu no Hibi + english: Yano-kun's Ordinary Days + native: 矢野くんの普通の日々 + synonyms: [] + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 1 + endDate: + year: 2025 + month: 12 + day: 17 + averageScore: 72 + nextAiringEpisode: null + - id: 195240 + idMal: 61930 + title: + romaji: 'Uma Musume: Cinderella Gray Part 2' + english: 'Umamusume: Cinderella Gray 2nd Cour' + native: ウマ娘 シンデレラグレイ 第2クール + synonyms: + - 'Umamusume: Cinderella Gray Cour 2' + status: FINISHED + format: TV + episodes: 10 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 5 + endDate: + year: 2025 + month: 12 + day: 21 + averageScore: 86 + nextAiringEpisode: null + - id: 173692 + idMal: 57888 + title: + romaji: Chichi wa Eiyuu, Haha wa Seirei, Musume no Watashi wa Tenseisha. + english: Dad is a Hero, Mom is a Spirit, I'm a Reincarnator + native: 父は英雄、母は精霊、娘の私は転生者。 + synonyms: + - Reincarnated as the Daughter of the Legendary Hero and the Queen of Spirits + - My Father is a Hero, my Mother is a Spirit and the Daughter (Me) is a Reincarnator. + - Dad Is a Hero, Mom Is a Spirit, I'm a Reincarnator + - ははのは + - Hahanoha + - ป๊ะป๋าผู้กล้า มาม้าเป็นเทพธิดา ส่วนหนูกลับมาเกิดใหม่พลังแต้มพิกัด + status: FINISHED + format: TV + episodes: 12 + season: FALL + seasonYear: 2025 + startDate: + year: 2025 + month: 10 + day: 5 + endDate: + year: 2025 + month: 12 + day: 21 + averageScore: 66 + nextAiringEpisode: null + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/schedules/03-schedule-sunday.yaml b/test/fixtures/jikan/schedules/03-schedule-sunday.yaml new file mode 100644 index 0000000..50310dc --- /dev/null +++ b/test/fixtures/jikan/schedules/03-schedule-sunday.yaml @@ -0,0 +1,501 @@ +metadata: + captured_at: '2026-05-11T14:01:25Z' + label: schedule-sunday + backend: jikan + path_slug: schedules +request: + method: GET + url: https://api.jikan.moe/v4/schedules?filter=sunday&limit=5 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 14:01:25 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:schedules:de896c98dcdeb4d8c1710c47a8a5801e289037da + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 5 + has_next_page: true + current_page: 1 + items: + count: 5 + total: 24 + per_page: 5 + data: + - mal_id: 63383 + url: https://myanimelist.net/anime/63383/Kumarba_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1148/155162.jpg + small_image_url: https://myanimelist.net/images/anime/1148/155162t.jpg + large_image_url: https://myanimelist.net/images/anime/1148/155162l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1148/155162.webp + small_image_url: https://myanimelist.net/images/anime/1148/155162t.webp + large_image_url: https://myanimelist.net/images/anime/1148/155162l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZMbzOD0r_Us?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kumarba Season 3 + - type: Japanese + title: クマーバ シーズン3 + title: Kumarba Season 3 + title_english: null + title_japanese: クマーバ シーズン3 + title_synonyms: [] + type: TV + source: Other + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 12, 2026 to ? + duration: 1 min + rating: PG - Children + score: null + scored_by: null + rank: 18175 + popularity: 25451 + members: 141 + favorites: 0 + synopsis: Third season of Kumarba. + background: '' + season: spring + year: 2026 + broadcast: + day: Sundays + time: 07:00 + timezone: Asia/Tokyo + string: Sundays at 07:00 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 3281 + type: anime + name: Akatsuki Media Studio + url: https://myanimelist.net/anime/producer/3281/Akatsuki_Media_Studio + genres: [] + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 62083 + url: https://myanimelist.net/anime/62083/Tomica_to_Tom_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1521/151096.jpg + small_image_url: https://myanimelist.net/images/anime/1521/151096t.jpg + large_image_url: https://myanimelist.net/images/anime/1521/151096l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1521/151096.webp + small_image_url: https://myanimelist.net/images/anime/1521/151096t.webp + large_image_url: https://myanimelist.net/images/anime/1521/151096l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Lgj9wFPjmEw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tomica to Tom (TV) + - type: Synonym + title: Tomica and Tom (TV) + - type: Japanese + title: トミカとトム + - type: English + title: Tomica & Tom (TV) + title: Tomica to Tom (TV) + title_english: Tomica & Tom (TV) + title_japanese: トミカとトム + title_synonyms: + - Tomica and Tom (TV) + type: TV + source: Other + episodes: null + status: Currently Airing + airing: true + aired: + from: '2025-07-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 7 + year: 2025 + to: + day: null + month: null + year: null + string: Jul 20, 2025 to ? + duration: 2 min + rating: G - All Ages + score: null + scored_by: null + rank: 21090 + popularity: 23806 + members: 188 + favorites: 0 + synopsis: |- + After you fall asleep or while you're out, what are Tomica and Tom doing? Are they sleeping peacefully in the toy box? Are they just sitting there on the floor? Or maybe... No one knows the story of Tomica and Tom, but today we'll let you in on a special secret. + + (Source: Official site, translated) + background: '' + season: summer + year: 2025 + broadcast: + day: Sundays + time: 08:30 + timezone: Asia/Tokyo + string: Sundays at 08:30 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 3046 + type: anime + name: Tsumupapa + url: https://myanimelist.net/anime/producer/3046/Tsumupapa + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 62933 + url: https://myanimelist.net/anime/62933/Shou_3_Ashibe_QQ_Goma-chan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1899/155697.jpg + small_image_url: https://myanimelist.net/images/anime/1899/155697t.jpg + large_image_url: https://myanimelist.net/images/anime/1899/155697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1899/155697.webp + small_image_url: https://myanimelist.net/images/anime/1899/155697t.webp + large_image_url: https://myanimelist.net/images/anime/1899/155697l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shou 3 Ashibe QQ Goma-chan + - type: Japanese + title: 小3アシベ QQゴマちゃん + title: Shou 3 Ashibe QQ Goma-chan + title_english: null + title_japanese: 小3アシベ QQゴマちゃん + title_synonyms: [] + type: TV + source: Manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 12, 2026 to ? + duration: 2 min + rating: G - All Ages + score: null + scored_by: null + rank: 20444 + popularity: 22155 + members: 263 + favorites: 1 + synopsis: null + background: '' + season: spring + year: 2026 + broadcast: + day: Sundays + time: 07:00 + timezone: Asia/Tokyo + string: Sundays at 07:00 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 276 + type: anime + name: DLE + url: https://myanimelist.net/anime/producer/276/DLE + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 71 + type: anime + name: Pets + url: https://myanimelist.net/anime/genre/71/Pets + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 63352 + url: https://myanimelist.net/anime/63352/Onegai_AiPri + images: + jpg: + image_url: https://myanimelist.net/images/anime/1705/155680.jpg + small_image_url: https://myanimelist.net/images/anime/1705/155680t.jpg + large_image_url: https://myanimelist.net/images/anime/1705/155680l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1705/155680.webp + small_image_url: https://myanimelist.net/images/anime/1705/155680t.webp + large_image_url: https://myanimelist.net/images/anime/1705/155680l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/j5MgjyhhUBc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Onegai AiPri + - type: Synonym + title: +Himitsu no AiPri 3rd Season + - type: Japanese + title: おねがいアイプリ + title: Onegai AiPri + title_english: null + title_japanese: おねがいアイプリ + title_synonyms: + - +Himitsu no AiPri 3rd Season + type: TV + source: Game + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-05T00:00:00+00:00' + to: null + prop: + from: + day: 5 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 5, 2026 to ? + duration: 24 min + rating: PG - Children + score: null + scored_by: null + rank: 19316 + popularity: 15164 + members: 1032 + favorites: 5 + synopsis: "The new anime's story centers on Konomi Inori, a first year middle school student who just moved to the town\ + \ of Onegai. At the town's plaza, Konomi prayed to the goddess statue to give her a chance to be an AiPri. After she\ + \ prayed, she accidentally meets the famous AiPri Aoi Yumemiya and a mysterious talking stuffed toy with her named\ + \ Fortu. It turns out that Fortu is looking for an AiPri who can make their wish come true, and when Konomi opened\ + \ the special mirror pact that Aoi handed her, she gets the AiPri debut that she prayed for. \n\n(Source: ANN)" + background: '' + season: spring + year: 2026 + broadcast: + day: Sundays + time: 09:30 + timezone: Asia/Tokyo + string: Sundays at 09:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 1025 + type: anime + name: Dongwoo A&E + url: https://myanimelist.net/anime/producer/1025/Dongwoo_A_E + genres: [] + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 38776 + url: https://myanimelist.net/anime/38776/Manul_no_Yuube + images: + jpg: + image_url: https://myanimelist.net/images/anime/1980/96936.jpg + small_image_url: https://myanimelist.net/images/anime/1980/96936t.jpg + large_image_url: https://myanimelist.net/images/anime/1980/96936l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1980/96936.webp + small_image_url: https://myanimelist.net/images/anime/1980/96936t.webp + large_image_url: https://myanimelist.net/images/anime/1980/96936l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Manul no Yuube + - type: Japanese + title: マヌ~ルのゆうべ + title: Manul no Yuube + title_english: null + title_japanese: マヌ~ルのゆうべ + title_synonyms: [] + type: TV + source: Web manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2018-11-11T00:00:00+00:00' + to: null + prop: + from: + day: 11 + month: 11 + year: 2018 + to: + day: null + month: null + year: null + string: Nov 11, 2018 to ? + duration: 1 min + rating: PG-13 - Teens 13 or older + score: null + scored_by: null + rank: 18527 + popularity: 14896 + members: 1112 + favorites: 1 + synopsis: Within the nature "Darwin Kita! Kikimono Shin Densetsu" program on NHK1.5 airs the short Manul no Yuube, based + on a web manga/comic of the same name. It following animal characters who visit the bar Manul no Yuube. The bar is + run by the Mama who is a Pallas's cat (Otocolobus manul) and serviced by the hostess Tsunomin who is a Brazilian treehopper + (Bocydium globulare). + background: '' + season: fall + year: 2018 + broadcast: + day: null + time: null + timezone: null + string: Sundays at Unknown + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + licensors: [] + studios: [] + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/schedules/04-schedule-tuesday.yaml b/test/fixtures/jikan/schedules/04-schedule-tuesday.yaml new file mode 100644 index 0000000..3e75540 --- /dev/null +++ b/test/fixtures/jikan/schedules/04-schedule-tuesday.yaml @@ -0,0 +1,622 @@ +metadata: + captured_at: '2026-05-11T14:05:34Z' + label: schedule-tuesday + backend: jikan + path_slug: schedules +request: + method: GET + url: https://api.jikan.moe/v4/schedules?filter=tuesday&limit=5 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 14:05:34 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:schedules:507b5e39c36aa16c745d30e2bacfee6d17157a89 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 2 + has_next_page: true + current_page: 1 + items: + count: 5 + total: 10 + per_page: 5 + data: + - mal_id: 41458 + url: https://myanimelist.net/anime/41458/Origami_Ninja_Koyankinte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1860/106477.jpg + small_image_url: https://myanimelist.net/images/anime/1860/106477t.jpg + large_image_url: https://myanimelist.net/images/anime/1860/106477l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1860/106477.webp + small_image_url: https://myanimelist.net/images/anime/1860/106477t.webp + large_image_url: https://myanimelist.net/images/anime/1860/106477l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Origami Ninja Koyankinte + - type: Synonym + title: Happy Smile ♡ Dream + - type: Japanese + title: おりがみにんじゃ コーヤン@きんてれ + title: Origami Ninja Koyankinte + title_english: null + title_japanese: おりがみにんじゃ コーヤン@きんてれ + title_synonyms: + - Happy Smile ♡ Dream + type: TV + source: Unknown + episodes: null + status: Currently Airing + airing: true + aired: + from: '2020-04-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 4 + year: 2020 + to: + day: null + month: null + year: null + string: Apr 7, 2020 to ? + duration: Unknown + rating: PG - Children + score: null + scored_by: null + rank: 19351 + popularity: 19303 + members: 443 + favorites: 0 + synopsis: Koyan, the Origami Ninja, came to Earth from his planet Origamio to find the magical stone "Hapiton" that + has the ability to make people happy. On the way, he was joined by childhood friend Namin anda new friend Lublin. + One day, a villain called Evilrun appeared. Evilrun has a black hole in her stomach and tries to inhale anything. + Every time an event happens, Evilrun gets in the way of Koyan and friends. But what Evilrun's aim is remains a mystery... + background: '' + season: spring + year: 2020 + broadcast: + day: Tuesdays + time: 07:30 + timezone: Asia/Tokyo + string: Tuesdays at 07:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + licensors: [] + studios: + - mal_id: 324 + type: anime + name: Directions + url: https://myanimelist.net/anime/producer/324/Directions + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 42295 + url: https://myanimelist.net/anime/42295/Fushigi_Dagashiya__Zenitendou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1602/150098.jpg + small_image_url: https://myanimelist.net/images/anime/1602/150098t.jpg + large_image_url: https://myanimelist.net/images/anime/1602/150098l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1602/150098.webp + small_image_url: https://myanimelist.net/images/anime/1602/150098t.webp + large_image_url: https://myanimelist.net/images/anime/1602/150098l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fushigi Dagashiya: Zenitendou' + - type: Japanese + title: ふしぎ駄菓子屋 銭天堂 + title: 'Fushigi Dagashiya: Zenitendou' + title_english: null + title_japanese: ふしぎ駄菓子屋 銭天堂 + title_synonyms: [] + type: TV + source: Novel + episodes: null + status: Currently Airing + airing: true + aired: + from: '2020-09-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 9 + year: 2020 + to: + day: null + month: null + year: null + string: Sep 8, 2020 to ? + duration: 10 min + rating: G - All Ages + score: 6.13 + scored_by: 242 + rank: 10297 + popularity: 12108 + members: 2405 + favorites: 6 + synopsis: |- + Zenitendo is a mysterious candy store that only lucky people can reach. All the candy recommended by Beniko, the owner of the store, is perfectly suited to the buyer's troubles. However, it depends on whether the candy will be used or eaten correctly that it can bring happiness or misfortune. + + (Source: MAL News) + background: '' + season: fall + year: 2020 + broadcast: + day: Tuesdays + time: '18:45' + timezone: Asia/Tokyo + string: Tuesdays at 18:45 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + - mal_id: 36 + type: anime + name: Gallop + url: https://myanimelist.net/anime/producer/36/Gallop + - mal_id: 330 + type: anime + name: Kanaban Graphics + url: https://myanimelist.net/anime/producer/330/Kanaban_Graphics + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 63469 + url: https://myanimelist.net/anime/63469/Hyakki_Yakoushou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1589/156720.jpg + small_image_url: https://myanimelist.net/images/anime/1589/156720t.jpg + large_image_url: https://myanimelist.net/images/anime/1589/156720l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1589/156720.webp + small_image_url: https://myanimelist.net/images/anime/1589/156720t.webp + large_image_url: https://myanimelist.net/images/anime/1589/156720l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hyakki Yakoushou + - type: Synonym + title: Selected Pandemonium + - type: Synonym + title: Hyakki Yakou Shou + - type: Synonym + title: Tales of a Hundred Ghosts Traveling by the Night + - type: Synonym + title: Hyakkiyakou Shou + - type: Japanese + title: 百鬼夜行抄 + - type: English + title: Beyond Twilight + title: Hyakki Yakoushou + title_english: Beyond Twilight + title_japanese: 百鬼夜行抄 + title_synonyms: + - Selected Pandemonium + - Hyakki Yakou Shou + - Tales of a Hundred Ghosts Traveling by the Night + - Hyakkiyakou Shou + type: TV + source: Manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 7, 2026 to ? + duration: 4 min + rating: PG-13 - Teens 13 or older + score: 5.3 + scored_by: 277 + rank: 13805 + popularity: 11076 + members: 3193 + favorites: 4 + synopsis: |- + Ritsu inherited his sixth sense from his grandfather, along with a demon guardian named Blue Storm. Strange things just seem to happen around these two, and it's left to them to get to the bottom of all these mysterious events. Each story is independent but features recurring characters you'll come to know and appreciate as they, each in their own way, try to deal with things 'not of this world'. + + (Source: MU) + background: '' + season: spring + year: 2026 + broadcast: + day: Tuesdays + time: '21:55' + timezone: Asia/Tokyo + string: Tuesdays at 21:55 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 2844 + type: anime + name: Imagica Infos + url: https://myanimelist.net/anime/producer/2844/Imagica_Infos + - mal_id: 2983 + type: anime + name: Imageworks Studio + url: https://myanimelist.net/anime/producer/2983/Imageworks_Studio + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 61013 + url: https://myanimelist.net/anime/61013/Replica_datte_Koi_wo_Suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1148/155671.jpg + small_image_url: https://myanimelist.net/images/anime/1148/155671t.jpg + large_image_url: https://myanimelist.net/images/anime/1148/155671l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1148/155671.webp + small_image_url: https://myanimelist.net/images/anime/1148/155671t.webp + large_image_url: https://myanimelist.net/images/anime/1148/155671l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WsT7OO91jXo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Replica datte, Koi wo Suru. + - type: Synonym + title: Even a Replica Falls in Love + - type: Japanese + title: レプリカだって、恋をする。 + - type: English + title: Even a Replica Can Fall in Love + title: Replica datte, Koi wo Suru. + title_english: Even a Replica Can Fall in Love + title_japanese: レプリカだって、恋をする。 + title_synonyms: + - Even a Replica Falls in Love + type: TV + source: Light novel + episodes: 13 + status: Currently Airing + airing: true + aired: + from: '2026-04-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 7, 2026 to ? + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.03 + scored_by: 2413 + rank: 4980 + popularity: 5365 + members: 21565 + favorites: 36 + synopsis: |- + On days when Sunao is sick, or not feeling like going to school, she is called to take her place. She was born to this world when Sunao wished to have a substitute. No one knows that she exists, but she tries to do her best for Sunao whenever she is called. One day she talks with Sanada, one of her classmates. They become friends, but soon he notices that she is different from the original Sunao...he was the first one who did. She tells him to talk with her only when she has her hair half-up. Sanada does like she told him, and they enjoy their time together. As they become closer, she realizes that she has special feelings toward Sanada. But she doesn't know what will happen to her...if she, a replica, falls in love. + + (Source: Kadokawa) + background: '' + season: spring + year: 2026 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 411 + type: anime + name: KBS + url: https://myanimelist.net/anime/producer/411/KBS + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 2698 + type: anime + name: Voil + url: https://myanimelist.net/anime/producer/2698/Voil + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 61931 + url: https://myanimelist.net/anime/61931/Higeki_no_Genkyou_to_Naru_Saikyou_Gedou_Last_Boss_Joou_wa_Tami_no_Tame_ni_Tsukushimasu_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1916/155657.jpg + small_image_url: https://myanimelist.net/images/anime/1916/155657t.jpg + large_image_url: https://myanimelist.net/images/anime/1916/155657l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1916/155657.webp + small_image_url: https://myanimelist.net/images/anime/1916/155657t.webp + large_image_url: https://myanimelist.net/images/anime/1916/155657l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_chyPhcWf3E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu. Season 2 + - type: Synonym + title: The Most Heretical Last Boss Queen Who Will Become the Source of Tragedy Will Devote Herself for the Sake of + the People + - type: Synonym + title: Lastame + - type: Japanese + title: 悲劇の元凶となる最強外道ラスボス女王は民の為に尽くします。Season2 + - type: English + title: 'The Most Heretical Last Boss Queen: From Villainess to Savior Season 2' + title: Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu. Season 2 + title_english: 'The Most Heretical Last Boss Queen: From Villainess to Savior Season 2' + title_japanese: 悲劇の元凶となる最強外道ラスボス女王は民の為に尽くします。Season2 + title_synonyms: + - The Most Heretical Last Boss Queen Who Will Become the Source of Tragedy Will Devote Herself for the Sake of the People + - Lastame + type: TV + source: Light novel + episodes: 12 + status: Currently Airing + airing: true + aired: + from: '2026-04-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 7, 2026 to ? + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 2798 + rank: 3625 + popularity: 4274 + members: 36482 + favorites: 111 + synopsis: Second season of Higeki no Genkyou to Naru Saikyou Gedou Last Boss Joou wa Tami no Tame ni Tsukushimasu.. + background: '' + season: spring + year: 2026 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 3275 + type: anime + name: FuRyu Pictures + url: https://myanimelist.net/anime/producer/3275/FuRyu_Pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/schedules/05-schedule-wednesday.yaml b/test/fixtures/jikan/schedules/05-schedule-wednesday.yaml new file mode 100644 index 0000000..26d82e4 --- /dev/null +++ b/test/fixtures/jikan/schedules/05-schedule-wednesday.yaml @@ -0,0 +1,607 @@ +metadata: + captured_at: '2026-05-11T14:11:52Z' + label: schedule-wednesday + backend: jikan + path_slug: schedules +request: + method: GET + url: https://api.jikan.moe/v4/schedules?filter=wednesday&limit=5 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 14:11:52 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:schedules:b651256bd5bf2fe8d3d983c2935002960377289a + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 3 + has_next_page: true + current_page: 1 + items: + count: 5 + total: 12 + per_page: 5 + data: + - mal_id: 61765 + url: https://myanimelist.net/anime/61765/Chibi_Godzilla_no_Gyakushuu_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1859/150334.jpg + small_image_url: https://myanimelist.net/images/anime/1859/150334t.jpg + large_image_url: https://myanimelist.net/images/anime/1859/150334l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1859/150334.webp + small_image_url: https://myanimelist.net/images/anime/1859/150334t.webp + large_image_url: https://myanimelist.net/images/anime/1859/150334l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8Q83sSev8fk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chibi Godzilla no Gyakushuu 3rd Season + - type: Japanese + title: ちびゴジラの逆襲(第3期) + title: Chibi Godzilla no Gyakushuu 3rd Season + title_english: null + title_japanese: ちびゴジラの逆襲(第3期) + title_synonyms: [] + type: TV + source: Original + episodes: null + status: Currently Airing + airing: true + aired: + from: '2025-07-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 7 + year: 2025 + to: + day: null + month: null + year: null + string: Jul 2, 2025 to ? + duration: 2 min + rating: G - All Ages + score: null + scored_by: null + rank: 15833 + popularity: 18622 + members: 496 + favorites: 2 + synopsis: null + background: '' + season: summer + year: 2025 + broadcast: + day: Wednesdays + time: 07:05 + timezone: Asia/Tokyo + string: Wednesdays at 07:05 (JST) + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + licensors: [] + studios: + - mal_id: 1229 + type: anime + name: Pie in the sky + url: https://myanimelist.net/anime/producer/1229/Pie_in_the_sky + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 63433 + url: https://myanimelist.net/anime/63433/Daikenja_Riddle_no_Jikan_Gyakkou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1764/155312.jpg + small_image_url: https://myanimelist.net/images/anime/1764/155312t.jpg + large_image_url: https://myanimelist.net/images/anime/1764/155312l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1764/155312.webp + small_image_url: https://myanimelist.net/images/anime/1764/155312t.webp + large_image_url: https://myanimelist.net/images/anime/1764/155312l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CSqd-iXcFVg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Daikenja Riddle no Jikan Gyakkou + - type: Japanese + title: 大賢者リドルの時間逆行 + - type: English + title: The Regression of Great Sage Riddle + title: Daikenja Riddle no Jikan Gyakkou + title_english: The Regression of Great Sage Riddle + title_japanese: 大賢者リドルの時間逆行 + title_synonyms: [] + type: TV + source: Web manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 1, 2026 to ? + duration: 5 min + rating: PG-13 - Teens 13 or older + score: 4.1 + scored_by: 780 + rank: 14893 + popularity: 7458 + members: 9374 + favorites: 25 + synopsis: |- + A young man named Riddle had lost all of his friends—and the entire world—at the hands of a mysterious organization known as the "Box of Malice." Having lost all hope to live, he dwelled in a pit of despair until he has one final revelation. What if... he could return to a time before everything ended? And so, after a thousand years, a deformed Riddle finally manages to reverse time. "I'm going to stop them this time...!" Equipped with a thousand years of knowledge and experience in his young body, the Great Sage Riddle's journey to the past now unfolds! + + (Source: Shogakukan, translated) + background: '' + season: spring + year: 2026 + broadcast: + day: Wednesdays + time: '21:55' + timezone: Asia/Tokyo + string: Wednesdays at 21:55 (JST) + producers: + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 3307 + type: anime + name: Tatooine Sound + url: https://myanimelist.net/anime/producer/3307/Tatooine_Sound + licensors: [] + studios: + - mal_id: 2844 + type: anime + name: Imagica Infos + url: https://myanimelist.net/anime/producer/2844/Imagica_Infos + - mal_id: 2983 + type: anime + name: Imageworks Studio + url: https://myanimelist.net/anime/producer/2983/Imageworks_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 63433 + url: https://myanimelist.net/anime/63433/Daikenja_Riddle_no_Jikan_Gyakkou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1764/155312.jpg + small_image_url: https://myanimelist.net/images/anime/1764/155312t.jpg + large_image_url: https://myanimelist.net/images/anime/1764/155312l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1764/155312.webp + small_image_url: https://myanimelist.net/images/anime/1764/155312t.webp + large_image_url: https://myanimelist.net/images/anime/1764/155312l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CSqd-iXcFVg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Daikenja Riddle no Jikan Gyakkou + - type: Japanese + title: 大賢者リドルの時間逆行 + - type: English + title: The Regression of Great Sage Riddle + title: Daikenja Riddle no Jikan Gyakkou + title_english: The Regression of Great Sage Riddle + title_japanese: 大賢者リドルの時間逆行 + title_synonyms: [] + type: TV + source: Web manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 1, 2026 to ? + duration: 5 min + rating: PG-13 - Teens 13 or older + score: 4.1 + scored_by: 780 + rank: 14893 + popularity: 7458 + members: 9374 + favorites: 25 + synopsis: |- + A young man named Riddle had lost all of his friends—and the entire world—at the hands of a mysterious organization known as the "Box of Malice." Having lost all hope to live, he dwelled in a pit of despair until he has one final revelation. What if... he could return to a time before everything ended? And so, after a thousand years, a deformed Riddle finally manages to reverse time. "I'm going to stop them this time...!" Equipped with a thousand years of knowledge and experience in his young body, the Great Sage Riddle's journey to the past now unfolds! + + (Source: Shogakukan, translated) + background: '' + season: spring + year: 2026 + broadcast: + day: Wednesdays + time: '21:55' + timezone: Asia/Tokyo + string: Wednesdays at 21:55 (JST) + producers: + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 3307 + type: anime + name: Tatooine Sound + url: https://myanimelist.net/anime/producer/3307/Tatooine_Sound + licensors: [] + studios: + - mal_id: 2844 + type: anime + name: Imagica Infos + url: https://myanimelist.net/anime/producer/2844/Imagica_Infos + - mal_id: 2983 + type: anime + name: Imageworks Studio + url: https://myanimelist.net/anime/producer/2983/Imageworks_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 53732 + url: https://myanimelist.net/anime/53732/Hidarikiki_no_Eren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1015/156388.jpg + small_image_url: https://myanimelist.net/images/anime/1015/156388t.jpg + large_image_url: https://myanimelist.net/images/anime/1015/156388l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1015/156388.webp + small_image_url: https://myanimelist.net/images/anime/1015/156388t.webp + large_image_url: https://myanimelist.net/images/anime/1015/156388l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EsQudPqDOQQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hidarikiki no Eren + - type: Japanese + title: 左ききのエレン + - type: English + title: Eren the Southpaw + title: Hidarikiki no Eren + title_english: Eren the Southpaw + title_japanese: 左ききのエレン + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Currently Airing + airing: true + aired: + from: '2026-04-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 8, 2026 to ? + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 6.22 + scored_by: 1777 + rank: 9803 + popularity: 5982 + members: 16257 + favorites: 23 + synopsis: |- + The story follows Koichi Asakura, a designer for an ad agency who works hard but receives no recognition. After being dropped from a project, he visits a place from his past, where he met Eren Yamagishi. Eren, meanwhile, is recognized as a genius left-handed graffiti artist in New York, while enduring the struggles that come from her own path in life. + + (Source: Crunchyroll) + background: '' + season: spring + year: 2026 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 470 + type: anime + name: GAGA + url: https://myanimelist.net/anime/producer/470/GAGA + - mal_id: 1612 + type: anime + name: NADA Holdings + url: https://myanimelist.net/anime/producer/1612/NADA_Holdings + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 1278 + type: anime + name: Signal.MD + url: https://myanimelist.net/anime/producer/1278/SignalMD + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 63014 + url: https://myanimelist.net/anime/63014/Tadaima_Ojamasaremasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1199/156106.jpg + small_image_url: https://myanimelist.net/images/anime/1199/156106t.jpg + large_image_url: https://myanimelist.net/images/anime/1199/156106l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1199/156106.webp + small_image_url: https://myanimelist.net/images/anime/1199/156106t.webp + large_image_url: https://myanimelist.net/images/anime/1199/156106l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UE1NvURy0-E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tadaima, Ojamasaremasu! + - type: Japanese + title: ただいま、おじゃまされます! + - type: English + title: Pardon the Intrusion, I'm Home! + title: Tadaima, Ojamasaremasu! + title_english: Pardon the Intrusion, I'm Home! + title_japanese: ただいま、おじゃまされます! + title_synonyms: [] + type: TV + source: Web manga + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 8, 2026 to ? + duration: 22 min + rating: PG-13 - Teens 13 or older + score: 6.49 + scored_by: 1976 + rank: 8247 + popularity: 5895 + members: 16906 + favorites: 21 + synopsis: |- + So is this what it means to have roommates now?! Office worker Rinko, 24, lives alone and is secretly an otaku. One day, her apartment gets connected to the two neighboring rooms through a "hole" in the wall. + + In the room on the left is a fresh-faced yet mysterious guy who is overly-sweet to Rinko. + + The room on the right is occupied by a guy with violent tendencies who is similarly mysterious... But wait! "I... I think I know him!" Rinko's only source of solitude, her apartment, has been turned upside down. Now, every day is full of heart-pounding surprises! + + (Source: MangaPlaza) + background: '' + season: spring + year: 2026 + broadcast: + day: Wednesdays + time: 01:29 + timezone: Asia/Tokyo + string: Wednesdays at 01:29 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1418 + type: anime + name: Nippon Television Music + url: https://myanimelist.net/anime/producer/1418/Nippon_Television_Music + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 3225 + type: anime + name: NTT Solmare + url: https://myanimelist.net/anime/producer/3225/NTT_Solmare + licensors: [] + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/schedules/06-schedule-thursday.yaml b/test/fixtures/jikan/schedules/06-schedule-thursday.yaml new file mode 100644 index 0000000..3d563cf --- /dev/null +++ b/test/fixtures/jikan/schedules/06-schedule-thursday.yaml @@ -0,0 +1,554 @@ +metadata: + captured_at: '2026-05-11T14:13:40Z' + label: schedule-thursday + backend: jikan + path_slug: schedules +request: + method: GET + url: https://api.jikan.moe/v4/schedules?filter=thursday&limit=5 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 14:13:40 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:schedules:ec1ba88b335b8fb140a1c7d222e273e1c6c81b70 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 3 + has_next_page: true + current_page: 1 + items: + count: 5 + total: 11 + per_page: 5 + data: + - mal_id: 63142 + url: https://myanimelist.net/anime/63142/Metal_Cardbot_W + images: + jpg: + image_url: https://myanimelist.net/images/anime/1332/154527.jpg + small_image_url: https://myanimelist.net/images/anime/1332/154527t.jpg + large_image_url: https://myanimelist.net/images/anime/1332/154527l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1332/154527.webp + small_image_url: https://myanimelist.net/images/anime/1332/154527t.webp + large_image_url: https://myanimelist.net/images/anime/1332/154527l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Metal Cardbot W + - type: Synonym + title: Metal Kadeubos Waildeu + - type: Japanese + title: 메탈카드봇W + - type: English + title: Metal Cardbot W + title: Metal Cardbot W + title_english: Metal Cardbot W + title_japanese: 메탈카드봇W + title_synonyms: + - Metal Kadeubos Waildeu + type: TV + source: Other + episodes: 26 + status: Currently Airing + airing: true + aired: + from: '2025-12-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 12 + year: 2025 + to: + day: null + month: null + year: null + string: Dec 4, 2025 to ? + duration: 12 min per ep + rating: PG - Children + score: null + scored_by: null + rank: 18699 + popularity: 23570 + members: 195 + favorites: 0 + synopsis: |- + Shining friendship and strong claws! Metal Cardbot W! + + After the Speranza incident, humans and Metal Cardbots began to coexist on Earth. + Jun, a boy chosen by the Metal Breath, and his partner Blue Cop discovered a way for humans and Metal Cardbots to coexist. + Then one day, a "Wild Cardbot" appears, holding a 60 million year secret. + + Now, a new encounter begins to shake the world. + + (Source: Metal Cardbot Wiki) + background: '' + season: winter + year: 2026 + broadcast: + day: Thursdays + time: 07:45 + timezone: Asia/Tokyo + string: Thursdays at 07:45 (JST) + producers: [] + licensors: [] + studios: [] + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 63142 + url: https://myanimelist.net/anime/63142/Metal_Cardbot_W + images: + jpg: + image_url: https://myanimelist.net/images/anime/1332/154527.jpg + small_image_url: https://myanimelist.net/images/anime/1332/154527t.jpg + large_image_url: https://myanimelist.net/images/anime/1332/154527l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1332/154527.webp + small_image_url: https://myanimelist.net/images/anime/1332/154527t.webp + large_image_url: https://myanimelist.net/images/anime/1332/154527l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Metal Cardbot W + - type: Synonym + title: Metal Kadeubos Waildeu + - type: Japanese + title: 메탈카드봇W + - type: English + title: Metal Cardbot W + title: Metal Cardbot W + title_english: Metal Cardbot W + title_japanese: 메탈카드봇W + title_synonyms: + - Metal Kadeubos Waildeu + type: TV + source: Other + episodes: 26 + status: Currently Airing + airing: true + aired: + from: '2025-12-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 12 + year: 2025 + to: + day: null + month: null + year: null + string: Dec 4, 2025 to ? + duration: 12 min per ep + rating: PG - Children + score: null + scored_by: null + rank: 18699 + popularity: 23570 + members: 195 + favorites: 0 + synopsis: |- + Shining friendship and strong claws! Metal Cardbot W! + + After the Speranza incident, humans and Metal Cardbots began to coexist on Earth. + Jun, a boy chosen by the Metal Breath, and his partner Blue Cop discovered a way for humans and Metal Cardbots to coexist. + Then one day, a "Wild Cardbot" appears, holding a 60 million year secret. + + Now, a new encounter begins to shake the world. + + (Source: Metal Cardbot Wiki) + background: '' + season: winter + year: 2026 + broadcast: + day: Thursdays + time: 07:45 + timezone: Asia/Tokyo + string: Thursdays at 07:45 (JST) + producers: [] + licensors: [] + studios: [] + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 63276 + url: https://myanimelist.net/anime/63276/Candy_Caries + images: + jpg: + image_url: https://myanimelist.net/images/anime/1780/154909.jpg + small_image_url: https://myanimelist.net/images/anime/1780/154909t.jpg + large_image_url: https://myanimelist.net/images/anime/1780/154909l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1780/154909.webp + small_image_url: https://myanimelist.net/images/anime/1780/154909t.webp + large_image_url: https://myanimelist.net/images/anime/1780/154909l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S4kNFcTJ9Ak?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Candy Caries + - type: Japanese + title: キャンディーカリエス + title: Candy Caries + title_english: null + title_japanese: キャンディーカリエス + title_synonyms: [] + type: TV + source: Original + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 16, 2026 to ? + duration: 3 min + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 112 + rank: 9095 + popularity: 16064 + members: 819 + favorites: 0 + synopsis: |- + Ame is a child who loves sweets. But inside her mouth lived a cavity named Caries! Caries calls Ame "Mama" and acts completely unrestrained, using her teeth as furniture and even taking over her body. Ame is constantly being bossed around by Caries. + + Ame and Caries—a slightly unusual mother-daughter duo!? A slapstick comedy about their chaotic daily lives! + + (Source: Official site, translated) + background: '' + season: spring + year: 2026 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 63276 + url: https://myanimelist.net/anime/63276/Candy_Caries + images: + jpg: + image_url: https://myanimelist.net/images/anime/1780/154909.jpg + small_image_url: https://myanimelist.net/images/anime/1780/154909t.jpg + large_image_url: https://myanimelist.net/images/anime/1780/154909l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1780/154909.webp + small_image_url: https://myanimelist.net/images/anime/1780/154909t.webp + large_image_url: https://myanimelist.net/images/anime/1780/154909l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S4kNFcTJ9Ak?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Candy Caries + - type: Japanese + title: キャンディーカリエス + title: Candy Caries + title_english: null + title_japanese: キャンディーカリエス + title_synonyms: [] + type: TV + source: Original + episodes: null + status: Currently Airing + airing: true + aired: + from: '2026-04-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 16, 2026 to ? + duration: 3 min + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 112 + rank: 9095 + popularity: 16064 + members: 819 + favorites: 0 + synopsis: |- + Ame is a child who loves sweets. But inside her mouth lived a cavity named Caries! Caries calls Ame "Mama" and acts completely unrestrained, using her teeth as furniture and even taking over her body. Ame is constantly being bossed around by Caries. + + Ame and Caries—a slightly unusual mother-daughter duo!? A slapstick comedy about their chaotic daily lives! + + (Source: Official site, translated) + background: '' + season: spring + year: 2026 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 58832 + url: https://myanimelist.net/anime/58832/Kujima_Utaeba_Ie_Hororo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1352/155195.jpg + small_image_url: https://myanimelist.net/images/anime/1352/155195t.jpg + large_image_url: https://myanimelist.net/images/anime/1352/155195l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1352/155195.webp + small_image_url: https://myanimelist.net/images/anime/1352/155195t.webp + large_image_url: https://myanimelist.net/images/anime/1352/155195l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YEZr3NGk7P0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kujima Utaeba Ie Hororo + - type: Japanese + title: クジマ歌えば家ほろろ + - type: English + title: 'Kujima: Why Sing, When You Can Warble?' + title: Kujima Utaeba Ie Hororo + title_english: 'Kujima: Why Sing, When You Can Warble?' + title_japanese: クジマ歌えば家ほろろ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Currently Airing + airing: true + aired: + from: '2026-04-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 4 + year: 2026 + to: + day: null + month: null + year: null + string: Apr 9, 2026 to ? + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.26 + scored_by: 934 + rank: 9587 + popularity: 7567 + members: 9089 + favorites: 8 + synopsis: |- + In the autumn of his first year of middle school, Arata Kouda meets Kujima, a strange creature that sort-of looks like a bird. Since Kujima is hungry, Arata brings it home with him... But because of his older brother who failed his entrance exams, Kujima gets carried away by the situation and ends up freeloading at the Kouda residence. He says it's just until he makes it through winter, and the warmth of spring comes, but... + + (Source: Shogakukan, translated) + background: '' + season: spring + year: 2026 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 3298 + type: anime + name: Alouette Studio + url: https://myanimelist.net/anime/producer/3298/Alouette_Studio + licensors: [] + studios: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/01-2010-winter.yaml b/test/fixtures/jikan/season_matrix/01-2010-winter.yaml new file mode 100644 index 0000000..198848b --- /dev/null +++ b/test/fixtures/jikan/season_matrix/01-2010-winter.yaml @@ -0,0 +1,3185 @@ +metadata: + captured_at: '2026-05-11T11:32:21Z' + label: 2010-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2010/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:21 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:b79e52bb6b461cee05b2182c6edf6026f68776d0 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 9 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 211 + per_page: 25 + data: + - mal_id: 6746 + url: https://myanimelist.net/anime/6746/Durarara + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/71772.jpg + small_image_url: https://myanimelist.net/images/anime/10/71772t.jpg + large_image_url: https://myanimelist.net/images/anime/10/71772l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/71772.webp + small_image_url: https://myanimelist.net/images/anime/10/71772t.webp + large_image_url: https://myanimelist.net/images/anime/10/71772l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/q5qlX4lWst0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Durarara!! + - type: Synonym + title: Dhurarara!! + - type: Synonym + title: Dyurarara!! + - type: Synonym + title: Dulalala!! + - type: Synonym + title: Dullalala!! + - type: Synonym + title: DRRR!! + - type: Japanese + title: デュラララ!! + - type: English + title: Durarara!! + title: Durarara!! + title_english: Durarara!! + title_japanese: デュラララ!! + title_synonyms: + - Dhurarara!! + - Dyurarara!! + - Dulalala!! + - Dullalala!! + - DRRR!! + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-01-08T00:00:00+00:00' + to: '2010-06-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2010 + to: + day: 25 + month: 6 + year: 2010 + string: Jan 8, 2010 to Jun 25, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.09 + scored_by: 691756 + rank: 606 + popularity: 97 + members: 1492043 + favorites: 30459 + synopsis: |- + In Tokyo's downtown district of Ikebukuro, amidst many strange rumors and warnings of anonymous gangs and dangerous occupants, one urban legend stands out above the rest—the existence of a headless "Black Rider" who is said to be seen driving a jet-black motorcycle through the city streets. + + Mikado Ryuugamine has always longed for the excitement of the city life, and an invitation from a childhood friend convinces him to move to Tokyo. Witnessing the Black Rider on his first day in the city, his wishes already seem to have been granted. But as supernatural events begin to occur, ordinary citizens like himself, along with Ikebukuro's most colorful inhabitants, are mixed up in the commotion breaking out in their city. + + [Written by MAL Rewrite] + background: Johnny Yong Bosch and Kari Wahlgren were nominated for the "Best Male Lead Vocal Performance" and the "Best + Female Lead Vocal Performance" awards at the BTVA Anime Voice Acting Awards in 2012 for their performances in Durarara!!. + season: winter + year: 2010 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 6347 + url: https://myanimelist.net/anime/6347/Baka_to_Test_to_Shoukanjuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/50389.jpg + small_image_url: https://myanimelist.net/images/anime/3/50389t.jpg + large_image_url: https://myanimelist.net/images/anime/3/50389l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/50389.webp + small_image_url: https://myanimelist.net/images/anime/3/50389t.webp + large_image_url: https://myanimelist.net/images/anime/3/50389l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OiqsI1rNnGo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Baka to Test to Shoukanjuu + - type: Synonym + title: The Idiot + - type: Synonym + title: the Tests + - type: Synonym + title: and the Summoned Creatures + - type: Synonym + title: Baka to Test to Shokanju + - type: Synonym + title: BakaTest + - type: Japanese + title: バカとテストと召喚獣 + - type: English + title: 'Baka & Test: Summon the Beasts' + - type: German + title: Baka & Test - Summon the Beasts + - type: French + title: Baka & Test - Summon the Beasts + title: Baka to Test to Shoukanjuu + title_english: 'Baka & Test: Summon the Beasts' + title_japanese: バカとテストと召喚獣 + title_synonyms: + - The Idiot + - the Tests + - and the Summoned Creatures + - Baka to Test to Shokanju + - BakaTest + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-01-07T00:00:00+00:00' + to: '2010-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2010 + to: + day: 1 + month: 4 + year: 2010 + string: Jan 7, 2010 to Apr 1, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 360309 + rank: 2231 + popularity: 367 + members: 667868 + favorites: 5830 + synopsis: |- + Fumizuki Academy is not a typical Japanese high school. This unique institution has implemented a new and innovative system to sort its students. At the end of their freshman year, students take a test that divides up the student body. The highest scorers are placed into A class, all the way down until F class, for the lowest of the low. + + Unfortunately for Akihisa Yoshii, his supposedly "great" intellect was not quite enough for such a test, and he is now stuck at the bottom of F class. Naturally, F class has the worst facilities: not only rotten tatami mats and broken tables, but also outdated equipment and worn out furniture. On the bright side, his friend Yuuji Sakamoto is in the same class, and to everyone's surprise, the genius girl Mizuki Himeji has also ended up in the same class due to an unforeseen fever on the day of the test. + + Unsatisfied with their perquisites, F class rallies behind Yuuji, determined to take on the higher-tiered classes in order to seize their perks by using the school's Examinations Summon Battle system. The participants can summon fantasy characters—whose power levels are equal to their student's test scores—in an all-out battle. Will F class be able to rise to the top, or will they live up to everyone's expectations and fail? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2010 + broadcast: + day: Thursdays + time: 02:20 + timezone: Asia/Tokyo + string: Thursdays at 02:20 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 1015 + type: anime + name: T.O Entertainment + url: https://myanimelist.net/anime/producer/1015/TO_Entertainment + - mal_id: 2981 + type: anime + name: Omnibus Promotion + url: https://myanimelist.net/anime/producer/2981/Omnibus_Promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 7311 + url: https://myanimelist.net/anime/7311/Suzumiya_Haruhi_no_Shoushitsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1248/112352.jpg + small_image_url: https://myanimelist.net/images/anime/1248/112352t.jpg + large_image_url: https://myanimelist.net/images/anime/1248/112352l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1248/112352.webp + small_image_url: https://myanimelist.net/images/anime/1248/112352t.webp + large_image_url: https://myanimelist.net/images/anime/1248/112352l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eHKyNQopYXo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Suzumiya Haruhi no Shoushitsu + - type: Synonym + title: The Vanishment of Haruhi Suzumiya + - type: Synonym + title: Suzumiya Haruhi no Syoshitsu + - type: Synonym + title: Haruhi Movie + - type: Japanese + title: 涼宮ハルヒの消失 + - type: English + title: The Disappearance of Haruhi Suzumiya + - type: German + title: Das Verschwinden der Haruhi Suzumiya der Film + - type: French + title: La Disparition de Haruhi Suzumiya la Film + title: Suzumiya Haruhi no Shoushitsu + title_english: The Disappearance of Haruhi Suzumiya + title_japanese: 涼宮ハルヒの消失 + title_synonyms: + - The Vanishment of Haruhi Suzumiya + - Suzumiya Haruhi no Syoshitsu + - Haruhi Movie + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-02-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 2 + year: 2010 + to: + day: null + month: null + year: null + string: Feb 6, 2010 + duration: 2 hr 41 min + rating: PG-13 - Teens 13 or older + score: 8.6 + scored_by: 329686 + rank: 115 + popularity: 377 + members: 649793 + favorites: 14302 + synopsis: |- + On a cold December day, Kyon arrives at school prepared for another outing with his fellow SOS Brigade members. However, much to his surprise, he discovers that almost everything has changed completely: Haruhi Suzumiya and Itsuki Koizumi are nowhere to be found; Mikuru Asahina does not recognize him at all; Yuki Nagato is a regular human; and Ryouko Asakura has mysteriously returned. Although he is no stranger to the supernatural, Kyon is disturbed by this odd turn of events and decides to investigate on his own. + + Finding himself to be the only person that is aware of the previous reality, Kyon is now faced with a difficult choice: to finally live the normal life he has always wanted, or uncover a way to turn back the hands of time and restore his chaotic yet familiar world. + + [Written by MAL Rewrite] + background: Suzumiya Haruhi no Shoushitsu won the Theatrical Film Award at the Animation Kobe Awards in 2010. The film + earned an estimated 200 million yen in its first week of release in Japan; it also placed in the top 10 for Japanese + box office sales in its first weekend. The film was released on Blu-ray and DVD in Japan on December 18, 2010. The + movie was released on the same formats in North America by Bandai Entertainment as The Disappearance of Haruhi Suzumiya + on September 20, 2011. It was later republished by Funimation Entertainment on May 30, 2017. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 233 + type: anime + name: Bandai Entertainment + url: https://myanimelist.net/anime/producer/233/Bandai_Entertainment + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 6594 + url: https://myanimelist.net/anime/6594/Katanagatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1112/119225.jpg + small_image_url: https://myanimelist.net/images/anime/1112/119225t.jpg + large_image_url: https://myanimelist.net/images/anime/1112/119225l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1112/119225.webp + small_image_url: https://myanimelist.net/images/anime/1112/119225t.webp + large_image_url: https://myanimelist.net/images/anime/1112/119225l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/im70BI_Y3Vo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Katanagatari + - type: Synonym + title: Sword Story + - type: Japanese + title: 刀語 + - type: English + title: Katanagatari + title: Katanagatari + title_english: Katanagatari + title_japanese: 刀語 + title_synonyms: + - Sword Story + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-26T00:00:00+00:00' + to: '2010-12-11T00:00:00+00:00' + prop: + from: + day: 26 + month: 1 + year: 2010 + to: + day: 11 + month: 12 + year: 2010 + string: Jan 26, 2010 to Dec 11, 2010 + duration: 49 min per ep + rating: R - 17+ (violence & profanity) + score: 8.29 + scored_by: 224083 + rank: 331 + popularity: 423 + members: 594167 + favorites: 11020 + synopsis: |- + In an Edo-era Japan lush with a variety of sword-fighting styles, Shichika Yasuri practices the most unique one: Kyotouryuu, a technique in which the user's own body is wielded as a blade. The enigmatic seventh head of the Kyotouryuu school, Shichika lives quietly in exile with his sister Nanami until one day—the wildly ambitious strategist Togame barges into their lives. + + Togame brazenly requests that Shichika help in her mission to collect twelve unique swords, known as the "Deviant Blades," for the shogunate. Shichika accepts, interested in the girl herself rather than petty politics, and thus sets out on a journey. Standing in their way are the fierce wielders of these legendary weapons as well as other power-hungry entities who seek to thwart Togame's objective. In order to prevail against their enemies, the duo must become an unbreakable team as they forge ahead on a path of uncertainty and peril. + + [Written by MAL Rewrite] + background: Katanagatari is a complete adaptation of Nisio Isin's light novel series of the same title with each episode + adapting 1 volume. The anime was released monthly, mimicking the release style of the original novels. + season: winter + year: 2010 + broadcast: + day: Tuesdays + time: 01:10 + timezone: Asia/Tokyo + string: Tuesdays at 01:10 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: [] + - mal_id: 6500 + url: https://myanimelist.net/anime/6500/Seikon_no_Qwaser + images: + jpg: + image_url: https://myanimelist.net/images/anime/1212/97589.jpg + small_image_url: https://myanimelist.net/images/anime/1212/97589t.jpg + large_image_url: https://myanimelist.net/images/anime/1212/97589l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1212/97589.webp + small_image_url: https://myanimelist.net/images/anime/1212/97589t.webp + large_image_url: https://myanimelist.net/images/anime/1212/97589l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mr_Sus560xM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seikon no Qwaser + - type: Japanese + title: 聖痕のクェイサー + - type: English + title: The Qwaser of Stigmata + title: Seikon no Qwaser + title_english: The Qwaser of Stigmata + title_japanese: 聖痕のクェイサー + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-01-10T00:00:00+00:00' + to: '2010-06-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2010 + to: + day: 20 + month: 6 + year: 2010 + string: Jan 10, 2010 to Jun 20, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.31 + scored_by: 138601 + rank: 9321 + popularity: 783 + members: 351422 + favorites: 891 + synopsis: |- + When Tomo Yamanobe's father—the former headmaster of Saint Mikhailov Academy—disappeared, he left nothing behind except for a piece of art called the "icon." Soon after his disappearance, rumors of a serial killer attacking female students of the academy began to spread. + + As Tomo and her sister Mafuyu Oribe head home after being tormented at school, Tomo trips over an injured silver-haired boy who abruptly vanishes while being tended to. Mafuyu goes to look for him, only to discover that the church holding the icon is burning down. When she tries to save the painting, the rumored serial killer suddenly attacks her with a mysterious ability to control magnesium. Appearing out of nowhere, the silver-haired boy, who can control iron, rescues Mafuyu. + + Mafuyu finds out that the boy, named Alexander Nikolaevich "Sasha" Hell, is a "qwaser"—a being who is capable of controlling an element through the power of "soma," received through the act of breastfeeding. Confused by the ordeal, Mafuyu attempts to move past it with little luck, as Sasha transfers to her class the next day. What will become of Tomo and Mafuyu's normal school life with the danger of other qwasers looming close to them? + + [Written by MAL Rewrite] + background: Seikon no Qwaser uses content from the first seven volumes of the manga as its source material, but drastically + deviates to create an anime-exclusive finale. It was also heavily censored during its initial broadcast due to an + excessive amount of sexual content. + season: winter + year: 2010 + broadcast: + day: Sundays + time: 03:28 + timezone: Asia/Tokyo + string: Sundays at 03:28 (JST) + producers: + - mal_id: 345 + type: anime + name: TAKI Corporation + url: https://myanimelist.net/anime/producer/345/TAKI_Corporation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7338 + url: https://myanimelist.net/anime/7338/Darker_than_Black__Kuro_no_Keiyakusha_Gaiden + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/17469.jpg + small_image_url: https://myanimelist.net/images/anime/3/17469t.jpg + large_image_url: https://myanimelist.net/images/anime/3/17469l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/17469.webp + small_image_url: https://myanimelist.net/images/anime/3/17469t.webp + large_image_url: https://myanimelist.net/images/anime/3/17469l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Darker than Black: Kuro no Keiyakusha Gaiden' + - type: Synonym + title: 'Darker than Black: Ryuusei no Gemini Specials' + - type: Synonym + title: Darker than BLACK 2 OVA + - type: Synonym + title: DTB + - type: Synonym + title: 'Darker than Black: Ryuusei no Gemini Episode 12' + - type: Japanese + title: Darker than BLACK -黒の契約者 外伝 + - type: English + title: 'Darker Than Black: Gemini of the Meteor OVAs' + title: 'Darker than Black: Kuro no Keiyakusha Gaiden' + title_english: 'Darker Than Black: Gemini of the Meteor OVAs' + title_japanese: Darker than BLACK -黒の契約者 外伝 + title_synonyms: + - 'Darker than Black: Ryuusei no Gemini Specials' + - Darker than BLACK 2 OVA + - DTB + - 'Darker than Black: Ryuusei no Gemini Episode 12' + type: Special + source: Original + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2010-01-27T00:00:00+00:00' + to: '2010-07-21T00:00:00+00:00' + prop: + from: + day: 27 + month: 1 + year: 2010 + to: + day: 21 + month: 7 + year: 2010 + string: Jan 27, 2010 to Jul 21, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.9 + scored_by: 147920 + rank: 933 + popularity: 1045 + members: 269848 + favorites: 850 + synopsis: |- + Fleeing from the consequences of his decision at the Hell's Gate, superpowered Contractor Hei and his companion Yin take refuge in a quiet inn, adopting the guise of a married couple in order to not draw suspicion. In an attempt to recover from recent events, Hei befriends the inn's other guests. He discovers that one of them is a fellow Contractor tasked with killing him. Their resulting encounter spells disaster for both Hei and Yin, who are forced to fight for their lives and grapple with the emotional wounds sustained in their previous life together. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 6324 + url: https://myanimelist.net/anime/6324/Omamori_Himari + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/22525.jpg + small_image_url: https://myanimelist.net/images/anime/11/22525t.jpg + large_image_url: https://myanimelist.net/images/anime/11/22525l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/22525.webp + small_image_url: https://myanimelist.net/images/anime/11/22525t.webp + large_image_url: https://myanimelist.net/images/anime/11/22525l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/d_cVN-72hrY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Omamori Himari + - type: Synonym + title: Protective Charm Himari + - type: Synonym + title: OmaHima + - type: Japanese + title: おまもりひまり + - type: English + title: Omamori Himari + title: Omamori Himari + title_english: Omamori Himari + title_japanese: おまもりひまり + title_synonyms: + - Protective Charm Himari + - OmaHima + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-07T00:00:00+00:00' + to: '2010-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2010 + to: + day: 25 + month: 3 + year: 2010 + string: Jan 7, 2010 to Mar 25, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.82 + scored_by: 125093 + rank: 6180 + popularity: 1111 + members: 253940 + favorites: 784 + synopsis: |- + After the death of his parents, Yuuto Amakawa lives a pretty ordinary life in the city. The only problem he has to worry about while attending school alongside Rinko, his next-door neighbor, is his cat allergies. That all changes on his sixteenth birthday, when an Ayakashi—a supernatural creature—attacks him for the sins of his ancestors. Luckily, he is saved by Himari, a mysterious cat-woman with a sword, who explains that Yuuto is the scion of a family of demon-slayers, and she is there to protect him now that the charm that kept him hidden from the supernatural forces of the world has lost its power. + + Omamori Himari chronicles Yuuto's dealings with the various forces of the supernatural world, as well as the growing number of women that show up on his doorstep, each with their own dark desires. Will Yuuto be able to adjust to his new "exciting" environment? Or will the ghost of his (ancestor's) past catch up with him? + background: Omamori Himari takes from the first five volumes of its source material with some noticeable deviation in + the content and plot, leading to an anime-exclusive finale. + season: winter + year: 2010 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6747 + url: https://myanimelist.net/anime/6747/Dance_in_the_Vampire_Bund + images: + jpg: + image_url: https://myanimelist.net/images/anime/1062/124809.jpg + small_image_url: https://myanimelist.net/images/anime/1062/124809t.jpg + large_image_url: https://myanimelist.net/images/anime/1062/124809l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1062/124809.webp + small_image_url: https://myanimelist.net/images/anime/1062/124809t.webp + large_image_url: https://myanimelist.net/images/anime/1062/124809l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dance in the Vampire Bund + - type: Japanese + title: ダンスインザヴァンパイアバンド + - type: English + title: Dance in the Vampire Bund + - type: Spanish + title: Bailando con Vampiros + - type: French + title: Dance in The Vampire Bund + title: Dance in the Vampire Bund + title_english: Dance in the Vampire Bund + title_japanese: ダンスインザヴァンパイアバンド + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-07T00:00:00+00:00' + to: '2010-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2010 + to: + day: 1 + month: 4 + year: 2010 + string: Jan 7, 2010 to Apr 1, 2010 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.97 + scored_by: 114348 + rank: 5274 + popularity: 1158 + members: 245546 + favorites: 754 + synopsis: |- + On live television, Mina Tepes, the ruler of all vampires, reveals the existence of her species to the world and states her plan to build a sanctuary in Japan for vampires, called the Vampire Bund. Using her family's wealth to pay off the nation's debt, they have agreed to let her build this safe-haven for her fellow creatures of the night. But not everyone is so easily swayed by Mina's influence, as her announcement brings about conflict with humans who believe that the queen's quest for peace is a façade. + + Akira Kaburagi does not believe in vampires and gets uneasy whenever they are brought up, although he has yet to realize why. Apart from suffering a head injury a year ago, he lives on blissfully until he meets Mina. She triggers within him memories of a life he had long forgotten, and he soon begins protecting her without understanding why. But Akira's secret is far stranger than he could have ever thought possible—he discovers that he is a werewolf, sworn from birth to protect the vampire queen, even if it costs him his life. Now, as these two dance a rondo of death in the Vampire Bund, Mina and Akira find out just how deep their bond goes. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2010 + broadcast: + day: Thursdays + time: 09:00 + timezone: Asia/Tokyo + string: Thursdays at 09:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 6922 + url: https://myanimelist.net/anime/6922/Fate_stay_night_Movie__Unlimited_Blade_Works + images: + jpg: + image_url: https://myanimelist.net/images/anime/1889/95111.jpg + small_image_url: https://myanimelist.net/images/anime/1889/95111t.jpg + large_image_url: https://myanimelist.net/images/anime/1889/95111l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1889/95111.webp + small_image_url: https://myanimelist.net/images/anime/1889/95111t.webp + large_image_url: https://myanimelist.net/images/anime/1889/95111l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/scaa8EDoy_E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night Movie: Unlimited Blade Works' + - type: Synonym + title: 'Gekijouban Fate/Stay Night: Unlimited Blade Works' + - type: Synonym + title: Fate/stay night Movie + - type: Synonym + title: Fate/stay night UBW + - type: Japanese + title: 劇場版 Fate/stay night UNLIMITED BLADE WORKS + - type: English + title: 'Fate/stay night: Unlimited Blade Works' + - type: German + title: 'Fate/stay night der Film: Unlimited Blade Works' + - type: Spanish + title: 'Fate stay night la Película: Unlimited Blade Works' + - type: French + title: 'Fate/stay night le Film: Unlimited Blade Works' + title: 'Fate/stay night Movie: Unlimited Blade Works' + title_english: 'Fate/stay night: Unlimited Blade Works' + title_japanese: 劇場版 Fate/stay night UNLIMITED BLADE WORKS + title_synonyms: + - 'Gekijouban Fate/Stay Night: Unlimited Blade Works' + - Fate/stay night Movie + - Fate/stay night UBW + type: Movie + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-01-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 1 + year: 2010 + to: + day: null + month: null + year: null + string: Jan 23, 2010 + duration: 1 hr 45 min + rating: R - 17+ (violence & profanity) + score: 7.41 + scored_by: 130425 + rank: 2659 + popularity: 1159 + members: 245428 + favorites: 926 + synopsis: |- + In Fuyuki City, the Fifth Holy Grail War is about to commence a lengthy battle of blood, death, and misery. High school student Rin Toosaka has trained her entire life for this moment—to become a magus capable of being a Master in the war. Summoning her Servant known as Archer, Rin finally sets foot into the battle. + + Discovering that one of her acquaintances, Shirou Emiya, is drawn into the war as well, Rin offers to form an alliance for the time being. And as the two of them grow closer, Rin begins to learn more about Shirou's fate and ideals. Nevertheless, her goal remains the same: to win the all-powerful relic that can fulfill the wishes of those who are victorious after the war—the Holy Grail. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1490 + type: anime + name: CREi + url: https://myanimelist.net/anime/producer/1490/CREi + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 7148 + url: https://myanimelist.net/anime/7148/Ladies_versus_Butlers + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/75252.jpg + small_image_url: https://myanimelist.net/images/anime/7/75252t.jpg + large_image_url: https://myanimelist.net/images/anime/7/75252l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/75252.webp + small_image_url: https://myanimelist.net/images/anime/7/75252t.webp + large_image_url: https://myanimelist.net/images/anime/7/75252l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ladies versus Butlers! + - type: Synonym + title: Ladies vs. Butlers! + - type: Synonym + title: Redi x Bato + - type: Japanese + title: れでぃ×ばと! + - type: English + title: Ladies versus Butlers! + - type: Spanish + title: Ladies Versus Butlers + title: Ladies versus Butlers! + title_english: Ladies versus Butlers! + title_japanese: れでぃ×ばと! + title_synonyms: + - Ladies vs. Butlers! + - Redi x Bato + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-05T00:00:00+00:00' + to: '2010-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2010 + to: + day: 23 + month: 3 + year: 2010 + string: Jan 5, 2010 to Mar 23, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.54 + scored_by: 115080 + rank: 7928 + popularity: 1192 + members: 237869 + favorites: 319 + synopsis: Hino Akiharu lost his parents when he was small and was adopted into his uncle's family. He didn't want to + be a burden on his uncle's family and decides to enter a free boarding school as a butler, Hakureiryou high school. + However, his delinquent boy-like appearance frightens the girls, who make up the majority of the students. Unable + to get along with the classmates, Akiharu meets his childhood crush Saikyou Tomomi. + background: '' + season: winter + year: 2010 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 789 + type: anime + name: BIGLOBE + url: https://myanimelist.net/anime/producer/789/BIGLOBE + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 6802 + url: https://myanimelist.net/anime/6802/So_Ra_No_Wo_To + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/81654.jpg + small_image_url: https://myanimelist.net/images/anime/7/81654t.jpg + large_image_url: https://myanimelist.net/images/anime/7/81654l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/81654.webp + small_image_url: https://myanimelist.net/images/anime/7/81654t.webp + large_image_url: https://myanimelist.net/images/anime/7/81654l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jYMVU2qvhvE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: So Ra No Wo To + - type: Synonym + title: So-Ra-No-Wo-To + - type: Synonym + title: Soranowoto + - type: Synonym + title: Sora no Woto + - type: Synonym + title: Sora no Oto + - type: Japanese + title: ソ・ラ・ノ・ヲ・ト + - type: English + title: Sound of the Sky + - type: German + title: Sound of the Sky + - type: Spanish + title: Sound of the Sky + - type: French + title: Sound of the Sky + title: So Ra No Wo To + title_english: Sound of the Sky + title_japanese: ソ・ラ・ノ・ヲ・ト + title_synonyms: + - So-Ra-No-Wo-To + - Soranowoto + - Sora no Woto + - Sora no Oto + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-05T00:00:00+00:00' + to: '2010-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2010 + to: + day: 23 + month: 3 + year: 2010 + string: Jan 5, 2010 to Mar 23, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 58818 + rank: 2035 + popularity: 1585 + members: 173762 + favorites: 1533 + synopsis: |- + On the outskirts of the country of Helvetia rests the tranquil town of Seize. Upon its cobbled streets, citizens go about their daily lives, undisturbed by the increasingly tense military relations between Helvetia and the neighboring Roman Empire. + + It is under these circumstances that the 1121st platoon of the Helvetian army, stationed at the Clocktower Fortress in Seize, receives a new recruit in the young and spirited Kanata Sorami. Having joined the military to fulfill her dream of learning to play the bugle, she excitedly accepts the tutelage of the Sergeant Major, Rio Kazumiya, who happens to be a skilled trumpeter. Working alongside them are the aloof mechanic, Noël Kannagi, the feisty gunner, Kureha Suminoya, and the compassionate Captain Felicia Heideman; together, they experience the beauty of life in Seize and the lasting joy of a community that has persevered in spite of the crumbling world around them. + + [Written by MAL Rewrite] + background: Alongside Seikimatsu Occult Gakuin and Senkou no Night Raid, So Ra No Wo To was part of the "Anime no Chikara" + project, a project to create more original anime, not based on any existing media. + season: winter + year: 2010 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 217 + type: anime + name: Nozomi Entertainment + url: https://myanimelist.net/anime/producer/217/Nozomi_Entertainment + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 6862 + url: https://myanimelist.net/anime/6862/K-On__Live_House + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/15892.jpg + small_image_url: https://myanimelist.net/images/anime/9/15892t.jpg + large_image_url: https://myanimelist.net/images/anime/9/15892l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/15892.webp + small_image_url: https://myanimelist.net/images/anime/9/15892t.webp + large_image_url: https://myanimelist.net/images/anime/9/15892l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'K-On!: Live House!' + - type: Synonym + title: K-On! OVA + - type: Synonym + title: Keion OVA + - type: Synonym + title: K-On! Episode 14 + - type: Synonym + title: Keion OVA + - type: Japanese + title: けいおん! ライブハウス! + - type: English + title: K-ON! Live House! + title: 'K-On!: Live House!' + title_english: K-ON! Live House! + title_japanese: けいおん! ライブハウス! + title_synonyms: + - K-On! OVA + - Keion OVA + - K-On! Episode 14 + - Keion OVA + type: Special + source: 4-koma manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-01-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 1 + year: 2010 + to: + day: null + month: null + year: null + string: Jan 19, 2010 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 104953 + rank: 1053 + popularity: 1596 + members: 172830 + favorites: 297 + synopsis: |- + It is almost the end of the year, and Houkago Tea Time has been invited to participate in a live house on New Year's Eve! The iconic band members are Yui Hirasawa, the carefree guitarist who is enthusiastic to play music; Mio Akiyama, the shy bassist who gets embarrassed easily; Tsumugi Kotobuki, the gentle and sweet keyboardist who finds joy in normal activities; Ritsu Tainaka, the extroverted drummer who likes to tease Mio; and Azusa Nakano, the rhythm guitarist who is one year younger than the rest but slightly more mature. + + Performing in the set gives the girls the rare opportunity to meet various people from different bands, including the one that invited them, Love Crysis. Will Houkago Tea Time be able to delight their audiences successfully? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 233 + type: anime + name: Bandai Entertainment + url: https://myanimelist.net/anime/producer/233/Bandai_Entertainment + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 6637 + url: https://myanimelist.net/anime/6637/Higashi_no_Eden_Movie_II__Paradise_Lost + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/26126.jpg + small_image_url: https://myanimelist.net/images/anime/5/26126t.jpg + large_image_url: https://myanimelist.net/images/anime/5/26126l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/26126.webp + small_image_url: https://myanimelist.net/images/anime/5/26126t.webp + large_image_url: https://myanimelist.net/images/anime/5/26126l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NYuooRa9trI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Higashi no Eden Movie II: Paradise Lost' + - type: Synonym + title: 'Higashi no Eden: Gekijouban II Paradise Lost' + - type: Japanese + title: 東のエデン 劇場版II Paradise Lost + - type: English + title: 'Eden of The East the Movie II: Paradise Lost' + - type: German + title: 'Eden of the East: Das Verlorene Paradies' + - type: French + title: 'Eden of the East: Paradise Lost' + title: 'Higashi no Eden Movie II: Paradise Lost' + title_english: 'Eden of The East the Movie II: Paradise Lost' + title_japanese: 東のエデン 劇場版II Paradise Lost + title_synonyms: + - 'Higashi no Eden: Gekijouban II Paradise Lost' + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-03-13T00:00:00+00:00' + to: null + prop: + from: + day: 13 + month: 3 + year: 2010 + to: + day: null + month: null + year: null + string: Mar 13, 2010 + duration: 1 hr 32 min + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 84601 + rank: 2008 + popularity: 1755 + members: 152469 + favorites: 127 + synopsis: |- + As one of the 12 Seleção that needs to save the country in order to win a game, Akira Takizawa decided to become the "King of Japan." With that in mind, after his return from the U.S.A., the remaining Seleção will also need to follow up on their own plans as they strive to outdo each other. + + Saki Morimi and the other members of the "Eden of the East" are under suspicion of being terrorists, but they still do everything they can to help Takizawa reach his goal and unravel the secrets of his past, as the last fight between the Seleção begins. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + - mal_id: 3227 + type: anime + name: Aube + url: https://myanimelist.net/anime/producer/3227/Aube + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 5690 + url: https://myanimelist.net/anime/5690/Nodame_Cantabile_Finale + images: + jpg: + image_url: https://myanimelist.net/images/anime/1084/119096.jpg + small_image_url: https://myanimelist.net/images/anime/1084/119096t.jpg + large_image_url: https://myanimelist.net/images/anime/1084/119096l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1084/119096.webp + small_image_url: https://myanimelist.net/images/anime/1084/119096t.webp + large_image_url: https://myanimelist.net/images/anime/1084/119096l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nodame Cantabile Finale + - type: Synonym + title: Nodame Cantabile Third Season + - type: Synonym + title: Nodame Cantabile Season 3 + - type: Japanese + title: のだめカンタービレ フィナーレ + title: Nodame Cantabile Finale + title_english: null + title_japanese: のだめカンタービレ フィナーレ + title_synonyms: + - Nodame Cantabile Third Season + - Nodame Cantabile Season 3 + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2010-01-15T00:00:00+00:00' + to: '2010-03-26T00:00:00+00:00' + prop: + from: + day: 15 + month: 1 + year: 2010 + to: + day: 26 + month: 3 + year: 2010 + string: Jan 15, 2010 to Mar 26, 2010 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.23 + scored_by: 72260 + rank: 412 + popularity: 1953 + members: 133748 + favorites: 418 + synopsis: "Shinichi Chiaki is quickly making a name for himself as the principal conductor of the revitalized Roux-Marlet\ + \ Orchestra, and Megumi \"Nodame\" Noda has made leaps and bounds as a pianist at the Conservatoire de Paris. However,\ + \ tensions mount between the two as Nodame feels left behind by Chiaki's growing success and his close friendship\ + \ with legendary piano prodigy Rui Son. Disregarding her teacher Professor Charles Auclair's advice, Nodame enters\ + \ another piano competition in an attempt to jumpstart her own performance career. \n\nMeanwhile, those around Chiaki\ + \ and Nodame are at their own crossroads. Rui begins to doubt herself after hearing Nodame's playing and being denied\ + \ tutelage from Auclair; Maestro Franz von Stresemann faces the reality of his mortality; pianists Yunlong Li and\ + \ Tatiana Vishneva feverishly prepare for a competition, while the latter also struggles with her growing feelings\ + \ for oboist and fellow student Yasunori Kuroki. \n\nAs Chiaki, Nodame, and their friends continue on their respective\ + \ journeys, they must not only strive to stay true to themselves, but also remember where it all started.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: winter + year: 2010 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 147 + type: anime + name: SKY Perfect Well Think + url: https://myanimelist.net/anime/producer/147/SKY_Perfect_Well_Think + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 7465 + url: https://myanimelist.net/anime/7465/Eve_no_Jikan_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/27711.jpg + small_image_url: https://myanimelist.net/images/anime/9/27711t.jpg + large_image_url: https://myanimelist.net/images/anime/9/27711l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/27711.webp + small_image_url: https://myanimelist.net/images/anime/9/27711t.webp + large_image_url: https://myanimelist.net/images/anime/9/27711l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iVsFcMt_ivI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Eve no Jikan (Movie) + - type: Synonym + title: Eve's Time + - type: Synonym + title: Eve no Jikan 1st Season Complete Edition + - type: Synonym + title: Gekijouban Eve no Jikan + - type: Japanese + title: イヴの時間 + - type: English + title: Time of Eve + - type: German + title: 'Time of Eve: The Movie' + title: Eve no Jikan (Movie) + title_english: Time of Eve + title_japanese: イヴの時間 + title_synonyms: + - Eve's Time + - Eve no Jikan 1st Season Complete Edition + - Gekijouban Eve no Jikan + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-03-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 3 + year: 2010 + to: + day: null + month: null + year: null + string: Mar 6, 2010 + duration: 1 hr 46 min + rating: PG-13 - Teens 13 or older + score: 7.96 + scored_by: 58633 + rank: 819 + popularity: 1975 + members: 131380 + favorites: 597 + synopsis: |- + In the Japan of the future, employing androids for various purposes is nothing out of the ordinary. However, treating androids on the same level as humans is frowned upon, and there is constant paranoia surrounding the possibility of robots defying humans, their masters. Those who appear too trustworthy of their androids are chided and labeled "dori-kei," or "android-holics." + + High school student Rikuo Sakisaka notices when his house droid, Sammy, starts behaving curiously—she has been leaving the house without his instruction. When he inspects the movement logs in her database, a cryptic line grabs his attention: "Are you enjoying the time of EVE?" Accompanied by his friend Masakazu Masaki, Rikuo tracks the whereabouts of his houseroid to a cafe called Time of Eve, where it is forbidden for customers to display prejudice against one another. The cafe, Rikuo realizes, is frequented by both man and machine, with no evidence to tell either apart. + + Each customer—from the cheerful Akiko, to a robot dangerously close to breaking down—has their own story and challenges to overcome. While Rikuo tries to reveal Sammy's intentions, he begins to question the legitimacy of the fear that drives humans to regard androids as nothing more than mere tools. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 324 + type: anime + name: Directions + url: https://myanimelist.net/anime/producer/324/Directions + - mal_id: 325 + type: anime + name: Code + url: https://myanimelist.net/anime/producer/325/Code + licensors: + - mal_id: 310 + type: anime + name: AnimEigo + url: https://myanimelist.net/anime/producer/310/AnimEigo + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + - mal_id: 1467 + type: anime + name: Pied Piper + url: https://myanimelist.net/anime/producer/1467/Pied_Piper + studios: + - mal_id: 84 + type: anime + name: Studio Rikka + url: https://myanimelist.net/anime/producer/84/Studio_Rikka + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 8479 + url: https://myanimelist.net/anime/8479/Hetalia_World_Series + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75792.jpg + small_image_url: https://myanimelist.net/images/anime/9/75792t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75792l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75792.webp + small_image_url: https://myanimelist.net/images/anime/9/75792t.webp + large_image_url: https://myanimelist.net/images/anime/9/75792l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hetalia World Series + - type: Japanese + title: ヘタリア World Series + - type: English + title: Hetalia World Series + title: Hetalia World Series + title_english: Hetalia World Series + title_japanese: ヘタリア World Series + title_synonyms: [] + type: ONA + source: Web manga + episodes: 48 + status: Finished Airing + airing: false + aired: + from: '2010-03-26T00:00:00+00:00' + to: '2011-03-11T00:00:00+00:00' + prop: + from: + day: 26 + month: 3 + year: 2010 + to: + day: 11 + month: 3 + year: 2011 + string: Mar 26, 2010 to Mar 11, 2011 + duration: 5 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 59497 + rank: 2522 + popularity: 2178 + members: 115155 + favorites: 832 + synopsis: |- + The pasta-loving North Italy, stalwart Germany, and timid Japan continue their misadventures through history as they reenact various events leading up to and during the Second World War. This includes the turbulent relationship between Hungary and Prussia, the War of Austrian Succession, Lithuania's early days, and the Invasion of Poland. During such tumultuous times, how will these personified nations work their way through the conflicts? + + [Written by MAL Rewrite] + background: Hetalia World Series was released on DVD by Funimation Entertainment as both separate compilations and as + a complete collection. The complete collection was released on November 5, 2013. The anime has been dubbed in English + and Tagalog. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 6336 + url: https://myanimelist.net/anime/6336/Kidou_Senshi_Gundam_Unicorn + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/50459.jpg + small_image_url: https://myanimelist.net/images/anime/12/50459t.jpg + large_image_url: https://myanimelist.net/images/anime/12/50459l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/50459.webp + small_image_url: https://myanimelist.net/images/anime/12/50459t.webp + large_image_url: https://myanimelist.net/images/anime/12/50459l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/I0J_HTYx31w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kidou Senshi Gundam Unicorn + - type: Synonym + title: Mobile Suit Gundam UC + - type: Japanese + title: 機動戦士ガンダムUC(ユニコーン) + - type: English + title: Mobile Suit Gundam Unicorn + title: Kidou Senshi Gundam Unicorn + title_english: Mobile Suit Gundam Unicorn + title_japanese: 機動戦士ガンダムUC(ユニコーン) + title_synonyms: + - Mobile Suit Gundam UC + type: OVA + source: Novel + episodes: 7 + status: Finished Airing + airing: false + aired: + from: '2010-03-12T00:00:00+00:00' + to: '2014-06-06T00:00:00+00:00' + prop: + from: + day: 12 + month: 3 + year: 2010 + to: + day: 6 + month: 6 + year: 2014 + string: Mar 12, 2010 to Jun 6, 2014 + duration: 1 hr 2 min per ep + rating: PG-13 - Teens 13 or older + score: 8.1 + scored_by: 55237 + rank: 596 + popularity: 2272 + members: 107911 + favorites: 1689 + synopsis: |- + In the year Universal Century 0096, three years after Char Aznable's failed attempt to force human migration into space, life continues in the colonies orbiting Earth. One such colony, at Side 4, is home to Banagher Links, a 16-year-old who lives a quiet life among his classmates. + + Audrey Burne, the last descendant of a great tyrannical family, takes it upon herself to steal the key to a mysterious device known as "Laplace's Box." It is said that the Box has the power to shape the course of the universe, and Audrey travels to Side 4 in an attempt to take it from its current holder and keep it from the Sleeves, the surviving remnant of Char Aznable's Neo-Zeon. In her search, she stumbles across Banagher and changes his life forever. + + When Side 4 comes under the attack of the Sleeves and its prolific fighters Marida Cruz and Full Frontal, Banagher takes control of the newly built Gundam Unicorn to defend his friends and protect the fate of humankind. + + [Written by MAL Rewrite] + background: Mobile Suit Gundam Unicorn was awarded the Tokyo Anime Award in the OVA category twice in a row, in 2011 + and 2012. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + licensors: + - mal_id: 217 + type: anime + name: Nozomi Entertainment + url: https://myanimelist.net/anime/producer/217/Nozomi_Entertainment + - mal_id: 233 + type: anime + name: Bandai Entertainment + url: https://myanimelist.net/anime/producer/233/Bandai_Entertainment + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 6574 + url: https://myanimelist.net/anime/6574/Hanamaru_Youchien + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/50395.jpg + small_image_url: https://myanimelist.net/images/anime/3/50395t.jpg + large_image_url: https://myanimelist.net/images/anime/3/50395l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/50395.webp + small_image_url: https://myanimelist.net/images/anime/3/50395t.webp + large_image_url: https://myanimelist.net/images/anime/3/50395l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Jj6K3M9Guhk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hanamaru Youchien + - type: Japanese + title: はなまる幼稚園 + - type: English + title: Hanamaru Kindergarten + - type: Spanish + title: Hanamaru Kindergarten + title: Hanamaru Youchien + title_english: Hanamaru Kindergarten + title_japanese: はなまる幼稚園 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-11T00:00:00+00:00' + to: '2010-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2010 + to: + day: 29 + month: 3 + year: 2010 + string: Jan 11, 2010 to Mar 29, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 41552 + rank: 3479 + popularity: 2338 + members: 103940 + favorites: 267 + synopsis: Anzu goes to a kindergarten with her friends, the shy Koume and the eccentric Hiiragi. Together they try to + make their caretaker, Tsuchida Naozumi, fall in love with Anzu. However, he is clearly more interested in the pretty + Yamamoto Nanako, a fellow kindergarten teacher who supervises the class next door. Even though Anzu tries to convince + Tsuchida to marry her when she grows up by using various methods. Tsuchida, on the other hand, hopes to get a chance + to date Yamamoto, and, if not, to marry her. + background: '' + season: winter + year: 2010 + broadcast: + day: Mondays + time: 01:30 + timezone: Asia/Tokyo + string: Mondays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 2981 + type: anime + name: Omnibus Promotion + url: https://myanimelist.net/anime/producer/2981/Omnibus_Promotion + licensors: [] + studios: + - mal_id: 6 + type: anime + name: Gainax + url: https://myanimelist.net/anime/producer/6/Gainax + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7079 + url: https://myanimelist.net/anime/7079/Ookamikakushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/21784.jpg + small_image_url: https://myanimelist.net/images/anime/10/21784t.jpg + large_image_url: https://myanimelist.net/images/anime/10/21784l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/21784.webp + small_image_url: https://myanimelist.net/images/anime/10/21784t.webp + large_image_url: https://myanimelist.net/images/anime/10/21784l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MpbOTIsQryg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ookamikakushi + - type: Synonym + title: Wolfed Away + - type: Japanese + title: おおかみかくし + - type: English + title: 'Okamikakushi: Masque of the Wolf' + title: Ookamikakushi + title_english: 'Okamikakushi: Masque of the Wolf' + title_japanese: おおかみかくし + title_synonyms: + - Wolfed Away + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-08T00:00:00+00:00' + to: '2010-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2010 + to: + day: 26 + month: 3 + year: 2010 + string: Jan 8, 2010 to Mar 26, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 32145 + rank: 9130 + popularity: 2825 + members: 76763 + favorites: 92 + synopsis: |- + Due to his father's job, 15-year-old Hiroshi Kuzumi and his family move to the mountain town of Jouga. While some teenagers might have to worry about fitting in or feel out of place in a new environment, Hiroshi is welcomed enthusiastically at school by most of his new classmates. In fact, it seems like they just can't get enough of him, and he makes two friends rather quickly: the clingy and overly-affectionate Isuzu Tsumuhana, who is also his neighbor; and Kaname Asagiri, who also recently moved to Jouga. All in all, Hiroshi's new life seems to be quite normal—until people start disappearing. + + Hiroshi is told that the missing townsfolk have simply moved away or suddenly transferred, but he can't shake the feeling that something is wrong. Meanwhile, in the dead of night under a red moon, masked individuals led by a girl with a scythe stalk their prey in the darkened streets of Jouga. Who are they, and are any of the residents safe from their wrath? + + [Written by MAL Rewrite] + background: 'Ookamikakushi is an adaptation of the 2009 PlayStation Portable visual novel of the same name, developed + and published by Konami. The anime was released on DVD and Blu-ray by Sentai Filmworks as Okamikakushi: Masque of + the Wolf on May 28, 2013 and December 16, 2014 respectively.' + season: winter + year: 2010 + broadcast: + day: Fridays + time: 01:59 + timezone: Asia/Tokyo + string: Fridays at 01:59 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 6951 + url: https://myanimelist.net/anime/6951/Yu☆Gi☆Oh_Movie__Chou_Yuugou_Toki_wo_Koeta_Kizuna + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/30085.jpg + small_image_url: https://myanimelist.net/images/anime/3/30085t.jpg + large_image_url: https://myanimelist.net/images/anime/3/30085l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/30085.webp + small_image_url: https://myanimelist.net/images/anime/3/30085t.webp + large_image_url: https://myanimelist.net/images/anime/3/30085l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Yu☆Gi☆Oh! Movie: Chou Yuugou! Toki wo Koeta Kizuna' + - type: Synonym + title: Yugioh + - type: Synonym + title: 'Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space' + - type: Synonym + title: Yu-Gi-Oh! 10th Anniversary Special + - type: Synonym + title: 10th Anniversary Gekijouban + - type: Synonym + title: 'Yu-Gi-Oh! The Movie: Super Fusion! Bonds That Transcend Time' + - type: Synonym + title: Yu-Gi-Oh! Bonds Beyond Time + - type: Japanese + title: 劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~ + - type: English + title: 'Yu-Gi-Oh! 3D: Bonds Beyond Time' + - type: German + title: Yu-Gi-Oh! Bonds Beyond Time + title: 'Yu☆Gi☆Oh! Movie: Chou Yuugou! Toki wo Koeta Kizuna' + title_english: 'Yu-Gi-Oh! 3D: Bonds Beyond Time' + title_japanese: 劇場版 遊☆戯☆王 ~超融合! 時空を越えた絆~ + title_synonyms: + - Yugioh + - 'Yu-Gi-Oh! The Movie: Ultra Fusion! Bonds Over Time and Space' + - Yu-Gi-Oh! 10th Anniversary Special + - 10th Anniversary Gekijouban + - 'Yu-Gi-Oh! The Movie: Super Fusion! Bonds That Transcend Time' + - Yu-Gi-Oh! Bonds Beyond Time + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-01-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 1 + year: 2010 + to: + day: null + month: null + year: null + string: Jan 23, 2010 + duration: 49 min + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 32648 + rank: 4309 + popularity: 3489 + members: 53121 + favorites: 88 + synopsis: |- + While riding with Jack Atlas and Crow Hogan, Yuusei Fudou's Stardust Dragon is captured by Paradox, a mysterious Turbo Duelist from the future, during a Turbo Duel and turned into a Sin Monster. With the help of the Crimson Dragon, Yuusei chases after Paradox as he enters a time slip, ending up in the past. During this time, Paradox duels against Jaden Yuki, who is still able to use the powers of Yubel and The Supreme King. However, by this time Paradox had also captured Cyber End Dragon and Rainbow Dragon and overwhelms Jaden. He is saved thanks to Yuusei and the Crimson Dragon. Jaden informs Yuusei of Paradox's true intentions. By stealing various monsters from across time and turning them dark, he plans to kill Maximillion Pegasus, the creator of Duel Monsters, preventing the game from being created and causing the events of all three series to never happen. + + Yuusei and Jaden agree to pursue Paradox, which leads them to the past and causes a meeting with the King of Games, Yuugi Mutou. However, by the time Yuusei and Jaden arrive, Paradox had already attacked his time, supposedly killing both Pegasus and Yuugi's grandpa, and had also managed to steal Blue-Eyes White Dragon and Red-Eyes Black Dragon. After explaining everything to Yuugi, he agrees to fight with Yuusei and Jaden against Paradox in the ultimate three-on-one duel to free the trapped monsters and save both the world and time itself before it's too late. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + licensors: + - mal_id: 252 + type: anime + name: 4Kids Entertainment + url: https://myanimelist.net/anime/producer/252/4Kids_Entertainment + - mal_id: 1163 + type: anime + name: Flatiron Film Company + url: https://myanimelist.net/anime/producer/1163/Flatiron_Film_Company + studios: + - mal_id: 36 + type: anime + name: Gallop + url: https://myanimelist.net/anime/producer/36/Gallop + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6645 + url: https://myanimelist.net/anime/6645/Chuu_Bra + images: + jpg: + image_url: https://myanimelist.net/images/anime/1130/91352.jpg + small_image_url: https://myanimelist.net/images/anime/1130/91352t.jpg + large_image_url: https://myanimelist.net/images/anime/1130/91352l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1130/91352.webp + small_image_url: https://myanimelist.net/images/anime/1130/91352t.webp + large_image_url: https://myanimelist.net/images/anime/1130/91352l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chuu Bra!! + - type: Synonym + title: Chuu Bra!! + - type: Synonym + title: Chubra!! + - type: Synonym + title: Chuubra!! + - type: Japanese + title: ちゅーぶら!! + - type: English + title: Chu-Bra!! + - type: Spanish + title: Chu-Bra + title: Chuu Bra!! + title_english: Chu-Bra!! + title_japanese: ちゅーぶら!! + title_synonyms: + - Chuu Bra!! + - Chubra!! + - Chuubra!! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-01-04T00:00:00+00:00' + to: '2010-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2010 + to: + day: 22 + month: 3 + year: 2010 + string: Jan 4, 2010 to Mar 22, 2010 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.21 + scored_by: 23107 + rank: 9855 + popularity: 3555 + members: 51238 + favorites: 50 + synopsis: |- + Nayu Hayama makes quite an impression on everyone at Ounan Middle School when she trips while attempting to get on stage to make a speech. The unfortunate incident causes Nayu to flash her unusual underwear in front of the entire freshman class, marking an eventful start to the school year. + + Underwear is Nayu’s passion, and she believes that possessing a good selection of them is important to women of all ages. However, her desire to spread this wisdom to her classmates and teachers is not an easy task to accomplish. Not only does her odd hobby circulate embarrassing and uncomfortable rumors, but it also leads to unwanted attention from the opposite sex. With obstacles to her underwear school revolution beginning to mount, Nayu has her work cut out for her. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2010 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8023 + url: https://myanimelist.net/anime/8023/Toaru_Kagaku_no_Railgun__Motto_Marutto_Railgun + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/21780.jpg + small_image_url: https://myanimelist.net/images/anime/11/21780t.jpg + large_image_url: https://myanimelist.net/images/anime/11/21780l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/21780.webp + small_image_url: https://myanimelist.net/images/anime/11/21780t.webp + large_image_url: https://myanimelist.net/images/anime/11/21780l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Toaru Kagaku no Railgun: Motto Marutto Railgun' + - type: Synonym + title: Toaru Kagaku no Railgun MMR + - type: Synonym + title: Motto Marutto Railgun Specials + - type: Japanese + title: もっとまるっと超電磁砲 + - type: English + title: A Certain Scientific Railgun Specials + title: 'Toaru Kagaku no Railgun: Motto Marutto Railgun' + title_english: A Certain Scientific Railgun Specials + title_japanese: もっとまるっと超電磁砲 + title_synonyms: + - Toaru Kagaku no Railgun MMR + - Motto Marutto Railgun Specials + type: Special + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-01-29T00:00:00+00:00' + to: '2010-05-28T00:00:00+00:00' + prop: + from: + day: 29 + month: 1 + year: 2010 + to: + day: 28 + month: 5 + year: 2010 + string: Jan 29, 2010 to May 28, 2010 + duration: 8 min per ep + rating: PG-13 - Teens 13 or older + score: 6.85 + scored_by: 22658 + rank: 6006 + popularity: 3609 + members: 49902 + favorites: 31 + synopsis: Toaru Kagaku no Railgun specials that were released on the 1st and 5th Blu-ray and DVD volumes. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 7559 + url: https://myanimelist.net/anime/7559/Fate_stay_night_TV_Reproduction + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/33537.jpg + small_image_url: https://myanimelist.net/images/anime/7/33537t.jpg + large_image_url: https://myanimelist.net/images/anime/7/33537l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/33537.webp + small_image_url: https://myanimelist.net/images/anime/7/33537t.webp + large_image_url: https://myanimelist.net/images/anime/7/33537l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/stay night TV Reproduction + - type: Synonym + title: Fate/stay night Recap + - type: Synonym + title: Fate/stay night OVA + - type: Japanese + title: Fate/stay night + title: Fate/stay night TV Reproduction + title_english: null + title_japanese: Fate/stay night + title_synonyms: + - Fate/stay night Recap + - Fate/stay night OVA + type: OVA + source: Visual novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-01-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 1 + year: 2010 + to: + day: null + month: null + year: null + string: Jan 17, 2010 + duration: 59 min per ep + rating: R - 17+ (violence & profanity) + score: 6.84 + scored_by: 18023 + rank: 6021 + popularity: 3811 + members: 45586 + favorites: 54 + synopsis: An edited and condensed version of the TV series. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 10643 + url: https://myanimelist.net/anime/10643/Gintama__Dai_Hanseikai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1725/110927.jpg + small_image_url: https://myanimelist.net/images/anime/1725/110927t.jpg + large_image_url: https://myanimelist.net/images/anime/1725/110927l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1725/110927.webp + small_image_url: https://myanimelist.net/images/anime/1725/110927t.webp + large_image_url: https://myanimelist.net/images/anime/1725/110927l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gintama: Dai Hanseikai' + - type: Synonym + title: Gintama Harumatsuri 2010 + - type: Japanese + title: アニメ銀魂 大反省会 + title: 'Gintama: Dai Hanseikai' + title_english: null + title_japanese: アニメ銀魂 大反省会 + title_synonyms: + - Gintama Harumatsuri 2010 + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-03-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 3 + year: 2010 + to: + day: null + month: null + year: null + string: Mar 25, 2010 + duration: 14 min + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 17531 + rank: 669 + popularity: 4004 + members: 41943 + favorites: 51 + synopsis: Some of the characters get together and talk about "regrets" they have after 4 years of anime Gintama. Soon + they fight over who gets more screen time. Special animation shown at the Gintama Haru Matsuri 2010 live event. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7645 + url: https://myanimelist.net/anime/7645/Heartcatch_Precure + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/25915.jpg + small_image_url: https://myanimelist.net/images/anime/2/25915t.jpg + large_image_url: https://myanimelist.net/images/anime/2/25915l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/25915.webp + small_image_url: https://myanimelist.net/images/anime/2/25915t.webp + large_image_url: https://myanimelist.net/images/anime/2/25915l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Heartcatch Precure! + - type: Synonym + title: Heartcatch Pretty Cure! + - type: Japanese + title: ハートキャッチプリキュア! + title: Heartcatch Precure! + title_english: null + title_japanese: ハートキャッチプリキュア! + title_synonyms: + - Heartcatch Pretty Cure! + type: TV + source: Original + episodes: 49 + status: Finished Airing + airing: false + aired: + from: '2010-02-07T00:00:00+00:00' + to: '2011-01-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 2 + year: 2010 + to: + day: 30 + month: 1 + year: 2011 + string: Feb 7, 2010 to Jan 30, 2011 + duration: 24 min per ep + rating: G - All Ages + score: 7.96 + scored_by: 14232 + rank: 821 + popularity: 4208 + members: 37689 + favorites: 723 + synopsis: |- + Young flower enthusiast Tsubomi Hanasaki is often modest and quiet. But with her family moving to a new town, she aims to reinvent her image at her new school as someone more confident and outgoing. On moving day, she dreams of a mysterious tree in the sky guarded by a warrior named "Cure Moonlight." + + Tsubomi quickly learns that this was no ordinary dream when she encounters two mysterious fairies—Chypre and Coffret—who are being hunted down by a strange woman. When the woman summons a giant monster to attack the city, Tsubomi finds herself transforming into a warrior to fight the enemy! Taking on the alias "Cure Blossom," Tsubomi learns that the woman is part of a villainous group that aims to turn the world into a lifeless desert, with her new duty being to stop it from happening. As Tsubomi continues to battle more monsters and uncover the secrets behind Cure Moonlight, will she find the confidence needed to overcome her timid nature? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2010 + broadcast: + day: Sundays + time: 08:30 + timezone: Asia/Tokyo + string: Sundays at 08:30 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/02-2010-spring.yaml b/test/fixtures/jikan/season_matrix/02-2010-spring.yaml new file mode 100644 index 0000000..9c3f453 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/02-2010-spring.yaml @@ -0,0 +1,3207 @@ +metadata: + captured_at: '2026-05-11T11:32:24Z' + label: 2010-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2010/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:23 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:b7820b6507938b884606c5a55da552c4b7ec3c06 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 7 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 169 + per_page: 25 + data: + - mal_id: 6547 + url: https://myanimelist.net/anime/6547/Angel_Beats + images: + jpg: + image_url: https://myanimelist.net/images/anime/1244/111115.jpg + small_image_url: https://myanimelist.net/images/anime/1244/111115t.jpg + large_image_url: https://myanimelist.net/images/anime/1244/111115l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1244/111115.webp + small_image_url: https://myanimelist.net/images/anime/1244/111115t.webp + large_image_url: https://myanimelist.net/images/anime/1244/111115l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zkY-sG6crKI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Angel Beats! + - type: Japanese + title: Angel Beats!(エンジェルビーツ!) + - type: English + title: Angel Beats! + title: Angel Beats! + title_english: Angel Beats! + title_japanese: Angel Beats!(エンジェルビーツ!) + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-04-03T00:00:00+00:00' + to: '2010-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2010 + to: + day: 26 + month: 6 + year: 2010 + string: Apr 3, 2010 to Jun 26, 2010 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 1348048 + rank: 663 + popularity: 35 + members: 2201291 + favorites: 50573 + synopsis: "Death is one of many mysteries that has left humanity in the dark since the dawn of time. However, the burning\ + \ question of what happens to the soul after one dies is soon answered to 17-year-old Yuzuru Otonashi. Waking up with\ + \ no previous memories in a dimension between life and death, he discovers the unsettling truth of the afterlife.\ + \ \n\nTaking the form of a high school, this bizarre dimension is designated to shelter those who died unwanted deaths.\ + \ Feeling wronged by God during their earthly lives, the school's residents have decided to form the Afterlife Battlefront—a\ + \ rebellious faction determined to oppose their god-like student council president, Kanade \"Angel\" Tachibana. The\ + \ group's leader, Yuri Nakamura, recruits Otonashi in their fight against Angel in order to take control of their\ + \ own lives. However, questioning the morality behind their actions, Otonashi takes a step behind the enemy lines\ + \ to understand the opposing side of their common fate.\n\n[Written by MAL Rewrite]" + background: Angel Beats! is an original anime that was created by screenplay writer Jun Maeda and directed by Seiji + Kishi. A manga adaptation was later released by Jun Maeda and published by ASCII Media Works in Dengeki G's Magazine. + The manga was used as a way to expand on elements of the plot that could not be fitted into the show's original running + time. The show was chosen as a recommended work by the awards jury of the 18th Japan Media Arts Festival in the year + 2014. + season: spring + year: 2010 + broadcast: + day: Saturdays + time: 02:00 + timezone: Asia/Tokyo + string: Saturdays at 02:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 146 + type: anime + name: CBC Television + url: https://myanimelist.net/anime/producer/146/CBC_Television + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 203 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/producer/203/Visual_Arts + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 7054 + url: https://myanimelist.net/anime/7054/Kaichou_wa_Maid-sama + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/25254.jpg + small_image_url: https://myanimelist.net/images/anime/6/25254t.jpg + large_image_url: https://myanimelist.net/images/anime/6/25254l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/25254.webp + small_image_url: https://myanimelist.net/images/anime/6/25254t.webp + large_image_url: https://myanimelist.net/images/anime/6/25254l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaichou wa Maid-sama! + - type: Synonym + title: Class President is a Maid! + - type: Japanese + title: 会長はメイド様! + - type: English + title: Maid Sama! + title: Kaichou wa Maid-sama! + title_english: Maid Sama! + title_japanese: 会長はメイド様! + title_synonyms: + - Class President is a Maid! + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2010-04-02T00:00:00+00:00' + to: '2010-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2010 + to: + day: 24 + month: 9 + year: 2010 + string: Apr 2, 2010 to Sep 24, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.99 + scored_by: 776410 + rank: 765 + popularity: 113 + members: 1339975 + favorites: 23814 + synopsis: "Misaki Ayuzawa is a unique phenomenon within Seika High School. In a predominantly male institution, she\ + \ became the first-ever female student council president through her honesty and diligence. Ever since Misaki got\ + \ promoted to the position, she has been working tirelessly to ensure a better school life for all girls. Despite\ + \ that, Misaki is very strict with the boys, which has earned her the title \"Demon President.\" \n\nOne day, after\ + \ hearing a girl cry in the hallway, Misaki encounters Takumi Usui—the most popular boy in the school—as he rejects\ + \ a love confession. Enraged at what she is seeing, Misaki reprimands him for making the girl cry. However, Usui is\ + \ indifferent and brushes it off as nothing.\n\nUnexpectedly, Misaki soon runs into Usui again, but this time when\ + \ she is working at a maid cafe! Embarrassed that someone has found out about her secret occupation, Misaki promises\ + \ herself not to let Usui destroy her reputation. However, the mysterious boy now begins to visit the same cafe regularly\ + \ to observe and tease Misaki. When push comes to shove, will Usui still be able to keep the president's secret?\n\ + \n[Written by MAL Rewrite]" + background: Kaichou wa Maid-sama! has also received a drama CD in Japan. + season: spring + year: 2010 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 7791 + url: https://myanimelist.net/anime/7791/K-On + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/76121.jpg + small_image_url: https://myanimelist.net/images/anime/12/76121t.jpg + large_image_url: https://myanimelist.net/images/anime/12/76121l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/76121.webp + small_image_url: https://myanimelist.net/images/anime/12/76121t.webp + large_image_url: https://myanimelist.net/images/anime/12/76121l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BfoUo18iw74?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: K-On!! + - type: Synonym + title: Keion 2 + - type: Synonym + title: K-On!! 2nd Season + - type: Japanese + title: けいおん!! + - type: English + title: K-ON! Season 2 + title: K-On!! + title_english: K-ON! Season 2 + title_japanese: けいおん!! + title_synonyms: + - Keion 2 + - K-On!! 2nd Season + type: TV + source: 4-koma manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2010-04-07T00:00:00+00:00' + to: '2010-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2010 + to: + day: 29 + month: 9 + year: 2010 + string: Apr 7, 2010 to Sep 29, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 414592 + rank: 485 + popularity: 307 + members: 754528 + favorites: 15384 + synopsis: "It is the new year, which means that the senior members of the Light Music Club are now third-years, with\ + \ Azusa Nakano being the only second-year. The seniors soon realize that Azusa will be the only member left once they\ + \ graduate and decide to recruit new members. Despite trying many methods of attracting underclassmen—handing out\ + \ fliers, bringing people into the clubroom, and performing at the welcoming ceremony—there are no signs of anyone\ + \ that plans to join.\n\nWhile heading to the clubroom, Azusa overhears Yui Hirasawa say that the club is fine with\ + \ only five people and that they can do many fun things together. Changing her mind, she decides that they do not\ + \ need to recruit any members for the time being. \n\nK-On!! revolves around the members of the Light Music Club as\ + \ they experience their daily high school life. From rehearsing for concerts to just messing around, they are ready\ + \ to make their last year together an exciting one!\n\n[Written by MAL Rewrite]" + background: K-On!! won the Animation Kobe Award in the Television category during the Animation Kobe festival in 2010. + season: spring + year: 2010 + broadcast: + day: Wednesdays + time: 01:25 + timezone: Asia/Tokyo + string: Wednesdays at 01:25 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 7593 + url: https://myanimelist.net/anime/7593/Kiss_x_Sis_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1660/121553.jpg + small_image_url: https://myanimelist.net/images/anime/1660/121553t.jpg + large_image_url: https://myanimelist.net/images/anime/1660/121553l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1660/121553.webp + small_image_url: https://myanimelist.net/images/anime/1660/121553t.webp + large_image_url: https://myanimelist.net/images/anime/1660/121553l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hemw2TBFtP8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kiss x Sis (TV) + - type: Synonym + title: Kiss x Sis (2010) + - type: Synonym + title: Kissxsis + - type: Japanese + title: キスシス + title: Kiss x Sis (TV) + title_english: null + title_japanese: キスシス + title_synonyms: + - Kiss x Sis (2010) + - Kissxsis + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-05T00:00:00+00:00' + to: '2010-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2010 + to: + day: 21 + month: 6 + year: 2010 + string: Apr 5, 2010 to Jun 21, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 352111 + rank: 7853 + popularity: 415 + members: 603283 + favorites: 1843 + synopsis: |- + After Keita Suminoe's mother passed away, his father promptly remarried, introducing two step-sisters into Keita's life: twins Ako and Riko. But since their fateful first encounter, a surge of incestuous love for their younger brother overcame the girls, beginning a lifelong feud for his heart. + + Now at the end of his middle school career, Keita studies fervently to be able to attend Ako and Riko's high school. While doing so however, he must resolve his conflicting feelings for his siblings and either reject or succumb to his sisters' intimate advances. Fortunately—or perhaps unfortunately for Keita—his sisters aren't the only women lusting after him, and there's no telling when the allure of temptation will get the better of the boy as well. + + [Written by MAL Rewrite] + background: Episode 1 was pre-streamed on Bandai Channel on 25 March 2010. + season: spring + year: 2010 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7088 + url: https://myanimelist.net/anime/7088/Ichiban_Ushiro_no_Daimaou + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/75554.jpg + small_image_url: https://myanimelist.net/images/anime/11/75554t.jpg + large_image_url: https://myanimelist.net/images/anime/11/75554l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/75554.webp + small_image_url: https://myanimelist.net/images/anime/11/75554t.webp + large_image_url: https://myanimelist.net/images/anime/11/75554l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ichiban Ushiro no Daimaou + - type: Synonym + title: Ichiban Ushiro no Dai Mao + - type: Japanese + title: いちばんうしろの大魔王 + - type: English + title: Demon King Daimao + - type: German + title: Demon King Daimao + - type: Spanish + title: Demon King Daimao + - type: French + title: Demon King Daimao + title: Ichiban Ushiro no Daimaou + title_english: Demon King Daimao + title_japanese: いちばんうしろの大魔王 + title_synonyms: + - Ichiban Ushiro no Dai Mao + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-03T00:00:00+00:00' + to: '2010-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2010 + to: + day: 19 + month: 6 + year: 2010 + string: Apr 3, 2010 to Jun 19, 2010 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.7 + scored_by: 317459 + rank: 6939 + popularity: 443 + members: 562507 + favorites: 1320 + synopsis: |- + Dreaming of changing the world for good, Akuto Sai transfers to Constant Magic Academy where he befriends a virtuous ninja clan member, Junko Hattori. On the way to the academy, they vow to make the world a better place together; however, the situation suddenly takes a turn for the worse upon his arrival—it is prophesied that he will become the Demon King! + + As word of his destiny spreads, the school begins to fear him, and Junko's trust in him falters. While Akuto is determined to not let his predicted future control his fate, it seems as though everything he says and does only serve to reinforce the fact that he is destined to be the Demon King. Moreover, he is surrounded by a harem of beautiful girls who each have their own plans for him, ranging from bringing him to justice to simply showering him with love. With his newly awakened powers, Akuto must cope with his constantly growing list of misfortunes and fight to prove that his fate is not set in stone. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2010 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 7785 + url: https://myanimelist.net/anime/7785/Yojouhan_Shinwa_Taikei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1633/123689.jpg + small_image_url: https://myanimelist.net/images/anime/1633/123689t.jpg + large_image_url: https://myanimelist.net/images/anime/1633/123689l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1633/123689.webp + small_image_url: https://myanimelist.net/images/anime/1633/123689t.webp + large_image_url: https://myanimelist.net/images/anime/1633/123689l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hzvU8t3TRio?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yojouhan Shinwa Taikei + - type: Synonym + title: Yojo-Han Shinwa Taikei + - type: Synonym + title: Yojou-Han Shinwa Taikei + - type: Synonym + title: Yojohan Shinwa Taikei + - type: Japanese + title: 四畳半神話大系 + - type: English + title: The Tatami Galaxy + - type: German + title: Tatami Galaxy + - type: Spanish + title: The Tatami Galaxy + - type: French + title: The Tatami Galaxy + title: Yojouhan Shinwa Taikei + title_english: The Tatami Galaxy + title_japanese: 四畳半神話大系 + title_synonyms: + - Yojo-Han Shinwa Taikei + - Yojou-Han Shinwa Taikei + - Yojohan Shinwa Taikei + type: TV + source: Novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2010-04-23T00:00:00+00:00' + to: '2010-07-02T00:00:00+00:00' + prop: + from: + day: 23 + month: 4 + year: 2010 + to: + day: 2 + month: 7 + year: 2010 + string: Apr 23, 2010 to Jul 2, 2010 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.55 + scored_by: 157215 + rank: 139 + popularity: 525 + members: 495676 + favorites: 19174 + synopsis: |- + One autumn evening at a mysterious ramen stand behind the Shimogamo Shrine, a lonely third-year college student bumps into a man with an eggplant-shaped head who calls himself a god of matrimony. Meeting this man causes the student to reflect upon his past two years at college—two years bitterly spent trying to break up couples on campus with his only friend Ozu, a ghoulish-looking man seemingly set on making his life as miserable as possible. Resolving to make the most out of the rest of his college life, the student attempts to ask out the unsociable but kind-hearted underclassman Akashi, yet fails to follow through, prompting him to regret not living out his college life differently. As soon as this thought passes through his head, however, he is hurtled through time and space to the beginning of his years at college and given another chance to live his life. + + Surreal, artistic, and mind-bending, Yojouhan Shinwa Taikei chronicles the misadventures of a young man on a journey to make friends, find love, and experience the rose-colored campus life he always dreamed of. + + [Written by MAL Rewrite] + background: Based on the novel by Tomihiko Morimi, published in December 2004. Yojouhan Shinwa Taikei won the grand + prize for the animation category in the Japan Media Arts Festival on December 8, 2010. + season: spring + year: 2010 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 6956 + url: https://myanimelist.net/anime/6956/Working + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75262.jpg + small_image_url: https://myanimelist.net/images/anime/10/75262t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75262l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75262.webp + small_image_url: https://myanimelist.net/images/anime/10/75262t.webp + large_image_url: https://myanimelist.net/images/anime/10/75262l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Working!! + - type: Synonym + title: Working!! + - type: Japanese + title: WORKING [ワーキング]!! + - type: English + title: Wagnaria!! + - type: German + title: Wagnaria!! + - type: French + title: Wagnaria!! + title: Working!! + title_english: Wagnaria!! + title_japanese: WORKING [ワーキング]!! + title_synonyms: + - Working!! + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-04-04T00:00:00+00:00' + to: '2010-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2010 + to: + day: 27 + month: 6 + year: 2010 + string: Apr 4, 2010 to Jun 27, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.64 + scored_by: 214206 + rank: 1678 + popularity: 584 + members: 455338 + favorites: 2538 + synopsis: |- + Due to his love for small, cute things, Souta Takanashi cannot turn childlike Popura Taneshima down when she recruits him to work for Wagnaria, a family restaurant located in Hokkaido. Takanashi takes particular joy in doting on the older Popura, which only fuels her complex over how young she looks. He also quickly learns he must stay on his toes once he meets the rest of his colleagues, including the katana-wielding floor chief Yachiyo Todoroki, the intimidating head chef Jun Satou, the dangerously well-informed and subtly sadistic sous chef Hiroomi Souma, the adamantly lazy manager Kyouko Shirafuji, and the waitress Mahiru Inami who has a "painful" fear of men. + + Powered by an eccentric cast, Working!! is a unique workplace comedy that follows the never-dull happenings within the walls of Wagnaria as Takanashi and his co-workers' quirky personalities combine to create non-stop antics, shenanigans, and hilarity. + + [Written by MAL Rewrite] + background: Episode 1 was pre-aired on March 6th. The normal airing started on April 4th. + season: spring + year: 2010 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 6114 + url: https://myanimelist.net/anime/6114/Rainbow__Nisha_Rokubou_no_Shichinin + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/72697.jpg + small_image_url: https://myanimelist.net/images/anime/9/72697t.jpg + large_image_url: https://myanimelist.net/images/anime/9/72697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/72697.webp + small_image_url: https://myanimelist.net/images/anime/9/72697t.webp + large_image_url: https://myanimelist.net/images/anime/9/72697l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Rainbow: Nisha Rokubou no Shichinin' + - type: Synonym + title: 'Rainbow: Criminal Seven of Compound Two Cell Six' + - type: Japanese + title: RAINBOW 二舎六房の七人 + - type: English + title: Rainbow + title: 'Rainbow: Nisha Rokubou no Shichinin' + title_english: Rainbow + title_japanese: RAINBOW 二舎六房の七人 + title_synonyms: + - 'Rainbow: Criminal Seven of Compound Two Cell Six' + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2010-04-07T00:00:00+00:00' + to: '2010-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2010 + to: + day: 29 + month: 9 + year: 2010 + string: Apr 7, 2010 to Sep 29, 2010 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.46 + scored_by: 167572 + rank: 187 + popularity: 635 + members: 425609 + favorites: 8666 + synopsis: |- + Japan, 1955: Mario Minakami has just arrived at Shounan Special Reform School along with five other teenagers who have been arrested on serious criminal charges. All assigned to the same cell, they meet older inmate Rokurouta Sakuragi—a former boxer—with whom they establish a close bond. Under his guidance, and with the promise that they will meet again on the outside after serving their sentences, the delinquents begin to view their hopeless situation in a better light. + + The seven cellmates struggle together against the brutal suffering and humiliation inflicted upon them by Ishihara, a sadistic guard with a grudge on Rokurouta, and Gisuke Sasaki, a doctor who takes pleasure in violating boys. Facing such hellish conditions, the seven inmates must scrape together all the strength they have to survive until their sentences are up; but even if they do, just what kind of lives are waiting for them on the other side? + + [Written by MAL Rewrite] + background: 'FUNimation Entertainment simulcasted Rainbow: Nisha Rokubou no Shichinin in North America, but didn''t + give it a physical release due to poor streaming numbers. It is no longer streaming via FUNimation.' + season: spring + year: 2010 + broadcast: + day: Wednesdays + time: 00:59 + timezone: Asia/Tokyo + string: Wednesdays at 00:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7817 + url: https://myanimelist.net/anime/7817/B-gata_H-kei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1687/123304.jpg + small_image_url: https://myanimelist.net/images/anime/1687/123304t.jpg + large_image_url: https://myanimelist.net/images/anime/1687/123304l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1687/123304.webp + small_image_url: https://myanimelist.net/images/anime/1687/123304t.webp + large_image_url: https://myanimelist.net/images/anime/1687/123304l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: B-gata H-kei + - type: Japanese + title: B型H系 + - type: English + title: 'Yamada''s First Time: B Gata H Kei' + - type: German + title: B Gata H Kei + - type: Spanish + title: 'Yamada''s First Time: B Gata H Kei' + - type: French + title: 'Yamada''s First Time: B Gata H Kei' + title: B-gata H-kei + title_english: 'Yamada''s First Time: B Gata H Kei' + title_japanese: B型H系 + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-02T00:00:00+00:00' + to: '2010-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2010 + to: + day: 18 + month: 6 + year: 2010 + string: Apr 2, 2010 to Jun 18, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.83 + scored_by: 227745 + rank: 6075 + popularity: 662 + members: 410124 + favorites: 1611 + synopsis: "Most people, including the girl herself, would say that first year high school student Yamada is beautiful\ + \ and perfect. Despite this, she is working towards a peculiar goal: to have sex with one hundred men by the end of\ + \ high school.\n\nTrying to put some sense into her head, Yamada's best friend, Miharu Takeshita, points out a major\ + \ flaw in that plan—she is completely inexperienced with men. However, the reason behind this is that Yamada thinks\ + \ her lady parts look strange and believes others will judge her for it. As a result, Yamada decides that her first\ + \ time must be with a fellow virgin, since they will not hurt or scare her. After a fateful encounter, she sets her\ + \ sights on the shy and average Takashi Kosuda, an aspiring photographer with a heart of gold. \n\nWith contending\ + \ rivals for his affection and her own raging hormones, Yamada must find ways to seduce Kosuda and take his cherry.\ + \ However, as she gets closer to Kosuda, she finds herself increasingly enjoying their time spent together.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: spring + year: 2010 + broadcast: + day: Fridays + time: 01:00 + timezone: Asia/Tokyo + string: Fridays at 01:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 333 + type: anime + name: TYO Animations + url: https://myanimelist.net/anime/producer/333/TYO_Animations + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + - mal_id: 789 + type: anime + name: BIGLOBE + url: https://myanimelist.net/anime/producer/789/BIGLOBE + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1580 + type: anime + name: AG-ONE + url: https://myanimelist.net/anime/producer/1580/AG-ONE + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 34 + type: anime + name: HAL Film Maker + url: https://myanimelist.net/anime/producer/34/HAL_Film_Maker + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7647 + url: https://myanimelist.net/anime/7647/Arakawa_Under_the_Bridge + images: + jpg: + image_url: https://myanimelist.net/images/anime/1019/98620.jpg + small_image_url: https://myanimelist.net/images/anime/1019/98620t.jpg + large_image_url: https://myanimelist.net/images/anime/1019/98620l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1019/98620.webp + small_image_url: https://myanimelist.net/images/anime/1019/98620t.webp + large_image_url: https://myanimelist.net/images/anime/1019/98620l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sqeoy8k6sco?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arakawa Under the Bridge + - type: Japanese + title: 荒川アンダー ザ ブリッジ + - type: English + title: Arakawa Under the Bridge + title: Arakawa Under the Bridge + title_english: Arakawa Under the Bridge + title_japanese: 荒川アンダー ザ ブリッジ + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-04-05T00:00:00+00:00' + to: '2010-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2010 + to: + day: 28 + month: 6 + year: 2010 + string: Apr 5, 2010 to Jun 28, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.56 + scored_by: 160833 + rank: 1960 + popularity: 732 + members: 374243 + favorites: 2483 + synopsis: "Kou Ichinomiya is the son of a wealthy businessman who holds a firm belief in his elite status. As such,\ + \ he is determined to avoid becoming indebted to anyone; but one day, after a run-in with some mischievous kids on\ + \ Arakawa Bridge, he ends up falling into the river running underneath. Luckily for him, a passerby is there to save\ + \ him—but now, he owes his life to this stranger!\n \nAngered by this, Kou insists on paying her back, but this may\ + \ just be the worst deal the arrogant businessman has ever made. The stranger—a stoic, tracksuit-wearing homeless\ + \ girl known only as Nino—lives in a cardboard box under the bridge and wants only one thing: to fall in love. Asking\ + \ Kou to be her boyfriend, he has no choice but to accept, forcing him to move out of his comfortable home and start\ + \ a new life under the bridge!\n\n[Written by MAL Rewrite]" + background: Episode 4 of Arakawa Under the Bridge was longer than the airing block it was scheduled for, so the epilogue + and opening were cut out and streamed online instead. + season: spring + year: 2010 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 4901 + url: https://myanimelist.net/anime/4901/Black_Lagoon__Robertas_Blood_Trail + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/75529.jpg + small_image_url: https://myanimelist.net/images/anime/8/75529t.jpg + large_image_url: https://myanimelist.net/images/anime/8/75529l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/75529.webp + small_image_url: https://myanimelist.net/images/anime/8/75529t.webp + large_image_url: https://myanimelist.net/images/anime/8/75529l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Black Lagoon: Roberta''s Blood Trail' + - type: Synonym + title: Black Lagoon 3 + - type: Japanese + title: BLACK LAGOON Roberta's Blood Trail + - type: English + title: 'Black Lagoon: Roberta''s Blood Trail' + - type: Spanish + title: 'Black Lagoon: Roberta´s Blood Trail' + - type: French + title: 'Black Lagoon : Roberta''s Blood Trail' + title: 'Black Lagoon: Roberta''s Blood Trail' + title_english: 'Black Lagoon: Roberta''s Blood Trail' + title_japanese: BLACK LAGOON Roberta's Blood Trail + title_synonyms: + - Black Lagoon 3 + type: OVA + source: Manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2010-06-27T00:00:00+00:00' + to: '2011-06-22T00:00:00+00:00' + prop: + from: + day: 27 + month: 6 + year: 2010 + to: + day: 22 + month: 6 + year: 2011 + string: Jun 27, 2010 to Jun 22, 2011 + duration: 33 min per ep + rating: R+ - Mild Nudity + score: 8.03 + scored_by: 186764 + rank: 707 + popularity: 848 + members: 331562 + favorites: 1537 + synopsis: |- + Crime never sleeps in Roanapur, and neither does Roberta—a devoted maid and skilled guerilla soldier in service to the Venezuelan Lovelace family. After the assassination of her superior by the US Secret Service, Roberta returns to the city of debauchery in search of vengeance and his killer's head. + + Meanwhile, young Fernando Garcia Lovelace, the new heir to his father's estate, tails Roberta to Thailand alongside his bodyguard, Fabiola Iglesias. He enlists the help of the Lagoon Company, with the objective of deterring Roberta's warpath and bringing her back to the family. However, with the continued bloodshed and mounting tensions between Roberta, island crime factions, and the US military, it will take a significant amount of strategy—and weaponry—to stop her relentless quest for revenge. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 3172 + type: anime + name: Arts Pro + url: https://myanimelist.net/anime/producer/3172/Arts_Pro + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7472 + url: https://myanimelist.net/anime/7472/Gintama_Movie_1__Shinyaku_Benizakura-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/28803.jpg + small_image_url: https://myanimelist.net/images/anime/4/28803t.jpg + large_image_url: https://myanimelist.net/images/anime/4/28803l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/28803.webp + small_image_url: https://myanimelist.net/images/anime/4/28803t.webp + large_image_url: https://myanimelist.net/images/anime/4/28803l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZHAZCsDXecE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gintama Movie 1: Shinyaku Benizakura-hen' + - type: Synonym + title: 'Gintama: Benizakura Arc - A New Retelling' + - type: Synonym + title: 'Gintama Movie: Crimson Sakura Chapter New Edition' + - type: Synonym + title: 'Gintama: Shin-yaku Benizakura-hen' + - type: Japanese + title: 劇場版 銀魂 新訳紅桜篇 + - type: English + title: 'Gintama: The Movie' + - type: German + title: 'Gintama: Der Film' + title: 'Gintama Movie 1: Shinyaku Benizakura-hen' + title_english: 'Gintama: The Movie' + title_japanese: 劇場版 銀魂 新訳紅桜篇 + title_synonyms: + - 'Gintama: Benizakura Arc - A New Retelling' + - 'Gintama Movie: Crimson Sakura Chapter New Edition' + - 'Gintama: Shin-yaku Benizakura-hen' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-04-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 4 + year: 2010 + to: + day: null + month: null + year: null + string: Apr 24, 2010 + duration: 1 hr 35 min + rating: R - 17+ (violence & profanity) + score: 8.53 + scored_by: 102327 + rank: 147 + popularity: 1556 + members: 177684 + favorites: 641 + synopsis: |- + Gintoki and his Yorozuya friends (or rather, employees suffering under labor violations), Shinpachi and Kagura, continue to scrape by in the futuristic, alien-infested city of Edo. They take on whatever work they can find while trying not to get involved in anything too dangerous. But when Katsura, the leader of the Joui rebels and Gintoki's long-time acquaintance, disappears after being brutally attacked by an unknown assassin, Shinpachi and Kagura begin an investigation into his whereabouts and the identity of the assailant. Meanwhile, Gintoki takes on a seemingly unrelated job: the blacksmith Tetsuya requests that Gin recover a strange and powerful sword called the Benizakura which was recently stolen. + + As the two investigations gradually intersect, the Yorozuya crew find themselves in the midst of a major conspiracy that hinges on the sinister nature of the Benizakura sword. Gintoki resolves to take the fight directly to the enemy headquarters, and together with a few unexpected allies, sets out on one of his most perilous jobs yet. + + [Written by MAL Rewrite] + background: 'Gintama Movie 1: Shinyaku Benizakura-hen is a remake of episodes 58-61 of Gintama.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6895 + url: https://myanimelist.net/anime/6895/Hakuouki + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/71800.jpg + small_image_url: https://myanimelist.net/images/anime/3/71800t.jpg + large_image_url: https://myanimelist.net/images/anime/3/71800l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/71800.webp + small_image_url: https://myanimelist.net/images/anime/3/71800t.webp + large_image_url: https://myanimelist.net/images/anime/3/71800l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VJ_D1wCZjgI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hakuouki + - type: Synonym + title: 'Hakuoki,Hakuouki: Shinsengumi Kitan' + - type: Japanese + title: 薄桜鬼 + - type: English + title: Hakuoki ~Demon of the Fleeting Blossom~ + - type: Spanish + title: 'Hakuoki: Demon of the Fleeting Blossom' + title: Hakuouki + title_english: Hakuoki ~Demon of the Fleeting Blossom~ + title_japanese: 薄桜鬼 + title_synonyms: + - 'Hakuoki,Hakuouki: Shinsengumi Kitan' + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-04T00:00:00+00:00' + to: '2010-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2010 + to: + day: 20 + month: 6 + year: 2010 + string: Apr 4, 2010 to Jun 20, 2010 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.36 + scored_by: 72627 + rank: 2920 + popularity: 1561 + members: 177404 + favorites: 1923 + synopsis: |- + In 1864 Japan, a young woman named Chizuru Yukimura is searching for her missing father, Koudou, a doctor by trade whose work often takes him far from home. But with no word from him in months, Chizuru disguises herself as a man and heads to Kyoto in search of him. Attracting the attention of ronin, she tries to hide and ends up witnessing a horrifying sight: the ronin being brutally murdered by crazed white-haired men. In a startling turn of events, members of the Shinsengumi arrive to dispatch the creatures. But Chizuru's safety doesn't last long, as this group of men tie her up and take her back to their headquarters, unsure of whether to let her live or silence her permanently. + + However, once she reveals the name of her father, the Shinsengumi decide to keep her safe, as they too have been searching for him. But Koudou is more connected to the Shinsengumi than they let on, and soon Chizuru finds herself embroiled in a conflict between the Shinsengumi and their enemies, as well as political tension in Kyoto. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2010 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 4106 + url: https://myanimelist.net/anime/4106/Trigun__Badlands_Rumble + images: + jpg: + image_url: https://myanimelist.net/images/anime/1930/116400.jpg + small_image_url: https://myanimelist.net/images/anime/1930/116400t.jpg + large_image_url: https://myanimelist.net/images/anime/1930/116400l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1930/116400.webp + small_image_url: https://myanimelist.net/images/anime/1930/116400t.webp + large_image_url: https://myanimelist.net/images/anime/1930/116400l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F1OWwhrB7nk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Trigun: Badlands Rumble' + - type: Synonym + title: Trigun the Movie + - type: Japanese + title: トライガン + - type: English + title: 'Trigun: Badlands Rumble' + title: 'Trigun: Badlands Rumble' + title_english: 'Trigun: Badlands Rumble' + title_japanese: トライガン + title_synonyms: + - Trigun the Movie + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-04-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 4 + year: 2010 + to: + day: null + month: null + year: null + string: Apr 2, 2010 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 7.91 + scored_by: 81996 + rank: 922 + popularity: 1732 + members: 154607 + favorites: 310 + synopsis: "Vash the Stampede is a contradiction. He has a notorious reputation as \"The Humanoid Typhoon,\" laying anything\ + \ he comes across to waste on the desolate planet of Gunsmoke. However, Vash is in fact very non-confrontational and\ + \ kind-hearted, living by a code of pacifism.\n\nTwenty years ago, a high-profile bank heist went sour. The ringleader,\ + \ Gasback Gallon Getaway, swore to get back at his backstabbing crew and the man who stopped him from killing them:\ + \ Vash the Stampede. In the present day, the traitorous crew has been living the good life as successful entrepreneurs\ + \ and politicians. Although two decades have passed, Gasback's bitterness has not waned as he aims to take them down\ + \ one by one, by any means necessary. \n\nJust in time to foil Gasback's plot, Vash has arrived in Macca City. Teaming\ + \ up with the mysterious Amelia Ann McFly, along with the insurance agents Milly Thompson and Meryl Stryfe, Vash is\ + \ ready to rumble. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 761 + type: anime + name: Sunny Side Up + url: https://myanimelist.net/anime/producer/761/Sunny_Side_Up + - mal_id: 1553 + type: anime + name: Shounen Gahousha + url: https://myanimelist.net/anime/producer/1553/Shounen_Gahousha + - mal_id: 3172 + type: anime + name: Arts Pro + url: https://myanimelist.net/anime/producer/3172/Arts_Pro + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7590 + url: https://myanimelist.net/anime/7590/Mayoi_Neko_Overrun + images: + jpg: + image_url: https://myanimelist.net/images/anime/1398/133870.jpg + small_image_url: https://myanimelist.net/images/anime/1398/133870t.jpg + large_image_url: https://myanimelist.net/images/anime/1398/133870l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1398/133870.webp + small_image_url: https://myanimelist.net/images/anime/1398/133870t.webp + large_image_url: https://myanimelist.net/images/anime/1398/133870l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jNG4cIFBsg8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mayoi Neko Overrun! + - type: Japanese + title: 迷い猫オーバーラン! + - type: English + title: Stray Cats Overrun! + title: Mayoi Neko Overrun! + title_english: Stray Cats Overrun! + title_japanese: 迷い猫オーバーラン! + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-04-06T00:00:00+00:00' + to: '2010-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2010 + to: + day: 29 + month: 6 + year: 2010 + string: Apr 6, 2010 to Jun 29, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.64 + scored_by: 61980 + rank: 7314 + popularity: 1813 + members: 146374 + favorites: 217 + synopsis: |- + Takumi Tsuzuki is a high school student who attends the Umenomori Private Academy, free of charge, alongside Fumino Serizawa, a childhood friend of his who always says the opposite of what she feels. He spends most of his time at school fending off Chise Umenomori, the granddaughter of the board chairman and a pampered princess, who is constantly roping him into her eccentric hobbies. After school, he goes to work at the "Stray Cats" confectionery, a cake shop run by his adoptive older sister, Otome Tsuzuki, until it's time to go to bed. This is the average routine in the day and the life of Takumi. + + Mayoi Neko Overrun follows another seemingly average day in the life of Takumi. With his sister away from the shop, having gone to save someone else in need of help, Fumino takes it upon herself to wake him up so that he won't be late for their usual walk to school together, giving him a glimpse of her blue and white striped panties in the process. What a nice way to start the day. + + When Otome returns home, she brings with her a girl named Nozomi Kiriya, whose hair and mannerisms resemble that of a large cat. It turns out that she is a runaway that Otome can't help but take in. Takumi's ordinary days are transformed into splendid chaos as he tries to unravel who this mysterious beauty is and what she's running away from... + background: '' + season: spring + year: 2010 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: [] + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 7058 + url: https://myanimelist.net/anime/7058/Uragiri_wa_Boku_no_Namae_wo_Shitteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1639/120408.jpg + small_image_url: https://myanimelist.net/images/anime/1639/120408t.jpg + large_image_url: https://myanimelist.net/images/anime/1639/120408l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1639/120408.webp + small_image_url: https://myanimelist.net/images/anime/1639/120408t.webp + large_image_url: https://myanimelist.net/images/anime/1639/120408l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s5-_LQ3luEU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uragiri wa Boku no Namae wo Shitteiru + - type: Synonym + title: Uraboku + - type: Japanese + title: 裏切りは僕の名前を知っている + - type: English + title: The Betrayal Knows My Name + - type: German + title: The Betrayal Knows My Name + - type: French + title: The Betrayal Knows My Name + title: Uragiri wa Boku no Namae wo Shitteiru + title_english: The Betrayal Knows My Name + title_japanese: 裏切りは僕の名前を知っている + title_synonyms: + - Uraboku + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-04-12T00:00:00+00:00' + to: '2010-09-20T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2010 + to: + day: 20 + month: 9 + year: 2010 + string: Apr 12, 2010 to Sep 20, 2010 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.22 + scored_by: 40249 + rank: 3849 + popularity: 2256 + members: 108829 + favorites: 1031 + synopsis: |- + Growing up as an orphan, Yuki Sakurai questions his reason for living and ability to see a person's painful memory by simply touching them. After receiving anonymous notes telling him to die, Yuki is unable to shake off the nagging feeling forming inside of him. Unbeknownst to him, he is being watched, both by people who want to harm him and those who want to protect him. + + One foggy night, Yuki's life is saved by a beautiful man with silver eyes and jet black hair—a man he has never met before yet seems familiar. With the arrival of this mysterious stranger, Yuki's forgotten past has been awakened and the purpose of his existence has appeared before him. + + Uragiri wa Boku no Namae wo Shitteiru tells the story of a teenage boy as he discovers who he is and where he comes from—all while making friends, experiencing betrayal, and slowly piecing together the puzzle of his past. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2010 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 7588 + url: https://myanimelist.net/anime/7588/Saraiya_Goyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/75203.jpg + small_image_url: https://myanimelist.net/images/anime/4/75203t.jpg + large_image_url: https://myanimelist.net/images/anime/4/75203l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/75203.webp + small_image_url: https://myanimelist.net/images/anime/4/75203t.webp + large_image_url: https://myanimelist.net/images/anime/4/75203l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saraiya Goyou + - type: Synonym + title: Sarai-ya Goyou + - type: Japanese + title: さらい屋 五葉 + - type: English + title: House of Five Leaves + - type: German + title: House of Five Leaves + - type: Spanish + title: House of Five Leaves + - type: French + title: House of Five Leaves + title: Saraiya Goyou + title_english: House of Five Leaves + title_japanese: さらい屋 五葉 + title_synonyms: + - Sarai-ya Goyou + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-16T00:00:00+00:00' + to: '2010-07-02T00:00:00+00:00' + prop: + from: + day: 16 + month: 4 + year: 2010 + to: + day: 2 + month: 7 + year: 2010 + string: Apr 16, 2010 to Jul 2, 2010 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.77 + scored_by: 29838 + rank: 1268 + popularity: 2382 + members: 101258 + favorites: 885 + synopsis: "Masanosuke \"Masa\" Akitsu is a wandering ronin adrift in Japan's peaceful Edo period. Despite being a skilled\ + \ swordsman, Masa's meek personality has netted him the label \"unreliable,\" and he is often abruptly dismissed by\ + \ his employers, leading him to question his resolve as a samurai. \n\nAs Masa reaches his lowest point, he is approached\ + \ by Yaichi, a carefree man draped in pink who seemingly hires him on a whim as his bodyguard. Unbeknownst to Masa,\ + \ the job is not as innocent as it seems, and he is drawn into the illicit activities of the group spearheaded by\ + \ Yaichi. As he becomes further entwined with the gang known as the Five Leaves, Masa struggles with his own principles.\ + \ Still, his curiosity spurs him forward to uncover the past and motivations of this mysterious band of outlaws.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2010 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8740 + url: https://myanimelist.net/anime/8740/One_Piece_Film__Strong_World_Episode_0 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1172/109469.jpg + small_image_url: https://myanimelist.net/images/anime/1172/109469t.jpg + large_image_url: https://myanimelist.net/images/anime/1172/109469l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1172/109469.webp + small_image_url: https://myanimelist.net/images/anime/1172/109469t.webp + large_image_url: https://myanimelist.net/images/anime/1172/109469l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece Film: Strong World Episode 0' + - type: Japanese + title: ワンピース フィルム ストロングワールド エピソードゼロ + title: 'One Piece Film: Strong World Episode 0' + title_english: null + title_japanese: ワンピース フィルム ストロングワールド エピソードゼロ + title_synonyms: [] + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-04-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 4 + year: 2010 + to: + day: null + month: null + year: null + string: Apr 16, 2010 + duration: 18 min + rating: PG-13 - Teens 13 or older + score: 7.92 + scored_by: 51441 + rank: 897 + popularity: 2518 + members: 92790 + favorites: 52 + synopsis: Set over 20 years prior to the main One Piece story, this limited release OVA chronicles the confrontation + between Gold Lion Shiki and Gold Roger as well as other events around the world around the time of the Pirate King's + execution. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6772 + url: https://myanimelist.net/anime/6772/Break_Blade_Movie_1__Kakusei_no_Toki + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/68079.jpg + small_image_url: https://myanimelist.net/images/anime/10/68079t.jpg + large_image_url: https://myanimelist.net/images/anime/10/68079l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/68079.webp + small_image_url: https://myanimelist.net/images/anime/10/68079t.webp + large_image_url: https://myanimelist.net/images/anime/10/68079l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/22kSgKNTTIk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Break Blade Movie 1: Kakusei no Toki' + - type: Synonym + title: Breaker Blade + - type: Synonym + title: 'Break Blade 1: The Time of Awakening' + - type: Japanese + title: ブレイク ブレイド 覚醒ノ刻 + - type: English + title: Broken Blade + - type: French + title: Broken Blade + title: 'Break Blade Movie 1: Kakusei no Toki' + title_english: Broken Blade + title_japanese: ブレイク ブレイド 覚醒ノ刻 + title_synonyms: + - Breaker Blade + - 'Break Blade 1: The Time of Awakening' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-05-29T00:00:00+00:00' + to: null + prop: + from: + day: 29 + month: 5 + year: 2010 + to: + day: null + month: null + year: null + string: May 29, 2010 + duration: 51 min + rating: R - 17+ (violence & profanity) + score: 7.63 + scored_by: 44955 + rank: 1684 + popularity: 2591 + members: 88301 + favorites: 161 + synopsis: |- + Rygart Arrow is different compared to the other people in the continent of Cruzon: he is unable to control quartz, branded an "un-sorcerer." Despite this, he still befriends the future king and queen of Krisna—Hodr and Sigyn—as well as Zess, the younger brother of the Athens Commonwealth's Secretary of War. + + Several years later, Rygart discovers that there is a war brewing between Krisna and Athens. While visiting Binonten, the capital city of Krisna, he learns that his misfortune as an un-sorcerer enables him to pilot an ancient Golem, a unique ability that quartz-wielding users lack. + + As Zess leads one of the Athenian strikes upon the capital, Rygart joins the battle with his newfound power in hopes of mending the schism between the two nations. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 874 + type: anime + name: Flex Comix + url: https://myanimelist.net/anime/producer/874/Flex_Comix + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6864 + url: https://myanimelist.net/anime/6864/xxxHOLiC_Rou + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/25080.jpg + small_image_url: https://myanimelist.net/images/anime/9/25080t.jpg + large_image_url: https://myanimelist.net/images/anime/9/25080l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/25080.webp + small_image_url: https://myanimelist.net/images/anime/9/25080t.webp + large_image_url: https://myanimelist.net/images/anime/9/25080l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ShLL9VntNXY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: xxxHOLiC Rou + - type: Synonym + title: 'xxxHOLiC Rou: Adayume' + - type: Japanese + title: xxxHOLiC 籠 + title: xxxHOLiC Rou + title_english: null + title_japanese: xxxHOLiC 籠 + title_synonyms: + - 'xxxHOLiC Rou: Adayume' + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-04-23T00:00:00+00:00' + to: '2011-03-09T00:00:00+00:00' + prop: + from: + day: 23 + month: 4 + year: 2010 + to: + day: 9 + month: 3 + year: 2011 + string: Apr 23, 2010 to Mar 9, 2011 + duration: 34 min per ep + rating: PG-13 - Teens 13 or older + score: 8.19 + scored_by: 34770 + rank: 474 + popularity: 2629 + members: 86566 + favorites: 197 + synopsis: |- + Ten years after the events of xxxHOLiC Shunmuki, a melancholic Kimihiro Watanuki has taken over the shop formerly run by the mysterious Yuuko due to a promise he made to her. His companions Maru, Moro, and Mokona live together with him in relative contentment, and some familiar faces arrive every now and then: former rival turned-steadfast friend Shizuka Doumeki, and the former psychic prodigy Kohane Tsuyuri. While Kohane studies folklore under Doumeki at university, they encounter a case that is perfect for the master of the shop. + + Eventually, Watanuki receives a visit from Doumeki's grandfather, Haruka. He requests that Watanuki investigates his grandson's dreams. While inside the dream world, he discovers how their past adventures played out from Doumeki's perspective of view, leading Watanuki to discover truths from 10 years ago and secrets about the ties that bind their friendship. + + [Written by MAL Rewrite] + background: Bundled with the limited editions of the 17th and 19th volumes of the xxxHOLiC manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8310 + url: https://myanimelist.net/anime/8310/Magic_Kaito + images: + jpg: + image_url: https://myanimelist.net/images/anime/1946/149930.jpg + small_image_url: https://myanimelist.net/images/anime/1946/149930t.jpg + large_image_url: https://myanimelist.net/images/anime/1946/149930l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1946/149930.webp + small_image_url: https://myanimelist.net/images/anime/1946/149930t.webp + large_image_url: https://myanimelist.net/images/anime/1946/149930l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pwde-WS5t4g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Magic Kaito + - type: Synonym + title: Kaito Kid + - type: Synonym + title: Majikku Kaito + - type: Synonym + title: Kaitou Kid + - type: Synonym + title: Magic Kaitou + - type: Synonym + title: 'Detective Conan Special: Secret Birth of Kaito Kid' + - type: Synonym + title: Kaitou Kid Tanjou no Himitsu + - type: Japanese + title: まじっく快斗 + - type: German + title: 'Magic Kaito: Kid Phantom Thief' + title: Magic Kaito + title_english: null + title_japanese: まじっく快斗 + title_synonyms: + - Kaito Kid + - Majikku Kaito + - Kaitou Kid + - Magic Kaitou + - 'Detective Conan Special: Secret Birth of Kaito Kid' + - Kaitou Kid Tanjou no Himitsu + type: TV Special + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-04-17T00:00:00+00:00' + to: '2012-12-29T00:00:00+00:00' + prop: + from: + day: 17 + month: 4 + year: 2010 + to: + day: 29 + month: 12 + year: 2012 + string: Apr 17, 2010 to Dec 29, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.79 + scored_by: 34841 + rank: 1215 + popularity: 2776 + members: 79232 + favorites: 365 + synopsis: |- + Magic is not real—everyone knows that. When performed by a true expert, however, magic possesses the ability to amaze and wonder its audience. Kaito Kuroba, son of world-famous stage magician Touichi Kuroba, is no stranger to this fact. Well-versed in the arts of deception and misdirection, Kaito frequently disrupts the lives of those around him with flashy tricks and pranks. But when Kaito accidentally stumbles upon a hidden passage in his home, he discovers a secret that may well have been the cause of his father's death eight years ago—the dove-white outfit of Kid the Phantom Thief. Wanting to find out more about his father, Kaito dons the outfit and searches for the Pandora Gem that is said to grant immortality. However, he is not the only one after the gem—the organization responsible for his father's death is also hot on his tail! + + Magic Kaito follows the rebirth of Kaitou Kid, phantom thief of the night. Utilizing his dummies, disguises, and signature card gun, Kaito sets out to steal the world's most precious jewels, uncovering the truth behind his father's death and the rumored Pandora Gem along the way. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7661 + url: https://myanimelist.net/anime/7661/Giant_Killing + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/30191.jpg + small_image_url: https://myanimelist.net/images/anime/13/30191t.jpg + large_image_url: https://myanimelist.net/images/anime/13/30191l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/30191.webp + small_image_url: https://myanimelist.net/images/anime/13/30191t.webp + large_image_url: https://myanimelist.net/images/anime/13/30191l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Giant Killing + - type: Japanese + title: ジャイアントキリング + - type: English + title: Giant Killing + title: Giant Killing + title_english: Giant Killing + title_japanese: ジャイアントキリング + title_synonyms: [] + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2010-04-04T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Apr 4, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.56 + scored_by: 37602 + rank: 1964 + popularity: 2850 + members: 75590 + favorites: 381 + synopsis: |- + East Tokyo United (ETU) has been struggling in Japan's top soccer league for the past few years. It has taken everything they have just to avoid relegation. To make matters even worse, the team has lost five matches in a row, leading to abysmal team morale. Even the fans are beginning to abandon them, and rumors hint that the home ground municipality is going to withdraw their support. With countless coaches fired and poor financial choices in hiring players, it is a downward spiral for ETU. + + The board of directors, under pressure from general manager Kousei Gotou, takes a gamble and hires a new coach—the slightly eccentric Takeshi Tatsumi. Though considered a great soccer player when he was younger, Tatsumi abandoned ETU years ago. However, since then, he has proven himself successful as the manager of one of England's lower division amateur teams. + + Tatsumi's task won't be easy; ETU fans call him a traitor, and the team is pitted against others with larger budgets and better players. Yet even the underdog can take down a goliath, and Tatsumi claims he is an expert at giant killing. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2010 + broadcast: + day: Sundays + time: 09:25 + timezone: Asia/Tokyo + string: Sundays at 09:25 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 5337 + url: https://myanimelist.net/anime/5337/Bakugan_Battle_Brawlers__New_Vestroia + images: + jpg: + image_url: https://myanimelist.net/images/anime/1894/133816.jpg + small_image_url: https://myanimelist.net/images/anime/1894/133816t.jpg + large_image_url: https://myanimelist.net/images/anime/1894/133816l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1894/133816.webp + small_image_url: https://myanimelist.net/images/anime/1894/133816t.webp + large_image_url: https://myanimelist.net/images/anime/1894/133816l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bakugan Battle Brawlers: New Vestroia' + - type: Japanese + title: 爆丸バトルブローラーズ New Vestroia + - type: English + title: 'Bakugan: New Vestroia' + title: 'Bakugan Battle Brawlers: New Vestroia' + title_english: 'Bakugan: New Vestroia' + title_japanese: 爆丸バトルブローラーズ New Vestroia + title_synonyms: [] + type: TV + source: Original + episodes: 52 + status: Finished Airing + airing: false + aired: + from: '2010-03-02T00:00:00+00:00' + to: '2011-03-05T00:00:00+00:00' + prop: + from: + day: 2 + month: 3 + year: 2010 + to: + day: 5 + month: 3 + year: 2011 + string: Mar 2, 2010 to Mar 5, 2011 + duration: 24 min per ep + rating: PG - Children + score: 6.61 + scored_by: 44998 + rank: 7456 + popularity: 2923 + members: 72829 + favorites: 224 + synopsis: |- + After the final downfall of the rogue Bakugan Naga, peace was brought back to Vestroia. With the help of Danma Kuusou, his companion Pyrus Dragonoid, and other Battle Brawlers, the Infinity and Silent Cores were combined and the realm was recreated. + + However, New Vestroia will not be given any respite as humanoid alien invaders, the Vestals, arrive and conquer the Bakugan world in one fell swoop. Armed with a fearsome machine capable of restricting Bakugan into their ball forms, they aim to enslave the race as a form of entertainment. + + Now, the only force standing in their way is the Bakugan Battle Brawlers Resistance—a group of humans, Bakugan, and Vestals who oppose the idea of annihilating a sentient race. Led by Danma, they must venture into enemy-occupied New Vestroia and repel the invaders, to assure the survival of the entire world. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2010 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 215 + type: anime + name: Nelvana + url: https://myanimelist.net/anime/producer/215/Nelvana + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: [] + - mal_id: 8634 + url: https://myanimelist.net/anime/8634/Koisuru_Boukun + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/26233.jpg + small_image_url: https://myanimelist.net/images/anime/8/26233t.jpg + large_image_url: https://myanimelist.net/images/anime/8/26233l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/26233.webp + small_image_url: https://myanimelist.net/images/anime/8/26233t.webp + large_image_url: https://myanimelist.net/images/anime/8/26233l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koisuru Boukun + - type: Synonym + title: Koi Suru Boukun + - type: Synonym + title: Koisuru Bokun + - type: Japanese + title: 恋する暴君 + - type: English + title: The Tyrant Falls In Love + title: Koisuru Boukun + title_english: The Tyrant Falls In Love + title_japanese: 恋する暴君 + title_synonyms: + - Koi Suru Boukun + - Koisuru Bokun + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-06-25T00:00:00+00:00' + to: '2010-11-27T00:00:00+00:00' + prop: + from: + day: 25 + month: 6 + year: 2010 + to: + day: 27 + month: 11 + year: 2010 + string: Jun 25, 2010 to Nov 27, 2010 + duration: 29 min per ep + rating: R+ - Mild Nudity + score: 6.88 + scored_by: 40413 + rank: null + popularity: 2936 + members: 72474 + favorites: 329 + synopsis: |- + Tetsuhiro Morinaga is in love with his upperclassman Souichi Tatsumi. He even manages to confess his love. Too bad it turns out that Tatsumi is an aggressive, self-centered, and outspoken homophobe. + + Yet somehow, Tetsuhiro managed to fall in love with Tatsumi, the "walking personality disorder," who is the kind of man who declares that all gay men should be wiped off the face of the planet. + + An unfortunate accident with an aphrodisiac drug brings the two men physically together against Souichi's will. The experience has a life-changing effect on both men. But will it ultimately bring them closer or drive them apart? + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1600 + type: anime + name: On-Lead + url: https://myanimelist.net/anime/producer/1600/On-Lead + licensors: [] + studios: + - mal_id: 347 + type: anime + name: PrimeTime + url: https://myanimelist.net/anime/producer/347/PrimeTime + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 6408 + url: https://myanimelist.net/anime/6408/Bungaku_Shoujo_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/81162.jpg + small_image_url: https://myanimelist.net/images/anime/8/81162t.jpg + large_image_url: https://myanimelist.net/images/anime/8/81162l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/81162.webp + small_image_url: https://myanimelist.net/images/anime/8/81162t.webp + large_image_url: https://myanimelist.net/images/anime/8/81162l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DrE1XD8bw6c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '"Bungaku Shoujo" Movie' + - type: Synonym + title: Book Girl + - type: Synonym + title: Literature Girl + - type: Japanese + title: 劇場版“文学少女” + - type: German + title: Book Girl + - type: Spanish + title: Bungaku Shōjo + - type: French + title: Book Girl + title: '"Bungaku Shoujo" Movie' + title_english: null + title_japanese: 劇場版“文学少女” + title_synonyms: + - Book Girl + - Literature Girl + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-05-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 5 + year: 2010 + to: + day: null + month: null + year: null + string: May 1, 2010 + duration: 1 hr 40 min + rating: PG-13 - Teens 13 or older + score: 7.33 + scored_by: 28791 + rank: 3078 + popularity: 2967 + members: 70982 + favorites: 220 + synopsis: |- + The protagonist of the story, Konoha Inoue, is a seemingly normal senior high 2nd year student. His high school life, other than a hinted incident 2 years ago, can be summed up as normal- if one can dismiss the secret fact that he used to be a female bestselling romance author. Due to that incident, however, he has now vowed never to write again. + + This continued on until he was forced to join the literary club by the literary club president, the 3rd year female student Amano Tooko, a beautiful girl who has a taste for eating literary works. Now he has been tasked with writing her snack every day after school. + + (Source: To Say Nothing of the Dog) + background: '"Bungaku Shoujo" Movie was announced with the release of the first manga volume and the first light novel + in April 2009. The first trailer was included with the release of the "Bungaku Shoujo" Kyou no Oyatsu: Hatsukoi DVD + episode. The movie adapts the events of "Bungaku Shoujo" to Doukoku no Palmier, the fifth volume in the light novel + series. It went on to earn 59 million yen in the Japanese box office.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 685 + type: anime + name: Kadokawa Contents Gate + url: https://myanimelist.net/anime/producer/685/Kadokawa_Contents_Gate + - mal_id: 1015 + type: anime + name: T.O Entertainment + url: https://myanimelist.net/anime/producer/1015/TO_Entertainment + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/03-2010-summer.yaml b/test/fixtures/jikan/season_matrix/03-2010-summer.yaml new file mode 100644 index 0000000..fbb531b --- /dev/null +++ b/test/fixtures/jikan/season_matrix/03-2010-summer.yaml @@ -0,0 +1,3227 @@ +metadata: + captured_at: '2026-05-11T11:32:26Z' + label: 2010-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2010/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:26 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:d2a65aa0b60b753be73048e35a394b2cf730fcb6 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 7 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 161 + per_page: 25 + data: + - mal_id: 8074 + url: https://myanimelist.net/anime/8074/Highschool_of_the_Dead + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/78311.jpg + small_image_url: https://myanimelist.net/images/anime/11/78311t.jpg + large_image_url: https://myanimelist.net/images/anime/11/78311l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/78311.webp + small_image_url: https://myanimelist.net/images/anime/11/78311t.webp + large_image_url: https://myanimelist.net/images/anime/11/78311l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Kl6cNSBg3Wg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Highschool of the Dead + - type: Synonym + title: 'Gakuen Mokushiroku: Highschool of the Dead' + - type: Synonym + title: HOTD + - type: Synonym + title: HSOTD + - type: Japanese + title: 学園黙示録 HIGHSCHOOL OF THE DEAD + - type: English + title: High School of the Dead + - type: Spanish + title: 'High School Of The Dead: Apocalipsis en el Instituto' + - type: French + title: High School of The Dead + title: Highschool of the Dead + title_english: High School of the Dead + title_japanese: 学園黙示録 HIGHSCHOOL OF THE DEAD + title_synonyms: + - 'Gakuen Mokushiroku: Highschool of the Dead' + - HOTD + - HSOTD + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-05T00:00:00+00:00' + to: '2010-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2010 + to: + day: 20 + month: 9 + year: 2010 + string: Jul 5, 2010 to Sep 20, 2010 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.06 + scored_by: 996552 + rank: 4798 + popularity: 82 + members: 1610444 + favorites: 10649 + synopsis: |- + It happened suddenly: The dead began to rise and Japan was thrown into total chaos. As these monsters begin terrorizing a high school, Takashi Kimuro is forced to kill his best friend when he gets bitten and joins the ranks of the walking dead. Vowing to protect Rei Miyamoto, the girlfriend of the man he just executed, they narrowly escape their death trap of a school, only to be greeted with a society that has already fallen. + + Soon, Takashi and Rei band together with other students on a journey to find their family members and uncover what caused this overwhelming pandemic. Joining them is Saeko Busujima, the beautiful president of the Kendo Club; Kouta Hirano, an otaku with a fetish for firearms; Saya Takagi, the daughter of an influential politician; and Shizuka Marikawa, their hot school nurse. But will the combined strength of these individuals be enough to conquer this undead apocalypse? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2010 + broadcast: + day: Mondays + time: '11:30' + timezone: Asia/Tokyo + string: Mondays at 11:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7724 + url: https://myanimelist.net/anime/7724/Shiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1531/119165.jpg + small_image_url: https://myanimelist.net/images/anime/1531/119165t.jpg + large_image_url: https://myanimelist.net/images/anime/1531/119165l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1531/119165.webp + small_image_url: https://myanimelist.net/images/anime/1531/119165t.webp + large_image_url: https://myanimelist.net/images/anime/1531/119165l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shiki + - type: Synonym + title: Corpse Demon + - type: Japanese + title: 屍鬼 + - type: English + title: Shiki + title: Shiki + title_english: Shiki + title_japanese: 屍鬼 + title_synonyms: + - Corpse Demon + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2010-07-09T00:00:00+00:00' + to: '2010-12-31T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2010 + to: + day: 31 + month: 12 + year: 2010 + string: Jul 9, 2010 to Dec 31, 2010 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.72 + scored_by: 275954 + rank: 1409 + popularity: 380 + members: 648132 + favorites: 9064 + synopsis: "Life is idyllic and unassuming in the small town of Sotoba, a simple place where everyone knows everyone.\ + \ However, tragedy strikes when Megumi Shimizu, a young girl with high aspirations, unexpectedly passes away from\ + \ an unnamed illness. Over the torrid summer months, as more unexplained deaths crop up around the village, the town's\ + \ doctor—Toshio Ozaki—begins to suspect that something more sinister than a mere disease is at play. \n\nToshio teams\ + \ up with Natsuno Yuuki, an apathetic and aloof teenager, and siblings Kaori and Akira Tanaka, two of Megumi's friends,\ + \ to unravel the dark mystery behind the deaths in Sotoba. With their combined efforts, the investigation leads them\ + \ toward an eerie secret pertaining to the new family in the Kanemasa mansion.\n\n[Written by MAL Rewrite]" + background: Early screening on the 27th of June with the regular airing starting on July 9th. + season: summer + year: 2010 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 39 + type: anime + name: Daume + url: https://myanimelist.net/anime/producer/39/Daume + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6707 + url: https://myanimelist.net/anime/6707/Kuroshitsuji_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/50499.jpg + small_image_url: https://myanimelist.net/images/anime/4/50499t.jpg + large_image_url: https://myanimelist.net/images/anime/4/50499l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/50499.webp + small_image_url: https://myanimelist.net/images/anime/4/50499t.webp + large_image_url: https://myanimelist.net/images/anime/4/50499l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7q1SAxzSS2g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroshitsuji II + - type: Synonym + title: Kuroshitsuji 2 + - type: Synonym + title: Black Butler 2 + - type: Japanese + title: 黒執事II + - type: English + title: Black Butler II + - type: German + title: Black Butler II + - type: French + title: Black Butler II + title: Kuroshitsuji II + title_english: Black Butler II + title_japanese: 黒執事II + title_synonyms: + - Kuroshitsuji 2 + - Black Butler 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-02T00:00:00+00:00' + to: '2010-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2010 + to: + day: 17 + month: 9 + year: 2010 + string: Jul 2, 2010 to Sep 17, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.12 + scored_by: 339307 + rank: 4454 + popularity: 416 + members: 603045 + favorites: 3204 + synopsis: |- + The stage of Kuroshitsuji II opens on the life of Alois Trancy, the young heir to the Trancy earldom. Though he is privileged now, such was not always the case for the hot-tempered boy. Kidnapped and forced into slavery at a young age, he was eventually rescued and returned home, only to have his beloved father pass away soon after. + + However, there are certain individuals who doubt Alois' story and legitimacy. And rightfully so, because things in the Trancy household are not as they appear, starting with Alois' black-clad butler with supernatural abilities, Claude Faustus. Who exactly is the mysterious Claude, and what connection does he have with Alois? + + Amid the web of lies and deceit running rampant in the mansion, the bond between Alois and Claude will be tested as hell itself arrives at their doorstep. + + [Written by MAL Rewrite] + background: Kuroshitsuji II had an official magazine, Black Tabloid, released before its on-air date on July 1, 2010. + season: summer + year: 2010 + broadcast: + day: Fridays + time: 01:20 + timezone: Asia/Tokyo + string: Fridays at 01:20 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8675 + url: https://myanimelist.net/anime/8675/Seitokai_Yakuindomo + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/75550.jpg + small_image_url: https://myanimelist.net/images/anime/4/75550t.jpg + large_image_url: https://myanimelist.net/images/anime/4/75550l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/75550.webp + small_image_url: https://myanimelist.net/images/anime/4/75550t.webp + large_image_url: https://myanimelist.net/images/anime/4/75550l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vzfkD0wz7_Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seitokai Yakuindomo + - type: Synonym + title: SYD + - type: Japanese + title: 生徒会役員共 + - type: English + title: Student Council Staff Members + title: Seitokai Yakuindomo + title_english: Student Council Staff Members + title_japanese: 生徒会役員共 + title_synonyms: + - SYD + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-07-04T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Jul 4, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.54 + scored_by: 230036 + rank: 2077 + popularity: 490 + members: 520841 + favorites: 3408 + synopsis: |- + On his first day of high school at the formerly all-girl's Ousai Private Academy, Takatoshi Tsuda is called out for his untidy uniform by the student council president Shino Amakusa. In apology for delaying Takatoshi for his first class—and stating that the group needs a male point of view to accommodate the arrival of boys at the school—Shino offers him the position of vice president of the student council. Though unwilling, Takatoshi finds himself appointed as the newest member of the student council having yet to even step foot inside the school building. + + Takatoshi soon realizes that the other student council members who are more than a little strange: President Shino, who is studious and serious in appearance, but actually a huge pervert, fascinated with the erotic and constantly making lewd jokes; the secretary Aria Shichijou, who may seem like a typical sheltered rich girl, but is just as risque as the president, if not more so; and finally, the treasurer Suzu Hagimura, who may act fairly normal, but has the body of an elementary school student and is extremely self-conscious of it. Surrounded by these colorful characters, the new vice president must now work through a nonstop assault of sexual humor and insanity. + + [Written by MAL Rewrite] + background: Advance screening on May 29th. The regular TV airing started on July 4th. + season: summer + year: 2010 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 399 + type: anime + name: Dream Force + url: https://myanimelist.net/anime/producer/399/Dream_Force + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8676 + url: https://myanimelist.net/anime/8676/Amagami_SS + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/78699.jpg + small_image_url: https://myanimelist.net/images/anime/10/78699t.jpg + large_image_url: https://myanimelist.net/images/anime/10/78699l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/78699.webp + small_image_url: https://myanimelist.net/images/anime/10/78699t.webp + large_image_url: https://myanimelist.net/images/anime/10/78699l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Nfti3gsXaf4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Amagami SS + - type: Japanese + title: アマガミSS + - type: English + title: Amagami SS + title: Amagami SS + title_english: Amagami SS + title_japanese: アマガミSS + title_synonyms: [] + type: TV + source: Visual novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2010-07-02T00:00:00+00:00' + to: '2010-12-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2010 + to: + day: 24 + month: 12 + year: 2010 + string: Jul 2, 2010 to Dec 24, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.28 + scored_by: 168296 + rank: 3388 + popularity: 661 + members: 410469 + favorites: 2338 + synopsis: "Two years ago, Junichi Tachibana had a date on Christmas Eve but was stood up instead. Since then, he has\ + \ had a hard time showing others his true feelings in fear of being rejected again. However, as luck would have it,\ + \ Junichi may have a second chance at love when he meets several girls whom he becomes romantically interested in:\ + \ Haruka Morishima, the energetic and popular upperclassman with a love for cute things; Kaoru Tanamachi, his childhood\ + \ friend who harbors secret feelings for him; Sae Nakata, the timid transfer student who is shy around men; Ai Nanasaki,\ + \ a girl on the swim team who has a bad first impression of Junichi; Rihoko Sakurai, a childhood friend with a love\ + \ for sweets; and Tsukasa Ayatsuji, a seemingly perfect class representative who has a hidden dark side. As Christmas\ + \ Eve approaches, Junichi can only hope that this will be the year he will finally spend the holidays with the one\ + \ he truly loves.\n \n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2010 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 7711 + url: https://myanimelist.net/anime/7711/Karigurashi_no_Arrietty + images: + jpg: + image_url: https://myanimelist.net/images/anime/1974/116417.jpg + small_image_url: https://myanimelist.net/images/anime/1974/116417t.jpg + large_image_url: https://myanimelist.net/images/anime/1974/116417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1974/116417.webp + small_image_url: https://myanimelist.net/images/anime/1974/116417t.webp + large_image_url: https://myanimelist.net/images/anime/1974/116417l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QfkrMq2G71g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karigurashi no Arrietty + - type: Synonym + title: Karigurashi no Arrietti + - type: Synonym + title: The Borrower Arrietty + - type: Japanese + title: 借りぐらしのアリエッティ + - type: English + title: The Secret World of Arrietty + - type: German + title: 'Arietty: Die Wundersame Welt der Borger' + - type: Spanish + title: Arrietty y el Mundo de los Diminutos + - type: French + title: Arrietty, Le Petit Monde des Chapardeurs + title: Karigurashi no Arrietty + title_english: The Secret World of Arrietty + title_japanese: 借りぐらしのアリエッティ + title_synonyms: + - Karigurashi no Arrietti + - The Borrower Arrietty + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 17, 2010 + duration: 1 hr 34 min + rating: G - All Ages + score: 7.9 + scored_by: 246800 + rank: 941 + popularity: 688 + members: 394656 + favorites: 1468 + synopsis: |- + While spending the summer at his aunt's house, the young but sickly Shou makes an amazing discovery: after following the house cat into the bushes, he gets a glimpse of a miniature girl about the size of his finger! Calling her kind "Borrowers," as they survive on tiny bits of human possessions, the girl introduces herself as Arrietty. As he discovers that she lives in the house basement with her parents, Pod and Homily, Shou becomes imaginably excited at the idea of such unique neighbors. + + However, he fails to understand the adversities they face on a daily basis. In addition to keeping their existence hidden, they must also embark on perilous adventures into human territory, from the house to the outdoors, in order to make a living. Despite her parents' warnings, Arrietty befriends Shou, stirring up unexpected events that may change their lives forever. + + Delighting the eye and conquering the heart, the breath-taking story of a friendship transcending the tensions between two different human kinds begins. + + [Written by MAL Rewrite] + background: Karigurashi no Arrietty is an adaptation of the 1952 novel The Borrowers by Mary Norton. It also marks the + cinematic debut of Hiromasa Yonebayashi. The film score was composed by French recording artist and musician Cécile + Corbel, the first time a non-Japanese composer has worked with Studio Ghibli. Receiving highly positive reviews praising + the animation and music, the film won the Animation of the Year award at the 34th Japan Academy Prize award ceremony + and became the highest grossing Japanese film at the Japanese box office in 2010, grossing over $145 million worldwide. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 417 + type: anime + name: Disney Platform Distribution + url: https://myanimelist.net/anime/producer/417/Disney_Platform_Distribution + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 8086 + url: https://myanimelist.net/anime/8086/Densetsu_no_Yuusha_no_Densetsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/73651.jpg + small_image_url: https://myanimelist.net/images/anime/8/73651t.jpg + large_image_url: https://myanimelist.net/images/anime/8/73651l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/73651.webp + small_image_url: https://myanimelist.net/images/anime/8/73651t.webp + large_image_url: https://myanimelist.net/images/anime/8/73651l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-KQwoCCvf_0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Densetsu no Yuusha no Densetsu + - type: Synonym + title: DenYuDen + - type: Synonym + title: DenYuuDen + - type: Synonym + title: Densetsu no Yusha no Densetsu + - type: Synonym + title: LOLH + - type: Japanese + title: 伝説の勇者の伝説 + - type: English + title: The Legend of the Legendary Heroes + - type: Spanish + title: La Leyenda de los Héroes Legendarios + title: Densetsu no Yuusha no Densetsu + title_english: The Legend of the Legendary Heroes + title_japanese: 伝説の勇者の伝説 + title_synonyms: + - DenYuDen + - DenYuuDen + - Densetsu no Yusha no Densetsu + - LOLH + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-07-02T00:00:00+00:00' + to: '2010-12-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2010 + to: + day: 17 + month: 12 + year: 2010 + string: Jul 2, 2010 to Dec 17, 2010 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.49 + scored_by: 142621 + rank: 2279 + popularity: 875 + members: 322554 + favorites: 2050 + synopsis: |- + "Alpha Stigma" are known to be eyes that can analyze all types of magic. However, they are more infamously known as cursed eyes that can only bring destruction and death to others. + + Ryner Lute, a talented mage and also an Alpha Stigma bearer, was once a student of the Roland Empire's Magician Academy, an elite school dedicated to training magicians for military purposes. However, after many of his classmates died in a war, he makes an oath to make the nation a more orderly and peaceful place, with fellow survivor and best friend, Sion Astal. + + Now that Sion is the king of Roland, he orders Ryner to search for useful relics that will aid the nation. Together with Ferris Eris, a beautiful and highly skilled swordswoman, Ryner goes on a journey to search for relics of legendary heroes from the past, and also uncover the secrets behind his cursed eyes. + + [Written by MAL Rewrite] + background: Advanced screening on June 26, 2010. The regular TV airing started on July 2, 2010. + season: summer + year: 2010 + broadcast: + day: Fridays + time: 02:15 + timezone: Asia/Tokyo + string: Fridays at 02:15 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 685 + type: anime + name: Kadokawa Contents Gate + url: https://myanimelist.net/anime/producer/685/Kadokawa_Contents_Gate + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 7769 + url: https://myanimelist.net/anime/7769/Ookami-san_to_Shichinin_no_Nakama-tachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75240.jpg + small_image_url: https://myanimelist.net/images/anime/9/75240t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75240l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75240.webp + small_image_url: https://myanimelist.net/images/anime/9/75240t.webp + large_image_url: https://myanimelist.net/images/anime/9/75240l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Uz-kz8_EyMQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ookami-san to Shichinin no Nakama-tachi + - type: Synonym + title: Ookami-san to Shichinin no Nakamatachi + - type: Synonym + title: Okamisan and Seven Companions + - type: Japanese + title: オオカミさんと七人の仲間たち + - type: English + title: Okami-San and Her Seven Companions + - type: German + title: Okami-san and Her Seven Companions + - type: Spanish + title: Okami-san and Her Seven Companions + - type: French + title: Okami-san and Her Seven Companions + title: Ookami-san to Shichinin no Nakama-tachi + title_english: Okami-San and Her Seven Companions + title_japanese: オオカミさんと七人の仲間たち + title_synonyms: + - Ookami-san to Shichinin no Nakamatachi + - Okamisan and Seven Companions + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-01T00:00:00+00:00' + to: '2010-09-16T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2010 + to: + day: 16 + month: 9 + year: 2010 + string: Jul 1, 2010 to Sep 16, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.16 + scored_by: 133756 + rank: 4227 + popularity: 972 + members: 289403 + favorites: 803 + synopsis: "Tomboy Ryouko Ookami is a fierce boxer and the assigned bruiser of her club. Of course, no normal high school\ + \ club needs a bruiser, but the Otogi Bank operates more akin to an actual bank. Here, the students can ask for favors\ + \ from the club as long as they promise to return the favor in the future. Sixteen-year-old Ryoushi Morino is a shy\ + \ boy, a far cry from the Otogi Bank members. To his biggest surprise, after unsuccessfully confessing to Ryouko,\ + \ he inadvertently finds himself joining the club! \n\nOokami-san to Shichinin no Nakama-tachi follows the everyday\ + \ lives of the Otogi Bank members as they tackle favors that range from the mundane to the dangerous. However, since\ + \ Ryoushi's sole motivation is to win Ryouko over, she doubts he will be able to have her back in a fight, especially\ + \ when he can't even stand having people look at him—much less fight anyone!\n\n[Written by MAL Rewrite]" + background: The series parodies many famous fairy tales, either with puns relating to names or fairy tale themes being + used in creative and funny ways. The two main heroines' names are a play on words relating to the story of Little + Red Riding Hood; Akai means red and Ookami means wolf. The title of the anime is a pun for the full title of Snow + White and translates to Wolf and the Seven Companions; additionally, Ringo means apple and Ryouko means hero, making + their names double puns. Other fairy tale parodies include Cinderella and The Ant and the Grasshopper. + season: summer + year: 2010 + broadcast: + day: Thursdays + time: 09:00 + timezone: Asia/Tokyo + string: Thursdays at 09:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 7592 + url: https://myanimelist.net/anime/7592/Nurarihyon_no_Mago + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75631.jpg + small_image_url: https://myanimelist.net/images/anime/9/75631t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75631l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75631.webp + small_image_url: https://myanimelist.net/images/anime/9/75631t.webp + large_image_url: https://myanimelist.net/images/anime/9/75631l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VAuBp_BzXPY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nurarihyon no Mago + - type: Synonym + title: The Grandson of Nurarihyon + - type: Synonym + title: Grandchild of Nurarihyon + - type: Japanese + title: ぬらりひょんの孫 + - type: English + title: 'Nura: Rise of the Yokai Clan' + - type: French + title: 'Nura: Le Seigneur des Yokai' + title: Nurarihyon no Mago + title_english: 'Nura: Rise of the Yokai Clan' + title_japanese: ぬらりひょんの孫 + title_synonyms: + - The Grandson of Nurarihyon + - Grandchild of Nurarihyon + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-07-06T00:00:00+00:00' + to: '2010-12-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2010 + to: + day: 21 + month: 12 + year: 2010 + string: Jul 6, 2010 to Dec 21, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 123276 + rank: 1788 + popularity: 973 + members: 289312 + favorites: 1416 + synopsis: |- + Rikuo Nura, a part-youkai and part-human boy, grew up as the young master of the Nura Clan. While he treated the clan, which consists of youkai of all shapes and sizes, like family, he soon learned that he was the only one among his classmates who saw youkai in this light. To most, they were terrifying creatures of folklore who ate children and relished in bloodshed. Taking this to heart, he swore to live his life as a normal human. + + Normalcy, however, is hard to come by for young Rikuo. Complicating his goal are his youkai attendant, who under the name Tsurara Oikawa, goes to school alongside him; the young onmyouji Yura Keikain; and his close friend Kiyotsugu, who idolizes youkai and hopes to prove their existence. To make matters worse, rival youkai and other entities threaten to harm those Rikuo holds dear. + + If he wants to protect what's important to him, Rikuo must acknowledge his ancestry—that he is the grandson of the legendary Nurarihyon—and transform at night into a youkai, becoming worthy of being the next leader of the Nura Clan. + + [Written by MAL Rewrite] + background: Advanced screenings of the first two episodes of Nurarihyon no Mago were held in select TOHO Cinemas on + June 13 and 20 of 2010. The full anime aired on Yomiuri TV, Tokyo MX, Chuukyou TV, BS11, Animax, among other stations + in Japan. + season: summer + year: 2010 + broadcast: + day: Tuesdays + time: 01:44 + timezone: Asia/Tokyo + string: Tuesdays at 01:44 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8246 + url: https://myanimelist.net/anime/8246/Naruto__Shippuuden_Movie_4_-_The_Lost_Tower + images: + jpg: + image_url: https://myanimelist.net/images/anime/1479/116734.jpg + small_image_url: https://myanimelist.net/images/anime/1479/116734t.jpg + large_image_url: https://myanimelist.net/images/anime/1479/116734l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1479/116734.webp + small_image_url: https://myanimelist.net/images/anime/1479/116734t.webp + large_image_url: https://myanimelist.net/images/anime/1479/116734l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/q4C4CZT8NTM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Naruto: Shippuuden Movie 4 - The Lost Tower' + - type: Synonym + title: Naruto Movie 7 + - type: Synonym + title: 'Gekijouban Naruto Shippuuden: The Lost Tower' + - type: Japanese + title: 劇場版 NARUTO-ナルト-疾風伝 ザ・ロストタワー + - type: English + title: 'Naruto Shippuden the Movie 4: The Lost Tower' + - type: German + title: 'Naruto Shippuden Film 4: The Lost Tower' + - type: French + title: 'Naruto Shippuden Film 4: The Lost Tower' + title: 'Naruto: Shippuuden Movie 4 - The Lost Tower' + title_english: 'Naruto Shippuden the Movie 4: The Lost Tower' + title_japanese: 劇場版 NARUTO-ナルト-疾風伝 ザ・ロストタワー + title_synonyms: + - Naruto Movie 7 + - 'Gekijouban Naruto Shippuuden: The Lost Tower' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 31, 2010 + duration: 1 hr 25 min + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 159422 + rank: 2630 + popularity: 1006 + members: 279444 + favorites: 237 + synopsis: |- + Led by Yamato, Naruto Uzumaki, Sakura Haruno, and Sai are assigned to capture Mukade, a rogue ninja who is pursuing the ancient chakra Ryuumyaku located underneath the Rouran ruins. While the Ryuumyaku has been sealed by the Fourth Hokage, the group fails to prevent Mukade from releasing its power. Consequently, a strong energy burst engulfs both Naruto and Yamato before they can escape. + + As he awakens in a magnificent yet hostile kingdom, Naruto meets its young queen Saara and three Konohagakure ninjas on a top-secret mission. They reveal to him that he has time-traveled to Rouran 20 years into the past! To make matters worse, Mukade has already infiltrated the royal court, becoming the naive queen's most trusted minister under the alias Anrokuzan. + + Joining forces with the three ninjas, Naruto must protect Saara's life without fail to stop the villain's plans and return to the present. + + [Written by MAL Rewrite] + background: 'Naruto: Shippuuden Movie 4 - The Lost Tower is set approximately in between episodes 152-156 of the Naruto: + Shippuuden anime series at the beginning of the "Pain''s Assault" arc. Along with the film, an exclusive animated + short feature named Naruto Soyokazeden Movie: Naruto to Mashin to Mitsu no Onegai Dattebayo!! was shown as well. To + celebrate the movie''s release on July 31, 2010, a one-hour episode titled "Naruto Shippuuden Big Adventure! The Quest + for the Fourth Hokage''s Legacy" was broadcasted on July 29, 2010. The DVD version was issued on April 27, 2011. The + film was released in North America on September 17, 2013 by Viz Media. According to a Pia Corporation survey, Naruto: + Shippuuden Movie 4 - The Lost Tower had been well received not only by children but also by women in their teens and + 20s. The movie has an animanga adaptation as well, released exclusively in Japan on August 4, 2011.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 5277 + url: https://myanimelist.net/anime/5277/Sekirei__Pure_Engagement + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75178.jpg + small_image_url: https://myanimelist.net/images/anime/10/75178t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75178l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75178.webp + small_image_url: https://myanimelist.net/images/anime/10/75178t.webp + large_image_url: https://myanimelist.net/images/anime/10/75178l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bq7zxY7IVao?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sekirei: Pure Engagement' + - type: Synonym + title: Sekirei 2 + - type: Japanese + title: セキレイ~Pure Engagement~ + - type: English + title: 'Sekirei: Pure Engagement' + title: 'Sekirei: Pure Engagement' + title_english: 'Sekirei: Pure Engagement' + title_japanese: セキレイ~Pure Engagement~ + title_synonyms: + - Sekirei 2 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-07-04T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Jul 4, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.26 + scored_by: 138390 + rank: 3578 + popularity: 1101 + members: 256053 + favorites: 555 + synopsis: |- + The second stage of the battle royale known as the Sekirei Plan is underway. Shintou Teito has been closed off; no Sekirei or Ashikabi may leave. Minato Sahashi and his harem of Sekirei must now prepare to fight new battles as changes to the rules are put into place. However, not all groups will return to the battle: some Sekirei are loved very much by their Ashikabi partners, who would rather forfeit the prize than see them perish. + + In the midst of the action, someone close to Minato may be more involved than he had ever imagined, and threats lurk around every corner. There are even rumors that the "Single Numbers," the most powerful type of Sekirei, have entered the fray. In the eyes of the "Game Master" Minaka Hiroto, everything is proceeding according to plan. + + [Written by MAL Rewrite] + background: First episode was previewed on Tokyo MX on June 13, 2010. Regular broadcasting began July 4, 2010. + season: summer + year: 2010 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8142 + url: https://myanimelist.net/anime/8142/Colorful_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1839/103426.jpg + small_image_url: https://myanimelist.net/images/anime/1839/103426t.jpg + large_image_url: https://myanimelist.net/images/anime/1839/103426l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1839/103426.webp + small_image_url: https://myanimelist.net/images/anime/1839/103426t.webp + large_image_url: https://myanimelist.net/images/anime/1839/103426l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dPDaQoUHCzU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Colorful (Movie) + - type: Synonym + title: Colourful + - type: Japanese + title: カラフル + - type: English + title: 'Colorful: The Motion Picture' + - type: German + title: Colorful + - type: Spanish + title: Colorful + - type: French + title: Colorful + title: Colorful (Movie) + title_english: 'Colorful: The Motion Picture' + title_japanese: カラフル + title_synonyms: + - Colourful + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-08-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 8 + year: 2010 + to: + day: null + month: null + year: null + string: Aug 21, 2010 + duration: 2 hr 7 min + rating: PG-13 - Teens 13 or older + score: 7.75 + scored_by: 92372 + rank: 1301 + popularity: 1303 + members: 215307 + favorites: 1338 + synopsis: |- + Upon arriving at the train station of death, an impure soul is granted a second chance at life against his will. Reincarnating into the body of Makoto Kobayashi, a 14-year-old boy who recently committed suicide, the soul is tasked to identify the boy's greatest sin in life within a time limit of six months. Although it remains reluctant toward continuing life as Makoto, the soul soon begins to notice the complexities of people's emotions and actions. + + Deconstructing the ideas of fractured families and suicide, Colorful explores the intricacies of the daily struggles humans face but are too abashed to confront. + + [Written by MAL Rewrite] + background: Based on the novel by Eto Mori, published in July 1998. Colorful won the award for Excellent Animation of + the Year at the 34th Japan Academy Prize and was nominated for Animation of the Year. It was also awarded the Animation + Film Award at the 65th Mainichi Film Awards. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + - mal_id: 473 + type: anime + name: Ascension + url: https://myanimelist.net/anime/producer/473/Ascension + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 6166 + url: https://myanimelist.net/anime/6166/Asobi_ni_Iku_yo + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/75583.jpg + small_image_url: https://myanimelist.net/images/anime/7/75583t.jpg + large_image_url: https://myanimelist.net/images/anime/7/75583l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/75583.webp + small_image_url: https://myanimelist.net/images/anime/7/75583t.webp + large_image_url: https://myanimelist.net/images/anime/7/75583l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TM3nhK-slGI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Asobi ni Iku yo! + - type: Synonym + title: Asobi ni Ikuyo! + - type: Synonym + title: Let's Go Play! + - type: Synonym + title: 'Asobi ni Ikuyo: Bombshells from the Sky' + - type: Japanese + title: あそびにいくヨ! + - type: English + title: Cat Planet Cuties + title: Asobi ni Iku yo! + title_english: Cat Planet Cuties + title_japanese: あそびにいくヨ! + title_synonyms: + - Asobi ni Ikuyo! + - Let's Go Play! + - 'Asobi ni Ikuyo: Bombshells from the Sky' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-11T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Jul 11, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.58 + scored_by: 95994 + rank: 7653 + popularity: 1309 + members: 214084 + favorites: 562 + synopsis: |- + High school student Kio Kakazu leads an ordinary life in Okinawa. When attending his grandfather's commemoration, a chance encounter with an eccentric girl named Eris—whose body features resemble a cat—makes him pass out. After finally waking up, Kio is surprised to discover a half-naked Eris right next to him! She explains that she is from a planet called Catia, and her duty is to research Earth and expand her kind's social network. + + Due to the warm welcome she received from his family, Eris decides to live in Kio's house. However, the pair's idyllic situation is threatened when people from secret organizations—including his own childhood friend, Manami Kinjou—all aim to seize Eris. If Kio wants to leave a positive impression of Earth on Eris, he has to protect her at all costs and convince everyone that she is not a threat to the planet. + + [Written by MAL Rewrite] + background: Asobi ni Iku yo! was released on Blu-ray and DVD in North America as Cat Planet Cuties by Funimation Entertainment + on September 18, 2012. The publisher rereleased the series on Blu-ray on April 7, 2020. + season: summer + year: 2010 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 913 + type: anime + name: Ryukyu Asahi Broadcasting + url: https://myanimelist.net/anime/producer/913/Ryukyu_Asahi_Broadcasting + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 292 + type: anime + name: AIC PLUS+ + url: https://myanimelist.net/anime/producer/292/AIC_PLUS_ + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 7059 + url: https://myanimelist.net/anime/7059/Black★Rock_Shooter_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/22417.jpg + small_image_url: https://myanimelist.net/images/anime/6/22417t.jpg + large_image_url: https://myanimelist.net/images/anime/6/22417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/22417.webp + small_image_url: https://myanimelist.net/images/anime/6/22417t.webp + large_image_url: https://myanimelist.net/images/anime/6/22417l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Black★Rock Shooter (OVA) + - type: Synonym + title: BRS OVA + - type: Japanese + title: ブラック★ロックシューター + title: Black★Rock Shooter (OVA) + title_english: null + title_japanese: ブラック★ロックシューター + title_synonyms: + - BRS OVA + type: OVA + source: Other + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 24, 2010 + duration: 52 min + rating: PG-13 - Teens 13 or older + score: 7.1 + scored_by: 108567 + rank: 4565 + popularity: 1546 + members: 179264 + favorites: 815 + synopsis: "On her first day of junior high school, Mato Kuroi meets Yomi Takanashi. Though Yomi is initially taken aback\ + \ by Mato's straightforward personality, the pair quickly becomes friends and begin to spend time together daily.\ + \ As a sign of their friendship, Mato gives Yomi a cell phone charm—a blue star, identical to her own.\n \nHowever,\ + \ when the two enter their second year, their relationship starts to change. Placed in a different class, Mato begins\ + \ to spend more time with Yuu Koutari instead, a girl she met through the basketball team. In fact, the former best\ + \ friends drift apart so much so that Mato cannot find Yomi anywhere, as if she had disappeared entirely.\n\nElsewhere,\ + \ Black★Rock Shooter is on a quest to vanquish the Dead Master. These two, while opposed, bear a connection not unlike\ + \ Mato and Yomi. As their stories begin to cross, it seems Yomi's disappearance may have to do with the blue star-shaped\ + \ charm and the legendary gunslinger herself.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 334 + type: anime + name: Ordet + url: https://myanimelist.net/anime/producer/334/Ordet + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 8408 + url: https://myanimelist.net/anime/8408/Durarara_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/28684.jpg + small_image_url: https://myanimelist.net/images/anime/4/28684t.jpg + large_image_url: https://myanimelist.net/images/anime/4/28684l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/28684.webp + small_image_url: https://myanimelist.net/images/anime/4/28684t.webp + large_image_url: https://myanimelist.net/images/anime/4/28684l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Durarara!! Specials + - type: Synonym + title: Durarara!! Episode 12.5 + - type: Synonym + title: Durarara!! Episode 25 + - type: Synonym + title: Dhurarara!! + - type: Synonym + title: Dyurarara!! + - type: Synonym + title: Dulalala!! + - type: Synonym + title: Dullalala!! + - type: Synonym + title: DRRR!! OVA + - type: Japanese + title: デュラララ!! + - type: English + title: Durarara!! Specials + title: Durarara!! Specials + title_english: Durarara!! Specials + title_japanese: デュラララ!! + title_synonyms: + - Durarara!! Episode 12.5 + - Durarara!! Episode 25 + - Dhurarara!! + - Dyurarara!! + - Dulalala!! + - Dullalala!! + - DRRR!! OVA + type: Special + source: Light novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-08-25T00:00:00+00:00' + to: '2011-02-23T00:00:00+00:00' + prop: + from: + day: 25 + month: 8 + year: 2010 + to: + day: 23 + month: 2 + year: 2011 + string: Aug 25, 2010 to Feb 23, 2011 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.83 + scored_by: 96552 + rank: 1101 + popularity: 1583 + members: 174066 + favorites: 154 + synopsis: |- + Celty Sturluson is tasked to deliver a suspicious red handbag as part of her courier duties—the problem is: it is being sought by several organizations. As she makes her way through Ikebukuro toward the place the bag is supposed to be brought to, she is chased by mysterious men speaking a foreign language, and her package ends up dragging many of the city's residents into the conflict. + + Subsequently, famous actor Yuuhei Hanejima has just arrived in Ikebukuro as part of a special TV program, searching for the best couple to give them a chance to appear in one of his movies. However, Yuuhei Hanejima is actually a stage name for Kasuka Heiwajima, Shizuo's younger brother, and when an anonymous internet user threatens to kill the superstar, this user learns the weight of what that relationship means. Moreover, Shizuo discovers that the one responsible for the attempted attack is the meddlesome pest that he loathes with a burning passion. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 7627 + url: https://myanimelist.net/anime/7627/Mitsudomoe + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/53947.jpg + small_image_url: https://myanimelist.net/images/anime/12/53947t.jpg + large_image_url: https://myanimelist.net/images/anime/12/53947l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/53947.webp + small_image_url: https://myanimelist.net/images/anime/12/53947t.webp + large_image_url: https://myanimelist.net/images/anime/12/53947l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mitsudomoe + - type: Synonym + title: Three Way Struggle + - type: Japanese + title: みつどもえ + - type: English + title: Mitsudomoe + title: Mitsudomoe + title_english: Mitsudomoe + title_japanese: みつどもえ + title_synonyms: + - Three Way Struggle + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-07-03T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Jul 3, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 46381 + rank: 2164 + popularity: 2159 + members: 117037 + favorites: 592 + synopsis: |- + When Satoshi Yabe, the newest teacher at an elementary school, is assigned as the homeroom teacher of class 6-3, he is in for a shock. The class is full of chaos and eccentric students, but none are more troublesome than the mischievous Marui triplets. Mitsuba is sadistic and unusually mature for her age; Futaba is both lewd and incredibly strong; and Hitoha, often absorbed in her erotic books, is quiet and ominous. + + As the sisters take an interest in Yabe, they start pestering him with endless antics. With misunderstandings and bizarre situations unfolding every day, Yabe's life at school is anything but boring. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2010 + broadcast: + day: Saturdays + time: 02:00 + timezone: Asia/Tokyo + string: Saturdays at 02:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: [] + studios: + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7858 + url: https://myanimelist.net/anime/7858/Sora_no_Otoshimono__Project_Pink + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/19135.jpg + small_image_url: https://myanimelist.net/images/anime/2/19135t.jpg + large_image_url: https://myanimelist.net/images/anime/2/19135l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/19135.webp + small_image_url: https://myanimelist.net/images/anime/2/19135t.webp + large_image_url: https://myanimelist.net/images/anime/2/19135l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sora no Otoshimono: Project Pink' + - type: Synonym + title: Sora no Otoshimono OVA + - type: Synonym + title: Sora no Otoshimono Special + - type: Synonym + title: Lost Property of the Sky OVA + - type: Synonym + title: Misplaced by Heaven OVA + - type: Japanese + title: そらのおとしもの プロジェクト桃源郷[ピンク] + - type: English + title: Heaven's Lost Property OVA + title: 'Sora no Otoshimono: Project Pink' + title_english: Heaven's Lost Property OVA + title_japanese: そらのおとしもの プロジェクト桃源郷[ピンク] + title_synonyms: + - Sora no Otoshimono OVA + - Sora no Otoshimono Special + - Lost Property of the Sky OVA + - Misplaced by Heaven OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-09-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 9 + year: 2010 + to: + day: null + month: null + year: null + string: Sep 9, 2010 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 62350 + rank: 3017 + popularity: 2182 + members: 114618 + favorites: 156 + synopsis: |- + The gang goes to an indoor swimming pool for some fun in the sun. As expected, all hell breaks loose when Tomoki goes on one of his perverted missions. + + Meanwhile, Nymph is having some issues with the loss of her master and considers asking Tomoki to be her replacement master. + + This episode was not aired on TV because it was deemed too dangerous... + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 6974 + url: https://myanimelist.net/anime/6974/Seikimatsu_Occult_Gakuin + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/75257.jpg + small_image_url: https://myanimelist.net/images/anime/5/75257t.jpg + large_image_url: https://myanimelist.net/images/anime/5/75257l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/75257.webp + small_image_url: https://myanimelist.net/images/anime/5/75257t.webp + large_image_url: https://myanimelist.net/images/anime/5/75257l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6GlvIM7tVN4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seikimatsu Occult Gakuin + - type: Synonym + title: Zaidanhoujin Occult Designer Gakuin + - type: Synonym + title: Seikimatsu Occult Academy + - type: Japanese + title: 世紀末オカルト学院 + - type: English + title: Occult Academy + - type: German + title: Occult Academy + - type: Spanish + title: Occult Academy + - type: French + title: Occult Academy + title: Seikimatsu Occult Gakuin + title_english: Occult Academy + title_japanese: 世紀末オカルト学院 + title_synonyms: + - Zaidanhoujin Occult Designer Gakuin + - Seikimatsu Occult Academy + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-07-06T00:00:00+00:00' + to: '2010-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2010 + to: + day: 28 + month: 9 + year: 2010 + string: Jul 6, 2010 to Sep 28, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.06 + scored_by: 44573 + rank: 4818 + popularity: 2241 + members: 110123 + favorites: 201 + synopsis: |- + The story revolves around Maya, the daughter of the former Headmaster of Waldstein Academy, and a time traveling agent Fumiaki Uchida. In the year 2012, the world had been invaded by aliens and time travelers were sent back to the year 1999 in order to find and destroy the Nostradamus Key, which Nostradamus Prophecy foretold as what would bring about the apocalypse. The series then turns to the year 1999, where Maya returns to the Academy with the intention of destroying the Academy by superseding her late father's position as the principal. Her plan was interrupted when she meets Fumiaki and learns of the forthcoming destruction. Despite being distrusting towards Fumiaki, they form a pact to look for the Nostradamus Key. + + In order to find the Nostradamus Key, time agents were provided with specially created cell phones. When a user finds an object of interest, by thinking of destroying it and taking a photo, and if the resulting image is that of a peaceful world, then the subject is the Nostradamus Key. Conversely, if the subject is not the Nostradamus Key, then the photo displays destruction. By using the phone, Maya and Fumiaki investigates occult occurrences as they occur in the town. + + (Source: Wikipedia) + background: Alongside and , Seikimatsu Occult Gakuin was part of the "Anime no Chikara" project, a project to create + more original anime, not based on any existing media. + season: summer + year: 2010 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 10298 + url: https://myanimelist.net/anime/10298/Kaichou_wa_Maid-sama__Goshujinsama_to_Asonjao♥ + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/28329.jpg + small_image_url: https://myanimelist.net/images/anime/9/28329t.jpg + large_image_url: https://myanimelist.net/images/anime/9/28329l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/28329.webp + small_image_url: https://myanimelist.net/images/anime/9/28329t.webp + large_image_url: https://myanimelist.net/images/anime/9/28329l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥' + - type: Synonym + title: Kaichou wa Maid-sama LaLa Special + - type: Synonym + title: Kaicho wa Maidsama LaLa Special + - type: Synonym + title: Kaichou wa Meido Sama LaLa Special + - type: Synonym + title: Class President is a Maid! LaLa Special + - type: Japanese + title: 会長はメイド様! ご主人様と遊んじゃお♥ + - type: English + title: Maid Sama! Play with Your Husband ♥ + title: 'Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥' + title_english: Maid Sama! Play with Your Husband ♥ + title_japanese: 会長はメイド様! ご主人様と遊んじゃお♥ + title_synonyms: + - Kaichou wa Maid-sama LaLa Special + - Kaicho wa Maidsama LaLa Special + - Kaichou wa Meido Sama LaLa Special + - Class President is a Maid! LaLa Special + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 24, 2010 + duration: 12 min + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 50545 + rank: 2929 + popularity: 2354 + members: 102955 + favorites: 153 + synopsis: |- + As she strives to be an upstanding student council president, Misaki Ayuzawa maintains the same dedication to her secret part-time job at a maid cafe. As if Misaki's everyday life is not busy enough, the people around her only make it more hectic. Each colorful member of the cast has a story to tell, expressing their personalities further by putting their own twist on familiar scenes. + + [Written by MAL Rewrite] + background: 'Kaichou wa Maid-sama!: Goshujinsama to Asonjao♥ is a special episode bundled with the September 2010 issue + of LaLa magazine.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 8768 + url: https://myanimelist.net/anime/8768/Hiyokoi + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/27766.jpg + small_image_url: https://myanimelist.net/images/anime/7/27766t.jpg + large_image_url: https://myanimelist.net/images/anime/7/27766l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/27766.webp + small_image_url: https://myanimelist.net/images/anime/7/27766t.webp + large_image_url: https://myanimelist.net/images/anime/7/27766l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hiyokoi + - type: Japanese + title: ひよ恋 + title: Hiyokoi + title_english: null + title_japanese: ひよ恋 + title_synonyms: [] + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 30, 2010 + duration: 22 min + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 50267 + rank: 3548 + popularity: 2421 + members: 98405 + favorites: 160 + synopsis: |- + After recovering from an accident, shy and small 15-year-old Hiyori Nishiyama is finally able to attend school again after a year. While trying to introduce herself in front of her class, she is interrupted by the tall and outgoing Yuushin Hirose. To make matters worse, their stark difference in height and personality starts to attract unwanted attention to Hiyori. + + Despite her unpleasant first impression of Yuushin, Hiyori becomes curious about his radiance. As the two set aside their differences, they quickly grow closer, encouraging Hiyori to break out of her shell. + + [Written by MAL Rewrite] + background: Premiered at the "Natsu Doki-Ribon-kko Party 55" (夏ドキッ★りぼんっ子パーティー55) event in Tokyo on July 30, 2010. The + event also ran in Osaka on August 6 and Nagoya on August 19. It was later released on DVD and bundled with the November + issue of Shoujo Magazine Ribon. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 6381 + url: https://myanimelist.net/anime/6381/Strike_Witches_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/25477.jpg + small_image_url: https://myanimelist.net/images/anime/13/25477t.jpg + large_image_url: https://myanimelist.net/images/anime/13/25477l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/25477.webp + small_image_url: https://myanimelist.net/images/anime/13/25477t.webp + large_image_url: https://myanimelist.net/images/anime/13/25477l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EsLFakIF6R0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Strike Witches 2 + - type: Japanese + title: ストライクウィッチーズ 2 + - type: English + title: Strike Witches 2 + title: Strike Witches 2 + title_english: Strike Witches 2 + title_japanese: ストライクウィッチーズ 2 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-08T00:00:00+00:00' + to: '2010-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2010 + to: + day: 23 + month: 9 + year: 2010 + string: Jul 8, 2010 to Sep 23, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.32 + scored_by: 42423 + rank: 3197 + popularity: 2584 + members: 88782 + favorites: 273 + synopsis: |- + Six months have passed since the victorious Battle of Britannia and the reclamation of Gallia from Neuroi invaders. Yoshika Miyafuji, member of the famed 501st Joint Fighter Wing, has come back home to Fuso and graduated from middle school. + + However, her fight is far from over. She receives a letter supposedly sent by her long-deceased father, containing blueprints of a state-of-the-art Striker Unit he had been working on before his death. The Unit, designed specifically for Yoshika, might be capable of harnessing her extraordinary magical powers. + + Meanwhile, a new threat in Europe is rising. A Neuroi nest of an unprecedented size and might has appeared over Venezia, wiping out local Witch forces and instantly swallowing the northern part of the country. To make matters worse, a newly spotted humanoid type of Neuroi is attempting to come into contact with humans. + + Yoshika, incapable of abandoning her friends on the front lines, must once again venture to the war-torn continent. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2010 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 83 + type: anime + name: AIC Spirits + url: https://myanimelist.net/anime/producer/83/AIC_Spirits + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 8577 + url: https://myanimelist.net/anime/8577/Aki-Sora__Yume_no_Naka + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/23461.jpg + small_image_url: https://myanimelist.net/images/anime/12/23461t.jpg + large_image_url: https://myanimelist.net/images/anime/12/23461l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/23461.webp + small_image_url: https://myanimelist.net/images/anime/12/23461t.webp + large_image_url: https://myanimelist.net/images/anime/12/23461l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Aki-Sora: Yume no Naka' + - type: Synonym + title: 'Aki-Sora: Yume no Naka' + - type: Japanese + title: あきそら~夢の中~ + - type: English + title: 'Aki-Sora: In a Dream' + title: 'Aki-Sora: Yume no Naka' + title_english: 'Aki-Sora: In a Dream' + title_japanese: あきそら~夢の中~ + title_synonyms: + - 'Aki-Sora: Yume no Naka' + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-07-30T00:00:00+00:00' + to: '2010-11-17T00:00:00+00:00' + prop: + from: + day: 30 + month: 7 + year: 2010 + to: + day: 17 + month: 11 + year: 2010 + string: Jul 30, 2010 to Nov 17, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 5.99 + scored_by: 47298 + rank: null + popularity: 2701 + members: 83199 + favorites: 141 + synopsis: |- + Siblings Aki and Sora Aoi have been in a secret relationship ever since they confessed their feelings to each other on a rainy day. Sora's twin sister Nami—unaware that his affections lie elsewhere—decides to have him join the Fashion Research Club at school in an attempt to set him up with their classmate, Kana Sumiya. + + However, Nami's actions mask painful truths. While her motives appear like those of a good sister trying to help her brother finally get a girlfriend, she is harboring secret, forbidden feelings of her own. + + [Written by MAL Rewrite] + background: 'Aki-Sora: Yume no Naka was released on DVD and Blu-ray by Kitty Media on May 24, 2013 and January 30, 2018 + respectively. The OVA was later bundled alongside Kanojo x Kanojo x Kanojo: Sanshimai to no DokiDoki Kyoudou Seikatsu + in the Blu-ray and DVD versions of Kitty Media''s Double-Disc Delight, released on February 4, 2020.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: [] + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7695 + url: https://myanimelist.net/anime/7695/Pokemon_Movie_13__Genei_no_Hasha_Zoroark + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/26915.jpg + small_image_url: https://myanimelist.net/images/anime/5/26915t.jpg + large_image_url: https://myanimelist.net/images/anime/5/26915l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/26915.webp + small_image_url: https://myanimelist.net/images/anime/5/26915t.webp + large_image_url: https://myanimelist.net/images/anime/5/26915l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3Iy3UlYdF9U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Pokemon Movie 13: Genei no Hasha Zoroark' + - type: Synonym + title: 'Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark' + - type: Synonym + title: 'Pokemon Diamond & Pearl: Genei no Hasha Zoroark' + - type: Japanese + title: ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク + - type: English + title: 'Pokémon: Zoroark: Master of Illusions' + - type: German + title: 'Pokémon Film 13: Zoroark Meister der Illusionen' + - type: Spanish + title: 'Pokémon Película 13: Zoroark, el Maestro de las Ilusiones' + - type: French + title: 'Pokémon Film 13: Zoroark Le Maitre des Illusions' + title: 'Pokemon Movie 13: Genei no Hasha Zoroark' + title_english: 'Pokémon: Zoroark: Master of Illusions' + title_japanese: ポケットモンスター ダイヤモンド&パール 幻影の覇者 ゾロアーク + title_synonyms: + - 'Gekijouban Pocket Monsters Diamond and Pearl: Phantom Ruler Zoroark' + - 'Pokemon Diamond & Pearl: Genei no Hasha Zoroark' + type: Movie + source: Game + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-07-10T00:00:00+00:00' + to: null + prop: + from: + day: 10 + month: 7 + year: 2010 + to: + day: null + month: null + year: null + string: Jul 10, 2010 + duration: 1 hr 35 min + rating: PG - Children + score: 6.9 + scored_by: 48206 + rank: 5703 + popularity: 2732 + members: 81597 + favorites: 33 + synopsis: |- + The shapeshifting Pokémon Zorua and Zoroark are captured by a mysterious group intent on using their illusory powers for their own gain. They unleash Zoroark on Crown City, forcing her beforehand to take the form of Suicune, Entei, and Raikou, the guardians of the town. + + As Satoshi and his companions visit Crown City to watch the much-anticipated Pokémon Baccer World Cup, they encounter Zorua, who managed to escape captivity. At the same time, Zoroark goes on a rampage, unaware of Zorua's breakout. Disguised as the Legendary Beast Trio, she starts destroying the city and terrorizing its inhabitants. + + Will Satoshi manage to stop the deranged Pokémon before Crown City perishes? Will the sudden arrival of long-unseen Celebi change the outcome of the seemingly inevitable clash between Zoroark and the impersonated Legendary Beasts? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + - mal_id: 499 + type: anime + name: The Pokemon Company International + url: https://myanimelist.net/anime/producer/499/The_Pokemon_Company_International + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 6634 + url: https://myanimelist.net/anime/6634/Sengoku_Basara_Ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/80999.jpg + small_image_url: https://myanimelist.net/images/anime/6/80999t.jpg + large_image_url: https://myanimelist.net/images/anime/6/80999l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/80999.webp + small_image_url: https://myanimelist.net/images/anime/6/80999t.webp + large_image_url: https://myanimelist.net/images/anime/6/80999l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cUnebWeMhf8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sengoku Basara Ni + - type: Synonym + title: Sengoku Basara Two + - type: Synonym + title: Sengoku Basara 2 + - type: Japanese + title: 戦国BASARA 弐 + - type: English + title: 'Sengoku Basara: Samurai Kings 2' + - type: German + title: Sengoku Basara Samurai Kings 2 + title: Sengoku Basara Ni + title_english: 'Sengoku Basara: Samurai Kings 2' + title_japanese: 戦国BASARA 弐 + title_synonyms: + - Sengoku Basara Two + - Sengoku Basara 2 + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-07-11T00:00:00+00:00' + to: '2010-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2010 + to: + day: 26 + month: 9 + year: 2010 + string: Jul 11, 2010 to Sep 26, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 34961 + rank: 2263 + popularity: 2883 + members: 74157 + favorites: 168 + synopsis: |- + The deadly confrontation with the Devil King, Oda Nobunaga is over, but the struggle for supremacy continues in Warring Countries-era Japan, as the armies of Takeda Shingen and Uesugi Kenshin repeatedly engage battle at Kawanakajima. + + Meanwhile, on the easternmost side of the battlefield, two outstanding characters bound by destiny—one clad in azure and the other in crimson—are about to clash in a long-awaited, decisive duel. + + Then a sudden dispatch informs that a huge army has surrounded the forces of Takeda, Uesugi and Date at Kakanakajima. Their leader is Toyotomi Hideyoshi, the man who inherited Nobunaga's dreams and ambitions, and who is now going to bring havoc over Japan once again! + + (Source: Production I.G) + background: '' + season: summer + year: 2010 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: [] + - mal_id: 9047 + url: https://myanimelist.net/anime/9047/Toaru_Kagaku_no_Railgun__Misaka-san_wa_Ima_Chuumoku_no_Mato_desu_kara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1134/98125.jpg + small_image_url: https://myanimelist.net/images/anime/1134/98125t.jpg + large_image_url: https://myanimelist.net/images/anime/1134/98125l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1134/98125.webp + small_image_url: https://myanimelist.net/images/anime/1134/98125t.webp + large_image_url: https://myanimelist.net/images/anime/1134/98125l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Toaru Kagaku no Railgun: Misaka-san wa Ima Chuumoku no Mato desu kara' + - type: Synonym + title: Toaru Kagaku no Railgun OVA + - type: Synonym + title: Toaru Kagaku no Choudenjihou OVA + - type: Synonym + title: A Certain Scientific Railgun OVA + - type: Japanese + title: とある科学の超電磁砲 御坂さんはいま注目の的ですから + - type: English + title: 'A Certain Scientific Railgun OVA: Since Misaka-san is the Center of Attention Right Now...' + title: 'Toaru Kagaku no Railgun: Misaka-san wa Ima Chuumoku no Mato desu kara' + title_english: 'A Certain Scientific Railgun OVA: Since Misaka-san is the Center of Attention Right Now...' + title_japanese: とある科学の超電磁砲 御坂さんはいま注目の的ですから + title_synonyms: + - Toaru Kagaku no Railgun OVA + - Toaru Kagaku no Choudenjihou OVA + - A Certain Scientific Railgun OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-09-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 9 + year: 2010 + to: + day: null + month: null + year: null + string: Sep 26, 2010 + duration: 34 min + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 36195 + rank: 2556 + popularity: 2970 + members: 70956 + favorites: 35 + synopsis: Continuing after the Level Upper incident, another phenomenon torments Misaka. A phenomenon called "Someone's + Watching," its effect feels like the electricity in one's body flow backwards. With the help of her friends, Misaka + fights against the unknown enemy. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/04-2010-fall.yaml b/test/fixtures/jikan/season_matrix/04-2010-fall.yaml new file mode 100644 index 0000000..ed43b5f --- /dev/null +++ b/test/fixtures/jikan/season_matrix/04-2010-fall.yaml @@ -0,0 +1,3260 @@ +metadata: + captured_at: '2026-05-11T11:32:29Z' + label: 2010-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2010/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:29 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:8193a1536a0fdd50115550731c8016ba9f95876d + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 7 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 172 + per_page: 25 + data: + - mal_id: 8769 + url: https://myanimelist.net/anime/8769/Ore_no_Imouto_ga_Konnani_Kawaii_Wake_ga_Nai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1508/129576.jpg + small_image_url: https://myanimelist.net/images/anime/1508/129576t.jpg + large_image_url: https://myanimelist.net/images/anime/1508/129576l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1508/129576.webp + small_image_url: https://myanimelist.net/images/anime/1508/129576t.webp + large_image_url: https://myanimelist.net/images/anime/1508/129576l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f_2F7u2-6yc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai + - type: Synonym + title: My Little Sister Can't Be This Cute + - type: Japanese + title: 俺の妹がこんなに可愛いわけがない + - type: English + title: OreImo + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai + title_english: OreImo + title_japanese: 俺の妹がこんなに可愛いわけがない + title_synonyms: + - My Little Sister Can't Be This Cute + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-03T00:00:00+00:00' + to: '2010-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2010 + to: + day: 19 + month: 12 + year: 2010 + string: Oct 3, 2010 to Dec 19, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.92 + scored_by: 402490 + rank: 5586 + popularity: 328 + members: 719627 + favorites: 4634 + synopsis: "Kirino Kousaka embodies the ideal student with equally entrancing looks. Her grades are near perfect, and\ + \ to cover her personal expenses, she works as a professional model alongside her best friend Ayase Aragaki, who abhors\ + \ liars and all things otaku. But what Ayase doesn't know is that Kirino harbors a deep, entrenched secret that will\ + \ soon be brought to light.\n\nAt home one day, Kyousuke, Kirino's perfectly average brother, stumbles upon an erotic\ + \ game that belongs to none other than his seemingly flawless little sister. With her reputation at stake, Kirino\ + \ places a gag order on her sibling while simultaneously introducing him to the world of eroge and anime. Through\ + \ Kirino, Kyousuke encounters the gothic lolita Ruri Gokou and the bespectacled otaku Saori Makishima, thus jump-starting\ + \ an entirely new lifestyle. But as he becomes more and more involved in his little sister's secret life, it becomes\ + \ that much harder to keep under wraps. \n\n[Written by MAL Rewrite]" + background: Ore no Imouto ga Konnani Kawaii Wake ga Nai also has a drama CD, a radio show and video games based on the + franchise. + season: fall + year: 2010 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 755 + type: anime + name: Jumondou + url: https://myanimelist.net/anime/producer/755/Jumondou + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 8525 + url: https://myanimelist.net/anime/8525/Kami_nomi_zo_Shiru_Sekai + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/43361.jpg + small_image_url: https://myanimelist.net/images/anime/2/43361t.jpg + large_image_url: https://myanimelist.net/images/anime/2/43361l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/43361.webp + small_image_url: https://myanimelist.net/images/anime/2/43361t.webp + large_image_url: https://myanimelist.net/images/anime/2/43361l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OdBmj4TWqzk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kami nomi zo Shiru Sekai + - type: Synonym + title: Kaminomi + - type: Japanese + title: 神のみぞ知るセカイ + - type: English + title: The World God Only Knows + - type: German + title: The World God Only Knows + - type: French + title: Que sa volonté Soit Faite + title: Kami nomi zo Shiru Sekai + title_english: The World God Only Knows + title_japanese: 神のみぞ知るセカイ + title_synonyms: + - Kaminomi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-07T00:00:00+00:00' + to: '2010-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2010 + to: + day: 23 + month: 12 + year: 2010 + string: Oct 7, 2010 to Dec 23, 2010 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.64 + scored_by: 347973 + rank: 1662 + popularity: 368 + members: 663702 + favorites: 5897 + synopsis: |- + Keima Katsuragi, known online as the legendary "God of Conquest," can conquer any girl's heart—in dating sim games, at least. In reality, he opts for the two-dimensional world of gaming over real life because he is an unhealthily obsessed otaku of galge games (a type of Japanese video game centered on interactions with attractive girls). + + When he arrogantly accepts an anonymous offer to prove his supremacy at dating sim games, Keima is misled into aiding a naive and impish demon from hell named Elucia "Elsie" de Lute Ima with her mission: retrieving runaway evil spirits who have escaped from hell and scattered themselves throughout the human world. Keima discovers that the only way to capture these spirits is to conquer what he hates the most: the unpredictable hearts of three-dimensional girls! Shackled to Elsie via a deadly collar, Keima now has his title of "God of Conquest" put to the ultimate test as he is forced to navigate through the hearts of a multitude of real-life girls. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Thursdays + time: 01:50 + timezone: Asia/Tokyo + string: Thursdays at 01:50 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 7674 + url: https://myanimelist.net/anime/7674/Bakuman + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/26138.jpg + small_image_url: https://myanimelist.net/images/anime/6/26138t.jpg + large_image_url: https://myanimelist.net/images/anime/6/26138l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/26138.webp + small_image_url: https://myanimelist.net/images/anime/6/26138t.webp + large_image_url: https://myanimelist.net/images/anime/6/26138l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KB7QDax8PtY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bakuman. + - type: Synonym + title: Bakuman Season 1 + - type: Japanese + title: バクマン。 + - type: English + title: Bakuman. + - type: German + title: Bakuman + title: Bakuman. + title_english: Bakuman. + title_japanese: バクマン。 + title_synonyms: + - Bakuman Season 1 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2010-10-02T00:00:00+00:00' + to: '2011-04-02T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2010 + to: + day: 2 + month: 4 + year: 2011 + string: Oct 2, 2010 to Apr 2, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.17 + scored_by: 311281 + rank: 493 + popularity: 372 + members: 658165 + favorites: 9669 + synopsis: |- + As a child, Moritaka Mashiro dreamt of becoming a mangaka, just like his childhood hero and uncle, Tarou Kawaguchi, creator of a popular gag manga. But when tragedy strikes, he gives up on his dream and spends his middle school days studying, aiming to become a salaryman instead. + + One day, his classmate Akito Takagi, the school's top student and aspiring writer, notices the detailed drawings in Moritaka's notebook. Seeing the vast potential of his artistic talent, Akito approaches Moritaka, proposing that they become mangaka together. After much convincing, Moritaka realizes that if he is able to create a popular manga series, he may be able to get the girl he has a crush on, Miho Azuki, to take part in the anime adaptation as a voice actor. Thus the pair begins creating manga under the pen name Muto Ashirogi, hoping to become the greatest mangaka in Japan, the likes of which no one has ever seen. + + [Written by MAL Rewrite] + background: Bakuman. was licensed by Media Blasters in North America, but only released one 2-disc DVD containing the + first 7 episodes, the rest of the releases were cancelled. + season: fall + year: 2010 + broadcast: + day: Saturdays + time: '18:00' + timezone: Asia/Tokyo + string: Saturdays at 18:00 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8861 + url: https://myanimelist.net/anime/8861/Yosuga_no_Sora + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/76216.jpg + small_image_url: https://myanimelist.net/images/anime/5/76216t.jpg + large_image_url: https://myanimelist.net/images/anime/5/76216l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/76216.webp + small_image_url: https://myanimelist.net/images/anime/5/76216t.webp + large_image_url: https://myanimelist.net/images/anime/5/76216l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GWASk2j2CAc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yosuga no Sora + - type: Synonym + title: Sky of Connection + - type: Japanese + title: ヨスガノソラ + - type: English + title: 'Yosuga no Sora: In Solitude, Where We Are Least Alone' + - type: German + title: Yosuga No Sora + - type: French + title: 'Yosuga No Sora: In Solitude Where We Are Least Alone' + title: Yosuga no Sora + title_english: 'Yosuga no Sora: In Solitude, Where We Are Least Alone' + title_japanese: ヨスガノソラ + title_synonyms: + - Sky of Connection + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-04T00:00:00+00:00' + to: '2010-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2010 + to: + day: 20 + month: 12 + year: 2010 + string: Oct 4, 2010 to Dec 20, 2010 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 5.99 + scored_by: 286886 + rank: 11074 + popularity: 462 + members: 546898 + favorites: 2763 + synopsis: "Due to a sudden accident, twins Haruka and Sora Kasugano have lost both of their parents. Starting their\ + \ lives anew, they return to their childhood home—living once again in the rural, quaint town like they did four years\ + \ ago. \n\nHowever, revisiting such a nostalgic place also means recalling all the memories the two of them made together,\ + \ be it those that gave them blissful joy or those that made them suffer painful sorrow. Meeting both old acquaintances\ + \ and new companions alike, the story of Haruka and Sora only gets more convoluted as their lives are slowly influenced\ + \ by different acts of love, friendship, envy—and perhaps even lust.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2010 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 8937 + url: https://myanimelist.net/anime/8937/Toaru_Majutsu_no_Index_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75612.jpg + small_image_url: https://myanimelist.net/images/anime/9/75612t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75612l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75612.webp + small_image_url: https://myanimelist.net/images/anime/9/75612t.webp + large_image_url: https://myanimelist.net/images/anime/9/75612l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Mfcjy8n4dQs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Majutsu no Index II + - type: Synonym + title: Toaru Majutsu no Index 2 + - type: Synonym + title: Toaru Majutsu no Kinsho Mokuroku 2 + - type: Japanese + title: とある魔術の禁書目録Ⅱ + - type: English + title: A Certain Magical Index II + - type: Spanish + title: A Certain Magical Index Temporada 2 + title: Toaru Majutsu no Index II + title_english: A Certain Magical Index II + title_japanese: とある魔術の禁書目録Ⅱ + title_synonyms: + - Toaru Majutsu no Index 2 + - Toaru Majutsu no Kinsho Mokuroku 2 + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2010-10-08T00:00:00+00:00' + to: '2011-04-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2010 + to: + day: 1 + month: 4 + year: 2011 + string: Oct 8, 2010 to Apr 1, 2011 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.51 + scored_by: 262173 + rank: 2220 + popularity: 538 + members: 485742 + favorites: 1739 + synopsis: |- + As tensions between the world of magic and Academy City continues to rise, Touma Kamijou and his hand of negation must face off against both esper and magician in order to protect the lives of those around him. Of course, he is not alone in his fight; whether by his side or out of sight, allies and enemies both old and new will enter the fray to help him. + + Toaru Majutsu no Index II continues the story of action and comedy, as the scale of Touma and his allies' battle grows ever larger. A conflict is slowly brewing on the horizon, and magic and science will cross paths once again in the war to come. + + [Written by MAL Rewrite] + background: Toaru Majutsu no Index II adapts novels 7 to 13 of Kazuma Kamachi's light novel series of the same title + and the first novel of the side story series Toaru Majutsu no Index SS. + season: fall + year: 2010 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 8795 + url: https://myanimelist.net/anime/8795/Panty___Stocking_with_Garterbelt + images: + jpg: + image_url: https://myanimelist.net/images/anime/1296/142674.jpg + small_image_url: https://myanimelist.net/images/anime/1296/142674t.jpg + large_image_url: https://myanimelist.net/images/anime/1296/142674l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1296/142674.webp + small_image_url: https://myanimelist.net/images/anime/1296/142674t.webp + large_image_url: https://myanimelist.net/images/anime/1296/142674l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iZbGlVqKXTM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Panty & Stocking with Garterbelt + - type: Synonym + title: PanSto + - type: Synonym + title: PSG + - type: Japanese + title: パンティ&ストッキングwithガーターベルト + - type: English + title: Panty & Stocking with Garterbelt + title: Panty & Stocking with Garterbelt + title_english: Panty & Stocking with Garterbelt + title_japanese: パンティ&ストッキングwithガーターベルト + title_synonyms: + - PanSto + - PSG + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-10-02T00:00:00+00:00' + to: '2010-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2010 + to: + day: 25 + month: 12 + year: 2010 + string: Oct 2, 2010 to Dec 25, 2010 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.74 + scored_by: 220285 + rank: 1341 + popularity: 595 + members: 446937 + favorites: 6690 + synopsis: |- + The "Anarchy Sisters," Panty and Stocking, have been kicked out of Heaven for, to put it mildly, misbehaving. Led by a priest named Garterbelt, these angels must buy their way back by exterminating ghosts in Daten City. But this task requires unconventional weapons for these unorthodox angels—they transform their lingerie into weapons to dispatch the spirits. Unfortunately, neither of them take their duties seriously, as they rather spend their time in pursuit of other "hobbies": Panty prefers to sleep with anything that walks, and Stocking favors stuffing her face with sweets than hunting ghosts. + + Follow these two unruly angels as they battle ghosts, an overflow of bodily fluids, and their own tendency to get side-tracked in Panty & Stocking with Garterbelt. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Saturdays + time: 02:00 + timezone: Asia/Tokyo + string: Saturdays at 02:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 685 + type: anime + name: Kadokawa Contents Gate + url: https://myanimelist.net/anime/producer/685/Kadokawa_Contents_Gate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 6 + type: anime + name: Gainax + url: https://myanimelist.net/anime/producer/6/Gainax + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 9181 + url: https://myanimelist.net/anime/9181/Motto_To_LOVE-Ru + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/59875.jpg + small_image_url: https://myanimelist.net/images/anime/4/59875t.jpg + large_image_url: https://myanimelist.net/images/anime/4/59875l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/59875.webp + small_image_url: https://myanimelist.net/images/anime/4/59875t.webp + large_image_url: https://myanimelist.net/images/anime/4/59875l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TZlnXHWCnsE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Motto To LOVE-Ru + - type: Synonym + title: Motto To-Love-Ru + - type: Synonym + title: More Trouble + - type: Synonym + title: More ToLoveRu + - type: Japanese + title: もっと To LOVEる -とらぶる- + - type: English + title: Motto To LOVE Ru + - type: German + title: Motto To Love Ru + - type: Spanish + title: Motto To Love Ru + title: Motto To LOVE-Ru + title_english: Motto To LOVE Ru + title_japanese: もっと To LOVEる -とらぶる- + title_synonyms: + - Motto To-Love-Ru + - More Trouble + - More ToLoveRu + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-06T00:00:00+00:00' + to: '2010-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2010 + to: + day: 22 + month: 12 + year: 2010 + string: Oct 6, 2010 to Dec 22, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.26 + scored_by: 200907 + rank: 3561 + popularity: 776 + members: 354525 + favorites: 1001 + synopsis: |- + Rito Yuuki never gets a break—he's always finding himself in lewd accidents with girls around him. Although his heart still yearns for Haruna, his childhood love, Rito can't help but question his feelings for Lala, the alien princess who appeared in front of him and declared she would marry him. But now, it's not just Lala he has to deal with: her younger twin sisters, Momo and Nana, have also traveled to Earth, wanting to meet their older sister's fiancé, and just as luck would have it, they end up staying at Rito's home. + + Meanwhile, amidst the bustle of his new family members, Yami, the human weapon girl, begins her pursuit for Rito. It's not an easy life for Rito as he deals with uncertain love, punishment for being a pervert, and a girl dead set on murdering him. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Wednesdays + time: 02:00 + timezone: Asia/Tokyo + string: Wednesdays at 02:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8407 + url: https://myanimelist.net/anime/8407/Sora_no_Otoshimono_Forte + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/50309.jpg + small_image_url: https://myanimelist.net/images/anime/11/50309t.jpg + large_image_url: https://myanimelist.net/images/anime/11/50309l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/50309.webp + small_image_url: https://myanimelist.net/images/anime/11/50309t.webp + large_image_url: https://myanimelist.net/images/anime/11/50309l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VDLlcBr0v0k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sora no Otoshimono Forte + - type: Synonym + title: 'Sora no Otoshimono: f' + - type: Synonym + title: Lost Property of the Sky 2 + - type: Synonym + title: Misplaced by Heaven 2 + - type: Synonym + title: Heaven's Lost Property 2 + - type: Japanese + title: そらのおとしものf(フォルテ) + - type: English + title: Heaven's Lost Property Forte + title: Sora no Otoshimono Forte + title_english: Heaven's Lost Property Forte + title_japanese: そらのおとしものf(フォルテ) + title_synonyms: + - 'Sora no Otoshimono: f' + - Lost Property of the Sky 2 + - Misplaced by Heaven 2 + - Heaven's Lost Property 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-02T00:00:00+00:00' + to: '2010-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2010 + to: + day: 18 + month: 12 + year: 2010 + string: Oct 2, 2010 to Dec 18, 2010 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 174286 + rank: 2641 + popularity: 921 + members: 305342 + favorites: 895 + synopsis: |- + Sakurai Tomoki has settled into his life with the two angeloids, Ikaros and Nymph, and is enjoying himself immensely. However, he keeps having weird dreams and asks all of his friends to help him investigate the cause. + + Nymph conjures up a device that enables people, but not angeloids, to enter other people's dreams. The device malfunctions at first but eventually they get to what was supposed to be Tomoki's dream but discover that something is very wrong with it. + + Later, a meteor comes crashing down from the skies at the site of the large cherry blossom tree where Tomoki first discovered Ikaros. An extremely well endowed blonde angeloid with a huge sword emerges from the meteor and sets off in search of Tomoki! + background: The first episode was aired during a special event on Sunday, September 19, 2010 in Laforet Museum Roppongi, + Tokyo. The television broadcast started on October 2, 2010. + season: fall + year: 2010 + broadcast: + day: Saturdays + time: 01:00 + timezone: Asia/Tokyo + string: Saturdays at 01:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9062 + url: https://myanimelist.net/anime/9062/Angel_Beats_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/25073.jpg + small_image_url: https://myanimelist.net/images/anime/4/25073t.jpg + large_image_url: https://myanimelist.net/images/anime/4/25073l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/25073.webp + small_image_url: https://myanimelist.net/images/anime/4/25073t.webp + large_image_url: https://myanimelist.net/images/anime/4/25073l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Angel Beats! Specials + - type: Synonym + title: 'Angel Beats!: Stairway to Heaven' + - type: Synonym + title: 'Angel Beats!: Hell''s Kitchen' + - type: Japanese + title: エンジェルビーツ + title: Angel Beats! Specials + title_english: null + title_japanese: エンジェルビーツ + title_synonyms: + - 'Angel Beats!: Stairway to Heaven' + - 'Angel Beats!: Hell''s Kitchen' + type: Special + source: Original + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-12-22T00:00:00+00:00' + to: '2015-06-24T00:00:00+00:00' + prop: + from: + day: 22 + month: 12 + year: 2010 + to: + day: 24 + month: 6 + year: 2015 + string: Dec 22, 2010 to Jun 24, 2015 + duration: 27 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 165109 + rank: 1995 + popularity: 996 + members: 282741 + favorites: 332 + synopsis: |- + As the Shinda Sekai Sensen (SSS) continue their vindictive rebellion against God, their leader, Yuri Nakamura, comes up with an ingenious plan to escape the afterlife. Her subordinates prepare to carry out "Operation High Tension Syndrome" to deceive Kanade Tachibana, student council president and alleged associate of God, into thinking that they are ready to pass on. With a week's worth of food on the line and with Heaven as the ultimate prize, will the SSS members be able to fool the inscrutable Kanade? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 203 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/producer/203/Visual_Arts + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 8129 + url: https://myanimelist.net/anime/8129/Kuragehime + images: + jpg: + image_url: https://myanimelist.net/images/anime/1764/133575.jpg + small_image_url: https://myanimelist.net/images/anime/1764/133575t.jpg + large_image_url: https://myanimelist.net/images/anime/1764/133575l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1764/133575.webp + small_image_url: https://myanimelist.net/images/anime/1764/133575t.webp + large_image_url: https://myanimelist.net/images/anime/1764/133575l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sipUVHlDbgI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuragehime + - type: Synonym + title: Kuragehime + - type: Japanese + title: 海月姫 + - type: English + title: Princess Jellyfish + - type: German + title: Princess Jellyfish + - type: French + title: Princess Jellyfish + title: Kuragehime + title_english: Princess Jellyfish + title_japanese: 海月姫 + title_synonyms: + - Kuragehime + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2010-10-15T00:00:00+00:00' + to: '2010-12-31T00:00:00+00:00' + prop: + from: + day: 15 + month: 10 + year: 2010 + to: + day: 31 + month: 12 + year: 2010 + string: Oct 15, 2010 to Dec 31, 2010 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 120011 + rank: 583 + popularity: 1067 + members: 264900 + favorites: 5263 + synopsis: |- + Ever since her late mother took her to an aquarium when she was young, Tsukimi Kurashita has been obsessed with jellyfish, comparing their flowing tentacles to a princess's white dress. Now living with five other unemployed otaku women, 19-year-old Tsukimi spends her days as a social outcast dreaming of becoming an illustrator. + + However, her life changes forever when one day, a beautiful woman unexpectedly helps her save a jellyfish in a local pet store. From then on, the stranger—confident, fashionable, and the complete opposite of Tsukimi and her roommates—begins to regularly visit the girls' building. This trendy hipster, though appearing shallow at first, harbors some secrets of her own, starting with the fact that "she" isn't really a girl at all, but a wealthy male college student named Kuranosuke Koibuchi! + + [Written by MAL Rewrite] + background: Kuragehime was simulcast on FUNimation in Fall 2010, and became available as a DVD and Blu-ray release the + following year. Kuragehime was also briefly available for streaming on Netflix as Princess Jellyfish. + season: fall + year: 2010 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 81 + type: anime + name: Crossdressing + url: https://myanimelist.net/anime/genre/81/Crossdressing + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 8460 + url: https://myanimelist.net/anime/8460/Mirai_Nikki + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/22971.jpg + small_image_url: https://myanimelist.net/images/anime/10/22971t.jpg + large_image_url: https://myanimelist.net/images/anime/10/22971l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/22971.webp + small_image_url: https://myanimelist.net/images/anime/10/22971t.webp + large_image_url: https://myanimelist.net/images/anime/10/22971l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mirai Nikki + - type: Synonym + title: Mirai Nikki OVA + - type: Japanese + title: 未来日記 + - type: English + title: The Future Diary OVA + - type: German + title: Mirai Nikki OVAs + title: Mirai Nikki + title_english: The Future Diary OVA + title_japanese: 未来日記 + title_synonyms: + - Mirai Nikki OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-12-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 12 + year: 2010 + to: + day: null + month: null + year: null + string: Dec 9, 2010 + duration: 8 min + rating: R - 17+ (violence & profanity) + score: 7.18 + scored_by: 134945 + rank: 4091 + popularity: 1102 + members: 255060 + favorites: 2530 + synopsis: A short OVA that was bundled with the limited edition of the eleventh volume of the manga. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10067 + url: https://myanimelist.net/anime/10067/Angel_Beats_Another_Epilogue + images: + jpg: + image_url: https://myanimelist.net/images/anime/1399/131410.jpg + small_image_url: https://myanimelist.net/images/anime/1399/131410t.jpg + large_image_url: https://myanimelist.net/images/anime/1399/131410l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1399/131410.webp + small_image_url: https://myanimelist.net/images/anime/1399/131410t.webp + large_image_url: https://myanimelist.net/images/anime/1399/131410l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Angel Beats! Another Epilogue + - type: Japanese + title: エンジェルビーツ! アナザーエピローグ + title: Angel Beats! Another Epilogue + title_english: null + title_japanese: エンジェルビーツ! アナザーエピローグ + title_synonyms: [] + type: Special + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-12-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 12 + year: 2010 + to: + day: null + month: null + year: null + string: Dec 22, 2010 + duration: 2 min + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 148789 + rank: 2461 + popularity: 1122 + members: 252059 + favorites: 245 + synopsis: |- + Disillusioned with the afterlife, a new student causes a scene during a classroom test and expresses his doubts about whether getting good grades can really lead to escaping the school and ascending to Heaven. Afterwards, he is confronted by the new student council president—a familiar face whose past experiences give him powerful insight into the true nature of the school and first-hand knowledge regarding the futility of rebellion. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 203 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/producer/203/Visual_Arts + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 8424 + url: https://myanimelist.net/anime/8424/MM + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/85871.jpg + small_image_url: https://myanimelist.net/images/anime/8/85871t.jpg + large_image_url: https://myanimelist.net/images/anime/8/85871l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/85871.webp + small_image_url: https://myanimelist.net/images/anime/8/85871t.webp + large_image_url: https://myanimelist.net/images/anime/8/85871l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YAIn8wNFJ6Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: MM! + - type: Synonym + title: MM! Group + - type: Synonym + title: Emu Emu! + - type: Japanese + title: えむえむっ! + - type: English + title: MM! + title: MM! + title_english: MM! + title_japanese: えむえむっ! + title_synonyms: + - MM! Group + - Emu Emu! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-02T00:00:00+00:00' + to: '2010-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2010 + to: + day: 18 + month: 12 + year: 2010 + string: Oct 2, 2010 to Dec 18, 2010 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 128547 + rank: 5028 + popularity: 1151 + members: 247154 + favorites: 670 + synopsis: "Taro Sado is a high school student who lives his day to day life with a big secret—he's a masochist! Encouraged\ + \ by his cross-dressing best friend Tatsukichi Hayama, Taro asks the Second Voluntary Club for help with his problem\ + \ and ends up joining the club after they vow to \"fix\" him.\n\nHowever, it turns out that all of the members of\ + \ the club have some serious issues. The club leader Mio Isurugi is a self-designated god who is afraid of cats, Arashiko\ + \ Yuuno has a severe fear of men, and the club advisor Michiru Onigawara is a sadist who enjoys making people cosplay.\ + \ \n\nTogether with other wacky characters such as Yumi Mamiya, a talented masseuse and Yuuno's best friend, and Noa\ + \ Hiiragi, the president of the invention club, they all learn about the importance of acceptance and kindness.\n\n\ + [Written by MAL Rewrite]" + background: '' + season: fall + year: 2010 + broadcast: + day: Saturdays + time: 09:30 + timezone: Asia/Tokyo + string: Saturdays at 09:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 8247 + url: https://myanimelist.net/anime/8247/Bleach_Movie_4__Jigoku-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1554/134492.jpg + small_image_url: https://myanimelist.net/images/anime/1554/134492t.jpg + large_image_url: https://myanimelist.net/images/anime/1554/134492l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1554/134492.webp + small_image_url: https://myanimelist.net/images/anime/1554/134492t.webp + large_image_url: https://myanimelist.net/images/anime/1554/134492l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/keAZvYawTGU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bleach Movie 4: Jigoku-hen' + - type: Synonym + title: 'Bleach: The Hell Chapter' + - type: Japanese + title: 劇場版 BLEACH 地獄篇 + - type: English + title: 'Bleach the Movie: Hell Verse' + - type: German + title: 'Bleach Film 4: Hell Verse' + - type: French + title: 'Bleach Film 4: Hell Verse' + title: 'Bleach Movie 4: Jigoku-hen' + title_english: 'Bleach the Movie: Hell Verse' + title_japanese: 劇場版 BLEACH 地獄篇 + title_synonyms: + - 'Bleach: The Hell Chapter' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2010-12-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 12 + year: 2010 + to: + day: null + month: null + year: null + string: Dec 4, 2010 + duration: 1 hr 33 min + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 133542 + rank: 1687 + popularity: 1205 + members: 235232 + favorites: 536 + synopsis: |- + When a soul has committed irredeemable sins, it is removed from the cycle of reincarnation monitored by the Soul Society, and the gates of Hell open to condemn the soul to eternal damnation. From this place from where no one has ever come back, three tormented souls who refer to themselves as Sinners of Hell burst in Karakura Town, where a ruthless fight involving them against the substitute Soul Reaper Ichigo Kurosaki and his friends ensues. In the aftermath of the fight, Ichigo's sisters are abducted, with the aforementioned group's leader Shuren hoping to lure Ichigo to be finally freed from the chains of Hell. + + Helped by a Sinner named Kokutou, Ichigo and his friends head to Hell for a rescue mission. However, the Soul Society opposes the journey, in fear of threatening the balance between worlds. As the lines between friends and foes get blurred, Ichigo will have to face his most challenging dilemma yet—a decision that may well engulf the three worlds into chaos. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8557 + url: https://myanimelist.net/anime/8557/Shinryaku_Ika_Musume + images: + jpg: + image_url: https://myanimelist.net/images/anime/1734/118930.jpg + small_image_url: https://myanimelist.net/images/anime/1734/118930t.jpg + large_image_url: https://myanimelist.net/images/anime/1734/118930l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1734/118930.webp + small_image_url: https://myanimelist.net/images/anime/1734/118930t.webp + large_image_url: https://myanimelist.net/images/anime/1734/118930l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rmAa-lK7C2A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinryaku! Ika Musume + - type: Synonym + title: The Invader Comes From the Bottom of the Sea! + - type: Japanese + title: 侵略!イカ娘 + - type: English + title: The Squid Girl + - type: German + title: Squid Girl + title: Shinryaku! Ika Musume + title_english: The Squid Girl + title_japanese: 侵略!イカ娘 + title_synonyms: + - The Invader Comes From the Bottom of the Sea! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-05T00:00:00+00:00' + to: '2010-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2010 + to: + day: 21 + month: 12 + year: 2010 + string: Oct 5, 2010 to Dec 21, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 95674 + rank: 2639 + popularity: 1306 + members: 214847 + favorites: 1177 + synopsis: |- + Humans have been polluting the ocean for a long time, carelessly pouring their garbage and desecrating the waters that many creatures call home. The denizens of the sea have suffered at their poisoning hands. Finally, one certain squid has had enough and vows to punish the humans' selfish actions. + + Possessing all the fearsome abilities of a squid such as powerful hair-tentacles, the ability to spit ink, and even use bioluminescence at will, Ika Musume takes it upon herself to rise from the depths of the ocean and exact revenge upon humanity! She surfaces at a certain Lemon Beach House, a restaurant managed by the sisters Eiko and Chizuru Aizawa. Thinking them to be an easy first step toward world domination, she immediately declares war against them, only to find out that she is, quite literally, a fish out of water! To make things worse, she destroys a part of a wall of the beach house in an attempt to flaunt her squiddy superiority and is consequently forced into becoming a waitress to pay the repair costs. Beached for the time being after tasting a thorough defeat at the hands of the Aizawa sisters, Ika Musume is forced to put her plans for world domination on hold. + + Despite these setbacks, Ika Musume soon finds herself right at home in her unexpected position as Lemon Beach House's newest employee. Wacky and hilarious, Shinryaku! Ika Musume follows her brand new life on the surface as she makes precious memories and meet lots of new people. With her newfound acquaintances, Ika Musume is looking to take the world by storm, one squid ink spaghetti at a time! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8277 + url: https://myanimelist.net/anime/8277/Hyakka_Ryouran__Samurai_Girls + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/27705.jpg + small_image_url: https://myanimelist.net/images/anime/9/27705t.jpg + large_image_url: https://myanimelist.net/images/anime/9/27705l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/27705.webp + small_image_url: https://myanimelist.net/images/anime/9/27705t.webp + large_image_url: https://myanimelist.net/images/anime/9/27705l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/X9z7ljh0viw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hyakka Ryouran: Samurai Girls' + - type: Synonym + title: 'Hyakka Ryouran: Samurai Girls' + - type: Japanese + title: 百花繚乱 サムライガールズ + - type: English + title: Samurai Girls + - type: German + title: 'Samurai Girls: Hyakka Ryouran' + - type: French + title: 'Samuraï Girls: Expertes en Strip Fighting!' + title: 'Hyakka Ryouran: Samurai Girls' + title_english: Samurai Girls + title_japanese: 百花繚乱 サムライガールズ + title_synonyms: + - 'Hyakka Ryouran: Samurai Girls' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-09-04T00:00:00+00:00' + to: '2010-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 9 + year: 2010 + to: + day: 20 + month: 12 + year: 2010 + string: Sep 4, 2010 to Dec 20, 2010 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.76 + scored_by: 81396 + rank: 6534 + popularity: 1435 + members: 194051 + favorites: 321 + synopsis: |- + With its gorgeous landscape and prosperous people, Great Japan is the envy of all other nations. But a serious threat hovers over the country. Mysterious guardians known as Master Samurai are Great Japan's only defense. + + At the behest of the student council, young samurai Muneakira Yagyuu arrives at Buou Academic School. Run by the Tokugawa Shogunate, here children of warriors are given aristocratic education required to run the country. The school is led by the student council president Yoshihiko Tokugawa and his sister Sen, who also happens to be Muneakira's childhood friend. + + Upon arriving at the academy, Muneakira finds himself in the midst of a terrible fight. During the chaos, the sky fills with a peculiar white light and a mysterious girl named Juubei Yagyuu appears and suddenly kisses Muneakira. With his kiss, she awakens an unknown power that protects them. + + Just who is this girl, and where did she come from? Muneakira finds himself entangled in the fate of the country and a threat that will shake Great Japan to its core. He must learn the secret behind the Master Samurai and the kiss that awakened Juubei's power in order to protect his country. + + [Written by MAL Rewrite] + background: A preview of the first episode aired on Tokyo MX on September 4, 2010, prior to the official airing. The + series serves as an alternate telling of the light novels, having a completely different storyline. + season: fall + year: 2010 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1636 + type: anime + name: Gigno Systems + url: https://myanimelist.net/anime/producer/1636/Gigno_Systems + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9074 + url: https://myanimelist.net/anime/9074/Arakawa_Under_the_Bridge_x_Bridge + images: + jpg: + image_url: https://myanimelist.net/images/anime/1851/98621.jpg + small_image_url: https://myanimelist.net/images/anime/1851/98621t.jpg + large_image_url: https://myanimelist.net/images/anime/1851/98621l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1851/98621.webp + small_image_url: https://myanimelist.net/images/anime/1851/98621t.webp + large_image_url: https://myanimelist.net/images/anime/1851/98621l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/al_MIXJDQJE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arakawa Under the Bridge x Bridge + - type: Synonym + title: Arakawa Under the Bridge*2 + - type: Synonym + title: Arakawa Under the Bridge x2 + - type: Synonym + title: Arakawa Under the Bridge 2nd season + - type: Japanese + title: 荒川アンダー ザブリッジ×ブリッジ + - type: English + title: Arakawa Under the Bridge x Bridge + title: Arakawa Under the Bridge x Bridge + title_english: Arakawa Under the Bridge x Bridge + title_japanese: 荒川アンダー ザブリッジ×ブリッジ + title_synonyms: + - Arakawa Under the Bridge*2 + - Arakawa Under the Bridge x2 + - Arakawa Under the Bridge 2nd season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-10-04T00:00:00+00:00' + to: '2010-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2010 + to: + day: 27 + month: 12 + year: 2010 + string: Oct 4, 2010 to Dec 27, 2010 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 90710 + rank: 1380 + popularity: 1591 + members: 173469 + favorites: 429 + synopsis: |- + On the beautiful banks of the Arakawa River, it is lively as ever. Now known as "Recruit," Kou Ichinomiya has adjusted to the troubles his unconventional neighbors brew daily. However, the atypical scene is about to get even rowdier when their community adds a couple of oddball enthusiasts: a tall, muscular woman calling herself Amazoness, followed by her loyal Tengu henchmen; and Captain, self-proclaimed Commander of Earth's Defense Force against Venusians. In spite of all the commotion, Recruit gradually learns more about his lover Nino and the story that shaped her. + + [Written by MAL Rewrite] + background: Arakawa Under the Bridge x Bridge was released on Blu-ray and DVD by NIS America on February 7, 2012 and + on April 29, 2014 for the premium and standard editions respectively. + season: fall + year: 2010 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 7662 + url: https://myanimelist.net/anime/7662/Shinrei_Tantei_Yakumo + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/35829.jpg + small_image_url: https://myanimelist.net/images/anime/13/35829t.jpg + large_image_url: https://myanimelist.net/images/anime/13/35829l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/35829.webp + small_image_url: https://myanimelist.net/images/anime/13/35829t.webp + large_image_url: https://myanimelist.net/images/anime/13/35829l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ldZCIMlJQck?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinrei Tantei Yakumo + - type: Synonym + title: Shinrei Tantei Yakumo + - type: Japanese + title: 心霊探偵 八雲 + - type: English + title: Psychic Detective Yakumo + title: Shinrei Tantei Yakumo + title_english: Psychic Detective Yakumo + title_japanese: 心霊探偵 八雲 + title_synonyms: + - Shinrei Tantei Yakumo + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-10-03T00:00:00+00:00' + to: '2010-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2010 + to: + day: 26 + month: 12 + year: 2010 + string: Oct 3, 2010 to Dec 26, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 57944 + rank: 3250 + popularity: 1880 + members: 139670 + favorites: 558 + synopsis: "Haruka Ozawa's sophomore year is getting seriously scary. One of her friends is possessed, another has committed\ + \ suicide and Haruka could be the next one to flunk the still-breathing test. Her only way out of this potentially\ + \ lethal dead end? Yakumo Saito, an enigmatic student born with a mysterious red eye that allows him to see and communicate\ + \ with the dead. But the deceased don't always desist and some killers are more than ready to kill again to keep dead\ + \ men from telling any more tales. That doesn't stop Haruka's knack for digging up buried secrets, and there's even\ + \ more evidence of bodies being exhumed by both Yakumo's police contact and an investigative journalist with a newly\ + \ made corpse in her closet! Can this pair of anything but normal paranormal detectives solve the ultimate dead case\ + \ files or will they end up in cold storage themselves? \n\n(Source: Sentai Filmworks)" + background: '' + season: fall + year: 2010 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 161 + type: anime + name: Sogo Vision + url: https://myanimelist.net/anime/producer/161/Sogo_Vision + - mal_id: 359 + type: anime + name: NHK-BS2 + url: https://myanimelist.net/anime/producer/359/NHK-BS2 + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 5 + type: anime + name: Bee Train + url: https://myanimelist.net/anime/producer/5/Bee_Train + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: [] + - mal_id: 9136 + url: https://myanimelist.net/anime/9136/Kuroshitsuji_II_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/26664.jpg + small_image_url: https://myanimelist.net/images/anime/7/26664t.jpg + large_image_url: https://myanimelist.net/images/anime/7/26664l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/26664.webp + small_image_url: https://myanimelist.net/images/anime/7/26664t.webp + large_image_url: https://myanimelist.net/images/anime/7/26664l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroshitsuji II Specials + - type: Synonym + title: Ciel in Wonderland + - type: Synonym + title: Welcome to the Phantomhive Family + - type: Japanese + title: '黒執事II: シエル・イン・ワンダーランド' + - type: English + title: Black Butler II Specials + title: Kuroshitsuji II Specials + title_english: Black Butler II Specials + title_japanese: '黒執事II: シエル・イン・ワンダーランド' + title_synonyms: + - Ciel in Wonderland + - Welcome to the Phantomhive Family + type: Special + source: Manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2010-10-27T00:00:00+00:00' + to: '2011-05-25T00:00:00+00:00' + prop: + from: + day: 27 + month: 10 + year: 2010 + to: + day: 25 + month: 5 + year: 2011 + string: Oct 27, 2010 to May 25, 2011 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.39 + scored_by: 68085 + rank: 2784 + popularity: 1952 + members: 134178 + favorites: 375 + synopsis: |- + According to the Kuroshitsuji website, there are 6 OVAs included in the DVD releases. + + DVD 2: Ciel in Wonderland (Part 1) + This re-imagines the cast of Kuroshitsuji II as characters in Lewis Carroll's Alice in Wonderland story. + + DVD 3: Welcome to the Phantomhive's + This is meant to be like a simulation game. Elizabeth invites a lady (perhaps the viewer) to join her at a ball held at the Phantomhive mansion. + + DVD 5: The Making of Kuroshitsuji II + This is a Hollywood style documentary with behind the scenes interviews with Sebastian, Ciel, Claude and Alois etc. + + DVD 6: Ciel in Wonderland (Part 2) + This re-imagines the cast of Kuroshitsuji II as characters in Lewis Carroll's Alice in Wonderland story. + + DVD 8: The Tale of William the Shinigami + William and Grell have to train new shinigami and reminisce about when they were training partners. + + DVD 9: The Spider's Intention + The life in Trancy household and how those work under Alois is caring for him. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8476 + url: https://myanimelist.net/anime/8476/Otome_Youkai_Zakuro + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/85430.jpg + small_image_url: https://myanimelist.net/images/anime/5/85430t.jpg + large_image_url: https://myanimelist.net/images/anime/5/85430l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/85430.webp + small_image_url: https://myanimelist.net/images/anime/5/85430t.webp + large_image_url: https://myanimelist.net/images/anime/5/85430l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TmONRcfX1Kw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otome Youkai Zakuro + - type: Synonym + title: Girl Demon Zakuro + - type: Japanese + title: おとめ妖怪 ざくろ + - type: English + title: Zakuro + - type: Spanish + title: Otome Yokai Zakuro + title: Otome Youkai Zakuro + title_english: Zakuro + title_japanese: おとめ妖怪 ざくろ + title_synonyms: + - Girl Demon Zakuro + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2010-10-05T00:00:00+00:00' + to: '2010-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2010 + to: + day: 28 + month: 12 + year: 2010 + string: Oct 5, 2010 to Dec 28, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 52031 + rank: 2542 + popularity: 1970 + members: 131802 + favorites: 433 + synopsis: |- + Second Lieutenant Kei Agemaki, the son of a famous general, has hidden his extreme fear of paranormal beings all his life. However, when he and two others are reassigned to live and work with youkai in the Ministry of Spirit Affairs, he is brought face-to-face with his worst nightmare. Now with the help of the fox spirit Kushimatsu, he and his fellow officers must learn to work alongside youkai maidens—Zakuro, Susukihotaru, Hoozuki, and Bonbori—to solve paranormal cases. + + Set in the midst of an alternate version of Japanese Westernization, Otome Youkai Zakuro explores the clashes and unions that can occur when east meets west, local meets foreign, and women meet men. The unusual alliance of the youkai maidens and human officers must learn to work together in a world that is changing around them. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8536 + url: https://myanimelist.net/anime/8536/Fortune_Arterial__Akai_Yakusoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/26876.jpg + small_image_url: https://myanimelist.net/images/anime/11/26876t.jpg + large_image_url: https://myanimelist.net/images/anime/11/26876l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/26876.webp + small_image_url: https://myanimelist.net/images/anime/11/26876t.webp + large_image_url: https://myanimelist.net/images/anime/11/26876l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zCllt9ZySFw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fortune Arterial: Akai Yakusoku' + - type: Japanese + title: FORTUNE ARTERIAL 赤い約束 + title: 'Fortune Arterial: Akai Yakusoku' + title_english: null + title_japanese: FORTUNE ARTERIAL 赤い約束 + title_synonyms: [] + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-09T00:00:00+00:00' + to: '2010-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2010 + to: + day: 25 + month: 12 + year: 2010 + string: Oct 9, 2010 to Dec 25, 2010 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.68 + scored_by: 63193 + rank: 7042 + popularity: 2094 + members: 121930 + favorites: 211 + synopsis: "Fortune Arterial's story revolves around the male protagonist Kohei Hasekura, who transfers into a prestigious\ + \ public school in the style of an English six-year school encompassing junior-high and high school students. The\ + \ school is on an island named Tamatsu Island off-shore from mainland Japan, and the only way to get there is by boat.\ + \ Soon after transferring, he discovers that one of the student in the class next door to his, Sendo Erika, is in\ + \ fact a type of vampire. \n\n(Source: Wikipedia)" + background: Preview airing on October 2nd. Regular airing started on October 9th. + season: fall + year: 2010 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 779 + type: anime + name: AMG MUSIC + url: https://myanimelist.net/anime/producer/779/AMG_MUSIC + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 8934 + url: https://myanimelist.net/anime/8934/Star_Driver__Kagayaki_no_Takuto + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/25953.jpg + small_image_url: https://myanimelist.net/images/anime/4/25953t.jpg + large_image_url: https://myanimelist.net/images/anime/4/25953l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/25953.webp + small_image_url: https://myanimelist.net/images/anime/4/25953t.webp + large_image_url: https://myanimelist.net/images/anime/4/25953l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Star Driver: Kagayaki no Takuto' + - type: Synonym + title: 'STAR DRIVER: Shining Takuto' + - type: Japanese + title: STAR DRIVER 輝きのタクト + - type: English + title: Star Driver + - type: Spanish + title: Star Driver + title: 'Star Driver: Kagayaki no Takuto' + title_english: Star Driver + title_japanese: STAR DRIVER 輝きのタクト + title_synonyms: + - 'STAR DRIVER: Shining Takuto' + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2010-10-03T00:00:00+00:00' + to: '2011-04-03T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2010 + to: + day: 3 + month: 4 + year: 2011 + string: Oct 3, 2010 to Apr 3, 2011 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 47386 + rank: 3984 + popularity: 2096 + members: 121740 + favorites: 624 + synopsis: |- + Deep beneath the surface of Southern Cross Isle, a mysterious organization known as the Glittering Crux Brigade frequently gathers in their underground fortress. The group is particularly interested in "Cybodies," stone giants which can transform into massive fighting humanoids but only in a realm known as "Zero Time." By finding and shattering the seals of the island's four seal maidens, Glittering Crux hopes to break free of Zero Time and use the Cybodies anywhere they please. + + One night, a young man named Takuto Tsunashi washes up on the island's shore and is rescued by Sugata Shindou and his fiancée Wako Agemaki, one of the island's seal maidens. After he awakens, Takuto quickly befriends the two and proceeds to enroll at the local academy, where many of his fellow students are secretly members of Glittering Crux. However, Takuto holds a secret: when in Zero Time, he can utilize a Cybody of his own—the Tauburn. In the forthcoming battle, Takuto and the Tauburn will be the key to preventing Glittering Crux from shattering Wako's seal and realizing its nefarious ambitions. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: + - mal_id: 233 + type: anime + name: Bandai Entertainment + url: https://myanimelist.net/anime/producer/233/Bandai_Entertainment + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9107 + url: https://myanimelist.net/anime/9107/Pokemon_Best_Wishes + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/26135.jpg + small_image_url: https://myanimelist.net/images/anime/7/26135t.jpg + large_image_url: https://myanimelist.net/images/anime/7/26135l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/26135.webp + small_image_url: https://myanimelist.net/images/anime/7/26135t.webp + large_image_url: https://myanimelist.net/images/anime/7/26135l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Pokemon Best Wishes! + - type: Synonym + title: 'Pocket Monsters: Best Wishes!' + - type: Synonym + title: Black & White + - type: Synonym + title: 'BW: Rival Destinies' + - type: Japanese + title: ポケットモンスターベストウイッシュ + - type: English + title: 'Pokémon: Black & White' + - type: German + title: 'Pokémon die Serie: Schwarz und Weiß' + - type: Spanish + title: Pokémon Negro y Blanco. Temporada 14 + - type: French + title: 'Pokémon la Série: Noir et Blanc' + title: Pokemon Best Wishes! + title_english: 'Pokémon: Black & White' + title_japanese: ポケットモンスターベストウイッシュ + title_synonyms: + - 'Pocket Monsters: Best Wishes!' + - Black & White + - 'BW: Rival Destinies' + type: TV + source: Game + episodes: 84 + status: Finished Airing + airing: false + aired: + from: '2010-09-23T00:00:00+00:00' + to: '2012-06-14T00:00:00+00:00' + prop: + from: + day: 23 + month: 9 + year: 2010 + to: + day: 14 + month: 6 + year: 2012 + string: Sep 23, 2010 to Jun 14, 2012 + duration: 22 min per ep + rating: PG - Children + score: 6.49 + scored_by: 67071 + rank: 8231 + popularity: 2177 + members: 115144 + favorites: 168 + synopsis: |- + When Satoshi and his mother accompany Professor Ookido to the distant Isshu region, Satoshi discovers Pokémon that he’s never seen before… and that he can’t wait to catch! He may have Pikachu at his side together with new friends Iris and Dent, but he’ll still need plenty of new Pokémon on his team if he wants to challenge Isshu's expert Gym Leaders. His quest to become a Pokémon Master just got even tougher! + + (Source: Official site) + background: '' + season: fall + year: 2010 + broadcast: + day: Thursdays + time: '19:00' + timezone: Asia/Tokyo + string: Thursdays at 19:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + - mal_id: 499 + type: anime + name: The Pokemon Company International + url: https://myanimelist.net/anime/producer/499/The_Pokemon_Company_International + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 8876 + url: https://myanimelist.net/anime/8876/Koe_de_Oshigoto_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/25524.jpg + small_image_url: https://myanimelist.net/images/anime/5/25524t.jpg + large_image_url: https://myanimelist.net/images/anime/5/25524l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/25524.webp + small_image_url: https://myanimelist.net/images/anime/5/25524t.webp + large_image_url: https://myanimelist.net/images/anime/5/25524l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koe de Oshigoto! The Animation + - type: Synonym + title: Working with Voice! + - type: Japanese + title: こえでおしごと! The ANIMATION + - type: English + title: Koe de Oshigoto! + title: Koe de Oshigoto! The Animation + title_english: Koe de Oshigoto! + title_japanese: こえでおしごと! The ANIMATION + title_synonyms: + - Working with Voice! + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2010-11-17T00:00:00+00:00' + to: '2011-05-11T00:00:00+00:00' + prop: + from: + day: 17 + month: 11 + year: 2010 + to: + day: 11 + month: 5 + year: 2011 + string: Nov 17, 2010 to May 11, 2011 + duration: 30 min per ep + rating: R+ - Mild Nudity + score: 6.85 + scored_by: 44412 + rank: 5980 + popularity: 2465 + members: 95302 + favorites: 140 + synopsis: "Being asked to work as a voice actress at a game company might not be so bad, unless you are Kanna Aoyagi.\ + \ On her 16th birthday, her older sister Yayoi guilts Kanna into doing voice work for her at Blue March, a game company\ + \ that specializes in eroge: erotic games with lots of sexual content. \n\nSweet and innocent, Kanna has no idea how\ + \ she can possibly succeed at such an occupation when she has no sexual experience. But as she plays eroge for research,\ + \ uses her vivid imagination, and receives unorthodox help from her coworkers, Kanna slowly becomes more comfortable\ + \ with her new, embarrassing profession.\n\n[Written by MAL Rewrite]" + background: North American distributor Media Blasters offered replacement copies of the Koe de Oshigoto! DVDs due to + an issue that caused the anime to loop back to the menu. The distributor had originally planned to have the anime + officially dubbed, but later cancelled these plans. The release of the second episode DVD was postponed twice, coming + out over a year after the first. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 8449 + url: https://myanimelist.net/anime/8449/Togainu_no_Chi + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/75187.jpg + small_image_url: https://myanimelist.net/images/anime/5/75187t.jpg + large_image_url: https://myanimelist.net/images/anime/5/75187l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/75187.webp + small_image_url: https://myanimelist.net/images/anime/5/75187t.webp + large_image_url: https://myanimelist.net/images/anime/5/75187l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jbbv1LYjc2Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Togainu no Chi + - type: Synonym + title: Blood of the Reprimanded Dog + - type: Japanese + title: 咎狗の血 + - type: English + title: Togainu no Chi + title: Togainu no Chi + title_english: Togainu no Chi + title_japanese: 咎狗の血 + title_synonyms: + - Blood of the Reprimanded Dog + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2010-10-08T00:00:00+00:00' + to: '2010-12-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2010 + to: + day: 23 + month: 12 + year: 2010 + string: Oct 8, 2010 to Dec 23, 2010 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.23 + scored_by: 37746 + rank: 9774 + popularity: 2498 + members: 93747 + favorites: 370 + synopsis: |- + In the wake of a third world war which left Japan in ruins, an organization known as Vischio seized control of Tokyo and renamed it Toshima. Taking place in its back alleys are battle games known as Igura, overseen by the Vischio, in which contestants battle and bathe in each other's blood to earn the chance to go up against its tournament's king, Il-re. + + Igura is not the only fighting tournament around; Bl@ster is a similar yet vastly different game since it prohibits murder and the use of weapons. The only way to win is by knocking out the opponent. Akira, a young man isolated from his family, is known to be undefeatable at Bl@ster. However, his life on the top is shattered when he is accused of murder. Unable to prove his own innocence, all hope is seemingly lost... that is until a mysterious woman named Emma appears and offers him a chance. Now, to regain his freedom, Akira must participate in Igura and ultimately defeat Il-re. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2010 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 78 + type: anime + name: Picture Magic + url: https://myanimelist.net/anime/producer/78/Picture_Magic + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/05-2011-winter.yaml b/test/fixtures/jikan/season_matrix/05-2011-winter.yaml new file mode 100644 index 0000000..c91f116 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/05-2011-winter.yaml @@ -0,0 +1,3157 @@ +metadata: + captured_at: '2026-05-11T11:32:32Z' + label: 2011-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2011/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:31 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:bbe54c1e758d26b53f4ea21113a6eb0c640175a0 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 258 + per_page: 25 + data: + - mal_id: 9756 + url: https://myanimelist.net/anime/9756/Mahou_Shoujo_Madoka★Magica + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/55225.jpg + small_image_url: https://myanimelist.net/images/anime/11/55225t.jpg + large_image_url: https://myanimelist.net/images/anime/11/55225l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/55225.webp + small_image_url: https://myanimelist.net/images/anime/11/55225t.webp + large_image_url: https://myanimelist.net/images/anime/11/55225l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/laTRlKXrCXk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahou Shoujo Madoka★Magica + - type: Synonym + title: Mahou Shoujo Madoka Magika + - type: Synonym + title: Magical Girl Madoka Magica + - type: Japanese + title: 魔法少女まどか★マギカ + - type: English + title: Puella Magi Madoka Magica + - type: German + title: Puella Magi Madoka Magica + - type: Spanish + title: Puella Magi Madoka Magica + - type: French + title: Puella Magi Madoka Magica + title: Mahou Shoujo Madoka★Magica + title_english: Puella Magi Madoka Magica + title_japanese: 魔法少女まどか★マギカ + title_synonyms: + - Mahou Shoujo Madoka Magika + - Magical Girl Madoka Magica + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-07T00:00:00+00:00' + to: '2011-04-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2011 + to: + day: 22 + month: 4 + year: 2011 + string: Jan 7, 2011 to Apr 22, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.39 + scored_by: 817908 + rank: 236 + popularity: 105 + members: 1410687 + favorites: 60463 + synopsis: |- + Madoka Kaname and Sayaka Miki are regular middle school girls with regular lives, but all that changes when they encounter Kyuubey, a cat-like magical familiar, and Homura Akemi, the new transfer student. + + Kyuubey offers them a proposition: he will grant any one of their wishes and in exchange, they will each become a magical girl, gaining enough power to fulfill their dreams. However, Homura Akemi, a magical girl herself, urges them not to accept the offer, stating that everything is not what it seems. + + A story of hope, despair, and friendship, Mahou Shoujo Madoka★Magica deals with the difficulties of being a magical girl and the price one has to pay to make a dream come true. + + [Written by MAL Rewrite] + background: Mahou Shoujo Madoka★Magica has garnered widespread critical acclaim, particularly in regards to its subversive + approach toward the magical girl subgenre. In a 2012 interview, series writer Gen Urobuchi remarked that the original + story was influenced by Hidamari Sketch, Magical Girl Lyrical Nanoha, and Le Portrait de Petite Cossette. The series + has received various awards and nominations since its release. In 2011, it won the Grand Prize for Animation at the + 15th Japan Media Arts Awards; the Television Award at the 16th Animation Kobe Awards; and 12 Newtype awards. In 2012, + it won the 43rd Seiun Award for Best Media as well as the Television Award at the 11th Tokyo Anime Awards. Released + on Blu-ray and DVD in six volumes in Japan from April 27, 2011 to September 21, 2011, the anime was considered a commercial + success, with each volume selling over 50,000 copies. It was also released in the same formats in North America by + Aniplex from February 14, 2012 to June 12, 2012, spanning three volumes. The company later released a Blu-ray complete + box set on September 27, 2016. The series has received multiple video game adaptations and cameos in other media. + season: winter + year: 2011 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 9041 + url: https://myanimelist.net/anime/9041/IS__Infinite_Stratos + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/74045.jpg + small_image_url: https://myanimelist.net/images/anime/3/74045t.jpg + large_image_url: https://myanimelist.net/images/anime/3/74045l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/74045.webp + small_image_url: https://myanimelist.net/images/anime/3/74045t.webp + large_image_url: https://myanimelist.net/images/anime/3/74045l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3VpielCeK7Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'IS: Infinite Stratos' + - type: Synonym + title: IS + - type: Japanese + title: IS 〈インフィニット・ストラトス〉 + - type: English + title: Infinite Stratos + title: 'IS: Infinite Stratos' + title_english: Infinite Stratos + title_japanese: IS 〈インフィニット・ストラトス〉 + title_synonyms: + - IS + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-07T00:00:00+00:00' + to: '2011-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2011 + to: + day: 1 + month: 4 + year: 2011 + string: Jan 7, 2011 to Apr 1, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.6 + scored_by: 377956 + rank: 7541 + popularity: 360 + members: 676941 + favorites: 2351 + synopsis: "An exoskeleton weapon engineered by Japan, Infinite Stratos (IS) can be piloted only by women. Its power\ + \ and combat prowess are so immense that an international treaty has been signed banning its use as a military asset.\ + \ \n\nWhen it is discovered that 15-year-old Ichika Orimura is the only male capable of steering an IS, he is forcibly\ + \ enrolled in the Infinite Stratos Academy: an all-female boarding school, the students of which graduate to become\ + \ IS pilots. At this training school, Ichika is reunited with two of his childhood friends, Houki Shinonono and Lingyin\ + \ Huang, and befriends Cecilia Alcott, an IS representative from the United Kingdom.\n\nGuided by the legendary pilot\ + \ Chifuyu Orimura—their strict homeroom teacher and Ichika's older sister—Ichika and the girls will need to use everything\ + \ at their disposal to defend themselves and their academy against the dangers that will arise during the course of\ + \ their thrilling school life.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2011 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 8841 + url: https://myanimelist.net/anime/8841/Kore_wa_Zombie_desu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75521.jpg + small_image_url: https://myanimelist.net/images/anime/13/75521t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75521.webp + small_image_url: https://myanimelist.net/images/anime/13/75521t.webp + large_image_url: https://myanimelist.net/images/anime/13/75521l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kore wa Zombie desu ka? + - type: Synonym + title: Koreha Zombie Desuka? + - type: Synonym + title: Kore ha Zombie Desu ka? + - type: Synonym + title: Kore wa Zombie Desuka? + - type: Japanese + title: これはゾンビですか? + - type: English + title: Is This a Zombie? + - type: German + title: Is This a Zombie? + - type: French + title: Is This a Zombie? + title: Kore wa Zombie desu ka? + title_english: Is This a Zombie? + title_japanese: これはゾンビですか? + title_synonyms: + - Koreha Zombie Desuka? + - Kore ha Zombie Desu ka? + - Kore wa Zombie Desuka? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-11T00:00:00+00:00' + to: '2011-03-30T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2011 + to: + day: 30 + month: 3 + year: 2011 + string: Jan 11, 2011 to Mar 30, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.32 + scored_by: 355037 + rank: 3169 + popularity: 374 + members: 656702 + favorites: 3196 + synopsis: "Ayumu Aikawa is a 16-year-old high school student who is tragically murdered while investigating a suspicious\ + \ house. However, he soon awakens next to a strange armored girl called Eucliwood Hellscythe. She reveals herself\ + \ to be a necromancer who has revived Ayumu, consequently turning him into a zombie! \n\nNow immortal, Ayumu sets\ + \ out to hunt down his killer. One day, while searching in a cemetery, he encounters a boisterous young girl named\ + \ Haruna, who is fighting a bear with a chainsaw while dressed as a magical girl. After she kills the beast, Haruna\ + \ attempts to erase Ayumu's memories of her, but he instead absorbs her magic for himself. Stripped of her powers,\ + \ Haruna now orders Ayumu to take up her role of hunting strange creatures known as \"Megalo,\" monsters that roam\ + \ the human world and terrorize the population.\n\nKore wa Zombie Desu ka? follows the daily antics of the human-turned-zombie\ + \ Ayumu as he begins his new, ludicrous life where the supernatural becomes the norm.\n\n[Written by MAL Rewrite]" + background: After the conclusion of the anime, a drama CD was released which featured seven cast members reprising their + roles. + season: winter + year: 2011 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 9513 + url: https://myanimelist.net/anime/9513/Beelzebub + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/28013.jpg + small_image_url: https://myanimelist.net/images/anime/3/28013t.jpg + large_image_url: https://myanimelist.net/images/anime/3/28013l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/28013.webp + small_image_url: https://myanimelist.net/images/anime/3/28013t.webp + large_image_url: https://myanimelist.net/images/anime/3/28013l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Beelzebub + - type: Japanese + title: べるぜバブ + - type: English + title: Beelzebub + title: Beelzebub + title_english: Beelzebub + title_japanese: べるぜバブ + title_synonyms: [] + type: TV + source: Manga + episodes: 60 + status: Finished Airing + airing: false + aired: + from: '2011-01-09T00:00:00+00:00' + to: '2012-03-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2011 + to: + day: 25 + month: 3 + year: 2012 + string: Jan 9, 2011 to Mar 25, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 295618 + rank: 1070 + popularity: 394 + members: 632164 + favorites: 5521 + synopsis: |- + Ishiyama High is a school populated entirely by delinquents, where nonstop violence and lawlessness are the norm. However, there is one universally acknowledged rule—don't cross first year student Tatsumi Oga, Ishiyama's most vicious fighter. + + One day, Oga is by a riverbed when he encounters a man floating down the river. After being retrieved by Oga, the man splits down the middle to reveal a baby, which crawls onto Oga's back and immediately forms an attachment to him. Though he doesn't know it yet, this baby is named Kaiser de Emperana Beelzebub IV, or "Baby Beel" for short—the son of the Demon Lord! + + As if finding the future Lord of the Underworld isn't enough, Oga is also confronted by Hildegard, Beel's demon maid. Together they attempt to raise Baby Beel—although surrounded by juvenile delinquents and demonic powers, the two of them may be in for more of a challenge than they can imagine. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2011 + broadcast: + day: Sundays + time: 07:00 + timezone: Asia/Tokyo + string: Sundays at 07:00 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 1129 + type: anime + name: Pierrot Plus + url: https://myanimelist.net/anime/producer/1129/Pierrot_Plus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8425 + url: https://myanimelist.net/anime/8425/Gosick + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/27906.jpg + small_image_url: https://myanimelist.net/images/anime/11/27906t.jpg + large_image_url: https://myanimelist.net/images/anime/11/27906l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/27906.webp + small_image_url: https://myanimelist.net/images/anime/11/27906t.webp + large_image_url: https://myanimelist.net/images/anime/11/27906l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QMFLC-SKtFs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gosick + - type: Japanese + title: GOSICK -ゴシック- + title: Gosick + title_english: null + title_japanese: GOSICK -ゴシック- + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2011-01-08T00:00:00+00:00' + to: '2011-07-02T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2011 + to: + day: 2 + month: 7 + year: 2011 + string: Jan 8, 2011 to Jul 2, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.04 + scored_by: 248456 + rank: 692 + popularity: 412 + members: 605158 + favorites: 8989 + synopsis: |- + Kazuya Kujou is a foreign student at Saint Marguerite Academy, a luxurious boarding school in the Southern European country of Sauville. Originally from Japan, his jet-black hair and dark brown eyes cause his peers to shun him and give him the nickname "Black Reaper," based on a popular urban legend about the traveler who brings death in the spring. + + On a day like any other, Kujou visits the school's extravagant library in search of ghost stories. However, his focus soon changes as he becomes curious about a golden strand of hair on the stairs. The steps lead him to a large garden and a beautiful doll-like girl known as Victorique de Blois, whose complex and imaginative foresight allows her to predict their futures, now intertwined. + + With more mysteries quickly developing—including the appearance of a ghost ship and an alchemist with the power of transmutation—Victorique and Kujou, bound by fate and their unique skills, have no choice but to rely on each other. + + [Written by MAL Rewrite] + background: The 11th episode of Gosick was originally scheduled for broadcast on March 19, but had to be postponed to + April 2 due to emergency broadcast related to the devastating March 11 earthquake and tsunami. The anime again met + some trouble when Bandai Entertainment stopped releasing new DVDs, cancelling the series’ scheduled US DVD/Blu-ray + release. + season: winter + year: 2011 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 9656 + url: https://myanimelist.net/anime/9656/Kimi_ni_Todoke_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1311/121574.jpg + small_image_url: https://myanimelist.net/images/anime/1311/121574t.jpg + large_image_url: https://myanimelist.net/images/anime/1311/121574l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1311/121574.webp + small_image_url: https://myanimelist.net/images/anime/1311/121574t.webp + large_image_url: https://myanimelist.net/images/anime/1311/121574l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9aRQlHYaluU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi ni Todoke 2nd Season + - type: Synonym + title: 'Kimi ni Todoke: From Me to You 2nd Season' + - type: Synonym + title: Reaching You 2nd Season + - type: Japanese + title: 君に届け 2ND SEASON + - type: English + title: 'Kimi ni Todoke: From Me to You Season 2' + - type: French + title: 'Kimi ni todoke: Sawako Saison 2' + title: Kimi ni Todoke 2nd Season + title_english: 'Kimi ni Todoke: From Me to You Season 2' + title_japanese: 君に届け 2ND SEASON + title_synonyms: + - 'Kimi ni Todoke: From Me to You 2nd Season' + - Reaching You 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-12T00:00:00+00:00' + to: '2011-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2011 + to: + day: 30 + month: 3 + year: 2011 + string: Jan 12, 2011 to Mar 30, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 319898 + rank: 784 + popularity: 453 + members: 556891 + favorites: 1917 + synopsis: |- + After a momentous New Year's vacation and with Valentine's Day approaching, Sawako Kuronuma is beginning to get along with her classmates. However, now that Sawako has realized her romantic feelings for the popular Shouta Kazehaya, she grows hesitant toward giving him obligatory chocolates and decides to not give him any. In turn, Kazehaya, who likes Sawako, feels a distance between them. + + As February ends and April arrives, the second year of high school begins for Sawako. Luckily, she ends up in the same class as her friends Ayane Yano and Chizuru Yoshida, along with Kazehaya and his friend Ryuu Sanada, in addition to the newcomer named Kento Miura. When Kento develops an interest in Sawako, Sawako and Kazehaya's feelings for each other are put to the test. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2011 + broadcast: + day: Wednesdays + time: 00:59 + timezone: Asia/Tokyo + string: Wednesdays at 00:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 9367 + url: https://myanimelist.net/anime/9367/Freezing + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/28535.jpg + small_image_url: https://myanimelist.net/images/anime/10/28535t.jpg + large_image_url: https://myanimelist.net/images/anime/10/28535l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/28535.webp + small_image_url: https://myanimelist.net/images/anime/10/28535t.webp + large_image_url: https://myanimelist.net/images/anime/10/28535l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_K0tVGj6cgQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Freezing + - type: Japanese + title: フリージング + - type: English + title: Freezing + title: Freezing + title_english: Freezing + title_japanese: フリージング + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-08T00:00:00+00:00' + to: '2011-04-07T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2011 + to: + day: 7 + month: 4 + year: 2011 + string: Jan 8, 2011 to Apr 7, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.77 + scored_by: 178411 + rank: 6465 + popularity: 813 + members: 342578 + favorites: 1187 + synopsis: |- + Decades into the future, humanity is under siege by an alien race known as the Novas. These inhuman beings leave devastation in their wake whenever they appear, with the efforts to stave them off becoming known as Nova Clashes. Young women known as "Pandoras" and young men known as "Limiters" are implanted with stigmata to give them superhuman powers and are trained in military academies, where they must learn to work together if humanity is to have a chance of surviving. + + Freezing tells the story of Kazuya Aoi as he sets out for his first day at the West Genetics military academy, right when a battle royale is being undertaken by the Pandoras. It is here that he mistakes Satellizer el Bridget—a powerful Pandora known as the "Untouchable Queen"—as his deceased sister and embraces her. Though he costs her the match, she finds that his touch doesn't drive her away and decides to take him as her Limiter. The only question is whether or not their partnership can survive the machinations of their upperclassmen and the impending battle with the Novas… + background: Freezing adapts content from the first 6 volumes of the manga it is based on. + season: winter + year: 2011 + broadcast: + day: Saturdays + time: 09:30 + timezone: Asia/Tokyo + string: Saturdays at 09:30 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 2038 + type: anime + name: S-Wood + url: https://myanimelist.net/anime/producer/2038/S-Wood + - mal_id: 2607 + type: anime + name: Kill Time Communication + url: https://myanimelist.net/anime/producer/2607/Kill_Time_Communication + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 179 + type: anime + name: A.C.G.T. + url: https://myanimelist.net/anime/producer/179/ACGT + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10020 + url: https://myanimelist.net/anime/10020/Ore_no_Imouto_ga_Konnani_Kawaii_Wake_ga_Nai_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/29734.jpg + small_image_url: https://myanimelist.net/images/anime/8/29734t.jpg + large_image_url: https://myanimelist.net/images/anime/8/29734l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/29734.webp + small_image_url: https://myanimelist.net/images/anime/8/29734t.webp + large_image_url: https://myanimelist.net/images/anime/8/29734l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai Specials + - type: Synonym + title: My Little Sister Can't Be This Cute Specials + - type: Japanese + title: 俺の妹がこんなに可愛いわけがない + - type: English + title: OreImo Specials + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai Specials + title_english: OreImo Specials + title_japanese: 俺の妹がこんなに可愛いわけがない + title_synonyms: + - My Little Sister Can't Be This Cute Specials + type: ONA + source: Light novel + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2011-02-22T00:00:00+00:00' + to: '2011-05-31T00:00:00+00:00' + prop: + from: + day: 22 + month: 2 + year: 2011 + to: + day: 31 + month: 5 + year: 2011 + string: Feb 22, 2011 to May 31, 2011 + duration: 28 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 126556 + rank: 3180 + popularity: 1396 + members: 200487 + favorites: 218 + synopsis: The true end arc of Ore no Imouto. These four episodes branch out after the 11th episode of the main TV series + and present an alternative version to the end of the TV series. These episodes contrast with the good end arc of the + TV series, which was an original ending written for the anime, and instead closely follows the original story from + the light novels. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 9330 + url: https://myanimelist.net/anime/9330/Dragon_Crisis + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/50311.jpg + small_image_url: https://myanimelist.net/images/anime/8/50311t.jpg + large_image_url: https://myanimelist.net/images/anime/8/50311l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/50311.webp + small_image_url: https://myanimelist.net/images/anime/8/50311t.webp + large_image_url: https://myanimelist.net/images/anime/8/50311l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pPUwVjekuxw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dragon Crisis! + - type: Synonym + title: Dragon Crisis! + - type: Japanese + title: ドラゴンクライシス! + title: Dragon Crisis! + title_english: null + title_japanese: ドラゴンクライシス! + title_synonyms: + - Dragon Crisis! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-11T00:00:00+00:00' + to: '2011-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2011 + to: + day: 29 + month: 3 + year: 2011 + string: Jan 11, 2011 to Mar 29, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.61 + scored_by: 90376 + rank: 7466 + popularity: 1535 + members: 180316 + favorites: 292 + synopsis: A normal high school boy Kisaragi Ryuji's peaceful life is turned into an adventure by the return of his second + cousin Eriko. Ryuji and Eriko seize a relic box from a black broker. In the box, they find a red dragon girl Rose. + In order to protect Rose from the black organization, Ryuji decides to fight using his power as a relic handler. + background: The first episode received a free online preview at online streaming service GyaO! starting on Thursday, + 16th December, 2010 until Wednesday, 22nd December. 1000 lucky participants in possession of a Yahoo Japan ID were + given the chance to see it through an online lottery. The regular television broadcast started on January 11, 2011. + season: winter + year: 2011 + broadcast: + day: Mondays + time: 01:30 + timezone: Asia/Tokyo + string: Mondays at 01:30 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 158 + type: anime + name: Kids Station + url: https://myanimelist.net/anime/producer/158/Kids_Station + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 9331 + url: https://myanimelist.net/anime/9331/Yumekui_Merry + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/30869.jpg + small_image_url: https://myanimelist.net/images/anime/3/30869t.jpg + large_image_url: https://myanimelist.net/images/anime/3/30869l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/30869.webp + small_image_url: https://myanimelist.net/images/anime/3/30869t.webp + large_image_url: https://myanimelist.net/images/anime/3/30869l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yumekui Merry + - type: Synonym + title: Yumekui Merry + - type: Japanese + title: 夢喰いメリー + - type: English + title: Dream Eater Merry + title: Yumekui Merry + title_english: Dream Eater Merry + title_japanese: 夢喰いメリー + title_synonyms: + - Yumekui Merry + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-01-07T00:00:00+00:00' + to: '2011-04-08T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2011 + to: + day: 8 + month: 4 + year: 2011 + string: Jan 7, 2011 to Apr 8, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 64863 + rank: 5668 + popularity: 1842 + members: 143060 + favorites: 290 + synopsis: |- + High school student Yumeji Fujiwara has the ability to see people's dreams. Despite the visions never appearing clear or concrete, he is able to predict them by sensing the person's "aura." Normally, this skill is a fun trick to play on his classmates, but Yumeji only ever sees himself having the same nightmare every night. + + To his surprise, the nightmare continues in the middle of the day even before Yumeji has fallen asleep. The unexpected event was triggered by a dream demon—an inhabitant of the world of dreams who wants to use Yumeji's body as a vessel to fully enter the real world. However, Yumeji is saved by the timely arrival of Merry Nightmare, another dream demon who can somehow physically manifest without a host and is instead trying to return to her own realm. + + As more dream demons continue to push into reality, it is up to Yumeji and Merry to fight back against the invasion before everyone's nightmares materialize. + + [Written by MAL Rewrite] + background: As the source material was still ongoing at the time, Yumekui Merry received an original ending. The director + of the series, Shigeyasu Yamauchi, made a comment during an official talk session saying that he had regretted how + the anime adaptation had turned out. Following this announcement, original creator Yoshitaka Ushiki made a statement + on his official Twitter expressing his disappointment about the director's comment. The series was released on Blu-ray + and DVD as Dream Eater Merry by Sentai Filmworks on March 27, 2012. + season: winter + year: 2011 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 8426 + url: https://myanimelist.net/anime/8426/Hourou_Musuko + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/53945.jpg + small_image_url: https://myanimelist.net/images/anime/13/53945t.jpg + large_image_url: https://myanimelist.net/images/anime/13/53945l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/53945.webp + small_image_url: https://myanimelist.net/images/anime/13/53945t.webp + large_image_url: https://myanimelist.net/images/anime/13/53945l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RG2JiRohtmQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hourou Musuko + - type: Synonym + title: The Transient Son + - type: Japanese + title: 放浪息子 + - type: English + title: Wandering Son + - type: German + title: 'Hourou Musuko: Wondering son' + - type: Spanish + title: Wandering Son (Hourou Musuko) + - type: French + title: 'Hourou Musuko: Wondering son' + title: Hourou Musuko + title_english: Wandering Son + title_japanese: 放浪息子 + title_synonyms: + - The Transient Son + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-01-14T00:00:00+00:00' + to: '2011-04-01T00:00:00+00:00' + prop: + from: + day: 14 + month: 1 + year: 2011 + to: + day: 1 + month: 4 + year: 2011 + string: Jan 14, 2011 to Apr 1, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 44064 + rank: 1457 + popularity: 1909 + members: 137704 + favorites: 1102 + synopsis: |- + Effeminate fifth grader Shuuichi Nitori is considered by most to be one of the prettiest girls in school, but much to her dismay, she is actually biologically male. Fortunately, Shuuichi has a childhood friend who has similar feelings of discomfort related to gender identity: the lanky tomboy Yoshino Takatsuki, who, though biologically female, does not identify as a girl. These two friends share a similar secret and find solace in one another; however, their lives become even more complicated when they must tread the unfamiliar waters of a new school, attempt to make new friends, and struggle to maintain old ones. Faced with nearly insurmountable odds, they must learn to deal with the harsh realities of growing up, being transgender, relationships, and acceptance. + + Lauded as a decidedly serious take on gender identity and LGBT struggles, Takako Shimura's Hourou Musuko is about Shuuichi and Yoshino's attempts to discover their true selves as they enter puberty, make friends, fall in love, and face some very real and difficult choices. + background: Please note that this series was 11 episodes when aired on TV but 12 episodes when it was released on BD + & DVD. See more info for further details. Hourou Musuko won the Best Animated Broadcast Release at the 65th Motion + Picture and Television Engineering Society of Japan Awards in 2012. + season: winter + year: 2011 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: [] + studios: + - mal_id: 1306 + type: anime + name: AIC Classic + url: https://myanimelist.net/anime/producer/1306/AIC_Classic + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 81 + type: anime + name: Crossdressing + url: https://myanimelist.net/anime/genre/81/Crossdressing + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 9734 + url: https://myanimelist.net/anime/9734/K-On__Keikaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/26965.jpg + small_image_url: https://myanimelist.net/images/anime/7/26965t.jpg + large_image_url: https://myanimelist.net/images/anime/7/26965l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/26965.webp + small_image_url: https://myanimelist.net/images/anime/7/26965t.webp + large_image_url: https://myanimelist.net/images/anime/7/26965l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'K-On!!: Keikaku!' + - type: Synonym + title: Keion 2 Special + - type: Synonym + title: K-On!! 2nd Season Special + - type: Synonym + title: K-On!! Episode 27 + - type: Japanese + title: けいおん!! 計画! + - type: English + title: 'K-On!!: Plan!' + title: 'K-On!!: Keikaku!' + title_english: 'K-On!!: Plan!' + title_japanese: けいおん!! 計画! + title_synonyms: + - Keion 2 Special + - K-On!! 2nd Season Special + - K-On!! Episode 27 + type: Special + source: 4-koma manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-03-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 3 + year: 2011 + to: + day: null + month: null + year: null + string: Mar 16, 2011 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 76835 + rank: 1036 + popularity: 1928 + members: 135909 + favorites: 253 + synopsis: |- + The summer holidays are coming to an end, but the girls from Houkago Tea Time want to take one more trip before their next semester starts. With countless travel destinations to choose from and as many preferences as there are club members, coming to an agreement seems far-flung. + + Unable to reach a decision, they remember that they must first apply for new passports. As simple as it may sound, the routine visit to a government office and filing a form soon turns into an all-day adventure for Yui Hirasawa and the rest of the band. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9471 + url: https://myanimelist.net/anime/9471/Baka_to_Test_to_Shoukanjuu__Matsuri + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/67303.jpg + small_image_url: https://myanimelist.net/images/anime/3/67303t.jpg + large_image_url: https://myanimelist.net/images/anime/3/67303l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/67303.webp + small_image_url: https://myanimelist.net/images/anime/3/67303t.webp + large_image_url: https://myanimelist.net/images/anime/3/67303l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Baka to Test to Shoukanjuu: Matsuri' + - type: Synonym + title: Baka to Test to Shoukanjuu OVA + - type: Synonym + title: Baka to Test to Shokanju OVA + - type: Synonym + title: The Idiot + - type: Synonym + title: the Tests + - type: Synonym + title: and the Summoned Creatures OVA + - type: Synonym + title: 'Baka and Test: Summon the Beasts OVA' + - type: Japanese + title: バカとテストと召喚獣 ~祭~ + - type: English + title: Baka & Test - Summon the Beasts OVA + title: 'Baka to Test to Shoukanjuu: Matsuri' + title_english: Baka & Test - Summon the Beasts OVA + title_japanese: バカとテストと召喚獣 ~祭~ + title_synonyms: + - Baka to Test to Shoukanjuu OVA + - Baka to Test to Shokanju OVA + - The Idiot + - the Tests + - and the Summoned Creatures OVA + - 'Baka and Test: Summon the Beasts OVA' + type: OVA + source: Light novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2011-02-23T00:00:00+00:00' + to: '2011-03-30T00:00:00+00:00' + prop: + from: + day: 23 + month: 2 + year: 2011 + to: + day: 30 + month: 3 + year: 2011 + string: Feb 23, 2011 to Mar 30, 2011 + duration: 29 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 75425 + rank: 1996 + popularity: 1977 + members: 131264 + favorites: 116 + synopsis: OVA of Baka to Test to Shoukanjuu which was announced to be released before the start of the second series. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 685 + type: anime + name: Kadokawa Contents Gate + url: https://myanimelist.net/anime/producer/685/Kadokawa_Contents_Gate + - mal_id: 1015 + type: anime + name: T.O Entertainment + url: https://myanimelist.net/anime/producer/1015/TO_Entertainment + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 2981 + type: anime + name: Omnibus Promotion + url: https://myanimelist.net/anime/producer/2981/Omnibus_Promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 6954 + url: https://myanimelist.net/anime/6954/Kara_no_Kyoukai_Movie_8__Shuushou + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/78756.jpg + small_image_url: https://myanimelist.net/images/anime/6/78756t.jpg + large_image_url: https://myanimelist.net/images/anime/6/78756l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/78756.webp + small_image_url: https://myanimelist.net/images/anime/6/78756t.webp + large_image_url: https://myanimelist.net/images/anime/6/78756l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kara no Kyoukai Movie 8: Shuushou' + - type: Synonym + title: 'Kara no Kyoukai: Epilogue' + - type: Synonym + title: The Garden of Sinners Epilogue + - type: Synonym + title: 'The Garden of Sinners: the Garden of Sinners' + - type: Japanese + title: 劇場版 空の境界 the Garden of sinners 終章 + - type: English + title: 'The Garden of Sinners Chapter 8: Epilogue' + - type: German + title: 'The Garden of Sinners Teil 8: Epilogue' + title: 'Kara no Kyoukai Movie 8: Shuushou' + title_english: 'The Garden of Sinners Chapter 8: Epilogue' + title_japanese: 劇場版 空の境界 the Garden of sinners 終章 + title_synonyms: + - 'Kara no Kyoukai: Epilogue' + - The Garden of Sinners Epilogue + - 'The Garden of Sinners: the Garden of Sinners' + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-02-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 2 + year: 2011 + to: + day: null + month: null + year: null + string: Feb 2, 2011 + duration: 33 min + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 68283 + rank: 3761 + popularity: 1979 + members: 131189 + favorites: 351 + synopsis: |- + While walking home, Mikiya Kokutou comes across a familiar sight: Shiki Ryougi standing by a railing amidst the falling snow, just as when he first met her four years ago. While the two talk of their past and shared experiences, Mikiya realizes that something is strange about Shiki; rather, this is not the woman he has come to know, but an entirely different entity that dwells within Shiki's body... + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 9834 + url: https://myanimelist.net/anime/9834/Level_E + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/29668.jpg + small_image_url: https://myanimelist.net/images/anime/4/29668t.jpg + large_image_url: https://myanimelist.net/images/anime/4/29668l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/29668.webp + small_image_url: https://myanimelist.net/images/anime/4/29668t.webp + large_image_url: https://myanimelist.net/images/anime/4/29668l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Level E + - type: Japanese + title: レベルE + - type: English + title: Level E + title: Level E + title_english: Level E + title_japanese: レベルE + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-01-11T00:00:00+00:00' + to: '2011-04-05T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2011 + to: + day: 5 + month: 4 + year: 2011 + string: Jan 11, 2011 to Apr 5, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.41 + scored_by: 41774 + rank: 2677 + popularity: 2392 + members: 100407 + favorites: 340 + synopsis: |- + Tokyo-born schoolboy Yukitaka Tsutsui is moving to Yamagata Prefecture for high school on a baseball scholarship. Since he went to the top middle school in Japan for baseball, the townsfolk are very excited about his arrival. However, when he arrives in his apartment, he encounters a strange man nonchalantly reading and wearing his clothes! The stranger claims to be an alien who crash-landed on Earth and has nowhere to go. Revealing himself to be Baka Ki El Dogra, the crown prince of the planet Dogra, he is just one of the hundreds of aliens that have already made Earth their home. + + Despite his regal origins, the prince is an infamous intergalactic fool who thinks nothing of inconveniencing others for his own amusement. Whether he is running ridiculous tests on his subordinates, giving strange powers to random children, or just generally being a nuisance, nobody is safe from the idiot prince's antics! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2011 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9587 + url: https://myanimelist.net/anime/9587/Oniichan_no_Koto_nanka_Zenzen_Suki_ja_Nai_n_da_kara_ne + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75499.jpg + small_image_url: https://myanimelist.net/images/anime/3/75499t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75499l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75499.webp + small_image_url: https://myanimelist.net/images/anime/3/75499t.webp + large_image_url: https://myanimelist.net/images/anime/3/75499l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!! + - type: Synonym + title: Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!! + - type: Synonym + title: Onisuki + - type: Synonym + title: Because I Don't Like My Big Brother at All!! + - type: Japanese + title: お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!! + - type: English + title: I Don't Like My Big Brother At All! + title: Oniichan no Koto nanka Zenzen Suki ja Nai n da kara ne!! + title_english: I Don't Like My Big Brother At All! + title_japanese: お兄ちゃんのことなんかぜんぜん好きじゃないんだからねっ!! + title_synonyms: + - Oniichan no Koto nanka Zenzen Suki Janain Dakara ne!! + - Onisuki + - Because I Don't Like My Big Brother at All!! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-01-09T00:00:00+00:00' + to: '2011-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2011 + to: + day: 27 + month: 3 + year: 2011 + string: Jan 9, 2011 to Mar 27, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.09 + scored_by: 43275 + rank: 10538 + popularity: 2441 + members: 96969 + favorites: 91 + synopsis: "Second-year middle schooler Nao Takanashi loves her older brother Shuusuke to the point where she has developed\ + \ a brother complex. Wanting her brother to see her as a woman, Nao makes advances toward him on a daily basis, which\ + \ often results in Shuusuke succumbing to and encouraging more of her teasing. \n\nOne day, while throwing away porn\ + \ magazines from her brother's room, Nao finds an album containing his childhood photos—none of which include her.\ + \ Having discovered the truth behind her family relationships, Nao becomes ever more affectionate toward Shuusuke.\ + \ However, it does not take long for her dreams of monopolizing her brother to be put in jeopardy.\n\n[Written by\ + \ MAL Rewrite]" + background: '' + season: winter + year: 2011 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 8857 + url: https://myanimelist.net/anime/8857/Nichijou__Nichijou_no_0-wa + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/25521.jpg + small_image_url: https://myanimelist.net/images/anime/6/25521t.jpg + large_image_url: https://myanimelist.net/images/anime/6/25521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/25521.webp + small_image_url: https://myanimelist.net/images/anime/6/25521t.webp + large_image_url: https://myanimelist.net/images/anime/6/25521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CD6VdVDVDXI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nichijou: Nichijou no 0-wa' + - type: Synonym + title: Nichijou Episode 0 + - type: Synonym + title: Nichijou OVA + - type: Synonym + title: Everyday + - type: Japanese + title: 日常の0話 + - type: English + title: Nichijou - My Ordinary Life Episode 0 + title: 'Nichijou: Nichijou no 0-wa' + title_english: Nichijou - My Ordinary Life Episode 0 + title_japanese: 日常の0話 + title_synonyms: + - Nichijou Episode 0 + - Nichijou OVA + - Everyday + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-03-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 3 + year: 2011 + to: + day: null + month: null + year: null + string: Mar 12, 2011 + duration: 22 min + rating: PG-13 - Teens 13 or older + score: 7.41 + scored_by: 49170 + rank: 2688 + popularity: 2508 + members: 93268 + favorites: 66 + synopsis: While the title suggests a story of simple, everyday school life, the contents are more the opposite. The + setting is a strange school where you may see the principal wrestle a deer or a robot's arm hide a rollcake. However + there are still normal stories, like making a card castle or taking a test you didn't study for. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9314 + url: https://myanimelist.net/anime/9314/Fractale + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/28197.jpg + small_image_url: https://myanimelist.net/images/anime/2/28197t.jpg + large_image_url: https://myanimelist.net/images/anime/2/28197l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/28197.webp + small_image_url: https://myanimelist.net/images/anime/2/28197t.webp + large_image_url: https://myanimelist.net/images/anime/2/28197l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xKaRusrl-XU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fractale + - type: Japanese + title: フラクタル + - type: English + title: Fractale + title: Fractale + title_english: Fractale + title_japanese: フラクタル + title_synonyms: [] + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-01-14T00:00:00+00:00' + to: '2011-04-01T00:00:00+00:00' + prop: + from: + day: 14 + month: 1 + year: 2011 + to: + day: 1 + month: 4 + year: 2011 + string: Jan 14, 2011 to Apr 1, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.92 + scored_by: 36443 + rank: 5568 + popularity: 2605 + members: 87560 + favorites: 206 + synopsis: |- + The world has been at peace since the establishment of the Fractale system. Sustained by the Fractale terminals implanted in their bodies, people live in isolation, free to focus on their own interests. Clain Necran spends his days collecting technological relics from the time before the Fractale's introduction. The only company he keeps is his parents' Doppels, or advanced holographic clones. + + Clain soon meets Phryne—the first human girl he has ever met—and he instantly finds her fascinating. However, Phryne is being pursued by the anti-Fractale group known as The Lost Millenium, and she leaves a strange artifact in Clain's care before disappearing. Deciding that he needs to rescue Phryne and return her belongings, Clain sets out to find her. His journey takes him deep into the heart of the Fractale system, where learning the truth behind it poses more danger to him than he could possibly imagine. + + [Written by MAL Rewrite] + background: Fractale aired on Fuji TV's noitaminA block. The series was released on Blu-ray and DVD in Japan in four + volumes from April 22, 2011, to July 22, 2011; and in North America by Funimation Entertainment on July 17, 2012. + season: winter + year: 2011 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 10152 + url: https://myanimelist.net/anime/10152/Kimi_ni_Todoke__Kataomoi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1598/121757.jpg + small_image_url: https://myanimelist.net/images/anime/1598/121757t.jpg + large_image_url: https://myanimelist.net/images/anime/1598/121757l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1598/121757.webp + small_image_url: https://myanimelist.net/images/anime/1598/121757t.webp + large_image_url: https://myanimelist.net/images/anime/1598/121757l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimi ni Todoke: Kataomoi' + - type: Synonym + title: Kimi ni Todoke 2nd Season Episode 00 + - type: Synonym + title: Unrequited Love + - type: Synonym + title: Kimi ni Todoke Recap + - type: Japanese + title: 君に届け 片想い + - type: English + title: 'Kimi ni Todoke: From Me to You - Unrequited Love' + title: 'Kimi ni Todoke: Kataomoi' + title_english: 'Kimi ni Todoke: From Me to You - Unrequited Love' + title_japanese: 君に届け 片想い + title_synonyms: + - Kimi ni Todoke 2nd Season Episode 00 + - Unrequited Love + - Kimi ni Todoke Recap + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-01-05T00:00:00+00:00' + to: null + prop: + from: + day: 5 + month: 1 + year: 2011 + to: + day: null + month: null + year: null + string: Jan 5, 2011 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 43261 + rank: 4275 + popularity: 2620 + members: 86934 + favorites: 56 + synopsis: The Kimi ni Todoke story so far, from Kurumi's point of view. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 9130 + url: https://myanimelist.net/anime/9130/Saint_Seiya__The_Lost_Canvas_-_Meiou_Shinwa_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/29597.jpg + small_image_url: https://myanimelist.net/images/anime/12/29597t.jpg + large_image_url: https://myanimelist.net/images/anime/12/29597l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/29597.webp + small_image_url: https://myanimelist.net/images/anime/12/29597t.webp + large_image_url: https://myanimelist.net/images/anime/12/29597l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QDH2I1t9w9U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Saint Seiya: The Lost Canvas - Meiou Shinwa 2' + - type: Japanese + title: 聖闘士星矢 THE LOST CANVAS 冥王神話 2 + - type: English + title: 'Saint Seiya: The Lost Canvas 2' + - type: Spanish + title: 'Saint Seiya: The Lost Canvas Temporada 2' + - type: French + title: 'Saint Seiya: The Lost Canvas Saision 2' + title: 'Saint Seiya: The Lost Canvas - Meiou Shinwa 2' + title_english: 'Saint Seiya: The Lost Canvas 2' + title_japanese: 聖闘士星矢 THE LOST CANVAS 冥王神話 2 + title_synonyms: [] + type: OVA + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-02-23T00:00:00+00:00' + to: '2011-07-20T00:00:00+00:00' + prop: + from: + day: 23 + month: 2 + year: 2011 + to: + day: 20 + month: 7 + year: 2011 + string: Feb 23, 2011 to Jul 20, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.12 + scored_by: 48293 + rank: 573 + popularity: 2733 + members: 81525 + favorites: 347 + synopsis: 'The sequel to Saint Seiya: The Lost Canvas - Meiou Shinwa.' + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8063 + url: https://myanimelist.net/anime/8063/Sekaiichi_Hatsukoi_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/35863.jpg + small_image_url: https://myanimelist.net/images/anime/11/35863t.jpg + large_image_url: https://myanimelist.net/images/anime/11/35863l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/35863.webp + small_image_url: https://myanimelist.net/images/anime/11/35863t.webp + large_image_url: https://myanimelist.net/images/anime/11/35863l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sekaiichi Hatsukoi OVA + - type: Synonym + title: Sekaiichi Hatsukoi Episode 0 + - type: Synonym + title: 'Sekai-ichi Hatsukoi: Onodera Ritsu no Baai' + - type: Synonym + title: Sekaiichi Hatsukoi Episode 12.5 + - type: Synonym + title: 'Sekaiichi Hatsukoi: Yoshino Chiaki no Baai' + - type: Synonym + title: Sekai'ichi Hatsukoi + - type: Japanese + title: 世界一初恋 OVA + title: Sekaiichi Hatsukoi OVA + title_english: null + title_japanese: 世界一初恋 OVA + title_synonyms: + - Sekaiichi Hatsukoi Episode 0 + - 'Sekai-ichi Hatsukoi: Onodera Ritsu no Baai' + - Sekaiichi Hatsukoi Episode 12.5 + - 'Sekaiichi Hatsukoi: Yoshino Chiaki no Baai' + - Sekai'ichi Hatsukoi + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2011-03-22T00:00:00+00:00' + to: '2011-09-27T00:00:00+00:00' + prop: + from: + day: 22 + month: 3 + year: 2011 + to: + day: 27 + month: 9 + year: 2011 + string: Mar 22, 2011 to Sep 27, 2011 + duration: 21 min per ep + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 39219 + rank: 1064 + popularity: 2866 + members: 74903 + favorites: 131 + synopsis: "Two OVA episodes featuring additional stories. \n\nEpisode 0: Ritsu and Takano used to date back in high\ + \ school, but broke up due to a misunderstanding. This is that story. \n\nEpisode 12.5: Hatori and Chiaki go to visit\ + \ the latter's family. It's really awkward in many, many ways." + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 9999 + url: https://myanimelist.net/anime/9999/One_Piece_3D__Mugiwara_Chase + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/32455.jpg + small_image_url: https://myanimelist.net/images/anime/4/32455t.jpg + large_image_url: https://myanimelist.net/images/anime/4/32455l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/32455.webp + small_image_url: https://myanimelist.net/images/anime/4/32455t.webp + large_image_url: https://myanimelist.net/images/anime/4/32455l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece 3D: Mugiwara Chase' + - type: Synonym + title: 'One Piece 3D: Strawhat Chase' + - type: Synonym + title: One Piece Movie 11 + - type: Japanese + title: ONE PIECE 3D 麦わらチェイス + - type: English + title: 'One Piece 3D: Straw Hat Chase' + - type: Spanish + title: 'One Piece 3D: ¡A Caza del Sombrero de Paja!' + title: 'One Piece 3D: Mugiwara Chase' + title_english: 'One Piece 3D: Straw Hat Chase' + title_japanese: ONE PIECE 3D 麦わらチェイス + title_synonyms: + - 'One Piece 3D: Strawhat Chase' + - One Piece Movie 11 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-03-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 3 + year: 2011 + to: + day: null + month: null + year: null + string: Mar 19, 2011 + duration: 30 min + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 36996 + rank: 5747 + popularity: 2996 + members: 69894 + favorites: 58 + synopsis: According to Weekly Shonen Jump, 3D movies of One Piece and Toriko were announced to premiere on March 19th, + 2011. One Piece 3D is an original story about the missing straw hat of Luffy. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10076 + url: https://myanimelist.net/anime/10076/Kämpfer_für_die_Liebe + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/29811.jpg + small_image_url: https://myanimelist.net/images/anime/2/29811t.jpg + large_image_url: https://myanimelist.net/images/anime/2/29811l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/29811.webp + small_image_url: https://myanimelist.net/images/anime/2/29811t.webp + large_image_url: https://myanimelist.net/images/anime/2/29811l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kämpfer für die Liebe + - type: Synonym + title: 'Kampfer: Fur die Liebe' + - type: Synonym + title: Kämpfer episode 13 + - type: Synonym + title: Kämpfer episode 14 + - type: Japanese + title: けんぷファー für die Liebe + - type: English + title: Kämpfer für die Liebe + title: Kämpfer für die Liebe + title_english: Kämpfer für die Liebe + title_japanese: けんぷファー für die Liebe + title_synonyms: + - 'Kampfer: Fur die Liebe' + - Kämpfer episode 13 + - Kämpfer episode 14 + type: Special + source: Light novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2011-03-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 3 + year: 2011 + to: + day: null + month: null + year: null + string: Mar 6, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.42 + scored_by: 35106 + rank: 8651 + popularity: 3119 + members: 64990 + favorites: 45 + synopsis: A two-episode special. They are designated as Episodes 13 and 14, and the first episode is a direct sequel + to the previous series while the second episode is about the trans-sex of Natsuru. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 70 + type: anime + name: Nomad + url: https://myanimelist.net/anime/producer/70/Nomad + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9539 + url: https://myanimelist.net/anime/9539/Cardfight_Vanguard + images: + jpg: + image_url: https://myanimelist.net/images/anime/1856/113654.jpg + small_image_url: https://myanimelist.net/images/anime/1856/113654t.jpg + large_image_url: https://myanimelist.net/images/anime/1856/113654l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1856/113654.webp + small_image_url: https://myanimelist.net/images/anime/1856/113654t.webp + large_image_url: https://myanimelist.net/images/anime/1856/113654l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Cardfight!! Vanguard + - type: Japanese + title: カードファイト!! ヴァンガード + - type: English + title: Cardfight!! Vanguard + title: Cardfight!! Vanguard + title_english: Cardfight!! Vanguard + title_japanese: カードファイト!! ヴァンガード + title_synonyms: [] + type: TV + source: Original + episodes: 65 + status: Finished Airing + airing: false + aired: + from: '2011-01-08T00:00:00+00:00' + to: '2012-03-31T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2011 + to: + day: 31 + month: 3 + year: 2012 + string: Jan 8, 2011 to Mar 31, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 28628 + rank: 4738 + popularity: 3308 + members: 58425 + favorites: 343 + synopsis: "Taking the world by storm, the card game Cardfight Vanguard has influenced many to integrate card games into\ + \ their everyday lives. Players of the popular game are called \"cardfighters,\" and they frequently battle each other\ + \ in card shops. The game has inspired many people, one of which is the quiet and timid Aichi Sendou who is often\ + \ ridiculed and bullied by his peers. Whenever he feels down, he takes a glance at Blaster Blade—a legendary rare\ + \ card given to him when he was young—and gains the motivation to move on with his life. \n\nHowever, one day, school\ + \ bully Katsumi Morikawa notices Aichi's treasure and snatches the card away from him. After a turn of events, Aichi\ + \ soon discovers that the card is now in the hands of Toshiki Kai, a cardfighter who has become the strongest in town\ + \ despite having only recently arrived. To make matters worse, Kai refuses to return the card unless Aichi defeats\ + \ him in a cardfight. \n\nMuch to everyone's surprise, Aichi rises up to the occasion. As he musters up his courage\ + \ and pictures himself winning this decisive battle, Aichi begins to find his way into the adventurous world of Cardfight\ + \ Vanguard. \n\n[Written by MAL Rewrite]" + background: Cardfight!! Vanguard was released on DVD by Hanabee Entertainment from March 5, 2014 to September 6, 2014. + The anime, like many Bushiroad franchises, features crossover cameo appearances of characters from other Bushiroad + series such as Tantei Opera Milky Holmes. The series has been adapted into a live-action drama, a novel, a radio show, + and multiple video games. + season: winter + year: 2011 + broadcast: + day: Saturdays + time: 08:00 + timezone: Asia/Tokyo + string: Saturdays at 08:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: [] + - mal_id: 9724 + url: https://myanimelist.net/anime/9724/Break_Blade_Movie_5__Shisen_no_Hate + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/68087.jpg + small_image_url: https://myanimelist.net/images/anime/9/68087t.jpg + large_image_url: https://myanimelist.net/images/anime/9/68087l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/68087.webp + small_image_url: https://myanimelist.net/images/anime/9/68087t.webp + large_image_url: https://myanimelist.net/images/anime/9/68087l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DoEkV4Xv7EM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Break Blade Movie 5: Shisen no Hate' + - type: Synonym + title: Breaker Blade 5 + - type: Synonym + title: 'Break Blade 5: Border of Death' + - type: Japanese + title: ブレイク ブレイド 死線ノ涯 + - type: English + title: Broken Blade 5 + title: 'Break Blade Movie 5: Shisen no Hate' + title_english: Broken Blade 5 + title_japanese: ブレイク ブレイド 死線ノ涯 + title_synonyms: + - Breaker Blade 5 + - 'Break Blade 5: Border of Death' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-01-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 1 + year: 2011 + to: + day: null + month: null + year: null + string: Jan 22, 2011 + duration: 47 min + rating: R - 17+ (violence & profanity) + score: 7.82 + scored_by: 34698 + rank: 1119 + popularity: 3330 + members: 57669 + favorites: 27 + synopsis: Fifth Break Blade Movie. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/06-2011-spring.yaml b/test/fixtures/jikan/season_matrix/06-2011-spring.yaml new file mode 100644 index 0000000..0445da7 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/06-2011-spring.yaml @@ -0,0 +1,3334 @@ +metadata: + captured_at: '2026-05-11T11:32:34Z' + label: 2011-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2011/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:33 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:b4a277483c127e9821e58c78ee049ee27ea9ef1c + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 8 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 200 + per_page: 25 + data: + - mal_id: 9253 + url: https://myanimelist.net/anime/9253/Steins_Gate + images: + jpg: + image_url: https://myanimelist.net/images/anime/1935/127974.jpg + small_image_url: https://myanimelist.net/images/anime/1935/127974t.jpg + large_image_url: https://myanimelist.net/images/anime/1935/127974l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1935/127974.webp + small_image_url: https://myanimelist.net/images/anime/1935/127974t.webp + large_image_url: https://myanimelist.net/images/anime/1935/127974l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/27OZc-ku6is?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Steins;Gate + - type: Japanese + title: STEINS;GATE + - type: English + title: Steins;Gate + title: Steins;Gate + title_english: Steins;Gate + title_japanese: STEINS;GATE + title_synonyms: [] + type: TV + source: Visual novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2011-04-06T00:00:00+00:00' + to: '2011-09-14T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2011 + to: + day: 14 + month: 9 + year: 2011 + string: Apr 6, 2011 to Sep 14, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 9.07 + scored_by: 1521005 + rank: 5 + popularity: 14 + members: 2812797 + favorites: 202415 + synopsis: |- + Eccentric scientist Rintarou Okabe has a never-ending thirst for scientific exploration. Together with his ditzy but well-meaning friend Mayuri Shiina and his roommate Itaru Hashida, Okabe founds the Future Gadget Laboratory in the hopes of creating technological innovations that baffle the human psyche. Despite claims of grandeur, the only notable "gadget" the trio have created is a microwave that has the mystifying power to turn bananas into green goo. + + However, when Okabe attends a conference on time travel, he experiences a series of strange events that lead him to believe that there is more to the "Phone Microwave" gadget than meets the eye. Apparently able to send text messages into the past using the microwave, Okabe dabbles further with the "time machine," attracting the ire and attention of the mysterious organization SERN. + + Due to the novel discovery, Okabe and his friends find themselves in an ever-present danger. As he works to mitigate the damage his invention has caused to the timeline, Okabe fights a battle to not only save his loved ones but also to preserve his degrading sanity. + + [Written by MAL Rewrite] + background: Steins;Gate is based on 5pb. and Nitroplus' visual novel of the same title released in 2009. It serves as + the second entry in the Science Adventure series. + season: spring + year: 2011 + broadcast: + day: Wednesdays + time: 02:05 + timezone: Asia/Tokyo + string: Wednesdays at 02:05 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 9919 + url: https://myanimelist.net/anime/9919/Ao_no_Exorcist + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75195.jpg + small_image_url: https://myanimelist.net/images/anime/10/75195t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75195l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75195.webp + small_image_url: https://myanimelist.net/images/anime/10/75195t.webp + large_image_url: https://myanimelist.net/images/anime/10/75195l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ayLq7BKjQZU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao no Exorcist + - type: Synonym + title: Ao no Futsumashi + - type: Japanese + title: 青の祓魔師 + - type: English + title: Blue Exorcist + - type: German + title: Blue Exorcist + - type: Spanish + title: Blue Exorcist + - type: French + title: Blue Exorcist + title: Ao no Exorcist + title_english: Blue Exorcist + title_japanese: 青の祓魔師 + title_synonyms: + - Ao no Futsumashi + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-04-17T00:00:00+00:00' + to: '2011-10-02T00:00:00+00:00' + prop: + from: + day: 17 + month: 4 + year: 2011 + to: + day: 2 + month: 10 + year: 2011 + string: Apr 17, 2011 to Oct 2, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 1219331 + rank: 2360 + popularity: 42 + members: 2053952 + favorites: 17271 + synopsis: |- + Humans and demons are two sides of the same coin, as are Assiah and Gehenna, their respective worlds. The only way to travel between the realms is by the means of possession, like in ghost stories. However, Satan, the ruler of Gehenna, cannot find a suitable host to possess and therefore, remains imprisoned in his world. In a desperate attempt to conquer Assiah, he sends his son instead, intending for him to eventually grow into a vessel capable of possession by the demon king. + + Ao no Exorcist follows Rin Okumura who appears to be an ordinary, somewhat troublesome teenager—that is until one day he is ambushed by demons. His world turns upside down when he discovers that he is in fact the very son of Satan and that his demon father wishes for him to return so they can conquer Assiah together. Not wanting to join the king of Gehenna, Rin decides to begin training to become an exorcist so that he can fight to defend Assiah alongside his brother Yukio. + + [Written by MAL Rewrite] + background: Ao no Exorcist was licensed by Aniplex and simulcasted in North America. Due to the fact that the source + material is on-going, the anime adaption of Ao no Exorcist diverges from it at key points, leading to an anime-exclusive + ending. + season: spring + year: 2011 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9989 + url: https://myanimelist.net/anime/9989/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/79697.jpg + small_image_url: https://myanimelist.net/images/anime/5/79697t.jpg + large_image_url: https://myanimelist.net/images/anime/5/79697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/79697.webp + small_image_url: https://myanimelist.net/images/anime/5/79697t.webp + large_image_url: https://myanimelist.net/images/anime/5/79697l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_p7fkViY-0I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. + - type: Synonym + title: AnoHana + - type: Synonym + title: We Still Don't Know the Name of the Flower We Saw That Day. + - type: Japanese + title: あの日見た花の名前を僕達はまだ知らない。 + - type: English + title: 'Anohana: The Flower We Saw That Day' + - type: German + title: 'AnoHana: Die Blume, die Wir an Jenem Tag Sahen' + - type: Spanish + title: 'anohana: The Flower We Saw that Day' + - type: French + title: 'Anohana: The Flower We Saw That Day' + title: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. + title_english: 'Anohana: The Flower We Saw That Day' + title_japanese: あの日見た花の名前を僕達はまだ知らない。 + title_synonyms: + - AnoHana + - We Still Don't Know the Name of the Flower We Saw That Day. + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-04-15T00:00:00+00:00' + to: '2011-06-24T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2011 + to: + day: 24 + month: 6 + year: 2011 + string: Apr 15, 2011 to Jun 24, 2011 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 1035610 + rank: 325 + popularity: 74 + members: 1708790 + favorites: 33202 + synopsis: |- + Jinta Yadomi is peacefully living as a recluse, spending his days away from school and playing video games at home instead. One hot summer day, his childhood friend, Meiko "Menma" Honma, appears and pesters him to grant a forgotten wish. He pays her no mind, which annoys her, but he doesn't really care. After all, Menma already died years ago. + + At first, Jinta thinks that he is merely hallucinating due to the summer heat, but he is later on convinced that what he sees truly is the ghost of Menma. Jinta and his group of childhood friends grew apart after her untimely death, but they are drawn together once more as they try to lay Menma's spirit to rest. Re-living their pain and guilt, will they be able to find the strength to help not only Menma move on—but themselves as well? + + [Written by MAL Rewrite] + background: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. reunites the lead production staff of the 2008 + anime series It was first teased in December 2010 as a joint production of Aniplex, Fuji Television, and animation + studio A-1 Pictures under the title AnoHana Project. The series is set in the city of Chichibu, Saitama Prefecture. + The first Blu-ray volume, which went on sale on June 29, 2011, sold more than 31,000 copies in the . At the time, + that first week sales figure was the third highest for a first volume Blu-ray release of a television anime, after + (2011) and (2009). AnoHana received a Jury Selection award in the Animation division of the 15th Japan Media Arts + Festival. A visual novel adaptation for the PlayStation Portable, which diverges from the story of the anime and contains + an original ending, was developed by Guyzware and published by 5pb. on August 30, 2012. AnoHana was also adapted into + a special live-action television drama, which aired on Fuji Television on September 21, 2015. + season: spring + year: 2011 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 6880 + url: https://myanimelist.net/anime/6880/Deadman_Wonderland + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75299.jpg + small_image_url: https://myanimelist.net/images/anime/9/75299t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75299l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75299.webp + small_image_url: https://myanimelist.net/images/anime/9/75299t.webp + large_image_url: https://myanimelist.net/images/anime/9/75299l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WUTFRxi5RXM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Deadman Wonderland + - type: Synonym + title: DEADMAN WONDERLAND + - type: Japanese + title: デッドマン・ワンダーランド + - type: English + title: Deadman Wonderland + title: Deadman Wonderland + title_english: Deadman Wonderland + title_japanese: デッドマン・ワンダーランド + title_synonyms: + - DEADMAN WONDERLAND + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-17T00:00:00+00:00' + to: '2011-07-03T00:00:00+00:00' + prop: + from: + day: 17 + month: 4 + year: 2011 + to: + day: 3 + month: 7 + year: 2011 + string: Apr 17, 2011 to Jul 3, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.13 + scored_by: 719101 + rank: 4375 + popularity: 120 + members: 1317648 + favorites: 7127 + synopsis: "It looked like it would be a normal day for Ganta Igarashi and his classmates—they were preparing to go on\ + \ a class field trip to a certain prison amusement park called Deadman Wonderland, where the convicts perform dangerous\ + \ acts for the onlookers' amusement. However, Ganta's life is quickly turned upside down when his whole class gets\ + \ massacred by a mysterious man in red. Framed for the incident and sentenced to death, Ganta is sent to the very\ + \ jail he was supposed to visit. \n\nBut Ganta's nightmare is only just beginning. \n\nThe young protagonist is thrown\ + \ into a world of sadistic inmates and enigmatic powers, to live in constant fear of the lethal collar placed around\ + \ his neck that is slowed only by winning in the prison's deathly games. Ganta must bet his life to survive in a ruthless\ + \ place where it isn't always easy to tell friend from foe, all while trying to find the mysterious \"Red Man\" and\ + \ clear his name, in Deadman Wonderland.\n\n[Written by MAL Rewrite]" + background: Deadman Wonderland adapts the first 5 volumes of Kazuma Kondou's and Jinsei Kataoka's manga series of the + same name. Some characters from the manga were not featured in the anime, notably the then minor character Azami Midou + and the gay crossdressing character Masaru Sukegawa. + season: spring + year: 2011 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 779 + type: anime + name: AMG MUSIC + url: https://myanimelist.net/anime/producer/779/AMG_MUSIC + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10165 + url: https://myanimelist.net/anime/10165/Nichijou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75617.jpg + small_image_url: https://myanimelist.net/images/anime/3/75617t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75617l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75617.webp + small_image_url: https://myanimelist.net/images/anime/3/75617t.webp + large_image_url: https://myanimelist.net/images/anime/3/75617l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CD6VdVDVDXI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nichijou + - type: Synonym + title: Everyday + - type: Japanese + title: 日常 + - type: English + title: Nichijou - My Ordinary Life + title: Nichijou + title_english: Nichijou - My Ordinary Life + title_japanese: 日常 + title_synonyms: + - Everyday + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2011-04-03T00:00:00+00:00' + to: '2011-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2011 + to: + day: 25 + month: 9 + year: 2011 + string: Apr 3, 2011 to Sep 25, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.47 + scored_by: 401795 + rank: 178 + popularity: 196 + members: 983404 + favorites: 25647 + synopsis: "Nichijou primarily focuses on the daily antics of a trio of childhood friends—high school girls Mio Naganohara,\ + \ Yuuko Aioi and Mai Minakami—whose stories soon intertwine with the young genius Hakase Shinonome, her robot caretaker\ + \ Nano, and their talking cat Sakamoto. With every passing day, the lives of these six, as well as of the many people\ + \ around them, experience both the calms of normal life and the insanity of the absurd. Walking to school, being bitten\ + \ by a talking crow, spending time with friends, and watching the principal suplex a deer: they are all in a day's\ + \ work in the extraordinary everyday lives of those in Nichijou. \n\n[Written by MAL Rewrite]" + background: Bandai Entertainment had licensed Nichijou, but on January 2, 2012, it was announced they were leaving the + North American anime market with all unreleased titles including Nichijou being cancelled. The series would remain + unlicensed until November 4, 2016 when Funimation Entertainment acquired the series, and released it sub-only in a + complete Blu-ray & DVD combo pack on February 7, 2017. They also did a Blu-ray & Digital combo pack with a brand new + English dub, which was released on July 23, 2019. + season: spring + year: 2011 + broadcast: + day: Sundays + time: 02:20 + timezone: Asia/Tokyo + string: Sundays at 02:20 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 233 + type: anime + name: Bandai Entertainment + url: https://myanimelist.net/anime/producer/233/Bandai_Entertainment + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9969 + url: https://myanimelist.net/anime/9969/Gintama + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/50361.jpg + small_image_url: https://myanimelist.net/images/anime/4/50361t.jpg + large_image_url: https://myanimelist.net/images/anime/4/50361l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/50361.webp + small_image_url: https://myanimelist.net/images/anime/4/50361t.webp + large_image_url: https://myanimelist.net/images/anime/4/50361l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama' + - type: Synonym + title: Gintama (2011) + - type: Japanese + title: 銀魂' + - type: English + title: Gintama Season 2 + - type: German + title: Gintama Staffel 2 + - type: Spanish + title: Gintama Temporada 2 + - type: French + title: Gintama Saison 2 + title: Gintama' + title_english: Gintama Season 2 + title_japanese: 銀魂' + title_synonyms: + - Gintama (2011) + type: TV + source: Manga + episodes: 51 + status: Finished Airing + airing: false + aired: + from: '2011-04-04T00:00:00+00:00' + to: '2012-03-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2011 + to: + day: 26 + month: 3 + year: 2012 + string: Apr 4, 2011 to Mar 26, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 9.02 + scored_by: 258024 + rank: 11 + popularity: 407 + members: 614368 + favorites: 8618 + synopsis: |- + After a one-year hiatus, Shinpachi Shimura returns to Edo, only to stumble upon a shocking surprise: Gintoki and Kagura, his fellow Yorozuya members, have become completely different characters! Fleeing from the Yorozuya headquarters in confusion, Shinpachi finds that all the denizens of Edo have undergone impossibly extreme changes, in both appearance and personality. Most unbelievably, his sister Otae has married the Shinsengumi chief and shameless stalker Isao Kondou and is pregnant with their first child. + + Bewildered, Shinpachi agrees to join the Shinsengumi at Otae and Kondou's request and finds even more startling transformations afoot both in and out of the ranks of the the organization. However, discovering that Vice Chief Toushirou Hijikata has remained unchanged, Shinpachi and his unlikely Shinsengumi ally set out to return the city of Edo to how they remember it. + + With even more dirty jokes, tongue-in-cheek parodies, and shameless references, Gintama' follows the Yorozuya team through more of their misadventures in the vibrant, alien-filled world of Edo. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Mondays + time: '18:00' + timezone: Asia/Tokyo + string: Mondays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 643 + type: anime + name: Trinity Sound + url: https://myanimelist.net/anime/producer/643/Trinity_Sound + - mal_id: 763 + type: anime + name: Miracle Robo + url: https://myanimelist.net/anime/producer/763/Miracle_Robo + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10080 + url: https://myanimelist.net/anime/10080/Kami_nomi_zo_Shiru_Sekai_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/30030.jpg + small_image_url: https://myanimelist.net/images/anime/11/30030t.jpg + large_image_url: https://myanimelist.net/images/anime/11/30030l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/30030.webp + small_image_url: https://myanimelist.net/images/anime/11/30030t.webp + large_image_url: https://myanimelist.net/images/anime/11/30030l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kami nomi zo Shiru Sekai II + - type: Synonym + title: Kami nomi zo Shiru Sekai 2 + - type: Synonym + title: Kaminomi II + - type: Synonym + title: The World God Only Knows 2 + - type: Japanese + title: 神のみぞ知るセカイ II + - type: English + title: The World God Only Knows II + - type: Spanish + title: Kami nomi zo Shiru Sekai Temporada 2 + title: Kami nomi zo Shiru Sekai II + title_english: The World God Only Knows II + title_japanese: 神のみぞ知るセカイ II + title_synonyms: + - Kami nomi zo Shiru Sekai 2 + - Kaminomi II + - The World God Only Knows 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-12T00:00:00+00:00' + to: '2011-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2011 + to: + day: 28 + month: 6 + year: 2011 + string: Apr 12, 2011 to Jun 28, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 249755 + rank: 1037 + popularity: 663 + members: 409783 + favorites: 1034 + synopsis: |- + Keima Katsuragi, the "God of Conquest," returns to his quest of expelling runaway spirits that have possessed the hearts of women. Still stuck in his contract with the demon Elsie, he must continue to utilize the knowledge he has gained from mastering multitudes of dating simulators and chase out the phantoms that reside within by capturing the hearts of that which he hates most: three-dimensional girls. + + However, the God of Conquest has his work cut out for him. From exorcising karate practitioners and student teachers to the arrival of Elsie's best friend from Hell, he is up against a wide array of girls that will test his wit and may even take him by surprise. Though he would much rather stick to the world of 2D, he is trapped in lousy reality, and so Keima must trudge forward in his conquest of love. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 8630 + url: https://myanimelist.net/anime/8630/Hidan_no_Aria + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/30095.jpg + small_image_url: https://myanimelist.net/images/anime/9/30095t.jpg + large_image_url: https://myanimelist.net/images/anime/9/30095l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/30095.webp + small_image_url: https://myanimelist.net/images/anime/9/30095t.webp + large_image_url: https://myanimelist.net/images/anime/9/30095l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3dTWfuip5Ro?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hidan no Aria + - type: Synonym + title: Hidan no Aria + - type: Japanese + title: 緋弾のアリア + - type: English + title: Aria the Scarlet Ammo + - type: German + title: Aria the Scarlet Ammo + - type: Spanish + title: Aria the Scarlet Ammo + - type: French + title: Aria the Scarlet Ammo + title: Hidan no Aria + title_english: Aria the Scarlet Ammo + title_japanese: 緋弾のアリア + title_synonyms: + - Hidan no Aria + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-15T00:00:00+00:00' + to: '2011-07-01T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2011 + to: + day: 1 + month: 7 + year: 2011 + string: Apr 15, 2011 to Jul 1, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.78 + scored_by: 202801 + rank: 6403 + popularity: 690 + members: 394396 + favorites: 944 + synopsis: |- + In response to the worsening crime rate, Japan creates Tokyo Butei High, an elite academy where "Butei" or armed detectives hone their deadly skills in hopes of becoming mercenary-like agents of justice. One particular Butei is Kinji Tooyama, an anti-social and curt sophomore dropout who was once a student of the combat-centric Assault Division. Kinji now lives a life of leisure studying logistics in order to cover up his powerful but embarrassing special ability. However, his peaceful days soon come to an end when he becomes the target of the infamous "Butei Killer," and runs into an emotional hurricane and outspoken prodigy of the highest rank, Aria Holmes Kanzaki, who saves Kinji's life and demands that he become her partner after seeing what he is truly capable of. + + [Written by MAL Rewrite] + background: Hidan no Aria adapts the first 3 novels of Chuugaku Akamatsu's light novel series of the same title. + season: spring + year: 2011 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9289 + url: https://myanimelist.net/anime/9289/Hanasaku_Iroha + images: + jpg: + image_url: https://myanimelist.net/images/anime/1491/117229.jpg + small_image_url: https://myanimelist.net/images/anime/1491/117229t.jpg + large_image_url: https://myanimelist.net/images/anime/1491/117229l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1491/117229.webp + small_image_url: https://myanimelist.net/images/anime/1491/117229t.webp + large_image_url: https://myanimelist.net/images/anime/1491/117229l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KIoebc-wSmA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hanasaku Iroha + - type: Japanese + title: 花咲くいろは + - type: English + title: 'Hanasaku Iroha: Blossoms for Tomorrow' + title: Hanasaku Iroha + title_english: 'Hanasaku Iroha: Blossoms for Tomorrow' + title_japanese: 花咲くいろは + title_synonyms: [] + type: TV + source: Original + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2011-04-03T00:00:00+00:00' + to: '2011-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2011 + to: + day: 25 + month: 9 + year: 2011 + string: Apr 3, 2011 to Sep 25, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 134299 + rank: 939 + popularity: 794 + members: 348012 + favorites: 2605 + synopsis: |- + Ohana Matsumae is an energetic and wild teenager residing in Tokyo with her carefree single mother. Abruptly, her mother decides to run away with her new boyfriend from debt collectors, forcing the young girl to fend for herself—as per her mother's "rely only on yourself" philosophy—in rural Japan, where her cold grandmother runs a small inn. Driven to adapt to the tranquil lifestyle of the countryside, Ohana experiences and deals with the challenges of working as a maid, as well as meeting and making friends with enthralling people at her new school and the inn. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 10163 + url: https://myanimelist.net/anime/10163/C__The_Money_of_Soul_and_Possibility_Control + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/50551.jpg + small_image_url: https://myanimelist.net/images/anime/5/50551t.jpg + large_image_url: https://myanimelist.net/images/anime/5/50551l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/50551.webp + small_image_url: https://myanimelist.net/images/anime/5/50551t.webp + large_image_url: https://myanimelist.net/images/anime/5/50551l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eWf7pYnSjNk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'C: The Money of Soul and Possibility Control' + - type: Synonym + title: '[C] The Money of Soul and Possibility Control' + - type: Japanese + title: 「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL + - type: English + title: '[C] CONTROL - The Money and Soul of Possibility' + - type: French + title: 'C-Control : The Money of Soul and Possibility' + title: 'C: The Money of Soul and Possibility Control' + title_english: '[C] CONTROL - The Money and Soul of Possibility' + title_japanese: 「C」 THE MONEY OF SOUL AND POSSIBILITY CONTROL + title_synonyms: + - '[C] The Money of Soul and Possibility Control' + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-04-15T00:00:00+00:00' + to: '2011-06-24T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2011 + to: + day: 24 + month: 6 + year: 2011 + string: Apr 15, 2011 to Jun 24, 2011 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 155441 + rank: 4255 + popularity: 817 + members: 340910 + favorites: 1381 + synopsis: |- + Money is power, and without it, life is meaningless. In a country whose economy is in shambles, second-year economics university student Kimimaro Yoga understands this fact all too well, as he is surrounded by the relatively luxurious lives of his peers and struggling to make ends meet. However, his world is turned on its head when a stranger in a top hat arrives one late night at his door. + + Going by the name Masakaki, the visitor petitions Yoga to come to the Eastern Financial District, a place where money flows in abundance if one offers their "future" as collateral. Although reluctant, greed triumphs reason and Yoga accepts the offer, thus taking on the mantle of an Entre. But unbeknownst to him, the land of wealth he has entered is an alternate realm built in the likeness of his own, where Entres are forced to participate in weekly duels called Deals, with their collateral at stake. Pitted against his countrymen and fate, Yoga must quickly adapt in this new world if he hopes to protect his fortune and future—and discover just how much money is truly worth. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 9515 + url: https://myanimelist.net/anime/9515/Highschool_of_the_Dead__Drifters_of_the_Dead + images: + jpg: + image_url: https://myanimelist.net/images/anime/1746/97780.jpg + small_image_url: https://myanimelist.net/images/anime/1746/97780t.jpg + large_image_url: https://myanimelist.net/images/anime/1746/97780l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1746/97780.webp + small_image_url: https://myanimelist.net/images/anime/1746/97780t.webp + large_image_url: https://myanimelist.net/images/anime/1746/97780l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Highschool of the Dead: Drifters of the Dead' + - type: Synonym + title: High School of the Dead OVA + - type: Synonym + title: 'Gakuen Mokushiroku: Highschool of the Dead' + - type: Synonym + title: HOTD + - type: Synonym + title: HSOTD + - type: Synonym + title: Drifters of the Dead + - type: Japanese + title: 学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド + - type: English + title: 'High School of the Dead: Drifters of the Dead' + title: 'Highschool of the Dead: Drifters of the Dead' + title_english: 'High School of the Dead: Drifters of the Dead' + title_japanese: 学園黙示録 HIGHSCHOOL OF THE DEAD ドリフターズ・オブ・ザ・デッド + title_synonyms: + - High School of the Dead OVA + - 'Gakuen Mokushiroku: Highschool of the Dead' + - HOTD + - HSOTD + - Drifters of the Dead + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-04-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 4 + year: 2011 + to: + day: null + month: null + year: null + string: Apr 26, 2011 + duration: 16 min + rating: R+ - Mild Nudity + score: 6.62 + scored_by: 198201 + rank: 7415 + popularity: 873 + members: 323829 + favorites: 415 + synopsis: "After escaping the zombie-infested mainland, Takashi Komuro and the gang find themselves on a remote island\ + \ off the coast of Tokonosu City. While scavenging around the island for supplies, they encounter a small seaside\ + \ shack that provides them with clothing and a place to rest for the night. After a day's work of collecting food,\ + \ they begin to cook what they have gathered. \n\nAs they wait beside the campfire, a light haze begins to form around\ + \ them and makes them nauseous. Confirming it to be caused by hydrangeas—a type of poisonous plant that can cause\ + \ hallucinations—the group attempts to escape from the powerful odor. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9379 + url: https://myanimelist.net/anime/9379/Denpa_Onna_to_Seishun_Otoko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1799/114806.jpg + small_image_url: https://myanimelist.net/images/anime/1799/114806t.jpg + large_image_url: https://myanimelist.net/images/anime/1799/114806l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1799/114806.webp + small_image_url: https://myanimelist.net/images/anime/1799/114806t.webp + large_image_url: https://myanimelist.net/images/anime/1799/114806l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kk0GQZbJP_I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Denpa Onna to Seishun Otoko + - type: Synonym + title: Electromagnetic Wave Woman and Adolescent Man + - type: Japanese + title: 電波女と青春男 + - type: English + title: Ground Control to Psychoelectric Girl + title: Denpa Onna to Seishun Otoko + title_english: Ground Control to Psychoelectric Girl + title_japanese: 電波女と青春男 + title_synonyms: + - Electromagnetic Wave Woman and Adolescent Man + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-15T00:00:00+00:00' + to: '2011-07-01T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2011 + to: + day: 1 + month: 7 + year: 2011 + string: Apr 15, 2011 to Jul 1, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 132221 + rank: 4432 + popularity: 876 + members: 322412 + favorites: 1163 + synopsis: |- + Makoto Niwa meticulously tallies the amount of positive and negative youthful experiences he engages in as if to grade his own life. When his parents go overseas, he moves to a new town to live with his aunt, welcoming the change and ready for a fresh start. However, as ordinary as he had imagined his adolescence to be, he could never have taken the existence of an enigmatic long-lost cousin into account. + + Upon moving into his aunt's house, he discovers the cousin he never knew about: Erio Touwa. Despite being Makoto's age, she couldn't be more different: Erio chooses to wrap herself in a futon all day rather than to go to school. She even claims to be an alien, and with a speech pattern and personality to back it up, any chance of Makoto's dreamt-of normal life is instantly tossed out the window. + + As he meets a string of other eccentric girls in town, Makoto must face the possibility of seeing his youth points in the red. However, he might be surprised by how thrilling an abnormal youth can be. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 9863 + url: https://myanimelist.net/anime/9863/SKET_Dance + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/73974.jpg + small_image_url: https://myanimelist.net/images/anime/9/73974t.jpg + large_image_url: https://myanimelist.net/images/anime/9/73974l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/73974.webp + small_image_url: https://myanimelist.net/images/anime/9/73974t.webp + large_image_url: https://myanimelist.net/images/anime/9/73974l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/K3_GghNl9rk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: SKET Dance + - type: Japanese + title: スケットダンス + - type: English + title: SKET Dance + title: SKET Dance + title_english: SKET Dance + title_japanese: スケットダンス + title_synonyms: [] + type: TV + source: Manga + episodes: 77 + status: Finished Airing + airing: false + aired: + from: '2011-04-07T00:00:00+00:00' + to: '2012-09-27T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2011 + to: + day: 27 + month: 9 + year: 2012 + string: Apr 7, 2011 to Sep 27, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 88843 + rank: 438 + popularity: 1187 + members: 238858 + favorites: 3282 + synopsis: "At Kaimei High School there is a special club dedicated to helping others known as the SKET Brigade. The\ + \ brains of the group is Kazuyoshi \"Switch\" Usui, a tech-savvy otaku who speaks through speech synthesis software,\ + \ while the brawn is provided by Hime \"Himeko\" Onizuka, the hockey stick-wielding girl once known as \"Onihime.\"\ + \ And last but not least, their leader is Yuusuke \"Bossun\" Fujisaki, whose latent ability is evoked by his goggles,\ + \ allowing him to summon the awesome power of extraordinary concentration. \n\nHowever, most of the school only know\ + \ them as the club that handles odd jobs. Many of their days are spent in the clubroom slacking off, but when there\ + \ is something to be done, they give their all to help others—usually in sincere, but unintentionally hilarious, ways.\ + \ The SKET Brigade do all they can to provide support, kindness, encouragement, and troubleshooting to any students\ + \ crazy enough to ask for their services. \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2011 + broadcast: + day: Thursdays + time: '18:00' + timezone: Asia/Tokyo + string: Thursdays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + licensors: [] + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9941 + url: https://myanimelist.net/anime/9941/Tiger___Bunny + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/29466.jpg + small_image_url: https://myanimelist.net/images/anime/13/29466t.jpg + large_image_url: https://myanimelist.net/images/anime/13/29466l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/29466.webp + small_image_url: https://myanimelist.net/images/anime/13/29466t.webp + large_image_url: https://myanimelist.net/images/anime/13/29466l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tiger & Bunny + - type: Synonym + title: Tiger and Bunny + - type: Synonym + title: Taibani + - type: Japanese + title: TIGER & BUNNY (タイガー・アンド・バニー) + - type: English + title: Tiger & Bunny + title: Tiger & Bunny + title_english: Tiger & Bunny + title_japanese: TIGER & BUNNY (タイガー・アンド・バニー) + title_synonyms: + - Tiger and Bunny + - Taibani + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-04-03T00:00:00+00:00' + to: '2011-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2011 + to: + day: 18 + month: 9 + year: 2011 + string: Apr 3, 2011 to Sep 18, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 95688 + rank: 1093 + popularity: 1188 + members: 238772 + favorites: 3056 + synopsis: |- + In Stern Bild City, those with special abilities are called NEXT, and can use their powers for good or bad. A unique organized group of NEXT appear regularly on Hero TV, where they chase down evildoers to bring limelight to their sponsors and earn Hero Points in the hopes of becoming the next King of Heroes. + + Kotetsu T. Kaburagi, known as "Wild Tiger," is a veteran hero whose performance has been dwindling as of late, partially due to his inability to cooperate with other heroes. After a disappointing season in which most of the other heroes far outperformed Tiger, he is paired up with a brand new hero who identifies himself by his real name—Barnaby Brooks Jr. + + Barnaby, nicknamed "Bunny" by his frivolous new partner, quickly makes it clear that the two could not be more different. Though they mix as well as oil and water, Tiger and Bunny must learn to work together, both for the sake of their careers and to face the looming threats within Stern Bild. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 9760 + url: https://myanimelist.net/anime/9760/Hoshi_wo_Ou_Kodomo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1000/133740.jpg + small_image_url: https://myanimelist.net/images/anime/1000/133740t.jpg + large_image_url: https://myanimelist.net/images/anime/1000/133740l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1000/133740.webp + small_image_url: https://myanimelist.net/images/anime/1000/133740t.webp + large_image_url: https://myanimelist.net/images/anime/1000/133740l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/T37GhIqsO28?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hoshi wo Ou Kodomo + - type: Synonym + title: Children who Chase Lost Voices from Deep Below + - type: Synonym + title: Journey to Agartha + - type: Japanese + title: 星を追う子ども + - type: English + title: Children Who Chase Lost Voices + - type: German + title: Children Who Chase Lost Voices + - type: Spanish + title: Viaje a Agartha + - type: French + title: Children Who Chase Lost Voices + title: Hoshi wo Ou Kodomo + title_english: Children Who Chase Lost Voices + title_japanese: 星を追う子ども + title_synonyms: + - Children who Chase Lost Voices from Deep Below + - Journey to Agartha + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-05-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 5 + year: 2011 + to: + day: null + month: null + year: null + string: May 7, 2011 + duration: 1 hr 56 min + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 104199 + rank: 2192 + popularity: 1224 + members: 230987 + favorites: 727 + synopsis: |- + If you could turn all your memories into a song, what would it resemble? + + Between being an exceptional student and taking care of the house alone during her mother's absence, Asuna Watase's only distraction is listening to her old crystal radio in her secret mountain hideout. One day, she accidentally tunes to a mysterious and melancholic melody, different from anything she has ever heard before. Soon after, an enigmatic boy named Shun saves her from a dangerous creature, unknowingly dragging Asuna on a long journey to a long lost land bound to surpass her very imagination, turning her once melodic life into an intricate requiem. + + [Written by MAL Rewrite] + background: Winner of the Platinum Grand Prize during the 2012 Future Film Festival, held in Italy. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + - mal_id: 1011 + type: anime + name: Warner Music Japan + url: https://myanimelist.net/anime/producer/1011/Warner_Music_Japan + - mal_id: 1363 + type: anime + name: Marine Entertainment + url: https://myanimelist.net/anime/producer/1363/Marine_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 9926 + url: https://myanimelist.net/anime/9926/Sekaiichi_Hatsukoi + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/29763.jpg + small_image_url: https://myanimelist.net/images/anime/6/29763t.jpg + large_image_url: https://myanimelist.net/images/anime/6/29763l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/29763.webp + small_image_url: https://myanimelist.net/images/anime/6/29763t.webp + large_image_url: https://myanimelist.net/images/anime/6/29763l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qp5QuQqye3Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sekaiichi Hatsukoi + - type: Synonym + title: Sekai-ichi Hatsukoi + - type: Synonym + title: Sekai'ichi Hatsukoi + - type: Synonym + title: World's Greatest First Love + - type: Japanese + title: 世界一初恋 TV + - type: English + title: Sekai Ichi Hatsukoi - World's Greatest First Love + title: Sekaiichi Hatsukoi + title_english: Sekai Ichi Hatsukoi - World's Greatest First Love + title_japanese: 世界一初恋 TV + title_synonyms: + - Sekai-ichi Hatsukoi + - Sekai'ichi Hatsukoi + - World's Greatest First Love + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-09T00:00:00+00:00' + to: '2011-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2011 + to: + day: 25 + month: 6 + year: 2011 + string: Apr 9, 2011 to Jun 25, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 124473 + rank: 1789 + popularity: 1230 + members: 230687 + favorites: 3074 + synopsis: "After having to deal with jealousy from his co-workers for working under his father's name, prideful literary\ + \ editor Ritsu Onodera is determined to establish himself in the industry. To accomplish this, he quits his job at\ + \ his father's publishing company and transfers to Marukawa Publishing. But instead of being placed in their literary\ + \ division, Ritsu finds himself working as the rookie manga editor for the Emerald editing department, a team that\ + \ operates under extremely tight schedules in order to meet deadlines. There, Ritsu is introduced to the infamous\ + \ editor-in-chief Masamune Takano, a persistent man who strives for results.\n\nAs it turns out, Takano is actually\ + \ Ritsu's high school love, and it is the aftermath of that heartbreak has caused Ritsu's reluctance to fall in love\ + \ again. Now with the two reunited after several years of separation, the reestablishment of their relationship is\ + \ marked by Takano's vow to make Ritsu say that he loves him again.\n\nSekaiichi Hatsukoi follows three couples that\ + \ are interconnected within the manga industry, with each being subject to the budding of first love. \n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: spring + year: 2011 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 10271 + url: https://myanimelist.net/anime/10271/Gyakkyou_Burai_Kaiji__Hakairoku-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/30599.jpg + small_image_url: https://myanimelist.net/images/anime/10/30599t.jpg + large_image_url: https://myanimelist.net/images/anime/10/30599l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/30599.webp + small_image_url: https://myanimelist.net/images/anime/10/30599t.webp + large_image_url: https://myanimelist.net/images/anime/10/30599l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gyakkyou Burai Kaiji: Hakairoku-hen' + - type: Synonym + title: Gyakkyou Burai Kaiji S2 + - type: Synonym + title: 'The Suffering Pariah Kaiji: Backslide Arc' + - type: Japanese + title: 逆境無頼カイジ 破戒録篇 + - type: English + title: 'Kaiji: Against All Rules' + - type: German + title: 'Kaiji: Against All Rules' + - type: Spanish + title: 'Kaiji: Against All Rules' + - type: French + title: 'Kaiji: Against All Rules' + title: 'Gyakkyou Burai Kaiji: Hakairoku-hen' + title_english: 'Kaiji: Against All Rules' + title_japanese: 逆境無頼カイジ 破戒録篇 + title_synonyms: + - Gyakkyou Burai Kaiji S2 + - 'The Suffering Pariah Kaiji: Backslide Arc' + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2011-04-06T00:00:00+00:00' + to: '2011-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2011 + to: + day: 28 + month: 9 + year: 2011 + string: Apr 6, 2011 to Sep 28, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.25 + scored_by: 117988 + rank: 378 + popularity: 1308 + members: 214320 + favorites: 3012 + synopsis: |- + Owing to an increasing debt, Kaiji Itou ends up resuming his old lifestyle. One day, while walking on the street, he stumbles upon Yuuji Endou, who is hunting Kaiji due to the money he owes to the Teiai Group. Unaware of this, Kaiji eagerly follows Endou, hoping for a chance to participate in another gamble, but soon finds out the loan shark's real intentions when he is kidnapped. + + Given that Kaiji is unable to pay off his huge debt, the Teiai Group instead sends him to work in an underground labor camp. He is told that he will have to live in this hell for 15 years, alongside other debtors, until he can earn his freedom. His only hope to put an early end to this nightmare is by saving enough money to be able to go back to the surface for a single day. Once he is there, he plans to obtain the remaining money needed to settle his account by making a high-stakes wager. However, as many temptations threaten his scarce income, Kaiji may have to resort to gambling sooner than he had expected. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: Wednesdays + time: 00:59 + timezone: Asia/Tokyo + string: Wednesdays at 00:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 3172 + type: anime + name: Arts Pro + url: https://myanimelist.net/anime/producer/3172/Arts_Pro + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10711 + url: https://myanimelist.net/anime/10711/Plastic_Neesan + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/76583.jpg + small_image_url: https://myanimelist.net/images/anime/13/76583t.jpg + large_image_url: https://myanimelist.net/images/anime/13/76583l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/76583.webp + small_image_url: https://myanimelist.net/images/anime/13/76583t.webp + large_image_url: https://myanimelist.net/images/anime/13/76583l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s1bsSvWgm0w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Plastic Neesan + - type: Synonym + title: +tic Nee-san + - type: Synonym + title: +tic Elder Sister + - type: Synonym + title: Plustic Neesan + - type: Synonym + title: Plastic Nee-san + - type: Synonym + title: Purasu Chikku Neesan + - type: Synonym + title: Plastic Elder Sister + - type: Japanese + title: +チック姉さん + title: Plastic Neesan + title_english: null + title_japanese: +チック姉さん + title_synonyms: + - +tic Nee-san + - +tic Elder Sister + - Plustic Neesan + - Plastic Nee-san + - Purasu Chikku Neesan + - Plastic Elder Sister + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-05-16T00:00:00+00:00' + to: '2012-07-26T00:00:00+00:00' + prop: + from: + day: 16 + month: 5 + year: 2011 + to: + day: 26 + month: 7 + year: 2012 + string: May 16, 2011 to Jul 26, 2012 + duration: 2 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 104961 + rank: 3975 + popularity: 1323 + members: 211328 + favorites: 619 + synopsis: |- + Iroe Genma is a third-year high school student often referred to as "Elder Sister" despite her short height. This troublemaking teenager is the president of her school's Model Club, which is dedicated to building plastic models of various objects and structures, such as cars, boats, and even robots. + + Joined by her two underclassmen, the violent Hazuki "Okappa" Okamoto and the rational Makina "Makimaki" Sakamaki, the small group aims to carry out their club duties but are often sidetracked by a myriad of distractions. From battles between club members to lessons on how to confess to your crush, these three schoolgirls get caught up in all sorts of wacky, and downright outrageous situations! + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 333 + type: anime + name: TYO Animations + url: https://myanimelist.net/anime/producer/333/TYO_Animations + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10155 + url: https://myanimelist.net/anime/10155/Dog_Days + images: + jpg: + image_url: https://myanimelist.net/images/anime/1183/154993.jpg + small_image_url: https://myanimelist.net/images/anime/1183/154993t.jpg + large_image_url: https://myanimelist.net/images/anime/1183/154993l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1183/154993.webp + small_image_url: https://myanimelist.net/images/anime/1183/154993t.webp + large_image_url: https://myanimelist.net/images/anime/1183/154993l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dog Days + - type: Synonym + title: Dog Days + - type: Japanese + title: ドッグデイズ + title: Dog Days + title_english: null + title_japanese: ドッグデイズ + title_synonyms: + - Dog Days + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-04-02T00:00:00+00:00' + to: '2011-06-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2011 + to: + day: 25 + month: 6 + year: 2011 + string: Apr 2, 2011 to Jun 25, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.85 + scored_by: 89763 + rank: 5960 + popularity: 1425 + members: 195717 + favorites: 565 + synopsis: |- + Dog Days takes place in the world of Flonyard, an alternate Earth inhabited by beings who resemble humans, but also have the ears and tails of specific animals. The Republic of Biscotti, a union of dog-like citizens, has come under attack by the feline forces of the Galette Leo Knights. In an effort to save Biscotti, Princess Millhiore summons a champion from another world in order to defend her people. That champion is Cinque Izumi, a normal junior high student from Earth. + + Agreeing to assist Biscotti, Cinque retrieves a sacred weapon called the Palladion and prepares for war. In Flonyard, wars are fought with no casualties and are more akin to sports competitions with the goal of raising money for the participating kingdoms. Cinque is successful in his role as Biscotti’s champion, but learns that a summoned champion cannot be returned to their home world. The scientists of Biscotti will endeavor to find a way for Cinque to return home, but until they figure something out, he must serve Princess Millhiore by continuing to fight as Biscotti’s hero. + background: '' + season: spring + year: 2011 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 10079 + url: https://myanimelist.net/anime/10079/Hoshizora_e_Kakaru_Hashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/73521.jpg + small_image_url: https://myanimelist.net/images/anime/3/73521t.jpg + large_image_url: https://myanimelist.net/images/anime/3/73521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/73521.webp + small_image_url: https://myanimelist.net/images/anime/3/73521t.webp + large_image_url: https://myanimelist.net/images/anime/3/73521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/o5332AVvrsg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hoshizora e Kakaru Hashi + - type: Synonym + title: Hoshizora e Kakaru Hashi + - type: Japanese + title: 星空へ架かる橋 + - type: English + title: A Bridge to the Starry Skies + - type: German + title: A Bridge to the Starry Skies + - type: Spanish + title: A Bridge to the Starry Skies (Hoshizora e Kakaru Hashi) + - type: French + title: A Bridge to the Starry Skies + title: Hoshizora e Kakaru Hashi + title_english: A Bridge to the Starry Skies + title_japanese: 星空へ架かる橋 + title_synonyms: + - Hoshizora e Kakaru Hashi + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-11T00:00:00+00:00' + to: '2011-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2011 + to: + day: 27 + month: 6 + year: 2011 + string: Apr 11, 2011 to Jun 27, 2011 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 6.69 + scored_by: 93241 + rank: 6998 + popularity: 1488 + members: 186834 + favorites: 372 + synopsis: |- + Kazuma Hoshino is preparing himself for a new stage of his life as a teenager. Because of his brother Ayumu's weaker than average health, their parents thought it best for the family to move out from the city to a more rural environment. Now the two brothers are off to the Yorozuyo Inn where they’ll be staying until their parents can settle affairs back in the city and set up their new home. + + Their arrival to the inn doesn't go as planned though when they catch the wrong bus, wind up in the middle of nowhere, Ayumu gets his hat stolen by a wild monkey, and Kazuma gets lost in the woods trying to track the animal down. It all leads to a chance encounter with a spirited young girl named Ui, who Kazuma ends up accidentally falling onto and kissing while she tries leading him back to the bus stop. This hardly sits well with Ui’s friend Ibuki who swiftly kicks Kazuma and sends him on his way. Much to Kazuma's continued horror, his bad luck is perpetuated at the inn thanks to its landlady Senka and her slightly perverted sense of humor, and then finding out that two of his classmates are the girls he embarrassed himself in front of back in the woods! + + Hoshizora e Kakaru Hashi finds Kazuma adapting to his new school, dealing with the multiple women who have entered his life, providing emotional support for his younger brother, and coping with living with his new landlady. However, for some reason, something about this place is bringing whispers of the past into Kazuma's mind. Small flashes back to a more innocent time and a friendship long forgotten. What could this déjà vu mean? + background: '' + season: spring + year: 2011 + broadcast: + day: Mondays + time: 09:00 + timezone: Asia/Tokyo + string: Mondays at 09:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 699 + type: anime + name: feng + url: https://myanimelist.net/anime/producer/699/feng + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 9982 + url: https://myanimelist.net/anime/9982/Fairy_Tail_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/65661.jpg + small_image_url: https://myanimelist.net/images/anime/10/65661t.jpg + large_image_url: https://myanimelist.net/images/anime/10/65661l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/65661.webp + small_image_url: https://myanimelist.net/images/anime/10/65661t.webp + large_image_url: https://myanimelist.net/images/anime/10/65661l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_OBekbTmGo0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fairy Tail OVA + - type: Synonym + title: 'Fairy Tail: Youkoso Fairy Hills!' + - type: Synonym + title: 'Yousei Gakuen: Yankee-kun to Yankee-chan' + - type: Japanese + title: フェアリーテイル OVA + title: Fairy Tail OVA + title_english: null + title_japanese: フェアリーテイル OVA + title_synonyms: + - 'Fairy Tail: Youkoso Fairy Hills!' + - 'Yousei Gakuen: Yankee-kun to Yankee-chan' + type: OVA + source: Manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2011-04-15T00:00:00+00:00' + to: '2013-06-17T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2011 + to: + day: 17 + month: 6 + year: 2013 + string: Apr 15, 2011 to Jun 17, 2013 + duration: 27 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 97224 + rank: 2472 + popularity: 1599 + members: 172711 + favorites: 439 + synopsis: |- + When the members of Fairy Tail are not destroying towns or defeating powerful foes, they are attending school, traveling back in time, visiting water parks, and taking on odd jobs from strange clients. No matter where they go, a fun adventure always awaits, sometimes in the most unexpected form! + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9736 + url: https://myanimelist.net/anime/9736/Astarotte_no_Omocha + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75562.jpg + small_image_url: https://myanimelist.net/images/anime/3/75562t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75562l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75562.webp + small_image_url: https://myanimelist.net/images/anime/3/75562t.webp + large_image_url: https://myanimelist.net/images/anime/3/75562l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qKo1bHKI_PA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Astarotte no Omocha! + - type: Synonym + title: Lotte no Omocha! + - type: Japanese + title: アスタロッテのおもちゃ! + - type: English + title: Astarotte's Toy + - type: Spanish + title: Astarotte's Toy + title: Astarotte no Omocha! + title_english: Astarotte's Toy + title_japanese: アスタロッテのおもちゃ! + title_synonyms: + - Lotte no Omocha! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-11T00:00:00+00:00' + to: '2011-06-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2011 + to: + day: 26 + month: 6 + year: 2011 + string: Apr 11, 2011 to Jun 26, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.47 + scored_by: 72641 + rank: 8323 + popularity: 1723 + members: 155656 + favorites: 254 + synopsis: |- + Succubi, like the young princess Astarotte "Lotte" Ygvar, require the life seed from men to survive, replenish their magic, and continue the royal lineage of the magical realm. This means succubi are required to keep a harem of men close at hand. Ironically, Lotte despises men, which will put her life at risk once she matures. To convince her to fulfill her duties, one of her attendants, Judith Snorrevik, goes to the human realm to find a human male whom Lotte can tolerate. + + Judith returns with 23-year-old Naoya Touhara, a single father who unfortunately leaves his daughter, Asuha, behind in the human realm. As the first member of Lotte's harem, Naoya quickly adapts to this new environment, serving the princess to make her happy, rather than viewing her with sexual intent. Unfortunately, when his daughter is allowed to arrive in the magical realm, Naoya's relationship quickly worsens with Lotte. Even so, he strives to patch up their relationship. + + It soon becomes clear, however, that Naoya's presence in the magical realm is more than just mere coincidence. As he develops his bond with Lotte, fate begins to pull together the connections that tie him and everyone else within this enchanting world. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2011 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: [] + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10073 + url: https://myanimelist.net/anime/10073/Seikon_no_Qwaser_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/75450.jpg + small_image_url: https://myanimelist.net/images/anime/2/75450t.jpg + large_image_url: https://myanimelist.net/images/anime/2/75450l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/75450.webp + small_image_url: https://myanimelist.net/images/anime/2/75450t.webp + large_image_url: https://myanimelist.net/images/anime/2/75450l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seikon no Qwaser II + - type: Japanese + title: 聖痕のクェイサー II + - type: English + title: The Qwaser of Stigmata II + title: Seikon no Qwaser II + title_english: The Qwaser of Stigmata II + title_japanese: 聖痕のクェイサー II + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-04-12T00:00:00+00:00' + to: '2011-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2011 + to: + day: 28 + month: 6 + year: 2011 + string: Apr 12, 2011 to Jun 28, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.3 + scored_by: 66086 + rank: 9375 + popularity: 1815 + members: 146163 + favorites: 136 + synopsis: |- + Sasha is partnered with Hana as his new Maria. They infiltrate an all-girls academy, forcing Sasha to crossdress, in search of a Qwaser-related artifact called the Magdalena of Thunder which has appeared in one of the students. However, they have some competition in their search of it. + + (Source: ANN) + background: '' + season: spring + year: 2011 + broadcast: + day: Tuesdays + time: 02:30 + timezone: Asia/Tokyo + string: Tuesdays at 02:30 (JST) + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10033 + url: https://myanimelist.net/anime/10033/Toriko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1757/100671.jpg + small_image_url: https://myanimelist.net/images/anime/1757/100671t.jpg + large_image_url: https://myanimelist.net/images/anime/1757/100671l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1757/100671.webp + small_image_url: https://myanimelist.net/images/anime/1757/100671t.webp + large_image_url: https://myanimelist.net/images/anime/1757/100671l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PS_zQ_g9jE4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toriko + - type: Synonym + title: Toriko (2011) + - type: Synonym + title: Toriko (TV) + - type: Synonym + title: Toriko x One Piece Collabo Special + - type: Japanese + title: トリコ + - type: English + title: Toriko + title: Toriko + title_english: Toriko + title_japanese: トリコ + title_synonyms: + - Toriko (2011) + - Toriko (TV) + - Toriko x One Piece Collabo Special + type: TV + source: Manga + episodes: 147 + status: Finished Airing + airing: false + aired: + from: '2011-04-03T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2011 + to: + day: 30 + month: 3 + year: 2014 + string: Apr 3, 2011 to Mar 30, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 54703 + rank: 2174 + popularity: 1872 + members: 140579 + favorites: 905 + synopsis: "Hamburgers that grow out of the ground like four-leaf clovers, mountain ranges carved out of ice cream, and\ + \ warm servings of mac and cheese that stew deep within the stomachs of volcanoes fill the landscape. This world of\ + \ delectable natural wonders has reached a prime age of exploration—the Gourmet Age! Citizens and chefs alike aspire\ + \ to taste and prepare the finest dishes, while adventurers called \"Gourmet Hunters\" seek out delicious rare ingredients.\n\ + \nPossessing a unique set of skills, the wild and passionate Gourmet Hunter Toriko is infamous for discovering 2%\ + \ of all known ingredients. Together with his friend Komatsu—a highly skilled chef working at a five-star hotel—Toriko\ + \ strives to complete his Full Course Menu of Life. But it isn’t going to be easy; in order to obtain the most delicious\ + \ ingredients, Toriko must battle against obstacles like deadly monsters, evil organizations, and food itself! \n\ + \n[Written by MAL Rewrite]" + background: 'The first episode is actually a two-part special called "Toriko x One Piece Collabo Special"—a crossover + with One Piece. The first part aired during Toriko''s timeslot at 9:00, and the second part aired during One Piece''s + timeslot at 9:30. That is also the reason why the second Toriko episode doesn''t continue where the first one left + off. Episode 51 is the first part of a two-part special called "Toriko x One Piece Collabo Special 2"—another crossover + with One Piece. The second part is One Piece episode 542. The first part aired during Toriko''s timeslot at 9:00, + and the second part aired during One Piece''s timeslot at 9:30. Episode 99 is the first part of a two-part special + called "Dream 9 Toriko & One Piece & Dragon Ball Z Super Collaboration Special"—a crossover with One Piece and Dragon + Ball Z. The second part is One Piece episode 590. The first part aired during Toriko''s timeslot at 9:00, and the + second part aired during One Piece''s timeslot at 9:30. (Source: AniDB)' + season: spring + year: 2011 + broadcast: + day: Sundays + time: 09:00 + timezone: Asia/Tokyo + string: Sundays at 09:00 (JST) + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9790 + url: https://myanimelist.net/anime/9790/Sora_no_Otoshimono__Tokeijikake_no_Angeloid + images: + jpg: + image_url: https://myanimelist.net/images/anime/1551/112732.jpg + small_image_url: https://myanimelist.net/images/anime/1551/112732t.jpg + large_image_url: https://myanimelist.net/images/anime/1551/112732l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1551/112732.webp + small_image_url: https://myanimelist.net/images/anime/1551/112732t.webp + large_image_url: https://myanimelist.net/images/anime/1551/112732l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yxoPJY04xAo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sora no Otoshimono: Tokeijikake no Angeloid' + - type: Synonym + title: 'Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid' + - type: Synonym + title: 'Sora no Otoshimono: The Movie' + - type: Synonym + title: Lost Property of the Sky Movie + - type: Synonym + title: Misplaced by Heaven + - type: Japanese + title: 劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド) + - type: English + title: 'Heaven''s Lost Property the Movie: The Angeloid of Clockwork' + title: 'Sora no Otoshimono: Tokeijikake no Angeloid' + title_english: 'Heaven''s Lost Property the Movie: The Angeloid of Clockwork' + title_japanese: 劇場版 そらのおとしもの 時計じかけの哀女神(エンジェロイド) + title_synonyms: + - 'Gekijouban Sora no Otoshimono: Tokeijikake no Angeloid' + - 'Sora no Otoshimono: The Movie' + - Lost Property of the Sky Movie + - Misplaced by Heaven + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-06-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 6 + year: 2011 + to: + day: null + month: null + year: null + string: Jun 25, 2011 + duration: 1 hr 37 min + rating: R - 17+ (violence & profanity) + score: 7.54 + scored_by: 74135 + rank: 2081 + popularity: 1886 + members: 139346 + favorites: 264 + synopsis: Movie adaptation of the Sora no Otoshimono manga, based on Kazane Hiyori's arc. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/07-2011-summer.yaml b/test/fixtures/jikan/season_matrix/07-2011-summer.yaml new file mode 100644 index 0000000..54b25e6 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/07-2011-summer.yaml @@ -0,0 +1,3374 @@ +metadata: + captured_at: '2026-05-11T11:32:37Z' + label: 2011-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2011/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:36 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:611a3e4da85b42a2d21b86720d7169958339fb95 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 8 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 197 + per_page: 25 + data: + - mal_id: 10408 + url: https://myanimelist.net/anime/10408/Hotarubi_no_Mori_e + images: + jpg: + image_url: https://myanimelist.net/images/anime/1599/112267.jpg + small_image_url: https://myanimelist.net/images/anime/1599/112267t.jpg + large_image_url: https://myanimelist.net/images/anime/1599/112267l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1599/112267.webp + small_image_url: https://myanimelist.net/images/anime/1599/112267t.webp + large_image_url: https://myanimelist.net/images/anime/1599/112267l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qXLSRH31Yao?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hotarubi no Mori e + - type: Synonym + title: The Light of a Firefly Forest + - type: Japanese + title: 蛍火の杜へ + - type: English + title: Into the Forest of Fireflies' Light + title: Hotarubi no Mori e + title_english: Into the Forest of Fireflies' Light + title_japanese: 蛍火の杜へ + title_synonyms: + - The Light of a Firefly Forest + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-09-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 9 + year: 2011 + to: + day: null + month: null + year: null + string: Sep 17, 2011 + duration: 45 min + rating: G - All Ages + score: 8.26 + scored_by: 487912 + rank: 371 + popularity: 243 + members: 879322 + favorites: 10566 + synopsis: |- + During a summer vacation at her grandfather’s house, six-year-old Hotaru Takegawa gets lost in a forest rumored to be inhabited by spirits. While crying out in desperation, Hotaru is approached by Gin—a mysterious boy wearing a mask—who offers to help her. + + Overjoyed at the sight of another person, Hotaru runs to Gin with open arms only to be rudely fended off. However, she quickly learns the grave reason behind his behavior: a dreadful curse has been cast upon Gin. Should he ever be touched by a human being, he will disappear forever. + + Though Gin urges her to never return, Hotaru does the exact opposite, and before too long, the two become close friends despite his delicate situation. Nonetheless, as years pass and their mutual feelings grow stronger, Hotaru and Gin start struggling with the boundaries that destiny has set between them. + + [Written by MAL Rewrite] + background: 'Hotarubi no Mori e premiered in Japanese cinemas on September 17, 2011. Though initially planned to be + first presented in March 2011 at the Anime Contents Expo in Chiba, Japan, the event was canceled due to the 2011 Tohoku + earthquake and tsunami. In Europe, the movie was shown at the 2011 Scotland Loves Animation festival, twice: in Glasgow + and then in Edinburgh. The film was also screened at the 2011 Leeds International Film Festival in November and at + the Anime Expo convention in Los Angeles on June 30, 2012. Following its premiere in Scotland, Hotarubi no Mori e + won the festival''s Jury Award. It was also given the Animation Film Award at the 66th Annual Mainichi Film Awards + in Japan. DVDs and limited edition Blu-ray disc sets were made available in Japan on February 22, 2012. The sets included + bonus content such as illustrations, stickers, brochures, and one of Gin''s masks. According to Japan''s Oricon sales + chart, Blu-ray disc sets sold well shortly after their release.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: [] + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 10162 + url: https://myanimelist.net/anime/10162/Usagi_Drop + images: + jpg: + image_url: https://myanimelist.net/images/anime/1460/98853.jpg + small_image_url: https://myanimelist.net/images/anime/1460/98853t.jpg + large_image_url: https://myanimelist.net/images/anime/1460/98853l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1460/98853.webp + small_image_url: https://myanimelist.net/images/anime/1460/98853t.webp + large_image_url: https://myanimelist.net/images/anime/1460/98853l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PlWk-96JHz4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Usagi Drop + - type: Synonym + title: Usagi Drop + - type: Japanese + title: うさぎドロップ + - type: English + title: Bunny Drop + title: Usagi Drop + title_english: Bunny Drop + title_japanese: うさぎドロップ + title_synonyms: + - Usagi Drop + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-09-16T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 16 + month: 9 + year: 2011 + string: Jul 8, 2011 to Sep 16, 2011 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.32 + scored_by: 255746 + rank: 311 + popularity: 485 + members: 525797 + favorites: 6034 + synopsis: "Daikichi Kawachi is a 30-year-old bachelor working a respectable job but otherwise wandering aimlessly through\ + \ life. When his grandfather suddenly passes away, he returns to the family home to pay his respects. Upon arriving\ + \ at the house, he meets a mysterious young girl named Rin who, to Daikichi’s astonishment, is his grandfather's illegitimate\ + \ daughter!\n \nThe shy and unapproachable girl is deemed an embarrassment to the family, and finds herself ostracized\ + \ by her father's relatives, all of them refusing to take care of her in the wake of his death. Daikichi, angered\ + \ by their coldness toward Rin, announces that he will take her in—despite the fact that he is a young, single man\ + \ with no prior childcare experience.\n\nUsagi Drop is the story of Daikichi's journey through fatherhood as he raises\ + \ Rin with his gentle and affectionate nature, as well as an exploration of the warmth and interdependence that are\ + \ at the heart of a happy, close-knit family.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2011 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 1765 + type: anime + name: Shodensha + url: https://myanimelist.net/anime/producer/1765/Shodensha + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 10110 + url: https://myanimelist.net/anime/10110/Mayo_Chiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/29971.jpg + small_image_url: https://myanimelist.net/images/anime/13/29971t.jpg + large_image_url: https://myanimelist.net/images/anime/13/29971l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/29971.webp + small_image_url: https://myanimelist.net/images/anime/13/29971t.webp + large_image_url: https://myanimelist.net/images/anime/13/29971l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mayo Chiki! + - type: Japanese + title: まよチキ! + - type: English + title: Mayo Chiki! + title: Mayo Chiki! + title_english: Mayo Chiki! + title_japanese: まよチキ! + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 30 + month: 9 + year: 2011 + string: Jul 8, 2011 to Sep 30, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.21 + scored_by: 278904 + rank: 3899 + popularity: 487 + members: 524061 + favorites: 1916 + synopsis: |- + Due to his mother and sister, who both love professional wrestling, Kinjirou Sakamachi developed a resilient body that could take hard punches, aggressive kicks, and even deadly vehicle bumps, in order to survive their various grappling positions and locks. However, he also developed gynophobia, an abnormal fear of women. With just one touch from a girl, his nose bleeds uncontrollably, he sweats excessively, and in rare cases, faints abruptly. + + His life changes for the worse because of a fated meeting in the restroom. While trying to escape from a girl, he discovers that the most popular student in their school, Subaru Konoe—the butler of the headmaster’s daughter, Kanade Suzutsuki—is actually female! Surprised, Subaru violently assaults Kinjirou, dealing significant damage and knocking him unconscious. When he comes to, he meets Kanade. In exchange for his silence, she promises to help cure his phobia. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 81 + type: anime + name: Crossdressing + url: https://myanimelist.net/anime/genre/81/Crossdressing + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10161 + url: https://myanimelist.net/anime/10161/No6 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1474/90768.jpg + small_image_url: https://myanimelist.net/images/anime/1474/90768t.jpg + large_image_url: https://myanimelist.net/images/anime/1474/90768l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1474/90768.webp + small_image_url: https://myanimelist.net/images/anime/1474/90768t.webp + large_image_url: https://myanimelist.net/images/anime/1474/90768l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/x2ig6nNs4xU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: No.6 + - type: Synonym + title: Number Six + - type: Synonym + title: Number 6 + - type: Synonym + title: No. Six + - type: Japanese + title: NO.6[ナンバー・シックス] + - type: English + title: No. 6 + - type: Spanish + title: No. 6 + title: No.6 + title_english: No. 6 + title_japanese: NO.6[ナンバー・シックス] + title_synonyms: + - Number Six + - Number 6 + - No. Six + type: TV + source: Novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-09-16T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 16 + month: 9 + year: 2011 + string: Jul 8, 2011 to Sep 16, 2011 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.56 + scored_by: 216303 + rank: 1980 + popularity: 567 + members: 464007 + favorites: 7612 + synopsis: "Many years ago, after the end of a bloody world war, mankind took shelter in six city-states that were peaceful\ + \ and perfect... at least on the surface. However, Shion—an elite resident of the city-state No. 6—gained a new perspective\ + \ on the world he lives in, thanks to a chance encounter with a mysterious boy, Nezumi. Nezumi turned out to be just\ + \ one of many who lived in the desolate wasteland beyond the walls of the supposed utopia. But despite knowing that\ + \ the other boy was a fugitive, Shion decided to take him in for the night and protect him, which resulted in drastic\ + \ consequences: because of his actions, Shion and his mother lost their status as elites and were relocated elsewhere,\ + \ and the darker side of the city began to make itself known. \n\nNow, a long time after their life-altering first\ + \ meeting, Shion and Nezumi are finally brought together once again—the former elite and the boy on the run are about\ + \ to embark on an adventure that will, in time, reveal the shattering secrets of No. 6.\n\n[Written by MAL Rewrite]" + background: No. 6 condenses but largely remains faithful to the the original nine-part light novel series. Changes were + made to tone down the amount of violence in the series, in addition to creating an alternate ending. + season: summer + year: 2011 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 10490 + url: https://myanimelist.net/anime/10490/Blood-C + images: + jpg: + image_url: https://myanimelist.net/images/anime/1691/140716.jpg + small_image_url: https://myanimelist.net/images/anime/1691/140716t.jpg + large_image_url: https://myanimelist.net/images/anime/1691/140716l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1691/140716.webp + small_image_url: https://myanimelist.net/images/anime/1691/140716t.webp + large_image_url: https://myanimelist.net/images/anime/1691/140716l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blood-C + - type: Japanese + title: ブラッドシー + - type: English + title: Blood-C + title: Blood-C + title_english: Blood-C + title_japanese: ブラッドシー + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 30 + month: 9 + year: 2011 + string: Jul 8, 2011 to Sep 30, 2011 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.53 + scored_by: 172740 + rank: 7958 + popularity: 665 + members: 408720 + favorites: 1381 + synopsis: |- + Peaceful schoolgirl by day, fearsome monster slayer by night, Saya Kisaragi is leading a split life. Equipped with a ceremonial sword given to her by her father for sacred tasks, she vanquishes every monster who dares threaten her quiet little village. But all too soon, Saya's reality and everything she believes to be true is tested, when she overhears the monsters speak of a broken covenant—something she knows nothing about. And then, unexpectedly, a strange dog appears; it asks her to whom she promised to protect the village, curious as to what would happen if she were to break that promise. Tormented by unexplainable visions and her world unraveling around her, we travel with Saya through her struggle to find a way to the truth in a village where nothing is as it seems. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Fridays + time: 01:40 + timezone: Asia/Tokyo + string: Fridays at 01:40 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 8516 + url: https://myanimelist.net/anime/8516/Baka_to_Test_to_Shoukanjuu_Ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/1415/145672.jpg + small_image_url: https://myanimelist.net/images/anime/1415/145672t.jpg + large_image_url: https://myanimelist.net/images/anime/1415/145672l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1415/145672.webp + small_image_url: https://myanimelist.net/images/anime/1415/145672t.webp + large_image_url: https://myanimelist.net/images/anime/1415/145672l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Baka to Test to Shoukanjuu Ni! + - type: Synonym + title: Baka to Test to Shoukanjuu 2 + - type: Synonym + title: The Idiot + - type: Synonym + title: the Tests + - type: Synonym + title: and the Summoned Creatures 2 + - type: Synonym + title: Baka and Test - Summon the Beasts + - type: Synonym + title: Baka to Test to Shokanju 2 + - type: Synonym + title: BakaTest 2 + - type: Japanese + title: バカとテストと召喚獣 にっ! + - type: English + title: Baka & Test – Summon the Beasts 2 + title: Baka to Test to Shoukanjuu Ni! + title_english: Baka & Test – Summon the Beasts 2 + title_japanese: バカとテストと召喚獣 にっ! + title_synonyms: + - Baka to Test to Shoukanjuu 2 + - The Idiot + - the Tests + - and the Summoned Creatures 2 + - Baka and Test - Summon the Beasts + - Baka to Test to Shokanju 2 + - BakaTest 2 + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 30 + month: 9 + year: 2011 + string: Jul 8, 2011 to Sep 30, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 232818 + rank: 1577 + popularity: 703 + members: 386105 + favorites: 1215 + synopsis: "The blockheads of Class F return with more misadventures! Rather than desperately competing against the elite\ + \ students in Class A for better facilities, they have other problems at hand. While the girls are constantly vying\ + \ for the boys' attention, Akihisa Yoshii and Yuuji Sakamoto are being blackmailed by a stalker who threatens to reveal\ + \ their most embarrassing secrets to the whole school. Moreover, everyone's avatar starts to behave strangely. \n\ + \nFilled with more nosebleeds and eye-pokes, the boys of Class F must work together to discover the stalker's identity\ + \ and deal with the misfortunes that come with love among fools.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2011 + broadcast: + day: null + time: null + timezone: null + string: Fridays at Unknown + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 685 + type: anime + name: Kadokawa Contents Gate + url: https://myanimelist.net/anime/producer/685/Kadokawa_Contents_Gate + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 1015 + type: anime + name: T.O Entertainment + url: https://myanimelist.net/anime/producer/1015/TO_Entertainment + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 2981 + type: anime + name: Omnibus Promotion + url: https://myanimelist.net/anime/producer/2981/Omnibus_Promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 10495 + url: https://myanimelist.net/anime/10495/Yuru_Yuri + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/75173.jpg + small_image_url: https://myanimelist.net/images/anime/12/75173t.jpg + large_image_url: https://myanimelist.net/images/anime/12/75173l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/75173.webp + small_image_url: https://myanimelist.net/images/anime/12/75173t.webp + large_image_url: https://myanimelist.net/images/anime/12/75173l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/T_WOMFl7Bd8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuru Yuri + - type: Synonym + title: YRYR + - type: Synonym + title: Yuruyuri + - type: Japanese + title: ゆるゆり + - type: English + title: 'YuruYuri: Happy Go Lily' + title: Yuru Yuri + title_english: 'YuruYuri: Happy Go Lily' + title_japanese: ゆるゆり + title_synonyms: + - YRYR + - Yuruyuri + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-05T00:00:00+00:00' + to: '2011-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2011 + to: + day: 20 + month: 9 + year: 2011 + string: Jul 5, 2011 to Sep 20, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.57 + scored_by: 158419 + rank: 1954 + popularity: 777 + members: 354355 + favorites: 4534 + synopsis: |- + After a year in grade school without her childhood friends, first year student Akari Akaza is finally reunited with second years Yui Funami and Kyouko Toshinou at their all-girls' middle school. During the duo's first year, Yui and Kyouko formed the "Amusement Club" which occupies the now nonexistent Tea Club's room. Shortly after Akari joins, one of her fellow classmates, Chinatsu Yoshikawa, pays the trio a visit under the impression that they are the Tea Club; it is only once the three girls explain that the Tea Club has been disbanded that they can convince Chinatsu to join the Amusement Club—a group with no purpose other than to provide entertainment for its members. + + Based on the slice-of-life manga by Namori, Yuru Yuri is an eccentric comedy about a group of girls who spend their spare time drinking tea and fawning over each other, all while completely failing to even notice the supposed main character Akari amongst them. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 39 + type: anime + name: Daume + url: https://myanimelist.net/anime/producer/39/Daume + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 497 + type: anime + name: Studio Gram + url: https://myanimelist.net/anime/producer/497/Studio_Gram + - mal_id: 755 + type: anime + name: Jumondou + url: https://myanimelist.net/anime/producer/755/Jumondou + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10721 + url: https://myanimelist.net/anime/10721/Mawaru_Penguindrum + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/30238.jpg + small_image_url: https://myanimelist.net/images/anime/5/30238t.jpg + large_image_url: https://myanimelist.net/images/anime/5/30238l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/30238.webp + small_image_url: https://myanimelist.net/images/anime/5/30238t.webp + large_image_url: https://myanimelist.net/images/anime/5/30238l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mawaru Penguindrum + - type: Japanese + title: 輪るピングドラム + - type: English + title: Penguindrum + title: Mawaru Penguindrum + title_english: Penguindrum + title_japanese: 輪るピングドラム + title_synonyms: [] + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-12-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 23 + month: 12 + year: 2011 + string: Jul 8, 2011 to Dec 23, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.93 + scored_by: 113203 + rank: 872 + popularity: 884 + members: 320026 + favorites: 7424 + synopsis: |- + For the Takakura family, destiny is an ever-spinning wheel, pointing passionately in their direction with equal tides of joy and sorrow before ticking on to the next wishmaker. With their parents gone, twin brothers Kanba and Shouma live alone with their beloved little sister Himari, whose poor health cannot decline any further. + + On the day Himari is given permission to temporarily leave the hospital, her brothers take her out to the aquarium to celebrate, where the family's supposed fate is brought forth with her sudden collapse. However, when Himari is inexplicably revived by a penguin hat from the aquarium's souvenir shop, the hand of fate continues to tick faithfully forward. + + With her miraculous recovery, though, comes a cost: there is a new entity within her body, whose condition for keeping her fate at bay sends the boys on a wild goose chase for the mysterious "Penguin Drum." In their search, the boys will have to follow the threads of fate leading from their own shocking past and into the lives of other wishmakers vying for the Penguin Drum, all hoping to land upon their chosen destiny. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Fridays + time: 02:10 + timezone: Asia/Tokyo + string: Fridays at 02:10 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 10589 + url: https://myanimelist.net/anime/10589/Naruto__Shippuuden_Movie_5_-_Blood_Prison + images: + jpg: + image_url: https://myanimelist.net/images/anime/1500/134496.jpg + small_image_url: https://myanimelist.net/images/anime/1500/134496t.jpg + large_image_url: https://myanimelist.net/images/anime/1500/134496l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1500/134496.webp + small_image_url: https://myanimelist.net/images/anime/1500/134496t.webp + large_image_url: https://myanimelist.net/images/anime/1500/134496l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HC7MbHH0FB0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Naruto: Shippuuden Movie 5 - Blood Prison' + - type: Synonym + title: Naruto Movie 8 + - type: Synonym + title: 'Gekijouban Naruto: Blood Prison' + - type: Japanese + title: 劇場版NARUTO-ナルト- ブラッド・プリズン + - type: English + title: 'Naruto Shippuden the Movie 5: Blood Prison' + - type: German + title: 'Naruto Film 5: Blood Prison' + - type: French + title: 'Naruto Film 5: Blood Prison' + title: 'Naruto: Shippuuden Movie 5 - Blood Prison' + title_english: 'Naruto Shippuden the Movie 5: Blood Prison' + title_japanese: 劇場版NARUTO-ナルト- ブラッド・プリズン + title_synonyms: + - Naruto Movie 8 + - 'Gekijouban Naruto: Blood Prison' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-07-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 7 + year: 2011 + to: + day: null + month: null + year: null + string: Jul 30, 2011 + duration: 1 hr 42 min + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 158538 + rank: 2388 + popularity: 1020 + members: 276153 + favorites: 264 + synopsis: "During their discussion of a sensitive investigation A, the Fourth Raikage, and his subordinates are ambushed\ + \ by a cloaked intruder. As the Kumogakure leader repels the assault, he is shocked to discover that the culprit is\ + \ Naruto Uzumaki! \n\nHowever, the assassination attempt is not the only crime attributed to the young ninja, who\ + \ vigorously denies the accusations. To avoid a diplomatic conflict, Tsunade forcibly sends him to Kusagakure's Houzuki\ + \ Castle—a maximum-security penitentiary dedicated to ninja criminals—until the situation is resolved.\n\nDespite\ + \ his powers being immediately suppressed by Mui, the prison's warden who possesses the ability to seal chakra, Naruto\ + \ recklessly engages in futile escape attempts. But with the help of two fellow inmates, he realizes that there is\ + \ more to this legendary detention facility than meets the eye. Uncovering a terrible secret, the trio embarks on\ + \ a dangerous operation that may be Naruto's only chance to break free and prove his innocence.\n\n[Written by MAL\ + \ Rewrite]" + background: 'Although it is debatable where Naruto: Shippuuden Movie 5 - Blood Prison is set in the timeline of the + main series due to confusing story elements, it is likely to fall somewhere after episode 220 during the "Fourth Shinobi + World War: Countdown" and "Paradise Life on a Boat" arcs. The movie was released in theaters on July 30, 2011, earning + 840 million yen in box office revenue. The DVD version was made available on April 27, 2012 in Japan. Neon Alley began + streaming the film on January 26, 2014 and Viz Media released it on DVD and Blu-ray in North America on February 18, + 2014. While the previous movies were produced with the participation of the television series'' screenplay writers, + Naruto: Shippuuden Movie 5 - Blood Prison was entrusted to the mystery writer Akira Higashiyama. For this reason, + "Shippuuden" was removed from the Japanese original title.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10379 + url: https://myanimelist.net/anime/10379/Natsume_Yuujinchou_San + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/82394.jpg + small_image_url: https://myanimelist.net/images/anime/8/82394t.jpg + large_image_url: https://myanimelist.net/images/anime/8/82394l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/82394.webp + small_image_url: https://myanimelist.net/images/anime/8/82394t.webp + large_image_url: https://myanimelist.net/images/anime/8/82394l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eGagSxjjA0s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Natsume Yuujinchou San + - type: Synonym + title: Natsume Yuujinchou Three + - type: Synonym + title: Natsume Yuujinchou 3 + - type: Synonym + title: Natsume Yujincho 3 + - type: Japanese + title: 夏目友人帳 参 + - type: English + title: Natsume's Book of Friends Season 3 + title: Natsume Yuujinchou San + title_english: Natsume's Book of Friends Season 3 + title_japanese: 夏目友人帳 参 + title_synonyms: + - Natsume Yuujinchou Three + - Natsume Yuujinchou 3 + - Natsume Yujincho 3 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-07-05T00:00:00+00:00' + to: '2011-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2011 + to: + day: 27 + month: 9 + year: 2011 + string: Jul 5, 2011 to Sep 27, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.57 + scored_by: 127316 + rank: 125 + popularity: 1035 + members: 272674 + favorites: 1505 + synopsis: |- + Natsume Yuujinchou San follows Takashi Natsume, a boy who is able to see youkai. Natsume and his bodyguard Madara, nicknamed Nyanko-sensei, continue on their quest to release youkai from their contracts in the "Book of Friends." + + Natsume comes to terms with his ability to see youkai and stops thinking of it as a curse. As he spends more time with his human and youkai friends, he realizes how much he values them both and decides he doesn't have to choose between the spirit and human worlds to be happy. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 10568 + url: https://myanimelist.net/anime/10568/Kamisama_no_Memochou + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75202.jpg + small_image_url: https://myanimelist.net/images/anime/13/75202t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75202l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75202.webp + small_image_url: https://myanimelist.net/images/anime/13/75202t.webp + large_image_url: https://myanimelist.net/images/anime/13/75202l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5qWB11LIwmE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamisama no Memochou + - type: Synonym + title: It's the Only NEET Thing to Do + - type: Synonym + title: Kami-sama no Memo-chou + - type: Synonym + title: Kami-sama no Memo-chou + - type: Synonym + title: God's Notebook + - type: Synonym + title: Notebook of God + - type: Japanese + title: 神様のメモ帳 + - type: English + title: Heaven's Memo Pad + title: Kamisama no Memochou + title_english: Heaven's Memo Pad + title_japanese: 神様のメモ帳 + title_synonyms: + - It's the Only NEET Thing to Do + - Kami-sama no Memo-chou + - Kami-sama no Memo-chou + - God's Notebook + - Notebook of God + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-02T00:00:00+00:00' + to: '2011-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2011 + to: + day: 24 + month: 9 + year: 2011 + string: Jul 2, 2011 to Sep 24, 2011 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 7.46 + scored_by: 98349 + rank: 2437 + popularity: 1128 + members: 250142 + favorites: 805 + synopsis: |- + Narumi Fujishima may seem like a normal high school student at first glance, but in reality he is a pessimistic outsider. Due to his father's work, he had to constantly transfer schools, and thus he has never managed to become a part of society. When he is forced to join the gardening club by his cheerful classmate Ayaka Shinozaki, Narumi encounters the genius hacker Alice, who lives in isolation above Hanamaru, the ramen shop where Ayaka works part-time. He then discovers that Alice is running a special private detective agency, and that all her professional associates refer to themselves as "NEET"s: Not in Education, Employment, or Training. + + Joining the NEET detective agency due to his personal connection with a criminal case, Narumi finds himself entangled in a world of dangerous investigations conducted by the ill-assorted group of detectives, all the while trying to track down the crime syndicate which seems to have mysterious ties to Alice. + + [Written by MAL Rewrite] + background: Episode 1 ran for 48 minutes. Every other episode ran for 24 minutes. + season: summer + year: 2011 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 10029 + url: https://myanimelist.net/anime/10029/Coquelicot-zaka_kara + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/32547.jpg + small_image_url: https://myanimelist.net/images/anime/8/32547t.jpg + large_image_url: https://myanimelist.net/images/anime/8/32547l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/32547.webp + small_image_url: https://myanimelist.net/images/anime/8/32547t.webp + large_image_url: https://myanimelist.net/images/anime/8/32547l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9nzpk_Br6yo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Coquelicot-zaka kara + - type: Synonym + title: Coquelicot-zaka kara + - type: Synonym + title: Kokuriko-saka kara + - type: Synonym + title: Kokuriko-zaka kara + - type: Synonym + title: Coquelicot Saka kara + - type: Synonym + title: Kokurikozaka kara + - type: Japanese + title: コクリコ坂から + - type: English + title: From Up on Poppy Hill + - type: German + title: From Up on Poppy Hill + - type: Spanish + title: La Colina de las Amapolas + - type: French + title: From Up on Poppy Hill + title: Coquelicot-zaka kara + title_english: From Up on Poppy Hill + title_japanese: コクリコ坂から + title_synonyms: + - Coquelicot-zaka kara + - Kokuriko-saka kara + - Kokuriko-zaka kara + - Coquelicot Saka kara + - Kokurikozaka kara + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-07-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 7 + year: 2011 + to: + day: null + month: null + year: null + string: Jul 16, 2011 + duration: 1 hr 35 min + rating: G - All Ages + score: 7.78 + scored_by: 134704 + rank: 1234 + popularity: 1233 + members: 229637 + favorites: 1316 + synopsis: |- + Atop a hill overlooking a seaside port sits a boarding house named Coquelicot Manor. Since the building is run by her family, Umi Matsuzaki carries out many of the duties involved in managing the small establishment, such as preparing meals for her fellow boarders. When she isn't at home, she is a student at the local high school—one that is currently dealing with a small crisis. + + In anticipation of the upcoming Olympic Games, a beloved old clubhouse is set to be demolished to make way for a modern building. As a result, a large part of the student body has banded together, working tirelessly to prevent this from happening. Umi finds herself helping the newspaper club to spread information about this cause where she befriends Shun Kazama, whom she gradually begins to fall in love with. But Shun is an orphan who doesn't know much about his origins, and when the two begin searching for clues to the boy's past, they discover that they may have a lot more in common than either of them could have thought. + + [Writtten by MAL Rewrite] + background: In 2012 the film won the Animation of the Year award in the 35th Japan Academy Prize and in the 11th Tokyo + Anime Award. In 2013 it won the Best Foreign Animation/Family Trailer during the 14th Golden Trailer Awards and tied + with The Wind Rises (Kaze Tachinu) film for the Best Animated Feature in the 12th Utah Film Critics Association. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 10012 + url: https://myanimelist.net/anime/10012/Carnival_Phantasm + images: + jpg: + image_url: https://myanimelist.net/images/anime/1018/92921.jpg + small_image_url: https://myanimelist.net/images/anime/1018/92921t.jpg + large_image_url: https://myanimelist.net/images/anime/1018/92921l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1018/92921.webp + small_image_url: https://myanimelist.net/images/anime/1018/92921t.webp + large_image_url: https://myanimelist.net/images/anime/1018/92921l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rIjRh9uwtD0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Carnival Phantasm + - type: Japanese + title: カーニバル・ファンタズム + title: Carnival Phantasm + title_english: null + title_japanese: カーニバル・ファンタズム + title_synonyms: [] + type: OVA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-08-14T00:00:00+00:00' + to: '2011-12-31T00:00:00+00:00' + prop: + from: + day: 14 + month: 8 + year: 2011 + to: + day: 31 + month: 12 + year: 2011 + string: Aug 14, 2011 to Dec 31, 2011 + duration: 14 min per ep + rating: PG-13 - Teens 13 or older + score: 7.88 + scored_by: 102745 + rank: 986 + popularity: 1323 + members: 211335 + favorites: 1660 + synopsis: |- + The Carnival Moment is a time when several narratives from Type-Moon's famous works intersect. It happens every decade in an entirely new dimension, and those who have never run into each other can meet. And what's more, all individuals involved gain the opportunity to fulfill any of their wishes! However, they will have to come a long way, as they will need to partake in contests. + + In Carnival Phantasm, various characters are put into situations that ridicule their own worlds. Nevertheless, they all have the same objective: to win the contests by any means necessary! + + [Written by MAL Rewrite] + background: Carnival Phantasm was made in celebration of Type-Moon's 10th anniversary. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: [] + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 10321 + url: https://myanimelist.net/anime/10321/Uta_no☆Prince-sama♪_Maji_Love_1000 + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/30248.jpg + small_image_url: https://myanimelist.net/images/anime/6/30248t.jpg + large_image_url: https://myanimelist.net/images/anime/6/30248l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/30248.webp + small_image_url: https://myanimelist.net/images/anime/6/30248t.webp + large_image_url: https://myanimelist.net/images/anime/6/30248l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oOTm-Ew1Us0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uta no☆Prince-sama♪ Maji Love 1000% + - type: Synonym + title: Uta no Prince-sama Maji Love 1000% + - type: Synonym + title: UtaPri + - type: Japanese + title: うたの☆プリンスさまっ♪ マジLOVE1000% + - type: English + title: Uta no Prince Sama + - type: Spanish + title: Uta no Prince Sama Maji Love 1000% + title: Uta no☆Prince-sama♪ Maji Love 1000% + title_english: Uta no Prince Sama + title_japanese: うたの☆プリンスさまっ♪ マジLOVE1000% + title_synonyms: + - Uta no Prince-sama Maji Love 1000% + - UtaPri + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-07-03T00:00:00+00:00' + to: '2011-09-24T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2011 + to: + day: 24 + month: 9 + year: 2011 + string: Jul 3, 2011 to Sep 24, 2011 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 101152 + rank: 5052 + popularity: 1351 + members: 207262 + favorites: 1620 + synopsis: |- + Haruka Nanami, an aspiring composer from the countryside, longs to write music for her beloved idol, Hayato Ichinose. Determined to accomplish this goal, she enrolls into Saotome Academy, a highly regarded vocational school for the performing arts. + + Upon her arrival, Haruka soon learns that everyone on staff, including the headmaster, is either an idol, a composer, or a poet. To top it all off, she is surrounded by incredibly talented future idols and composers, and the competition among the students is fierce; with the possibility of recruitment by the Shining Agency upon graduation, the stakes are incredibly high. As she strives to reach her dream at the academy, one fateful night, a series of events lead Haruka to a mysterious man standing in the moonlight, and he seems a bit familiar... + + [Written by MAL Rewrite] + background: Uta no Prince-sama Maji Love 1000% was licensed for an English release as Uta no Prince-sama Season 1 by + Sentai Filmworks. It was released on January 7th, 2014 with a DVD and Blu Ray edition. + season: summer + year: 2011 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 116 + type: anime + name: Broccoli + url: https://myanimelist.net/anime/producer/116/Broccoli + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 61 + type: anime + name: Idols (Male) + url: https://myanimelist.net/anime/genre/61/Idols_Male + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 9135 + url: https://myanimelist.net/anime/9135/Fullmetal_Alchemist__The_Sacred_Star_of_Milos + images: + jpg: + image_url: https://myanimelist.net/images/anime/1217/152912.jpg + small_image_url: https://myanimelist.net/images/anime/1217/152912t.jpg + large_image_url: https://myanimelist.net/images/anime/1217/152912l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1217/152912.webp + small_image_url: https://myanimelist.net/images/anime/1217/152912t.webp + large_image_url: https://myanimelist.net/images/anime/1217/152912l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/37Iofk7wNjE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fullmetal Alchemist: The Sacred Star of Milos' + - type: Synonym + title: 'Fullmetal Alchemist: Milos no Seinaru Hoshi' + - type: Synonym + title: Fullmetal Alchemist Movie 2 + - type: Synonym + title: Hagane no Renkinjutsushi Movie 2 + - type: Synonym + title: FMA Movie 2 + - type: Japanese + title: 劇場版 鋼の錬金術師 嘆きの丘(ミロス)の聖なる星 + - type: English + title: 'Fullmetal Alchemist: The Sacred Star of Milos' + - type: German + title: 'Fullmetal Alchemist: The sacred Star of Milos' + - type: Spanish + title: 'Fullmetal Alchemist: La Estrella Sagrada de Milos' + - type: French + title: 'Fullmetal Alchemist: L''Étoile Sacrée de Milos' + title: 'Fullmetal Alchemist: The Sacred Star of Milos' + title_english: 'Fullmetal Alchemist: The Sacred Star of Milos' + title_japanese: 劇場版 鋼の錬金術師 嘆きの丘(ミロス)の聖なる星 + title_synonyms: + - 'Fullmetal Alchemist: Milos no Seinaru Hoshi' + - Fullmetal Alchemist Movie 2 + - Hagane no Renkinjutsushi Movie 2 + - FMA Movie 2 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-07-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 7 + year: 2011 + to: + day: null + month: null + year: null + string: Jul 2, 2011 + duration: 1 hr 50 min + rating: R - 17+ (violence & profanity) + score: 7.26 + scored_by: 102247 + rank: 3533 + popularity: 1410 + members: 197998 + favorites: 164 + synopsis: |- + Chasing a runaway alchemist with strange powers, brothers Edward and Alphonse Elric stumble into the squalid valley of the Milos. The Milosians are an oppressed group that seek to reclaim their holy land from Creta: a militaristic country that forcefully annexed their nation. In the eye of the political storm is a girl named Julia Crichton, who emphatically wishes for the Milos to regain their strength and return to being a nation of peace. + + Befriending the girl, Edward and Alphonse find themselves in the midst of a rising resistance that involves the use of the very object they have been seeking all along—the Philosopher's Stone. However, their past experiences with the stone cause them reservation, and the brothers are unwilling to help. + + But as they discover the secrets behind Creta's intentions and questionable history, the brothers are drawn into the battle between the rebellious Milos, who desire their liberty, and the Cretan military, who seek absolute power. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10049 + url: https://myanimelist.net/anime/10049/Nurarihyon_no_Mago__Sennen_Makyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/77300.jpg + small_image_url: https://myanimelist.net/images/anime/5/77300t.jpg + large_image_url: https://myanimelist.net/images/anime/5/77300l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/77300.webp + small_image_url: https://myanimelist.net/images/anime/5/77300t.webp + large_image_url: https://myanimelist.net/images/anime/5/77300l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-pqfgDZMqLE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nurarihyon no Mago: Sennen Makyou' + - type: Synonym + title: Nurarihyon no Mago 2 + - type: Synonym + title: The Grandson of Nurarihyon 2 + - type: Synonym + title: Grandchild of Nurarihyon 2 + - type: Japanese + title: ぬらりひょんの孫 千年魔京 + - type: English + title: 'Nura: Rise of the Yokai Clan - Demon Capital' + title: 'Nurarihyon no Mago: Sennen Makyou' + title_english: 'Nura: Rise of the Yokai Clan - Demon Capital' + title_japanese: ぬらりひょんの孫 千年魔京 + title_synonyms: + - Nurarihyon no Mago 2 + - The Grandson of Nurarihyon 2 + - Grandchild of Nurarihyon 2 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2011-07-03T00:00:00+00:00' + to: '2011-12-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2011 + to: + day: 18 + month: 12 + year: 2011 + string: Jul 3, 2011 to Dec 18, 2011 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 87378 + rank: 876 + popularity: 1593 + members: 173265 + favorites: 645 + synopsis: "Long before Rikuo Nura was born, the legendary youkai Nurarihyon, leader of a \"Night Parade of One Hundred\ + \ Demons,\" fell in love with a human woman. Though the two would initially find happiness, a threat from the terrifying\ + \ fox-demon Hagoromo Gitsune would get in the way of their relationship. \n\nIn the present, Rikuo has taken his rightful\ + \ place as the heir to the Nura Clan. While he has accepted his youkai side, he must continue to maintain the secret\ + \ of youkai, a difficult task when faced with the Keikain onmyouji clan and his youkai-obsessed friend, Kiyotsugu.\ + \ Even so, Rikuo will do what he must to protect those important to him.\n\nThe reappearance of the sinister Hagoromo\ + \ Gitsune marks the start of Rikuo's most fearsome trial yet. The frightening creature bears a personal vendetta against\ + \ his family and will stop at nothing to see her dream come to fruition. The world stands at a precipice, an all-out\ + \ war that will drag Rikuo centerstage.\n\n[Written by MAL Rewrite]" + background: 'VIZ Media released the TV broadcast version of Nurarihyon no Mago: Sennen Makyou on Blu-ray and DVD in + North America. They later explained this was the version the Japanese licensors provided them with, and it wasn''t + possible to obtain the uncut home video version.' + season: summer + year: 2011 + broadcast: + day: Sundays + time: '17:30' + timezone: Asia/Tokyo + string: Sundays at 17:30 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10278 + url: https://myanimelist.net/anime/10278/The_iDOLMSTER + images: + jpg: + image_url: https://myanimelist.net/images/anime/1682/142758.jpg + small_image_url: https://myanimelist.net/images/anime/1682/142758t.jpg + large_image_url: https://myanimelist.net/images/anime/1682/142758l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1682/142758.webp + small_image_url: https://myanimelist.net/images/anime/1682/142758t.webp + large_image_url: https://myanimelist.net/images/anime/1682/142758l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sz53h6_Iq_4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: The iDOLM@STER + - type: Synonym + title: The Idolmaster + - type: Japanese + title: アイドルマスター + - type: English + title: THE IDOLM@STER + - type: German + title: THE IDOLM@STER + title: The iDOLM@STER + title_english: THE IDOLM@STER + title_japanese: アイドルマスター + title_synonyms: + - The Idolmaster + type: TV + source: Game + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-07-08T00:00:00+00:00' + to: '2011-12-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2011 + to: + day: 23 + month: 12 + year: 2011 + string: Jul 8, 2011 to Dec 23, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 56163 + rank: 1793 + popularity: 1686 + members: 160167 + favorites: 1724 + synopsis: |- + 765 Production Studio manages the unique talents of 13 professional idols as they slowly make their way to the top and become country-wide celebrities. But the girls' journey is far from just fun and games: hard work, sweat, and tears are some of the prerequisites needed to flourish in this industry—and for 765 Pro in particular, a watchful eye out for their rival, the infamous 961 Production. + + As the girls' fame grows, however, their time together as a family diminishes, and now the very popularity they sought is threatening to tear them apart. A difficult balance of work and bonding must be achieved, or they risk everyone going their separate ways. The personal and professional ordeals of these idols can not be conquered alone, but with each other's loving support, any obstacle or hardship can be overcome! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2011 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 8915 + url: https://myanimelist.net/anime/8915/Dantalian_no_Shoka + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/52683.jpg + small_image_url: https://myanimelist.net/images/anime/2/52683t.jpg + large_image_url: https://myanimelist.net/images/anime/2/52683l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/52683.webp + small_image_url: https://myanimelist.net/images/anime/2/52683t.webp + large_image_url: https://myanimelist.net/images/anime/2/52683l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QAT1x4vVqcU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dantalian no Shoka + - type: Synonym + title: Bibliotheca Mystica de Dantalian + - type: Synonym + title: Dantalian's Bookshelf + - type: Japanese + title: ダンタリアンの書架 + - type: English + title: The Mystic Archives of Dantalian + title: Dantalian no Shoka + title_english: The Mystic Archives of Dantalian + title_japanese: ダンタリアンの書架 + title_synonyms: + - Bibliotheca Mystica de Dantalian + - Dantalian's Bookshelf + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-16T00:00:00+00:00' + to: '2011-10-01T00:00:00+00:00' + prop: + from: + day: 16 + month: 7 + year: 2011 + to: + day: 1 + month: 10 + year: 2011 + string: Jul 16, 2011 to Oct 1, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.22 + scored_by: 59711 + rank: 3800 + popularity: 1693 + members: 159000 + favorites: 579 + synopsis: "Six months ago, Lord Hugh Anthony Disward, also known as Huey, lost his eccentric grandfather, Sir Wesley\ + \ Disward, who was a renowned collector of rare books. His grandfather's will states that, in order to inherit his\ + \ manor and everything inside it, he must take guardianship over the Bibliotheca Mystica de Dantalian—an archive that\ + \ contains forbidden knowledge—and also take care of a mysterious girl called Dalian. \n\nAs Huey settles into the\ + \ manor, an old rival of his grandfather's arranges a meeting with him. Dalian, knowing the rival to be Wesley's killer,\ + \ tags along and discovers that the murderer is in possession of a Phantom Book—a cursed tome that Wesley tried to\ + \ seal away. When the book puts the two in danger, Huey discovers that the Bibliotheca Mystica de Dantalian and Dalian\ + \ are one and the same, and she entrusts Huey with the key to unlocking the knowledge stored within her. Together,\ + \ Dalian and Huey seal the book away, and thus begins an unlikely partnership as they solve mysteries caused by other\ + \ Phantom Books.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2011 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 6 + type: anime + name: Gainax + url: https://myanimelist.net/anime/producer/6/Gainax + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 9750 + url: https://myanimelist.net/anime/9750/Itsuka_Tenma_no_Kuro_Usagi + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/75197.jpg + small_image_url: https://myanimelist.net/images/anime/5/75197t.jpg + large_image_url: https://myanimelist.net/images/anime/5/75197l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/75197.webp + small_image_url: https://myanimelist.net/images/anime/5/75197t.webp + large_image_url: https://myanimelist.net/images/anime/5/75197l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XhSkIHFmxF8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Itsuka Tenma no Kuro Usagi + - type: Synonym + title: ItsuTen + - type: Japanese + title: いつか天魔の黒ウサギ + - type: English + title: A Dark Rabbit has Seven Lives + - type: German + title: A Dark Rabbit has Seven Lives + - type: Spanish + title: A Dark Rabbit has Seven Lives + - type: French + title: A Dark Rabbit has Seven Lives + title: Itsuka Tenma no Kuro Usagi + title_english: A Dark Rabbit has Seven Lives + title_japanese: いつか天魔の黒ウサギ + title_synonyms: + - ItsuTen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-09T00:00:00+00:00' + to: '2011-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2011 + to: + day: 24 + month: 9 + year: 2011 + string: Jul 9, 2011 to Sep 24, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.51 + scored_by: 60722 + rank: 8097 + popularity: 1902 + members: 138254 + favorites: 217 + synopsis: Taito has been really sleepy lately, and keeps dreaming of a female vampire who says she has given him her + "poison." Sometimes he even thinks he hears her voice when he's awake. But after surviving an accident that should + have killed him, Taito's world changes drastically and he realizes that his dreams are more real than he thought. + background: '' + season: summer + year: 2011 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: [] + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 10897 + url: https://myanimelist.net/anime/10897/Boku_wa_Tomodachi_ga_Sukunai__Yaminabe_wa_Bishoujo_ga_Zannen_na_Nioi + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/30097.jpg + small_image_url: https://myanimelist.net/images/anime/8/30097t.jpg + large_image_url: https://myanimelist.net/images/anime/8/30097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/30097.webp + small_image_url: https://myanimelist.net/images/anime/8/30097t.webp + large_image_url: https://myanimelist.net/images/anime/8/30097l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku wa Tomodachi ga Sukunai: Yaminabe wa Bishoujo ga Zannen na Nioi' + - type: Synonym + title: Boku wa Tomodachi ga Sukunai Episode 0 + - type: Synonym + title: Boku wa Tomodachi ga Sukunai OVA + - type: Synonym + title: Haganai OVA + - type: Synonym + title: I Don't Have Many Friends OVA + - type: Synonym + title: Boku ha Tomodachi ga Sukunai OVA + - type: Japanese + title: 僕は友達が少ない 闇鍋は美少女が残念な臭い + - type: English + title: 'Haganai: Black Hotpot Gives Girls a Bad Smell' + title: 'Boku wa Tomodachi ga Sukunai: Yaminabe wa Bishoujo ga Zannen na Nioi' + title_english: 'Haganai: Black Hotpot Gives Girls a Bad Smell' + title_japanese: 僕は友達が少ない 闇鍋は美少女が残念な臭い + title_synonyms: + - Boku wa Tomodachi ga Sukunai Episode 0 + - Boku wa Tomodachi ga Sukunai OVA + - Haganai OVA + - I Don't Have Many Friends OVA + - Boku ha Tomodachi ga Sukunai OVA + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-09-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 9 + year: 2011 + to: + day: null + month: null + year: null + string: Sep 22, 2011 + duration: 11 min + rating: PG-13 - Teens 13 or older + score: 6.71 + scored_by: 70367 + rank: 6840 + popularity: 1997 + members: 129561 + favorites: 58 + synopsis: |- + Hasegawa Kodaka has transferred schools, and he's having a hard time making friends. It doesn't help that his blond hair tends to make people think he's a delinquent. One day, he runs into his bad-tempered solitary classmate Yozora while she's talking animatedly to her imaginary friend Tomo. Realizing that neither of them have any actual friends, they decide that the best way to alter this situation is to form a club and start recruiting. + That is how "Rinjinbu", The Neighbours' Club, was formed, a club specifically designed for people who don't have very many friends. As other lonely classmates slowly join their little club, they'll try to learn how to build friendships through cooking together, playing games, and other group activities. But will this group of relationship-challenged misfits really be able to get along? + + (Source: MU) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10805 + url: https://myanimelist.net/anime/10805/Kami_nomi_zo_Shiru_Sekai__4-nin_to_Idol + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/32297.jpg + small_image_url: https://myanimelist.net/images/anime/12/32297t.jpg + large_image_url: https://myanimelist.net/images/anime/12/32297l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/32297.webp + small_image_url: https://myanimelist.net/images/anime/12/32297t.webp + large_image_url: https://myanimelist.net/images/anime/12/32297l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kami nomi zo Shiru Sekai: 4-nin to Idol' + - type: Synonym + title: 'Kami nomi zo Shiru Sekai: Yonin to Idol' + - type: Synonym + title: Kaminomi OVA + - type: Synonym + title: Kami Nomi zo Shiru Sekai OVA + - type: Synonym + title: 'The World God Only Knows: Four People and an Idol' + - type: Japanese + title: 神のみぞ知るセカイ 4人とアイドル + - type: English + title: 'The World God Only Knows: Four Girls and an Idol' + title: 'Kami nomi zo Shiru Sekai: 4-nin to Idol' + title_english: 'The World God Only Knows: Four Girls and an Idol' + title_japanese: 神のみぞ知るセカイ 4人とアイドル + title_synonyms: + - 'Kami nomi zo Shiru Sekai: Yonin to Idol' + - Kaminomi OVA + - Kami Nomi zo Shiru Sekai OVA + - 'The World God Only Knows: Four People and an Idol' + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-09-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 9 + year: 2011 + to: + day: null + month: null + year: null + string: Sep 16, 2011 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.28 + scored_by: 64863 + rank: 3408 + popularity: 2208 + members: 112624 + favorites: 90 + synopsis: |- + Eli, Chihiro, and Miyako try to form a band but end up looking to Katsuragi for help. In the process they meet Kanon and become friends/ rivals. + + (Source: ANN) + background: An OVA bundled with the 14th volume of the manga, animating chapters 54 and 55 from the 6th volume of the + manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 474 + type: anime + name: Shogakukan Music & Digital Entertainment + url: https://myanimelist.net/anime/producer/474/Shogakukan_Music___Digital_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11077 + url: https://myanimelist.net/anime/11077/Hellsing__The_Dawn + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/30667.jpg + small_image_url: https://myanimelist.net/images/anime/5/30667t.jpg + large_image_url: https://myanimelist.net/images/anime/5/30667l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/30667.webp + small_image_url: https://myanimelist.net/images/anime/5/30667t.webp + large_image_url: https://myanimelist.net/images/anime/5/30667l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hellsing: The Dawn' + - type: Synonym + title: 'Hellsing: The Dawn - A supplementary of HELLSING' + - type: Synonym + title: Hellsing OVA Specials + - type: Synonym + title: Hellsing Ultimate Specials + - type: Synonym + title: Drifters + - type: Japanese + title: HELLSING THE DAWN + title: 'Hellsing: The Dawn' + title_english: null + title_japanese: HELLSING THE DAWN + title_synonyms: + - 'Hellsing: The Dawn - A supplementary of HELLSING' + - Hellsing OVA Specials + - Hellsing Ultimate Specials + - Drifters + type: Special + source: Manga + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2011-07-27T00:00:00+00:00' + to: '2012-12-26T00:00:00+00:00' + prop: + from: + day: 27 + month: 7 + year: 2011 + to: + day: 26 + month: 12 + year: 2012 + string: Jul 27, 2011 to Dec 26, 2012 + duration: 10 min per ep + rating: R - 17+ (violence & profanity) + score: 7.12 + scored_by: 46196 + rank: 4449 + popularity: 2259 + members: 108578 + favorites: 160 + synopsis: |- + During the height of World War II, Nazi Germany seeks to strengthen their soldiers with technology crafted under the influence of vampiric biology. Out of fear of this technology turning the tide of war in the Axis's favor, Sir Arthur Hellsing enlists his butler and soldier Walter C. Dornez and vampire Alucard to put a stop to the German plot, sending the two men into a conflict that will scar them both forever. + + [Written by MAL Rewrite] + background: The North American BD/DVD releases from FUNimation Entertainment do not include the 2nd and 3rd episodes. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10611 + url: https://myanimelist.net/anime/10611/R-15 + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/33029.jpg + small_image_url: https://myanimelist.net/images/anime/9/33029t.jpg + large_image_url: https://myanimelist.net/images/anime/9/33029l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/33029.webp + small_image_url: https://myanimelist.net/images/anime/9/33029t.webp + large_image_url: https://myanimelist.net/images/anime/9/33029l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bK0HgI8hUCc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: R-15 + - type: Synonym + title: R-15 + - type: Japanese + title: あーるじゅうご + title: R-15 + title_english: null + title_japanese: あーるじゅうご + title_synonyms: + - R-15 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-10T00:00:00+00:00' + to: '2011-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2011 + to: + day: 25 + month: 9 + year: 2011 + string: Jul 10, 2011 to Sep 25, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.42 + scored_by: 40641 + rank: 8671 + popularity: 2467 + members: 95213 + favorites: 85 + synopsis: |- + R-15 is about a boy, Taketo Akutagawa, who attends a school for geniuses: Inspiration Academy Private High School. Taketo is a genius novelist and writes erotica. Despite negative perceptions many people have of him, he aims to be at the top of his class and be recognized as the world's greatest writer. + + (Source: Wikipedia) + background: '' + season: summer + year: 2011 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 779 + type: anime + name: AMG MUSIC + url: https://myanimelist.net/anime/producer/779/AMG_MUSIC + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + licensors: [] + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10491 + url: https://myanimelist.net/anime/10491/Higurashi_no_Naku_Koro_ni_Kira + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/29774.jpg + small_image_url: https://myanimelist.net/images/anime/6/29774t.jpg + large_image_url: https://myanimelist.net/images/anime/6/29774l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/29774.webp + small_image_url: https://myanimelist.net/images/anime/6/29774t.webp + large_image_url: https://myanimelist.net/images/anime/6/29774l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Higurashi no Naku Koro ni Kira + - type: Synonym + title: Higurashi no Naku Koro ni OVA 2 + - type: Synonym + title: When They Cry Glitter + - type: Synonym + title: 'Higurashi: When They Cry – Kira' + - type: Japanese + title: ひぐらしのなく頃に煌 + title: Higurashi no Naku Koro ni Kira + title_english: null + title_japanese: ひぐらしのなく頃に煌 + title_synonyms: + - Higurashi no Naku Koro ni OVA 2 + - When They Cry Glitter + - 'Higurashi: When They Cry – Kira' + type: OVA + source: Original + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2011-07-21T00:00:00+00:00' + to: '2012-01-25T00:00:00+00:00' + prop: + from: + day: 21 + month: 7 + year: 2011 + to: + day: 25 + month: 1 + year: 2012 + string: Jul 21, 2011 to Jan 25, 2012 + duration: 29 min per ep + rating: R - 17+ (violence & profanity) + score: 6.58 + scored_by: 47428 + rank: 7669 + popularity: 2529 + members: 92052 + favorites: 156 + synopsis: |- + 1. Batsukoishi-hen + 2. Ayakashisenshi-hen + 3. Musubienishi-hen + 4. Yumeutsushi-hen + background: Higurashi no Naku Koro ni Kira was released to celebrate the franchise's 10th anniversary. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 10465 + url: https://myanimelist.net/anime/10465/Manyuu_Hikenchou + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75184.jpg + small_image_url: https://myanimelist.net/images/anime/9/75184t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75184l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75184.webp + small_image_url: https://myanimelist.net/images/anime/9/75184t.webp + large_image_url: https://myanimelist.net/images/anime/9/75184l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S70XNxvvBHY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Manyuu Hikenchou + - type: Synonym + title: Magic Breast Secret Sword Scroll + - type: Japanese + title: 魔乳秘剣帖 + - type: English + title: Manyu Scroll + title: Manyuu Hikenchou + title_english: Manyu Scroll + title_japanese: 魔乳秘剣帖 + title_synonyms: + - Magic Breast Secret Sword Scroll + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-07-11T00:00:00+00:00' + to: '2011-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2011 + to: + day: 26 + month: 9 + year: 2011 + string: Jul 11, 2011 to Sep 26, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.21 + scored_by: 28845 + rank: 9873 + popularity: 2536 + members: 91209 + favorites: 342 + synopsis: |- + The Edo period of Japan gave rise to a clan of warriors with a very specialized, magical skill. The clan was known as the Manyuu, and the skill was the ability to administer a sword strike that could shrink the size of a woman's breasts. This might not seem like an ability that could exert power over a land, but in Manyuu Hikenchou, large breasts denote status, wealth, fame, and influence. + + Grave concern has arisen in the Manyuu clan due to the actions of their chosen successor, Chifusa. Disgusted with the breast obsessed society that the Manyuu have created and perpetuated, Chifusa has not only deserted the clan, but also stolen the sacred scroll that details their techniques to growing and severing breasts. + + Fortunately, Chifusa is not completely alone. Her fellow warrior Kaede is sympathetic to her cause; a sympathy that could place her in considerable danger. Now wanted by the very clan that raised her, Chifusa must defend her life and Kaede's while seeking to undo the damage their brethren have done to the land. Along the way, Chifusa will discover that she harbors a power that goes far beyond the scope of her training, one that could help shape and change the land that she seeks to bring equality to. + background: '' + season: summer + year: 2011 + broadcast: + day: Mondays + time: 01:00 + timezone: Asia/Tokyo + string: Mondays at 01:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + licensors: [] + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/08-2011-fall.yaml b/test/fixtures/jikan/season_matrix/08-2011-fall.yaml new file mode 100644 index 0000000..34cd70d --- /dev/null +++ b/test/fixtures/jikan/season_matrix/08-2011-fall.yaml @@ -0,0 +1,3147 @@ +metadata: + captured_at: '2026-05-11T11:32:39Z' + label: 2011-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2011/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:39 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:b9f82b777130f44b7750a0e768144d51a012b352 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 9 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 203 + per_page: 25 + data: + - mal_id: 11061 + url: https://myanimelist.net/anime/11061/Hunter_x_Hunter_2011 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1337/99013.jpg + small_image_url: https://myanimelist.net/images/anime/1337/99013t.jpg + large_image_url: https://myanimelist.net/images/anime/1337/99013l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1337/99013.webp + small_image_url: https://myanimelist.net/images/anime/1337/99013t.webp + large_image_url: https://myanimelist.net/images/anime/1337/99013l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/D9iTQRB4XRk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hunter x Hunter (2011) + - type: Synonym + title: HxH (2011) + - type: Japanese + title: HUNTER×HUNTER(ハンター×ハンター) + - type: English + title: Hunter x Hunter + - type: German + title: Hunter x Hunter + - type: Spanish + title: Hunter x Hunter + - type: French + title: Hunter X Hunter + title: Hunter x Hunter (2011) + title_english: Hunter x Hunter + title_japanese: HUNTER×HUNTER(ハンター×ハンター) + title_synonyms: + - HxH (2011) + type: TV + source: Manga + episodes: 148 + status: Finished Airing + airing: false + aired: + from: '2011-10-02T00:00:00+00:00' + to: '2014-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2011 + to: + day: 24 + month: 9 + year: 2014 + string: Oct 2, 2011 to Sep 24, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 9.03 + scored_by: 1979872 + rank: 9 + popularity: 8 + members: 3187876 + favorites: 229251 + synopsis: |- + Hunters devote themselves to accomplishing hazardous tasks, all from traversing the world's uncharted territories to locating rare items and monsters. Before becoming a Hunter, one must pass the Hunter Examination—a high-risk selection process in which most applicants end up handicapped or worse, deceased. + + Ambitious participants who challenge the notorious exam carry their own reason. What drives 12-year-old Gon Freecss is finding Ging, his father and a Hunter himself. Believing that he will meet his father by becoming a Hunter, Gon takes the first step to walk the same path. + + During the Hunter Examination, Gon befriends the medical student Leorio Paladiknight, the vindictive Kurapika, and ex-assassin Killua Zoldyck. While their motives vastly differ from each other, they band together for a common goal and begin to venture into a perilous world. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2011 + broadcast: + day: Sundays + time: '10:55' + timezone: Asia/Tokyo + string: Sundays at 10:55 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10620 + url: https://myanimelist.net/anime/10620/Mirai_Nikki_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/33465.jpg + small_image_url: https://myanimelist.net/images/anime/13/33465t.jpg + large_image_url: https://myanimelist.net/images/anime/13/33465l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/33465.webp + small_image_url: https://myanimelist.net/images/anime/13/33465t.webp + large_image_url: https://myanimelist.net/images/anime/13/33465l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/52P0DM-JDMg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mirai Nikki (TV) + - type: Synonym + title: Mirai Nikki + - type: Synonym + title: Mirai Nikki (2011) + - type: Japanese + title: 未来日記 + - type: English + title: The Future Diary + - type: Spanish + title: The Future Diary + title: Mirai Nikki (TV) + title_english: The Future Diary + title_japanese: 未来日記 + title_synonyms: + - Mirai Nikki + - Mirai Nikki (2011) + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2011-10-09T00:00:00+00:00' + to: '2012-04-15T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2011 + to: + day: 15 + month: 4 + year: 2012 + string: Oct 9, 2011 to Apr 15, 2012 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.38 + scored_by: 1276182 + rank: 2836 + popularity: 39 + members: 2137202 + favorites: 31279 + synopsis: |- + Yukiteru Amano is a shy middle schooler who regularly keeps track of what he does in his daily life by writing down all of his activities on his phone—a digital diary. Despite having no friends at school, Yukiteru is frequently seen talking to his supposedly imaginary friends Deus Ex Machina, the god of time and space; and Deus' servant, Mur Mur. + + One day, Yukiteru wakes up and discovers that certain events of his day are preemptively displayed on his cellphone. While initially dismissing it as a coincidence, he slowly realizes that the incidents written in his phone actually take place in the near future. After spending the day benefiting from this new asset, Yukiteru learns that his classmate Yuno Gasai possesses a similar diary. + + As the two team up to defeat an odd pursuer and head back to their respective homes, Deus Ex Machina explains that they—alongside 10 other contestants—have been drawn into a survival game whose victor will become the deity's successor. With no other options, Yukiteru and Yuno must use their cellphones—now called "Future Diaries"—to survive this unforgiving battle royale. + + [Written by MAL Rewrite] + background: Mirai Nikki also spawned a live-action television show with a different plot from the manga and anime, as + well as a visual novel. + season: fall + year: 2011 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10087 + url: https://myanimelist.net/anime/10087/Fate_Zero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1887/117644.jpg + small_image_url: https://myanimelist.net/images/anime/1887/117644t.jpg + large_image_url: https://myanimelist.net/images/anime/1887/117644l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1887/117644.webp + small_image_url: https://myanimelist.net/images/anime/1887/117644t.webp + large_image_url: https://myanimelist.net/images/anime/1887/117644l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/21-1-ioCfXY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/Zero + - type: Japanese + title: フェイト/ゼロ + - type: English + title: Fate/Zero + title: Fate/Zero + title_english: Fate/Zero + title_japanese: フェイト/ゼロ + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-10-02T00:00:00+00:00' + to: '2011-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2011 + to: + day: 25 + month: 12 + year: 2011 + string: Oct 2, 2011 to Dec 25, 2011 + duration: 27 min per ep + rating: R - 17+ (violence & profanity) + score: 8.26 + scored_by: 914485 + rank: 367 + popularity: 83 + members: 1604227 + favorites: 34433 + synopsis: |- + With the promise of granting any wish, the omnipotent Holy Grail triggered three wars in the past, each too cruel and fierce to leave a victor. In spite of that, the wealthy Einzbern family is confident that the Fourth Holy Grail War will be different; namely, with a vessel of the Holy Grail now in their grasp. Solely for this reason, the much hated "Magus Killer" Kiritsugu Emiya is hired by the Einzberns, with marriage to their only daughter Irisviel as binding contract. + + Kiritsugu now stands at the center of a cutthroat game of survival, facing off against six other participants, each armed with an ancient familiar, and fueled by unique desires and ideals. Accompanied by his own familiar, Saber, the notorious mercenary soon finds his greatest opponent in Kirei Kotomine, a priest who seeks salvation from the emptiness within himself in pursuit of Kiritsugu. + + Based on the light novel written by Gen Urobuchi, Fate/Zero depicts the events of the Fourth Holy Grail War—10 years prior to Fate/stay night. Witness a battle royale in which no one is guaranteed to survive. + + [Written by MAL Rewrite] + background: Fate/Zero was simulcasted around the world, with subtitles covering eight major languages. It is currently + licensed by Aniplex of America for release in North America. + season: fall + year: 2011 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 701 + type: anime + name: Seikaisha + url: https://myanimelist.net/anime/producer/701/Seikaisha + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 10793 + url: https://myanimelist.net/anime/10793/Guilty_Crown + images: + jpg: + image_url: https://myanimelist.net/images/anime/1566/133912.jpg + small_image_url: https://myanimelist.net/images/anime/1566/133912t.jpg + large_image_url: https://myanimelist.net/images/anime/1566/133912l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1566/133912.webp + small_image_url: https://myanimelist.net/images/anime/1566/133912t.webp + large_image_url: https://myanimelist.net/images/anime/1566/133912l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JToS6gmWzgw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Guilty Crown + - type: Synonym + title: GUILTY CROWN + - type: Japanese + title: ギルティクラウン + - type: English + title: Guilty Crown + title: Guilty Crown + title_english: Guilty Crown + title_japanese: ギルティクラウン + title_synonyms: + - GUILTY CROWN + type: TV + source: Original + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2011-10-14T00:00:00+00:00' + to: '2012-03-23T00:00:00+00:00' + prop: + from: + day: 14 + month: 10 + year: 2011 + to: + day: 23 + month: 3 + year: 2012 + string: Oct 14, 2011 to Mar 23, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.39 + scored_by: 663976 + rank: 2777 + popularity: 126 + members: 1279267 + favorites: 17184 + synopsis: |- + On December 24, 2029—the day colloquially known as the "Lost Christmas"—the Apocalypse Virus spread across Japan, bringing death to its citizens and plunging the country into utter chaos. In an effort to establish order, the United Nations sends the GHQ to assist with the crisis by containing the outbreak while removing all political autonomy in the process. A decade later, the country still lives under their control, unable to break free from their draconian rule. + + Frustrated with the state of the nation, a resistance group named the Funeral Parlor aims to liberate Japan from the GHQ. Led by the charismatic Gai Tsutsugami, the group plots to steal a vial containing the "Void Genome" to further their goals. The vial falls into the hands of internet vocalist Inori Yuzuriha, who ends up being hunted by the GHQ's Anti-Bodies forces. Having nowhere to go, she seeks refuge in a warehouse where she meets Shuu Ouma—a socially awkward high school student who is a huge fan of her music. + + Shuu gets dragged into the conflict the moment he rescues Inori, and the Void Genome shatters in his hand, granting him the "Power of the Kings." While learning how to control his grand new ability, Shuu must now fight to liberate Japan from its cruel oppressors. + + [Written by MAL Rewrite] + background: The first two episodes of Guilty Crown were screened at the New York Anime Festival on October 15, 2011. + The screening of the second episode was a world premiere as the episode did not air in Japan until October 20, 2011. + season: fall + year: 2011 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 2137 + type: anime + name: 1IN + url: https://myanimelist.net/anime/producer/2137/1IN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 10719 + url: https://myanimelist.net/anime/10719/Boku_wa_Tomodachi_ga_Sukunai + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/32873.jpg + small_image_url: https://myanimelist.net/images/anime/8/32873t.jpg + large_image_url: https://myanimelist.net/images/anime/8/32873l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/32873.webp + small_image_url: https://myanimelist.net/images/anime/8/32873t.webp + large_image_url: https://myanimelist.net/images/anime/8/32873l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/a_24N706HPY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku wa Tomodachi ga Sukunai + - type: Synonym + title: I Don't Have Many Friends + - type: Japanese + title: 僕は友達が少ない + - type: English + title: 'Haganai: I don''t have many friends' + title: Boku wa Tomodachi ga Sukunai + title_english: 'Haganai: I don''t have many friends' + title_japanese: 僕は友達が少ない + title_synonyms: + - I Don't Have Many Friends + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-07T00:00:00+00:00' + to: '2011-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2011 + to: + day: 23 + month: 12 + year: 2011 + string: Oct 7, 2011 to Dec 23, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.13 + scored_by: 473908 + rank: 4374 + popularity: 257 + members: 854236 + favorites: 3930 + synopsis: |- + When Kodaka Hasegawa finds out that he will be transferring to a new school, he is determined to make a positive impression, and maybe even some friends. However, Kodaka discovers he is out of luck when he immediately gets labeled as a violent delinquent due to his blond hair and intimidating expression. Although a month has passed, Kodaka is still alone thanks to his notorious reputation. However, his life begins to change when he finds fellow loner Yozora Mikazuki talking to her imaginary friend in an empty classroom. + + After sharing stories of their lonely high school life, Kodaka and Yozora decide to overcome the difficulties of making friends together by starting the Neighbor's Club. Created for people who don't have friends, daily activities involve learning social skills and how to fit in, which will hopefully allow them to make friends. Joined by the eroge-loving Sena Kashiwazaki, and other eccentric outcasts, Kodaka may finally have managed to find people he can call friends, in this club filled with hilarious oddballs. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2011 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10800 + url: https://myanimelist.net/anime/10800/Chihayafuru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1959/156735.jpg + small_image_url: https://myanimelist.net/images/anime/1959/156735t.jpg + large_image_url: https://myanimelist.net/images/anime/1959/156735l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1959/156735.webp + small_image_url: https://myanimelist.net/images/anime/1959/156735t.webp + large_image_url: https://myanimelist.net/images/anime/1959/156735l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Y8U-E8hldHk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chihayafuru + - type: Synonym + title: Chihayafull + - type: Japanese + title: ちはやふる + - type: English + title: Chihayafuru + title: Chihayafuru + title_english: Chihayafuru + title_japanese: ちはやふる + title_synonyms: + - Chihayafull + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-10-05T00:00:00+00:00' + to: '2012-03-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2011 + to: + day: 28 + month: 3 + year: 2012 + string: Oct 5, 2011 to Mar 28, 2012 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 195487 + rank: 479 + popularity: 523 + members: 496624 + favorites: 8423 + synopsis: |- + As a child, Chihaya Ayase had only one dream: to see her elder sister Chitose become Japan's most successful model. However, upon defending her ostracised classmate Arata Wataya from his bully—Chihaya's childhood friend Taichi Mashima—she discovers the world of competitive karuta and soon becomes enamoured with the sport. + + Based on the Ogura Hundred Poets anthology, this card game where poems are studied requires excellent memory, agility, and a tremendous endurance from the players. Full of hope, Chihaya joins the Shiranami Society together with the newly reconciled Arata and Taichi, embarking on an exciting journey for the title awarded to the top-ranked female player—Queen of Karuta. + + Since middle school, Chihaya grew distant from a dispassionate Taichi and separated from Arata. However, in order to improve her skills, Chihaya decides to create a karuta club in her high school. With the help of Taichi, another veteran player, and a few spirited newcomers, Chihaya's new-founded Mizusawa Karuta Club aims for victory in the Omi Shrine's national championship. + + [Written by MAL Rewrite] + background: Animax Asia released the anime with English subtitles in 2013. + season: fall + year: 2011 + broadcast: + day: Wednesdays + time: 00:59 + timezone: Asia/Tokyo + string: Wednesdays at 00:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 10030 + url: https://myanimelist.net/anime/10030/Bakuman_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/34923.jpg + small_image_url: https://myanimelist.net/images/anime/3/34923t.jpg + large_image_url: https://myanimelist.net/images/anime/3/34923l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/34923.webp + small_image_url: https://myanimelist.net/images/anime/3/34923t.webp + large_image_url: https://myanimelist.net/images/anime/3/34923l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bakuman. 2nd Season + - type: Japanese + title: バクマン。2ndシーズン + - type: English + title: Bakuman. Season 2 + - type: French + title: Bakuman 2 + title: Bakuman. 2nd Season + title_english: Bakuman. Season 2 + title_japanese: バクマン。2ndシーズン + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-10-01T00:00:00+00:00' + to: '2012-03-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2011 + to: + day: 24 + month: 3 + year: 2012 + string: Oct 1, 2011 to Mar 24, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.33 + scored_by: 222427 + rank: 291 + popularity: 741 + members: 372361 + favorites: 1371 + synopsis: |- + With the serialization of their new manga, "Detective Trap," the writer-artist team, Akito Takagi and Moritaka Mashiro, better known by their pseudonym Muto Ashirogi, are one step closer to becoming world-renowned mangaka. For Mashiro, however, serialization is just the first step. Having promised to marry his childhood sweetheart and aspiring voice actress, Azuki Miho, once his manga gets an anime adaptation, Mashiro must continue his to popularize Ashirogi's work. A tremendously competitive cast of ambitious mangaka—including the wild genius, Eiji Niizuma; the elegant student, Yuriko Aoki, and her older admirer and partner, Takurou Nakai; the lazy prodigy, Kazuya Hiramaru; and the abrasive artist, Shinta Fukuda—both support and compete against Muto Ashirogi in creating the next big hit. + + As they adjust to their young and seemingly untested new editor, the dynamic duo struggle to maintain their current serialization, secure the top spot in Shounen Jack, and ultimately, achieve an anime adaptation of their manga. With new rivals and friends, Bakuman. 2nd Season continues Takagi and Mashiro's inspiring story of hard work and young love. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2011 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 9617 + url: https://myanimelist.net/anime/9617/K-On_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/76233.jpg + small_image_url: https://myanimelist.net/images/anime/5/76233t.jpg + large_image_url: https://myanimelist.net/images/anime/5/76233l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/76233.webp + small_image_url: https://myanimelist.net/images/anime/5/76233t.webp + large_image_url: https://myanimelist.net/images/anime/5/76233l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f-_BPUz-Rxs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: K-On! Movie + - type: Synonym + title: Eiga K-On! + - type: Synonym + title: Keion Movie + - type: Japanese + title: 映画 けいおん! + - type: English + title: K-ON! The Movie + - type: German + title: K-On! The Movie + title: K-On! Movie + title_english: K-ON! The Movie + title_japanese: 映画 けいおん! + title_synonyms: + - Eiga K-On! + - Keion Movie + type: Movie + source: 4-koma manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-12-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 12 + year: 2011 + to: + day: null + month: null + year: null + string: Dec 3, 2011 + duration: 1 hr 50 min + rating: PG-13 - Teens 13 or older + score: 8.36 + scored_by: 210021 + rank: 268 + popularity: 771 + members: 356248 + favorites: 3042 + synopsis: |- + Graduation looms for the founding members of the Light Music Club. With only a few precious weeks of school left, the girls decide to make the most of it and plan a trip abroad. Hawaii, New York, Dubai—many destinations are suggested, but after a little help from the club's precious pet turtle, Ton-chan, London is chosen as the host of their next misadventure! + + Yui Hirasawa, Mio Akiyama, Tsumugi Kotobuki, Ritsu Tainaka, and Azusa Nakano will visit famous landmarks, perform live music for Londoners, and eat all sorts of delicious food, all while stumbling clumsily from place to place. But the fun won't last forever, as heartfelt songs and goodbyes will be made as their high school days together come to a close. One thing is for certain though: the undeniable friendships these girls have formed is something that will carry on long after the final scene rolls. + + [Written by MAL Rewrite] + background: The movie won the Feature Film Award in the 17th Animation Kobe Awards in 2012 and the 2012 Newtype Anime + Awards for Best Anime Film. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 10396 + url: https://myanimelist.net/anime/10396/Ben-To + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/73984.jpg + small_image_url: https://myanimelist.net/images/anime/12/73984t.jpg + large_image_url: https://myanimelist.net/images/anime/12/73984l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/73984.webp + small_image_url: https://myanimelist.net/images/anime/12/73984t.webp + large_image_url: https://myanimelist.net/images/anime/12/73984l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mGeb_nyoMQ4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ben-To + - type: Synonym + title: Bento + - type: Synonym + title: Ben-Tou + - type: Japanese + title: ベン・トー + - type: English + title: Ben-To + title: Ben-To + title_english: Ben-To + title_japanese: ベン・トー + title_synonyms: + - Bento + - Ben-Tou + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-09T00:00:00+00:00' + to: '2011-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2011 + to: + day: 25 + month: 12 + year: 2011 + string: Oct 9, 2011 to Dec 25, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.19 + scored_by: 174327 + rank: 3999 + popularity: 802 + members: 346231 + favorites: 1227 + synopsis: |- + The supermarket is an important building in any city, for they provide a convenient way to purchase a variety of food in a family-friendly, safe environment. However, these stores changes in the blink of an eye once the unsold bento boxes go on their nightly half-off sales! War breaks out and friends become foes as each person fights for honor, pride, and dinner. There are no longer any people in these supermarkets, only Wolves and Dogs⁠—winners and losers. + + High schooler You Satou is painfully introduced to these battles after unknowingly stumbling into the war zone, but instead of choosing to avoid these nightly fights, he wants to join in. After seeing Satou's lack of fighting skills, upperclassman and Wolf Sen Yarizui invites him and Hana Oshiroi, a girl who enjoys spectating the brawls, to join her Half-Priced Food Lovers Club to show them the distinction between the Dogs and the Wolves. Together, they learn what it truly means to fight for your food. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2011 + broadcast: + day: Sundays + time: 02:20 + timezone: Asia/Tokyo + string: Sundays at 02:20 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1579 + type: anime + name: Bulls Eye + url: https://myanimelist.net/anime/producer/1579/Bulls_Eye + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: [] + - mal_id: 10213 + url: https://myanimelist.net/anime/10213/Maji_de_Watashi_ni_Koi_Shinasai + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/32541.jpg + small_image_url: https://myanimelist.net/images/anime/4/32541t.jpg + large_image_url: https://myanimelist.net/images/anime/4/32541l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/32541.webp + small_image_url: https://myanimelist.net/images/anime/4/32541t.webp + large_image_url: https://myanimelist.net/images/anime/4/32541l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maji de Watashi ni Koi Shinasai! + - type: Synonym + title: Love Me + - type: Synonym + title: Seriously!! + - type: Japanese + title: 真剣で私に恋しなさい! + - type: English + title: 'Majikoi: Oh! Samurai Girls' + - type: German + title: Majikoi Oh! Samurai Girls + - type: Spanish + title: Majikoi Oh! Samurai Girls + - type: French + title: Majikoi Oh! Samurai Girls + title: Maji de Watashi ni Koi Shinasai! + title_english: 'Majikoi: Oh! Samurai Girls' + title_japanese: 真剣で私に恋しなさい! + title_synonyms: + - Love Me + - Seriously!! + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-02T00:00:00+00:00' + to: '2011-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2011 + to: + day: 18 + month: 12 + year: 2011 + string: Oct 2, 2011 to Dec 18, 2011 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.66 + scored_by: 135004 + rank: 7190 + popularity: 872 + members: 324286 + favorites: 695 + synopsis: |- + The samurai are a very important part of Japan's history, and to be related to them in any way is probably one of the most inspiring things that a young high school student could hope for. + + Kawakami City is well-known for having many samurai ancestors among its citizens, and is generally surrounded by an atmosphere of fighting spirit, loyalty, and dedication to work. In Maji de Watashi ni Koi Shinasai!, the students of Kawakami Academy use this knowledge on a daily basis, whether they are studying for exams, competing in sports competitions, or making sure that they take very good care of their traditions. Yamato Naoe is one such student, and his six closest friends (three boys and three girls) make up the perfect team for friendship, rivalry, and motivation. However, even samurai have weaknesses. + + Although the balance and long friendship of their group has been undisturbed for a long time, when two new girls enter the group, things start to get a lot more interesting. Not only must they maintain what they think is the samurai tradition, but they must now also do it with a lot of "distractions." + background: '' + season: fall + year: 2011 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 9936 + url: https://myanimelist.net/anime/9936/Maken-Ki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1215/123362.jpg + small_image_url: https://myanimelist.net/images/anime/1215/123362t.jpg + large_image_url: https://myanimelist.net/images/anime/1215/123362l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1215/123362.webp + small_image_url: https://myanimelist.net/images/anime/1215/123362t.webp + large_image_url: https://myanimelist.net/images/anime/1215/123362l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pBlx0N9eLNY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maken-Ki! + - type: Synonym + title: Maken-Ki! Battling Venus + - type: Japanese + title: マケン姫っ! + title: Maken-Ki! + title_english: null + title_japanese: マケン姫っ! + title_synonyms: + - Maken-Ki! Battling Venus + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-05T00:00:00+00:00' + to: '2011-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2011 + to: + day: 21 + month: 12 + year: 2011 + string: Oct 5, 2011 to Dec 21, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.31 + scored_by: 141907 + rank: 9310 + popularity: 885 + members: 319551 + favorites: 491 + synopsis: |- + Based on the manga series by Hiromitsu Takeda, this romantic comedy is about Takeru Ohyama, a typical perverted teenage boy. His new school doesn't require entrance exams, and it just turned co-ed! Unfortunately, his dreams of a happy high school life are dashed when he finds out the school is much more than it seems. All of the students wield a special item—a Maken—to unleash their magical abilities in duels! Can Takeru find a Maken that works for him? Even while trying to fit in at a new school and dealing with all kinds of girl problems? + + (Source: FUNimation) + background: '' + season: fall + year: 2011 + broadcast: + day: Wednesdays + time: 01:45 + timezone: Asia/Tokyo + string: Wednesdays at 01:45 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 83 + type: anime + name: AIC Spirits + url: https://myanimelist.net/anime/producer/83/AIC_Spirits + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10521 + url: https://myanimelist.net/anime/10521/Working + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75263.jpg + small_image_url: https://myanimelist.net/images/anime/3/75263t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75263l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75263.webp + small_image_url: https://myanimelist.net/images/anime/3/75263t.webp + large_image_url: https://myanimelist.net/images/anime/3/75263l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Working'!! + - type: Synonym + title: Working!! 2 + - type: Japanese + title: Working[ワーキング]’!! + - type: English + title: Wagnaria!!2 + title: Working'!! + title_english: Wagnaria!!2 + title_japanese: Working[ワーキング]’!! + title_synonyms: + - Working!! 2 + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-10-01T00:00:00+00:00' + to: '2011-12-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2011 + to: + day: 24 + month: 12 + year: 2011 + string: Oct 1, 2011 to Dec 24, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.81 + scored_by: 169397 + rank: 1169 + popularity: 975 + members: 289167 + favorites: 464 + synopsis: |- + The exciting antics of Wagnaria return as more ridiculous incidents occur, friendships are deepened, and new feelings are discovered. In addition to Souta Takanashi and his wacky co-workers, more eccentric personalities join the family restaurant: Haruna, Hyougo Otoo's missing wife, who has a habit of getting hopelessly lost through the sewer system; Kirio Yamada, Aoi's older brother, who is able to withstand Mahiru Inami's deadly punches; and twins Youhei and Mitsuki Mashiba, Kyouko Shirafuji's juniors who do not get along. + + Absurdity, romance, and hilarity are all on the menu for the Wagnaria family restaurant! + + [Written by MAL Rewrite] + background: The first episode received a preview airing on September 3, 2011. The regular television airing started + on October 1, 2011. + season: fall + year: 2011 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10588 + url: https://myanimelist.net/anime/10588/Persona_4_the_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/29107.jpg + small_image_url: https://myanimelist.net/images/anime/4/29107t.jpg + large_image_url: https://myanimelist.net/images/anime/4/29107l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/29107.webp + small_image_url: https://myanimelist.net/images/anime/4/29107t.webp + large_image_url: https://myanimelist.net/images/anime/4/29107l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PnvAj2XyL-k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Persona 4 the Animation + - type: Synonym + title: P4A + - type: Japanese + title: ペルソナ4アニメーション + - type: English + title: Persona 4 the Animation + title: Persona 4 the Animation + title_english: Persona 4 the Animation + title_japanese: ペルソナ4アニメーション + title_synonyms: + - P4A + type: TV + source: Game + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2011-10-07T00:00:00+00:00' + to: '2012-03-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2011 + to: + day: 30 + month: 3 + year: 2012 + string: Oct 7, 2011 to Mar 30, 2012 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 137249 + rank: 2126 + popularity: 1005 + members: 279445 + favorites: 2589 + synopsis: |- + Serial murders have recently plagued Inaba, with the police struggling to find any leads. Despite this, due to his parents going abroad for work, Yuu Narukami moves to the small town to live with his uncle for a year. He enrolls at Yasogami High School, where he meets and befriends Yousuke Hanamura, Chie Satonaka, and Yukiko Amagi. + + While hanging out together after school, the group fills Yuu in on the urban legend known as the "Midnight Channel"—a mysterious TV channel that only appears at midnight on rainy days while the viewer is alone. Curious about the claim, Yuu decides to tune in that night, only to see the next victim of the serial murders appear on the screen instead. He also finds himself being drawn into the TV, which intrigues his newfound friends enough to want to investigate. + + Yuu ends up falling into the world within the TV, which is blanketed by a thick fog and swarming with hostile creatures known as "Shadows." Realizing that this world is somehow connected to the murders, the Investigation Team forms with the goal of uncovering the mystery behind the incidents. + + [Written by MAL Rewrite] + background: Persona 4 The Animation is based off of the critically acclaimed RPG series by Atlus. + season: fall + year: 2011 + broadcast: + day: Fridays + time: 01:30 + timezone: Asia/Tokyo + string: Fridays at 01:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 870 + type: anime + name: Index + url: https://myanimelist.net/anime/producer/870/Index + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 6773 + url: https://myanimelist.net/anime/6773/Shakugan_no_Shana_III_Final + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/32539.jpg + small_image_url: https://myanimelist.net/images/anime/9/32539t.jpg + large_image_url: https://myanimelist.net/images/anime/9/32539l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/32539.webp + small_image_url: https://myanimelist.net/images/anime/9/32539t.webp + large_image_url: https://myanimelist.net/images/anime/9/32539l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NdNf2OlaRe0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shakugan no Shana III (Final) + - type: Synonym + title: Shakugan no Shana Third + - type: Synonym + title: Shakugan no Shana 3 + - type: Japanese + title: 灼眼のシャナIII –Final– + - type: English + title: 'Shakugan no Shana: Season III' + title: Shakugan no Shana III (Final) + title_english: 'Shakugan no Shana: Season III' + title_japanese: 灼眼のシャナIII –Final– + title_synonyms: + - Shakugan no Shana Third + - Shakugan no Shana 3 + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2011-10-08T00:00:00+00:00' + to: '2012-03-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2011 + to: + day: 24 + month: 3 + year: 2012 + string: Oct 8, 2011 to Mar 24, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 122053 + rank: 2265 + popularity: 1147 + members: 247442 + favorites: 1154 + synopsis: |- + Yuji disappeared the fateful night he was supposed to choose between a life combating evil by Shana's side or as a normal teenager. He returns from near-death to lead the Crimson Denizens in a dubious plot to bring peace to the universe, but Shana isn't fooled. In an explosive reunion, the fiery warrior faces her unlikeliest of foes while Flame Hazes from across the world join forces to ignite a war that will determine the fate of all supernatural kind. + + (Source: FUNimation) + background: '' + season: fall + year: 2011 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 10460 + url: https://myanimelist.net/anime/10460/Kimi_to_Boku + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/34949.jpg + small_image_url: https://myanimelist.net/images/anime/4/34949t.jpg + large_image_url: https://myanimelist.net/images/anime/4/34949l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/34949.webp + small_image_url: https://myanimelist.net/images/anime/4/34949t.webp + large_image_url: https://myanimelist.net/images/anime/4/34949l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ajDCvoOAXSU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi to Boku. + - type: Synonym + title: Kimi to Boku. + - type: Japanese + title: 君と僕。 + - type: English + title: You and Me. + title: Kimi to Boku. + title_english: You and Me. + title_japanese: 君と僕。 + title_synonyms: + - Kimi to Boku. + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-10-04T00:00:00+00:00' + to: '2011-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2011 + to: + day: 27 + month: 12 + year: 2011 + string: Oct 4, 2011 to Dec 27, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 65004 + rank: 1590 + popularity: 1416 + members: 196892 + favorites: 1418 + synopsis: |- + Four childhood friends are in their second year at Homare High School: kind and cheerful Shun Matsuoka, hot-tempered Kaname Tsukahara, and the Asaba twins, gentle Yuuta and lazy Yuuki. When a dynamic transfer student, Chizuru Tachibana, joins their group, the friends get caught up in his creative yet troublesome ideas that end up bringing excitement to their everyday lives. With new encounters and experiences, they begin to learn more about each other and themselves. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2011 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11553 + url: https://myanimelist.net/anime/11553/Toradora__Bentou_no_Gokui + images: + jpg: + image_url: https://myanimelist.net/images/anime/1756/104652.jpg + small_image_url: https://myanimelist.net/images/anime/1756/104652t.jpg + large_image_url: https://myanimelist.net/images/anime/1756/104652l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1756/104652.webp + small_image_url: https://myanimelist.net/images/anime/1756/104652t.webp + large_image_url: https://myanimelist.net/images/anime/1756/104652l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Toradora!: Bentou no Gokui' + - type: Synonym + title: 'Toradora!: The True Meaning of Bento' + - type: Synonym + title: 'Toradora!: Bentou Battle' + - type: Japanese + title: とらドラ! 弁当の極意 + - type: English + title: Toradora! Special + title: 'Toradora!: Bentou no Gokui' + title_english: Toradora! Special + title_japanese: とらドラ! 弁当の極意 + title_synonyms: + - 'Toradora!: The True Meaning of Bento' + - 'Toradora!: Bentou Battle' + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-12-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 12 + year: 2011 + to: + day: null + month: null + year: null + string: Dec 21, 2011 + duration: 27 min + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 105236 + rank: 2589 + popularity: 1452 + members: 190896 + favorites: 158 + synopsis: |- + An unaired episode included in the Blu-ray box set. + + Yuusaku brings an extravagant bento box to share with the class, which makes Ryuuji feel inferior about his own bento making skills. Desperate to beat his bentos, Ryuuji obsessively tries to compete against them to the point where he even brings a rice cooker to school. After Taiga brings him some salty onigiri, Ryuuji realises that the true meaning of bentos is not the taste, but the feelings that are put into it. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10456 + url: https://myanimelist.net/anime/10456/Kyoukaisenjou_no_Horizon + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/79598.jpg + small_image_url: https://myanimelist.net/images/anime/6/79598t.jpg + large_image_url: https://myanimelist.net/images/anime/6/79598l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/79598.webp + small_image_url: https://myanimelist.net/images/anime/6/79598t.webp + large_image_url: https://myanimelist.net/images/anime/6/79598l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lgwFB5pgvq8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kyoukaisenjou no Horizon + - type: Synonym + title: Kyoukai Senjou no Horizon + - type: Japanese + title: 境界線上のホライゾン + - type: English + title: Horizon in the Middle of Nowhere + title: Kyoukaisenjou no Horizon + title_english: Horizon in the Middle of Nowhere + title_japanese: 境界線上のホライゾン + title_synonyms: + - Kyoukai Senjou no Horizon + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2011-10-02T00:00:00+00:00' + to: '2011-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2011 + to: + day: 25 + month: 12 + year: 2011 + string: Oct 2, 2011 to Dec 25, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 68106 + rank: 5024 + popularity: 1463 + members: 189878 + favorites: 876 + synopsis: |- + In the far future, humans abandon a devastated Earth and traveled to outer space. However, due to unknown phenomenon that prevents them from traveling into space, humanity returns to Earth only to find it inhospitable except for Japan. + + To accommodate the entire human population, pocket dimensions are created around Japan to house in the populace. In order to find a way to return to outer space, the humans began reenacting human history according to the Holy book Testament. But in the year 1413 of the Testament Era, the nations of the pocket dimensions invade and conquer Japan, dividing the territory into feudal fiefdoms and forcing the original inhabitants of Japan to leave. + + It is now the year 1648 of the Testament Era, the refugees of Japan now live in the city ship Musashi, where it constantly travels around Japan while being watched by the Testament Union, the authority that runs the re-enactment of history. However, rumors of an apocalypse and war begin to spread when the Testament stops revealing what happens next after 1648. + + Taking advantage of this situation, Toori Aoi, head of Musashi Ariadust Academy's Supreme Federation and President of the student council, leads his fellow classmates to use this opportunity to regain their homeland. + + (Source: Wikipedia) + background: '' + season: fall + year: 2011 + broadcast: + day: Sundays + time: 02:58 + timezone: Asia/Tokyo + string: Sundays at 02:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 10578 + url: https://myanimelist.net/anime/10578/C³ + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/32285.jpg + small_image_url: https://myanimelist.net/images/anime/13/32285t.jpg + large_image_url: https://myanimelist.net/images/anime/13/32285l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/32285.webp + small_image_url: https://myanimelist.net/images/anime/13/32285t.webp + large_image_url: https://myanimelist.net/images/anime/13/32285l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xqad96ZyzNI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: C³ + - type: Synonym + title: C3 + - type: Synonym + title: C Cube + - type: Synonym + title: C^3 + - type: Japanese + title: シーキューブ + - type: English + title: C³ - CubexCursedxCurious + title: C³ + title_english: C³ - CubexCursedxCurious + title_japanese: シーキューブ + title_synonyms: + - C3 + - C Cube + - C^3 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-01T00:00:00+00:00' + to: '2011-12-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2011 + to: + day: 17 + month: 12 + year: 2011 + string: Oct 1, 2011 to Dec 17, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.58 + scored_by: 84954 + rank: 7658 + popularity: 1504 + members: 184372 + favorites: 273 + synopsis: |- + From the light novel series written by Minase Hazuki, comes a story of love, action, and comedy. Yachi Haruaki is a high school boy who is naturally resistant to curses. After his father sends him a mysterious black cube, Haruaki awakes to find a nude girl named Fear standing in his kitchen. She’s the human form of the cursed black cube – and an instrument of torture! Utilizing her special abilities, Fear fights alongside Haruaki to defeat other cursed instruments and their owners. + + (Source: FUNimation) + background: '' + season: fall + year: 2011 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11123 + url: https://myanimelist.net/anime/11123/Sekaiichi_Hatsukoi_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/34871.jpg + small_image_url: https://myanimelist.net/images/anime/8/34871t.jpg + large_image_url: https://myanimelist.net/images/anime/8/34871l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/34871.webp + small_image_url: https://myanimelist.net/images/anime/8/34871t.webp + large_image_url: https://myanimelist.net/images/anime/8/34871l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8l-DgTyitsQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sekaiichi Hatsukoi 2 + - type: Synonym + title: Sekai-ichi Hatsukoi 2 + - type: Synonym + title: Sekai'ichi Hatsukoi 2 + - type: Japanese + title: 世界一初恋 2 + - type: English + title: Sekai Ichi Hatsukoi - World's Greatest First Love 2 + title: Sekaiichi Hatsukoi 2 + title_english: Sekai Ichi Hatsukoi - World's Greatest First Love 2 + title_japanese: 世界一初恋 2 + title_synonyms: + - Sekai-ichi Hatsukoi 2 + - Sekai'ichi Hatsukoi 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-08T00:00:00+00:00' + to: '2011-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2011 + to: + day: 24 + month: 12 + year: 2011 + string: Oct 8, 2011 to Dec 24, 2011 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.81 + scored_by: 105858 + rank: 1163 + popularity: 1558 + members: 177654 + favorites: 731 + synopsis: |- + First loves are messy. While settling in as a shoujo manga editor at the famous Marukawa Publishing House, Ritsu Onodera is quite troubled. Working under the stern and superb Masamune Takano is hard enough as it is. However, Masamune is not only Ritsu's first love from middle school but he also suddenly declares that he will make Ritsu fall for him again. + + Unknown to them, another editor in the department, Yoshiyuki Katori, is in a relationship with the popular manga artist Chiaki Yoshino. The carefree Chiaki fails to notice, however, that his high school friend—Yuu Yanase—thinks of him as more than a friend. The stoic but caring Hatori will not surrender his love so easily. + + Falling in love for the first time when you are 30 is certainly troublesome. Shouta Kisa, yet another editor, is going out with 21-year-old Kou Yukina, an art student. Despite Yukina's assurances, Kisa cannot help but doubt whether someone like himself is truly worthy of his younger, "sparkling" boyfriend. + + [Written by MAL Rewrite] + background: An event to show ep.1 of season 2 (along with 1st OVA) happening on September 24, 2011. Regular TV airing + started on October 8, 2011. + season: fall + year: 2011 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 10397 + url: https://myanimelist.net/anime/10397/Mashiro-iro_Symphony__The_Color_of_Lovers + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/39303.jpg + small_image_url: https://myanimelist.net/images/anime/9/39303t.jpg + large_image_url: https://myanimelist.net/images/anime/9/39303l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/39303.webp + small_image_url: https://myanimelist.net/images/anime/9/39303t.webp + large_image_url: https://myanimelist.net/images/anime/9/39303l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mashiro-iro Symphony: The Color of Lovers' + - type: Synonym + title: 'Mashiro-iro Symphony: Love Is Pure White' + - type: Synonym + title: 'Mashiroiro Symphony: The Color of Lovers' + - type: Synonym + title: Pure White Symphony + - type: Japanese + title: ましろ色シンフォニー -The color of lovers- + - type: English + title: 'Mashiroiro Symphony: The Color of Lovers' + - type: Spanish + title: Mashiroiro Symphony + title: 'Mashiro-iro Symphony: The Color of Lovers' + title_english: 'Mashiroiro Symphony: The Color of Lovers' + title_japanese: ましろ色シンフォニー -The color of lovers- + title_synonyms: + - 'Mashiro-iro Symphony: Love Is Pure White' + - 'Mashiroiro Symphony: The Color of Lovers' + - Pure White Symphony + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2011-10-05T00:00:00+00:00' + to: '2011-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2011 + to: + day: 21 + month: 12 + year: 2011 + string: Oct 5, 2011 to Dec 21, 2011 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.03 + scored_by: 78020 + rank: 4971 + popularity: 1669 + members: 163089 + favorites: 507 + synopsis: |- + When boys suddenly get into places where they've never been allowed before, some girls tend to get upset. So when the decision is made to merge the elite Yuihime Girls' Private Academy and the coeducational Kagamidai Private Academy, everyone wants to take extra care in avoiding trouble while bringing the two Privates together. Therefore, rather than just bringing the Kagamidai boys into the Yuihime girls' school all at once, a plan is concocted in which a group of test males will be inserted into the Girls' Private Academy first. + + Thus, poor young Shingo finds himself being thrown as a sacrificial lamb to the lionesses of Yuihime, who aren't exactly waiting for him with open arms. Will Shingo manage to survive the estrogen soaked death pit that is Yuihime? Can the girls learn to be more receptive to the boys? And just how long until something involving panties will cause emotions to flare, sparks to fly and the battle of the sexes to explode? + + (Source: Sentai Filmworks, edited) + background: '' + season: fall + year: 2011 + broadcast: + day: Wednesdays + time: 02:00 + timezone: Asia/Tokyo + string: Wednesdays at 02:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10798 + url: https://myanimelist.net/anime/10798/Un-Go + images: + jpg: + image_url: https://myanimelist.net/images/anime/1823/136763.jpg + small_image_url: https://myanimelist.net/images/anime/1823/136763t.jpg + large_image_url: https://myanimelist.net/images/anime/1823/136763l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1823/136763.webp + small_image_url: https://myanimelist.net/images/anime/1823/136763t.webp + large_image_url: https://myanimelist.net/images/anime/1823/136763l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/W_bLF292SB4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Un-Go + - type: Japanese + title: UN-GO アン ゴ + - type: English + title: Un-Go + title: Un-Go + title_english: Un-Go + title_japanese: UN-GO アン ゴ + title_synonyms: [] + type: TV + source: Novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2011-10-14T00:00:00+00:00' + to: '2011-12-23T00:00:00+00:00' + prop: + from: + day: 14 + month: 10 + year: 2011 + to: + day: 23 + month: 12 + year: 2011 + string: Oct 14, 2011 to Dec 23, 2011 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.34 + scored_by: 60842 + rank: 3071 + popularity: 1685 + members: 160392 + favorites: 633 + synopsis: |- + In a dystopian future, detective Shinjuurou Yuuki—known by some as the "Defeated Detective"—solves mysteries throughout Tokyo. Aided by his odd associate Inga, Shinjuurou's insight and ingenuity in cracking cases, particularly homicides, lead to numerous mysteries solved and culprits caught. However, his partner seems to have some other, more sinister intentions for the people they catch, and the truth of the assistant's identity and motivation is shrouded in secrecy. + + [Written by MAL Rewrite] + background: Based on Sakaguchi Ango's novel, Meiji Kaika Ango Torimonocho. + season: fall + year: 2011 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: [] + - mal_id: 11266 + url: https://myanimelist.net/anime/11266/Ao_no_Exorcist__Kuro_no_Iede + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/73495.jpg + small_image_url: https://myanimelist.net/images/anime/11/73495t.jpg + large_image_url: https://myanimelist.net/images/anime/11/73495l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/73495.webp + small_image_url: https://myanimelist.net/images/anime/11/73495t.webp + large_image_url: https://myanimelist.net/images/anime/11/73495l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ao no Exorcist: Kuro no Iede' + - type: Synonym + title: Ao no Exorcist Special + - type: Synonym + title: 'Ao no Futsumashi: Kuro no Iede' + - type: Japanese + title: 青の祓魔師(エクソシスト) クロの家出 + - type: English + title: 'Blue Exorcist: Runaway Kuro' + title: 'Ao no Exorcist: Kuro no Iede' + title_english: 'Blue Exorcist: Runaway Kuro' + title_japanese: 青の祓魔師(エクソシスト) クロの家出 + title_synonyms: + - Ao no Exorcist Special + - 'Ao no Futsumashi: Kuro no Iede' + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-10-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 10 + year: 2011 + to: + day: null + month: null + year: null + string: Oct 26, 2011 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 70860 + rank: 3456 + popularity: 1844 + members: 143032 + favorites: 131 + synopsis: Feeling slighted by Rin, Kuro goes on the hunt for a new master, but can he find anyone who can truly replace + Rin? + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10418 + url: https://myanimelist.net/anime/10418/Deadman_Wonderland__Akai_Knife_Tsukai + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/33033.jpg + small_image_url: https://myanimelist.net/images/anime/8/33033t.jpg + large_image_url: https://myanimelist.net/images/anime/8/33033l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/33033.webp + small_image_url: https://myanimelist.net/images/anime/8/33033t.webp + large_image_url: https://myanimelist.net/images/anime/8/33033l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Deadman Wonderland: Akai Knife Tsukai' + - type: Synonym + title: Deadman Wonderland OVA + - type: Japanese + title: デッドマン・ワンダーランド 赤いナイフ使い + - type: English + title: 'Deadman Wonderland: The Red Knife Wielder' + title: 'Deadman Wonderland: Akai Knife Tsukai' + title_english: 'Deadman Wonderland: The Red Knife Wielder' + title_japanese: デッドマン・ワンダーランド 赤いナイフ使い + title_synonyms: + - Deadman Wonderland OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-10-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 10 + year: 2011 + to: + day: null + month: null + year: null + string: Oct 8, 2011 + duration: 27 min + rating: R - 17+ (violence & profanity) + score: 6.9 + scored_by: 78763 + rank: 5681 + popularity: 1889 + members: 139222 + favorites: 60 + synopsis: |- + Two years after the catastrophic tidal wave that swept over Japan, police officer Kiyomasa Senji is trying to make the world a safer place. Using his Branch of Sin powers, he stops criminals in whatever ways he can. After rescuing a boy named Izuru Tsukiyoshi from a gang called Goreless Peace, the conflict between Kiyomasa and his adversaries heats up rapidly, to the point of being explosive. + + Offering a glimpse into the past of the future Deadman, the story follows Senji, helping to further develop the reasoning that drives his actions later in life. + + [Written by MAL Rewrite] + background: The Deadman Wonderland OVA is an anime-original story that is only referenced in the original manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10794 + url: https://myanimelist.net/anime/10794/IS__Infinite_Stratos_Encore_-_Koi_ni_Kogareru_Rokujuusou + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/56161.jpg + small_image_url: https://myanimelist.net/images/anime/4/56161t.jpg + large_image_url: https://myanimelist.net/images/anime/4/56161l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/56161.webp + small_image_url: https://myanimelist.net/images/anime/4/56161t.webp + large_image_url: https://myanimelist.net/images/anime/4/56161l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XvdKhLdExnQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'IS: Infinite Stratos Encore - Koi ni Kogareru Rokujuusou' + - type: Synonym + title: 'IS: Infinite Stratos Encore - Koi ni Kogareru Sextet' + - type: Japanese + title: IS 〈インフィニット・ストラトス〉 アンコール『恋に焦がれる六重奏』 + - type: English + title: 'Infinite Stratos Encore: A Sextet Yearning for Love' + title: 'IS: Infinite Stratos Encore - Koi ni Kogareru Rokujuusou' + title_english: 'Infinite Stratos Encore: A Sextet Yearning for Love' + title_japanese: IS 〈インフィニット・ストラトス〉 アンコール『恋に焦がれる六重奏』 + title_synonyms: + - 'IS: Infinite Stratos Encore - Koi ni Kogareru Sextet' + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-12-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 12 + year: 2011 + to: + day: null + month: null + year: null + string: Dec 7, 2011 + duration: 26 min + rating: R+ - Mild Nudity + score: 6.81 + scored_by: 70159 + rank: 6229 + popularity: 2011 + members: 128218 + favorites: 74 + synopsis: |- + On a hot day of summer vacation, Charlotte's plan to spend time alone with Ichika at his house is somewhat ruined when Cecilia gets the same idea, later followed by Houki, Lingyin and Laura. The next day, Houki helps out at a summer festival being held at her family's shrine and is surprised when Ichika shows up. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 12231 + url: https://myanimelist.net/anime/12231/Dragon_Ball__Episode_of_Bardock + images: + jpg: + image_url: https://myanimelist.net/images/anime/1218/138480.jpg + small_image_url: https://myanimelist.net/images/anime/1218/138480t.jpg + large_image_url: https://myanimelist.net/images/anime/1218/138480l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1218/138480.webp + small_image_url: https://myanimelist.net/images/anime/1218/138480t.webp + large_image_url: https://myanimelist.net/images/anime/1218/138480l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dragon Ball: Episode of Bardock' + - type: Japanese + title: ドラゴンボール エピソード オブ バーダック + - type: English + title: 'Dragon Ball: Episode of Bardock' + title: 'Dragon Ball: Episode of Bardock' + title_english: 'Dragon Ball: Episode of Bardock' + title_japanese: ドラゴンボール エピソード オブ バーダック + title_synonyms: [] + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2011-12-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 12 + year: 2011 + to: + day: null + month: null + year: null + string: Dec 17, 2011 + duration: 19 min + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 79095 + rank: 3751 + popularity: 2036 + members: 126238 + favorites: 127 + synopsis: |- + Shown at Jump Festa 2012, held in December, 2011. + + Bardock, Goku's father, who was supposed to have died when Freeza's attack hit him along with the Planet Vegeta, was sent way back in time where the planet was inhabited by strange creatures. There, he meets Freeza's ancestor, a space pirate named Chilled, and fights him to protect the planet. + + (Source: AniDB) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/09-2012-winter.yaml b/test/fixtures/jikan/season_matrix/09-2012-winter.yaml new file mode 100644 index 0000000..015f721 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/09-2012-winter.yaml @@ -0,0 +1,3297 @@ +metadata: + captured_at: '2026-05-11T11:32:42Z' + label: 2012-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2012/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:41 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:cba636d50a7ab539ef7fd974999562bbfe632793 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 275 + per_page: 25 + data: + - mal_id: 11111 + url: https://myanimelist.net/anime/11111/Another + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/75509.jpg + small_image_url: https://myanimelist.net/images/anime/4/75509t.jpg + large_image_url: https://myanimelist.net/images/anime/4/75509l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/75509.webp + small_image_url: https://myanimelist.net/images/anime/4/75509t.webp + large_image_url: https://myanimelist.net/images/anime/4/75509l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/12tJBLJ9uQA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Another + - type: Japanese + title: アナザー + - type: English + title: Another + title: Another + title_english: Another + title_japanese: アナザー + title_synonyms: [] + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-10T00:00:00+00:00' + to: '2012-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2012 + to: + day: 27 + month: 3 + year: 2012 + string: Jan 10, 2012 to Mar 27, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.46 + scored_by: 1054714 + rank: 2414 + popularity: 63 + members: 1785007 + favorites: 18752 + synopsis: |- + In class 3-3 of Yomiyama North Junior High, transfer student Kouichi Sakakibara makes his return after taking a sick leave for the first month of school. Among his new classmates, he is inexplicably drawn toward Mei Misaki—a reserved girl with an eyepatch whom he met in the hospital during his absence. But none of his classmates acknowledge her existence; they warn him not to acquaint himself with things that do not exist. Against their words of caution, Kouichi befriends Mei—soon learning of the sinister truth behind his friends' apprehension. + + The ominous rumors revolve around a former student of the class 3-3. However, no one will share the full details of the grim event with Kouichi. Engrossed in the curse that plagues his class, Kouichi sets out to discover its connection to his new friend. As a series of tragedies arise around them, it is now up to Kouichi, Mei, and their classmates to unravel the eerie mystery—but doing so will come at a hefty price. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Tuesdays + time: 01:00 + timezone: Asia/Tokyo + string: Tuesdays at 01:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11617 + url: https://myanimelist.net/anime/11617/High_School_DxD + images: + jpg: + image_url: https://myanimelist.net/images/anime/1331/111940.jpg + small_image_url: https://myanimelist.net/images/anime/1331/111940t.jpg + large_image_url: https://myanimelist.net/images/anime/1331/111940l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1331/111940.webp + small_image_url: https://myanimelist.net/images/anime/1331/111940t.webp + large_image_url: https://myanimelist.net/images/anime/1331/111940l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f4E8al_wo8w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD + - type: Synonym + title: Highschool DxD + - type: Japanese + title: ハイスクールD×D + - type: English + title: High School DxD + - type: German + title: Highschool DxD + title: High School DxD + title_english: High School DxD + title_japanese: ハイスクールD×D + title_synonyms: + - Highschool DxD + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-06T00:00:00+00:00' + to: '2012-03-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2012 + to: + day: 23 + month: 3 + year: 2012 + string: Jan 6, 2012 to Mar 23, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.32 + scored_by: 959972 + rank: 3160 + popularity: 94 + members: 1537618 + favorites: 23405 + synopsis: |- + High school student Issei Hyoudou is your run-of-the-mill pervert who does nothing productive with his life, peeping on women and dreaming of having his own harem one day. Things seem to be looking up for Issei when a beautiful girl asks him out on a date, although she turns out to be a fallen angel who brutally kills him! However, he gets a second chance at life when beautiful senior student Rias Gremory, who is a top-class devil, revives him as her servant, recruiting Issei into the ranks of the school's Occult Research club. + + Slowly adjusting to his new life, Issei must train and fight in order to survive in the violent world of angels and devils. Each new adventure leads to many hilarious (and risqué) moments with his new comrades, all the while keeping his new life a secret from his friends and family in High School DxD! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Fridays + time: '11:00' + timezone: Asia/Tokyo + string: Fridays at 11:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11843 + url: https://myanimelist.net/anime/11843/Danshi_Koukousei_no_Nichijou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/33257.jpg + small_image_url: https://myanimelist.net/images/anime/3/33257t.jpg + large_image_url: https://myanimelist.net/images/anime/3/33257l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/33257.webp + small_image_url: https://myanimelist.net/images/anime/3/33257t.webp + large_image_url: https://myanimelist.net/images/anime/3/33257l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BsQj0RYzW98?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Danshi Koukousei no Nichijou + - type: Japanese + title: 男子高校生の日常 + - type: English + title: Daily Lives of High School Boys + - type: German + title: Daily Lives of High School Boys + - type: Spanish + title: Daily Lives of High School Boys + - type: French + title: Daily Lives of High School Boys + title: Danshi Koukousei no Nichijou + title_english: Daily Lives of High School Boys + title_japanese: 男子高校生の日常 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-10T00:00:00+00:00' + to: '2012-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2012 + to: + day: 27 + month: 3 + year: 2012 + string: Jan 10, 2012 to Mar 27, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.23 + scored_by: 442634 + rank: 406 + popularity: 240 + members: 886468 + favorites: 14888 + synopsis: |- + Roaming the halls of the all-boys Sanada North High School are three close comrades: the eccentric ringleader with a hyperactive imagination Hidenori, the passionate Yoshitake, and the rational and prudent Tadakuni. Their lives are filled with giant robots, true love, and intense drama... in their colorful imaginations, at least. In reality, they are just an everyday trio of ordinary guys trying to pass the time, but who said everyday life couldn't be interesting? Whether it's an intricate RPG reenactment or an unexpected romantic encounter on the riverbank at sunset, Danshi Koukousei no Nichijou is rife with bizarre yet hilariously relatable situations that are anything but mundane. + + [Written by MAL Rewrite] + background: Danshi Koukousei no Nichijou includes eight pre-airings of about five minutes in length, which were distributed + through Nico Nico Douga. These pre-airings were all eventually shown during the TV series' run. The anime was released + on Blu-ray in a premium and standard edition by NIS America. The former was released on August 6, 2013 and the latter + on August 4, 2015. The series was dubbed in Tagalog by Creative Programs, Inc. + season: winter + year: 2012 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 643 + type: anime + name: Trinity Sound + url: https://myanimelist.net/anime/producer/643/Trinity_Sound + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11597 + url: https://myanimelist.net/anime/11597/Nisemonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1044/103654.jpg + small_image_url: https://myanimelist.net/images/anime/1044/103654t.jpg + large_image_url: https://myanimelist.net/images/anime/1044/103654l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1044/103654.webp + small_image_url: https://myanimelist.net/images/anime/1044/103654t.webp + large_image_url: https://myanimelist.net/images/anime/1044/103654l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NnInguACMbw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nisemonogatari + - type: Synonym + title: Impostory + - type: Japanese + title: 偽物語 + - type: English + title: Nisemonogatari + title: Nisemonogatari + title_english: Nisemonogatari + title_japanese: 偽物語 + title_synonyms: + - Impostory + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2012-01-08T00:00:00+00:00' + to: '2012-03-18T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2012 + to: + day: 18 + month: 3 + year: 2012 + string: Jan 8, 2012 to Mar 18, 2012 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.12 + scored_by: 454543 + rank: 572 + popularity: 299 + members: 775102 + favorites: 3961 + synopsis: |- + Koyomi Araragi has recently survived a vampire attack and met several girls plagued by supernatural entities. On top of all this, he wakes up one morning to find himself kidnapped and tied up by his girlfriend Hitagi Senjougahara. Araragi's sister Karen has run afoul of Deishuu Kaiki, a swindler who once conned Senjougahara's family. As a result, Senjougahara has imprisoned Araragi to keep him safe from the devious Kaiki. But when Araragi receives a frantic message from Karen, he sets out to rescue her. + + Along with Karen's troubles, Tsukihi, Araragi's other sister, faces issues of her own. And when two mysterious women step into their lives, not even Araragi can anticipate their true goals, nor the catastrophic truths about his family soon to be revealed. + + [Written by MAL Rewrite] + background: 'Nisemonogatari adapts the fourth and fifth volumes of NisiOisiN''s Monogatari Series: First Season.' + season: winter + year: 2012 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 11013 + url: https://myanimelist.net/anime/11013/Inu_x_Boku_SS + images: + jpg: + image_url: https://myanimelist.net/images/anime/1760/98794.jpg + small_image_url: https://myanimelist.net/images/anime/1760/98794t.jpg + large_image_url: https://myanimelist.net/images/anime/1760/98794l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1760/98794.webp + small_image_url: https://myanimelist.net/images/anime/1760/98794t.webp + large_image_url: https://myanimelist.net/images/anime/1760/98794l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Inu x Boku SS + - type: Synonym + title: Youko x Boku SS + - type: Japanese + title: 妖狐×僕SS + - type: English + title: Inu X Boku Secret Service + - type: German + title: Inu X Boku Secret Service + - type: Spanish + title: Inu × Boku Secret Service + - type: French + title: Inu X Boku Secret Service + title: Inu x Boku SS + title_english: Inu X Boku Secret Service + title_japanese: 妖狐×僕SS + title_synonyms: + - Youko x Boku SS + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-13T00:00:00+00:00' + to: '2012-03-30T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2012 + to: + day: 30 + month: 3 + year: 2012 + string: Jan 13, 2012 to Mar 30, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 244431 + rank: 2931 + popularity: 482 + members: 528413 + favorites: 3298 + synopsis: |- + Ririchiyo Shirakiin is the sheltered daughter of a renowned family. With her petite build and wealthy status, Ririchiyo has been a protected and dependent girl her entire life, but now she has decided to change all that. However, there is just one problem—the young girl has a sharp tongue she can't control, and terrible communication skills. + + With some help from a childhood friend, Ririchiyo takes up residence in Maison de Ayakashi, a secluded high-security apartment complex that, as the unsociable 15-year-old soon discovers, is home to a host of bizarre individuals. Furthermore, their quirky personalities are not the strangest things about them: each inhabitant of the Maison de Ayakashi, including Ririchiyo, is actually half-human, half-youkai. + + But Ririchiyo's troubles have only just begun. As a requirement of staying in her new home, she must be accompanied by a Secret Service agent. Ririchiyo's new partner, Soushi Miketsukami, is handsome, quiet... but ridiculously clingy and creepily submissive. With Soushi, her new supernatural neighbors, and the beginning of high school, Ririchiyo definitely seems to have a difficult path ahead of her. + + [Written by MAL Rewrite] + background: Inu x Boku SS was licensed by Sentai Filmworks for North America, while MVM Films licensed it for the United + Kingdom. During April 2013, Hanabee Entertainment released the series on DVD and Blu-ray for Australia and New Zealand. + season: winter + year: 2012 + broadcast: + day: Fridays + time: 02:00 + timezone: Asia/Tokyo + string: Fridays at 02:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10863 + url: https://myanimelist.net/anime/10863/Steins_Gate__Oukoubakko_no_Poriomania + images: + jpg: + image_url: https://myanimelist.net/images/anime/1805/123188.jpg + small_image_url: https://myanimelist.net/images/anime/1805/123188t.jpg + large_image_url: https://myanimelist.net/images/anime/1805/123188l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1805/123188.webp + small_image_url: https://myanimelist.net/images/anime/1805/123188t.webp + large_image_url: https://myanimelist.net/images/anime/1805/123188l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aEPMFgHTVN0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Steins;Gate: Oukoubakko no Poriomania' + - type: Synonym + title: Steins Gate Special + - type: Synonym + title: Steins Gate Episode 25 + - type: Synonym + title: Steins Gate OVA + - type: Japanese + title: シュタインズ ゲート 横行跋扈のポリオマニア + - type: English + title: 'Steins;Gate: Egoistic Poriomania' + title: 'Steins;Gate: Oukoubakko no Poriomania' + title_english: 'Steins;Gate: Egoistic Poriomania' + title_japanese: シュタインズ ゲート 横行跋扈のポリオマニア + title_synonyms: + - Steins Gate Special + - Steins Gate Episode 25 + - Steins Gate OVA + type: Special + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-02-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 2 + year: 2012 + to: + day: null + month: null + year: null + string: Feb 22, 2012 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 296885 + rank: 341 + popularity: 553 + members: 474739 + favorites: 896 + synopsis: |- + A few months after the events of Steins;Gate, Rintarou Okabe and his group of friends are invited to tag along with their acquaintance Faris NyanNyan, who is participating in a Rai-Net battle event in the United States. There, they meet up with an old colleague: Kurisu Makise, who has been recalling fragmented memories of events that happened in the other world lines in the form of dreams. She confronts Okabe, questioning him as to whether these events—particularly the incidents between the two of them—did indeed happen. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 11319 + url: https://myanimelist.net/anime/11319/Zero_no_Tsukaima_F + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/75559.jpg + small_image_url: https://myanimelist.net/images/anime/2/75559t.jpg + large_image_url: https://myanimelist.net/images/anime/2/75559l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/75559.webp + small_image_url: https://myanimelist.net/images/anime/2/75559t.webp + large_image_url: https://myanimelist.net/images/anime/2/75559l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eEXzj3IS-ms?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zero no Tsukaima F + - type: Synonym + title: Zero no Tsukaima Final Series + - type: Synonym + title: Zero's Familiar Final Series + - type: Synonym + title: Zero no Tsukaima S4 + - type: Japanese + title: ゼロの使い魔F + - type: English + title: The Familiar of Zero F + - type: German + title: The Familiar of Zero F + - type: Spanish + title: The Familiar of Zero F + - type: French + title: The Familiar of Zero F + title: Zero no Tsukaima F + title_english: The Familiar of Zero F + title_japanese: ゼロの使い魔F + title_synonyms: + - Zero no Tsukaima Final Series + - Zero's Familiar Final Series + - Zero no Tsukaima S4 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-07T00:00:00+00:00' + to: '2012-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2012 + to: + day: 24 + month: 3 + year: 2012 + string: Jan 7, 2012 to Mar 24, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 254447 + rank: 2652 + popularity: 596 + members: 447008 + favorites: 1244 + synopsis: "Saito Hiraga and Louise Françoise Le Blanc de La Vallière go on the offensive after the events of Zero no\ + \ Tsukaima: Princesses no Rondo. Together, they face off against King Joseph in the Holy City of Romalia with the\ + \ help of two others who control the power of the \"void.\" But in the midst of the many conflicts ahead of them,\ + \ an ancient evil begins to stir in the shadows. \n\nWill their close bonds blossom into something more or will they\ + \ be shattered through the ever increasing difficulty of the tasks that they must undertake? Zero no Tsukaima F follows\ + \ the story of Louise and Saito as they face their final challenges together.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2012 + broadcast: + day: Saturdays + time: 08:30 + timezone: Asia/Tokyo + string: Saturdays at 08:30 (JST) + producers: + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11433 + url: https://myanimelist.net/anime/11433/Ano_Natsu_de_Matteru + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/59405.jpg + small_image_url: https://myanimelist.net/images/anime/12/59405t.jpg + large_image_url: https://myanimelist.net/images/anime/12/59405l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/59405.webp + small_image_url: https://myanimelist.net/images/anime/12/59405t.webp + large_image_url: https://myanimelist.net/images/anime/12/59405l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dM4fbripgWA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ano Natsu de Matteru + - type: Japanese + title: あの夏で待ってる + - type: English + title: Waiting in the Summer + - type: German + title: Waiting in the Summer + - type: Spanish + title: 'Ano Natsu de Matteru: Waiting in the Summer' + title: Ano Natsu de Matteru + title_english: Waiting in the Summer + title_japanese: あの夏で待ってる + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-10T00:00:00+00:00' + to: '2012-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2012 + to: + day: 27 + month: 3 + year: 2012 + string: Jan 10, 2012 to Mar 27, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.4 + scored_by: 188263 + rank: 2726 + popularity: 660 + members: 410878 + favorites: 2109 + synopsis: |- + While testing out his camera on a bridge one summer night, Kaito Kirishima sees a blue light streaking across the sky, only to be blown off the railing seconds later. Just before succumbing to unconsciousness, a hand reaches down to grab ahold of his own. Dazed and confused, Kaito wakes up the next morning wondering how he ended up back in his own room with no apparent injuries or any recollection of the night before. As he proceeds with his normal school life, Kaito and his friends discuss what to do with his camera, finally deciding to make a film with it over their upcoming summer break. Noticing that Kaito has an interest in the new upperclassmen Ichika Takatsuki, his friend Tetsurou Ishigaki decides to invite her, as well as her friend Remon Yamano, to join them in their movie project. + + In what becomes one of the most entertaining and exciting summers of their lives, Kaito and his friends find that their time spent together is not just about creating a film, but something much more meaningful that will force them to confront their true feelings and each other. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: [] + - mal_id: 11285 + url: https://myanimelist.net/anime/11285/Black★Rock_Shooter_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/53909.jpg + small_image_url: https://myanimelist.net/images/anime/5/53909t.jpg + large_image_url: https://myanimelist.net/images/anime/5/53909l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/53909.webp + small_image_url: https://myanimelist.net/images/anime/5/53909t.webp + large_image_url: https://myanimelist.net/images/anime/5/53909l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zN9gcAgn9u0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Black★Rock Shooter (TV) + - type: Synonym + title: BRS (TV) + - type: Japanese + title: ブラック★ロックシューター + - type: English + title: Black Rock Shooter + - type: German + title: Black Rock Shooter + - type: French + title: Black Rock Shooter + title: Black★Rock Shooter (TV) + title_english: Black Rock Shooter + title_japanese: ブラック★ロックシューター + title_synonyms: + - BRS (TV) + type: TV + source: Other + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2012-02-03T00:00:00+00:00' + to: '2012-03-23T00:00:00+00:00' + prop: + from: + day: 3 + month: 2 + year: 2012 + to: + day: 23 + month: 3 + year: 2012 + string: Feb 3, 2012 to Mar 23, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.8 + scored_by: 182274 + rank: 6255 + popularity: 746 + members: 369871 + favorites: 2473 + synopsis: |- + On the first day of junior high school, Mato Kuroi happens to run into Yomi Takanashi, a shy, withdrawn girl whom she immediately takes an interest in. Mato tries her best to make conversation with Yomi, wanting to befriend her. At first, she is avoided, but the ice breaks when Yomi happens to notice a decorative blue bird attached to Mato's phone, which is from the book "Li'l Birds At Play." Discovering they have a common interest, the two form a strong friendship. + + In an alternate universe, the young girls exist as parallel beings, Mato as Black★Rock Shooter, and Yomi as Dead Master. Somehow, what happens in one world seems to have an effect on the other, and unaware of this fact, the girls unknowingly become entangled by the threads of fate. + + [Written by MAL Rewrite] + background: Black★Rock Shooter is based on characters illustrated by huke. The illustrations caught the eye of music + producer Ryo who then created a song based from these illustrations with his collaborative Supercell. This song's + title would then become the inspiration for the anime, Black★Rock Shooter. The anime was awarded the Technical Achievement + in Broadcast Animation at the 65th Motion Picture and Television Engineering Society of Japan Awards in 2012. It also + received a video game adaptation for the Playstation Portable, as well as a few browser games and guest appearances + in other popular video game franchises. + season: winter + year: 2012 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 334 + type: anime + name: Ordet + url: https://myanimelist.net/anime/producer/334/Ordet + - mal_id: 537 + type: anime + name: SANZIGEN + url: https://myanimelist.net/anime/producer/537/SANZIGEN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11665 + url: https://myanimelist.net/anime/11665/Natsume_Yuujinchou_Shi + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/37449.jpg + small_image_url: https://myanimelist.net/images/anime/3/37449t.jpg + large_image_url: https://myanimelist.net/images/anime/3/37449l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/37449.webp + small_image_url: https://myanimelist.net/images/anime/3/37449t.webp + large_image_url: https://myanimelist.net/images/anime/3/37449l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/n_Ku789_xVo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Natsume Yuujinchou Shi + - type: Synonym + title: Natsume Yuujinchou Four + - type: Synonym + title: Natsume Yuujinchou 4 + - type: Synonym + title: Natsume Yujincho 4 + - type: Japanese + title: 夏目友人帳 肆 + - type: English + title: Natsume's Book of Friends Season 4 + - type: German + title: Natsume Yujin-cho Staffel 4 + - type: Spanish + title: Natsume Yujin-cho Temporada 4 + - type: French + title: Natsume Yujin-cho Saison 4 + title: Natsume Yuujinchou Shi + title_english: Natsume's Book of Friends Season 4 + title_japanese: 夏目友人帳 肆 + title_synonyms: + - Natsume Yuujinchou Four + - Natsume Yuujinchou 4 + - Natsume Yujincho 4 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-01-03T00:00:00+00:00' + to: '2012-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2012 + to: + day: 27 + month: 3 + year: 2012 + string: Jan 3, 2012 to Mar 27, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.64 + scored_by: 117931 + rank: 88 + popularity: 1062 + members: 266479 + favorites: 2119 + synopsis: |- + Takashi Natsume, the timid youkai expert and master of the Book of Friends, continues his journey towards self-understanding and acceptance with the help of friends both new and old. His most important ally is still his gluttonous and sake-loving bodyguard, the arrogant but fiercely protective wolf spirit Madara—or Nyanko-sensei, as Madara is called when in his usual disguise of an unassuming, pudgy cat. + + Natsume, while briefly separated from Nyanko-sensei, is ambushed and kidnapped by a strange group of masked, monkey-like youkai, who have spirited him away to their forest as they desperately search for the Book of Friends. Realizing that his "servant" has been taken out from right under his nose, Nyanko-sensei enlists the help of Natsume's youkai friends and mounts a rescue operation. However, the forest of the monkey spirits holds many dangerous enemies, including the Matoba Clan, Natsume's old nemesis. + + Stretching from the formidable hideout of the Matoba to Natsume's own childhood home, Natsume Yuujinchou Shi is a sweeping but familiar return to a world of danger and friendship, where Natsume will finally confront the demons of his own past. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 10218 + url: https://myanimelist.net/anime/10218/Berserk__Ougon_Jidai-hen_I_-_Haou_no_Tamago + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/62179.jpg + small_image_url: https://myanimelist.net/images/anime/12/62179t.jpg + large_image_url: https://myanimelist.net/images/anime/12/62179l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/62179.webp + small_image_url: https://myanimelist.net/images/anime/12/62179t.webp + large_image_url: https://myanimelist.net/images/anime/12/62179l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FnbwFiZf9vg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Berserk: Ougon Jidai-hen I - Haou no Tamago' + - type: Synonym + title: Berserk Movie + - type: Synonym + title: Berserk Saga + - type: Synonym + title: 'Berserk: Golden Age Arc I - Egg of the Supreme Ruler' + - type: Synonym + title: 'The Golden Age Arc I: The High King''s Egg' + - type: Japanese + title: ベルセルク 黄金時代篇Ⅰ 覇王の卵 + - type: English + title: 'Berserk: The Golden Age Arc I - The Egg of the King' + - type: Spanish + title: 'Berserk: La Edad de Oro I. El Huevo del Rey Conquistador' + title: 'Berserk: Ougon Jidai-hen I - Haou no Tamago' + title_english: 'Berserk: The Golden Age Arc I - The Egg of the King' + title_japanese: ベルセルク 黄金時代篇Ⅰ 覇王の卵 + title_synonyms: + - Berserk Movie + - Berserk Saga + - 'Berserk: Golden Age Arc I - Egg of the Supreme Ruler' + - 'The Golden Age Arc I: The High King''s Egg' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-02-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 2 + year: 2012 + to: + day: null + month: null + year: null + string: Feb 4, 2012 + duration: 1 hr 16 min + rating: R+ - Mild Nudity + score: 7.72 + scored_by: 157939 + rank: 1382 + popularity: 1144 + members: 247881 + favorites: 1077 + synopsis: |- + In the Kingdom of Midland, a mercenary named Guts wanders the land, preferring a life of conflict over a life of peace. Despite the odds never being in his favor, he is an unstoppable force that overcomes every opponent, wielding a massive sword larger than himself. + + One day, Griffith, the mysterious leader of the mercenary group Band of the Hawk, witnesses the warrior's battle prowess and invites the wandering swordsman to join his squadron. Rejecting the offer, Guts challenges Griffith to a duel—and, much to the former's surprise, is subsequently defeated and forced to join. + + Now, Guts must fight alongside Griffith and his crew to help Midland defeat the Empire of Chuder. However, Griffith seems to harbor ulterior motives, desiring something much larger than just settling the war... + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1584 + type: anime + name: Beyond C. + url: https://myanimelist.net/anime/producer/1584/Beyond_C + - mal_id: 1697 + type: anime + name: KDDI + url: https://myanimelist.net/anime/producer/1697/KDDI + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 13 + type: anime + name: Studio 4°C + url: https://myanimelist.net/anime/producer/13/Studio_4%C2%B0C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 13357 + url: https://myanimelist.net/anime/13357/High_School_DxD_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/38449.jpg + small_image_url: https://myanimelist.net/images/anime/10/38449t.jpg + large_image_url: https://myanimelist.net/images/anime/10/38449l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/38449.webp + small_image_url: https://myanimelist.net/images/anime/10/38449t.webp + large_image_url: https://myanimelist.net/images/anime/10/38449l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD Specials + - type: Synonym + title: Highschool DxD Specials + - type: Japanese + title: ハイスクールD×Dスペシャル + title: High School DxD Specials + title_english: null + title_japanese: ハイスクールD×Dスペシャル + title_synonyms: + - Highschool DxD Specials + type: Special + source: Light novel + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2012-03-21T00:00:00+00:00' + to: '2012-08-29T00:00:00+00:00' + prop: + from: + day: 21 + month: 3 + year: 2012 + to: + day: 29 + month: 8 + year: 2012 + string: Mar 21, 2012 to Aug 29, 2012 + duration: 3 min per ep + rating: R+ - Mild Nudity + score: 7.27 + scored_by: 128297 + rank: 3481 + popularity: 1270 + members: 221464 + favorites: 412 + synopsis: |- + A series of 3-5 minute specials that were bundled with the HighSchool DxD DVD and Blu-rays. They are a stand alone set of episodes that are not a part of any story line in particular. + + Special 1: Going Sunbathing! - The Occult Research Club goes on a beach outing. + + Special 2: Issei's Private Training! - Issei is being given lessons in magic by Akeno. + + Special 3: A Little Bold, Koneko-Chan... Nyan! - Koneko accidentally has her personality reversed magically, making her incredibly sexually active and reversing her sexual preference. + + Special 4: The Untold Story of The Dress Break's Birth! - A few flashbacks of how Issei first found out and eventually perfected his special move, Dress Break. + + Special 5: Making Udon! - As part of a penalty for losing a bet, Sona and Tsubaki make udon for the Occult Research Club but the udon comes to life in a peculiar way... + + Special 6: Asia Transforms! - Asia wants to prove she is just as bad as any demon by using ideas found in Issei's magazines, going as far as dressing up like a harlot and seducing him. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11179 + url: https://myanimelist.net/anime/11179/Papa_no_Iukoto_wo_Kikinasai + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/35039.jpg + small_image_url: https://myanimelist.net/images/anime/2/35039t.jpg + large_image_url: https://myanimelist.net/images/anime/2/35039l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/35039.webp + small_image_url: https://myanimelist.net/images/anime/2/35039t.webp + large_image_url: https://myanimelist.net/images/anime/2/35039l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Papa no Iukoto wo Kikinasai! + - type: Synonym + title: Papakiki + - type: Synonym + title: Listen to Me + - type: Synonym + title: Girls + - type: Synonym + title: I'm Your Father! + - type: Japanese + title: パパのいうことを聞きなさい! + - type: English + title: Listen to Me, Girls. I Am Your Father! + - type: German + title: Listen to Me, Girls. I Am Your Father! + - type: Spanish + title: 'Papa no Iukoto wo Kikinasai!: Listen to Me, Girls. I Am Your Father!' + - type: French + title: Listen to Me, Girls. I Am Your Father! + title: Papa no Iukoto wo Kikinasai! + title_english: Listen to Me, Girls. I Am Your Father! + title_japanese: パパのいうことを聞きなさい! + title_synonyms: + - Papakiki + - Listen to Me + - Girls + - I'm Your Father! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-11T00:00:00+00:00' + to: '2012-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2012 + to: + day: 28 + month: 3 + year: 2012 + string: Jan 11, 2012 to Mar 28, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 105252 + rank: 3638 + popularity: 1361 + members: 205710 + favorites: 656 + synopsis: |- + Yuuta Segawa has just started his freshman year of university. One day, his sister Yuri, who raised him after their parents died, asks him to take care of her daughters Hina, Sora and Miu while she and her husband go overseas on a business trip. Yuuta grudgingly accepts, but tragedy strikes when their plane goes missing and all passengers are presumed dead. In an effort to prevent the three girls from being split up, Yuuta goes against their family and takes them in, just as his sister took him in when he had no one else. + + Now the four find themselves in a new and peculiar situation: Yuuta must learn how to balance his new responsibilities—as the newest member of the Street Observation Research Society, a club for people watching, and also as a father figure—while Sora, Miu, and Hina come to terms with the loss of their parents. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Wednesdays + time: 01:30 + timezone: Asia/Tokyo + string: Wednesdays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 709 + type: anime + name: PPP + url: https://myanimelist.net/anime/producer/709/PPP + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: [] + - mal_id: 11235 + url: https://myanimelist.net/anime/11235/Amagami_SS__Plus + images: + jpg: + image_url: https://myanimelist.net/images/anime/1951/114976.jpg + small_image_url: https://myanimelist.net/images/anime/1951/114976t.jpg + large_image_url: https://myanimelist.net/images/anime/1951/114976l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1951/114976.webp + small_image_url: https://myanimelist.net/images/anime/1951/114976t.webp + large_image_url: https://myanimelist.net/images/anime/1951/114976l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5Idz2vAw7AI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Amagami SS+ Plus + - type: Synonym + title: Amagami SS Dai Ni Ki + - type: Synonym + title: Amagami SS Second Season + - type: Synonym + title: Amagami SS 2nd Season + - type: Japanese + title: アマガミSS+ plus + - type: English + title: Amagami SS+ plus + title: Amagami SS+ Plus + title_english: Amagami SS+ plus + title_japanese: アマガミSS+ plus + title_synonyms: + - Amagami SS Dai Ni Ki + - Amagami SS Second Season + - Amagami SS 2nd Season + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-01-06T00:00:00+00:00' + to: '2012-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2012 + to: + day: 30 + month: 3 + year: 2012 + string: Jan 6, 2012 to Mar 30, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.39 + scored_by: 95604 + rank: 2768 + popularity: 1527 + members: 181641 + favorites: 388 + synopsis: "In the aftermath of Amagami SS, high school student Junichi Tachibana continues his relationships with the\ + \ girls at his school. Amagami SS+ Plus offers a glimpse into what happened after the resolution of each girl's individual\ + \ story. \n\nNew events begin to take place between each of the girls and Junichi. Tsukasa Ayatsuji, the class representative,\ + \ runs for student council president; Rihoko Sakurai, who has taken over the Tea Club with Junichi, still wants to\ + \ confess her feelings to him; Ai Nanasaki questions the future of her relationship with Junichi when he leaves for\ + \ college; Kaoru Tanamachi wonders if her relationship with Junichi will ever go any further; Sae Nakata and Junichi\ + \ deal with classmates who still can't believe that someone so cute is his girlfriend; and Haruka Morishima wants\ + \ to take their relationship to the next level and get married.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2012 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11241 + url: https://myanimelist.net/anime/11241/Brave_10 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1704/143834.jpg + small_image_url: https://myanimelist.net/images/anime/1704/143834t.jpg + large_image_url: https://myanimelist.net/images/anime/1704/143834l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1704/143834.webp + small_image_url: https://myanimelist.net/images/anime/1704/143834t.webp + large_image_url: https://myanimelist.net/images/anime/1704/143834l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ioSn1KaDEj0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Brave 10 + - type: Synonym + title: Brave10 + - type: Synonym + title: Brave Ten + - type: Japanese + title: ブレイブ・テン + - type: English + title: Brave 10 + title: Brave 10 + title_english: Brave 10 + title_japanese: ブレイブ・テン + title_synonyms: + - Brave10 + - Brave Ten + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-08T00:00:00+00:00' + to: '2012-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2012 + to: + day: 25 + month: 3 + year: 2012 + string: Jan 8, 2012 to Mar 25, 2012 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.75 + scored_by: 72536 + rank: 6576 + popularity: 1744 + members: 153781 + favorites: 261 + synopsis: |- + Isanami, a young priestess of Izumo, is forced to watch as a group of evil ninja burn her temple to the ground and slaughter the people within, leaving her no choice but to flee into the forest to escape the same fate. By chance, she stumbles upon Saizou Kirigakure, a masterless ninja from the Iga school. The two travel to Ueda Castle to ask Yukimura Sanada for help. Isanami's possession of a strange and devastating power is revealed, and Sanada readily agrees to help her, gathering ten brave warriors to Isanami's side. + + Thus begins Brave 10, a story set in the Warring States period. It follows Saizou and Isanami's journey throughout the war-laden lands in search of brave warriors to serve under Yukimura's banner, each possessing powerful skills of their own. They'll have to travel far and wide, all while trying to fend off those who would chase after the dark power that she possesses to make it their own. + background: '' + season: winter + year: 2012 + broadcast: + day: null + time: null + timezone: null + string: Sundays at Unknown + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 543 + type: anime + name: Studio Saki Makura + url: https://myanimelist.net/anime/producer/543/Studio_Saki_Makura + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 11079 + url: https://myanimelist.net/anime/11079/Kill_Me_Baby + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/87197.jpg + small_image_url: https://myanimelist.net/images/anime/9/87197t.jpg + large_image_url: https://myanimelist.net/images/anime/9/87197l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/87197.webp + small_image_url: https://myanimelist.net/images/anime/9/87197t.webp + large_image_url: https://myanimelist.net/images/anime/9/87197l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QCJowuoBTMY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kill Me Baby + - type: Synonym + title: Baby + - type: Synonym + title: Please Kill Me. + - type: Japanese + title: キルミーベイベー + - type: English + title: Kill Me Baby + title: Kill Me Baby + title_english: Kill Me Baby + title_japanese: キルミーベイベー + title_synonyms: + - Baby + - Please Kill Me. + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-01-06T00:00:00+00:00' + to: '2012-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2012 + to: + day: 30 + month: 3 + year: 2012 + string: Jan 6, 2012 to Mar 30, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 54017 + rank: 5746 + popularity: 1974 + members: 131407 + favorites: 625 + synopsis: |- + Kill Me Baby is the touching story of Yasuna, a normal (?) high school girl, and Sonya, her best friend who happens to be an assassin. Unfortunately, little Sonya's trained assassin instincts often work against her and others in her daily high school life, as Yasuna's often-broken wrist can attest to. She just wanted a hug, but she ended up with a broken neck. Isn't it sad? No, it's hilarious. + + Not even Yasuna's intense ninja training can prepare her for the exciting adventures in this explosive 4-panel manga adaptation. + background: '' + season: winter + year: 2012 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11751 + url: https://myanimelist.net/anime/11751/Senki_Zesshou_Symphogear + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/75580.jpg + small_image_url: https://myanimelist.net/images/anime/11/75580t.jpg + large_image_url: https://myanimelist.net/images/anime/11/75580l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/75580.webp + small_image_url: https://myanimelist.net/images/anime/11/75580t.webp + large_image_url: https://myanimelist.net/images/anime/11/75580l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Senki Zesshou Symphogear + - type: Synonym + title: Senhime Zesshou Symphogear + - type: Japanese + title: 戦姫絶唱シンフォギア + - type: English + title: Symphogear + - type: German + title: Symphogear + - type: Spanish + title: Symphogear + - type: French + title: Symphogear + title: Senki Zesshou Symphogear + title_english: Symphogear + title_japanese: 戦姫絶唱シンフォギア + title_synonyms: + - Senhime Zesshou Symphogear + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-01-06T00:00:00+00:00' + to: '2012-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2012 + to: + day: 30 + month: 3 + year: 2012 + string: Jan 6, 2012 to Mar 30, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.08 + scored_by: 48229 + rank: 4770 + popularity: 2000 + members: 129283 + favorites: 1210 + synopsis: |- + Tsubasa Kazanari and Kanade Amou—the idol duo known as Zwei Wing—use their songs to power ancient weapons known as "symphogears" to combat a deadly alien race called the "Noise." While the general public is aware of the Noise's existence, knowledge of the symphogears are kept a secret. When the Noise attack one of Zwei Wing's concerts, Kanade sacrifices herself to protect a young girl named Hibiki Tachibana, leaving Tsubasa devastated and a fragment of her symphogear embedded within Hibiki. + + Two years pass and Hibiki is once again dragged into a Noise attack. While rescuing a young girl who has been left behind during the evacuation, she awakens the power of Kanade's symphogear lying within her. Although Tsubasa still grieves over the loss of Kanade, both girls must now learn to work together using their powers to defend humanity against the Noise. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1679 + type: anime + name: Kinyosha + url: https://myanimelist.net/anime/producer/1679/Kinyosha + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 354 + type: anime + name: Encourage Films + url: https://myanimelist.net/anime/producer/354/Encourage_Films + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 10447 + url: https://myanimelist.net/anime/10447/Aquarion_Evol + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/72743.jpg + small_image_url: https://myanimelist.net/images/anime/6/72743t.jpg + large_image_url: https://myanimelist.net/images/anime/6/72743l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/72743.webp + small_image_url: https://myanimelist.net/images/anime/6/72743t.webp + large_image_url: https://myanimelist.net/images/anime/6/72743l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uZrWpmKaWzs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aquarion Evol + - type: Japanese + title: アクエリオンEVOL + - type: English + title: Aquarion Evol + title: Aquarion Evol + title_english: Aquarion Evol + title_japanese: アクエリオンEVOL + title_synonyms: [] + type: TV + source: Original + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2012-01-09T00:00:00+00:00' + to: '2012-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2012 + to: + day: 25 + month: 6 + year: 2012 + string: Jan 9, 2012 to Jun 25, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.1 + scored_by: 46780 + rank: 4560 + popularity: 2229 + members: 111032 + favorites: 420 + synopsis: 12,000 years after the events in Genesis Aquarion, humans live on the star Vega under constant threat of trans-dimensional + beings called Abductors. These enemies originate from Vega’s sister star Altair and raid Vega for human life. As a + countermeasure, an organization known as Neo-DEAVA formed to combat the Abductors. They pilot advanced mecha suits + called Aquaria and are strictly separated by gender. Boys and girls are not allowed contact; they are even restrained + from fighting on the same battlefield. However, events take a shocking turn when an advanced Abductor mecha suit joins + the fray. Two teenagers, Mikono and Amata, are dragged into the conflict. Unknowingly, Amata performs a taboo when + he summons an Aquaria and initializes what is called the Forbidden Union between male and female Aquaria. Neo-DEAVA + is shocked, and the repercussions of Amata’s actions are much farther reaching than he realizes. How was he able to + summon an Aquaria? Where did he learn to form a Forbidden Union? And why was Mikono also able to pilot the mecha suit? + background: The first two episodes were aired together as a 1 hour special. + season: winter + year: 2012 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 11697 + url: https://myanimelist.net/anime/11697/Area_no_Kishi + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/73987.jpg + small_image_url: https://myanimelist.net/images/anime/6/73987t.jpg + large_image_url: https://myanimelist.net/images/anime/6/73987l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/73987.webp + small_image_url: https://myanimelist.net/images/anime/6/73987t.webp + large_image_url: https://myanimelist.net/images/anime/6/73987l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VSL5LxYsrEw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Area no Kishi + - type: Japanese + title: エリアの騎士 + - type: English + title: The Knight in the Area + title: Area no Kishi + title_english: The Knight in the Area + title_japanese: エリアの騎士 + title_synonyms: [] + type: TV + source: Manga + episodes: 37 + status: Finished Airing + airing: false + aired: + from: '2012-01-07T00:00:00+00:00' + to: '2012-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2012 + to: + day: 29 + month: 9 + year: 2012 + string: Jan 7, 2012 to Sep 29, 2012 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 37257 + rank: 4058 + popularity: 2736 + members: 81185 + favorites: 230 + synopsis: |- + Kakeru and Suguru are brothers who both have a flaming passion for soccer. However, while Suguru becomes a rising star in the Japanese youth soccer system, Kakeru decides to take on a managerial role after struggling on the field. But due to a cruel twist of fate, Kakeru ends up reevaluating the role he has chosen. + + In hopes of one day being able to enter the World Cup by becoming a member of the national team, Kakeru trains harder than anyone else. He isn’t alone in this quest for glory, though. Kakeru's childhood friend, Nana, is a soccer prodigy of her own, with the wicked nickname “Little Witch”. She is a top-ranked player and is already playing for Nadeshiko Japan, the Japanese women’s national team. Nana's success gives Kakeru the extra push he needs to reach for his goals. + + Soccer and adolescent fervor combine for an epic, emotional ride. Check it out for yourself in Area no Kishi! + background: '' + season: winter + year: 2012 + broadcast: + day: Saturdays + time: 06:00 + timezone: Asia/Tokyo + string: Saturdays at 06:00 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: [] + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11227 + url: https://myanimelist.net/anime/11227/Rinne_no_Lagrange + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/50439.jpg + small_image_url: https://myanimelist.net/images/anime/7/50439t.jpg + large_image_url: https://myanimelist.net/images/anime/7/50439l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/50439.webp + small_image_url: https://myanimelist.net/images/anime/7/50439t.webp + large_image_url: https://myanimelist.net/images/anime/7/50439l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-PPSkZoAXU8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rinne no Lagrange + - type: Synonym + title: Flower declaration of your heart + - type: Synonym + title: Lag-Rin + - type: Japanese + title: 輪廻のラグランジェ + - type: English + title: 'Lagrange: The Flower of Rin-ne' + title: Rinne no Lagrange + title_english: 'Lagrange: The Flower of Rin-ne' + title_japanese: 輪廻のラグランジェ + title_synonyms: + - Flower declaration of your heart + - Lag-Rin + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-01-08T00:00:00+00:00' + to: '2012-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2012 + to: + day: 25 + month: 3 + year: 2012 + string: Jan 8, 2012 to Mar 25, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.93 + scored_by: 25553 + rank: 5545 + popularity: 2784 + members: 78792 + favorites: 158 + synopsis: |- + Madoka Kyouno is an energetic girl who is full of passion. As the proud, and only, member of the Kamogawa Girls' High School Jersey Club, she goes around helping people in need. + + Madoka's life is turned upside down when she is suddenly asked by a mysterious girl named Lan to pilot a robot. Motivated by her desire to protect the people and city of Kamogawa, Madoka agrees to pilot the resurrected Vox robot to fight against extraterrestrials that have come to attack Earth. + + (Source: VIZ Media) + background: '' + season: winter + year: 2012 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 8917 + url: https://myanimelist.net/anime/8917/Mouretsu_Pirates + images: + jpg: + image_url: https://myanimelist.net/images/anime/1753/134881.jpg + small_image_url: https://myanimelist.net/images/anime/1753/134881t.jpg + large_image_url: https://myanimelist.net/images/anime/1753/134881l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1753/134881.webp + small_image_url: https://myanimelist.net/images/anime/1753/134881t.webp + large_image_url: https://myanimelist.net/images/anime/1753/134881l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m1Io9UTvJ4Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mouretsu Pirates + - type: Synonym + title: Mouretsu Uchuu Kaizoku + - type: Synonym + title: Miniskirt Pirates + - type: Synonym + title: Moretsu Uchuu Kaizoku + - type: Japanese + title: モーレツ宇宙海賊 + - type: English + title: Bodacious Space Pirates + - type: Spanish + title: Moretsu Pirates + title: Mouretsu Pirates + title_english: Bodacious Space Pirates + title_japanese: モーレツ宇宙海賊 + title_synonyms: + - Mouretsu Uchuu Kaizoku + - Miniskirt Pirates + - Moretsu Uchuu Kaizoku + type: TV + source: Light novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2012-01-08T00:00:00+00:00' + to: '2012-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2012 + to: + day: 1 + month: 7 + year: 2012 + string: Jan 8, 2012 to Jul 1, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 28856 + rank: 4095 + popularity: 2792 + members: 78387 + favorites: 297 + synopsis: |- + Far in the future, where interstellar travel is considered commonplace, high school student Marika Katou balances her duties in the space yacht club and her job as a restaurant waitress. Following a chance encounter with a peculiar pair of customers, Marika meets them again and learns that her absent father has passed away. + + During his life, he was known as the legendary pirate "Gonzaemon." He has left behind his infamous ship Bentenmaru and its crew exclusively for Marika to inherit. With one of the few remaining Letters of Marque that permit legal piracy, Marika must choose whether to stay as a regular student or take up a second life as a high-octane space pirate. + + As Marika ponders her decision, the delicate situation attracts the eyes of various government agencies and the mysterious transfer student Chiaki Kurihara, all eager to see if the upcoming captain lives up to her father's reputation. If the crew of the Bentenmaru want to maintain their status, they will need to set sail into the vast expanse of space and once again become a name to be feared. + + [Written by MAL Rewrite] + background: Mouretsu Pirates won the 44th Seiun Award for Best Media in 2013. The series was released on Blu-ray and + DVD by Sentai Filmworks from January 8, 2013 to March 5, 2013. The company later republished the anime as a complete + collection in the same formats on October 7, 2014. + season: winter + year: 2012 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 11371 + url: https://myanimelist.net/anime/11371/Shin_Tennis_no_Oujisama + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/33591.jpg + small_image_url: https://myanimelist.net/images/anime/10/33591t.jpg + large_image_url: https://myanimelist.net/images/anime/10/33591l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/33591.webp + small_image_url: https://myanimelist.net/images/anime/10/33591t.webp + large_image_url: https://myanimelist.net/images/anime/10/33591l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shin Tennis no Oujisama + - type: Synonym + title: New Prince of Tennis + - type: Japanese + title: 新テニスの王子様 + - type: English + title: The Prince of Tennis II + - type: German + title: The Prince of Tennis II + - type: Spanish + title: Shin Tennis no Ōji-sama + - type: French + title: The Prince of Tennis II + title: Shin Tennis no Oujisama + title_english: The Prince of Tennis II + title_japanese: 新テニスの王子様 + title_synonyms: + - New Prince of Tennis + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-01-05T00:00:00+00:00' + to: '2012-03-29T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2012 + to: + day: 29 + month: 3 + year: 2012 + string: Jan 5, 2012 to Mar 29, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 33173 + rank: 2030 + popularity: 3028 + members: 68407 + favorites: 205 + synopsis: |- + Ryouma Echizen is one of 50 nationally ranked middle school tennis players to receive an invitation for the Japan U-17 tennis training camp. Previously open only to high school players, the exclusive regiment trains the best players in the country for the upcoming U-17 World Cup. The high schoolers are not pleased that these middle schoolers are allowed into the camp, but the middle schoolers easily overwhelm them before they are halted by the coaches. + + The rules of the camp are soon explained: the players are split into one of 16 courts based on skill, with the best players occupying Court 1. Players move up and down courts based on "shuffle matches" that occur before practice begins each day. In anticipation of a game, the middle schoolers are asked to pair up with one another, only to find out that they would not be playing doubles with their partners. Instead, they are pitted against each other in a tiebreaker-style game. The winner of the match would be allowed to stay to further develop their skills whereas the loser would be sent home. + + For the sake of tennis, friendships and camaraderie are all put on the line. As the fierce competition between the middle and high schoolers persists, the situations they find themselves in goes deeper than just playing to remain in the camp. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2012 + broadcast: + day: Thursdays + time: 01:50 + timezone: Asia/Tokyo + string: Thursdays at 01:50 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 463 + type: anime + name: M.S.C + url: https://myanimelist.net/anime/producer/463/MSC + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11209 + url: https://myanimelist.net/anime/11209/Maken-Ki_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/36929.jpg + small_image_url: https://myanimelist.net/images/anime/7/36929t.jpg + large_image_url: https://myanimelist.net/images/anime/7/36929l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/36929.webp + small_image_url: https://myanimelist.net/images/anime/7/36929t.webp + large_image_url: https://myanimelist.net/images/anime/7/36929l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0vCfUggh7Tg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maken-Ki! OVA + - type: Synonym + title: Natsu Da! Mizugi Da! Gasshuku Da! + - type: Synonym + title: It's Summer! It's Swimsuits! It's Training Camp! + - type: Synonym + title: Takeru Nyotaika!? Minami no Shima de Supoon + - type: Synonym + title: 'Maken-ki! Two: Takeru Nyotaika!? Minami no Shima de Supoon' + - type: Japanese + title: マケン姫っ! OVA + title: Maken-Ki! OVA + title_english: null + title_japanese: マケン姫っ! OVA + title_synonyms: + - Natsu Da! Mizugi Da! Gasshuku Da! + - It's Summer! It's Swimsuits! It's Training Camp! + - Takeru Nyotaika!? Minami no Shima de Supoon + - 'Maken-ki! Two: Takeru Nyotaika!? Minami no Shima de Supoon' + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2012-03-01T00:00:00+00:00' + to: '2013-09-25T00:00:00+00:00' + prop: + from: + day: 1 + month: 3 + year: 2012 + to: + day: 25 + month: 9 + year: 2013 + string: Mar 1, 2012 to Sep 25, 2013 + duration: 26 min per ep + rating: R+ - Mild Nudity + score: 6.6 + scored_by: 31172 + rank: 7549 + popularity: 3054 + members: 67455 + favorites: 50 + synopsis: OVA episodes bundled with the 8th and 11th volumes of the manga. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + - mal_id: 83 + type: anime + name: AIC Spirits + url: https://myanimelist.net/anime/producer/83/AIC_Spirits + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 10638 + url: https://myanimelist.net/anime/10638/Denpa_Onna_to_Seishun_Otoko__Mayonaka_no_Taiyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/36709.jpg + small_image_url: https://myanimelist.net/images/anime/3/36709t.jpg + large_image_url: https://myanimelist.net/images/anime/3/36709l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/36709.webp + small_image_url: https://myanimelist.net/images/anime/3/36709t.webp + large_image_url: https://myanimelist.net/images/anime/3/36709l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Denpa Onna to Seishun Otoko: Mayonaka no Taiyou' + - type: Synonym + title: Denpa Onna to Seishun Otoko Episode 13 + - type: Synonym + title: Electromagnetic Wave Woman and Adolescent Man Special + - type: Japanese + title: 電波女と青春男 真夜中の太陽 + - type: English + title: Ground Control to Psychoelectric Girl Special + title: 'Denpa Onna to Seishun Otoko: Mayonaka no Taiyou' + title_english: Ground Control to Psychoelectric Girl Special + title_japanese: 電波女と青春男 真夜中の太陽 + title_synonyms: + - Denpa Onna to Seishun Otoko Episode 13 + - Electromagnetic Wave Woman and Adolescent Man Special + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-02-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 2 + year: 2012 + to: + day: null + month: null + year: null + string: Feb 8, 2012 + duration: 29 min + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 34523 + rank: 3472 + popularity: 3129 + members: 64672 + favorites: 43 + synopsis: "Makoto goes to the summer festival with Ryuuko. Afterwards, as promised, he meets up with Erio in an old\ + \ temple to look at the stars. As they watch the Perseid meteor shower, Yashiro appears to declare that she will leave\ + \ but not before showing her esper powers. She tells Makoto to step back, and shortly afterwards a meteorite falls\ + \ in the exact spot where he was previously standing, destroying the torii. He is left with just a small injury and\ + \ becomes bewildered wondering if Yashiro was actually an esper and/or an alien and that he can't say for sure that\ + \ aliens and espers are unreal. \n\n(Source: Wikipedia)" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 11813 + url: https://myanimelist.net/anime/11813/Shijou_Saikyou_no_Deshi_Kenichi_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1125/102421.jpg + small_image_url: https://myanimelist.net/images/anime/1125/102421t.jpg + large_image_url: https://myanimelist.net/images/anime/1125/102421l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1125/102421.webp + small_image_url: https://myanimelist.net/images/anime/1125/102421t.webp + large_image_url: https://myanimelist.net/images/anime/1125/102421l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/N7Y_Ea8eT5A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shijou Saikyou no Deshi Kenichi OVA + - type: Synonym + title: History's Strongest Disciple Kenichi OVA + - type: Synonym + title: 'Shijou Saikyou no Deshi Kenichi: Yami no Shuugeki' + - type: Japanese + title: 史上最強の弟子 ケンイチ OVA + - type: English + title: 'KenIchi: The Mightiest Disciple OVA' + title: Shijou Saikyou no Deshi Kenichi OVA + title_english: 'KenIchi: The Mightiest Disciple OVA' + title_japanese: 史上最強の弟子 ケンイチ OVA + title_synonyms: + - History's Strongest Disciple Kenichi OVA + - 'Shijou Saikyou no Deshi Kenichi: Yami no Shuugeki' + type: OVA + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2012-03-14T00:00:00+00:00' + to: '2014-05-16T00:00:00+00:00' + prop: + from: + day: 14 + month: 3 + year: 2012 + to: + day: 16 + month: 5 + year: 2014 + string: Mar 14, 2012 to May 16, 2014 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.89 + scored_by: 30831 + rank: 972 + popularity: 3190 + members: 62694 + favorites: 121 + synopsis: OVAs of History's Strongest Disciple Kenichi bundled with volumes 46, 47, 49, 53, 54, 55, & 56 of the + manga. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/10-2012-spring.yaml b/test/fixtures/jikan/season_matrix/10-2012-spring.yaml new file mode 100644 index 0000000..0808d23 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/10-2012-spring.yaml @@ -0,0 +1,3384 @@ +metadata: + captured_at: '2026-05-11T11:32:44Z' + label: 2012-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2012/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:44 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:1a277bfbec15063cecc3bba7065bf25ad3e06787 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 8 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 195 + per_page: 25 + data: + - mal_id: 12189 + url: https://myanimelist.net/anime/12189/Hyouka + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/50521.jpg + small_image_url: https://myanimelist.net/images/anime/13/50521t.jpg + large_image_url: https://myanimelist.net/images/anime/13/50521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/50521.webp + small_image_url: https://myanimelist.net/images/anime/13/50521t.webp + large_image_url: https://myanimelist.net/images/anime/13/50521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/N5nNKAVB4O4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hyouka + - type: Synonym + title: Hyou-ka + - type: Synonym + title: 'Hyouka: You can''t escape' + - type: Synonym + title: 'Hyou-ka: You can''t escape' + - type: Synonym + title: Hyoka + - type: Japanese + title: 氷菓 + - type: English + title: Hyouka + title: Hyouka + title_english: Hyouka + title_japanese: 氷菓 + title_synonyms: + - Hyou-ka + - 'Hyouka: You can''t escape' + - 'Hyou-ka: You can''t escape' + - Hyoka + type: TV + source: Novel + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2012-04-23T00:00:00+00:00' + to: '2012-09-17T00:00:00+00:00' + prop: + from: + day: 23 + month: 4 + year: 2012 + to: + day: 17 + month: 9 + year: 2012 + string: Apr 23, 2012 to Sep 17, 2012 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 690490 + rank: 670 + popularity: 100 + members: 1479943 + favorites: 28199 + synopsis: |- + High school freshman Houtarou Oreki has but one goal: to lead a gray life while conserving as much energy as he can. Unfortunately, his peaceful days come to an end when his older sister, Tomoe, forces him to save the memberless Classics Club from disbandment. + + Luckily, Oreki's predicament seems to be over when he heads to the clubroom and discovers that his fellow first-year, Eru Chitanda, has already become a member. However, despite his obligation being fulfilled, Oreki finds himself entangled by Chitanda's curious and bubbly personality, soon joining the club of his own volition. + + Soon enough, the club's membership grows to four, as Oreki's friends Satoshi Fukube and Mayaka Ibara join. Driven by Chitanda's insatiable curiosity, the members of the Classics Club solve the trivial yet intriguing mysteries that permeate their daily lives. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 665 + type: anime + name: chara-ani.com + url: https://myanimelist.net/anime/producer/665/chara-anicom + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11771 + url: https://myanimelist.net/anime/11771/Kuroko_no_Basket + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/50453.jpg + small_image_url: https://myanimelist.net/images/anime/11/50453t.jpg + large_image_url: https://myanimelist.net/images/anime/11/50453l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/50453.webp + small_image_url: https://myanimelist.net/images/anime/11/50453t.webp + large_image_url: https://myanimelist.net/images/anime/11/50453l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FTUIs_SuQfw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroko no Basket + - type: Synonym + title: Kuroko no Basuke + - type: Synonym + title: KuroBas + - type: Synonym + title: The Basketball Which Kuroko Plays + - type: Japanese + title: 黒子のバスケ + - type: English + title: Kuroko's Basketball + - type: German + title: Kuroko’s Basketball + - type: French + title: Kuroko's Basket + title: Kuroko no Basket + title_english: Kuroko's Basketball + title_japanese: 黒子のバスケ + title_synonyms: + - Kuroko no Basuke + - KuroBas + - The Basketball Which Kuroko Plays + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2012-04-08T00:00:00+00:00' + to: '2012-09-22T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2012 + to: + day: 22 + month: 9 + year: 2012 + string: Apr 8, 2012 to Sep 22, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.04 + scored_by: 773049 + rank: 695 + popularity: 121 + members: 1313362 + favorites: 21765 + synopsis: |- + For the last three years, Teikou Middle School has dominated the national basketball scene with its legendary lineup: the "Generation of Miracles." It consisted of five prodigies who excelled at the sport, but a "Phantom Sixth Man" lurked in the shadows and helped earn the team their revered status. Eventually, their monstrous growth jaded them from the sport they loved and made them go their separate ways in high school. + + In search of new members, the Seirin High School basketball team recruits Taiga Kagami and Tetsuya Kuroko, two freshmen who seem to have significant differences in abilities. Having returned recently from America, Kagami has both a natural aptitude and relentless love for the sport. Meanwhile, Kuroko lacks presence and exhibits no outstanding athletic talent. However, it is later revealed that he is Teikou's Phantom Sixth Man—the player once part of the Generation of Miracles. + + Kuroko wants to prove to the Seirin team that he is strong in his own way. Seeing his conviction, Kagami forms a dynamic partnership with Kuroko, the latter promising to support Kagami's "light" as his "shadow." Alongside their new Seirin teammates, they aim to conquer the upcoming Interhigh championship, but the reappearance of Kuroko's former teammates complicates their plan. + + [Written by MAL Rewrite] + background: Kuroko no Basket also has a series of light novels, audio CDs, and several games for the Nintendo 3DS. Kuroko + also appears in the crossover fighting game J-Stars Victory VS. + season: spring + year: 2012 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11741 + url: https://myanimelist.net/anime/11741/Fate_Zero_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1522/117645.jpg + small_image_url: https://myanimelist.net/images/anime/1522/117645t.jpg + large_image_url: https://myanimelist.net/images/anime/1522/117645l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1522/117645.webp + small_image_url: https://myanimelist.net/images/anime/1522/117645t.webp + large_image_url: https://myanimelist.net/images/anime/1522/117645l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A8D2db4PFN0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/Zero 2nd Season + - type: Synonym + title: Fate/Zero Second Season + - type: Japanese + title: フェイト/ゼロ 2ndシーズン + - type: English + title: Fate/Zero Season 2 + - type: German + title: Fate/Zero Staffel 2 + - type: Spanish + title: Fate/Zero Temporada 2 + - type: French + title: Fate Zero Saison 2 + title: Fate/Zero 2nd Season + title_english: Fate/Zero Season 2 + title_japanese: フェイト/ゼロ 2ndシーズン + title_synonyms: + - Fate/Zero Second Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-08T00:00:00+00:00' + to: '2012-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2012 + to: + day: 24 + month: 6 + year: 2012 + string: Apr 8, 2012 to Jun 24, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.54 + scored_by: 757734 + rank: 140 + popularity: 140 + members: 1196684 + favorites: 20697 + synopsis: |- + As the Fourth Holy Grail War rages on with no clear victor in sight, the remaining Servants and their Masters are called upon by Church supervisor Risei Kotomine, in order to band together and confront an impending threat that could unravel the Grail War and bring about the destruction of Fuyuki City. The uneasy truce soon collapses as Masters demonstrate that they will do anything in their power, no matter how despicable, to win. + + Seeds of doubt are sown between Kiritsugu Emiya and Saber, his Servant, as their conflicting ideologies on heroism and chivalry clash. Meanwhile, an ominous bond forms between Kirei Kotomine, who still seeks to find his purpose in life, and one of the remaining Servants. As the countdown to the end of the war reaches zero, the cost of winning begins to blur the line between victory and defeat. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 701 + type: anime + name: Seikaisha + url: https://myanimelist.net/anime/producer/701/Seikaisha + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 11759 + url: https://myanimelist.net/anime/11759/Accel_World + images: + jpg: + image_url: https://myanimelist.net/images/anime/1002/135430.jpg + small_image_url: https://myanimelist.net/images/anime/1002/135430t.jpg + large_image_url: https://myanimelist.net/images/anime/1002/135430l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1002/135430.webp + small_image_url: https://myanimelist.net/images/anime/1002/135430t.webp + large_image_url: https://myanimelist.net/images/anime/1002/135430l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Le80O3zYr0U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Accel World + - type: Synonym + title: Accelerated World + - type: Japanese + title: アクセル・ワールド + - type: English + title: Accel World + title: Accel World + title_english: Accel World + title_japanese: アクセル・ワールド + title_synonyms: + - Accelerated World + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2012-04-07T00:00:00+00:00' + to: '2012-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2012 + to: + day: 22 + month: 9 + year: 2012 + string: Apr 7, 2012 to Sep 22, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 401866 + rank: 3926 + popularity: 310 + members: 746335 + favorites: 3932 + synopsis: |- + Haruyuki Arita is an overweight, bullied middle schooler who finds solace in playing online games. But his life takes a drastic turn one day, when he finds that all his high scores have been topped by Kuroyukihime, the popular vice president of the student council. She then invites him to the student lounge and introduces him to "Brain Burst," a program which allows the users to accelerate their brain waves to the point where time seems to stop. Brain Burst also functions as an augmented reality fighting game, and in order to get more points to accelerate, users must win duels against other players. However, if a user loses all their points, they will also lose access to Brain Burst forever. + + Kuroyukihime explains that she chose to show Haruyuki the program because she needs his help. She wants to meet the creator of Brain Burst and uncover the reason of why it was created, but that's easier said than done; to do so, she must defeat the "Six Kings of Pure Color," powerful faction leaders within the game, and reach level 10, the highest level attainable. After the girl helps Haruyuki overcome the bullies that torment him, he vows to help her realize her goal, and so begins the duo's fight to reach the top. + + [Written by MAL Rewrite] + background: Accel World adapts the first 4 novels of Reki Kawahara's light novel series of the same title, as well as + content from the 10th novel. + season: spring + year: 2012 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 11499 + url: https://myanimelist.net/anime/11499/Sankarea + images: + jpg: + image_url: https://myanimelist.net/images/anime/1487/95651.jpg + small_image_url: https://myanimelist.net/images/anime/1487/95651t.jpg + large_image_url: https://myanimelist.net/images/anime/1487/95651l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1487/95651.webp + small_image_url: https://myanimelist.net/images/anime/1487/95651t.webp + large_image_url: https://myanimelist.net/images/anime/1487/95651l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oNO0-pn2_Xk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sankarea + - type: Japanese + title: さんかれあ + - type: English + title: 'Sankarea: Undying Love' + - type: German + title: 'Sankarea: Undying Love' + title: Sankarea + title_english: 'Sankarea: Undying Love' + title_japanese: さんかれあ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-06T00:00:00+00:00' + to: '2012-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2012 + to: + day: 29 + month: 6 + year: 2012 + string: Apr 6, 2012 to Jun 29, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.27 + scored_by: 333544 + rank: 3506 + popularity: 370 + members: 661976 + favorites: 2900 + synopsis: "Ever since he was a child, zombie-obsessed Chihiro Furuya has wanted an undead girlfriend. Soon enough, his\ + \ love for all things zombie comes in handy when his cat Baabu gets run over, prompting Chihiro to try to make a resurrection\ + \ potion and bring him back to life. During his endeavor, he sees a rich girl named Rea Sanka yelling into an old\ + \ well every day about her oppressive life. After meeting and bonding with her, Chihiro is convinced by Rea to persevere\ + \ in saving Baabu. Eventually, he succeeds with the help of the poisonous hydrangea flowers from Rea's family garden.\n\ + \nUnaware of the potion's success and seeking to escape the burdens of her life, Rea drinks the resurrection potion,\ + \ mistakenly thinking she will die. Though it doesn't kill her, the effects still linger and her death from a fatal\ + \ accident causes her to be reborn as a zombie. With help from Chihiro, Rea strives to adjust to her new—albeit undead—life.\ + \ \n\nFor a boy wanting a zombie girlfriend, this situation would seem like a dream come true. But in Sankarea, Chihiro's\ + \ life becomes stranger than usual as he deals with Rea's odd new cravings and the unforeseen consequences of her\ + \ transformation.\n\n[Written by MAL Rewrite]" + background: The initial English DVD and Blu-Ray releases were edited for content, but customers were allowed to exchange + it for an uncensored version later on. + season: spring + year: 2012 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12445 + url: https://myanimelist.net/anime/12445/Tasogare_Otome_x_Amnesia + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/64435.jpg + small_image_url: https://myanimelist.net/images/anime/12/64435t.jpg + large_image_url: https://myanimelist.net/images/anime/12/64435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/64435.webp + small_image_url: https://myanimelist.net/images/anime/12/64435t.webp + large_image_url: https://myanimelist.net/images/anime/12/64435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Eh0_IUwRTnA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tasogare Otome x Amnesia + - type: Synonym + title: Tasogare Otome x Amnesia + - type: Japanese + title: 黄昏乙女×アムネジア + - type: English + title: Dusk Maiden of Amnesia + - type: German + title: Dusk Maiden of Amnesia + - type: Spanish + title: Dusk Maiden of Amnesia + - type: French + title: Dusk Maiden of Amnesia + title: Tasogare Otome x Amnesia + title_english: Dusk Maiden of Amnesia + title_japanese: 黄昏乙女×アムネジア + title_synonyms: + - Tasogare Otome x Amnesia + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-09T00:00:00+00:00' + to: '2012-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2012 + to: + day: 25 + month: 6 + year: 2012 + string: Apr 9, 2012 to Jun 25, 2012 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.82 + scored_by: 205261 + rank: 1139 + popularity: 591 + members: 450013 + favorites: 4916 + synopsis: |- + Seikyou Private Academy, built on the intrigue of traditional occult myths, bears a dark past—for 60 years, it has been haunted by a ghost known as Yuuko, a young woman who mysteriously died in the basement of the old school building. With no memory of her life or death, Yuuko discreetly finds and heads the Paranormal Investigations Club in search of answers. + + A chance meeting leads Yuuko to cling to diligent freshman Teiichi Niiya, who can see the quirky ghost. They quickly grow close, and he decides to help her. Along with Kirie Kanoe, Yuuko's relative, and the oblivious second year Momoe Okonogi, they delve deep into the infamous Seven Mysteries of the storied school. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12531 + url: https://myanimelist.net/anime/12531/Sakamichi_no_Apollon + images: + jpg: + image_url: https://myanimelist.net/images/anime/1604/98654.jpg + small_image_url: https://myanimelist.net/images/anime/1604/98654t.jpg + large_image_url: https://myanimelist.net/images/anime/1604/98654l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1604/98654.webp + small_image_url: https://myanimelist.net/images/anime/1604/98654t.webp + large_image_url: https://myanimelist.net/images/anime/1604/98654l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fpJSOUCSWGI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakamichi no Apollon + - type: Synonym + title: Sakamichi no Aporon + - type: Synonym + title: Apollo on the Slope + - type: Japanese + title: 坂道のアポロン + - type: English + title: Kids on the Slope + - type: German + title: Kids on the Slope + - type: Spanish + title: Kids on the Slope + - type: French + title: Kids on the Slope + title: Sakamichi no Apollon + title_english: Kids on the Slope + title_japanese: 坂道のアポロン + title_synonyms: + - Sakamichi no Aporon + - Apollo on the Slope + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-13T00:00:00+00:00' + to: '2012-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2012 + to: + day: 29 + month: 6 + year: 2012 + string: Apr 13, 2012 to Jun 29, 2012 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 182915 + rank: 338 + popularity: 648 + members: 416215 + favorites: 7345 + synopsis: |- + Introverted classical pianist and top student Kaoru Nishimi has just arrived in Kyushu for his first year of high school. Having constantly moved from place to place since his childhood, he abandons all hope of fitting in, preparing himself for another lonely, meaningless year. That is, until he encounters the notorious delinquent Sentarou Kawabuchi. + + Sentarou's immeasurable love for jazz music inspires Kaoru to learn more about the genre, and as a result, he slowly starts to break out of his shell, making his very first friend. Kaoru begins playing the piano at after-school jazz sessions, located in the basement of fellow student Ritsuko Mukae's family-owned record shop. As he discovers the immense joy of using his musical talents to bring enjoyment to himself and others, Kaoru's summer might just crescendo into one that he will remember forever. + + Sakamichi no Apollon is a heartwarming story of friendship, music, and love that follows three unique individuals brought together by their mutual appreciation for jazz. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 12413 + url: https://myanimelist.net/anime/12413/Jormungand + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/73280.jpg + small_image_url: https://myanimelist.net/images/anime/11/73280t.jpg + large_image_url: https://myanimelist.net/images/anime/11/73280l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/73280.webp + small_image_url: https://myanimelist.net/images/anime/11/73280t.webp + large_image_url: https://myanimelist.net/images/anime/11/73280l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vICtI_aYz4I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jormungand + - type: Japanese + title: ヨルムンガンド + - type: English + title: Jormungand + title: Jormungand + title_english: Jormungand + title_japanese: ヨルムンガンド + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-11T00:00:00+00:00' + to: '2012-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2012 + to: + day: 27 + month: 6 + year: 2012 + string: Apr 11, 2012 to Jun 27, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.79 + scored_by: 163525 + rank: 1206 + popularity: 681 + members: 397955 + favorites: 3309 + synopsis: |- + Brought up in a conflict-ridden environment, child soldier Jonathan "Jonah" Mar hates weapons and those who deal them. But when Koko Hekmatyar, an international arms dealer, takes on Jonah as one of her bodyguards, he has little choice but to take up arms. Along with Koko's other bodyguards, composed mostly of former special-ops soldiers, Jonah is now tasked with protecting Koko and her overly idealistic goal of world peace from the countless dangers that come from her line of work. + + Jormungand follows Koko, Jonah, and the rest of crew as they travel the world selling weapons under the international shipping company HCLI. As Koko's work is illegal under international law, she is forced to constantly sidestep both local and international authorities while doing business with armies, private militaries, and militias. With the CIA always hot on her trail, and assassins around every corner, Jonah and the crew must guard Koko and her dream of world peace with their lives or die trying. + + [Written by MAL Rewrite] + background: Jormungand was released on Blu-ray and DVD in six volumes from June 27, 2012, to November 28, 2012. + season: spring + year: 2012 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 10790 + url: https://myanimelist.net/anime/10790/Kore_wa_Zombie_desu_ka_of_the_Dead + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/37451.jpg + small_image_url: https://myanimelist.net/images/anime/4/37451t.jpg + large_image_url: https://myanimelist.net/images/anime/4/37451l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/37451.webp + small_image_url: https://myanimelist.net/images/anime/4/37451t.webp + large_image_url: https://myanimelist.net/images/anime/4/37451l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/n0fxucDfq6Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kore wa Zombie desu ka? of the Dead + - type: Synonym + title: Kore wa Zombie Desu ka? 2 + - type: Synonym + title: Koreha Zombie Desu ka? Jigokuhen + - type: Synonym + title: Kore ha Zombie Desu ka? Jigokuhen + - type: Synonym + title: Kore wa Zombie Desu ka? Jigokuhen + - type: Synonym + title: Kore wa Zombie Desuka? of the Dead + - type: Japanese + title: これはゾンビですか? OF THE DEAD + - type: English + title: Is This a Zombie? of the Dead + title: Kore wa Zombie desu ka? of the Dead + title_english: Is This a Zombie? of the Dead + title_japanese: これはゾンビですか? OF THE DEAD + title_synonyms: + - Kore wa Zombie Desu ka? 2 + - Koreha Zombie Desu ka? Jigokuhen + - Kore ha Zombie Desu ka? Jigokuhen + - Kore wa Zombie Desu ka? Jigokuhen + - Kore wa Zombie Desuka? of the Dead + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2012-04-05T00:00:00+00:00' + to: '2012-06-07T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2012 + to: + day: 7 + month: 6 + year: 2012 + string: Apr 5, 2012 to Jun 7, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.47 + scored_by: 224864 + rank: 2377 + popularity: 686 + members: 395339 + favorites: 730 + synopsis: "Aikawa Ayumu was revived as a zombie by the cute necromancer Eucliwood Hellscythe. After the zany, madcap\ + \ adventures in the first season of Is This a Zombie? ended, Ayumu thought his life might finally get back to normal,\ + \ or as normal as it can be for a zombie. However, destiny has other plans for him. Some guys just can't catch a break.\ + \ \n\n(Source: FUNimation)" + background: The first 2 episodes received an early screening at a special event held at Kadokawa Cinema Shinjuku on + January 13, 2012. The regular broadcast started on April 5, 2012. + season: spring + year: 2012 + broadcast: + day: Thursdays + time: 01:00 + timezone: Asia/Tokyo + string: Thursdays at 01:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 11785 + url: https://myanimelist.net/anime/11785/Haiyore_Nyaruko-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/49081.jpg + small_image_url: https://myanimelist.net/images/anime/6/49081t.jpg + large_image_url: https://myanimelist.net/images/anime/6/49081l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/49081.webp + small_image_url: https://myanimelist.net/images/anime/6/49081t.webp + large_image_url: https://myanimelist.net/images/anime/6/49081l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haiyore! Nyaruko-san + - type: Synonym + title: 'Nyarko-san: Another Crawling Chaos' + - type: Synonym + title: Haiyoru! Nyaruko-san + - type: Japanese + title: 這いよれ!ニャル子さん + - type: English + title: 'Nyaruko: Crawling With Love!' + - type: German + title: 'Nyarko-san: Another Crawling Chaos' + - type: French + title: 'Nyarko-san: Another Crawling Chaos' + title: Haiyore! Nyaruko-san + title_english: 'Nyaruko: Crawling With Love!' + title_japanese: 這いよれ!ニャル子さん + title_synonyms: + - 'Nyarko-san: Another Crawling Chaos' + - Haiyoru! Nyaruko-san + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-10T00:00:00+00:00' + to: '2012-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2012 + to: + day: 26 + month: 6 + year: 2012 + string: Apr 10, 2012 to Jun 26, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.97 + scored_by: 158948 + rank: 5277 + popularity: 730 + members: 374990 + favorites: 1360 + synopsis: |- + Mahiro Yasaka is just an ordinary high school student, until one day he is suddenly attacked by a dangerous monster. Just when everything seems to be lost, he is saved by a silver-haired girl named Nyaruko, who claims to be the shape-shifting deity Nyarlathotep from horror author H. P. Lovecraft's Cthulhu Mythos, sent by the Space Defense Agency to Earth. She explains to Mahiro that the creature chasing him was an alien called Nightgaunt, who had planned on abducting and selling him as a slave. + + After rescuing him from the alien, the Lovecraftian deity falls madly in love with Mahiro and forces herself into his household, much to his chagrin. Moreover, they are soon joined by two others from the fictional universe: Cthuko, a girl obsessed with Nyaruko, and Hasuta, a young boy easily mistaken for a beautiful female. Together, the three eccentric aliens protect Mahiro from the various extraterrestrial dangers that threaten both his and Earth's well-being, all the while making his life a living hell. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1579 + type: anime + name: Bulls Eye + url: https://myanimelist.net/anime/producer/1579/Bulls_Eye + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 12467 + url: https://myanimelist.net/anime/12467/Nazo_no_Kanojo_X + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75205.jpg + small_image_url: https://myanimelist.net/images/anime/3/75205t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75205l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75205.webp + small_image_url: https://myanimelist.net/images/anime/3/75205t.webp + large_image_url: https://myanimelist.net/images/anime/3/75205l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/L_E57Hmy_KA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nazo no Kanojo X + - type: Synonym + title: MGX + - type: Synonym + title: NazoKano + - type: Japanese + title: 謎の彼女X + - type: English + title: Mysterious Girlfriend X + - type: German + title: Mysterious Girlfriend X + - type: Spanish + title: 'Nazo no Kanojo X: Mysterious Girlfriend X' + - type: French + title: Mysterious Girlfriend X + title: Nazo no Kanojo X + title_english: Mysterious Girlfriend X + title_japanese: 謎の彼女X + title_synonyms: + - MGX + - NazoKano + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-04-08T00:00:00+00:00' + to: '2012-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2012 + to: + day: 1 + month: 7 + year: 2012 + string: Apr 8, 2012 to Jul 1, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 162967 + rank: 3774 + popularity: 767 + members: 356817 + favorites: 3623 + synopsis: |- + First encounters are always memorable because regardless of the outcome, new experiences are sure to happen. For Akira Tsubaki, a young boy who knows next to nothing about girls, and new transfer student Mikoto Urabe, a mysterious girl who wears a cold facade, their first encounter takes a turn for the romantic. + + Through a series of strange events, Tsubaki suddenly falls in love with Urabe, and together they develop a curious bond. Thus begins the romance and mystery of Urabe, a girl who seems to have a unique way of expressing her emotions. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 12291 + url: https://myanimelist.net/anime/12291/Acchi_Kocchi + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/46489.jpg + small_image_url: https://myanimelist.net/images/anime/5/46489t.jpg + large_image_url: https://myanimelist.net/images/anime/5/46489l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/46489.webp + small_image_url: https://myanimelist.net/images/anime/5/46489t.webp + large_image_url: https://myanimelist.net/images/anime/5/46489l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_-kHGNw6HOw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Acchi Kocchi + - type: Japanese + title: あっちこっち + - type: English + title: Place to Place + title: Acchi Kocchi + title_english: Place to Place + title_japanese: あっちこっち + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-06T00:00:00+00:00' + to: '2012-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2012 + to: + day: 29 + month: 6 + year: 2012 + string: Apr 6, 2012 to Jun 29, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 155363 + rank: 2356 + popularity: 821 + members: 340395 + favorites: 2803 + synopsis: "Feelings may come and go, but true love always remains in the heart. Tsumiki Miniwa is in love with her best\ + \ friend, Io Otonashi. For her, confessing is nearly impossible; but to her friends, they seem to be the perfect match.\ + \ Cute and petite, Tsumiki comes off more as a friend, and Io's attitude toward her is friendlier than toward others.\ + \ Despite the constant teasing and obvious hints that his friends have been dropping, Io always seems to miss the\ + \ signs. \n\nThroughout her everyday school life, Tsumiki spends time with her friends and Io. Will she finally muster\ + \ enough courage to confess her true feelings?\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2012 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + - mal_id: 755 + type: anime + name: Jumondou + url: https://myanimelist.net/anime/producer/755/Jumondou + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11761 + url: https://myanimelist.net/anime/11761/Medaka_Box + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/37947.jpg + small_image_url: https://myanimelist.net/images/anime/13/37947t.jpg + large_image_url: https://myanimelist.net/images/anime/13/37947l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/37947.webp + small_image_url: https://myanimelist.net/images/anime/13/37947t.webp + large_image_url: https://myanimelist.net/images/anime/13/37947l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ssC15TwP8cI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Medaka Box + - type: Japanese + title: めだかボックス + - type: English + title: Medaka Box + title: Medaka Box + title_english: Medaka Box + title_japanese: めだかボックス + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-05T00:00:00+00:00' + to: '2012-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2012 + to: + day: 21 + month: 6 + year: 2012 + string: Apr 5, 2012 to Jun 21, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 115370 + rank: 5025 + popularity: 1011 + members: 278108 + favorites: 510 + synopsis: "Medaka Kurokami is, in the truest sense of the word, perfect. Beautiful, intelligent, and athletic, Medaka's\ + \ dream is to make others happy. So when she runs for Student Council President of the prestigious Hakoniwa Academy,\ + \ winning the election with 98% of the votes is only to be expected. \n\nThe very first thing the boisterous new president\ + \ does is set up the \"Medaka Box,\" a suggestion box allowing students to submit any kind of request for assistance.\ + \ Together with the cynical Zenkichi Hitoyoshi, her childhood friend who has been strong-armed into helping, Medaka\ + \ fulfills these requests at a ridiculous rate. For every job completed, she adds flowers to the student council room,\ + \ with the aim of filling the entire school. However, the two are about to find out that helping others may be a lot\ + \ harder than they think as they begin to uncover a devastating plan centering on the academy and even Medaka herself!\n\ + \n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2012 + broadcast: + day: Thursdays + time: 01:50 + timezone: Asia/Tokyo + string: Thursdays at 01:50 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 649 + type: anime + name: Hakoniwa Academy Student Council + url: https://myanimelist.net/anime/producer/649/Hakoniwa_Academy_Student_Council + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 6 + type: anime + name: Gainax + url: https://myanimelist.net/anime/producer/6/Gainax + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12113 + url: https://myanimelist.net/anime/12113/Berserk__Ougon_Jidai-hen_II_-_Doldrey_Kouryaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/37193.jpg + small_image_url: https://myanimelist.net/images/anime/12/37193t.jpg + large_image_url: https://myanimelist.net/images/anime/12/37193l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/37193.webp + small_image_url: https://myanimelist.net/images/anime/12/37193t.webp + large_image_url: https://myanimelist.net/images/anime/12/37193l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0zEbyF6NuAw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Berserk: Ougon Jidai-hen II - Doldrey Kouryaku' + - type: Synonym + title: Berserk Movie + - type: Synonym + title: Berserk Saga + - type: Japanese + title: ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略 + - type: English + title: 'Berserk: The Golden Age Arc II - The Battle for Doldrey' + - type: German + title: 'Berserk: Das goldene Zeitalter II' + - type: Spanish + title: 'Berserk: La Edad de Oro II. La Batalla de Doldrey' + - type: French + title: 'Berserk: l''Age d''Or Partie II - La Bataille de Doldrey' + title: 'Berserk: Ougon Jidai-hen II - Doldrey Kouryaku' + title_english: 'Berserk: The Golden Age Arc II - The Battle for Doldrey' + title_japanese: ベルセルク 黄金時代篇Ⅱ ドルドレイ攻略 + title_synonyms: + - Berserk Movie + - Berserk Saga + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-06-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 6 + year: 2012 + to: + day: null + month: null + year: null + string: Jun 23, 2012 + duration: 1 hr 32 min + rating: R+ - Mild Nudity + score: 7.88 + scored_by: 148758 + rank: 984 + popularity: 1213 + members: 233598 + favorites: 789 + synopsis: "The Band of the Hawk and their enigmatic leader Griffith continue winning battle after battle as their prestige\ + \ throughout the kingdom of Midland grows. But their latest task is one that has seen failure from everyone who has\ + \ attempted it: the subjugation of the impenetrable fortress of Doldrey. \n\nBut with members like Guts—the captain\ + \ of the Hawks' raiders who can easily fell 100 men with his gigantic sword—such tasks prove to be trivial. However,\ + \ in the aftermath of the battle, Guts decides to leave the Hawks in order to pursue his own dream and bids farewell\ + \ to his companions, despite Griffith's attempts to make him stay. This single event causes Griffith to lose his composure,\ + \ and leads him to make a decision that will alter his and the Hawks' fates forever.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1584 + type: anime + name: Beyond C. + url: https://myanimelist.net/anime/producer/1584/Beyond_C + - mal_id: 1697 + type: anime + name: KDDI + url: https://myanimelist.net/anime/producer/1697/KDDI + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 13 + type: anime + name: Studio 4°C + url: https://myanimelist.net/anime/producer/13/Studio_4%C2%B0C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 12431 + url: https://myanimelist.net/anime/12431/Uchuu_Kyoudai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1290/135694.jpg + small_image_url: https://myanimelist.net/images/anime/1290/135694t.jpg + large_image_url: https://myanimelist.net/images/anime/1290/135694l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1290/135694.webp + small_image_url: https://myanimelist.net/images/anime/1290/135694t.webp + large_image_url: https://myanimelist.net/images/anime/1290/135694l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ciS3fDqT1Vw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchuu Kyoudai + - type: Synonym + title: Uchuu Kyodai + - type: Japanese + title: 宇宙兄弟 + - type: English + title: Space Brothers + - type: German + title: Space Brothers + - type: Spanish + title: 'Uchuu Kyoudai: Space Brothers' + - type: French + title: Space Brothers + title: Uchuu Kyoudai + title_english: Space Brothers + title_japanese: 宇宙兄弟 + title_synonyms: + - Uchuu Kyodai + type: TV + source: Manga + episodes: 99 + status: Finished Airing + airing: false + aired: + from: '2012-04-01T00:00:00+00:00' + to: '2014-03-22T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2012 + to: + day: 22 + month: 3 + year: 2014 + string: Apr 1, 2012 to Mar 22, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.49 + scored_by: 56290 + rank: 173 + popularity: 1325 + members: 211100 + favorites: 3952 + synopsis: |- + On a fateful summer night in 2006, Mutta Nanba and his younger brother Hibito witness what they believe to be a UFO flying toward the Moon. This impressing and unusual phenomenon leads both siblings vowing to become astronauts, with Hibito aiming for the Moon and Mutta, convinced that the eldest brother has to be one step ahead, for Mars. + + Now an adult, life hasn't turned out how Mutta had pictured it: he is diligently working in an automotive company, whereas Hibito is on his way to be the very first Japanese man to step on the Moon. However, after losing his job, Mutta is presented with an unexpected opportunity to catch up to his younger brother when the Japanese Aerospace Exploration Agency, commonly known as JAXA, accepts his application to participate in the next astronaut selection. Despite self-doubts about his prospects, Mutta is unwilling to waste this chance of a lifetime, and thus embarks on an ambitious journey to fulfill the promise made 19 years ago. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Sundays + time: 07:00 + timezone: Asia/Tokyo + string: Sundays at 07:00 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 643 + type: anime + name: Trinity Sound + url: https://myanimelist.net/anime/producer/643/Trinity_Sound + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 11701 + url: https://myanimelist.net/anime/11701/Another__The_Other_-_Inga + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/42051.jpg + small_image_url: https://myanimelist.net/images/anime/9/42051t.jpg + large_image_url: https://myanimelist.net/images/anime/9/42051l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/42051.webp + small_image_url: https://myanimelist.net/images/anime/9/42051t.webp + large_image_url: https://myanimelist.net/images/anime/9/42051l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ogdQAH_YPpQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Another: The Other - Inga' + - type: Synonym + title: Another 00 + - type: Synonym + title: 'Another: The Other -Inga-' + - type: Synonym + title: Another OAD + - type: Synonym + title: Another OVA + - type: Japanese + title: アナザー The Other -因果- + - type: English + title: 'Another: The Other' + title: 'Another: The Other - Inga' + title_english: 'Another: The Other' + title_japanese: アナザー The Other -因果- + title_synonyms: + - Another 00 + - 'Another: The Other -Inga-' + - Another OAD + - Another OVA + type: OVA + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-05-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 5 + year: 2012 + to: + day: null + month: null + year: null + string: May 26, 2012 + duration: 24 min + rating: R - 17+ (violence & profanity) + score: 7.25 + scored_by: 119753 + rank: 3596 + popularity: 1398 + members: 200443 + favorites: 184 + synopsis: |- + Shortly before the start of a new semester, Misaki Fujioka visits her twin sister Mei Misaki in Yomiyama City. The girls make full use of the last days of summer, roaming around a heat-weary town and visiting various places including a shopping center and shooting stall. When they prowl around her basement, Mei expresses uneasiness about her new class, which is said to be cursed. + + Craving more entertainment, the twins decide to pay a visit to the local amusement park. But the leisure of a sleepy summer day could soon turn woeful as Mei sees the color of death on her sister—an unmistakable omen that a tragedy is bound to strike. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 12883 + url: https://myanimelist.net/anime/12883/Tsuritama + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/69909.jpg + small_image_url: https://myanimelist.net/images/anime/4/69909t.jpg + large_image_url: https://myanimelist.net/images/anime/4/69909l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/69909.webp + small_image_url: https://myanimelist.net/images/anime/4/69909t.webp + large_image_url: https://myanimelist.net/images/anime/4/69909l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pn-BDOSDDa4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuritama + - type: Synonym + title: Fishing Ball + - type: Japanese + title: つり球 + - type: English + title: Tsuritama + title: Tsuritama + title_english: Tsuritama + title_japanese: つり球 + title_synonyms: + - Fishing Ball + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-04-13T00:00:00+00:00' + to: '2012-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2012 + to: + day: 29 + month: 6 + year: 2012 + string: Apr 13, 2012 to Jun 29, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 62028 + rank: 1606 + popularity: 1564 + members: 177316 + favorites: 2318 + synopsis: |- + Saving the world... by fishing? + + Yuki Sanada has always felt like a fish out of water. Socially awkward and anxious, he struggles to fit in with his surroundings and moves from town to town with his grandma. As he and his grandma settle into the charming seaside town of Enoshima, Yuki hopes for a fresh start. However, his reputation at school is jeopardized by the arrival of fellow transfer student Haru. The eccentric Haru immediately makes a splash, wildly claiming to be an alien and declaring that Yuki is his friend. Pairing the reluctant Yuki with their classmate and fishing talent, Natsuki Usami, he tasks both of them with the absurd mission of saving the world from a mysterious threat in the ocean. Mischief and hijinks ensue, as these three embark on a whimsical adventure filled with laughs, heart, and self-discovery! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Fridays + time: 01:15 + timezone: Asia/Tokyo + string: Fridays at 01:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 12893 + url: https://myanimelist.net/anime/12893/Danshi_Koukousei_no_Nichijou_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/38527.jpg + small_image_url: https://myanimelist.net/images/anime/8/38527t.jpg + large_image_url: https://myanimelist.net/images/anime/8/38527l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/38527.webp + small_image_url: https://myanimelist.net/images/anime/8/38527t.webp + large_image_url: https://myanimelist.net/images/anime/8/38527l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Danshi Koukousei no Nichijou Specials + - type: Japanese + title: 男子高校生の日常 + - type: English + title: Daily Lives of High School Boys Specials + title: Danshi Koukousei no Nichijou Specials + title_english: Daily Lives of High School Boys Specials + title_japanese: 男子高校生の日常 + title_synonyms: [] + type: Special + source: Web manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2012-04-03T00:00:00+00:00' + to: '2012-09-04T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2012 + to: + day: 4 + month: 9 + year: 2012 + string: Apr 3, 2012 to Sep 4, 2012 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 90482 + rank: 1122 + popularity: 1698 + members: 158613 + favorites: 197 + synopsis: |- + The clueless boys of Sanada North High School never lack a new topic to dissect. Questions about girls are endless, the true meaning of being a man could be hidden in questionable chivalry, and there might be a moral side to silly pranks. With a different predicament always ongoing, the daily lives of high school boys are anything but boring. + + [Written by MAL Rewrite] + background: Each episode of Danshi Koukousei no Nichijou Specials was bundled with one of the six volumes of the Danshi + Koukousei no Nichijou Blu-ray and DVD release. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11837 + url: https://myanimelist.net/anime/11837/Zetman + images: + jpg: + image_url: https://myanimelist.net/images/anime/1955/123132.jpg + small_image_url: https://myanimelist.net/images/anime/1955/123132t.jpg + large_image_url: https://myanimelist.net/images/anime/1955/123132l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1955/123132.webp + small_image_url: https://myanimelist.net/images/anime/1955/123132t.webp + large_image_url: https://myanimelist.net/images/anime/1955/123132l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2POvUa8qpq8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zetman + - type: Japanese + title: ゼットマン + - type: English + title: Zetman + title: Zetman + title_english: Zetman + title_japanese: ゼットマン + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-04-03T00:00:00+00:00' + to: '2012-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2012 + to: + day: 26 + month: 6 + year: 2012 + string: Apr 3, 2012 to Jun 26, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.84 + scored_by: 64738 + rank: 6070 + popularity: 1816 + members: 146058 + favorites: 301 + synopsis: |- + The story starts off with a face-off between two rival heroes, ZET and ALPHAS, and then traces their origins - Jin Kanzaki, a young man with the ability to transform into a superhuman being known as ZET, and Kouga Amagi, a young man with a strong sense of justice who uses technology to fight as ALPHAS. + + The fates of these two men and those around them intertwine as they fight to protect mankind and destroy monstrous abominations known as Players. + + (Source: ytv ENGLISH) + background: '' + season: spring + year: 2012 + broadcast: + day: Tuesdays + time: 02:24 + timezone: Asia/Tokyo + string: Tuesdays at 02:24 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 236 + type: anime + name: YTV + url: https://myanimelist.net/anime/producer/236/YTV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 765 + type: anime + name: Sakura Create + url: https://myanimelist.net/anime/producer/765/Sakura_Create + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 12029 + url: https://myanimelist.net/anime/12029/Uchuu_Senkan_Yamato_2199 + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/36607.jpg + small_image_url: https://myanimelist.net/images/anime/2/36607t.jpg + large_image_url: https://myanimelist.net/images/anime/2/36607l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/36607.webp + small_image_url: https://myanimelist.net/images/anime/2/36607t.webp + large_image_url: https://myanimelist.net/images/anime/2/36607l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/51utm_LNX8E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchuu Senkan Yamato 2199 + - type: Japanese + title: 宇宙戦艦ヤマト2199 + - type: English + title: 'Star Blazers: Space Battleship Yamato 2199' + title: Uchuu Senkan Yamato 2199 + title_english: 'Star Blazers: Space Battleship Yamato 2199' + title_japanese: 宇宙戦艦ヤマト2199 + title_synonyms: [] + type: OVA + source: Original + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2012-05-25T00:00:00+00:00' + to: '2013-10-25T00:00:00+00:00' + prop: + from: + day: 25 + month: 5 + year: 2012 + to: + day: 25 + month: 10 + year: 2013 + string: May 25, 2012 to Oct 25, 2013 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.33 + scored_by: 42223 + rank: 300 + popularity: 2034 + members: 126375 + favorites: 1951 + synopsis: |- + Earth's once green hills and rich blue oceans have been converted into a desolate wasteland by the relentless onslaught of planet bombs from the expansionist Gamilas Empire. By the year 2199, humankind has retreated to the depths of underground cities to escape the radiation. + + However, all hope is not lost, as the distant planet Iscandar offers Earth its final salvation: the Cosmo Reverse System, capable of restoring Earth's irradiated surface. In a desperate bid to retrieve this technology from Iscandar, the Earth Defense Force pours its remaining resources into the Yamato—an innovative, state-of-the-art battleship equipped with an infinite energy Wave Motion Engine. + + From young talent such as Tactical Officer Susumu Kodai to accomplished veterans like Captain Juuzou Okita, the Yamato's crew consists of many individuals, all varying in their experience on the battlefield. But despite their differences, one goal unifies them all: to complete their perilous 168,000 light-year voyage to Iscandar and save humanity from imminent doom. + + [Written by MAL Rewrite] + background: The series will be sold in the same theaters that show the Yamato movies on the same days, i.e. a simultaneous + release. The first two episodes of the TV series (which is the same as the OVA series) were pre-aired on the Family + Gekijou cable and satellite channel on 6th and 7th of April, 2012. The rest of the episodes was aired on MBS & TBS + beginning April 7, 2013. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1571 + type: anime + name: Voyager Entertainment + url: https://myanimelist.net/anime/producer/1571/Voyager_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 12461 + url: https://myanimelist.net/anime/12461/Hiiro_no_Kakera + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/36925.jpg + small_image_url: https://myanimelist.net/images/anime/3/36925t.jpg + large_image_url: https://myanimelist.net/images/anime/3/36925l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/36925.webp + small_image_url: https://myanimelist.net/images/anime/3/36925t.webp + large_image_url: https://myanimelist.net/images/anime/3/36925l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rQLfWZ6XAv4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hiiro no Kakera + - type: Synonym + title: Scarlet Fragment + - type: Synonym + title: 'Hiiro no Kakera: Tamayori Hime Kitan' + - type: Japanese + title: 緋色の欠片 + - type: English + title: 'Hiiro no Kakera: The Tamayori Princess Saga' + - type: Spanish + title: Hiiro No Kakera + - type: French + title: Hiiro No Kakera + title: Hiiro no Kakera + title_english: 'Hiiro no Kakera: The Tamayori Princess Saga' + title_japanese: 緋色の欠片 + title_synonyms: + - Scarlet Fragment + - 'Hiiro no Kakera: Tamayori Hime Kitan' + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-04-01T00:00:00+00:00' + to: '2012-06-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2012 + to: + day: 24 + month: 6 + year: 2012 + string: Apr 1, 2012 to Jun 24, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.71 + scored_by: 48466 + rank: 6857 + popularity: 2138 + members: 119066 + favorites: 419 + synopsis: |- + Gods and ghosts only exist in fairy tales, right? That's the impression that high school girl Tamki Kasuga has before she goes to live with her grandmother in the remote village of Kifumura. After being attacked by strange creatures upon her arrival, she is soon informed that females in her family contain the blood of the Tamayori Princess, who has the responsibility and power of keeping gods and ghosts sealed away so that they can't harm the general public. At first Tamaki has trouble believing this, but having five beautiful young men following her everywhere she goes acting as her guardians goes a long way towards convincing her. + + There's more to this job than Tamaki first realizes, however, and the path that lies ahead of her is fraught with peril and danger. Will she be able to successfully take on the heavy role that has been put on her shoulders? + background: The first episode was pre-aired on March 6, 2012 on YTV. The Japanese voice cast for the main characters + remains unchanged from the original PS2 otome game that the anime is based off of. + season: spring + year: 2012 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 158 + type: anime + name: Kids Station + url: https://myanimelist.net/anime/producer/158/Kids_Station + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 13055 + url: https://myanimelist.net/anime/13055/Sankarea_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/79032.jpg + small_image_url: https://myanimelist.net/images/anime/4/79032t.jpg + large_image_url: https://myanimelist.net/images/anime/4/79032l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/79032.webp + small_image_url: https://myanimelist.net/images/anime/4/79032t.webp + large_image_url: https://myanimelist.net/images/anime/4/79032l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sankarea OVA + - type: Synonym + title: Sankarea Episodes 00 & 14 + - type: Japanese + title: さんかれあ + title: Sankarea OVA + title_english: null + title_japanese: さんかれあ + title_synonyms: + - Sankarea Episodes 00 & 14 + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2012-06-08T00:00:00+00:00' + to: '2012-11-09T00:00:00+00:00' + prop: + from: + day: 8 + month: 6 + year: 2012 + to: + day: 9 + month: 11 + year: 2012 + string: Jun 8, 2012 to Nov 9, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.19 + scored_by: 64136 + rank: 4037 + popularity: 2149 + members: 118134 + favorites: 54 + synopsis: |- + Two OVA episodes are bundled as DVDs with each of volumes 6 and 7 of the manga. + + The first OVA is a prequel story written by the manga's author. Before the beginning of the main story, Rea and Chihiro have already met at a certain place: an outdoor hot-spring bath. + + The second OVA takes place after the series (effectively episode 14). The Furuya family finds a mysterious young girl hiding under the household temple. + background: Episode 13 is bundled with the final blu-ray release. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 10681 + url: https://myanimelist.net/anime/10681/Blood-C__The_Last_Dark + images: + jpg: + image_url: https://myanimelist.net/images/anime/1159/94216.jpg + small_image_url: https://myanimelist.net/images/anime/1159/94216t.jpg + large_image_url: https://myanimelist.net/images/anime/1159/94216l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1159/94216.webp + small_image_url: https://myanimelist.net/images/anime/1159/94216t.webp + large_image_url: https://myanimelist.net/images/anime/1159/94216l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wq86LbbVfek?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Blood-C: The Last Dark' + - type: Synonym + title: Blood-C Movie + - type: Synonym + title: Gekijouban Blood-C + - type: Japanese + title: 劇場版 ブラッドシー ザ ラスト ダーク + - type: English + title: 'Blood-C: The Last Dark' + title: 'Blood-C: The Last Dark' + title_english: 'Blood-C: The Last Dark' + title_japanese: 劇場版 ブラッドシー ザ ラスト ダーク + title_synonyms: + - Blood-C Movie + - Gekijouban Blood-C + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-06-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 6 + year: 2012 + to: + day: null + month: null + year: null + string: Jun 2, 2012 + duration: 1 hr 46 min + rating: R+ - Mild Nudity + score: 7.16 + scored_by: 54762 + rank: 4202 + popularity: 2201 + members: 113002 + favorites: 263 + synopsis: |- + Having escaped the many horrors of her village, Saya Kisaragi vows to hunt down the monster responsible and make him pay with his life. As she tears through flesh and bone for her vendetta, she encounters SIRRUT, a group of ingenious hackers, who enlist Saya to help them defeat a common enemy—someone she knows all too well. + + Unfortunately, the path she follows is paved with tragedy, as once again, Saya faces betrayal at the hands of those she has come to trust. With her back against the wall, the fearsome monster slayer must fight with all her strength and skill if she is to overcome this final mission and exact vengeance. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 12979 + url: https://myanimelist.net/anime/12979/Naruto_SD__Rock_Lee_no_Seishun_Full-Power_Ninden + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/36475.jpg + small_image_url: https://myanimelist.net/images/anime/13/36475t.jpg + large_image_url: https://myanimelist.net/images/anime/13/36475l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/36475.webp + small_image_url: https://myanimelist.net/images/anime/13/36475t.webp + large_image_url: https://myanimelist.net/images/anime/13/36475l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vAuU88KX8EA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Naruto SD: Rock Lee no Seishun Full-Power Ninden' + - type: Japanese + title: ナルトSD ロック・リーの青春フルパワー忍伝 + - type: English + title: 'Naruto Spin-Off: Rock Lee & His Ninja Pals' + - type: Spanish + title: Rock Lee no Seishun Full-Power Ninden + - type: French + title: 'Naruto Spin-Off: Rock Lee & His Ninja Pals' + title: 'Naruto SD: Rock Lee no Seishun Full-Power Ninden' + title_english: 'Naruto Spin-Off: Rock Lee & His Ninja Pals' + title_japanese: ナルトSD ロック・リーの青春フルパワー忍伝 + title_synonyms: [] + type: TV + source: Manga + episodes: 51 + status: Finished Airing + airing: false + aired: + from: '2012-04-03T00:00:00+00:00' + to: '2013-03-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2012 + to: + day: 26 + month: 3 + year: 2013 + string: Apr 3, 2012 to Mar 26, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 53402 + rank: 4096 + popularity: 2280 + members: 107591 + favorites: 319 + synopsis: |- + The competitive shinobi world has proven to be challenging for Rock Lee, who lacks the typically required abilities. To compensate for this handicap, the young ninja tenaciously endures severe training to hone his hand-to-hand combat skills. Whenever necessary, he also resorts to creative fighting techniques. With the constant support of his teammates Neji Hyuuga and Tenten, Lee readily embraces daring adventures as opportunities to advance on his path toward excellence. + + [Written by MAL Rewrite] + background: 'Naruto SD: Rock Lee no Seishun Full-Power Ninden is a Naruto: Shippuuden non-canon spin-off. Unlike the + original series, it is the work of a different author and presents distinctive elements: another main character, a + super-deformed art style, a narrator, and topics or statements that can be difficult to understand even for adults. + The first DVD was released on July 18, 2012. Starting October 1, 2013, the anime was re-broadcasted as a selection + of episodes from the initial series under the title Naruto SD: Rock Lee no Seishun Full-Power Ninden Mou Iccho. It + is also considered that Rock Lee Ocharake Gaiden—a separate feature shown in five installments as a bonus of Naruto + Shippuuden—is essentially Naruto SD: Rock Lee no Seishun Full Power Ninden''s predecessor. As of March 2015, both + dubbed and subtitled English versions have been made available for online streaming in the United States through Hulu + and Neon Alley.' + season: spring + year: 2012 + broadcast: + day: Tuesdays + time: '18:00' + timezone: Asia/Tokyo + string: Tuesdays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12815 + url: https://myanimelist.net/anime/12815/Shirokuma_Cafe + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/75649.jpg + small_image_url: https://myanimelist.net/images/anime/6/75649t.jpg + large_image_url: https://myanimelist.net/images/anime/6/75649l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/75649.webp + small_image_url: https://myanimelist.net/images/anime/6/75649t.webp + large_image_url: https://myanimelist.net/images/anime/6/75649l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-S7sjXk-t1s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shirokuma Cafe + - type: Synonym + title: Polar Bear Café + - type: Synonym + title: Shirokuma Café + - type: Japanese + title: しろくまカフェ + - type: English + title: Polar Bear Cafe + - type: German + title: Poler Bear's Cafe + - type: Spanish + title: 'Shirokuma Cafe: Polar Bear´s Cafe' + title: Shirokuma Cafe + title_english: Polar Bear Cafe + title_japanese: しろくまカフェ + title_synonyms: + - Polar Bear Café + - Shirokuma Café + type: TV + source: Manga + episodes: 50 + status: Finished Airing + airing: false + aired: + from: '2012-04-05T00:00:00+00:00' + to: '2013-03-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2012 + to: + day: 28 + month: 3 + year: 2013 + string: Apr 5, 2012 to Mar 28, 2013 + duration: 24 min per ep + rating: G - All Ages + score: 7.91 + scored_by: 25338 + rank: 920 + popularity: 2355 + members: 102778 + favorites: 1013 + synopsis: |- + Situated near the local zoo and owned by the charismatic polar bear Shirokuma, Shirokuma Cafe is a popular spot for animals and humans alike, allowing them to sit back and relax after a hard day of work. Whether it's a cold beverage or the latest item on his menu, Shirokuma finds joy in being able to serve his customers, often striking up conversations about various subjects. + + Together with the sarcastic Penguin and the clumsy Panda, they form an odd trio who get themselves caught up in all sorts of misadventures with their other friends such as Grizzly, a bar owner, and Sasako, a human who works at the cafe. From dealing with unrequited love, outdoor camping trips, karaoke sessions, and even the secret to brewing delicious coffee, there's always something bound to be happening in Shirokuma Cafe! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2012 + broadcast: + day: Thursdays + time: '17:30' + timezone: Asia/Tokyo + string: Thursdays at 17:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + licensors: [] + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/11-2012-summer.yaml b/test/fixtures/jikan/season_matrix/11-2012-summer.yaml new file mode 100644 index 0000000..6aae305 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/11-2012-summer.yaml @@ -0,0 +1,3295 @@ +metadata: + captured_at: '2026-05-11T11:32:48Z' + label: 2012-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2012/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:47 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:20b3152e070fb3a63f4051d601f45e420d68f626 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 9 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 206 + per_page: 25 + data: + - mal_id: 11757 + url: https://myanimelist.net/anime/11757/Sword_Art_Online + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/39717.jpg + small_image_url: https://myanimelist.net/images/anime/11/39717t.jpg + large_image_url: https://myanimelist.net/images/anime/11/39717l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/39717.webp + small_image_url: https://myanimelist.net/images/anime/11/39717t.webp + large_image_url: https://myanimelist.net/images/anime/11/39717l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6ohYYtxfDCg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sword Art Online + - type: Synonym + title: S.A.O + - type: Synonym + title: SAO + - type: Japanese + title: ソードアート・オンライン + - type: English + title: Sword Art Online + title: Sword Art Online + title_english: Sword Art Online + title_japanese: ソードアート・オンライン + title_synonyms: + - S.A.O + - SAO + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2012-07-08T00:00:00+00:00' + to: '2012-12-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2012 + to: + day: 23 + month: 12 + year: 2012 + string: Jul 8, 2012 to Dec 23, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 2280706 + rank: 3787 + popularity: 7 + members: 3299886 + favorites: 71101 + synopsis: |- + Ever since the release of the innovative NerveGear, gamers from all around the globe have been given the opportunity to experience a completely immersive virtual reality. Sword Art Online (SAO), one of the most recent games on the console, offers a gateway into the wondrous world of Aincrad, a vivid, medieval landscape where users can do anything within the limits of imagination. With the release of this worldwide sensation, gaming has never felt more lifelike. + + However, the idyllic fantasy rapidly becomes a brutal nightmare when SAO's creator traps thousands of players inside the game. The "log-out" function has been removed, with the only method of escape involving beating all of Aincrad's one hundred increasingly difficult levels. Adding to the struggle, any in-game death becomes permanent, ending the player's life in the real world. + + While Kazuto "Kirito" Kirigaya was fortunate enough to be a beta-tester for the game, he quickly finds that despite his advantages, he cannot overcome SAO's challenges alone. Teaming up with Asuna Yuuki and other talented players, Kirito makes an effort to face the seemingly insurmountable trials head-on. But with difficult bosses and threatening dark cults impeding his progress, Kirito finds that such tasks are much easier said than done. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 11887 + url: https://myanimelist.net/anime/11887/Kokoro_Connect + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/39665.jpg + small_image_url: https://myanimelist.net/images/anime/2/39665t.jpg + large_image_url: https://myanimelist.net/images/anime/2/39665l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/39665.webp + small_image_url: https://myanimelist.net/images/anime/2/39665t.webp + large_image_url: https://myanimelist.net/images/anime/2/39665l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MnkqA_PRRhM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kokoro Connect + - type: Synonym + title: Kokoroco + - type: Japanese + title: ココロコネクト + - type: English + title: Kokoro Connect + title: Kokoro Connect + title_english: Kokoro Connect + title_japanese: ココロコネクト + title_synonyms: + - Kokoroco + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-07-08T00:00:00+00:00' + to: '2012-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2012 + to: + day: 30 + month: 9 + year: 2012 + string: Jul 8, 2012 to Sep 30, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 443792 + rank: 1395 + popularity: 236 + members: 889704 + favorites: 7995 + synopsis: "When five students at Yamaboshi Academy realize that there are no clubs where they fit in, they band together\ + \ to form the Student Cultural Society, or \"StuCS\" for short. The club consists of: Taichi Yaegashi, a hardcore\ + \ wrestling fan; Iori Nagase, an indecisive optimist; Himeko Inaba, a calm computer genius; Yui Kiriyama, a petite\ + \ karate practitioner; and Yoshifumi Aoki, the class clown.\n \nOne day, Aoki and Yui experience a strange incident\ + \ when, without warning, they switch bodies for a short period of time. As this supernatural phenomenon continues\ + \ to occur randomly amongst the five friends, they begin to realize that it is not just fun and games. Now forced\ + \ to become closer than ever, they soon discover each other's hidden secrets and emotional scars, which could end\ + \ up tearing the StuCS and their friendship apart.\n\n[Written by MAL Rewrite]" + background: The cast from the Kokoro Connect drama CD reprised their roles in the anime. The anime uses locations in + Yokohama as reference, with cooperation from the Yokohama Film Commission and the Yokohama Gakuen high school. + season: summer + year: 2012 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12355 + url: https://myanimelist.net/anime/12355/Ookami_Kodomo_no_Ame_to_Yuki + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/35721.jpg + small_image_url: https://myanimelist.net/images/anime/9/35721t.jpg + large_image_url: https://myanimelist.net/images/anime/9/35721l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/35721.webp + small_image_url: https://myanimelist.net/images/anime/9/35721t.webp + large_image_url: https://myanimelist.net/images/anime/9/35721l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8xLji7WsW0w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ookami Kodomo no Ame to Yuki + - type: Synonym + title: The Wolf Children Ame and Yuki + - type: Japanese + title: おおかみこどもの雨と雪 + - type: English + title: Wolf Children + - type: German + title: 'Ame & Yuki: Die Wolfskinder' + - type: Spanish + title: 'Wolf Children: Los Niños Lobo' + - type: French + title: 'Les Enfants Loups: Ame & Yuki' + title: Ookami Kodomo no Ame to Yuki + title_english: Wolf Children + title_japanese: おおかみこどもの雨と雪 + title_synonyms: + - The Wolf Children Ame and Yuki + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-07-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 7 + year: 2012 + to: + day: null + month: null + year: null + string: Jul 21, 2012 + duration: 1 hr 57 min + rating: PG-13 - Teens 13 or older + score: 8.56 + scored_by: 486704 + rank: 132 + popularity: 246 + members: 868587 + favorites: 11880 + synopsis: |- + Hana, a hard-working college student, falls in love with a mysterious man who attends one of her classes though he is not an actual student. As it turns out, he is not truly human either. On a full moon night, he transforms, revealing that he is the last werewolf alive. Despite this, Hana's love remains strong, and the two ultimately decide to start a family. + + Hana gives birth to two healthy children—Ame, born during rainfall, and Yuki, born during snowfall—both possessing the ability to turn into wolves, a trait inherited from their father. All too soon, however, the sudden death of her lover devastates Hana's life, leaving her to raise a peculiar family completely on her own. The stress of raising her wild-natured children in a densely populated city, all while keeping their identity a secret, culminates in a decision to move to the countryside, where she hopes Ame and Yuki can live a life free from the judgments of society. Wolf Children is the heartwarming story about the challenges of being a single mother in an unforgiving modern world. + + [Written by MAL Rewrite] + background: 'Ookami Kodomo no Ame to Yuki won the 2013 Japan Academy Prize for Animation of the Year, the 2012 Mainichi + Film Award for Best Animation Film, and the 2013 Animation of the Year award at the Tokyo International Anime Fair. + It won two awards at the Oslo Films from the South festival in Norway: the main award, the Silver Mirror, and the + audience award. It won an Audience Award at 2013 New York International Children''s Film Festival and the 2014 Best + Anime Disc award from Home Media Magazine.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1702 + type: anime + name: Hiroshima Television + url: https://myanimelist.net/anime/producer/1702/Hiroshima_Television + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 555 + type: anime + name: Studio Chizu + url: https://myanimelist.net/anime/producer/555/Studio_Chizu + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: [] + - mal_id: 13161 + url: https://myanimelist.net/anime/13161/Hagure_Yuusha_no_Aesthetica + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/74047.jpg + small_image_url: https://myanimelist.net/images/anime/9/74047t.jpg + large_image_url: https://myanimelist.net/images/anime/9/74047l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/74047.webp + small_image_url: https://myanimelist.net/images/anime/9/74047t.webp + large_image_url: https://myanimelist.net/images/anime/9/74047l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F_-07jXuRYI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hagure Yuusha no Aesthetica + - type: Synonym + title: Hagure Yuusha no Estetica + - type: Japanese + title: はぐれ勇者の鬼畜美学〈エステティカ〉 + - type: English + title: Aesthetica of a Rogue Hero + - type: German + title: Aesthetica of a Rogue Hero + - type: Spanish + title: Aesthetica of a Rogue Hero + - type: French + title: Aesthetica of a Rogue Hero + title: Hagure Yuusha no Aesthetica + title_english: Aesthetica of a Rogue Hero + title_japanese: はぐれ勇者の鬼畜美学〈エステティカ〉 + title_synonyms: + - Hagure Yuusha no Estetica + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 21 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 21, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.69 + scored_by: 233061 + rank: 6993 + popularity: 577 + members: 457904 + favorites: 1215 + synopsis: |- + Since the discovery of Samon Syndrome 30 years ago, thousands of young people have traveled to fantasy worlds, the few returnees managing to keep the special abilities they acquired in those parallel universes. + + Akatsuki Ousawa, known as the "Rogue Hero," discards his peaceful life in the fantasy world Alayzard to face new challenges upon returning to Earth. He comes back with Miu, the daughter of the Demon King he defeated, and is now forced to hide her true identity by having her pose as his little sister. The two soon join Babel, a special school designed for those who have acquired special abilities and magical powers through their journey to a fantasy world. + + Babel was seemingly founded to train young interdimensional travelers and "guide them to the right path for the sake of humanity and themselves," but its true purpose remains unclear to the pseudo-siblings. Will Akatsuki and Miu be able to overcome the hostile, powerful student council and uncover the forces at play behind the scenes? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Fridays + time: '10:30' + timezone: Asia/Tokyo + string: Fridays at 10:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1392 + type: anime + name: Zack Promotion + url: https://myanimelist.net/anime/producer/1392/Zack_Promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 12549 + url: https://myanimelist.net/anime/12549/Dakara_Boku_wa_H_ga_Dekinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/75102.jpg + small_image_url: https://myanimelist.net/images/anime/4/75102t.jpg + large_image_url: https://myanimelist.net/images/anime/4/75102l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/75102.webp + small_image_url: https://myanimelist.net/images/anime/4/75102t.webp + large_image_url: https://myanimelist.net/images/anime/4/75102l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/a7QLbvl5iYU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dakara Boku wa, H ga Dekinai. + - type: Synonym + title: Dakara boku-ha H ga Dekinai. + - type: Synonym + title: Dakara Boku wa + - type: Synonym + title: Ecchi ga Dekinai. + - type: Japanese + title: だから僕は、Hができない。 + - type: English + title: So, I Can't Play H! + - type: German + title: So, I Can't Play H! + - type: Spanish + title: 'Dakara Boku wa, H ga Dekinai: So, I Can''t Play H!' + - type: French + title: So, I Can't Play H! + title: Dakara Boku wa, H ga Dekinai. + title_english: So, I Can't Play H! + title_japanese: だから僕は、Hができない。 + title_synonyms: + - Dakara boku-ha H ga Dekinai. + - Dakara Boku wa + - Ecchi ga Dekinai. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-25T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 25 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 25, 2012 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.53 + scored_by: 222629 + rank: 7962 + popularity: 598 + members: 445843 + favorites: 976 + synopsis: |- + On the surface, Ryousuke Kaga is the token perverted teenager, spending his days ogling women and indulging in erotic reveries. Because of this, Ryousuke is ostracized by his classmates. Only his childhood friend Mina Okura knows that behind his lecherous persona lies a compassionate boy who has sworn to be chivalrous to girls, believing they are treasures that must be protected. + + One fateful day, Ryousuke runs into Lisara Restall, a Soul Reaper hailing from a noble family, whose primary objective in the human realm is to locate a magically potent person known as the One. In order to fuel her movement with magic, she decides to form a provisional contract with Ryousuke: to use his sexual desires as a source of energy. Carrying out this peculiar arrangement with Lisara, Ryousuke encounters many disparate individuals but also learns of the intriguing yet dark secrets surrounding his world. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Fridays + time: '11:00' + timezone: Asia/Tokyo + string: Fridays at 11:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12293 + url: https://myanimelist.net/anime/12293/Campione_Matsurowanu_Kamigami_to_Kamigoroshi_no_Maou + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75662.jpg + small_image_url: https://myanimelist.net/images/anime/13/75662t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75662l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75662.webp + small_image_url: https://myanimelist.net/images/anime/13/75662t.webp + large_image_url: https://myanimelist.net/images/anime/13/75662l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LoqMi86cczY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Campione! Matsurowanu Kamigami to Kamigoroshi no Maou + - type: Synonym + title: 'Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou' + - type: Japanese + title: カンピオーネ! ~まつろわぬ神々と神殺しの魔王~ + - type: English + title: Campione! + - type: German + title: Campione! + - type: Spanish + title: Campione! + - type: French + title: Campione! + title: Campione! Matsurowanu Kamigami to Kamigoroshi no Maou + title_english: Campione! + title_japanese: カンピオーネ! ~まつろわぬ神々と神殺しの魔王~ + title_synonyms: + - 'Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou' + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 28 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 28, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.9 + scored_by: 220809 + rank: 5677 + popularity: 656 + members: 413348 + favorites: 1329 + synopsis: |- + The gods of the world are not myths or legends. They exist, unbeknownst to humans, fighting their battles and laying waste to land and life. People perceive the fights of such "Heretic Gods" as inexplicable natural disasters they cannot escape. + + Sixteen-year-old high school student Godou Kusanagi travels to Italy at the request of his grandfather to return a particular tablet to an acquaintance for safekeeping. Godou does not expect to get drawn into a battle between two Heretic Gods alongside Erica Blandelli, a self-proclaimed witch fighting to protect people. Fortunately, he manages to defeat the god of war in mortal combat and becomes a "Campione"—or "God Slayer"—whose duty is to fight Heretic Gods to save humanity. + + Godou's new status as a Campione attracts a bevy of Gods who wish to challenge him and a band of devout followers—mostly women—who are willing to aid him in his battles. Campione!: Matsurowanu Kamigami to Kamigoroshi no Maou follows Godou as he tackles dueling deities in a conflict between Heaven and Earth. + + [Written by MAL Rewrite] + background: The first episode was streamed on June 28, 2012 during a special event on Nico Nico Douga. The regular TV + broadcast started on July 6, 2012. + season: summer + year: 2012 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1579 + type: anime + name: Bulls Eye + url: https://myanimelist.net/anime/producer/1579/Bulls_Eye + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 13667 + url: https://myanimelist.net/anime/13667/Naruto__Shippuuden_Movie_6_-_Road_to_Ninja + images: + jpg: + image_url: https://myanimelist.net/images/anime/1620/94336.jpg + small_image_url: https://myanimelist.net/images/anime/1620/94336t.jpg + large_image_url: https://myanimelist.net/images/anime/1620/94336l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1620/94336.webp + small_image_url: https://myanimelist.net/images/anime/1620/94336t.webp + large_image_url: https://myanimelist.net/images/anime/1620/94336l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TDpYU8OmD-k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Naruto: Shippuuden Movie 6 - Road to Ninja' + - type: Synonym + title: Naruto Movie 9 + - type: Japanese + title: ROAD TO NINJA NARUTO THE MOVIE + - type: English + title: 'Naruto Shippuden the Movie 6: Road to Ninja' + - type: German + title: 'Naruto Film 6: Road to Ninja' + - type: French + title: 'Naruto Film 6: Road to Ninja' + title: 'Naruto: Shippuuden Movie 6 - Road to Ninja' + title_english: 'Naruto Shippuden the Movie 6: Road to Ninja' + title_japanese: ROAD TO NINJA NARUTO THE MOVIE + title_synonyms: + - Naruto Movie 9 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-07-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 7 + year: 2012 + to: + day: null + month: null + year: null + string: Jul 28, 2012 + duration: 1 hr 49 min + rating: PG-13 - Teens 13 or older + score: 7.69 + scored_by: 226540 + rank: 1498 + popularity: 721 + members: 381185 + favorites: 672 + synopsis: |- + Returning home to Konohagakure, the young ninja celebrate defeating a group of supposed Akatsuki members. Naruto Uzumaki and Sakura Haruno, however, feel differently. Naruto is jealous of his comrades' congratulatory families, wishing for the presence of his own parents. Sakura, on the other hand, is angry at her embarrassing parents, and wishes for no parents at all. The two clash over their opposing ideals, but are faced with a more pressing matter when the masked Madara Uchiha suddenly appears and transports them to an alternate world. + + In this world, Sakura's parents are considered heroes—for they gave their lives to protect Konohagakure from the Nine-Tailed Fox attack 10 years ago. Consequently, Naruto's parents, Minato Namikaze and Kushina Uzumaki, are alive and well. Unable to return home or find the masked Madara, Naruto and Sakura stay in this new world and enjoy the changes they have always longed for. All seems well for the two ninja, until an unexpected threat emerges that pushes Naruto and Sakura to not only fight for the Konohagakure of the alternate world, but also to find a way back to their own. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11933 + url: https://myanimelist.net/anime/11933/Oda_Nobuna_no_Yabou + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/39249.jpg + small_image_url: https://myanimelist.net/images/anime/11/39249t.jpg + large_image_url: https://myanimelist.net/images/anime/11/39249l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/39249.webp + small_image_url: https://myanimelist.net/images/anime/11/39249t.webp + large_image_url: https://myanimelist.net/images/anime/11/39249l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oda Nobuna no Yabou + - type: Synonym + title: Oda Nobuna no Yabou + - type: Japanese + title: 織田信奈の野望 + - type: English + title: The Ambition of Oda Nobuna + - type: German + title: The Ambition of Oda Nobuna + - type: Spanish + title: 'Oda Nobuna no Yabou: The Ambition of Oda Nobuna' + - type: French + title: The Ambition of Oda Nobuna + title: Oda Nobuna no Yabou + title_english: The Ambition of Oda Nobuna + title_japanese: 織田信奈の野望 + title_synonyms: + - Oda Nobuna no Yabou + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-09T00:00:00+00:00' + to: '2012-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2012 + to: + day: 24 + month: 9 + year: 2012 + string: Jul 9, 2012 to Sep 24, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 152685 + rank: 3002 + popularity: 905 + members: 312036 + favorites: 1131 + synopsis: |- + High school student Yoshiharu Sagara wakes up and finds himself in the middle of a raging Sengoku period battle. He is saved by the legendary Hideyoshi Toyotomi, but at the cost of the hero's life. With his dying breath, the warrior pleads for Yoshiharu to become a feudal lord in his place. Now that the course of history has been changed, Yoshiharu pledges to keep the timeline from diverging any further. Yet, after rescuing Nobuna Oda—whom he discovers is actually the fabled Nobunaga Oda's female counterpart—Yoshiharu realizes he has been transported to an alternate reality where most of Japan's historical warlords are now cute girls! + + To set things right and find a way back home, Yoshiharu agrees to become one of Nobuna's retainers and assist her in a conquest of Japan. As Nobuna initiates her campaign, Yoshiharu discovers that the history he learned from playing the video game "Nobunaga's Ambition" allows him to predict future events and turn the tide of war. Using this invaluable gift to aid the Oda clan's beautiful generals, Yoshiharu hopes to help his new lord fulfill her dream and win the hearts of women everywhere. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 12729 + url: https://myanimelist.net/anime/12729/High_School_DxD_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/63561.jpg + small_image_url: https://myanimelist.net/images/anime/13/63561t.jpg + large_image_url: https://myanimelist.net/images/anime/13/63561l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/63561.webp + small_image_url: https://myanimelist.net/images/anime/13/63561t.webp + large_image_url: https://myanimelist.net/images/anime/13/63561l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD OVA + - type: Synonym + title: High School DxD Episodes 13 and 14 + - type: Synonym + title: Highschool DxD OVA + - type: Japanese + title: ハイスクールD×D OVA + title: High School DxD OVA + title_english: null + title_japanese: ハイスクールD×D OVA + title_synonyms: + - High School DxD Episodes 13 and 14 + - Highschool DxD OVA + type: OVA + source: Light novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2012-09-06T00:00:00+00:00' + to: '2013-05-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 9 + year: 2012 + to: + day: 31 + month: 5 + year: 2013 + string: Sep 6, 2012 to May 31, 2013 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.27 + scored_by: 178538 + rank: 3482 + popularity: 914 + members: 308925 + favorites: 581 + synopsis: |- + #1: Oppai, Minorimasu! (Episode 13) + A rumor is going about the school about how girls are disappearing and coming back ill and with their breast size decreased. + + #2: Oppai, Motomemasu! (Episode 14) + While observing how the others do their jobs so they can do theirs better, Issei and Asia go with Rias to see if a coffin is cursed. During the investigation Issei is possessed by an Egyptian magician named Unas, It just so happens that Unas is just as perverted as Issei. Unas will only leave Issei's body if they can release Unas from the curse placed on him by a devil that Unas tried to make his bride. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: [] + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12175 + url: https://myanimelist.net/anime/12175/Koi_to_Senkyo_to_Chocolate + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/42015.jpg + small_image_url: https://myanimelist.net/images/anime/4/42015t.jpg + large_image_url: https://myanimelist.net/images/anime/4/42015l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/42015.webp + small_image_url: https://myanimelist.net/images/anime/4/42015t.webp + large_image_url: https://myanimelist.net/images/anime/4/42015l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mgXiPCiyW6k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koi to Senkyo to Chocolate + - type: Synonym + title: Koichoco + - type: Japanese + title: 恋と選挙とチョコレート + - type: English + title: Love, Election and Chocolate + title: Koi to Senkyo to Chocolate + title_english: Love, Election and Chocolate + title_japanese: 恋と選挙とチョコレート + title_synonyms: + - Koichoco + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 28 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 28, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.97 + scored_by: 108377 + rank: 5282 + popularity: 1055 + members: 266953 + favorites: 483 + synopsis: |- + Yuuki Oojima is a member of his high school's Food Research Club, whose main activity is eating snacks bought with funds allocated to them by the school. However, this peaceful and wasteful lifestyle is under threat as the upcoming student election draws near. Satsuki Shinonome, a major candidate and the head of the department of financial affairs, campaigns on a platform that includes disbanding meritless clubs such as the Food Research Club and redirecting their budgets to proper ones. + + Understandably, the Food Research Club is in an uproar over this development, with president Chisato Sumiyoshi vowing to preserve it. But what can they even do to stop the highly competent and popular Satsuki from getting elected? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12031 + url: https://myanimelist.net/anime/12031/Kingdom + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/39511.jpg + small_image_url: https://myanimelist.net/images/anime/13/39511t.jpg + large_image_url: https://myanimelist.net/images/anime/13/39511l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/39511.webp + small_image_url: https://myanimelist.net/images/anime/13/39511t.webp + large_image_url: https://myanimelist.net/images/anime/13/39511l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eRsUX5ac56g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kingdom + - type: Japanese + title: キングダム + - type: English + title: Kingdom + title: Kingdom + title_english: Kingdom + title_japanese: キングダム + title_synonyms: [] + type: TV + source: Manga + episodes: 38 + status: Finished Airing + airing: false + aired: + from: '2012-06-04T00:00:00+00:00' + to: '2013-02-25T00:00:00+00:00' + prop: + from: + day: 4 + month: 6 + year: 2012 + to: + day: 25 + month: 2 + year: 2013 + string: Jun 4, 2012 to Feb 25, 2013 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.87 + scored_by: 90850 + rank: 1017 + popularity: 1079 + members: 261513 + favorites: 2377 + synopsis: |- + China’s Warring States period, a raging dragon that would raze the land for 500 years, saw many kingdoms rise and fall, making way for the next generation of kings and generals to fight for supremacy. Eventually, seven powerful states emerged from the endless cycle of warfare. + + In the kingdom of Qin, Xin, a war-orphaned slave, trains vigorously with fellow slave and best friend, Piao, who shares his proud dream of one day becoming a Great General of the Heavens. However, the two are suddenly forced to part ways when Piao is recruited to work in the royal palace by a retainer of the King. + + After a fierce coup d'état unfolds, Piao returns to Xin, half dead, with a mission that will lead him to a meeting with China's young King, Ying Zheng, who bears a striking resemblance to Piao. Kingdom follows Xin as he takes his first steps into the great blood-soaked pages of China's history. He must carve his own path to glory on his long quest to become a Great General of the historic Seven Warring States. + + [Written by MAL Rewrite] + background: Kingdom adapts chapters 1-173 of the original manga. + season: summer + year: 2012 + broadcast: + day: Mondays + time: '19:00' + timezone: Asia/Tokyo + string: Mondays at 19:00 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 161 + type: anime + name: Sogo Vision + url: https://myanimelist.net/anime/producer/161/Sogo_Vision + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 13535 + url: https://myanimelist.net/anime/13535/Binbougami_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/39333.jpg + small_image_url: https://myanimelist.net/images/anime/8/39333t.jpg + large_image_url: https://myanimelist.net/images/anime/8/39333l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/39333.webp + small_image_url: https://myanimelist.net/images/anime/8/39333t.webp + large_image_url: https://myanimelist.net/images/anime/8/39333l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EOt9jP3NwAs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Binbougami ga! + - type: Synonym + title: Binbou Gami ga! + - type: Synonym + title: Binboukami ga! + - type: Synonym + title: Binbogami ga! + - type: Synonym + title: Binbou Kami ga! + - type: Synonym + title: The God Of Poverty is! + - type: Japanese + title: 貧乏神が! + - type: English + title: Good Luck Girl! + title: Binbougami ga! + title_english: Good Luck Girl! + title_japanese: 貧乏神が! + title_synonyms: + - Binbou Gami ga! + - Binboukami ga! + - Binbogami ga! + - Binbou Kami ga! + - The God Of Poverty is! + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-07-05T00:00:00+00:00' + to: '2012-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2012 + to: + day: 27 + month: 9 + year: 2012 + string: Jul 5, 2012 to Sep 27, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 116660 + rank: 1578 + popularity: 1135 + members: 249402 + favorites: 1250 + synopsis: |- + Ichiko Sakura lives life on easy mode. Blessed with good fortune, she has everything she has ever wanted, including beauty, intelligence, and wealth. Momiji Binboda is a goddess of poverty. In stark contrast to Ichiko, she is cursed with misfortune, such as a perpetual cast on her arm, a flat chest, and a box under a bridge for a home. + + Their lives collide when Momiji lives up to her title and delivers some unfortunate news to Ichiko: her large amount of luck is due to her subconsciously draining the luck from those around her! Momiji has been tasked with stealing back Ichiko's fortune before she leaves everyone without enough luck to even survive. But Ichiko, with the help of the wandering monk Bobby Statice, manages to fight off the poverty goddess. This defeat forces the goddess to enlist reinforcements in the form of Kumagai, her teddy bear familiar, and the masochistic dog god, Momoo Inugami. + + Insanity ensues as Ichiko's quiet life is replaced with daily battles for her fortune. To survive the chaos, Ichiko will need all the luck she can get in Binbougami ga!! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Thursdays + time: 01:50 + timezone: Asia/Tokyo + string: Thursdays at 01:50 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 643 + type: anime + name: Trinity Sound + url: https://myanimelist.net/anime/producer/643/Trinity_Sound + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12049 + url: https://myanimelist.net/anime/12049/Fairy_Tail_Movie_1__Houou_no_Miko + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/47083.jpg + small_image_url: https://myanimelist.net/images/anime/13/47083t.jpg + large_image_url: https://myanimelist.net/images/anime/13/47083l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/47083.webp + small_image_url: https://myanimelist.net/images/anime/13/47083t.webp + large_image_url: https://myanimelist.net/images/anime/13/47083l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nPv741YW3tk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fairy Tail Movie 1: Houou no Miko' + - type: Synonym + title: 'Gekijouban Fairy Tail: Houou no Miko' + - type: Synonym + title: Priestess of the Phoenix + - type: Synonym + title: 'Fairy Tail: The Phoenix Priestess' + - type: Japanese + title: 劇場版 FAIRY TAIL 鳳凰の巫女 + - type: English + title: 'Fairy Tail the Movie: The Phoenix Priestess' + - type: German + title: 'Fairy Tail The Movie: Phoenix Priestess' + - type: Spanish + title: 'Fairy Tail La Película: La Sacerdotisa del Fénix' + - type: French + title: 'Fairy Tail Le Film : La Prêtresse du Phoenix' + title: 'Fairy Tail Movie 1: Houou no Miko' + title_english: 'Fairy Tail the Movie: The Phoenix Priestess' + title_japanese: 劇場版 FAIRY TAIL 鳳凰の巫女 + title_synonyms: + - 'Gekijouban Fairy Tail: Houou no Miko' + - Priestess of the Phoenix + - 'Fairy Tail: The Phoenix Priestess' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-08-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 8 + year: 2012 + to: + day: null + month: null + year: null + string: Aug 18, 2012 + duration: 1 hr 26 min + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 128996 + rank: 2820 + popularity: 1228 + members: 230909 + favorites: 568 + synopsis: "In the mountains of north Fiore lies the Fire Village, where a lush-blue relic known as the Phoenix Stone\ + \ is preserved. Entrusted to a mystifying woman named Éclair, it is said to contain the power of an ancient phoenix.\ + \ She wanders the land alone and protects the stone from harm, despite having no memory of why it was left in her\ + \ care and only the faintest recollection of where she must take it. \n\nAfter encountering the wizard guild Fairy\ + \ Tail, Éclair receives an offer from Natsu Dragneel and his friends to help her uncover the mysteries surrounding\ + \ the stone. However, in the midst of the group's journey, Éclair is suddenly attacked and the stone is taken from\ + \ her. With this, nefarious intentions to revive the blazing phoenix for its unparalleled power come to light, and\ + \ the wizards of Fairy Tail find themselves in a situation that could spell calamity. They must now work together\ + \ to prevent the revival of the phoenix and save the world from ruin. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 13367 + url: https://myanimelist.net/anime/13367/Kono_Naka_ni_Hitori_Imouto_ga_Iru + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/75534.jpg + small_image_url: https://myanimelist.net/images/anime/5/75534t.jpg + large_image_url: https://myanimelist.net/images/anime/5/75534l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/75534.webp + small_image_url: https://myanimelist.net/images/anime/5/75534t.webp + large_image_url: https://myanimelist.net/images/anime/5/75534l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VECze5u2K6w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Naka ni Hitori, Imouto ga Iru! + - type: Synonym + title: NakaImo + - type: Synonym + title: One of Them is My Younger Sister! + - type: Synonym + title: Who is Imouto? + - type: Japanese + title: この中に1人、妹がいる! + - type: English + title: NAKAIMO - My Little Sister Is Among Them! + title: Kono Naka ni Hitori, Imouto ga Iru! + title_english: NAKAIMO - My Little Sister Is Among Them! + title_japanese: この中に1人、妹がいる! + title_synonyms: + - NakaImo + - One of Them is My Younger Sister! + - Who is Imouto? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 28 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 28, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.5 + scored_by: 103980 + rank: 8162 + popularity: 1262 + members: 223323 + favorites: 270 + synopsis: |- + Shougo Mikadono's father has just passed away, and now he must become the head of Mikadono Group, his father's company. After completing the training to take over, there is just one other stipulation he must adhere to: he will need to find a girl he loves at his new school and marry her by the time he graduates high school. + + Shougo transfers to Miryuin Private Academy, and it seems like he has many girls to choose from, such as Konoe Suruma, the class representative as well as his first new friend; Miyabi Kannagi, a standoffish but kind girl; Rinka Kunitachi, the student council vice president; Mei Sagara, who runs a cafe and dresses like a witch; and Mana Tendou, the student council president. However, there is a complication: one of them is his long-lost half sister, and he has no idea which one, so how can he become romantically involved with any of them? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12967 + url: https://myanimelist.net/anime/12967/Arcana_Famiglia + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/39495.jpg + small_image_url: https://myanimelist.net/images/anime/9/39495t.jpg + large_image_url: https://myanimelist.net/images/anime/9/39495l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/39495.webp + small_image_url: https://myanimelist.net/images/anime/9/39495t.webp + large_image_url: https://myanimelist.net/images/anime/9/39495l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/apjYHRa1mdM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arcana Famiglia + - type: Synonym + title: 'Arcana Famiglia: La Storia Della Arcana Famiglia' + - type: Japanese + title: アルカナ・ファミリア -La storia della Arcana Famiglia- + - type: English + title: La storia della Arcana Famiglia + - type: Spanish + title: La storia della Arcana Famiglia + title: Arcana Famiglia + title_english: La storia della Arcana Famiglia + title_japanese: アルカナ・ファミリア -La storia della Arcana Famiglia- + title_synonyms: + - 'Arcana Famiglia: La Storia Della Arcana Famiglia' + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-01T00:00:00+00:00' + to: '2012-09-16T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2012 + to: + day: 16 + month: 9 + year: 2012 + string: Jul 1, 2012 to Sep 16, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.27 + scored_by: 102684 + rank: 9519 + popularity: 1272 + members: 221143 + favorites: 398 + synopsis: "​On the island of Regalo, a group of supernaturally powered mafia-like protectors called the Arcana Famiglia\ + \ safeguard the people from any who would harm them. The members of their organization, having made contracts with\ + \ tarot cards, each possess different abilities, such as overwhelming strength, invisibility, or the power to see\ + \ into someone's heart. \n\nMondo, their leader and the \"Papa\" of their family, announces at his birthday party\ + \ that he will be retiring soon. He plans to hold the Arcana Duello, a competition that, if won, will grant the winner\ + \ the title of Papa and any wish they desire. But there is more at stake than just a title: Mondo also decides that\ + \ the winner will marry his daughter, Felicità. Enraged by this, the strong-willed Felicità decides to enter the competition\ + \ herself, in order to make her own way in the world. As Felicità battles for her freedom, her competitors battle\ + \ for her heart.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2012 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + demographics: [] + - mal_id: 12403 + url: https://myanimelist.net/anime/12403/Yuru_Yuri♪♪ + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/75174.jpg + small_image_url: https://myanimelist.net/images/anime/8/75174t.jpg + large_image_url: https://myanimelist.net/images/anime/8/75174l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/75174.webp + small_image_url: https://myanimelist.net/images/anime/8/75174t.webp + large_image_url: https://myanimelist.net/images/anime/8/75174l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LGSOhBnMEoY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuru Yuri♪♪ + - type: Synonym + title: Yuru Yuri S2 + - type: Japanese + title: ゆるゆり♪♪ + - type: English + title: 'YuruYuri: Happy Go Lily ♪♪' + - type: German + title: YuruYuri STaffel 2 + - type: Spanish + title: Yuru Yuri Temporada 2 + - type: French + title: YuruYuri Saison 2 + title: Yuru Yuri♪♪ + title_english: 'YuruYuri: Happy Go Lily ♪♪' + title_japanese: ゆるゆり♪♪ + title_synonyms: + - Yuru Yuri S2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-03T00:00:00+00:00' + to: '2012-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2012 + to: + day: 18 + month: 9 + year: 2012 + string: Jul 3, 2012 to Sep 18, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.81 + scored_by: 118852 + rank: 1171 + popularity: 1332 + members: 210106 + favorites: 989 + synopsis: |- + The girls of the Amusement Club return in Yuru Yuri♪♪, finding new ways to make passing time even more enjoyable. Their members consist of the always energetic Kyouko Toshinou; calm and sensible Yui Funami; polite but often overlooked Akari Akaza; and Chinatsu Yoshikawa, who stumbled upon the others while looking for the Tea Ceremony Club. Together they are the Amusement Club, which has the deceptively simple task of keeping its members entertained. + + Along with the Student Council and the odd family member, they strive to enjoy their youth to the fullest. Whether it's a trip to a hot spring or finishing overdue homework, their lives are never dull, and they will always find an excuse to spend time together. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 10357 + url: https://myanimelist.net/anime/10357/Jinrui_wa_Suitai_Shimashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/50345.jpg + small_image_url: https://myanimelist.net/images/anime/12/50345t.jpg + large_image_url: https://myanimelist.net/images/anime/12/50345l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/50345.webp + small_image_url: https://myanimelist.net/images/anime/12/50345t.webp + large_image_url: https://myanimelist.net/images/anime/12/50345l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iPRr25y26wo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jinrui wa Suitai Shimashita + - type: Synonym + title: Jintai + - type: Japanese + title: 人類は衰退しました + - type: English + title: Humanity Has Declined + - type: German + title: Humanity Has Declined + - type: Spanish + title: 'Humanity Has Declined: (Jinrui wa Suitai Shimashita)' + - type: French + title: Humanity Has Declined + title: Jinrui wa Suitai Shimashita + title_english: Humanity Has Declined + title_japanese: 人類は衰退しました + title_synonyms: + - Jintai + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-07-02T00:00:00+00:00' + to: '2012-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2012 + to: + day: 17 + month: 9 + year: 2012 + string: Jul 2, 2012 to Sep 17, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 64213 + rank: 1391 + popularity: 1384 + members: 201819 + favorites: 1976 + synopsis: "Because of the constantly declining birth rates over many decades, human civilization is all but extinct.\ + \ With only a few humans remaining, they survive in this post-apocalyptic world with what was left behind by the previous\ + \ generations. Earth is now dominated by fairies, tiny creatures with extremely advanced technology, an obsession\ + \ with candy, and a complete disregard for human safety. \n\nA young girl who has just finished her studies returns\ + \ to her hometown and is designated as an official United Nations arbitrator. Her duty is to serve as a link between\ + \ mankind and fairies, reassuring each side that both races can live together peacefully. She imagines this task will\ + \ be easy enough, but controlling the disasters created by the oblivious fairies in their pursuit of candy will require\ + \ a lot more effort than she initially believes.\n\n[Written by MAL Rewrite]" + background: Jinrui wa Suitai Shimashita adapts content from the first 6 novels of Romeo Tanaka's light novel series + of the same title. + season: summer + year: 2012 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 13469 + url: https://myanimelist.net/anime/13469/Hyouka__Motsubeki_Mono_wa + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/50363.jpg + small_image_url: https://myanimelist.net/images/anime/6/50363t.jpg + large_image_url: https://myanimelist.net/images/anime/6/50363l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/50363.webp + small_image_url: https://myanimelist.net/images/anime/6/50363t.webp + large_image_url: https://myanimelist.net/images/anime/6/50363l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vrEfVnbSppg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hyouka: Motsubeki Mono wa' + - type: Synonym + title: Hyouka Episode 11.5 + - type: Synonym + title: Hyouka OVA + - type: Synonym + title: Hyou-ka OVA + - type: Synonym + title: 'Hyouka: You can''t escape OVA' + - type: Synonym + title: 'Hyou-ka: You can''t escape OVA' + - type: Synonym + title: Hyoka OVA + - type: Japanese + title: 氷菓 持つべきものは + - type: English + title: 'Hyouka: What Should Be Had' + title: 'Hyouka: Motsubeki Mono wa' + title_english: 'Hyouka: What Should Be Had' + title_japanese: 氷菓 持つべきものは + title_synonyms: + - Hyouka Episode 11.5 + - Hyouka OVA + - Hyou-ka OVA + - 'Hyouka: You can''t escape OVA' + - 'Hyou-ka: You can''t escape OVA' + - Hyoka OVA + type: OVA + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-07-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 7 + year: 2012 + to: + day: null + month: null + year: null + string: Jul 8, 2012 + duration: 25 min + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 120622 + rank: 2985 + popularity: 1386 + members: 201628 + favorites: 157 + synopsis: |- + It's another regular day, with Houtarou Oreki sitting at home as usual; that is until his sister Tomoe ropes him into working as a lifeguard at the local swimming pool. Upon reaching the pool, Oreki coincidentally meets the other members of the Classics Club. Eru Chitanda notices that a white object that was on a woman's ear a while ago suddenly disappeared, which leaves her curious about the mystery behind it. + + Hyouka: Motsubeki Mono wa features Oreki and the rest of the Classics Club as they have fun at the pool and solve the mystery that has piqued Chitanda's curiosity. + + [Written by MAL Rewrite] + background: Pre-aired on USTREAM on July 8th, 2012. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 8888 + url: https://myanimelist.net/anime/8888/Code_Geass__Boukoku_no_Akito_1_-_Yokuryuu_wa_Maiorita + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/41401.jpg + small_image_url: https://myanimelist.net/images/anime/10/41401t.jpg + large_image_url: https://myanimelist.net/images/anime/10/41401l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/41401.webp + small_image_url: https://myanimelist.net/images/anime/10/41401t.webp + large_image_url: https://myanimelist.net/images/anime/10/41401l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LLMD4vlxT8Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita' + - type: Japanese + title: コードギアス 亡国のアキト 第1章「翼竜は舞い降りた」 + - type: English + title: 'Code Geass: Akito the Exiled - The Wyvern Arrives' + - type: German + title: 'Code Geass: Akito the Exiled' + - type: French + title: 'Code Geass: Akito the Exiled' + title: 'Code Geass: Boukoku no Akito 1 - Yokuryuu wa Maiorita' + title_english: 'Code Geass: Akito the Exiled - The Wyvern Arrives' + title_japanese: コードギアス 亡国のアキト 第1章「翼竜は舞い降りた」 + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-07-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 7 + year: 2012 + to: + day: null + month: null + year: null + string: Jul 16, 2012 + duration: 51 min + rating: R - 17+ (violence & profanity) + score: 7.33 + scored_by: 97288 + rank: 3087 + popularity: 1434 + members: 194562 + favorites: 612 + synopsis: |- + It is the year 2017, and Europe is being invaded by the forces of the Holy Britannian Empire. In an attempt to combat the opposition's overwhelming pressure and put an end to the massive casualties, the army forms a special unit called Wyvern, or W-0, composed of former Japanese citizens referred to as "Elevens." Recruited from ghettos, these young men and women pilot Knightmare frames—humanoid war machines—into dangerous operations where death awaits, hoping to make a name for themselves. + + When a European regiment attempting to recapture a crucial city is pinned down by the enemy, it's up to W-0 to bail them out. Among those selected for the rescue operation is Lieutenant Akito Hyuuga, known as "Hannibal's Ghost" due to his prowess on the battlefield. However, the supposed rescue mission becomes suicidal when, in an attempt to take out as many Britannians as possible, the commanding officer initiates the Knightmare's self-destruct sequence. In its aftermath, Akito finds that he is the last one standing… + + [Written by MAL Rewrite] + background: The first episode was pre-aired on July 16 and officially released to theaters on August 4, 2012. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 12679 + url: https://myanimelist.net/anime/12679/Joshiraku + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/48925.jpg + small_image_url: https://myanimelist.net/images/anime/8/48925t.jpg + large_image_url: https://myanimelist.net/images/anime/8/48925l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/48925.webp + small_image_url: https://myanimelist.net/images/anime/8/48925t.webp + large_image_url: https://myanimelist.net/images/anime/8/48925l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gjUmRgmgq98?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Joshiraku + - type: Synonym + title: Rakugo Girls + - type: Japanese + title: じょしらく + - type: English + title: Joshiraku + title: Joshiraku + title_english: Joshiraku + title_japanese: じょしらく + title_synonyms: + - Rakugo Girls + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-07-06T00:00:00+00:00' + to: '2012-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2012 + to: + day: 28 + month: 9 + year: 2012 + string: Jul 6, 2012 to Sep 28, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.46 + scored_by: 52423 + rank: 2435 + popularity: 1437 + members: 193301 + favorites: 782 + synopsis: |- + Joshiraku follows the conversations of five rakugo storyteller girls relating the odd things that happen to them each day. Their comedic and satirical chatting covers all kinds of topics, from pointless observations of everyday life, to politics, manga, and more. Each girl has something new to add to the discussion, and the discourse never ends in the same place it began. + + Each of the rakugo girls has their own unique personality, with the energetic but immature Marii Buratei; the seemingly cute Kigurumi Haroukitei; the inherently lucky and carefree Tetora Bouhatei; the calm and violent Gankyou Kuurubiyuutei; and the pessimistic and unstable Kukuru Anrakutei. These girls—and their mysterious friend in a wrestling mask—give their observations to the audience, either backstage at the rakugo theater or in various famous locations around Tokyo. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2012 + broadcast: + day: Fridays + time: 02:25 + timezone: Asia/Tokyo + string: Fridays at 02:25 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 490 + type: anime + name: Maiden Japan + url: https://myanimelist.net/anime/producer/490/Maiden_Japan + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 13333 + url: https://myanimelist.net/anime/13333/Tari_Tari + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/83575.jpg + small_image_url: https://myanimelist.net/images/anime/10/83575t.jpg + large_image_url: https://myanimelist.net/images/anime/10/83575l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/83575.webp + small_image_url: https://myanimelist.net/images/anime/10/83575t.webp + large_image_url: https://myanimelist.net/images/anime/10/83575l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YmTKphUxHi8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tari Tari + - type: Japanese + title: TARI TARI + - type: English + title: Tari Tari + title: Tari Tari + title_english: Tari Tari + title_japanese: TARI TARI + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-07-01T00:00:00+00:00' + to: '2012-09-23T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2012 + to: + day: 23 + month: 9 + year: 2012 + string: Jul 1, 2012 to Sep 23, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 60134 + rank: 3308 + popularity: 1631 + members: 167982 + favorites: 548 + synopsis: |- + At Shirahamazaka High School, a special recital is held every year in which music students are able to showcase their talents in front of professionals and other prestigious guests. Third-year Konatsu Miyamoto desperately wants to sing in her last high school recital, but because she screwed up the year before, the vice principal has barred her from participating. + + That's when Konatsu comes up with a new plan to get involved; instead of joining the official choir, she'll form her own singing club with her friends! Unfortunately this proves to be harder than she imagined. Her friend Wakana Sakai has given up on singing, for one, and Konatsu needs more than just two members. With only a month left until the recital, will Konatsu be able to find enough members for her club and actually be ready to sing at one of the most important events of the school year and graduate without regrets? + background: '' + season: summer + year: 2012 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15687 + url: https://myanimelist.net/anime/15687/Chuunibyou_demo_Koi_ga_Shitai_Lite + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/42655.jpg + small_image_url: https://myanimelist.net/images/anime/5/42655t.jpg + large_image_url: https://myanimelist.net/images/anime/5/42655l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/42655.webp + small_image_url: https://myanimelist.net/images/anime/5/42655t.webp + large_image_url: https://myanimelist.net/images/anime/5/42655l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chuunibyou demo Koi ga Shitai! Lite + - type: Synonym + title: Regardless of My Adolescent Delusions of Grandeur + - type: Synonym + title: I Want a Date! Lite + - type: Synonym + title: Chu-2 Byo demo Koi ga Shitai! Lite + - type: Synonym + title: Love + - type: Synonym + title: Chunibyo & Other Delusions Lite + - type: Japanese + title: 中二病でも恋がしたい!Lite + - type: English + title: 'Love, Chunibyo & Other Delusions!: Chuni-Shorts' + title: Chuunibyou demo Koi ga Shitai! Lite + title_english: 'Love, Chunibyo & Other Delusions!: Chuni-Shorts' + title_japanese: 中二病でも恋がしたい!Lite + title_synonyms: + - Regardless of My Adolescent Delusions of Grandeur + - I Want a Date! Lite + - Chu-2 Byo demo Koi ga Shitai! Lite + - Love + - Chunibyo & Other Delusions Lite + type: ONA + source: Light novel + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2012-09-27T00:00:00+00:00' + to: '2012-10-31T00:00:00+00:00' + prop: + from: + day: 27 + month: 9 + year: 2012 + to: + day: 31 + month: 10 + year: 2012 + string: Sep 27, 2012 to Oct 31, 2012 + duration: 6 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 81072 + rank: 3525 + popularity: 1784 + members: 150100 + favorites: 182 + synopsis: Short episodes aired on KyoAni's official YouTube channel. + background: 'Included in Love, Chunibyo & Other Delusions! DVD/Blu-ray Complete Collections as a 22 min Extra entitled + Chuni-Shorts. Episode 1: Volleyball (バレーボール) Episode 2: The Wicked Lord Shingan - The Dawning (邪王真眼・黎明篇) Episode 3: + My Big Brother (わたしのお兄ちゃん) Episode 4: I''m Making Meat and Potato Stew! (肉じゃが作るよ!) Episode 5: Sleeping After School + Beauty (眠れる放課後の美少女) Episode 6: Dekomori vs Nibutani (凸守 VS 丹生谷)' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 13807 + url: https://myanimelist.net/anime/13807/Corpse_Party__Missing_Footage + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/38331.jpg + small_image_url: https://myanimelist.net/images/anime/5/38331t.jpg + large_image_url: https://myanimelist.net/images/anime/5/38331l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/38331.webp + small_image_url: https://myanimelist.net/images/anime/5/38331t.webp + large_image_url: https://myanimelist.net/images/anime/5/38331l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Corpse Party: Missing Footage' + - type: Synonym + title: Corpse Party OVA + - type: Japanese + title: コープスパーティー Missing Footage + title: 'Corpse Party: Missing Footage' + title_english: null + title_japanese: コープスパーティー Missing Footage + title_synonyms: + - Corpse Party OVA + type: OVA + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-08-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 8 + year: 2012 + to: + day: null + month: null + year: null + string: Aug 2, 2012 + duration: 11 min + rating: R - 17+ (violence & profanity) + score: 5.95 + scored_by: 79145 + rank: 11226 + popularity: 1786 + members: 149995 + favorites: 189 + synopsis: |- + Someday a group of classmates will perform a charm at night after school—the Happy Sachiko charm. This paper doll ritual is meant to make them stay friends forever, but performing it incorrectly will lead them to be dragged down into a dilapidated phantom of Tenjin Elementary School, which had been torn down years ago. Trapped until they can reunite and perform the charm correctly, the students will have to solve the mystery of the haunted school in order to make it out alive. + + Before that ill-fated event, however, the friends led ordinary lives. Corpse Party: Missing Footage reveals an insight into the students' lives on the day before they were thrust into a waking nightmare. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 13851 + url: https://myanimelist.net/anime/13851/To_LOVE-Ru_Darkness_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/41251.jpg + small_image_url: https://myanimelist.net/images/anime/9/41251t.jpg + large_image_url: https://myanimelist.net/images/anime/9/41251l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/41251.webp + small_image_url: https://myanimelist.net/images/anime/9/41251t.webp + large_image_url: https://myanimelist.net/images/anime/9/41251l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: To LOVE-Ru Darkness OVA + - type: Synonym + title: To LOVE-Ru Trouble Darkness OVA + - type: Synonym + title: To-Love-Ru Darkness OVA + - type: Synonym + title: ToLoveRu Darkness OVA + - type: Japanese + title: To LOVEる -とらぶる- ダークネス + title: To LOVE-Ru Darkness OVA + title_english: null + title_japanese: To LOVEる -とらぶる- ダークネス + title_synonyms: + - To LOVE-Ru Trouble Darkness OVA + - To-Love-Ru Darkness OVA + - ToLoveRu Darkness OVA + type: OVA + source: Manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2012-08-17T00:00:00+00:00' + to: '2015-04-03T00:00:00+00:00' + prop: + from: + day: 17 + month: 8 + year: 2012 + to: + day: 3 + month: 4 + year: 2015 + string: Aug 17, 2012 to Apr 3, 2015 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 7.52 + scored_by: 74591 + rank: 2170 + popularity: 1887 + members: 139275 + favorites: 217 + synopsis: Bundled with the 5th, 6th, 8th, 9th, 12th and 13th limited-edition volumes of the manga. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14753 + url: https://myanimelist.net/anime/14753/Hori-san_to_Miyamura-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/40175.jpg + small_image_url: https://myanimelist.net/images/anime/2/40175t.jpg + large_image_url: https://myanimelist.net/images/anime/2/40175l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/40175.webp + small_image_url: https://myanimelist.net/images/anime/2/40175t.webp + large_image_url: https://myanimelist.net/images/anime/2/40175l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SIlAtjXsOaY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hori-san to Miyamura-kun + - type: Synonym + title: Horimiya + - type: Japanese + title: 堀さんと宮村くん + - type: English + title: Hori and Miyamura + title: Hori-san to Miyamura-kun + title_english: Hori and Miyamura + title_japanese: 堀さんと宮村くん + title_synonyms: + - Horimiya + type: OVA + source: Web manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2012-09-26T00:00:00+00:00' + to: '2021-05-25T00:00:00+00:00' + prop: + from: + day: 26 + month: 9 + year: 2012 + to: + day: 25 + month: 5 + year: 2021 + string: Sep 26, 2012 to May 25, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 50623 + rank: 2570 + popularity: 1923 + members: 136513 + favorites: 742 + synopsis: |- + Within everyone there exists a side preferably kept hidden, even from close friends. For the smart and popular Kyouko Hori, it's the fact that she has to do all the housework and care for her little brother, Souta, because of her parents' busy work schedules. For the gentle Izumi Miyamura, whom everybody sees as an otaku, it's his nine hidden piercings and large body tattoo. + + So what happens when they accidentally discover each other's hidden sides? Sharing parts of themselves that they couldn't with anyone else, strong bonds of friendship soon begin to form between Miyamura and Hori, as well as those around them. As their hidden personas start to dissipate, they slowly learn how to open up to others. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + - mal_id: 1997 + type: anime + name: Studio KAI + url: https://myanimelist.net/anime/producer/1997/Studio_KAI + - mal_id: 2188 + type: anime + name: Marone + url: https://myanimelist.net/anime/producer/2188/Marone + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/12-2012-fall.yaml b/test/fixtures/jikan/season_matrix/12-2012-fall.yaml new file mode 100644 index 0000000..e202202 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/12-2012-fall.yaml @@ -0,0 +1,3433 @@ +metadata: + captured_at: '2026-05-11T11:32:52Z' + label: 2012-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2012/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:51 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:a9ba2eafbd99ed066c4869345bca0f40d9e98d68 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 228 + per_page: 25 + data: + - mal_id: 14719 + url: https://myanimelist.net/anime/14719/JoJo_no_Kimyou_na_Bouken_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/40409.jpg + small_image_url: https://myanimelist.net/images/anime/3/40409t.jpg + large_image_url: https://myanimelist.net/images/anime/3/40409l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/40409.webp + small_image_url: https://myanimelist.net/images/anime/3/40409t.webp + large_image_url: https://myanimelist.net/images/anime/3/40409l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PGVSViecHWE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: JoJo no Kimyou na Bouken (TV) + - type: Synonym + title: JoJo no Kimyou na Bouken (2012) + - type: Synonym + title: Battle Tendency + - type: Synonym + title: Phantom Blood + - type: Synonym + title: Sentou Chouryuu + - type: Synonym + title: JoJo's Bizarre Adventure The Animation + - type: Japanese + title: ジョジョの奇妙な冒険 + - type: English + title: JoJo's Bizarre Adventure (2012) + - type: German + title: 'JoJo''s Bizarre Adventure: Phantom Blood' + - type: Spanish + title: JoJo's Bizarre Adventure. Phantom Blood + - type: French + title: JoJo's Bizarre Adventure + title: JoJo no Kimyou na Bouken (TV) + title_english: JoJo's Bizarre Adventure (2012) + title_japanese: ジョジョの奇妙な冒険 + title_synonyms: + - JoJo no Kimyou na Bouken (2012) + - Battle Tendency + - Phantom Blood + - Sentou Chouryuu + - JoJo's Bizarre Adventure The Animation + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2012-10-06T00:00:00+00:00' + to: '2013-04-06T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2012 + to: + day: 6 + month: 4 + year: 2013 + string: Oct 6, 2012 to Apr 6, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.87 + scored_by: 1201214 + rank: 1014 + popularity: 58 + members: 1861284 + favorites: 40059 + synopsis: "The year is 1868; English nobleman George Joestar and his son Jonathan become indebted to Dario Brando after\ + \ being rescued from a carriage incident. What the Joestars don't realize, however, is that Dario had no intention\ + \ of helping them; he believed they were dead and was trying to ransack their belongings. After Dario's death 12 years\ + \ later, George—hoping to repay his debt—adopts his son, Dio. \n\nWhile he publicly fawns over his new father, Dio\ + \ secretly plans to steal the Joestar fortune. His first step is to create a divide between George and Jonathan. By\ + \ constantly outdoing his foster brother, Dio firmly makes his place in the Joestar family. But when Dio pushes Jonathan\ + \ too far, Jonathan defeats him in a brawl. \n\nYears later, the two appear to be close friends to the outside world.\ + \ But trouble brews again when George falls ill, as Jonathan suspects that Dio is somehow behind the incident—and\ + \ it appears he has more tricks up his sleeve.\n\n[Written by MAL Rewrite]" + background: JoJo no Kimyou na Bouken was announced on July 5, 2012 at a press conference celebrating the 25th anniversary + Hirohiko Araki's long-running series. The anime is a full adaptation of the first two parts in the series, Phantom + Blood and Sentou Chouryuu (Battle Tendency). While the animation was produced by David Production, the opening theme + animations were produced by the studio Kamikaze Douga (神風動画). + season: fall + year: 2012 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + - mal_id: 1889 + type: anime + name: Warner Bros. Pictures + url: https://myanimelist.net/anime/producer/1889/Warner_Bros_Pictures + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 13601 + url: https://myanimelist.net/anime/13601/Psycho-Pass + images: + jpg: + image_url: https://myanimelist.net/images/anime/1314/142015.jpg + small_image_url: https://myanimelist.net/images/anime/1314/142015t.jpg + large_image_url: https://myanimelist.net/images/anime/1314/142015l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1314/142015.webp + small_image_url: https://myanimelist.net/images/anime/1314/142015t.webp + large_image_url: https://myanimelist.net/images/anime/1314/142015l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DgDBzAHg4wU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Psycho-Pass + - type: Synonym + title: Psychopath + - type: Japanese + title: サイコパス + - type: English + title: Psycho-Pass + title: Psycho-Pass + title_english: Psycho-Pass + title_japanese: サイコパス + title_synonyms: + - Psychopath + type: TV + source: Original + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2012-10-12T00:00:00+00:00' + to: '2013-03-22T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2012 + to: + day: 22 + month: 3 + year: 2013 + string: Oct 12, 2012 to Mar 22, 2013 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.33 + scored_by: 831124 + rank: 297 + popularity: 70 + members: 1749516 + favorites: 40345 + synopsis: |- + Justice, and the enforcement of it, has changed. In the 22nd century, Japan enforces the Sibyl System, an objective means of determining the threat level of each citizen by examining their mental state for signs of criminal intent, known as their Psycho-Pass. Inspectors uphold the law by subjugating, often with lethal force, anyone harboring the slightest ill-will; alongside them are Enforcers, citizens that have become latent criminals, granted relative freedom in exchange for carrying out the Inspectors' dirty work. + + Into this world steps Akane Tsunemori, a young woman with an honest desire to uphold justice. However, as she works alongside veteran Enforcer Shinya Kougami, she soon learns that the Sibyl System's judgments are not as perfect as her fellow Inspectors assume. With everything she has known turned on its head, Akane wrestles with the question of what justice truly is, and whether it can be upheld through the use of a system that may already be corrupt. + + [Written by MAL Rewrite] + background: An edited version of the series received a rebroadcast starting July 10, 2014. 22 episodes of the original + series were combined into eleven 46-minute long episodes with some scenes being slightly extended. Psycho-Pass aired + on Fuji Television's noitaminA block. In the 2013 Newtype Anime Awards it was voted as fourth best title of the year. + Its 11th episode was awarded "Best Episode" in the Noitamina 10th anniversary fan vote. It has spawned several video-game + spin-offs, a novel series and a manga series as well. + season: fall + year: 2012 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 14741 + url: https://myanimelist.net/anime/14741/Chuunibyou_demo_Koi_ga_Shitai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1905/142840.jpg + small_image_url: https://myanimelist.net/images/anime/1905/142840t.jpg + large_image_url: https://myanimelist.net/images/anime/1905/142840l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1905/142840.webp + small_image_url: https://myanimelist.net/images/anime/1905/142840t.webp + large_image_url: https://myanimelist.net/images/anime/1905/142840l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/USgrD2Dqsa0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chuunibyou demo Koi ga Shitai! + - type: Synonym + title: Chu-2 Byo demo Koi ga Shitai! + - type: Synonym + title: Regardless of My Adolescent Delusions of Grandeur + - type: Synonym + title: I Want a Date! + - type: Japanese + title: 中二病でも恋がしたい! + - type: English + title: Love, Chunibyo & Other Delusions! + - type: German + title: Love, Chunibyo & Other Delusions! + - type: Spanish + title: Love, Chunibyo & Other Delusions + - type: French + title: Love, Chunibyo & Other Delusions! + title: Chuunibyou demo Koi ga Shitai! + title_english: Love, Chunibyo & Other Delusions! + title_japanese: 中二病でも恋がしたい! + title_synonyms: + - Chu-2 Byo demo Koi ga Shitai! + - Regardless of My Adolescent Delusions of Grandeur + - I Want a Date! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-10-04T00:00:00+00:00' + to: '2012-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2012 + to: + day: 20 + month: 12 + year: 2012 + string: Oct 4, 2012 to Dec 20, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 833302 + rank: 1449 + popularity: 102 + members: 1464450 + favorites: 19080 + synopsis: |- + Everybody has had that stage in their life where they have thought themselves to be special, different from the masses of ordinary humans. They might go as far as seeing themselves capable of wielding mystical powers, or maybe even believe themselves to have descended from a fantasy realm. This "disease" is known as "chuunibyou" and is often the source of some of the most embarrassing moments of a person's life. + + For Yuuta Togashi, the scars that his chuunibyou has left behind are still fresh. Having posed as the "Dark Flame Master" during his middle school years, he looks back at those times with extreme embarrassment, so much so that he decides to attend a high school far away where nobody will recognize him. Putting his dark history behind him, he longs to live a normal high school life. + + Unfortunately, he hasn't escaped his past yet: enter Rikka Takanashi, Yuuta's new classmate and self-declared vessel of the "Wicked Eye." As this eccentric young girl crashes into Yuuta's life, his dream of an ordinary, chuunibyou-free life quickly crumbles away. In this hilarious and heartwarming story of a boy who just wants to leave his embarrassing memories behind, the delusions of old are far from a thing of the past. + + [Written by MAL Rewrite] + background: Chuunibyou demo Koi ga Shitai! won an honorable mention at the 2010 Kyoto Animation Awards. + season: fall + year: 2012 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 13759 + url: https://myanimelist.net/anime/13759/Sakura-sou_no_Pet_na_Kanojo + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/43643.jpg + small_image_url: https://myanimelist.net/images/anime/4/43643t.jpg + large_image_url: https://myanimelist.net/images/anime/4/43643l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/43643.webp + small_image_url: https://myanimelist.net/images/anime/4/43643t.webp + large_image_url: https://myanimelist.net/images/anime/4/43643l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HPTtuR1EF_U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakura-sou no Pet na Kanojo + - type: Synonym + title: Sakurasou no Pet na Kanojo + - type: Japanese + title: さくら荘のペットな彼女 + - type: English + title: The Pet Girl of Sakurasou + - type: German + title: The Pet Girl of Sakurasou + - type: Spanish + title: The Pet Girl of Sakurasou + - type: French + title: The Pet Girl of Sakurasou + title: Sakura-sou no Pet na Kanojo + title_english: The Pet Girl of Sakurasou + title_japanese: さくら荘のペットな彼女 + title_synonyms: + - Sakurasou no Pet na Kanojo + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2012-10-09T00:00:00+00:00' + to: '2013-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2012 + to: + day: 26 + month: 3 + year: 2013 + string: Oct 9, 2012 to Mar 26, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.04 + scored_by: 745068 + rank: 701 + popularity: 119 + members: 1324227 + favorites: 26235 + synopsis: |- + At Suimei High, the Sakura-sou dormitory is infamous for housing the school's most notorious delinquents. Thus, when the relatively tame Sorata Kanda is transferred to the dorm, escaping this insane asylum becomes his foremost goal. Trapped there for the time being, he must learn how to deal with his fellow residents, including bubbly animator Misaki Kamiigusa, charming playboy writer Jin Mitaka, and the ever-reclusive Ryuunosuke Akasaka. Surrounded by weirdness, Sorata frequently finds respite in his interactions with his one "normal" friend, aspiring voice actress Nanami Aoyama. + + When Mashiro Shiina—a new foreign exchange student—joins the dormitory, Sorata is instantly enraptured by her beauty. Underneath her otherworldly appearance, Mashiro is an autistic savant, capable of world-renowned brilliance in her art, yet unable to perform simple daily tasks. After Sorata ends up in charge of taking care of Mashiro, the two inevitably grow closer, with Sorata's initial desire to escape the dormitory becoming a forgotten goal. + + Despite their eccentricities, every resident is incredible in their own field, leaving Sorata to contend with his own lack of any particular skill. With brilliance all around him, he thus strives to become an equal to their talent. Revolving around the hardships and joys of its colorful cast, Sakura-sou no Pet na Kanojo is a heartwarming coming-of-age tale of friendship, love, ambition, and heartbreak—through the lens of an ordinary person surrounded by the extraordinary. + + [Written by MAL Rewrite] + background: Sakurasou no Pet na Kanojo adapts the first 6 novels and part of the 7th novel of Hajime Kamoshida's light + novel series of the same title. + season: fall + year: 2012 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14227 + url: https://myanimelist.net/anime/14227/Tonari_no_Kaibutsu-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/39779.jpg + small_image_url: https://myanimelist.net/images/anime/4/39779t.jpg + large_image_url: https://myanimelist.net/images/anime/4/39779l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/39779.webp + small_image_url: https://myanimelist.net/images/anime/4/39779t.webp + large_image_url: https://myanimelist.net/images/anime/4/39779l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SlD-8h96pDw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tonari no Kaibutsu-kun + - type: Synonym + title: Tonari no Kaibutsukun + - type: Synonym + title: The Monster Next Door + - type: Synonym + title: My Neighbor Monster-kun + - type: Japanese + title: となりの怪物くん + - type: English + title: My Little Monster + - type: German + title: My Little Monster + - type: French + title: Le Garçon d'à Côté + title: Tonari no Kaibutsu-kun + title_english: My Little Monster + title_japanese: となりの怪物くん + title_synonyms: + - Tonari no Kaibutsukun + - The Monster Next Door + - My Neighbor Monster-kun + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-02T00:00:00+00:00' + to: '2012-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2012 + to: + day: 25 + month: 12 + year: 2012 + string: Oct 2, 2012 to Dec 25, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 650998 + rank: 2504 + popularity: 144 + members: 1170824 + favorites: 6693 + synopsis: "Shizuku Mizutani is apathetic toward her classmates, only caring about her grades. However, her cold view\ + \ of life begins to change when she meets Haru Yoshida, a violent troublemaker who stopped attending class after getting\ + \ into a fight early in the school year. He is not much different from her, though—he too understands little about\ + \ human nature and does not have any friends. Much to Shizuku's surprise, he proclaims that she will be his friend\ + \ and immediately confesses his feelings toward her upon meeting her.\n \nBecause of her lack of friends and social\ + \ interaction, Shizuku has a hard time understanding her relationship with Haru. But slowly, their friendship begins\ + \ to progress, and she discovers that there is more to Haru than violence. She begins to develop feelings for him,\ + \ but is unsure what kind of emotions she is experiencing. Together, Shizuku and Haru explore the true nature of their\ + \ relationship and emotions.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2012 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 14513 + url: https://myanimelist.net/anime/14513/Magi__The_Labyrinth_of_Magic + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/42773.jpg + small_image_url: https://myanimelist.net/images/anime/11/42773t.jpg + large_image_url: https://myanimelist.net/images/anime/11/42773l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/42773.webp + small_image_url: https://myanimelist.net/images/anime/11/42773t.webp + large_image_url: https://myanimelist.net/images/anime/11/42773l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2E7o26G1T0c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Magi: The Labyrinth of Magic' + - type: Synonym + title: Magi Season 1 + - type: Japanese + title: マギ The labyrinth of magic + - type: English + title: 'Magi: The Labyrinth of Magic' + title: 'Magi: The Labyrinth of Magic' + title_english: 'Magi: The Labyrinth of Magic' + title_japanese: マギ The labyrinth of magic + title_synonyms: + - Magi Season 1 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2012-10-07T00:00:00+00:00' + to: '2013-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2012 + to: + day: 31 + month: 3 + year: 2013 + string: Oct 7, 2012 to Mar 31, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.01 + scored_by: 585419 + rank: 737 + popularity: 158 + members: 1122477 + favorites: 9614 + synopsis: |- + A Magi is a magician whose inclination toward magic is so immense that they can be said to shape the world. With their significant influence, each Magi chooses a worthy candidate to become a king, then helps them conquer strange labyrinths called "Dungeons" and acquire the power of mythical djinns within. Above all else, the Magi supervises their elected representative as they build a country that might one day bring the world to its knees. + + Aladdin is a young Magi wandering the world in search of his true self. However, his journey is not a lonely one, as he is accompanied by his friend and mentor Ugo—a djinn he summons using his flute. In his travels, Aladdin also befriends Alibaba Saluja and guides him to a nearby Dungeon. With this newfound friendship, they begin an epic adventure across the world, witnessing various irregularities that seem more frequent than ever. + + [Written by MAL Rewrite] + background: 'Magi: The Labyrinth of Magic was the first Shounen Sunday manga adaptation in 45 years to be aired by Mainichi + Broadcasting since Osomatsu-kun ended its broadcast in 1967.' + season: fall + year: 2012 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14345 + url: https://myanimelist.net/anime/14345/Btooom + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/40977.jpg + small_image_url: https://myanimelist.net/images/anime/4/40977t.jpg + large_image_url: https://myanimelist.net/images/anime/4/40977l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/40977.webp + small_image_url: https://myanimelist.net/images/anime/4/40977t.webp + large_image_url: https://myanimelist.net/images/anime/4/40977l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H92d6YZkVO8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Btooom! + - type: Japanese + title: BTOOOM! + - type: English + title: BTOOOM! + title: Btooom! + title_english: BTOOOM! + title_japanese: BTOOOM! + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-10-04T00:00:00+00:00' + to: '2012-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2012 + to: + day: 20 + month: 12 + year: 2012 + string: Oct 4, 2012 to Dec 20, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.26 + scored_by: 516156 + rank: 3523 + popularity: 225 + members: 908590 + favorites: 3499 + synopsis: |- + Ryouta Sakamoto is unemployed and lives with his mother, his only real achievement being that he is Japan's top player of the popular online video game Btooom! However, his peaceful life is about to change when he finds himself stranded on an island in the middle of nowhere, with a small green crystal embedded in his left hand and no memory of how he got there. To his shock, someone has decided to recreate the game he is so fond of in real life, with the stakes being life or death. + + Armed with a bag full of unique bombs known as "BIM," the players are tasked with killing seven of their fellow participants and taking their green crystals in order to return home. Initially condemning any form of violence, Ryouta is forced to fight when he realizes that many of the other players are not as welcoming as they may seem. Teaming up with Himiko, a fellow Btooom! player, they attempt to get off of the island together, coming closer and closer to the truth behind this contest of death. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1550 + type: anime + name: Shinchosha + url: https://myanimelist.net/anime/producer/1550/Shinchosha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 13125 + url: https://myanimelist.net/anime/13125/Shinsekai_yori + images: + jpg: + image_url: https://myanimelist.net/images/anime/1549/136389.jpg + small_image_url: https://myanimelist.net/images/anime/1549/136389t.jpg + large_image_url: https://myanimelist.net/images/anime/1549/136389l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1549/136389.webp + small_image_url: https://myanimelist.net/images/anime/1549/136389t.webp + large_image_url: https://myanimelist.net/images/anime/1549/136389l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oYWBoSDpwdQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinsekai yori + - type: Synonym + title: Shin Sekai Yori + - type: Japanese + title: 新世界より + - type: English + title: From the New World + - type: German + title: 'Shinsekai Yori: From the New World' + - type: Spanish + title: Shin Sekai Yori (Del Nuevo Mundo) + - type: French + title: Shinsekai Yori + title: Shinsekai yori + title_english: From the New World + title_japanese: 新世界より + title_synonyms: + - Shin Sekai Yori + type: TV + source: Novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2012-09-29T00:00:00+00:00' + to: '2013-03-23T00:00:00+00:00' + prop: + from: + day: 29 + month: 9 + year: 2012 + to: + day: 23 + month: 3 + year: 2013 + string: Sep 29, 2012 to Mar 23, 2013 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.24 + scored_by: 289932 + rank: 401 + popularity: 272 + members: 822480 + favorites: 22437 + synopsis: |- + In the year 2011, a small percentage of humans began manifesting psychokinetic abilities known as "Cantus." Over a millennium later, in the small town of Kamisu 66, Saki Watanabe is the last of her friends to awaken her powers and join the Sage Academy, a school for psychics like her. Although everyone at the institution has Cantus, they are not all equal; shortly after Saki enrolls, one of her classmates who is regarded as being weaker than the others suddenly disappears. + + Walking home one day with her friends—the determined Maria Akizuki, the intelligent Shun Aonuma, the observant Satoru Asahina, and the timid Mamoru Itou—she comes across two unfamiliar creatures known as "Monster Rats." These beings resemble moles and worship those with Cantus as gods. As a result, when Saki uses her abilities to save one from trouble, she is met with exceptional gratitude. + + Now unsure about the Monster Rats' place in society, Saki and her friends find out about another disappearance. As time passes, they slowly look for answers to the mysteries that surround them and begin to realize that this seemingly "perfect" new world masks humanity's dark past. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 14467 + url: https://myanimelist.net/anime/14467/K + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/47607.jpg + small_image_url: https://myanimelist.net/images/anime/3/47607t.jpg + large_image_url: https://myanimelist.net/images/anime/3/47607l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/47607.webp + small_image_url: https://myanimelist.net/images/anime/3/47607t.webp + large_image_url: https://myanimelist.net/images/anime/3/47607l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: K + - type: Synonym + title: K-Project + - type: Synonym + title: K -eine weitere Geschichte- + - type: Japanese + title: K + - type: English + title: K + title: K + title_english: K + title_japanese: K + title_synonyms: + - K-Project + - K -eine weitere Geschichte- + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-05T00:00:00+00:00' + to: '2012-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2012 + to: + day: 28 + month: 12 + year: 2012 + string: Oct 5, 2012 to Dec 28, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 396446 + rank: 2615 + popularity: 282 + members: 804109 + favorites: 6957 + synopsis: "\"Kings\" are individuals who have been bestowed with incredible supernatural powers and granted the ability\ + \ to recruit others into their clans. Protecting the lives and honor of their clansmen is an integral part of the\ + \ Kings' duties. After a video depicting the heinous murder of a Red Clansman spreads virally, the unassuming student\ + \ Yashiro Isana is accused of homicide. Now, a manhunt is underway for his head, bringing him into contact with the\ + \ infamous \"Black Dog\" Kurou Yatogami—a skilled swordsman and martial artist determined to follow the wishes of\ + \ his late master, the Seventh King.\n\nMeanwhile, the current Red King, Mikoto Suou, faces his own imminent demise\ + \ as the search for Yashiro narrows. But during Yashiro's struggle to prove his innocence, a greater conspiracy is\ + \ unraveling behind the scenes; clouds begin to appear in his memory, and close friends start to question his very\ + \ existence. What began as a simple murder is now leading towards a full blown war between Kings with the very fate\ + \ of the world at stake. \n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2012 + broadcast: + day: null + time: null + timezone: null + string: Thursdays at Unknown + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 14713 + url: https://myanimelist.net/anime/14713/Kamisama_Hajimemashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/85429.jpg + small_image_url: https://myanimelist.net/images/anime/3/85429t.jpg + large_image_url: https://myanimelist.net/images/anime/3/85429l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/85429.webp + small_image_url: https://myanimelist.net/images/anime/3/85429t.webp + large_image_url: https://myanimelist.net/images/anime/3/85429l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HzCba_fi-to?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamisama Hajimemashita + - type: Japanese + title: 神様はじめました + - type: English + title: Kamisama Kiss + title: Kamisama Hajimemashita + title_english: Kamisama Kiss + title_japanese: 神様はじめました + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-02T00:00:00+00:00' + to: '2012-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2012 + to: + day: 25 + month: 12 + year: 2012 + string: Oct 2, 2012 to Dec 25, 2012 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 374175 + rank: 551 + popularity: 322 + members: 729161 + favorites: 17449 + synopsis: |- + High schooler Nanami Momozono has quite a few problems of late, beginning with her absentee father being in such extreme debt that they lose everything. Downtrodden and homeless, she runs into a man being harassed by a dog. After helping him, she explains her situation, and to her surprise, he offers her his home in gratitude. But when she discovers that said home is a rundown shrine, she tries to leave; however, she is caught by two shrine spirits and a fox familiar named Tomoe. They mistake her for the man Nanami rescued—the land god of the shrine, Mikage. Realizing that Mikage must have sent her there as a replacement god, Tomoe leaves abruptly, refusing to serve a human. + + Rather than going back to being homeless, Nanami immerses herself in her divine duties. But if she must keep things running smoothly, she will need the help of a certain hot-headed fox. In her fumbling attempt to seek out Tomoe, she lands in trouble and ends up sealing a contract with him. Now the two must traverse the path of godhood together as god and familiar; but it will not be easy, for new threats arise in the form of a youkai who wants to devour the girl, a snake that wants to marry her, and Nanami's own unexpected feelings for her new familiar. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 14289 + url: https://myanimelist.net/anime/14289/Suki_tte_Ii_na_yo + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/39777.jpg + small_image_url: https://myanimelist.net/images/anime/11/39777t.jpg + large_image_url: https://myanimelist.net/images/anime/11/39777l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/39777.webp + small_image_url: https://myanimelist.net/images/anime/11/39777t.webp + large_image_url: https://myanimelist.net/images/anime/11/39777l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-RoSoU_h5SY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Suki tte Ii na yo. + - type: Synonym + title: Suki-tte Ii na yo. + - type: Synonym + title: Sukinayo + - type: Japanese + title: 好きっていいなよ。 + - type: English + title: Say "I Love You." + - type: German + title: Say "I Love You" + - type: French + title: Say "I Love You" + title: Suki tte Ii na yo. + title_english: Say "I Love You." + title_japanese: 好きっていいなよ。 + title_synonyms: + - Suki-tte Ii na yo. + - Sukinayo + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-07T00:00:00+00:00' + to: '2012-12-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2012 + to: + day: 30 + month: 12 + year: 2012 + string: Oct 7, 2012 to Dec 30, 2012 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 373737 + rank: 2852 + popularity: 346 + members: 696333 + favorites: 4944 + synopsis: |- + Friends will only let you down—that is the sad truth Mei Tachibana lives with, ever since she was wrongfully blamed for the death of a class pet by her so-called friends in grade school. Since then, she has stayed away from people in order to avoid ever being hurt again. However, Mei's life begins to change drastically when a misunderstanding in high school causes her to encounter popular student Yamato Kurosawa. + + Yamato finds her intriguing and insists on being her friend, even though Mei wants nothing to do with him. But when a dangerous situation ends with Yamato kissing Mei to save her from the unwanted attention of a stalker, Mei begins to develop feelings for him. On the heels of her discovery that their feelings are mutual, they start dating and she gains not only a boyfriend, but friends as well. Mei, however, finds it very hard to adapt to this new lifestyle, especially in expressing her true feelings towards Yamato. + + Throughout misunderstandings of their new relationship, each other, and the attentions of other girls, Mei and Yamato slowly grow closer and learn the true meaning of those three little words: "I love you." + + [Written by MAL Rewrite] + background: Sukitte Ii na yo. is licensed by Sentai Filmworks for release in North America. The anime adaptation was + followed by a live action film adaptation that premiered in 2014 and earned over ¥1 billion (around 10 million USD) + at the Japanese box office. + season: fall + year: 2012 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 14075 + url: https://myanimelist.net/anime/14075/Zetsuen_no_Tempest + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/42453.jpg + small_image_url: https://myanimelist.net/images/anime/7/42453t.jpg + large_image_url: https://myanimelist.net/images/anime/7/42453l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/42453.webp + small_image_url: https://myanimelist.net/images/anime/7/42453t.webp + large_image_url: https://myanimelist.net/images/anime/7/42453l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xP78R0b70yE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zetsuen no Tempest + - type: Synonym + title: 'Zetsuen no Tempest: The Civilization Blaster' + - type: Japanese + title: 絶園のテンペスト + - type: English + title: Blast of Tempest + - type: German + title: Blast of Tempest + - type: Spanish + title: Blast of Tempest + - type: French + title: Blast of Tempest + title: Zetsuen no Tempest + title_english: Blast of Tempest + title_japanese: 絶園のテンペスト + title_synonyms: + - 'Zetsuen no Tempest: The Civilization Blaster' + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2012-10-05T00:00:00+00:00' + to: '2013-03-29T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2012 + to: + day: 29 + month: 3 + year: 2013 + string: Oct 5, 2012 to Mar 29, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 270722 + rank: 981 + popularity: 399 + members: 626505 + favorites: 6554 + synopsis: |- + Yoshino Takigawa, an ordinary teenager, is secretly dating his best friend Mahiro Fuwa's younger sister, Aika. But when Aika mysteriously dies, Mahiro disappears, vowing to find the one responsible and make them pay for murdering his beloved sister. Yoshino continues his life as usual and has not heard from Mahiro in a month—until he is confronted by a strange girl who holds him at gunpoint, and his best friend arrives in the nick of time to save him. + + Yoshino learns that Mahiro has enlisted the help of a witch named Hakaze Kusaribe to find Aika's killer. However, the witch has been banished to a deserted island due to infighting within her clan. Hakaze's brother, Samon, selfishly desires to make use of the Tree of Exodus' power, in spite of both his sister's opposition and the impending peril to the world. With Hakaze out of the picture, it is now up to Yoshino and Mahiro to help her save the world, all while inching ever closer to the truth behind Aika's death. + + [Written by MAL Rewrite] + background: Zetsuen no Tempest draws heavily on two Shakespeare plays, Hamlet and The Tempest. + season: fall + year: 2012 + broadcast: + day: Fridays + time: 02:00 + timezone: Asia/Tokyo + string: Fridays at 02:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15689 + url: https://myanimelist.net/anime/15689/Nekomonogatari__Kuro + images: + jpg: + image_url: https://myanimelist.net/images/anime/1170/121597.jpg + small_image_url: https://myanimelist.net/images/anime/1170/121597t.jpg + large_image_url: https://myanimelist.net/images/anime/1170/121597l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1170/121597.webp + small_image_url: https://myanimelist.net/images/anime/1170/121597t.webp + large_image_url: https://myanimelist.net/images/anime/1170/121597l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bHef90RByXI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nekomonogatari: Kuro' + - type: Synonym + title: 'Nekomonogatari Black: Tsubasa Family' + - type: Japanese + title: 猫物語(黒) + - type: English + title: Nekomonogatari Black + - type: German + title: Nekomonogatari Black + - type: Spanish + title: Nekomonogatari Black + - type: French + title: Nekomonogatari Black + title: 'Nekomonogatari: Kuro' + title_english: Nekomonogatari Black + title_japanese: 猫物語(黒) + title_synonyms: + - 'Nekomonogatari Black: Tsubasa Family' + type: TV Special + source: Light novel + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2012-12-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 12 + year: 2012 + to: + day: null + month: null + year: null + string: Dec 31, 2012 + duration: 27 min per ep + rating: R - 17+ (violence & profanity) + score: 7.92 + scored_by: 358096 + rank: 896 + popularity: 426 + members: 589825 + favorites: 1325 + synopsis: |- + After surviving a vampire attack, Koyomi Araragi notices that his friend and savior, Tsubasa Hanekawa, has been acting strange. When he happens to cross paths with her on his way to a bookstore and sees she has a bandage on her face, he knows something must definitely be wrong. Araragi wants to help her, but Hanekawa assures him that her wound is just something she received at home and that he should not concern himself with it. But when a white cat with no tail is hit and killed by a car, the pair bury the creature and the real trouble begins. + + When Araragi later pays a visit to his friend Meme Oshino and recounts the day's events, he is informed what they have buried is actually an apparition, one perfect for Hanekawa in her current state. Tasked with finding his friend to confirm her safety, he discovers that she has attacked her parents, possessed by the "Sawari Neko." Now, it is up to Araragi to help Hanekawa as she once helped him. + + [Written by MAL Rewrite] + background: 'Nekomonogatari: Kuro adapts the sixth and final volume of NisiOisiN''s Monogatari Series: First Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 3785 + url: https://myanimelist.net/anime/3785/Evangelion_Movie_3__Q + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/43201.jpg + small_image_url: https://myanimelist.net/images/anime/9/43201t.jpg + large_image_url: https://myanimelist.net/images/anime/9/43201l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/43201.webp + small_image_url: https://myanimelist.net/images/anime/9/43201t.webp + large_image_url: https://myanimelist.net/images/anime/9/43201l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pwLw2hNNz2M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Evangelion Movie 3: Q' + - type: Synonym + title: 'Evangelion Shin Gekijouban: Kyuu' + - type: Synonym + title: 'Rebuild of Evangelion: 3.0' + - type: Synonym + title: 'Evangelion: 3.0 Q Quickening' + - type: Synonym + title: Evangelion 3.33 + - type: Japanese + title: ヱヴァンゲリヲン新劇場版:Q + - type: English + title: 'Evangelion: 3.0 You Can (Not) Redo' + - type: German + title: 'Evangelion: 3.33 You Can (Not) Redo' + - type: Spanish + title: 'Evangelion: 3.33 You Can (not) Redo' + - type: French + title: 'Evangelion: 3.33 You Can (Not) Redo' + title: 'Evangelion Movie 3: Q' + title_english: 'Evangelion: 3.0 You Can (Not) Redo' + title_japanese: ヱヴァンゲリヲン新劇場版:Q + title_synonyms: + - 'Evangelion Shin Gekijouban: Kyuu' + - 'Rebuild of Evangelion: 3.0' + - 'Evangelion: 3.0 Q Quickening' + - Evangelion 3.33 + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-11-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 11 + year: 2012 + to: + day: null + month: null + year: null + string: Nov 17, 2012 + duration: 1 hr 35 min + rating: PG-13 - Teens 13 or older + score: 7.67 + scored_by: 296952 + rank: 1546 + popularity: 532 + members: 492331 + favorites: 2251 + synopsis: |- + Fourteen years after the Third Impact, the Earth is a post-apocalyptic wasteland, human civilization is in ruins, and the people Shinji Ikari knows are almost unrecognizable. Trapped inside Evangelion Unit-01, he is recovered from space by Asuka Langley Shikinami and Mari Illustrious Makinami, only to find himself a prisoner of WILLE, a military faction led by his former guardian Misato Katsuragi. Cold and bitter, his former allies view him with suspicion and refuse to support him as he comes to terms with the consequences of his actions. + + A hurt and confused Shinji is rescued from WILLE by Rei Ayanami and returned to NERV headquarters. There, he meets and quickly befriends the enigmatic Kaworu Nagisa, who offers him warmth and insight into the state of NERV's war with the Angels. But Shinji and Kaworu's brief respite lies on the eve of a new battle, one in which Shinji finds that his enemies are no longer Angels but former comrades. In this bitter confrontation to determine the future of the world, Shinji will learn first-hand that the past truly cannot be undone. + + [Written by MAL Rewrite] + background: 'Evangelion Movie 3: Q earned Japan''s second-highest weekend box office of 2012 with 1,1 billion yen. The + film subsequently grossed the equivalent of over 6 billion yen at box office. The film won the Award of Excellence + in the animation category at the 17th Japan Media Arts Festival.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 47 + type: anime + name: Khara + url: https://myanimelist.net/anime/producer/47/Khara + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 13663 + url: https://myanimelist.net/anime/13663/To_LOVE-Ru_Darkness + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/42217.jpg + small_image_url: https://myanimelist.net/images/anime/8/42217t.jpg + large_image_url: https://myanimelist.net/images/anime/8/42217l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/42217.webp + small_image_url: https://myanimelist.net/images/anime/8/42217t.webp + large_image_url: https://myanimelist.net/images/anime/8/42217l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/48QoMhZKYvg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: To LOVE-Ru Darkness + - type: Synonym + title: To LOVE-Ru Trouble Darkness + - type: Synonym + title: To-Love-Ru Darkness + - type: Synonym + title: ToLoveRu Darkness + - type: Japanese + title: To LOVEる -とらぶる- ダークネス + - type: English + title: To LOVE Ru Darkness + - type: German + title: To Love Ru Darkness + - type: French + title: To Love Ru Darkness + title: To LOVE-Ru Darkness + title_english: To LOVE Ru Darkness + title_japanese: To LOVEる -とらぶる- ダークネス + title_synonyms: + - To LOVE-Ru Trouble Darkness + - To-Love-Ru Darkness + - ToLoveRu Darkness + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-10-06T00:00:00+00:00' + to: '2012-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2012 + to: + day: 29 + month: 12 + year: 2012 + string: Oct 6, 2012 to Dec 29, 2012 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.41 + scored_by: 211041 + rank: 2702 + popularity: 689 + members: 394549 + favorites: 2174 + synopsis: |- + As close encounters of the twisted kind between the residents of the planet Deviluke (represented primarily by the female members of the royal family) and the inhabitants of Earth (represented mainly by one very exhausted Rito Yuuki) continue to escalate, the situation spirals even further out of control. When junior princesses Nana and Momo transferred into Earth School where big sister Lala can (theoretically) keep an eye on them, things SHOULD be smooth sailing. But when Momo decides she'd like to "supplement" Rito's relationship with Lala with a little "sisterly love," you know Lala's not going to waste any time splitting harems. Unfortunately, it's just about that point that Yami, the Golden Darkness, enters the scene with all the subtleness of a supernova, along with an army of possessed high school students! All of which is certain to make Rito's life suck more than a black hole at the family picnic. Unless, of course, a certain semi-demonic princess can apply a little of her Devilukean Whoop Ass to exactly that portion of certain other heavenly bodies! + + (Source: Sentai Filmworks) + background: '' + season: fall + year: 2012 + broadcast: + day: Saturdays + time: 01:00 + timezone: Asia/Tokyo + string: Saturdays at 01:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15417 + url: https://myanimelist.net/anime/15417/Gintama__Enchousen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1452/123686.jpg + small_image_url: https://myanimelist.net/images/anime/1452/123686t.jpg + large_image_url: https://myanimelist.net/images/anime/1452/123686l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1452/123686.webp + small_image_url: https://myanimelist.net/images/anime/1452/123686t.webp + large_image_url: https://myanimelist.net/images/anime/1452/123686l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gintama'': Enchousen' + - type: Synonym + title: Gintama' (2012) + - type: Synonym + title: Gintama' Overdrive + - type: Synonym + title: Kintama + - type: Synonym + title: Gintama Season 3 + - type: Japanese + title: 銀魂' 延長戦 + - type: English + title: 'Gintama: Enchousen' + title: 'Gintama'': Enchousen' + title_english: 'Gintama: Enchousen' + title_japanese: 銀魂' 延長戦 + title_synonyms: + - Gintama' (2012) + - Gintama' Overdrive + - Kintama + - Gintama Season 3 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-04T00:00:00+00:00' + to: '2013-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2012 + to: + day: 28 + month: 3 + year: 2013 + string: Oct 4, 2012 to Mar 28, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 9.02 + scored_by: 179535 + rank: 12 + popularity: 763 + members: 358400 + favorites: 3185 + synopsis: |- + While Gintoki Sakata was away, the Yorozuya found themselves a new leader: Kintoki, Gintoki's golden-haired doppelganger. In order to regain his former position, Gintoki will need the help of those around him, a troubling feat when no one can remember him! Between Kintoki and Gintoki, who will claim the throne as the main character? + + In addition, Yorozuya make a trip back down to red-light district of Yoshiwara to aid an elderly courtesan in her search for her long-lost lover. Although the district is no longer in chains beneath the earth's surface, the trio soon learn of the tragic backstories of Yoshiwara's inhabitants that still haunt them. With flashback after flashback, this quest has Yorozuya witnessing everlasting love and protecting it as best they can with their hearts and souls. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Thursdays + time: '18:00' + timezone: Asia/Tokyo + string: Thursdays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1406 + type: anime + name: Miracle Bus + url: https://myanimelist.net/anime/producer/1406/Miracle_Bus + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 11703 + url: https://myanimelist.net/anime/11703/Code_Breaker + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/57251.jpg + small_image_url: https://myanimelist.net/images/anime/13/57251t.jpg + large_image_url: https://myanimelist.net/images/anime/13/57251l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/57251.webp + small_image_url: https://myanimelist.net/images/anime/13/57251t.webp + large_image_url: https://myanimelist.net/images/anime/13/57251l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gLvfOYvgFpA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Code:Breaker + - type: Synonym + title: Code Breaker + - type: Japanese + title: CØDE:BREAKER + - type: English + title: Code:Breaker + title: Code:Breaker + title_english: Code:Breaker + title_japanese: CØDE:BREAKER + title_synonyms: + - Code Breaker + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2012-10-07T00:00:00+00:00' + to: '2012-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2012 + to: + day: 23 + month: 12 + year: 2012 + string: Oct 7, 2012 to Dec 23, 2012 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.71 + scored_by: 168554 + rank: 6848 + popularity: 774 + members: 355044 + favorites: 698 + synopsis: |- + Although cheerful and delicate, Sakura Sakurakouji is a skilled martial artist with a sense of fairness that never falters—no matter the situation. Upon witnessing people burning in blue flames while on a bus ride home, she calls the police to bring their murderer to justice only to find that no evidence remains. However, all her doubts about what she saw vanish when the next day, the new transfer student Rei Oogami joins her class; he is the very boy she watched commit murder in cold blood. + + Rei is kind, sweet, and quickly becomes popular, contradicting Sakura's accusations. Soon enough, she learns his true nature: a Code Breaker, or "one who does not exist." To Sakura's shock, Rei—armed with mysterious powers—seeks to exact justice according to the principle of "an eye for an eye." Determined to bring Rei to the right path, Sakura keeps close to him in the hopes of redeeming him from his ways before others are hurt. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Sundays + time: 02:58 + timezone: Asia/Tokyo + string: Sundays at 02:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 12365 + url: https://myanimelist.net/anime/12365/Bakuman_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/41845.jpg + small_image_url: https://myanimelist.net/images/anime/6/41845t.jpg + large_image_url: https://myanimelist.net/images/anime/6/41845l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/41845.webp + small_image_url: https://myanimelist.net/images/anime/6/41845t.webp + large_image_url: https://myanimelist.net/images/anime/6/41845l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bakuman. 3rd Season + - type: Synonym + title: Bakuman Season 3 + - type: Japanese + title: バクマン。 + - type: English + title: Bakuman. Season 3 + title: Bakuman. 3rd Season + title_english: Bakuman. Season 3 + title_japanese: バクマン。 + title_synonyms: + - Bakuman Season 3 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2012-10-06T00:00:00+00:00' + to: '2013-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2012 + to: + day: 30 + month: 3 + year: 2013 + string: Oct 6, 2012 to Mar 30, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.52 + scored_by: 203933 + rank: 152 + popularity: 793 + members: 348410 + favorites: 2943 + synopsis: |- + Onto their third serialization, manga duo Moritaka Mashiro and Akito Takagi—also known by their pen name, Muto Ashirogi—are ever closer to their dream of an anime adaption. However, the real challenge is only just beginning: if they are unable to compete with the artist Eiji Niizuma in the rankings within the span of six months, they will be canceled. To top it off, numerous rivals are close behind and declaring war. They don't even have enough time to spare thinking about an anime! + + In Bakuman. 3rd Season, Muto Ashirogi must find a way to stay atop the colossal mountain known as the Shounen Jack rankings. With new problems and new assistants, the pair continue to strive for their dream. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14131 + url: https://myanimelist.net/anime/14131/Girls___Panzer + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/40969.jpg + small_image_url: https://myanimelist.net/images/anime/9/40969t.jpg + large_image_url: https://myanimelist.net/images/anime/9/40969l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/40969.webp + small_image_url: https://myanimelist.net/images/anime/9/40969t.webp + large_image_url: https://myanimelist.net/images/anime/9/40969l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/53UXAffRPkg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Girls & Panzer + - type: Synonym + title: Garupan + - type: Synonym + title: Girls und Panzer + - type: Japanese + title: ガールズ&パンツァー + - type: English + title: Girls und Panzer + - type: Spanish + title: Girls und Panzer + - type: French + title: Girls und Panzer + title: Girls & Panzer + title_english: Girls und Panzer + title_japanese: ガールズ&パンツァー + title_synonyms: + - Garupan + - Girls und Panzer + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-10-09T00:00:00+00:00' + to: '2013-03-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2012 + to: + day: 25 + month: 3 + year: 2013 + string: Oct 9, 2012 to Mar 25, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 163071 + rank: 2003 + popularity: 836 + members: 335340 + favorites: 6348 + synopsis: |- + "Senshadou" is a traditional sport using World War II era tanks in elimination-based matches. Widely practiced by women and girls alike, it's advertised as a form of art geared towards making ladies more prominent in culture and appealing to men. Becoming a worldwide phenomenon over time, the influence of senshadou leads to the creation of a world championship which will soon be held in Japan. + + Miho Nishizumi, who comes from a lineage of well-respected senshadou specialists, is at odds with the sport after a traumatic event led to her retirement and eventually a rift to form between her and her family. To steer clear of the practice as much as possible, she transfers to Ooarai Girls Academy where the senshadou program has been abolished. However, with the news of the upcoming championships, the school revives their tankery program, and Miho is pushed into joining. + + Now, with the aid of some new friends, she must overcome her past and once again take command of a squadron of tanks in an effort to save her school from closure, all while proving to her family that the Nishizumi-style of senshadou is not solely about victory. + + [Written by MAL Rewrite] + background: Due to the anime's popularity, the town of Oarai of the Ibaraki prefecture incorporated activities inspired + by the series, including live tank demonstrations, into its annual spring festival. The Crunchyroll simulcast did + not feature a scene with the song "Katyusha" in episode 8, due to licensing issues. + season: fall + year: 2012 + broadcast: + day: Tuesdays + time: 01:00 + timezone: Asia/Tokyo + string: Tuesdays at 01:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 60 + type: anime + name: Actas + url: https://myanimelist.net/anime/producer/60/Actas + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14199 + url: https://myanimelist.net/anime/14199/Oniichan_dakedo_Ai_sae_Areba_Kankeinai_yo_ne + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/42111.jpg + small_image_url: https://myanimelist.net/images/anime/6/42111t.jpg + large_image_url: https://myanimelist.net/images/anime/6/42111l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/42111.webp + small_image_url: https://myanimelist.net/images/anime/6/42111t.webp + large_image_url: https://myanimelist.net/images/anime/6/42111l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oniichan dakedo Ai sae Areba Kankeinai yo ne! + - type: Synonym + title: As Long as There's Love + - type: Synonym + title: It Doesn't Matter If He Is My Brother + - type: Synonym + title: Right? + - type: Japanese + title: お兄ちゃんだけど愛さえあれば関係ないよねっ + - type: English + title: OniAi + - type: German + title: OniAi + - type: Spanish + title: OniAi + - type: French + title: OniAi + title: Oniichan dakedo Ai sae Areba Kankeinai yo ne! + title_english: OniAi + title_japanese: お兄ちゃんだけど愛さえあれば関係ないよねっ + title_synonyms: + - As Long as There's Love + - It Doesn't Matter If He Is My Brother + - Right? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2012-10-05T00:00:00+00:00' + to: '2012-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2012 + to: + day: 21 + month: 12 + year: 2012 + string: Oct 5, 2012 to Dec 21, 2012 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.42 + scored_by: 144606 + rank: 8663 + popularity: 862 + members: 326862 + favorites: 515 + synopsis: |- + After their parents' deaths, brother and sister Akito and Akiko Himenokouji were forced to live with separate families for six years. But now they have finally reunited and begin to live together. It quickly becomes apparent that Akiko harbors romantic feelings for her brother; however, Akito only sees her as a sibling. + + When three more girls—Anastasia Nasuhara, Arashi Nikaidou, and Ginbei Haruomi Sawatari—move into their apartment, Akiko's hopes of living alone with her brother vanish. Moreover, these girls also like Akito in one way or another, making it even more difficult for Akiko to gain her brother's undivided attention. As the girls fight over who should take care of Akito, they display various eroticisms that may be a little too much for a normal man to handle. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12859 + url: https://myanimelist.net/anime/12859/One_Piece_Film__Z + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/44297.jpg + small_image_url: https://myanimelist.net/images/anime/6/44297t.jpg + large_image_url: https://myanimelist.net/images/anime/6/44297l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/44297.webp + small_image_url: https://myanimelist.net/images/anime/6/44297t.webp + large_image_url: https://myanimelist.net/images/anime/6/44297l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1gGt1Mg_zSo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece Film: Z' + - type: Synonym + title: One Piece Movie 12 + - type: Japanese + title: "ワンピース フィルム \uFEFFZ" + - type: English + title: 'One Piece Film: Z' + - type: Spanish + title: One Piece Film Z + - type: French + title: One Piece Film Z + title: 'One Piece Film: Z' + title_english: 'One Piece Film: Z' + title_japanese: "ワンピース フィルム \uFEFFZ" + title_synonyms: + - One Piece Movie 12 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-12-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 12 + year: 2012 + to: + day: null + month: null + year: null + string: Dec 15, 2012 + duration: 1 hr 47 min + rating: PG-13 - Teens 13 or older + score: 8.1 + scored_by: 198697 + rank: 598 + popularity: 895 + members: 316420 + favorites: 671 + synopsis: |- + The Straw Hat Pirates enter the rough seas of the New World in search of the hidden treasures of the Pirate King, Gol D. Roger-One Piece. On their voyage, the pirates come across a terrifying, powerful man, former Marine Admiral Z. + + Z is accused of having stolen the "Dyna Stones", weapons believed to have the power to shake up the New World. The Marine Headquarters believes Z is about to use it to end the pirate era, and with it, the lives of many innocent people. In fear of such a phenomenal event, marines start to take action against the former admiral. + + Even if it means stumbling upon marines and the navy, the Straw Hat Pirates decided to chase after Z and stop him from causing havoc. As they continue to embark on their ventures, the pirates bump into new and familiar acquaintances. + background: 'A limited dual edition ticket for both One Piece Film: Z and Dragon Ball Z: Battle of Gods sold for the + screenings of both movies at ¥2,600 the year they premiered, which contained special art by the mangaka of both series. + Regular editions of the DVD/BD in Japan included one of nine different holographic stickers, while the deluxe edition + included all nine stickers as well as other bonus material.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 13655 + url: https://myanimelist.net/anime/13655/Little_Busters + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/43757.jpg + small_image_url: https://myanimelist.net/images/anime/6/43757t.jpg + large_image_url: https://myanimelist.net/images/anime/6/43757l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/43757.webp + small_image_url: https://myanimelist.net/images/anime/6/43757t.webp + large_image_url: https://myanimelist.net/images/anime/6/43757l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PyJilNDluYw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Little Busters! + - type: Synonym + title: LB! + - type: Japanese + title: リトルバスターズ! + - type: English + title: Little Busters! + title: Little Busters! + title_english: Little Busters! + title_japanese: リトルバスターズ! + title_synonyms: + - LB! + type: TV + source: Visual novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2012-10-06T00:00:00+00:00' + to: '2013-04-06T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2012 + to: + day: 6 + month: 4 + year: 2013 + string: Oct 6, 2012 to Apr 6, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 113205 + rank: 2290 + popularity: 917 + members: 307549 + favorites: 1937 + synopsis: |- + As a child, Riki Naoe shut himself from the world, thanks to a diagnosis of narcolepsy following the tragic deaths of his parents. However, Riki is saved when, one fateful day, a boy named Kyousuke recruits him into a team who call themselves the Little Busters. Accompanied by Masato, Kengo, and Rin, these misfits spend their childhood fighting evil and enjoying their youth. + + Years pass, and even in high school, the well-knit teammates remain together. Kyousuke decides to re-ignite the Little Busters by forming a baseball team as it will be his last school year with them. They have a problem though: there aren't enough members! The tables have turned, for it is now Riki's turn to reach out and recruit new friends into the Little Busters, just like Kyousuke had once done for him. + Then, an omen surfaces—Rin finds a strange letter attached to her cat, assigning them the duty of uncovering the "secret of this world" by completing specific tasks. Just what is this secret, and why is it being hidden? It's up to the Little Busters to find out! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2012 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11737 + url: https://myanimelist.net/anime/11737/Ao_no_Exorcist_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/42005.jpg + small_image_url: https://myanimelist.net/images/anime/7/42005t.jpg + large_image_url: https://myanimelist.net/images/anime/7/42005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/42005.webp + small_image_url: https://myanimelist.net/images/anime/7/42005t.webp + large_image_url: https://myanimelist.net/images/anime/7/42005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0O7b4nTRy2A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao no Exorcist Movie + - type: Synonym + title: Ao no Exorcist Gekijouban + - type: Synonym + title: Ao no Futsumashi Movie + - type: Synonym + title: Blue Exorcist Movie + - type: Japanese + title: 劇場版 青の祓魔師(エクソシスト) + - type: English + title: 'Blue Exorcist: The Movie' + - type: German + title: 'Blue Exorcist: The Movie' + - type: French + title: 'Blue Exorcist: Le Film' + title: Ao no Exorcist Movie + title_english: 'Blue Exorcist: The Movie' + title_japanese: 劇場版 青の祓魔師(エクソシスト) + title_synonyms: + - Ao no Exorcist Gekijouban + - Ao no Futsumashi Movie + - Blue Exorcist Movie + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-12-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 12 + year: 2012 + to: + day: null + month: null + year: null + string: Dec 28, 2012 + duration: 1 hr 28 min + rating: PG-13 - Teens 13 or older + score: 7.57 + scored_by: 149616 + rank: 1914 + popularity: 983 + members: 286731 + favorites: 423 + synopsis: |- + As the grand festival of True Cross Academy draws near, exwires and exorcists alike combine their efforts to banish any demon that threatens the celebrations. Among them, Rin Okumura is tasked with exorcising the soul-devouring demon known as the Phantom Train alongside his brother Yukio and Shiemi Moriyama. + + During their mission, the Phantom Train escapes its tracks and begins ravaging True Cross Academy. In the ensuing chaos, Rin encounters a childlike demon he dubs Usamaro, and begins to develop an odd friendship with it. However, Usamaro's abilities might be far more sinister than Rin initially expected. + + [Written by MAL Rewrite] + background: On July 3, 2013, Ao no Exorcist Movie was released on Blu-ray and DVD in Japan. Aniplex of America released + the film in North America on December 17, 2013 on DVD as well as in a limited edition Blu-ray box set, which contains + exclusive bonus content. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 3024 + type: anime + name: Fonishia + url: https://myanimelist.net/anime/producer/3024/Fonishia + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 16001 + url: https://myanimelist.net/anime/16001/Kokoro_Connect__Michi_Random + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/45526.jpg + small_image_url: https://myanimelist.net/images/anime/10/45526t.jpg + large_image_url: https://myanimelist.net/images/anime/10/45526l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/45526.webp + small_image_url: https://myanimelist.net/images/anime/10/45526t.webp + large_image_url: https://myanimelist.net/images/anime/10/45526l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kokoro Connect: Michi Random' + - type: Synonym + title: Kokoro Connect Episodes 14 + - type: Synonym + title: '15' + - type: Synonym + title: '16' + - type: Synonym + title: and 17 + - type: Synonym + title: 'Kokoroco: Michi Random' + - type: Japanese + title: ココロコネクト ミチランダム + - type: English + title: Kokoro Connect OVA + title: 'Kokoro Connect: Michi Random' + title_english: Kokoro Connect OVA + title_japanese: ココロコネクト ミチランダム + title_synonyms: + - Kokoro Connect Episodes 14 + - '15' + - '16' + - and 17 + - 'Kokoroco: Michi Random' + type: Special + source: Light novel + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2012-11-19T00:00:00+00:00' + to: '2012-12-10T00:00:00+00:00' + prop: + from: + day: 19 + month: 11 + year: 2012 + to: + day: 10 + month: 12 + year: 2012 + string: Nov 19, 2012 to Dec 10, 2012 + duration: 27 min per ep + rating: PG-13 - Teens 13 or older + score: 7.91 + scored_by: 177953 + rank: 912 + popularity: 1026 + members: 274604 + favorites: 841 + synopsis: |- + Not long after putting the previous supernatural incident behind them, the members of Yamaboshi Academy's Student Cultural Society (StuCS) must deal with Fuusenkazura's newest trial—emotion transmission. This phenomenon allows the club members to hear each others' true thoughts, but with one catch: the timing, sender, and recipient are all completely random. To make matters worse, the club's supervisor, Ryuuzen Gotou, may have to step down due to his responsibilities for the upcoming school year. With emotions running high and Valentine's Day around the corner, the seemingly close bonds of the StuCS will be tested when their true feelings for each other are laid bare. + + [Written by MAL Rewrite] + background: Episodes 14 and 15 aired at a special event at Cinemart Shinjuku from November 19 to 25, 2012. Episodes + 16 and 17 aired at a special event at Cinemart Shinjuku from December 10 to 16. All four episodes aired on AT-X on + December 30. The first and second pairs of episodes were released on Blu-ray on March 27 and April 17, 2013. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11979 + url: https://myanimelist.net/anime/11979/Mahou_Shoujo_Madoka★Magica_Movie_2__Eien_no_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/42265.jpg + small_image_url: https://myanimelist.net/images/anime/6/42265t.jpg + large_image_url: https://myanimelist.net/images/anime/6/42265l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/42265.webp + small_image_url: https://myanimelist.net/images/anime/6/42265t.webp + large_image_url: https://myanimelist.net/images/anime/6/42265l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wfsX27B5Gxk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari' + - type: Synonym + title: Mahou Shoujo Madoka Magika Movie 2 + - type: Synonym + title: Magical Girl Madoka Magica Movie 2 + - type: Japanese + title: 劇場版 魔法少女まどか☆マギカ 永遠の物語 + - type: English + title: 'Puella Magi Madoka Magica the Movie Part 2: Eternal' + - type: French + title: 'Puella Magi Madoka Magica-Film 2: Une histoire infinie' + title: 'Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari' + title_english: 'Puella Magi Madoka Magica the Movie Part 2: Eternal' + title_japanese: 劇場版 魔法少女まどか☆マギカ 永遠の物語 + title_synonyms: + - Mahou Shoujo Madoka Magika Movie 2 + - Magical Girl Madoka Magica Movie 2 + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2012-10-13T00:00:00+00:00' + to: null + prop: + from: + day: 13 + month: 10 + year: 2012 + to: + day: null + month: null + year: null + string: Oct 13, 2012 + duration: 1 hr 51 min + rating: PG-13 - Teens 13 or older + score: 8.38 + scored_by: 108420 + rank: 245 + popularity: 1275 + members: 220721 + favorites: 1110 + synopsis: "Though Sayaka Miki's wish was fulfilled, the unforeseen consequences that came with it overwhelm her, causing\ + \ her soul gem to become tainted as she succumbs to despair and eventually loses her humanity. Homura Akemi reveals\ + \ to Kyouko Sakura and Madoka Kaname the ultimate fate of magical girls: once their soul gem becomes tainted, it transforms\ + \ into a Grief Seed, and they are reborn as witches—a truth Homura learned only through repeating history countless\ + \ times in a bid to prevent Madoka's tragedy.\n\nKyuubey only compounds their despair when he confesses his true intentions:\ + \ to harness the energy created from magical girls and use it to prolong the life of the universe. As the threat of\ + \ Walpurgisnacht, a powerful witch, looms overhead, Homura once again vows to protect Madoka and the world from a\ + \ grim fate. \n\nCaught between honoring Homura's wish and saving the world, which one will Madoka choose in the\ + \ end?\nMahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari is a story of inescapable destiny, and an unlikely\ + \ hero who could change it all.\n\n[Written by MAL Rewrite]" + background: 'Mahou Shoujo Madoka★Magica Movie 2: Eien no Monogatari covers the last four episodes of the parent series. + It grossed more than 500 million yen at the Japanese box office.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/13-2013-winter.yaml b/test/fixtures/jikan/season_matrix/13-2013-winter.yaml new file mode 100644 index 0000000..66f8bba --- /dev/null +++ b/test/fixtures/jikan/season_matrix/13-2013-winter.yaml @@ -0,0 +1,3262 @@ +metadata: + captured_at: '2026-05-11T11:32:54Z' + label: 2013-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2013/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:53 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:1bfc099d95c1901ea9806ae0cc7b0c4faf6ff3df + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 232 + per_page: 25 + data: + - mal_id: 15315 + url: https://myanimelist.net/anime/15315/Mondaiji-tachi_ga_Isekai_kara_Kuru_Sou_desu_yo + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/43369.jpg + small_image_url: https://myanimelist.net/images/anime/12/43369t.jpg + large_image_url: https://myanimelist.net/images/anime/12/43369l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/43369.webp + small_image_url: https://myanimelist.net/images/anime/12/43369t.webp + large_image_url: https://myanimelist.net/images/anime/12/43369l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yDkUcijfoFc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mondaiji-tachi ga Isekai kara Kuru Sou desu yo? + - type: Japanese + title: 問題児たちが異世界から来るそうですよ? + - type: English + title: Problem Children Are Coming from Another World, Aren't They? + - type: German + title: Problem Children Are Coming from Another World, Aren't They? + - type: French + title: Problem Children Are Coming from Another World, Aren't They? + title: Mondaiji-tachi ga Isekai kara Kuru Sou desu yo? + title_english: Problem Children Are Coming from Another World, Aren't They? + title_japanese: 問題児たちが異世界から来るそうですよ? + title_synonyms: [] + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2013-01-12T00:00:00+00:00' + to: '2013-03-16T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2013 + to: + day: 16 + month: 3 + year: 2013 + string: Jan 12, 2013 to Mar 16, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.4 + scored_by: 325394 + rank: 2741 + popularity: 404 + members: 617883 + favorites: 3753 + synopsis: "Izayoi Sakamaki, Asuka Kudou, and You Kasukabe are extraordinary teenagers who are blessed with psychic powers\ + \ but completely fed up with their disproportionately mundane lives—until, unexpectedly, each of them receives a strange\ + \ envelope containing an invitation to a mysterious place known as Little Garden. \n\nInexplicably dropped into a\ + \ vast new world, the trio is greeted by Kurousagi, who explains that they have been given a once-in-a-lifetime chance\ + \ to participate in special high-stakes games using their abilities. In order to take part, however, they must first\ + \ join a community. Learning that Kurousagi's community \"No Names\" has lost its official status and bountiful land\ + \ due to their defeat at the hands of a demon lord, the group sets off to help reclaim their new home's dignity, eager\ + \ to protect its residents and explore the excitement that Little Garden has to offer.\n\n[Written by MAL Rewrite]" + background: Mondaiji-tachi ga Isekai Kara Kuru Sou Desu yo? was simulcast by Crunchyroll and Anime on Demand. It adapted + the first 2 volumes of the light novel with the same name. + season: winter + year: 2013 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 14749 + url: https://myanimelist.net/anime/14749/Ore_no_Kanojo_to_Osananajimi_ga_Shuraba_Sugiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/44187.jpg + small_image_url: https://myanimelist.net/images/anime/13/44187t.jpg + large_image_url: https://myanimelist.net/images/anime/13/44187l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/44187.webp + small_image_url: https://myanimelist.net/images/anime/13/44187t.webp + large_image_url: https://myanimelist.net/images/anime/13/44187l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Qxf-PCLJr-Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore no Kanojo to Osananajimi ga Shuraba Sugiru + - type: Synonym + title: Ore no Kanojo to Osananajimi ga Shuraba Sugiru + - type: Japanese + title: 俺の彼女と幼なじみが修羅場すぎる + - type: English + title: Oreshura + - type: German + title: Oreshura + - type: Spanish + title: Oreshura + - type: French + title: Oreshura + title: Ore no Kanojo to Osananajimi ga Shuraba Sugiru + title_english: Oreshura + title_japanese: 俺の彼女と幼なじみが修羅場すぎる + title_synonyms: + - Ore no Kanojo to Osananajimi ga Shuraba Sugiru + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-01-06T00:00:00+00:00' + to: '2013-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2013 + to: + day: 31 + month: 3 + year: 2013 + string: Jan 6, 2013 to Mar 31, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 307019 + rank: 5747 + popularity: 424 + members: 591907 + favorites: 1879 + synopsis: |- + The infidelity of Eita Kidou's parents not only made his family fall apart, but also made him skeptic of love. Having no intention to delve into romance, Eita devotes his entire high school life to his studies in order to become a doctor. + + It did not take long for the beautiful and popular Masuzu Natsukawa to notice Eita's apathy. Tired of being the object of people's affection, she asks him to pretend to be her boyfriend, as she too feels disgusted at the notion of love. Eita, however, refuses—yet Masuzu has one trick left up her sleeve: Eita’s journal and threatening to post the embarrassing content online if he does not comply. + + Now entangled in a fake romance with the most desired girl at school, Eita's life is turned upside down. Whether envied by his peers or receiving a confession, he must cope with his newfound relationship and all the troubles that come along with it. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14967 + url: https://myanimelist.net/anime/14967/Boku_wa_Tomodachi_ga_Sukunai_Next + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/44724.jpg + small_image_url: https://myanimelist.net/images/anime/3/44724t.jpg + large_image_url: https://myanimelist.net/images/anime/3/44724l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/44724.webp + small_image_url: https://myanimelist.net/images/anime/3/44724t.webp + large_image_url: https://myanimelist.net/images/anime/3/44724l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FvZ1bie_9WE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku wa Tomodachi ga Sukunai Next + - type: Synonym + title: Boku wa Tomodachi ga Sukunai 2nd Season + - type: Japanese + title: 僕は友達が少ないNEXT + - type: English + title: 'Haganai: I don''t have many friends NEXT' + title: Boku wa Tomodachi ga Sukunai Next + title_english: 'Haganai: I don''t have many friends NEXT' + title_japanese: 僕は友達が少ないNEXT + title_synonyms: + - Boku wa Tomodachi ga Sukunai 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-11T00:00:00+00:00' + to: '2013-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2013 + to: + day: 29 + month: 3 + year: 2013 + string: Jan 11, 2013 to Mar 29, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 336018 + rank: 3522 + popularity: 446 + members: 559999 + favorites: 1232 + synopsis: |- + The Neighbor's Club—a club founded for the purpose of making friends, where misfortunate boys and girls with few friends live out their regrettable lives. + + Although Yozora Mikazuki faced a certain incident at the end of summer, the daily life of the Neighbor's Club goes on as usual. A strange nun, members of the student council and other new faces make an appearance, causing Kodaka Hasegawa's life to grow even busier. + + While they all enjoy going to the amusement park, playing games, celebrating birthdays, and challenging the "school festival"—a symbol of the school life normal people live—the relations amongst the members slowly begins to change... + + Let the next stage begin, on this unfortunate coming-of-age love comedy!! + + (Source: ANN) + background: '' + season: winter + year: 2013 + broadcast: + day: Fridays + time: 01:55 + timezone: Asia/Tokyo + string: Fridays at 01:55 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 436 + type: anime + name: AIC Build + url: https://myanimelist.net/anime/producer/436/AIC_Build + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14833 + url: https://myanimelist.net/anime/14833/Maoyuu_Maou_Yuusha + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/46041.jpg + small_image_url: https://myanimelist.net/images/anime/4/46041t.jpg + large_image_url: https://myanimelist.net/images/anime/4/46041l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/46041.webp + small_image_url: https://myanimelist.net/images/anime/4/46041t.webp + large_image_url: https://myanimelist.net/images/anime/4/46041l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8_sC28gQYFs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maoyuu Maou Yuusha + - type: Synonym + title: Maoyu Maou Yusha + - type: Japanese + title: まおゆう魔王勇者 + - type: English + title: Maoyu + - type: German + title: Maoyu + - type: Spanish + title: Maoyu + - type: French + title: Maoyu + title: Maoyuu Maou Yuusha + title_english: Maoyu + title_japanese: まおゆう魔王勇者 + title_synonyms: + - Maoyu Maou Yusha + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-05T00:00:00+00:00' + to: '2013-03-30T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2013 + to: + day: 30 + month: 3 + year: 2013 + string: Jan 5, 2013 to Mar 30, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 235701 + rank: 3768 + popularity: 483 + members: 527759 + favorites: 1584 + synopsis: |- + Fifteen years have passed since the war between humans and demons began. Dissatisfied with their slow advance into the Demon Realm, the Hero abandons his companions to quickly forge ahead towards the Demon Queen's castle. Upon his arrival at the royal abode, the Hero makes a startling discovery: not only is the Demon Queen a woman of unparalleled beauty, but she also seeks the Hero's help. Confused by this unexpected turn of events, the Hero refuses to ally himself with his enemy, claiming that the war the demons have waged is tearing the Southern Nations apart. + + However, the Demon Queen rebuts, arguing that the war has not only united humanity but has also brought them wealth and prosperity, providing evidence to support her claims. Furthermore, she explains that if the war were to end, the supplies sent by the Central Nations in aid to the Southern Nations would cease, leaving hundreds of thousands to starve. Fortunately, she offers the Hero a way to end the war while bringing hope not only to the Southern Nations, but also to the rest of the world, though she will need his assistance to make this a reality. + + Finally convinced, the Hero agrees to join his now former enemy in her quest. Vowing to stay together through sickness and health, they set off for the human world. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: null + time: null + timezone: null + string: Saturdays at Unknown + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 15051 + url: https://myanimelist.net/anime/15051/Love_Live_School_Idol_Project + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/56849.jpg + small_image_url: https://myanimelist.net/images/anime/11/56849t.jpg + large_image_url: https://myanimelist.net/images/anime/11/56849l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/56849.webp + small_image_url: https://myanimelist.net/images/anime/11/56849t.webp + large_image_url: https://myanimelist.net/images/anime/11/56849l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Yl5Kwi-uqQY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Love Live! School Idol Project + - type: Japanese + title: ラブライブ! School idol project + - type: English + title: Love Live! School Idol Project + title: Love Live! School Idol Project + title_english: Love Live! School Idol Project + title_japanese: ラブライブ! School idol project + title_synonyms: [] + type: TV + source: Other + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-01-06T00:00:00+00:00' + to: '2013-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2013 + to: + day: 31 + month: 3 + year: 2013 + string: Jan 6, 2013 to Mar 31, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.41 + scored_by: 236486 + rank: 2678 + popularity: 558 + members: 470824 + favorites: 8303 + synopsis: |- + Otonokizaka High School is in a crisis! With the number of enrolling students dropping lower and lower every year, the school is set to shut down after its current first years graduate. However, second year Honoka Kousaka refuses to let it go without a fight. Searching for a solution, she comes across popular school idol group A-RISE and sets out to create a school idol group of her own. With the help of her childhood friends Umi Sonoda and Kotori Minami, Honoka forms μ's (pronounced "muse") to boost awareness and popularity of her school. + + Unfortunately, it's all easier said than done. Student council president Eri Ayase vehemently opposes the establishment of a school idol group and will do anything in her power to prevent its creation. Moreover, Honoka and her friends have trouble attracting any additional members. But the Love Live, a competition to determine the best and most beloved school idol groups in Japan, can help them gain the attention they desperately need. With the contest fast approaching, Honoka must act quickly and diligently to try and bring together a school idol group and win the Love Live in order to save Otonokizaka High School. + + [Written by MAL Rewrite] + background: Love Live! School Idol Project is a part of the "Love Live!" multimedia franchise, co-developed with Dengeki + G's Magazine. In 2015, idol group μ's was Japan's eighth best-selling musical act, selling over eight hundred thousand + CDs, DVDs, and Blu-Rays. The series also released a mobile rhythm game titled Love Live! School Idol Festival for + iOS and Android, developed by KLab, which was released in 2013 for Japan and in 2014 for English users. As of March + 22, 2016, the game has surpassed 25 million users worldwide. + season: winter + year: 2013 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 16417 + url: https://myanimelist.net/anime/16417/Tamako_Market + images: + jpg: + image_url: https://myanimelist.net/images/anime/1669/122434.jpg + small_image_url: https://myanimelist.net/images/anime/1669/122434t.jpg + large_image_url: https://myanimelist.net/images/anime/1669/122434l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1669/122434.webp + small_image_url: https://myanimelist.net/images/anime/1669/122434t.webp + large_image_url: https://myanimelist.net/images/anime/1669/122434l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/J3FKBptrP10?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tamako Market + - type: Japanese + title: たまこまーけっと + - type: English + title: Tamako Market + title: Tamako Market + title_english: Tamako Market + title_japanese: たまこまーけっと + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-10T00:00:00+00:00' + to: '2013-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2013 + to: + day: 28 + month: 3 + year: 2013 + string: Jan 10, 2013 to Mar 28, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.41 + scored_by: 188342 + rank: 2698 + popularity: 568 + members: 463791 + favorites: 1719 + synopsis: |- + Inside the Usagiyama Shopping District lies an eccentric but close-knit community of business owners. Tamako Kitashirakawa, a clumsy though adorable teenage girl, belongs to a family of mochi bakers who own a quaint shop called Tama-ya. One day, Tamako stumbles upon a talking bird that presents himself as royalty from a distant land. Dera Mochimazzi, as he calls himself, states that he’s seeking a bride for his country’s prince. Intent on his mission, Dera follows Tamako home and develops an addiction to mochi, becoming painfully overweight and subsequently unable to fly back to his homeland; thus, he takes up residence with Tamako's family and becomes the community’s beloved mascot. + + Meanwhile, Tamako's friend, Mochizou Ooji, continues to hide his true feelings for her. Their fathers are fierce mochi rivals, but will it be enough to drive a wedge between Tamako and Mochizou? And just what will happen to Dera's task of finding his prince’s destined bride? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + - mal_id: 15379 + url: https://myanimelist.net/anime/15379/Kotoura-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75585.jpg + small_image_url: https://myanimelist.net/images/anime/10/75585t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75585l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75585.webp + small_image_url: https://myanimelist.net/images/anime/10/75585t.webp + large_image_url: https://myanimelist.net/images/anime/10/75585l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LMPFyusWR0g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kotoura-san + - type: Synonym + title: Kotoura-san + - type: Japanese + title: 琴浦さん + - type: English + title: The Troubled Life of Miss Kotoura + - type: German + title: Kotoura-San + - type: Spanish + title: Kotoura-San + - type: French + title: Kotoura-San + title: Kotoura-san + title_english: The Troubled Life of Miss Kotoura + title_japanese: 琴浦さん + title_synonyms: + - Kotoura-san + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-11T00:00:00+00:00' + to: '2013-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2013 + to: + day: 29 + month: 3 + year: 2013 + string: Jan 11, 2013 to Mar 29, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 187750 + rank: 4278 + popularity: 754 + members: 365839 + favorites: 1136 + synopsis: |- + Since childhood, Haruka Kotoura's classmates have seen her as a creepy and monstrous person. This is due to her ability to read other people's minds—the same ability that drove her parents away, leaving her alone with her grandfather. As a result, she has grown accustomed to the bitter treatment by the people around her, becoming completely cold and unsociable to others. + + However, everything starts to change when Haruka transfers to a new school. While most are off put by her as usual, she meets Yoshihisa Manabe, who finds her power astonishing. Yoshihisa then proceeds to befriend Haruka, promising to never leave her no matter what happens. + + Haruka's new experiences of social belonging thus begin, meeting new friends and learning to open herself along the way. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: Fridays + time: 02:00 + timezone: Asia/Tokyo + string: Fridays at 02:00 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 146 + type: anime + name: CBC Television + url: https://myanimelist.net/anime/producer/146/CBC_Television + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 1306 + type: anime + name: AIC Classic + url: https://myanimelist.net/anime/producer/1306/AIC_Classic + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 14349 + url: https://myanimelist.net/anime/14349/Little_Witch_Academia + images: + jpg: + image_url: https://myanimelist.net/images/anime/1890/147903.jpg + small_image_url: https://myanimelist.net/images/anime/1890/147903t.jpg + large_image_url: https://myanimelist.net/images/anime/1890/147903l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1890/147903.webp + small_image_url: https://myanimelist.net/images/anime/1890/147903t.webp + large_image_url: https://myanimelist.net/images/anime/1890/147903l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/siI44zxkRUs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Little Witch Academia + - type: Synonym + title: Wakate Animator Ikusei Project + - type: Synonym + title: 2012 Young Animator Training Project + - type: Synonym + title: Anime Mirai 2012 + - type: Synonym + title: LWA + - type: Japanese + title: リトルウィッチアカデミア + title: Little Witch Academia + title_english: null + title_japanese: リトルウィッチアカデミア + title_synonyms: + - Wakate Animator Ikusei Project + - 2012 Young Animator Training Project + - Anime Mirai 2012 + - LWA + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-03-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 3 + year: 2013 + to: + day: null + month: null + year: null + string: Mar 2, 2013 + duration: 26 min + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 180887 + rank: 1182 + popularity: 868 + members: 325501 + favorites: 1399 + synopsis: "For young witches everywhere, the world-renowned witch Shiny Chariot reigns as the most revered and celebrated\ + \ role model. But as the girls age, so do their opinions of her—now just the mention of Chariot would get a witch\ + \ labeled a child. However, undeterred in her blind admiration for Chariot, ordinary girl Atsuko Kagari enrolls into\ + \ Luna Nova Magical Academy, hoping to someday become just as mesmerizing as her idol.\n\nHowever, the witch academy\ + \ isn't all the fun and games Atsuko thought it would be: boring lectures, strict teachers, and students who mock\ + \ Chariot plague the campus. Coupled with her own ineptness in magic, she's seen as little more than a rebel student.\ + \ But when a chance finally presents itself to prove herself to her peers and teachers, she takes it, and now it's\ + \ up to her to stop a rampaging dragon before it flattens the entire academy. \n\n[Written by MAL Rewrite]" + background: Little Witch Academia is one of the four anime works that each received 38 million yen (about US$480,000) + from the "2012 Young Animator Training Project." Just like in 2010 and 2011, the animation labor group received 214.5 + million yen (US$2.65 million) from the Japanese government's Agency for Cultural Affairs, and it distributed most + of those funds to studios who train young animators on-the-job. Positive response to the movie led Studio Trigger + to run a Kickstarter funding a sequel, which surpassed its funding goal. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + licensors: [] + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15085 + url: https://myanimelist.net/anime/15085/Amnesia + images: + jpg: + image_url: https://myanimelist.net/images/anime/1311/128738.jpg + small_image_url: https://myanimelist.net/images/anime/1311/128738t.jpg + large_image_url: https://myanimelist.net/images/anime/1311/128738l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1311/128738.webp + small_image_url: https://myanimelist.net/images/anime/1311/128738t.webp + large_image_url: https://myanimelist.net/images/anime/1311/128738l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cJOPc9sxUFI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Amnesia + - type: Japanese + title: AMNESIA + - type: English + title: Amnesia + title: Amnesia + title_english: Amnesia + title_japanese: AMNESIA + title_synonyms: [] + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-07T00:00:00+00:00' + to: '2013-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2013 + to: + day: 25 + month: 3 + year: 2013 + string: Jan 7, 2013 to Mar 25, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.97 + scored_by: 155589 + rank: 11122 + popularity: 911 + members: 310363 + favorites: 1074 + synopsis: |- + After fainting at work, a young lady awakens in the back room of the café she works at with no memory of her life or those around her. Two of her friends, whom she soon learns are named Shin and Toma, are called to help her get home safely. Once she is alone, she meets a spectral boy named Orion that only she can see and hear. He explains that she lost her memories because of his chance visit to her world, so he vows to help her remember who she is. + + However, regaining her departed memories without worrying those around her may be more difficult than she realizes. In addition to the gloomy Shin and the protective Toma, she must be wary of arousing the suspicions of the captivating Ikki, the quick-witted Kent, and a mysterious man who lurks in the distance. As her amnesia entangles her in the lives of each of these men, her fragmented memories return piece by piece, and the mysteries of her circumstances slowly come to light. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + demographics: [] + - mal_id: 14397 + url: https://myanimelist.net/anime/14397/Chihayafuru_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/47435.jpg + small_image_url: https://myanimelist.net/images/anime/6/47435t.jpg + large_image_url: https://myanimelist.net/images/anime/6/47435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/47435.webp + small_image_url: https://myanimelist.net/images/anime/6/47435t.webp + large_image_url: https://myanimelist.net/images/anime/6/47435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GKuHlE7-H00?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chihayafuru 2 + - type: Synonym + title: Chihayafull 2 + - type: Japanese + title: ちはやふる 2 + - type: German + title: Chihayafuru Staffel 2 + - type: French + title: Chihayafuru Saison 2 + title: Chihayafuru 2 + title_english: null + title_japanese: ちはやふる 2 + title_synonyms: + - Chihayafull 2 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-01-12T00:00:00+00:00' + to: '2013-06-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2013 + to: + day: 29 + month: 6 + year: 2013 + string: Jan 12, 2013 to Jun 29, 2013 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.38 + scored_by: 138759 + rank: 240 + popularity: 1116 + members: 253216 + favorites: 1664 + synopsis: |- + Chihaya Ayase is obsessed with developing her school's competitive karuta club, nursing daunting ambitions like winning the national team championship at the Omi Jingu and becoming the Queen, the best female karuta player in Japan—and in extension, the world. As their second year of high school rolls around, Chihaya and her fellow teammates must recruit new members, train their minds and bodies alike, and battle the formidable opponents that stand in their way to the championship title. Meanwhile, Chihaya's childhood friend, Arata Wataya, the prodigy who introduced her to karuta, rediscovers his lost love for the old card game. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: Saturdays + time: 01:53 + timezone: Asia/Tokyo + string: Saturdays at 01:53 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 14353 + url: https://myanimelist.net/anime/14353/Death_Billiards + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/48721.jpg + small_image_url: https://myanimelist.net/images/anime/11/48721t.jpg + large_image_url: https://myanimelist.net/images/anime/11/48721l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/48721.webp + small_image_url: https://myanimelist.net/images/anime/11/48721t.webp + large_image_url: https://myanimelist.net/images/anime/11/48721l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BhmQ7pHlyo0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Death Billiards + - type: Synonym + title: Wakate Animator Ikusei Project + - type: Synonym + title: 2012 Young Animator Training Project + - type: Synonym + title: Anime Mirai 2012 + - type: Japanese + title: デス・ビリヤード + - type: English + title: Death Billiards + title: Death Billiards + title_english: Death Billiards + title_japanese: デス・ビリヤード + title_synonyms: + - Wakate Animator Ikusei Project + - 2012 Young Animator Training Project + - Anime Mirai 2012 + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-03-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 3 + year: 2013 + to: + day: null + month: null + year: null + string: Mar 2, 2013 + duration: 25 min + rating: R - 17+ (violence & profanity) + score: 7.87 + scored_by: 143551 + rank: 1005 + popularity: 1119 + members: 252819 + favorites: 344 + synopsis: "Two men have just arrived at a location known as Quindecim and are unable to remember how they got there.\ + \ They are immediately greeted by a young woman who escorts them to a small bar, where a bartender awaits them. They\ + \ are told that they will have to participate in a game, randomly chosen by roulette, and will be unable to leave\ + \ until its completion; if they refuse, the consequences will be dire. In addition to the rules of the game, the two\ + \ men are told to play as if their lives are at stake.\n \nThe game that has been chosen is billiards. But there's\ + \ more to it than just pocketing pool balls, as the two are about to find out the outcome could mean life or death.\n\ + \n[Written by MAL Rewrite]" + background: Death Billiards is one of the four anime works that each received 38 million yen (about US$480,000) from + the "2012 Young Animator Training Project." Just like in 2010 and 2011, the animation labor group received 214.5 million + yen (US$2.65 million) from the Japanese government's Agency for Cultural Affairs, and it distributed most of those + funds to studios who train young animators on-the-job. The film was later expanded into the 2015 TV anime Death Parade. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 2912 + type: anime + name: Three S Studio + url: https://myanimelist.net/anime/producer/2912/Three_S_Studio + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 12115 + url: https://myanimelist.net/anime/12115/Berserk__Ougon_Jidai-hen_III_-_Kourin + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/41305.jpg + small_image_url: https://myanimelist.net/images/anime/12/41305t.jpg + large_image_url: https://myanimelist.net/images/anime/12/41305l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/41305.webp + small_image_url: https://myanimelist.net/images/anime/12/41305t.webp + large_image_url: https://myanimelist.net/images/anime/12/41305l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/36IMbYmdSWM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Berserk: Ougon Jidai-hen III - Kourin' + - type: Synonym + title: Berserk Movie + - type: Synonym + title: Berserk Saga + - type: Synonym + title: 'Berserk: Golden Age Arc III - Descent' + - type: Japanese + title: ベルセルク 黄金時代篇Ⅲ 降臨 + - type: English + title: 'Berserk: The Golden Age Arc III - The Advent' + - type: German + title: 'Berserk: Das goldene Zeitalter III' + - type: Spanish + title: 'Berserk: La Edad de Oro III. El Advenimiento' + - type: French + title: 'Berserk: L''Age d''Or Partie III - L''Avent' + title: 'Berserk: Ougon Jidai-hen III - Kourin' + title_english: 'Berserk: The Golden Age Arc III - The Advent' + title_japanese: ベルセルク 黄金時代篇Ⅲ 降臨 + title_synonyms: + - Berserk Movie + - Berserk Saga + - 'Berserk: Golden Age Arc III - Descent' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-02-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 2 + year: 2013 + to: + day: null + month: null + year: null + string: Feb 1, 2013 + duration: 1 hr 52 min + rating: R+ - Mild Nudity + score: 8.21 + scored_by: 153702 + rank: 425 + popularity: 1146 + members: 247435 + favorites: 1699 + synopsis: |- + The Band of the Hawk has dwindled in the year since Guts left them on his journey to forge his own destiny. Unaware of their fate, Guts returns to the Hawks—now being led by his former ally Casca—after a rumor about them passes his way. Once the saviors of the kingdom of Midland, the Band of the Hawk are now hunted as they desperately fight for their lives while plotting to free their leader, Griffith, after he was imprisoned for committing treason. But the man they save is far from the Griffith they remember. + + Griffith is a shell of his former charismatic self after a year of continuous, horrific torture. No longer able to walk, speak, or even hold a sword, he has nothing but the small, strange trinket, the Crimson Behelit, that will not leave him. The entire Band of the Hawk want to rise to greatness once more, but how much are they willing to sacrifice to return to their past glory? It doesn't seem possible, but when Griffith's heart darkens and a solar eclipse blackens the sky, the Behelit offers a choice that will leave the Band of the Hawk with a blood-soaked fate that will haunt them for the rest of their days. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1584 + type: anime + name: Beyond C. + url: https://myanimelist.net/anime/producer/1584/Beyond_C + - mal_id: 1697 + type: anime + name: KDDI + url: https://myanimelist.net/anime/producer/1697/KDDI + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 13 + type: anime + name: Studio 4°C + url: https://myanimelist.net/anime/producer/13/Studio_4%C2%B0C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 14837 + url: https://myanimelist.net/anime/14837/Dragon_Ball_Z_Movie_14__Kami_to_Kami + images: + jpg: + image_url: https://myanimelist.net/images/anime/1734/93678.jpg + small_image_url: https://myanimelist.net/images/anime/1734/93678t.jpg + large_image_url: https://myanimelist.net/images/anime/1734/93678l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1734/93678.webp + small_image_url: https://myanimelist.net/images/anime/1734/93678t.webp + large_image_url: https://myanimelist.net/images/anime/1734/93678l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-f2V4jmo8L0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dragon Ball Z Movie 14: Kami to Kami' + - type: Japanese + title: ドラゴンボールZ 神と神 + - type: English + title: 'Dragon Ball Z: Battle of Gods' + - type: German + title: 'Dragon Ball Z Film 14: Kampf der Götter' + - type: Spanish + title: 'Dragon Ball Z Película 14: Battle of Gods' + - type: French + title: 'Dragon Ball Z Film 14: Battle of Gods' + title: 'Dragon Ball Z Movie 14: Kami to Kami' + title_english: 'Dragon Ball Z: Battle of Gods' + title_japanese: ドラゴンボールZ 神と神 + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-03-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 3 + year: 2013 + to: + day: null + month: null + year: null + string: Mar 30, 2013 + duration: 1 hr 25 min + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 166964 + rank: 2564 + popularity: 1168 + members: 244402 + favorites: 328 + synopsis: |- + Following the defeat of a great adversary, Gokuu Son and his friends live peaceful lives on Earth. Meanwhile, in space, Beerus the God of Destruction awakens from his long slumber, having dreamed of an entity known as a Super Saiyan God. With the help of his assistant, Whis, Beerus looks for this powerful being, as he wishes to fight a worthy opponent. After discovering that the Saiyan home planet was destroyed, he tracks down the remaining Saiyans on Earth, looking for Gokuu specifically. + + Having only heard of the Super Saiyan God in legends, Gokuu and his comrades summon Shen Long the Eternal Dragon, who they find out is afraid of Beerus. After learning the secret of the Super Saiyan God, an intense battle between Gokuu and Beerus commences, the immense power of which puts the Earth in terrible danger. + + [Written by MAL Rewrite] + background: 'The story of Dragon Ball Z Movie 14: Kami to Kami was later adapted into the Battle of Gods Saga in Dragon + Ball Super. Unlike most other Dragon Ball Z movies, this film is considered part of the anime''s canon. It was also + the first Dragon Ball film to be released theatrically in 17 years. There is a extended version of the film with 20 + minutes of new material.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 13271 + url: https://myanimelist.net/anime/13271/Hunter_x_Hunter_Movie_1__Phantom_Rouge + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/53073.jpg + small_image_url: https://myanimelist.net/images/anime/6/53073t.jpg + large_image_url: https://myanimelist.net/images/anime/6/53073l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/53073.webp + small_image_url: https://myanimelist.net/images/anime/6/53073t.webp + large_image_url: https://myanimelist.net/images/anime/6/53073l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/teCHX00kEPc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hunter x Hunter Movie 1: Phantom Rouge' + - type: Synonym + title: 'Gekijouban Hunter x Hunter: Hiiro no Genei' + - type: Synonym + title: HxH Movie + - type: Japanese + title: 劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ) + - type: English + title: 'Hunter x Hunter: Phantom Rouge' + - type: Spanish + title: 'Hunter x Hunter: Phantom Rouge' + title: 'Hunter x Hunter Movie 1: Phantom Rouge' + title_english: 'Hunter x Hunter: Phantom Rouge' + title_japanese: 劇場版 HUNTER×HUNTER 緋色の幻影(ファントム・ルージュ) + title_synonyms: + - 'Gekijouban Hunter x Hunter: Hiiro no Genei' + - HxH Movie + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-01-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 1 + year: 2013 + to: + day: null + month: null + year: null + string: Jan 12, 2013 + duration: 1 hr 36 min + rating: PG-13 - Teens 13 or older + score: 7.29 + scored_by: 124609 + rank: 3334 + popularity: 1285 + members: 219708 + favorites: 353 + synopsis: "After completing their work at Yorknew City, Leorio Paladiknight and Kurapika investigate the rumored sightings\ + \ of a boy with scarlet red eyes, as they believe this person to be a member of the now non-existent Kurta Clan. Kurapika\ + \ hopes to find another survivor of the clan besides himself, but instead ends up losing both his eyes after an attack\ + \ from someone who seems to be his childhood friend. \n\nLeorio tends to Kurapika's wounds, and then sends for both\ + \ Gon Freecss and Killua Zoldyck to help retrieve Kurapika's eyeballs. However, their search brings them face-to-face\ + \ with the infamous group of thieves known as Phantom Troupe—the same people who massacred the entire Kurta Clan five\ + \ years ago for their scarlet eyes, which change color during moments of rage. \n\nHunter x Hunter Movie 1: Phantom\ + \ Rouge follows the boys' quest to locate their friend's eyes and catch the thief, causing them to delve deep into\ + \ Phantom Troupe's past. And in doing so, they encounter a mysterious girl who appears to be linked to it all…\n\n\ + [Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1702 + type: anime + name: Hiroshima Television + url: https://myanimelist.net/anime/producer/1702/Hiroshima_Television + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14811 + url: https://myanimelist.net/anime/14811/GJ-bu + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/45995.jpg + small_image_url: https://myanimelist.net/images/anime/10/45995t.jpg + large_image_url: https://myanimelist.net/images/anime/10/45995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/45995.webp + small_image_url: https://myanimelist.net/images/anime/10/45995t.webp + large_image_url: https://myanimelist.net/images/anime/10/45995l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: GJ-bu + - type: Synonym + title: Good Job-bu + - type: Japanese + title: GJ部 + - type: English + title: GJ Club + - type: German + title: GJ Club + - type: Spanish + title: GJ Club + - type: French + title: GJ Club + title: GJ-bu + title_english: GJ Club + title_japanese: GJ部 + title_synonyms: + - Good Job-bu + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-10T00:00:00+00:00' + to: '2013-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2013 + to: + day: 28 + month: 3 + year: 2013 + string: Jan 10, 2013 to Mar 28, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.29 + scored_by: 79593 + rank: 3327 + popularity: 1518 + members: 183090 + favorites: 766 + synopsis: |- + School clubs usually advertise their activities, but the goings-on of the GJ Club are a mystery. Kyouya "Kyoro" Shinomiya recently joined and became the sole male member of the five-person club. + + Besides Kyoro, there is Mao Amatsuka, the club president who has a tendency to bite Kyoro when she gets mad or bashful; Megumi Amatsuka, Mao's composed younger sister who always makes tea and desserts for the club's members; Shion Sumeragi, a demure chess prodigy; and Kirara Bernstein, a meat lover with a strong feline personality. All four girls have some form of interest in Kyoro. + + With the girls' idiosyncratic and cute personalities, Kyoro's time in GJ-bu will never be a dull one, for better or for worse. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2013 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 3193 + type: anime + name: Sound Inn Studio + url: https://myanimelist.net/anime/producer/3193/Sound_Inn_Studio + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 16005 + url: https://myanimelist.net/anime/16005/Zettai_Karen_Children__The_Unlimited_-_Hyoubu_Kyousuke + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/44522.jpg + small_image_url: https://myanimelist.net/images/anime/11/44522t.jpg + large_image_url: https://myanimelist.net/images/anime/11/44522l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/44522.webp + small_image_url: https://myanimelist.net/images/anime/11/44522t.webp + large_image_url: https://myanimelist.net/images/anime/11/44522l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pQjWdEUi-98?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Zettai Karen Children: The Unlimited - Hyoubu Kyousuke' + - type: Synonym + title: The Unlimited Hyobu Kyosuke + - type: Japanese + title: 絶対可憐チルドレン THE UNLIMITED 兵部京介 + - type: English + title: Unlimited Psychic Squad + - type: German + title: The Unlimited Hyobu Kyosuke + - type: Spanish + title: The Unlimited Hyobu Kyousuke + - type: French + title: The Unlimited Hyobu Kyosuke + title: 'Zettai Karen Children: The Unlimited - Hyoubu Kyousuke' + title_english: Unlimited Psychic Squad + title_japanese: 絶対可憐チルドレン THE UNLIMITED 兵部京介 + title_synonyms: + - The Unlimited Hyobu Kyosuke + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-08T00:00:00+00:00' + to: '2013-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2013 + to: + day: 26 + month: 3 + year: 2013 + string: Jan 8, 2013 to Mar 26, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.46 + scored_by: 63844 + rank: 2457 + popularity: 1661 + members: 163891 + favorites: 468 + synopsis: |- + Kyousuke Hyoubu, an ESPer who was betrayed many years ago, is now one of the most powerful ESPers—and also a fugitive. However, behind that glare lies a kind heart. His main mission is to save ESPers who are mistreated by humans, even if that be by force. Through his methods, he has saved many ESPer lives and gained the loyalty of those he has saved. The name of his group: P.A.N.D.R.A. + + (Source: ANN) + background: '' + season: winter + year: 2013 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15119 + url: https://myanimelist.net/anime/15119/Senran_Kagura + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/45640.jpg + small_image_url: https://myanimelist.net/images/anime/5/45640t.jpg + large_image_url: https://myanimelist.net/images/anime/5/45640l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/45640.webp + small_image_url: https://myanimelist.net/images/anime/5/45640t.webp + large_image_url: https://myanimelist.net/images/anime/5/45640l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gSiPMVlR0oE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Senran Kagura + - type: Synonym + title: Senran Kagura + - type: Japanese + title: 閃乱カグラ + - type: English + title: 'Senran Kagura: Ninja Flash' + - type: Spanish + title: 'Senran Kagura: Ninja Flash!' + - type: French + title: 'Senran Kagura: Ninja Flash' + title: Senran Kagura + title_english: 'Senran Kagura: Ninja Flash' + title_japanese: 閃乱カグラ + title_synonyms: + - Senran Kagura + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-06T00:00:00+00:00' + to: '2013-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2013 + to: + day: 24 + month: 3 + year: 2013 + string: Jan 6, 2013 to Mar 24, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.3 + scored_by: 44884 + rank: 9378 + popularity: 1809 + members: 146663 + favorites: 317 + synopsis: "At the renowned Hanzo Academy, a select group of students trains in secret to become ninjas of an elite clan\ + \ known as the Shinobi Masters. Following her grandfather's footsteps, the hopeful Asuka undergoes this intensive\ + \ training alongside her distinctive group of friends: Ikaruga, Katsuragi, Yagyuu, and Hibari. Relentlessly studying\ + \ the secret ninja arts, they hone their skills in the hopes of one day becoming full-fledged female ninjas. \n\n\ + Senran Kagura follows the girls as they fight valiantly against a mysterious new evil terrorizing Hanzo Academy. Dressed\ + \ in tight clothing, they must prove their worth and protect the academy from its adversaries before it is too late!\n\ + \n[Written by MAL Rewrite]" + background: Senran Kagura is an adaptation of a popular video game series by the same name, which was developed by Tamsoft + and produced by Marvelous Entertainment with over one million sales worldwide. The anime became the first work in + the franchise to leave Japan when it was simulcast via FUNiMATION. + season: winter + year: 2013 + broadcast: + day: Sundays + time: '20:30' + timezone: Asia/Tokyo + string: Sundays at 20:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11743 + url: https://myanimelist.net/anime/11743/Toaru_Majutsu_no_Index_Movie__Endymion_no_Kiseki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1885/93861.jpg + small_image_url: https://myanimelist.net/images/anime/1885/93861t.jpg + large_image_url: https://myanimelist.net/images/anime/1885/93861l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1885/93861.webp + small_image_url: https://myanimelist.net/images/anime/1885/93861t.webp + large_image_url: https://myanimelist.net/images/anime/1885/93861l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Km3Onhgw-EU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Toaru Majutsu no Index Movie: Endymion no Kiseki' + - type: Synonym + title: Gekijouban Toaru Majutsu no Kinsho Mokuroku + - type: Japanese + title: 劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟 + - type: English + title: 'A Certain Magical Index the Movie: The Miracle of Endymion' + - type: German + title: 'A Certain Magical Index: Der Film' + - type: Spanish + title: 'A Certain Magical Index la Película: The Miracle of Endymion' + - type: French + title: 'A Certain Magical Index: Le Film' + title: 'Toaru Majutsu no Index Movie: Endymion no Kiseki' + title_english: 'A Certain Magical Index the Movie: The Miracle of Endymion' + title_japanese: 劇場版 とある魔術の禁書目録 エンデュミオンの奇蹟 + title_synonyms: + - Gekijouban Toaru Majutsu no Kinsho Mokuroku + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-02-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 2 + year: 2013 + to: + day: null + month: null + year: null + string: Feb 23, 2013 + duration: 1 hr 30 min + rating: R - 17+ (violence & profanity) + score: 7.41 + scored_by: 72492 + rank: 2703 + popularity: 1875 + members: 140257 + favorites: 179 + synopsis: |- + In the scientifically advanced Academy City, a miracle is about to occur: the completion of the world's first space elevator, "Endymion." Meanwhile, a certain high school student, Touma Kamijou, and his companion Index are going about their daily lives when they encounter and befriend Arisa Meigo, a cheerful and ambitious singer. When strange occurrences begin taking place throughout the city, they lead to the discovery of an intricate plot surrounding Arisa and Endymion. Things only get more complicated when the Stiyl Magnus appears, signifying that the magical world is somehow involved too... + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 15751 + url: https://myanimelist.net/anime/15751/Senyuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/44858.jpg + small_image_url: https://myanimelist.net/images/anime/6/44858t.jpg + large_image_url: https://myanimelist.net/images/anime/6/44858l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/44858.webp + small_image_url: https://myanimelist.net/images/anime/6/44858t.webp + large_image_url: https://myanimelist.net/images/anime/6/44858l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lk58qiXkC2E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Senyuu. + - type: Synonym + title: Senyu. + - type: Japanese + title: 戦勇。 + - type: German + title: Senyu + - type: Spanish + title: Senyu + - type: French + title: Senyu + title: Senyuu. + title_english: null + title_japanese: 戦勇。 + title_synonyms: + - Senyu. + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-01-09T00:00:00+00:00' + to: '2013-04-03T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2013 + to: + day: 3 + month: 4 + year: 2013 + string: Jan 9, 2013 to Apr 3, 2013 + duration: 4 min per ep + rating: PG-13 - Teens 13 or older + score: 7.29 + scored_by: 54430 + rank: 3364 + popularity: 2105 + members: 121078 + favorites: 626 + synopsis: "Once upon a time, the demon lord Rchimedes spread terror throughout the world, until he was eventually sealed\ + \ away by the legendary hero Creasion. Since then, a thousand years have passed peacefully. However, a mysterious\ + \ hole has opened up between the demon and human spheres, and countless demons have surged into the human realm once\ + \ more. Coming to the conclusion that Rchimedes would soon return to wreak havoc, a human king summons the possible\ + \ descendants of the legendary hero—all 75 of them. Unfortunately, after so long, it was too difficult to pinpoint\ + \ his true descendants. \n\nAmong the lionhearted prospects is the amateur adventurer Alba Frühling. His skills may\ + \ not be top-notch, but he is accompanied by the talented soldier Ross, who helps the young hero whenever he is in\ + \ a pinch...or at least, he is supposed to. Though undoubtedly a skilled warrior, Ross is actually both sarcastic\ + \ and sadistic, and hence revels in Alba's suffering. \n\nSenyuu. is a comedic adventure following the unlikely duo\ + \ as they struggle in their endeavor to defeat the demon lord, meeting various eccentrics along the way.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: winter + year: 2013 + broadcast: + day: Wednesdays + time: 01:35 + timezone: Asia/Tokyo + string: Wednesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 334 + type: anime + name: Ordet + url: https://myanimelist.net/anime/producer/334/Ordet + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15613 + url: https://myanimelist.net/anime/15613/Hakkenden__Touhou_Hakken_Ibun + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/43007.jpg + small_image_url: https://myanimelist.net/images/anime/13/43007t.jpg + large_image_url: https://myanimelist.net/images/anime/13/43007l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/43007.webp + small_image_url: https://myanimelist.net/images/anime/13/43007t.webp + large_image_url: https://myanimelist.net/images/anime/13/43007l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZPnQQxQRPZE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hakkenden: Touhou Hakken Ibun' + - type: Synonym + title: 'Hakkenden: Touhou Hakken Ibun' + - type: Japanese + title: 八犬伝 -東方八犬異聞- + - type: English + title: Hakkenden -Eight Dogs of the East- + - type: German + title: 'Hakkenden: Eight Dogs of The East' + - type: Spanish + title: 'Hakkenden: Eight Dogs of The East' + - type: French + title: 'Hakkenden: Eight Dogs of The East' + title: 'Hakkenden: Touhou Hakken Ibun' + title_english: Hakkenden -Eight Dogs of the East- + title_japanese: 八犬伝 -東方八犬異聞- + title_synonyms: + - 'Hakkenden: Touhou Hakken Ibun' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-01-06T00:00:00+00:00' + to: '2013-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2013 + to: + day: 31 + month: 3 + year: 2013 + string: Jan 6, 2013 to Mar 31, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.4 + scored_by: 45199 + rank: 2730 + popularity: 2107 + members: 120740 + favorites: 719 + synopsis: |- + The village of Ootsuka—home to Shino Inuzuka, Sousuke Inukawa, and Hamaji—was lit on fire under the preconception that a virus had seen all of its life eradicated. Now surrounded by flames and on the verge of death, the three were approached by a strange man holding a sword. He tells them that they must reach a decision if they want to live. That night changed everything for these children. + + Five years later, the family of three now lives under the watchful eye of the small Imperial Church in a nearby village. All is fine and dandy until the Church attempts to reclaim the demonic sword of Murasame. To accomplish this, they kidnap Hamaji to lure Shino, now a bearer of Murasame's soul, and Sousuke, who possesses the ability to transform into a dog. The brothers must put their differences aside to rescue their beloved sister from the Church in the Imperial Capital, signalling the beginning of a very difficult journey. + background: '' + season: winter + year: 2013 + broadcast: + day: Sundays + time: 02:58 + timezone: Asia/Tokyo + string: Sundays at 02:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 15109 + url: https://myanimelist.net/anime/15109/Cuticle_Tantei_Inaba + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/73934.jpg + small_image_url: https://myanimelist.net/images/anime/10/73934t.jpg + large_image_url: https://myanimelist.net/images/anime/10/73934l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/73934.webp + small_image_url: https://myanimelist.net/images/anime/10/73934t.webp + large_image_url: https://myanimelist.net/images/anime/10/73934l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IB_l2qYBwy8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Cuticle Tantei Inaba + - type: Japanese + title: キューティクル探偵因幡 + - type: English + title: Cuticle Detective Inaba + - type: German + title: Cuticle Detective Inaba + - type: Spanish + title: Cuticle Detective Inada + - type: French + title: Cuticle Detective Inaba + title: Cuticle Tantei Inaba + title_english: Cuticle Detective Inaba + title_japanese: キューティクル探偵因幡 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-04T00:00:00+00:00' + to: '2013-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2013 + to: + day: 22 + month: 3 + year: 2013 + string: Jan 4, 2013 to Mar 22, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 39166 + rank: 3670 + popularity: 2175 + members: 115275 + favorites: 431 + synopsis: |- + In a world where half-human, half-animal chimeras live and work alongside normal people, there are sure to be a few bad apples in the bunch. Unfortunately, half-human criminals means non-human clues that often leave the police stumped. That's where lone wolf detectives like Hiroshi Inaba come in. He's literally part wolf and has the amazing ability to extract critical information just by examining or tasting a sample of someone's hair! Of course, that ability has also resulted in Inaba having a little bit of a hair fetish, but that doesn't seem to be a problem for his two assistants. (Well, at least the cross-dressing one isn't complaining much.) And it's nothing compared to the strange tastes of Inaba's nemesis, the omnivorous (and half goat) crime boss Don Valentino, who has an appetite for green legal tender instead of tender young greens! Inaba's sworn to cut Valentino out of the criminal flock before the Don can wolf down more ill-gotten dough, but he's going to have to chew his way through a lot of evidence to get his goat. Can sheer dogged detective work put the baaaaad guys behind bars? + + (Source: Sentai Filmworks) + background: '' + season: winter + year: 2013 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 789 + type: anime + name: BIGLOBE + url: https://myanimelist.net/anime/producer/789/BIGLOBE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 16916 + url: https://myanimelist.net/anime/16916/Kuroko_no_Basket__Tip_Off + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/76803.jpg + small_image_url: https://myanimelist.net/images/anime/10/76803t.jpg + large_image_url: https://myanimelist.net/images/anime/10/76803l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/76803.webp + small_image_url: https://myanimelist.net/images/anime/10/76803t.webp + large_image_url: https://myanimelist.net/images/anime/10/76803l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kuroko no Basket: Tip Off' + - type: Synonym + title: Kuroko no Basket Special + - type: Synonym + title: Kuroko no Basket Episode 22.5 + - type: Japanese + title: 黒子のバスケ 第22.5Q 「Tip Off」 + - type: English + title: 'Kuroko''s Basketball: Tip Off' + title: 'Kuroko no Basket: Tip Off' + title_english: 'Kuroko''s Basketball: Tip Off' + title_japanese: 黒子のバスケ 第22.5Q 「Tip Off」 + title_synonyms: + - Kuroko no Basket Special + - Kuroko no Basket Episode 22.5 + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-02-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 2 + year: 2013 + to: + day: null + month: null + year: null + string: Feb 22, 2013 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.78 + scored_by: 60682 + rank: 1241 + popularity: 2203 + members: 112849 + favorites: 94 + synopsis: |- + Episode 22.5 bundled with BD/DVD volume 8. + + The episode covers Kuroko's past, when he was part of the "Generation of Miracles." + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14175 + url: https://myanimelist.net/anime/14175/Hanasaku_Iroha_Movie__Home_Sweet_Home + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/70701.jpg + small_image_url: https://myanimelist.net/images/anime/9/70701t.jpg + large_image_url: https://myanimelist.net/images/anime/9/70701l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/70701.webp + small_image_url: https://myanimelist.net/images/anime/9/70701t.webp + large_image_url: https://myanimelist.net/images/anime/9/70701l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MnhP4I_CAr4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hanasaku Iroha Movie: Home Sweet Home' + - type: Synonym + title: 'Hanasaku Iroha: Home Sweet Home' + - type: Japanese + title: 劇場版 花咲くいろは HOME SWEET HOME + - type: English + title: 'Hanasaku Iroha the Movie: Home Sweet Home' + - type: German + title: 'Hanasaku Iroha the Movie: Home Sweet Home' + - type: Spanish + title: 'Hanasaku Iroha the Movie: Home Sweet Home' + - type: French + title: 'Hanasaku Iroha the Movie: Home Sweet Home' + title: 'Hanasaku Iroha Movie: Home Sweet Home' + title_english: 'Hanasaku Iroha the Movie: Home Sweet Home' + title_japanese: 劇場版 花咲くいろは HOME SWEET HOME + title_synonyms: + - 'Hanasaku Iroha: Home Sweet Home' + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-03-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 3 + year: 2013 + to: + day: null + month: null + year: null + string: Mar 9, 2013 + duration: 1 hr 6 min + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 37931 + rank: 1033 + popularity: 2414 + members: 98680 + favorites: 103 + synopsis: |- + Ohana Matsumae has been working at Kissui Inn as a waitress for a while now. However, she realizes that she is starting to lose her desire to sparkle, having grown accustomed to the routines of her job. As this was a desire she had when she first moved to the inn, the realization bothers her. While having Yuina Wakura—Ohana's classmate, friend, and the daughter of rival Fukuya Inn's owner—under her as an apprentice, Ohana stumbles upon some old archives that mention her mother, Satsuki. Ohana does not know much about her mother, but these archives could shed some light on her past. + + Besides learning more about her mother, it is business as usual at Kissui Inn—though with a couple of challenges to test Ohana and the staff of the inn. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 17535 + url: https://myanimelist.net/anime/17535/Fairy_Tail_Movie_1__Houou_no_Miko_-_Hajimari_no_Asa + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/50101.jpg + small_image_url: https://myanimelist.net/images/anime/8/50101t.jpg + large_image_url: https://myanimelist.net/images/anime/8/50101l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/50101.webp + small_image_url: https://myanimelist.net/images/anime/8/50101t.webp + large_image_url: https://myanimelist.net/images/anime/8/50101l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa' + - type: Synonym + title: 'Fairy Tail: Houou no Miko Prologue' + - type: Japanese + title: 'フェアリーテイル: 序章「はじまりの朝」' + - type: English + title: 'Fairy Tail the Movie: The Phoenix Priestess - The First Morning' + title: 'Fairy Tail Movie 1: Houou no Miko - Hajimari no Asa' + title_english: 'Fairy Tail the Movie: The Phoenix Priestess - The First Morning' + title_japanese: 'フェアリーテイル: 序章「はじまりの朝」' + title_synonyms: + - 'Fairy Tail: Houou no Miko Prologue' + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-02-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 2 + year: 2013 + to: + day: null + month: null + year: null + string: Feb 15, 2013 + duration: 12 min + rating: PG-13 - Teens 13 or older + score: 7.33 + scored_by: 47634 + rank: 3091 + popularity: 2485 + members: 94562 + favorites: 207 + synopsis: |- + Under the scorching desert sun, a lonely girl called Éclair wanders, faithfully protecting the relic "Phoenix Stone" entrusted to her. Even though she hates magic, the power of the Stone brings her handcrafted plush toy to life. Finally graced with the warmth of friendship, Éclair names it Momon, and together, they commence their journey across Fiore, guided by the Stone. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14355 + url: https://myanimelist.net/anime/14355/Yama_no_Susume + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/75525.jpg + small_image_url: https://myanimelist.net/images/anime/7/75525t.jpg + large_image_url: https://myanimelist.net/images/anime/7/75525l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/75525.webp + small_image_url: https://myanimelist.net/images/anime/7/75525t.webp + large_image_url: https://myanimelist.net/images/anime/7/75525l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aocygMLzmqw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yama no Susume + - type: Japanese + title: ヤマノススメ + - type: English + title: Encouragement of Climb + - type: German + title: Encouragement of Climb + title: Yama no Susume + title_english: Encouragement of Climb + title_japanese: ヤマノススメ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-01-03T00:00:00+00:00' + to: '2013-03-21T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2013 + to: + day: 21 + month: 3 + year: 2013 + string: Jan 3, 2013 to Mar 21, 2013 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 6.88 + scored_by: 32507 + rank: 5834 + popularity: 2501 + members: 93531 + favorites: 207 + synopsis: "As a child, Aoi Yukimura adored mountains and was passionate about climbing. However, a playground accident\ + \ has since left her afraid of heights, turning her toward indoor hobbies. Unfortunately, now a shy and timid first-year\ + \ high school student, Aoi has become so absorbed in these pastimes that she can barely socialize with others, leaving\ + \ her practically friendless. It is only when she runs into the lively Hinata Kuraue, an old friend from her climbing\ + \ days, that things start to change. \n\nImpulsive and high-spirited, Hinata insists on having Aoi join her in all\ + \ sorts of climbing activities. Though reluctant at first, Aoi quickly finds that her time with Hinata brings back\ + \ fond memories of their childhood and soon decides to start climbing again. As the return to her past hobby starts\ + \ to bring her out of her shell, Aoi finds herself gaining close friends, taking on new challenges, and continuing\ + \ to find her own encouragement to climb.\n\n[Written by MAL Rewrite]" + background: Yama no Susume adapts the 1st volume and part of the 2nd volume of siro's manga series of the same title. + season: winter + year: 2013 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/14-2013-spring.yaml b/test/fixtures/jikan/season_matrix/14-2013-spring.yaml new file mode 100644 index 0000000..3e1882e --- /dev/null +++ b/test/fixtures/jikan/season_matrix/14-2013-spring.yaml @@ -0,0 +1,3344 @@ +metadata: + captured_at: '2026-05-11T11:32:56Z' + label: 2013-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2013/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:56 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:315214571e95df75ad7d4803c01b57ff12e6234f + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 9 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 217 + per_page: 25 + data: + - mal_id: 16498 + url: https://myanimelist.net/anime/16498/Shingeki_no_Kyojin + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/47347.jpg + small_image_url: https://myanimelist.net/images/anime/10/47347t.jpg + large_image_url: https://myanimelist.net/images/anime/10/47347l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/47347.webp + small_image_url: https://myanimelist.net/images/anime/10/47347t.webp + large_image_url: https://myanimelist.net/images/anime/10/47347l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LHtdKWJdif4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki no Kyojin + - type: Synonym + title: AoT + - type: Synonym + title: SnK + - type: Japanese + title: 進撃の巨人 + - type: English + title: Attack on Titan + - type: German + title: Attack on Titan + - type: Spanish + title: Ataque a los Titanes + - type: French + title: L'Attaque des Titans + title: Shingeki no Kyojin + title_english: Attack on Titan + title_japanese: 進撃の巨人 + title_synonyms: + - AoT + - SnK + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-04-07T00:00:00+00:00' + to: '2013-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2013 + to: + day: 29 + month: 9 + year: 2013 + string: Apr 7, 2013 to Sep 29, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.57 + scored_by: 3067207 + rank: 126 + popularity: 1 + members: 4360015 + favorites: 189061 + synopsis: |- + Centuries ago, mankind was slaughtered to near extinction by monstrous humanoid creatures called Titans, forcing humans to hide in fear behind enormous concentric walls. What makes these giants truly terrifying is that their taste for human flesh is not born out of hunger but what appears to be out of pleasure. To ensure their survival, the remnants of humanity began living within defensive barriers, resulting in one hundred years without a single titan encounter. However, that fragile calm is soon shattered when a colossal Titan manages to breach the supposedly impregnable outer wall, reigniting the fight for survival against the man-eating abominations. + + After witnessing a horrific personal loss at the hands of the invading creatures, Eren Yeager dedicates his life to their eradication by enlisting into the Survey Corps, an elite military unit that combats the merciless humanoids outside the protection of the walls. Eren, his adopted sister Mikasa Ackerman, and his childhood friend Armin Arlert join the brutal war against the Titans and race to discover a way of defeating them before the last walls are breached. + + [Written by MAL Rewrite] + background: Shingeki no Kyojin adapts content from the first eight volumes of Hajime Isayama's award-winning manga of + the same name. The anime won the Animation of the Year in the Television category at the Tokyo Anime Award Festival + in 2014. + season: spring + year: 2013 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15809 + url: https://myanimelist.net/anime/15809/Hataraku_Maou-sama + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/50177.jpg + small_image_url: https://myanimelist.net/images/anime/3/50177t.jpg + large_image_url: https://myanimelist.net/images/anime/3/50177l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/50177.webp + small_image_url: https://myanimelist.net/images/anime/3/50177t.webp + large_image_url: https://myanimelist.net/images/anime/3/50177l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dDnslncTIfs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Maou-sama! + - type: Synonym + title: Hataraku Maou-sama! + - type: Japanese + title: はたらく魔王さま! + - type: English + title: The Devil is a Part-Timer! + - type: German + title: The Devil is a Part-Timer! + - type: Spanish + title: The Devil is a Part-Timer! + - type: French + title: The Devil is a Part-Timer! + title: Hataraku Maou-sama! + title_english: The Devil is a Part-Timer! + title_japanese: はたらく魔王さま! + title_synonyms: + - Hataraku Maou-sama! + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-04T00:00:00+00:00' + to: '2013-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2013 + to: + day: 27 + month: 6 + year: 2013 + string: Apr 4, 2013 to Jun 27, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 1003846 + rank: 1455 + popularity: 75 + members: 1656932 + favorites: 10665 + synopsis: |- + Striking fear into the hearts of mortals, the Demon Lord Satan begins to conquer the land of Ente Isla with his vast demon armies. However, while embarking on this brutal quest to take over the continent, his efforts are foiled by the hero Emilia, forcing Satan to make his swift retreat through a dimensional portal only to land in the human world. Along with his loyal general Alsiel, the demon finds himself stranded in modern-day Tokyo and vows to return and complete his subjugation of Ente Isla—that is, if they can find a way back! + + Powerless in a world without magic, Satan assumes the guise of a human named Sadao Maou and begins working at MgRonald's—a local fast-food restaurant—to make ends meet. He soon realizes that his goal of conquering Ente Isla is just not enough as he grows determined to climb the corporate ladder and become the ruler of Earth, one satisfied customer at a time! + + Whether it's part-time work, household chores, or simply trying to pay the rent on time, Hataraku Maou-sama! presents a hilarious view of the most mundane aspects of everyday life, all through the eyes of a hapless demon lord. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 14813 + url: https://myanimelist.net/anime/14813/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1786/120117.jpg + small_image_url: https://myanimelist.net/images/anime/1786/120117t.jpg + large_image_url: https://myanimelist.net/images/anime/1786/120117l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1786/120117.webp + small_image_url: https://myanimelist.net/images/anime/1786/120117t.webp + large_image_url: https://myanimelist.net/images/anime/1786/120117l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/u-bpwWPNEpE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. + - type: Synonym + title: Oregairu + - type: Synonym + title: My youth romantic comedy is wrong as I expected. + - type: Japanese + title: やはり俺の青春ラブコメはまちがっている。 + - type: English + title: My Teen Romantic Comedy SNAFU + - type: German + title: My Teen Romantic Comedy SNAFU + - type: Spanish + title: My Teen Romantic Comedy SNAFU + - type: French + title: My Teen Romantic Comedy SNAFU + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. + title_english: My Teen Romantic Comedy SNAFU + title_japanese: やはり俺の青春ラブコメはまちがっている。 + title_synonyms: + - Oregairu + - My youth romantic comedy is wrong as I expected. + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-05T00:00:00+00:00' + to: '2013-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2013 + to: + day: 28 + month: 6 + year: 2013 + string: Apr 5, 2013 to Jun 28, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8 + scored_by: 923652 + rank: 758 + popularity: 86 + members: 1568247 + favorites: 30796 + synopsis: "Hachiman Hikigaya is an apathetic high school student with narcissistic and semi-nihilistic tendencies. He\ + \ firmly believes that joyful youth is nothing but a farce, and everyone who says otherwise is just lying to themselves.\ + \ \n\nIn a novel punishment for writing an essay mocking modern social relationships, Hachiman's teacher forces him\ + \ to join the Volunteer Service Club, a club that aims to extend a helping hand to any student who seeks their support\ + \ in achieving their goals. With the only other club member being the beautiful ice queen Yukino Yukinoshita, Hachiman\ + \ finds himself on the front line of other people's problems—a place he never dreamed he would be. As Hachiman and\ + \ Yukino use their wits to solve many students' problems, will Hachiman's rotten view of society prove to be a hindrance\ + \ or a tool he can use to his advantage?\n\n[Written by MAL Rewrite]" + background: Yahari Ore no Seishun Love Comedy wa Machigatteiru. adapts the first 6 novels of Wataru Watari's light novel + series of the same title. + season: spring + year: 2013 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15583 + url: https://myanimelist.net/anime/15583/Date_A_Live + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/44844.jpg + small_image_url: https://myanimelist.net/images/anime/13/44844t.jpg + large_image_url: https://myanimelist.net/images/anime/13/44844l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/44844.webp + small_image_url: https://myanimelist.net/images/anime/13/44844t.webp + large_image_url: https://myanimelist.net/images/anime/13/44844l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AytCKBRQJu0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Date A Live + - type: Japanese + title: デート・ア・ライブ + - type: English + title: Date A Live + title: Date A Live + title_english: Date A Live + title_japanese: デート・ア・ライブ + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-06T00:00:00+00:00' + to: '2013-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2013 + to: + day: 22 + month: 6 + year: 2013 + string: Apr 6, 2013 to Jun 22, 2013 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.14 + scored_by: 624528 + rank: 4319 + popularity: 161 + members: 1117386 + favorites: 10359 + synopsis: |- + Thirty years ago, the Eurasian continent was devastated by a supermassive "spatial quake"—a phenomenon involving space vibrations of unknown origin—resulting in the deaths of over 150 million people. Since then, these quakes have been plaguing the world intermittently, albeit on a lighter scale. + + Shidou Itsuka is a seemingly average high school student who lives with his younger sister, Kotori. When an imminent spatial quake threatens the safety of Tengu City, he rushes to save her, only to be caught in the resulting eruption. He discovers a mysterious girl at its source, who is revealed to be a "Spirit," an otherworldly entity whose appearance triggers a spatial quake. Soon after, he becomes embroiled in a skirmish between the girl and the Anti-Spirit Team, a ruthless strike force with the goal of annihilating Spirits. + + However, there is a third party that believes in saving the spirits: "Ratatoskr," which surprisingly is commanded by Shidou's little sister! Kotori forcibly recruits Shidou after the clash, presenting to him an alternative method of dealing with the danger posed by the Spirits—make them fall in love with him. Now, the fate of the world rests on his dating prowess, as he seeks out Spirits in order to charm them. + + [Written by MAL Rewrite] + background: Date A Live adapts the first 4 novels of Koushi Tachibana's light novel series of the same name. The anime + premiered on March 31, 2013 on Niconico. On TV, it premiered on April 6, 2013 on Tokyo MX. The Blu-ray Box features + an additional 35 minutes worth of content. Due to the Blu-ray Box being released after FUNimation Entertainment's + release, this additional material was not included in any English release. + season: spring + year: 2013 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 292 + type: anime + name: AIC PLUS+ + url: https://myanimelist.net/anime/producer/292/AIC_PLUS_ + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 16782 + url: https://myanimelist.net/anime/16782/Kotonoha_no_Niwa + images: + jpg: + image_url: https://myanimelist.net/images/anime/1597/112995.jpg + small_image_url: https://myanimelist.net/images/anime/1597/112995t.jpg + large_image_url: https://myanimelist.net/images/anime/1597/112995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1597/112995.webp + small_image_url: https://myanimelist.net/images/anime/1597/112995t.webp + large_image_url: https://myanimelist.net/images/anime/1597/112995l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/udDIkl6z8X0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kotonoha no Niwa + - type: Synonym + title: Koto no Ha no Niwa + - type: Synonym + title: The Garden of Kotonoha + - type: Japanese + title: 言の葉の庭 + - type: English + title: The Garden of Words + - type: German + title: The Garden of Words + - type: Spanish + title: El Jardín de las Palabras + - type: French + title: The Garden of Words + title: Kotonoha no Niwa + title_english: The Garden of Words + title_japanese: 言の葉の庭 + title_synonyms: + - Koto no Ha no Niwa + - The Garden of Kotonoha + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-05-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 5 + year: 2013 + to: + day: null + month: null + year: null + string: May 31, 2013 + duration: 46 min + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 556115 + rank: 1057 + popularity: 216 + members: 933076 + favorites: 7286 + synopsis: |- + On a rainy morning in Tokyo, Takao Akizuki, an aspiring shoemaker, decides to skip class to sketch designs in a beautiful garden. This is where he meets Yukari Yukino, a beautiful yet mysterious woman, for the very first time. Offering to make her new shoes, Takao continues to meet with Yukari throughout the rainy season, and without even realizing it, the two are able to alleviate the worries hidden in their hearts just by being with each other. However, their personal struggles have not disappeared completely, and as the end of the rainy season approaches, their relationship will be put to the test. + + [Written by MAL Rewrite] + background: 'Kotonoha no Niwa won the Feature Film Award in the 18th Animation Kobe Awards in 2013 and shared the Satoshi + Kon Award for Achievement in Animation with Berserk: Ougon Jidaihen III - Kourin. In 2014, the movie won the AniMovie + Award for best feature film.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 229 + type: anime + name: The Answer Studio + url: https://myanimelist.net/anime/producer/229/The_Answer_Studio + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 11577 + url: https://myanimelist.net/anime/11577/Steins_Gate_Movie__Fuka_Ryouiki_no_Déjà_vu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1611/112806.jpg + small_image_url: https://myanimelist.net/images/anime/1611/112806t.jpg + large_image_url: https://myanimelist.net/images/anime/1611/112806l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1611/112806.webp + small_image_url: https://myanimelist.net/images/anime/1611/112806t.webp + large_image_url: https://myanimelist.net/images/anime/1611/112806l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rDsCNz3pWUg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Steins;Gate Movie: Fuka Ryouiki no Déjà vu' + - type: Synonym + title: Steins Gate Movie + - type: Japanese + title: 劇場版 シュタインズゲート 負荷領域のデジャヴ + - type: English + title: 'Steins;Gate: The Movie - Load Region of Déjà Vu' + - type: German + title: 'Steins; Gate: The Movie' + - type: Spanish + title: 'Steins;Gate: The Movie. Load Region Of Déjà Vu' + - type: French + title: 'Steins; Gate: Le Film - Déjà Vu in the Load Area' + title: 'Steins;Gate Movie: Fuka Ryouiki no Déjà vu' + title_english: 'Steins;Gate: The Movie - Load Region of Déjà Vu' + title_japanese: 劇場版 シュタインズゲート 負荷領域のデジャヴ + title_synonyms: + - Steins Gate Movie + type: Movie + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-04-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 4 + year: 2013 + to: + day: null + month: null + year: null + string: Apr 20, 2013 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.45 + scored_by: 383324 + rank: 193 + popularity: 383 + members: 643503 + favorites: 2860 + synopsis: |- + After a year in America, Kurisu Makise returns to Akihabara and reunites with Rintarou Okabe. However, their reunion is cut short when Okabe begins to experience recurring flashes of other timelines as the consequences of his time traveling start to manifest. These side effects eventually culminate in Okabe suddenly vanishing from the world, and only the startled Kurisu has any memory of his existence. + + In the midst of despair, Kurisu is faced with a truly arduous choice that will test both her duty as a scientist and her loyalty as a friend: follow Okabe's advice and stay away from traveling through time to avoid the potential consequences it may have on the world lines, or ignore it to rescue the person that she cherishes most. Regardless of her decision, the path she chooses is one that will affect the past, the present, and the future. + + [Written by MAL Rewrite] + background: The series won the 2013 Newtype Anime Awards for Best Anime Film. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 2896 + type: anime + name: Cinema Sunshine + url: https://myanimelist.net/anime/producer/2896/Cinema_Sunshine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 15225 + url: https://myanimelist.net/anime/15225/Hentai_Ouji_to_Warawanai_Neko + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75788.jpg + small_image_url: https://myanimelist.net/images/anime/3/75788t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75788l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75788.webp + small_image_url: https://myanimelist.net/images/anime/3/75788t.webp + large_image_url: https://myanimelist.net/images/anime/3/75788l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/55d5fA0iBcM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hentai Ouji to Warawanai Neko. + - type: Synonym + title: HenNeko + - type: Japanese + title: 変態王子と笑わない猫。 + - type: English + title: The "Hentai" Prince and the Stony Cat. + - type: Spanish + title: 'Henneko: The Hentai Prince and the Stony Cat' + - type: French + title: HENNEKO – The Hentai Prince and the Stony Cat - + title: Hentai Ouji to Warawanai Neko. + title_english: The "Hentai" Prince and the Stony Cat. + title_japanese: 変態王子と笑わない猫。 + title_synonyms: + - HenNeko + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-13T00:00:00+00:00' + to: '2013-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2013 + to: + day: 29 + month: 6 + year: 2013 + string: Apr 13, 2013 to Jun 29, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.13 + scored_by: 245441 + rank: 4396 + popularity: 556 + members: 471523 + favorites: 1764 + synopsis: |- + Youto Yokodera wants to be seen in a way different from most men: as a pervert. However, his lewd actions are often misinterpreted as good intentions, and people cannot see his true nature. Upon hearing rumors of a cat statue that can banish an unwanted trait, he searches for it and prays for his façade to be removed. But each wish comes at a price: those unwelcomed traits are transferred to someone else who desires them! + + After realizing that vocalizing his dirty thoughts is not the best thing, Youto decides to regain his lost traits by seeking out the person who received them. Unfortunately, he was not alone in praying to the cat statue, and now he must not only fix his life, but the lives of others as well. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 13659 + url: https://myanimelist.net/anime/13659/Ore_no_Imouto_ga_Konnani_Kawaii_Wake_ga_Nai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1325/100406.jpg + small_image_url: https://myanimelist.net/images/anime/1325/100406t.jpg + large_image_url: https://myanimelist.net/images/anime/1325/100406l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1325/100406.webp + small_image_url: https://myanimelist.net/images/anime/1325/100406t.webp + large_image_url: https://myanimelist.net/images/anime/1325/100406l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/l17ArMkPNf4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai. + - type: Synonym + title: My Little Sister Can't Be This Cute 2 + - type: Synonym + title: Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2 + - type: Japanese + title: 俺の妹がこんなに可愛いわけがない。 + - type: English + title: OreImo 2 + title: Ore no Imouto ga Konnani Kawaii Wake ga Nai. + title_english: OreImo 2 + title_japanese: 俺の妹がこんなに可愛いわけがない。 + title_synonyms: + - My Little Sister Can't Be This Cute 2 + - Ore no Imouto ga Konna ni Kawaii Wake ga Nai 2 + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-07T00:00:00+00:00' + to: '2013-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2013 + to: + day: 30 + month: 6 + year: 2013 + string: Apr 7, 2013 to Jun 30, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 274694 + rank: 5747 + popularity: 579 + members: 456776 + favorites: 1210 + synopsis: |- + The diehard otaku Kirino Kousaka has returned and settled back into life in Japan with her friends and family. Despite what her older brother Kyousuke has previously done for her, Kirino continues to give him the cold shoulder, much to his frustration. He is worried that his persuasion for Kirino to drop her track and field training in America and return home may have severely strained his relationship with her. On top of that, Kyousuke now also has to decode a bold and cryptic message from Ruri "Kuroneko" Gokou, his junior at school as well as Kirino's friend. + + As the ties between the two siblings and their friends deepen, Kirino and Kyousuke will soon have to figure out how they want to deal with these relationships, helping each other realize their own feelings in the process. In spite of that, Kirino still manages to find time to satisfy her otaku needs with the company of her brother. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 16049 + url: https://myanimelist.net/anime/16049/Toaru_Kagaku_no_Railgun_S + images: + jpg: + image_url: https://myanimelist.net/images/anime/1429/152870.jpg + small_image_url: https://myanimelist.net/images/anime/1429/152870t.jpg + large_image_url: https://myanimelist.net/images/anime/1429/152870l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1429/152870.webp + small_image_url: https://myanimelist.net/images/anime/1429/152870t.webp + large_image_url: https://myanimelist.net/images/anime/1429/152870l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bd-LBH1iQOs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Kagaku no Railgun S + - type: Synonym + title: Toaru Kagaku no Railgun 2 + - type: Synonym + title: Toaru Kagaku no Choudenjihou 2 + - type: Synonym + title: A Certain Scientific Railgun 2 + - type: Japanese + title: とある科学の超電磁砲S + - type: English + title: A Certain Scientific Railgun S + - type: German + title: A Certain Scientific Railgun S + - type: Spanish + title: A Certain Scientific Railgun S + - type: French + title: A Certain Scientific Railgun S + title: Toaru Kagaku no Railgun S + title_english: A Certain Scientific Railgun S + title_japanese: とある科学の超電磁砲S + title_synonyms: + - Toaru Kagaku no Railgun 2 + - Toaru Kagaku no Choudenjihou 2 + - A Certain Scientific Railgun 2 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2013-04-12T00:00:00+00:00' + to: '2013-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2013 + to: + day: 27 + month: 9 + year: 2013 + string: Apr 12, 2013 to Sep 27, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.01 + scored_by: 217205 + rank: 743 + popularity: 654 + members: 414231 + favorites: 3821 + synopsis: |- + Mikoto Misaka and her friends are back, investigating rumors across Academy City. Soon, Mikoto discovers something terrifying: horrific experiments are taking place throughout the city, involving the murder of thousands of espers. Moreover, these espers are far from just ordinary people: they are clones of Mikoto herself. Feeling responsible for their treatment, she sets off to put an end to the experiments; however, the forces opposing her are much more dangerous than she anticipated, and Mikoto finds herself up against some of the most powerful espers imaginable. + + Toaru Kagaku no Railgun S continues the story of the Railgun as she desperately fights to put an end to the inhuman experiments that she believes she helped cause, her life dragged deep into despair in the process. There's never a dull moment in Academy City, but no one ever said all of them would be pleasant. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 16762 + url: https://myanimelist.net/anime/16762/Mirai_Nikki__Redial + images: + jpg: + image_url: https://myanimelist.net/images/anime/1715/103523.jpg + small_image_url: https://myanimelist.net/images/anime/1715/103523t.jpg + large_image_url: https://myanimelist.net/images/anime/1715/103523l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1715/103523.webp + small_image_url: https://myanimelist.net/images/anime/1715/103523t.webp + large_image_url: https://myanimelist.net/images/anime/1715/103523l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6RIp90sktO0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mirai Nikki: Redial' + - type: Synonym + title: Mirai Nikki OVA + - type: Japanese + title: 未来日記リダイヤル + - type: English + title: 'The Future Diary: Redial' + title: 'Mirai Nikki: Redial' + title_english: 'The Future Diary: Redial' + title_japanese: 未来日記リダイヤル + title_synonyms: + - Mirai Nikki OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-06-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 6 + year: 2013 + to: + day: null + month: null + year: null + string: Jun 19, 2013 + duration: 29 min + rating: R - 17+ (violence & profanity) + score: 7.28 + scored_by: 231428 + rank: 3422 + popularity: 737 + members: 373425 + favorites: 659 + synopsis: |- + Yuno Gasai lives a normal life as a first-year in high school. She gets along well with her parents and even has a small circle of friends. However, she cannot help but feel as if someone is missing from her life, someone so important to her that it was as if she had lived another life trying desperately to stay with them. + + After a class trip to the beach, Yuno returns home; but in the middle of the night, she receives strange messages from a voice only she can hear. The voice informs her of the person she is desperate to meet and that she must find him. Soon, she finds herself in a mysterious realm, her only goal being reunited with the person she cannot remember. Though obstacles stand in her way, Yuno will stop at nothing to meet her beloved once again. + + [Written by MAL Rewrite] + background: The OVA received a special broadcast on NicoNico Douga on June 19, 2013. Bundled with the Mirai Nikki Redial + manga volume on July 26, 2013. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 16524 + url: https://myanimelist.net/anime/16524/Suisei_no_Gargantia + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/48817.jpg + small_image_url: https://myanimelist.net/images/anime/11/48817t.jpg + large_image_url: https://myanimelist.net/images/anime/11/48817l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/48817.webp + small_image_url: https://myanimelist.net/images/anime/11/48817t.webp + large_image_url: https://myanimelist.net/images/anime/11/48817l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/saxtE2YcPH4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Suisei no Gargantia + - type: Synonym + title: Suisei no Galgantia + - type: Japanese + title: 翠星のガルガンティア + - type: English + title: Gargantia on the Verdurous Planet + - type: German + title: Gargantia on the Verdurous Planet + - type: Spanish + title: Gargantia on the Verdurous Planet (Suisei no Gargantia) + - type: French + title: Gargantia on The Verdurous Planet + title: Suisei no Gargantia + title_english: Gargantia on the Verdurous Planet + title_japanese: 翠星のガルガンティア + title_synonyms: + - Suisei no Galgantia + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-07T00:00:00+00:00' + to: '2013-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2013 + to: + day: 30 + month: 6 + year: 2013 + string: Apr 7, 2013 to Jun 30, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 184093 + rank: 2498 + popularity: 758 + members: 362653 + favorites: 1380 + synopsis: "In the distant future, a majority of humans have left the Earth, and the Galactic Alliance of Humanity is\ + \ founded to guide exploration and ensure the prosperity of mankind. However, a significant threat arises in the form\ + \ of strange creatures called Hideauze, resulting in an interstellar war to prevent humanity's extinction. Armed with\ + \ Chamber, an autonomous robot, 16-year-old lieutenant Ledo of the Galactic Alliance joins the battle against the\ + \ monsters. In an unfortunate turn of events, Ledo loses control during the battle and is cast out to the far reaches\ + \ of space, crash-landing on a waterlogged Earth.\n\nOn the blue planet, Gargantia—a large fleet of scavenger ships—comes\ + \ across Chamber and retrieves it from the ocean, thinking they have salvaged something of value. Mistaking their\ + \ actions for hostility, Ledo sneaks aboard and takes a young messenger girl named Amy hostage, only to realize that\ + \ the residents of Gargantia are not as dangerous as he had believed. Faced with uncertainty, and unable to communicate\ + \ with his comrades in space, Ledo attempts to get his bearings and acclimate to a new lifestyle. But his peaceful\ + \ days are about to be short-lived, as there is more to this ocean-covered planet than meets the eye. \n\n[Written\ + \ by MAL Rewrite]" + background: Suisei no Gargantia was nominated for the Seiun Award in April 2014. + season: spring + year: 2013 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 16934 + url: https://myanimelist.net/anime/16934/Chuunibyou_demo_Koi_ga_Shitai_Kirameki_no_Slapstick_Noel + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/45512.jpg + small_image_url: https://myanimelist.net/images/anime/7/45512t.jpg + large_image_url: https://myanimelist.net/images/anime/7/45512l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/45512.webp + small_image_url: https://myanimelist.net/images/anime/7/45512t.webp + large_image_url: https://myanimelist.net/images/anime/7/45512l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chuunibyou demo Koi ga Shitai! Kirameki no... Slapstick Noel + - type: Synonym + title: Chuunibyou demo Koi ga Shitai! Episode 13 + - type: Synonym + title: Chu-2 Byo demo Koi ga Shitai! Episode 13 + - type: Japanese + title: 中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル) + - type: English + title: 'Love, Chunibyo & Other Delusions!: Sparkling... Slapstick Noel' + title: Chuunibyou demo Koi ga Shitai! Kirameki no... Slapstick Noel + title_english: 'Love, Chunibyo & Other Delusions!: Sparkling... Slapstick Noel' + title_japanese: 中二病でも恋がしたい! 煌めきの... 聖爆誕祭(スラップステック・ノエル) + title_synonyms: + - Chuunibyou demo Koi ga Shitai! Episode 13 + - Chu-2 Byo demo Koi ga Shitai! Episode 13 + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-06-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 6 + year: 2013 + to: + day: null + month: null + year: null + string: Jun 19, 2013 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 144416 + rank: 2278 + popularity: 1125 + members: 251458 + favorites: 213 + synopsis: |- + Although Yuuta Togashi and Rikka Takanashi have just started dating, they do not know how to progress their young relationship. Due to both of them being shy, neither of them are capable of making the first move. Rikka decides to ask her class representative Shinka Nibutani for some love advice, and she advises Rikka get closer to Yuuta during the Christmas season. Following the suggestion of Yuuta's friend, Makoto Isshiki, they hold a Christmas party at Sanae Dekomori’s place. + + During the party, Yuuta notices Rikka has gone missing and searches for her. When he finds Rikka, he notices that she is acting strange and quickly figures out that she and Sanae are both drunk! How will this Christmas party turn out for the budding couple? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 16201 + url: https://myanimelist.net/anime/16201/Aku_no_Hana + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/50559.jpg + small_image_url: https://myanimelist.net/images/anime/8/50559t.jpg + large_image_url: https://myanimelist.net/images/anime/8/50559l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/50559.webp + small_image_url: https://myanimelist.net/images/anime/8/50559t.webp + large_image_url: https://myanimelist.net/images/anime/8/50559l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/agNACZm_J7U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aku no Hana + - type: Synonym + title: Aku no Hana + - type: Japanese + title: 惡の華 + - type: English + title: Flowers of Evil + - type: German + title: Flowers of Evil + - type: Spanish + title: 'Aku no Hana: Flowers of Evil' + - type: French + title: Flowers of Evil + title: Aku no Hana + title_english: Flowers of Evil + title_japanese: 惡の華 + title_synonyms: + - Aku no Hana + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-05T00:00:00+00:00' + to: '2013-06-30T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2013 + to: + day: 30 + month: 6 + year: 2013 + string: Apr 5, 2013 to Jun 30, 2013 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.17 + scored_by: 86312 + rank: 4126 + popularity: 1136 + members: 249116 + favorites: 3378 + synopsis: |- + Takao Kasuga, a high school student fascinated by poetry, reveres Charles Baudelaire and even decorates his room with the poet's portrait. On a normal day, Takao forgets his copy of The Flowers of Evil in the classroom. When returning to retrieve it, he steals the sports garments of Nanako Saeki—a model student who Takao calls his muse and a femme fatale. + + Deeply ashamed of his act which he sees as a sin and what others see as a crime, Takao realizes with horror that Sawa Nakamura, his classmate and social outcast, knows about his theft. Blackmailed by her, Takao is now forced to partake in Sawa's disturbing fantasies, lest she reveals his deeds to everyone. Caught in a negative spiral of increasingly traumatic experiences, will Takao be able to break free from Sawa's thorns and atone for his sins? + + [Written by MAL Rewrite] + background: Aku no Hana is considered to be the first anime to extensively use rotoscoping. The anime adapts the first + 20 chapters of the manga. The series was released on Blu-ray and DVD in Japan from August 21, 2013, to December 25, + 2013, and in North America by Sentai Filmworks on July 8, 2014. + season: spring + year: 2013 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 721 + type: anime + name: GANSIS + url: https://myanimelist.net/anime/producer/721/GANSIS + - mal_id: 3098 + type: anime + name: Aquatone + url: https://myanimelist.net/anime/producer/3098/Aquatone + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 16035 + url: https://myanimelist.net/anime/16035/Karneval_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/46639.jpg + small_image_url: https://myanimelist.net/images/anime/8/46639t.jpg + large_image_url: https://myanimelist.net/images/anime/8/46639l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/46639.webp + small_image_url: https://myanimelist.net/images/anime/8/46639t.webp + large_image_url: https://myanimelist.net/images/anime/8/46639l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ir-O5BpLgm8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karneval (TV) + - type: Synonym + title: Karneval (2013) + - type: Japanese + title: カーニヴァル + - type: English + title: Karneval + - type: German + title: Karneval + - type: Spanish + title: Karneval + - type: French + title: Karneval + title: Karneval (TV) + title_english: Karneval + title_japanese: カーニヴァル + title_synonyms: + - Karneval (2013) + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-04T00:00:00+00:00' + to: '2013-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2013 + to: + day: 27 + month: 6 + year: 2013 + string: Apr 4, 2013 to Jun 27, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.08 + scored_by: 93249 + rank: 4703 + popularity: 1251 + members: 225727 + favorites: 1188 + synopsis: |- + While in search of his precious friend, a young boy named Nai falls captive to a beautiful woman, whose looks are matched only by her taste for human flesh. Meanwhile Gareki, a clever thief, is in the midst of robbing her luxurious home. After causing a distraction, Gareki agrees to help Nai escape, but they are discovered upon the woman's return. As she transforms into a ghoulish monster, the boys flee. + + On the run, Nai and Gareki are found by "Circus," a government defense agency that deals with criminal activity too difficult for the police to handle and protects civilians from "varuga"—terrible monsters that devour humans for sustenance. In the hope that it will lead Nai to his missing friend, he and Gareki decide to join Circus. On their perilous journey, they face dangerous varuga and begin to uncover the secrets behind a shadowy organization known as Kafka. + + [Written by MAL Rewrite] + background: Frontier Works Inc. released a drama CD titled Karneval Circus on March 25, 2010. An internet radio show + premiered on animate.tv on January 25, 2013, with the character voice of Nai, Hiro Shimono, as the host. + season: spring + year: 2013 + broadcast: + day: Thursdays + time: 02:43 + timezone: Asia/Tokyo + string: Thursdays at 02:43 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 15699 + url: https://myanimelist.net/anime/15699/Haiyore_Nyaruko-san_W + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/47533.jpg + small_image_url: https://myanimelist.net/images/anime/10/47533t.jpg + large_image_url: https://myanimelist.net/images/anime/10/47533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/47533.webp + small_image_url: https://myanimelist.net/images/anime/10/47533t.webp + large_image_url: https://myanimelist.net/images/anime/10/47533l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haiyore! Nyaruko-san W + - type: Synonym + title: Haiyore! Nyaruko-san 2 + - type: Synonym + title: Haiyoru! Nyaruko-san 2 + - type: Synonym + title: 'Nyarko-san: Another Crawling Chaos W' + - type: Japanese + title: 這いよれ!ニャル子さん W + - type: English + title: 'Nyaruko: Crawling With Love! Second Season' + - type: German + title: 'Nyarko-san: Another Crawling Chaos W' + - type: French + title: 'Nyarko-san: Another Crawling Chaos W' + title: Haiyore! Nyaruko-san W + title_english: 'Nyaruko: Crawling With Love! Second Season' + title_japanese: 這いよれ!ニャル子さん W + title_synonyms: + - Haiyore! Nyaruko-san 2 + - Haiyoru! Nyaruko-san 2 + - 'Nyarko-san: Another Crawling Chaos W' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-08T00:00:00+00:00' + to: '2013-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2013 + to: + day: 1 + month: 7 + year: 2013 + string: Apr 8, 2013 to Jul 1, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 96726 + rank: 3941 + popularity: 1445 + members: 191582 + favorites: 306 + synopsis: |- + Nyaruko still wants Mahiro, as does Hasuta. Kūko wants Nyaruko, but believes both Nyaruko's and Mahiro's "first time" belongs to her. Yoriko puts up with all of it and cheerfully runs the house where they all live. Mahiro just wants some sanity. He doesn't want to be the love toy of a Nyarlathotepan, Cthughan, or a shots-like Hasturan. He may or may not hold out. + + (Source: ANN) + background: '' + season: spring + year: 2013 + broadcast: + day: Sundays + time: 01:05 + timezone: Asia/Tokyo + string: Sundays at 01:05 (JST) + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 16668 + url: https://myanimelist.net/anime/16668/Kakumeiki_Valvrave + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/49251.jpg + small_image_url: https://myanimelist.net/images/anime/3/49251t.jpg + large_image_url: https://myanimelist.net/images/anime/3/49251l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/49251.webp + small_image_url: https://myanimelist.net/images/anime/3/49251t.webp + large_image_url: https://myanimelist.net/images/anime/3/49251l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AXsRaWBy03w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakumeiki Valvrave + - type: Synonym + title: Kakumeiki Valvrave + - type: Japanese + title: 革命機ヴァルヴレイヴ + - type: English + title: Valvrave the Liberator + - type: German + title: Valvrave the Liberator + - type: French + title: Valvrave The Liberator + title: Kakumeiki Valvrave + title_english: Valvrave the Liberator + title_japanese: 革命機ヴァルヴレイヴ + title_synonyms: + - Kakumeiki Valvrave + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-12T00:00:00+00:00' + to: '2013-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2013 + to: + day: 28 + month: 6 + year: 2013 + string: Apr 12, 2013 to Jun 28, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.13 + scored_by: 80770 + rank: 4392 + popularity: 1531 + members: 180836 + favorites: 708 + synopsis: |- + In the 71st year of the True Era, humans have successfully expanded into space and have started living in independent galactic colonies. The world itself is split between two major nations: the Atlantic Rim United States (ARUS) and the Dorssia Military Pact Federation (Dorssia)—superpowers that wage war against each other on Earth and far into outer space. In this war-torn era, a third faction comprised of Japan and Islands of the Oceanian Republic (JIOR), reside peacefully and prosper economically, maintaining neutrality between themselves and their militant neighbors. + + Kakumeiki Valvrave commences in an outer space JIOR colony, where 17-year-old Haruto Tokishima's peaceful life is turned upside down as a sudden Dorssian fleet breaches the neutral colony. Their objective is to seize the Valvraves: powerful, but rumored mechanized weapons hidden deep within Haruto's school, Sakimori Academy. In the ensuing chaos, Haruto stumbles upon one of the targeted Valvraves. With his friends' lives in peril, Haruto enters the mecha and seals a contract for its power in exchange for his humanity. With the aid of L-elf—an enigmatic Dorssian agent and gifted strategist—Haruto and the Valvrave initiate a revolution to liberate the world. + + [Written by MAL Rewrite] + background: Kakumeiki Valvrave was the first Anime to receive a Simulcast in Germany. + season: spring + year: 2013 + broadcast: + day: Thursdays + time: 01:35 + timezone: Asia/Tokyo + string: Thursdays at 01:35 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 16512 + url: https://myanimelist.net/anime/16512/Devil_Survivor_2_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/47191.jpg + small_image_url: https://myanimelist.net/images/anime/11/47191t.jpg + large_image_url: https://myanimelist.net/images/anime/11/47191l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/47191.webp + small_image_url: https://myanimelist.net/images/anime/11/47191t.webp + large_image_url: https://myanimelist.net/images/anime/11/47191l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5uA2fk7VKVw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Devil Survivor 2 The Animation + - type: Synonym + title: DS2A + - type: Synonym + title: 'Shin Megami Tensei: Devil Survivor 2' + - type: Japanese + title: デビルサバイバー2 THE ANIMATION + - type: English + title: Devil Survivor 2 The Animation + title: Devil Survivor 2 The Animation + title_english: Devil Survivor 2 The Animation + title_japanese: デビルサバイバー2 THE ANIMATION + title_synonyms: + - DS2A + - 'Shin Megami Tensei: Devil Survivor 2' + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-05T00:00:00+00:00' + to: '2013-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2013 + to: + day: 28 + month: 6 + year: 2013 + string: Apr 5, 2013 to Jun 28, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.84 + scored_by: 81692 + rank: 6019 + popularity: 1588 + members: 173455 + favorites: 478 + synopsis: "The countdown to extinction begins on Sunday with the arrival of the Septentriones, otherworldly invaders\ + \ set on the eradication of mankind. Caught in the crossfire, Hibiki Kuze and his friends join in the war for humanity's\ + \ survival by signing contracts with demons to become \"Devil Summoners.\" Soon, their abilities attract the attention\ + \ of JP's, an underground agency led by Yamato Houtsuin. Once recruited into JP's, Hibiki and his friends fight and\ + \ bond alongside other ordinary citizens who are Devil Summoners. \n\nHowever, with each new day, another Septentrione\ + \ appears to wreak havoc upon Japan. Even if many lives are lost in the process, before that night ends, the young\ + \ summoners must defeat the invaders at all costs.\n\n[Written by MAL Rewrite]" + background: The first episode received a special pre-airing at an event at Cinem@rt Shinjuku on the 2nd of March, 2013. + Regular TV airing started on April 5th. + season: spring + year: 2013 + broadcast: + day: Fridays + time: 02:05 + timezone: Asia/Tokyo + string: Fridays at 02:05 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 870 + type: anime + name: Index + url: https://myanimelist.net/anime/producer/870/Index + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 16528 + url: https://myanimelist.net/anime/16528/Hal + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/46549.jpg + small_image_url: https://myanimelist.net/images/anime/6/46549t.jpg + large_image_url: https://myanimelist.net/images/anime/6/46549l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/46549.webp + small_image_url: https://myanimelist.net/images/anime/6/46549t.webp + large_image_url: https://myanimelist.net/images/anime/6/46549l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OS43cCcWU0A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hal + - type: Synonym + title: Haru + - type: Japanese + title: ハル + - type: English + title: Hal + title: Hal + title_english: Hal + title_japanese: ハル + title_synonyms: + - Haru + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-06-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 6 + year: 2013 + to: + day: null + month: null + year: null + string: Jun 8, 2013 + duration: 1 hr + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 73814 + rank: 2867 + popularity: 1760 + members: 152065 + favorites: 380 + synopsis: |- + Kurumi is a beautiful young woman whose beloved boyfriend, Hal, died in a sudden airplane accident. Left heartbroken and gloomy, she isolates herself in a small house. But this soon comes to change when her grandfather requests the help of a humanoid robot named Q01. + + Taking on the appearance of Hal, Q01 is sent to Kurumi's house in order to save her from her state of despair. As Hal returns day after day and increases his efforts, Kurumi, despite her initial reluctance, slowly begins to open up to him and break free from her depression. But there is more to Hal than meets the eye, and these two will soon learn an unexpected truth about this relationship between a human and an android. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 16397 + url: https://myanimelist.net/anime/16397/Photokano + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/49199.jpg + small_image_url: https://myanimelist.net/images/anime/11/49199t.jpg + large_image_url: https://myanimelist.net/images/anime/11/49199l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/49199.webp + small_image_url: https://myanimelist.net/images/anime/11/49199t.webp + large_image_url: https://myanimelist.net/images/anime/11/49199l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O-p4V0dchlY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Photokano + - type: Synonym + title: Foto Kano + - type: Synonym + title: Photograph Girlfriend + - type: Japanese + title: フォトカノ + - type: English + title: Photo Kano + - type: German + title: Photo Kano + - type: Spanish + title: Photo Kano + title: Photokano + title_english: Photo Kano + title_japanese: フォトカノ + title_synonyms: + - Foto Kano + - Photograph Girlfriend + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-05T00:00:00+00:00' + to: '2013-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2013 + to: + day: 28 + month: 6 + year: 2013 + string: Apr 5, 2013 to Jun 28, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.22 + scored_by: 49755 + rank: 9826 + popularity: 1911 + members: 137520 + favorites: 188 + synopsis: |- + High school student Kazuya Maeda finds his daily life dull and meaningless. This changes right before the end of his summer break when he receives an old camera from his father. Initially hesitant, Kazuya decides to experiment with photography and starts looking for potential models for his pictures. + + Kazuya is approached by various girls willing to model for him: Haruka Niimi, his popular childhood friend; Nonoka Masaki, the athletic ace pitcher of the softball club; Aki Muroto, the Student Council president; Hikari Sanehara, a fellow photography enthusiast; Tomoe Misumi, his timid classmate; Rina Yunoki, the only member of the Cooking Research Society; and Mai Sakura, a friend of his sister. + + As he pursues his new hobby, Kazuya feels like every day becomes more vibrant and meaningful. However, his continued interactions with the girls lead him to wonder if they want to be involved in other areas of his life besides his photography. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14669 + url: https://myanimelist.net/anime/14669/Aura__Maryuuin_Kouga_Saigo_no_Tatakai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1900/142496.jpg + small_image_url: https://myanimelist.net/images/anime/1900/142496t.jpg + large_image_url: https://myanimelist.net/images/anime/1900/142496l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1900/142496.webp + small_image_url: https://myanimelist.net/images/anime/1900/142496t.webp + large_image_url: https://myanimelist.net/images/anime/1900/142496l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m42netf9W2g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Aura: Maryuuin Kouga Saigo no Tatakai' + - type: Synonym + title: 'Aura: Maryuinkoga Saigo no Tatakai' + - type: Synonym + title: 'Aura: Maryuin Kouga Saigo no Tatakai' + - type: Japanese + title: AURA~魔竜院光牙最後の闘い~ + - type: English + title: 'Aura: Koga Maryuin''s Last War' + title: 'Aura: Maryuuin Kouga Saigo no Tatakai' + title_english: 'Aura: Koga Maryuin''s Last War' + title_japanese: AURA~魔竜院光牙最後の闘い~ + title_synonyms: + - 'Aura: Maryuinkoga Saigo no Tatakai' + - 'Aura: Maryuin Kouga Saigo no Tatakai' + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-04-13T00:00:00+00:00' + to: null + prop: + from: + day: 13 + month: 4 + year: 2013 + to: + day: null + month: null + year: null + string: Apr 13, 2013 + duration: 1 hr 22 min + rating: R+ - Mild Nudity + score: 7.28 + scored_by: 48775 + rank: 3386 + popularity: 1934 + members: 135534 + favorites: 652 + synopsis: |- + Ichirou Satou is an ordinary high school student who pretended that he was a hero by the name of "Maryuuin Kouga" back in middle school, which led to others frequently bullying him. Now that he has left this embarrassing phase behind, he does his best to avoid standing out and live a peaceful life, although he feels the world has become quite dull. But when he makes his way back to school one night to grab a textbook he left in class, he runs into a strange girl wearing a costume. + + This girl, Ryouko Satou, happens to be his classmate and is affected by the exact same condition that he once had, holding on to a delusion that she is someone else and dressing up to reflect this. The very next day, Ichirou is asked by his teacher to become friends with Ryouko, to which he adamantly refuses, unwilling to be reminded of his own history. When he sees that she is being bullied just as he once was, however, the boy makes it his responsibility to take care of her and break her free from that which what once plagued him—the perfect job for Maryuuin Kouga. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 48 + type: anime + name: AIC + url: https://myanimelist.net/anime/producer/48/AIC + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 88 + type: anime + name: AIC ASTA + url: https://myanimelist.net/anime/producer/88/AIC_ASTA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 14921 + url: https://myanimelist.net/anime/14921/RDG__Red_Data_Girl + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/50313.jpg + small_image_url: https://myanimelist.net/images/anime/4/50313t.jpg + large_image_url: https://myanimelist.net/images/anime/4/50313l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/50313.webp + small_image_url: https://myanimelist.net/images/anime/4/50313t.webp + large_image_url: https://myanimelist.net/images/anime/4/50313l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/J9-mLrm-anM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'RDG: Red Data Girl' + - type: Synonym + title: RDG + - type: Japanese + title: RDG レッドデータガール + - type: English + title: Red Data Girl + title: 'RDG: Red Data Girl' + title_english: Red Data Girl + title_japanese: RDG レッドデータガール + title_synonyms: + - RDG + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-04T00:00:00+00:00' + to: '2013-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2013 + to: + day: 20 + month: 6 + year: 2013 + string: Apr 4, 2013 to Jun 20, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.58 + scored_by: 50944 + rank: 7690 + popularity: 2140 + members: 118973 + favorites: 251 + synopsis: |- + Fifteen-year-old Izumiko Suzuhara just wants to be a normal girl, but that is easier said than done. Raised in a shrine deep in the mountains, she grew up extremely sheltered and painfully shy. She also has the unfortunate tendency to destroy any electronic device simply by touching it. + + Despite this, she still wants to try and change her life. To mark her determination to follow through on this transformation, Izumiko begins by cutting her bangs, which shocks both her classmates and protectors. And that's only the start! Her guardian, Yukimasa Sagara, forces his son, Miyuki, to come to the mountain shrine and become Izumiko's lifelong servant and protector. Too bad Izumiko and Miyuki cannot stand each other. They have known each other since they were children, and Miyuki bullied her terribly. He simply does not understand what is so special about Izumiko. His father calls Izumiko a goddess, but that cannot be true…can it? Will Izumiko and Miyuki work past their differences? Is she actually a literal goddess? Find out in RDG: Red Data Girl! + background: '' + season: spring + year: 2013 + broadcast: + day: Thursdays + time: 01:00 + timezone: Asia/Tokyo + string: Thursdays at 01:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 12711 + url: https://myanimelist.net/anime/12711/Uta_no☆Prince-sama♪_Maji_Love_2000 + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/44019.jpg + small_image_url: https://myanimelist.net/images/anime/12/44019t.jpg + large_image_url: https://myanimelist.net/images/anime/12/44019l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/44019.webp + small_image_url: https://myanimelist.net/images/anime/12/44019t.webp + large_image_url: https://myanimelist.net/images/anime/12/44019l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uta no☆Prince-sama♪ Maji Love 2000% + - type: Synonym + title: Uta no Prince-sama Maji Love 1000% 2 + - type: Synonym + title: UtaPri 2 + - type: Japanese + title: うたの☆プリンスさまっ♪ マジLOVE2000% + - type: English + title: Uta no Prince Sama 2 + - type: German + title: 'Uta no Prince-sama: Maji Love 2000%' + - type: Spanish + title: Uta no Prince Sama 2 + - type: French + title: 'Uta no Prince-sama: Maji Love 2000%' + title: Uta no☆Prince-sama♪ Maji Love 2000% + title_english: Uta no Prince Sama 2 + title_japanese: うたの☆プリンスさまっ♪ マジLOVE2000% + title_synonyms: + - Uta no Prince-sama Maji Love 1000% 2 + - UtaPri 2 + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-04T00:00:00+00:00' + to: '2013-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2013 + to: + day: 27 + month: 6 + year: 2013 + string: Apr 4, 2013 to Jun 27, 2013 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 58333 + rank: 4114 + popularity: 2150 + members: 117898 + favorites: 542 + synopsis: "Entering her Master's course, Nanami Haruka is facing an even more difficult time. And she isn't the only\ + \ one. The main six members of Starish are assigned new seniors to watch over them! But the seniors aren't having\ + \ the best attitudes about it. \n\nWatch Uta no☆Prince-sama♪ Maji Love 2000% and find yourself completely engaged\ + \ in a whole new adventure mixed in with comedy and romance!" + background: '' + season: spring + year: 2013 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 116 + type: anime + name: Broccoli + url: https://myanimelist.net/anime/producer/116/Broccoli + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 61 + type: anime + name: Idols (Male) + url: https://myanimelist.net/anime/genre/61/Idols_Male + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 16355 + url: https://myanimelist.net/anime/16355/Dansai_Bunri_no_Crime_Edge + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/52139.jpg + small_image_url: https://myanimelist.net/images/anime/13/52139t.jpg + large_image_url: https://myanimelist.net/images/anime/13/52139l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/52139.webp + small_image_url: https://myanimelist.net/images/anime/13/52139t.webp + large_image_url: https://myanimelist.net/images/anime/13/52139l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jyTqVEipUS8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dansai Bunri no Crime Edge + - type: Synonym + title: Dansai Bunri no Crime Edge + - type: Japanese + title: 断裁分離のクライムエッジ + - type: English + title: The Severing Crime Edge + - type: German + title: The Severing Crime Edge + - type: Spanish + title: The Severing Crime Edge + - type: French + title: The Severing Crime Edge + title: Dansai Bunri no Crime Edge + title_english: The Severing Crime Edge + title_japanese: 断裁分離のクライムエッジ + title_synonyms: + - Dansai Bunri no Crime Edge + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-04-04T00:00:00+00:00' + to: '2013-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2013 + to: + day: 27 + month: 6 + year: 2013 + string: Apr 4, 2013 to Jun 27, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.68 + scored_by: 49387 + rank: 7038 + popularity: 2152 + members: 117694 + favorites: 167 + synopsis: |- + Kiri Haimura has an obsession with beautiful hair—specifically, cutting it. This bizarre trait is what leads him to seek out a rumored long-haired ghost who lives in an abandoned house on a hill. However, he finds not a ghost, but a beautiful girl with long flowing hair named Iwai Mushanokouji, the "Hair Queen," whose hair cannot be cut due to a family curse. + + Iwai explains that there is a death game surrounding her, and that if she is killed by a cursed object, aptly named a "Killing Good," the wielder gets their wish granted. After protecting Iwai from "Authors"—Killing Goods users—he learns there is in fact a Killing Good passed down in his own family: a pair of scissors used by his ancestor to commit murders. Naming the scissors "The Severing Crime Edge," he finds that he is able to cut Iwai's cursed hair with them, setting her free to live a normal life. However, many Authors seek to kill the Hair Queen, and Kiri will have to protect her in this lethal game of fate. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2013 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 15911 + url: https://myanimelist.net/anime/15911/Yuyushiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/48747.jpg + small_image_url: https://myanimelist.net/images/anime/12/48747t.jpg + large_image_url: https://myanimelist.net/images/anime/12/48747l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/48747.webp + small_image_url: https://myanimelist.net/images/anime/12/48747t.webp + large_image_url: https://myanimelist.net/images/anime/12/48747l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MvrM1KUSf30?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuyushiki + - type: Synonym + title: Yuyu-shiki + - type: Japanese + title: ゆゆ式 + - type: English + title: Yuyushiki + title: Yuyushiki + title_english: Yuyushiki + title_japanese: ゆゆ式 + title_synonyms: + - Yuyu-shiki + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-10T00:00:00+00:00' + to: '2013-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2013 + to: + day: 26 + month: 6 + year: 2013 + string: Apr 10, 2013 to Jun 26, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 42855 + rank: 2903 + popularity: 2162 + members: 116648 + favorites: 678 + synopsis: |- + Yui Ichii, Yuzuko Nonohara, and Yukari Hinata form a peculiar friend group; even though each girl is eccentric in their own way, they get along. Now entering high school, the friends are looking forward to the next few years together while also wanting to be a part of something bigger. When they stumble across the data processing club without any members and in danger of disbanding, they immediately decide to join it. + + As the club's newest members, Yui, Yuzuko, and Yukari spend their time doing wordplays, teasing each other, and using computers to search for topics to have amusing conversations about. The girls' daily lives never get dull as they enjoy their time at school to the fullest. + + [Written by MAL Rewrite] + background: Yuyushiki was released on DVD and Blu-ray in North America by Sentai Filmworks on July 1, 2014, and August + 5, 2014, respectively. + season: spring + year: 2013 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1594 + type: anime + name: Exit Tunes + url: https://myanimelist.net/anime/producer/1594/Exit_Tunes + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15377 + url: https://myanimelist.net/anime/15377/Hyakka_Ryouran__Samurai_Bride + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/45248.jpg + small_image_url: https://myanimelist.net/images/anime/5/45248t.jpg + large_image_url: https://myanimelist.net/images/anime/5/45248l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/45248.webp + small_image_url: https://myanimelist.net/images/anime/5/45248t.webp + large_image_url: https://myanimelist.net/images/anime/5/45248l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BwL9I9h_Z5Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hyakka Ryouran: Samurai Bride' + - type: Synonym + title: 'Hyakka Ryouran: Samurai Girls 2nd Season' + - type: Synonym + title: 'Hyakka Ryouran: Samurai Girls Dai 2-ki' + - type: Japanese + title: 百花繚乱 サムライブライド + - type: English + title: Samurai Bride + - type: German + title: Samurai Bride + - type: Spanish + title: Samurai Bride + - type: French + title: Samurai Bride + title: 'Hyakka Ryouran: Samurai Bride' + title_english: Samurai Bride + title_japanese: 百花繚乱 サムライブライド + title_synonyms: + - 'Hyakka Ryouran: Samurai Girls 2nd Season' + - 'Hyakka Ryouran: Samurai Girls Dai 2-ki' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-04-05T00:00:00+00:00' + to: '2013-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2013 + to: + day: 21 + month: 6 + year: 2013 + string: Apr 5, 2013 to Jun 21, 2013 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.73 + scored_by: 45001 + rank: 6726 + popularity: 2271 + members: 107879 + favorites: 111 + synopsis: 'Second season of Hyakka Ryoran: Samurai Girls.' + background: '' + season: spring + year: 2013 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1636 + type: anime + name: Gigno Systems + url: https://myanimelist.net/anime/producer/1636/Gigno_Systems + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/15-2013-summer.yaml b/test/fixtures/jikan/season_matrix/15-2013-summer.yaml new file mode 100644 index 0000000..a068a2a --- /dev/null +++ b/test/fixtures/jikan/season_matrix/15-2013-summer.yaml @@ -0,0 +1,3351 @@ +metadata: + captured_at: '2026-05-11T11:32:59Z' + label: 2013-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2013/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:32:59 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86401 + x-request-fingerprint: request:seasons:ca13d728289d24aa056060062e9c48198e6bf578 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 231 + per_page: 25 + data: + - mal_id: 16592 + url: https://myanimelist.net/anime/16592/Danganronpa__Kibou_no_Gakuen_to_Zetsubou_no_Koukousei_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/51463.jpg + small_image_url: https://myanimelist.net/images/anime/4/51463t.jpg + large_image_url: https://myanimelist.net/images/anime/4/51463l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/51463.webp + small_image_url: https://myanimelist.net/images/anime/4/51463t.webp + large_image_url: https://myanimelist.net/images/anime/4/51463l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YAhgRUFrEgE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation' + - type: Synonym + title: 'Dangan Ronpa: The Animation' + - type: Japanese + title: ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION + - type: English + title: 'Danganronpa: The Animation' + - type: German + title: 'Danganronpa: The Animation' + - type: Spanish + title: 'Danganronpa: The Animation' + - type: French + title: 'Danganronpa: The Animation' + title: 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei The Animation' + title_english: 'Danganronpa: The Animation' + title_japanese: ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION + title_synonyms: + - 'Dangan Ronpa: The Animation' + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-07-05T00:00:00+00:00' + to: '2013-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2013 + to: + day: 27 + month: 9 + year: 2013 + string: Jul 5, 2013 to Sep 27, 2013 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.19 + scored_by: 579976 + rank: 4008 + popularity: 188 + members: 1007820 + favorites: 8603 + synopsis: |- + Makoto Naegi, a teenager with no remarkable talent, is surprised to learn that he has been accepted into Hope's Peak Private Academy: an elite school that gathers the best students from various fields. Despite believing his admission was just a fluke, Naegi is delighted to attend an institution known for ensuring success to those who graduate. Determined, he enters the front doors of the prestigious academy. + + However, after losing consciousness inside, Naegi wakes up in a seemingly abandoned classroom. Failing to comprehend how he got there, Naegi begins to explore, and to his surprise, finds his classmates assembled in the gym. While everyone is trying to figure out what happened, they are confronted by the school principal—Monokuma, a robotic teddy bear. The mysterious toy explains that the freshmen are trapped inside the school with only one means of escape—kill a classmate without being discovered. + + Tension fills the air as Naegi and his classmates realize that they are faced with two choices: participate in Monokuma's killing game, or reside together in the school for the rest of their lives. + + [Written by MAL Rewrite] + background: Due to the success of the Danganronpa games, various spin-offs on a variety of media were made including + the anime adaption and Danganronpa/Zero, a series of two novels written by Tsuyoshi Kodakazu and illustrated by Rui + Komatsuzaki which were released on September 15, 2011 and October 13, 2011. + season: summer + year: 2013 + broadcast: + day: Fridays + time: 01:35 + timezone: Asia/Tokyo + string: Fridays at 01:35 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 15451 + url: https://myanimelist.net/anime/15451/High_School_DxD_New + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/47729.jpg + small_image_url: https://myanimelist.net/images/anime/12/47729t.jpg + large_image_url: https://myanimelist.net/images/anime/12/47729l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/47729.webp + small_image_url: https://myanimelist.net/images/anime/12/47729t.webp + large_image_url: https://myanimelist.net/images/anime/12/47729l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VzMvEXZbsso?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD New + - type: Synonym + title: High School DxD Dai 2-ki + - type: Synonym + title: High School DxD 2nd Season + - type: Synonym + title: High School DxD Second Season + - type: Synonym + title: Highschool DxD 2 + - type: Japanese + title: ハイスクールD×D NEW + - type: English + title: High School DxD New + title: High School DxD New + title_english: High School DxD New + title_japanese: ハイスクールD×D NEW + title_synonyms: + - High School DxD Dai 2-ki + - High School DxD 2nd Season + - High School DxD Second Season + - Highschool DxD 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-07T00:00:00+00:00' + to: '2013-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2013 + to: + day: 22 + month: 9 + year: 2013 + string: Jul 7, 2013 to Sep 22, 2013 + duration: 26 min per ep + rating: R+ - Mild Nudity + score: 7.46 + scored_by: 624804 + rank: 2432 + popularity: 202 + members: 969894 + favorites: 4552 + synopsis: |- + The misadventures of Issei Hyoudou, high school pervert and aspiring Harem King, continue on in High School DxD New. As the members of the Occult Research Club carry out their regular activities, it becomes increasingly obvious that there is something wrong with their Knight, the usually composed and alert Yuuto Kiba. Soon, Issei learns of Kiba's dark, bloody past and its connection to the mysterious Holy Swords. Once the subject of a cruel experiment, Kiba now seeks revenge on all those who wronged him. + + With the return of an old enemy, as well as the appearance of two new, Holy Sword-wielding beauties, it isn't long before Issei and his Devil comrades are plunged into a twisted plot once more. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in United Cinema Toyosu, Tokyo on June 29, 2013. Regular broadcasting + began on July 7, 2013. The Blu-ray and DVD Director's Cut includes an extra 3 minutes per episode. + season: summer + year: 2013 + broadcast: + day: Sundays + time: '20:30' + timezone: Asia/Tokyo + string: Sundays at 20:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 18507 + url: https://myanimelist.net/anime/18507/Free + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/51107.jpg + small_image_url: https://myanimelist.net/images/anime/6/51107t.jpg + large_image_url: https://myanimelist.net/images/anime/6/51107l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/51107.webp + small_image_url: https://myanimelist.net/images/anime/6/51107t.webp + large_image_url: https://myanimelist.net/images/anime/6/51107l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tZhI2_rN74o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Free! + - type: Synonym + title: フリー! + - type: Japanese + title: Free! + - type: English + title: Free! - Iwatobi Swim Club + - type: Spanish + title: Free! Iwatobi Swim Club + title: Free! + title_english: Free! - Iwatobi Swim Club + title_japanese: Free! + title_synonyms: + - フリー! + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-04T00:00:00+00:00' + to: '2013-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2013 + to: + day: 26 + month: 9 + year: 2013 + string: Jul 4, 2013 to Sep 26, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 462421 + rank: 3156 + popularity: 260 + members: 846077 + favorites: 9752 + synopsis: |- + Haruka Nanase has a love for water and a passion for swimming. In elementary school, he competed in and won a relay race with his three friends Rin Matsuoka, Nagisa Hazuki, and Makoto Tachibana. After claiming victory at the tournament, the four friends went their separate ways. Years later, they reunite as high school students; however, Rin couldn't care less about returning to the way things used to be. Not only does he attend a different school, but the sole thing important to him is proving that he is a better swimmer than Haruka. + + After the bitter reunion, Haruka, Nagisa, and Makoto decide to form the Iwatobi High School Swim Club, but they will need a fourth member if they hope to take part in the upcoming tournament. Enter Rei Ryuugazaki, a former member of the track team whom Nagisa recruits. As the time to compete draws near, the four develop a close bond while training intensely to come out on top and settle things between Haruka and Rin once and for all. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2013 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 941 + type: anime + name: Iwatobi High School Swimming Club + url: https://myanimelist.net/anime/producer/941/Iwatobi_High_School_Swimming_Club + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11633 + url: https://myanimelist.net/anime/11633/Blood_Lad + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/47677.jpg + small_image_url: https://myanimelist.net/images/anime/11/47677t.jpg + large_image_url: https://myanimelist.net/images/anime/11/47677l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/47677.webp + small_image_url: https://myanimelist.net/images/anime/11/47677t.webp + large_image_url: https://myanimelist.net/images/anime/11/47677l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gLuvPaWfBnE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blood Lad + - type: Japanese + title: ブラッドラッド + - type: English + title: Blood Lad + title: Blood Lad + title_english: Blood Lad + title_japanese: ブラッドラッド + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2013-07-08T00:00:00+00:00' + to: '2013-09-09T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2013 + to: + day: 9 + month: 9 + year: 2013 + string: Jul 8, 2013 to Sep 9, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 376937 + rank: 3747 + popularity: 324 + members: 726293 + favorites: 2126 + synopsis: |- + Staz Charlie Blood is a powerful vampire who rules the Eastern district of Demon World. According to rumors, he is a bloodthirsty and merciless monster, but in reality, Staz is just an otaku obsessed with Japanese culture and completely uninterested in human blood. Leaving the management of his territory to his underlings, Staz spends his days lazing around, indulging in anime, manga, and games. + + When Fuyumi Yanagi, a Japanese girl, accidentally wanders through a portal leading into the demon world, Staz is overjoyed. But just as he is starting to feel an unusual attraction to her, his territory is attacked, resulting in Fuyumi's untimely death. She turns into a wandering ghost and the crestfallen Staz vows to resurrect her as this would mean being able to travel to the human world, something he has always dreamed of. + + Blood Lad follows Staz and Fuyumi, soon joined by the spatial magician Bell and the half-werewolf Wolf, as they travel to find a magic that can bring humans back to life. + + [Written by MAL Rewrite] + background: Episodes 1-3 were previewed at a screening in Kadokawa Cinema Shinjuku, Tokyo on June 30, 2013. Regular + broadcasting began on July 8, 2013. + season: summer + year: 2013 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 17074 + url: https://myanimelist.net/anime/17074/Monogatari_Series__Second_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1807/121534.jpg + small_image_url: https://myanimelist.net/images/anime/1807/121534t.jpg + large_image_url: https://myanimelist.net/images/anime/1807/121534l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1807/121534.webp + small_image_url: https://myanimelist.net/images/anime/1807/121534t.webp + large_image_url: https://myanimelist.net/images/anime/1807/121534l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YrAdRp69BBY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Monogatari Series: Second Season' + - type: Synonym + title: 'Nekomonogatari: Shiro' + - type: Synonym + title: Kabukimonogatari + - type: Synonym + title: Otorimonogatari + - type: Synonym + title: Onimonogatari + - type: Synonym + title: Koimonogatari + - type: Japanese + title: 〈物語〉シリーズ セカンドシーズン + - type: English + title: 'Monogatari Series: Second Season' + - type: French + title: Monogatari Seconde Saison + title: 'Monogatari Series: Second Season' + title_english: 'Monogatari Series: Second Season' + title_japanese: 〈物語〉シリーズ セカンドシーズン + title_synonyms: + - 'Nekomonogatari: Shiro' + - Kabukimonogatari + - Otorimonogatari + - Onimonogatari + - Koimonogatari + type: TV + source: Light novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2013-07-07T00:00:00+00:00' + to: '2013-12-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2013 + to: + day: 29 + month: 12 + year: 2013 + string: Jul 7, 2013 to Dec 29, 2013 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.76 + scored_by: 380879 + rank: 48 + popularity: 327 + members: 719855 + favorites: 24335 + synopsis: |- + Apparitions, oddities, and gods continue to manifest around Koyomi Araragi and his close-knit group of friends: Tsubasa Hanekawa, the group's modest genius; Shinobu Oshino, the resident doughnut-loving vampire; athletic deviant Suruga Kanbaru; bite-happy spirit Mayoi Hachikuji; Koyomi's cute admirer Nadeko Sengoku; and Hitagi Senjougahara, Koyomi's eclectic girlfriend. + + A new semester has begun and with graduation looming over Koyomi, he must quickly decide the paths he will walk, as well as the relationships he will form and friends that he will save. But as strange events begin to unfold, Koyomi is nowhere to be found, and a vicious tiger apparition has appeared in his absence. Hanekawa has become its target, and she quickly finds she must fend for herself. + + [Written by MAL Rewrite] + background: 'Monogatari Series: Second Season adapts all but the third volume of NisiOisiN''s light novel series of + the same title. The third volume''s adaptation, Hanamonogatari, was aired separately in August 2014. The complete + Blu-ray release includes each arc under its novel title and places Hanamonogatari between episodes 11 and 12 of Monogatari + Series: Second Season to reflect the original novel order.' + season: summer + year: 2013 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1099 + type: anime + name: Cyclone Graphics + url: https://myanimelist.net/anime/producer/1099/Cyclone_Graphics + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 16742 + url: https://myanimelist.net/anime/16742/Watashi_ga_Motenai_no_wa_Dou_Kangaetemo_Omaera_ga_Warui + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/51619.jpg + small_image_url: https://myanimelist.net/images/anime/12/51619t.jpg + large_image_url: https://myanimelist.net/images/anime/12/51619l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/51619.webp + small_image_url: https://myanimelist.net/images/anime/12/51619t.webp + large_image_url: https://myanimelist.net/images/anime/12/51619l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IJjsjU0Dwpo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui! + - type: Synonym + title: Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui! + - type: Synonym + title: It's Not My Fault That I'm Not Popular! + - type: Synonym + title: WataMote + - type: Japanese + title: 私がモテないのはどう考えてもお前らが悪い! + - type: English + title: 'WataMote: No Matter How I Look At It, It''s You Guys'' Fault I''m Not Popular!' + - type: German + title: 'WATAMOTE: No Matter How I Look at It, It''s You Guys Fault I''m Not Popular!' + - type: Spanish + title: 'WATAMOTE: No Matter How I Look at It, It’s You Guys Fault I’m Not Popular!' + - type: French + title: 'WATAMOTE: No Matter How I Look at It, It''s You Guys Fault I''m Not Popular!' + title: Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui! + title_english: 'WataMote: No Matter How I Look At It, It''s You Guys'' Fault I''m Not Popular!' + title_japanese: 私がモテないのはどう考えてもお前らが悪い! + title_synonyms: + - Watashi ga Motenai no wa Dou Kangaete mo Omaera ga Warui! + - It's Not My Fault That I'm Not Popular! + - WataMote + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-09T00:00:00+00:00' + to: '2013-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2013 + to: + day: 24 + month: 9 + year: 2013 + string: Jul 9, 2013 to Sep 24, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.99 + scored_by: 362451 + rank: 5204 + popularity: 341 + members: 702013 + favorites: 6233 + synopsis: |- + After living 50 simulated high school lives and dating over 100 virtual boys, Tomoko Kuroki believes that she is ready to conquer her first year of high school. Little does she know that she is much less prepared than she would like to think. In reality, Tomoko is an introverted and awkward young girl, and she herself is the only one who doesn't realize it! With the help of her best friend, Yuu Naruse, and the support and love of her brother Tomoki, Tomoko attempts to brave the new world of high school life. + + Watashi ga Motenai no wa Dou Kangaetemo Omaera ga Warui! chronicles the life of a socially awkward and relatively friendless high school otaku as she attempts to overcome her personal barriers in order to live a fulfilling life. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in Akihabara Gamers, Tokyo on June 29, 2013. Regular broadcasting + began on July 9, 2013. WataMote was licensed by Sentai Filmworks in North America and MVM Films in the United Kingdom. + It was simulcast by Crunchyroll during its original run. + season: summer + year: 2013 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15037 + url: https://myanimelist.net/anime/15037/Corpse_Party__Tortured_Souls_-_Bougyakusareta_Tamashii_no_Jukyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/78811.jpg + small_image_url: https://myanimelist.net/images/anime/10/78811t.jpg + large_image_url: https://myanimelist.net/images/anime/10/78811l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/78811.webp + small_image_url: https://myanimelist.net/images/anime/10/78811t.webp + large_image_url: https://myanimelist.net/images/anime/10/78811l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou' + - type: Synonym + title: 'Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou' + - type: Japanese + title: コープスパーティー Tortured Souls -暴虐された魂の呪叫- + - type: English + title: 'Corpse Party: Tortured Souls' + - type: German + title: 'Corpse Party: Tortured Souls' + - type: Spanish + title: 'Corpse Party: Tortured Souls' + - type: French + title: 'Corpse Party: Tortured Souls' + title: 'Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou' + title_english: 'Corpse Party: Tortured Souls' + title_japanese: コープスパーティー Tortured Souls -暴虐された魂の呪叫- + title_synonyms: + - 'Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou' + type: OVA + source: Visual novel + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2013-07-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 7 + year: 2013 + to: + day: null + month: null + year: null + string: Jul 24, 2013 + duration: 29 min per ep + rating: R - 17+ (violence & profanity) + score: 6.41 + scored_by: 235355 + rank: 8700 + popularity: 668 + members: 408285 + favorites: 1807 + synopsis: |- + Nine students gather in their high school at night to bid farewell to a friend. As is customary among many high school students, they perform a sort of ritual for them to remain friends forever, using small paper charms shaped like dolls. + + However, the students do not realize that these charms are connected to Heavenly Host Academy—an elementary school that was destroyed years ago after a series of gruesome murders took place, a school that rests under the foundation of their very own Kisaragi Academy. Now, trapped in an alternate dimension with vengeful ghosts of the past, the students must work together to escape—or join the spirits of the damned forever. + + A feast for mystery fanatics, gore-hounds, and horror fans alike, Corpse Party: Tortured Souls - Bougyakusareta Tamashii no Jukyou shows a sobering look at redemption, sacrifice, and how the past is always right behind, sometimes a little too close for comfort. + + [Written by MAL Rewrite] + background: 'Corpse Party: Tortured Souls is based off Corpse party BloodCovered: ...Repeated Fear, the 2010 PSP remake + of the 1996 PC-9801 RPG survival horror game Corpse Party.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + licensors: + - mal_id: 490 + type: anime + name: Maiden Japan + url: https://myanimelist.net/anime/producer/490/Maiden_Japan + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 16662 + url: https://myanimelist.net/anime/16662/Kaze_Tachinu + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/52353.jpg + small_image_url: https://myanimelist.net/images/anime/8/52353t.jpg + large_image_url: https://myanimelist.net/images/anime/8/52353l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/52353.webp + small_image_url: https://myanimelist.net/images/anime/8/52353t.webp + large_image_url: https://myanimelist.net/images/anime/8/52353l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RzSpDgiF5y8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaze Tachinu + - type: Japanese + title: 風立ちぬ + - type: English + title: The Wind Rises + - type: German + title: Wie der Wind sich hebt + - type: Spanish + title: El Viento se Levanta + - type: French + title: Le Vent Se Lève + title: Kaze Tachinu + title_english: The Wind Rises + title_japanese: 風立ちぬ + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-07-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 7 + year: 2013 + to: + day: null + month: null + year: null + string: Jul 20, 2013 + duration: 2 hr 6 min + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 221336 + rank: 533 + popularity: 702 + members: 387517 + favorites: 4010 + synopsis: |- + Although Jirou Horikoshi's nearsightedness prevents him from ever becoming a pilot, he leaves his hometown to study aeronautical engineering at Tokyo Imperial University for one simple purpose: to design and build planes just like his hero, Italian aircraft pioneer Giovanni Battista Caproni. His arrival in the capital coincides with the Great Kanto Earthquake of 1923, during which he saves a maid serving the family of a young girl named Naoko Satomi; this disastrous event marks the beginning of over two decades of social unrest and malaise leading up to Japan's eventual surrender in World War II. + + For Jirou, the years leading up to the production of his infamous Mitsubishi A6M Zero fighter aircraft will test every fiber of his being. His many travels and life experiences only urge him onward⁠—even as he realizes both the role of his creations in the war and the harsh realities of his personal life. As time marches on, he must confront an impossible question: at what cost does he chase his beautiful dream? + + [Written by MAL Rewrite] + background: Before its release, director Miyazaki Hayao declared that Kaze Tachinu would be his final film. Like most + of Miyazaki's films, it was the top-grossing movie of its release year, earning $113 million in the domestic box office + in 2013. The film was controversial on both sides of the political spectrum because of its sympathetic portrayal of + Horikoshi and its perceived anti-war stance. The film was nominated for an Academy Award, Miyazaki's third nomination. + The film has won several awards. In 2013 it won the Best Animated Feature during the Alliance of Women Film Journalists, + during the New York Film Critics Online, during the Online Film Critics Society, during the San Francisco Film Critics + Circle and during the Toronto Film Critics Association. Also in 2013 it won the Best Animated Film during the Boston + Online Film Critics Association (which tied with Frozen), during the Boston Society of Film Critics, during the Chicago + Film Critics Association, during the New York Film Critics Circle and during the San Diego Film Critics Society. During + the same year it won the Audience Favorite – Animation during the Mill Valley Film Festival and the Best Family Film + during the Women Film Critics Circle. In 2014 it won the Animation of the Year during the Japan Academy Prize, the + Best Animated Film during the National Board of Review and the Best Motion Picture, Animated or Mixed Media during + the Satellite Awards. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: + - mal_id: 417 + type: anime + name: Disney Platform Distribution + url: https://myanimelist.net/anime/producer/417/Disney_Platform_Distribution + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 16706 + url: https://myanimelist.net/anime/16706/Kami_nomi_zo_Shiru_Sekai__Megami-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/51949.jpg + small_image_url: https://myanimelist.net/images/anime/6/51949t.jpg + large_image_url: https://myanimelist.net/images/anime/6/51949l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/51949.webp + small_image_url: https://myanimelist.net/images/anime/6/51949t.webp + large_image_url: https://myanimelist.net/images/anime/6/51949l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SuY_Pl_b3Uc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kami nomi zo Shiru Sekai: Megami-hen' + - type: Synonym + title: Kami nomi zo Shiru Sekai III + - type: Synonym + title: Kami nomi zo Shiru Sekai 3 + - type: Synonym + title: Kaminomi III + - type: Synonym + title: Kaminomi 3 + - type: Synonym + title: The World God Only Knows III + - type: Synonym + title: The World God Only Knows 3 + - type: Japanese + title: 神のみぞ知るセカイ 女神篇 + - type: English + title: 'The World God Only Knows: Goddesses' + - type: German + title: 'The World God Only Knows: Goddesses' + - type: Spanish + title: 'The World God Only Knows: Goddesses (Kami nomi zo Shiru Sekai: Megami-hen)' + - type: French + title: 'The World God Only Knows: Goddesses' + title: 'Kami nomi zo Shiru Sekai: Megami-hen' + title_english: 'The World God Only Knows: Goddesses' + title_japanese: 神のみぞ知るセカイ 女神篇 + title_synonyms: + - Kami nomi zo Shiru Sekai III + - Kami nomi zo Shiru Sekai 3 + - Kaminomi III + - Kaminomi 3 + - The World God Only Knows III + - The World God Only Knows 3 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-09T00:00:00+00:00' + to: '2013-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2013 + to: + day: 24 + month: 9 + year: 2013 + string: Jul 9, 2013 to Sep 24, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 203730 + rank: 782 + popularity: 751 + members: 367367 + favorites: 2134 + synopsis: |- + Having freed a myriad of women from the runaway spirits possessing their hearts, the "God of Conquest" Keima Katsuragi is confronted with a new task: find the Jupiter Sisters, the goddesses that sealed Old Hell in the past. Diana, the goddess that resides inside his childhood friend Tenri Ayukawa, explains that they have taken shelter in the hearts of the girls he had assisted previously. Moreover, once Diana and her sisters are reunited, their power can seal the runaway spirits away for good and relieve Keima of his exorcising duties. Though he is initially reluctant to get involved in yet another chore, everything changes when tragedy befalls one of the hosts. + + Discovering that the goddesses are being targeted by a mysterious organization known as Vintage, Keima is caught in a race against time to reunite the sisters and rescue the girl who has already fallen prey. With deeper resolve than ever before, Keima works together with demons Elsie and Haqua to recapture the hearts of the girls he had charmed in the past. However, the road ahead is a difficult one, as he is soon met with the consequences of his previous conquests. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2013 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 15039 + url: https://myanimelist.net/anime/15039/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/49993.jpg + small_image_url: https://myanimelist.net/images/anime/5/49993t.jpg + large_image_url: https://myanimelist.net/images/anime/5/49993l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/49993.webp + small_image_url: https://myanimelist.net/images/anime/5/49993t.webp + large_image_url: https://myanimelist.net/images/anime/5/49993l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aTv79pJh_dw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie + - type: Synonym + title: AnoHana Movie + - type: Synonym + title: We Still Don't Know the Name of the Flower We Saw That Day. Movie + - type: Japanese + title: 劇場版 あの日見た花の名前を僕達はまだ知らない。 + - type: English + title: 'Anohana: The Flower We Saw That Day The Movie' + - type: German + title: 'AnoHana: Die Blume, die Wir an Jenem Tag Sahen der FIlm' + title: Ano Hi Mita Hana no Namae wo Bokutachi wa Mada Shiranai. Movie + title_english: 'Anohana: The Flower We Saw That Day The Movie' + title_japanese: 劇場版 あの日見た花の名前を僕達はまだ知らない。 + title_synonyms: + - AnoHana Movie + - We Still Don't Know the Name of the Flower We Saw That Day. Movie + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-08-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 8 + year: 2013 + to: + day: null + month: null + year: null + string: Aug 31, 2013 + duration: 1 hr 39 min + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 150238 + rank: 1069 + popularity: 899 + members: 314112 + favorites: 634 + synopsis: |- + A year after their deceased friend Honma Meiko appeared to them, Jinta Yadomi and the other members of the Super Peace Busters decide to write letters in her memory. Attempting to enjoy their summer together, they reminisce about their time together before and after her death. + + AnoHana. Movie retells the main events of the parent story in the perspective of each member of the Super Peace Busters. + + [Written by MAL Rewrite] + background: AnoHana Movie received a Jury Selection award in the Animation division of the 17th Japan Media Arts Festival. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 16918 + url: https://myanimelist.net/anime/16918/Gin_no_Saji + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/49237.jpg + small_image_url: https://myanimelist.net/images/anime/6/49237t.jpg + large_image_url: https://myanimelist.net/images/anime/6/49237l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/49237.webp + small_image_url: https://myanimelist.net/images/anime/6/49237t.webp + large_image_url: https://myanimelist.net/images/anime/6/49237l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jT_HKLFa05I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gin no Saji + - type: Japanese + title: 銀の匙 + - type: English + title: Silver Spoon + - type: German + title: Silver Spoon + - type: Spanish + title: Silver Spoon + - type: French + title: Silver Spoon + title: Gin no Saji + title_english: Silver Spoon + title_japanese: 銀の匙 + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2013-07-12T00:00:00+00:00' + to: '2013-09-20T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2013 + to: + day: 20 + month: 9 + year: 2013 + string: Jul 12, 2013 to Sep 20, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.09 + scored_by: 139107 + rank: 607 + popularity: 900 + members: 313956 + favorites: 3075 + synopsis: "Yuugo Hachiken is studious, hard-working, and tired of trying to live up to expectations he just cannot meet.\ + \ With the ushering in of a brand new school year, he decides to enroll in Ooezo Agricultural High School, a boarding\ + \ school located in the Hokkaido countryside, as a means to escape from the stress brought upon by his parents.\n\ + \ \nInitially convinced that he would do well at this institution, Hachiken is quickly proven wrong by his talented\ + \ classmates, individuals who have been living on farms their entire lives and know just about everything when it\ + \ comes to food, vegetables, and even the physiology of livestock! Whether it be waking up at five in the morning\ + \ for strenuous labor or to take care of farm animals, Hachiken is a complete amateur when it comes to the harsh agricultural\ + \ life.\n \nGin no Saji follows the comedic story of a young student as he tries to fit into a completely new environment,\ + \ meeting many unique people along the way. As he struggles to appreciate his surroundings, Hachiken hopes to discover\ + \ his dreams, so that he may lead a fulfilling life on his own terms.\n\n[Written by MAL Rewrite]" + background: Gin no Saji is an anime adaptation of Hiromu Arakawa's manga of the same name that has sold over 12 million + copies in Japan alone and was honored with a nomination for the 19th annual Tezuka Osamu Cultural Prize. The series + aired in 2013 on the famous Fuji Television noitaminA block, which has aired several prominent anime including Anohana, + Nodame Cantabile and Psycho-Pass. Gin no Saji has been licensed by Aniplex of America for streaming and home video + distribution in North America. The anime adaptation was followed by a live-action film adaptation, of the same source + material, that premiered in 2014. + season: summer + year: 2013 + broadcast: + day: Fridays + time: 00:45 + timezone: Asia/Tokyo + string: Fridays at 00:45 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 14829 + url: https://myanimelist.net/anime/14829/Fate_kaleid_liner_Prisma☆Illya + images: + jpg: + image_url: https://myanimelist.net/images/anime/1773/121542.jpg + small_image_url: https://myanimelist.net/images/anime/1773/121542t.jpg + large_image_url: https://myanimelist.net/images/anime/1773/121542l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1773/121542.webp + small_image_url: https://myanimelist.net/images/anime/1773/121542t.webp + large_image_url: https://myanimelist.net/images/anime/1773/121542l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LRXcx5IaQcg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/kaleid liner Prisma☆Illya + - type: Japanese + title: Fate/kaleid liner プリズマ☆イリヤ + - type: English + title: Fate/Kaleid Liner Prisma Illya + - type: German + title: Fate/Kaleid Liner Prisma☆ Illya + - type: Spanish + title: Fate/Kaleid Liner Prisma☆ Illya + - type: French + title: Fate/Kaleid Liner Prisma☆ Illya + title: Fate/kaleid liner Prisma☆Illya + title_english: Fate/Kaleid Liner Prisma Illya + title_japanese: Fate/kaleid liner プリズマ☆イリヤ + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2013-07-13T00:00:00+00:00' + to: '2013-09-14T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2013 + to: + day: 14 + month: 9 + year: 2013 + string: Jul 13, 2013 to Sep 14, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 133025 + rank: 5072 + popularity: 952 + members: 294055 + favorites: 1055 + synopsis: |- + Mage's Association members Rin Toosaka and Luviagelita "Luvia" Edelfelt are tasked with finding and retrieving seven Class Cards, medieval artifacts containing the life essence of legendary Heroic Spirits. To aid them in their mission, they are granted the power of Ruby and Sapphire, two sentient Kaleidosticks that would enable them to transform themselves into magical girls and drastically increase their abilities. However, the two mages are on anything but good terms, prompting the Kaleidosticks to abandon them in search for new masters. They stumble upon two young schoolgirls—Illyasviel von Einzbern and Miyu—and quickly convince them to form a contract. With their new powers and responsibilities, Illya and Miyu set forth to collect all the Class Cards. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2013 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 715 + type: anime + name: Dwango + url: https://myanimelist.net/anime/producer/715/Dwango + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: [] + - mal_id: 18753 + url: https://myanimelist.net/anime/18753/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/54831.jpg + small_image_url: https://myanimelist.net/images/anime/9/54831t.jpg + large_image_url: https://myanimelist.net/images/anime/9/54831l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/54831.webp + small_image_url: https://myanimelist.net/images/anime/9/54831t.webp + large_image_url: https://myanimelist.net/images/anime/9/54831l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lIQxOGkD-S8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA + - type: Synonym + title: Oregairu OVA + - type: Synonym + title: My youth romantic comedy is wrong as I expected. OVA + - type: Synonym + title: 'Yahari Ore no Seishun Love Comedy wa Machigatteiru.: Kochira Toshite mo Karera Kanojora no Yukusue ni Sachiookaran + Koto wo Negawazaru wo Enai.' + - type: Japanese + title: やはり俺の青春ラブコメはまちがっている。OVA「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」 + - type: English + title: My Teen Romantic Comedy SNAFU OVA + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. OVA + title_english: My Teen Romantic Comedy SNAFU OVA + title_japanese: やはり俺の青春ラブコメはまちがっている。OVA「こちらとしても彼ら彼女らの行く末に幸多からんことを願わざるを得ない。」 + title_synonyms: + - Oregairu OVA + - My youth romantic comedy is wrong as I expected. OVA + - 'Yahari Ore no Seishun Love Comedy wa Machigatteiru.: Kochira Toshite mo Karera Kanojora no Yukusue ni Sachiookaran + Koto wo Negawazaru wo Enai.' + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-09-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 9 + year: 2013 + to: + day: null + month: null + year: null + string: Sep 19, 2013 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 176815 + rank: 1868 + popularity: 966 + members: 290893 + favorites: 521 + synopsis: |- + One morning, Hachiman Hikigaya contemplates the superfluous nature of marriage and its misleading image of happiness. However, he is forced into confronting his skepticism when the Volunteer Service Club is tasked with assisting a local municipal magazine advertise the allure of marriage to younger people. Unfortunately, neither the club's advisor, Shizuka Hiratsuka, nor the other club members have any firsthand experience with the subject. With only one week until the deadline, the group must quickly learn about the intricacies behind the special ceremony, even if they have to resort to more creative means! + + [Written by MAL Rewrite] + background: The OVA is bundled with the limited edition of Yahari Game demo Ore no Seishun Love Come wa Machigatteiru + Playstation Vita game. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15335 + url: https://myanimelist.net/anime/15335/Gintama_Movie_2__Kanketsu-hen_-_Yorozuya_yo_Eien_Nare + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/51723.jpg + small_image_url: https://myanimelist.net/images/anime/10/51723t.jpg + large_image_url: https://myanimelist.net/images/anime/10/51723l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/51723.webp + small_image_url: https://myanimelist.net/images/anime/10/51723t.webp + large_image_url: https://myanimelist.net/images/anime/10/51723l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UhJM5rVqaF8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gintama Movie 2: Kanketsu-hen - Yorozuya yo Eien Nare' + - type: Synonym + title: 'Gintama: The Final Chapter - Be Forever Yorozuya' + - type: Synonym + title: Gintama Movie 2 + - type: Japanese + title: 劇場版 銀魂 完結篇 万事屋よ永遠なれ + - type: English + title: 'Gintama: The Movie: The Final Chapter: Be Forever Yorozuya' + - type: German + title: Gintama the Movie 2 + title: 'Gintama Movie 2: Kanketsu-hen - Yorozuya yo Eien Nare' + title_english: 'Gintama: The Movie: The Final Chapter: Be Forever Yorozuya' + title_japanese: 劇場版 銀魂 完結篇 万事屋よ永遠なれ + title_synonyms: + - 'Gintama: The Final Chapter - Be Forever Yorozuya' + - Gintama Movie 2 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-07-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 7 + year: 2013 + to: + day: null + month: null + year: null + string: Jul 6, 2013 + duration: 1 hr 50 min + rating: PG-13 - Teens 13 or older + score: 8.9 + scored_by: 145136 + rank: 25 + popularity: 1074 + members: 262956 + favorites: 2158 + synopsis: |- + When Gintoki apprehends a movie pirate at a premiere, he checks the camera's footage and finds himself transported to a bleak, post-apocalyptic version of Edo, where a mysterious epidemic called the "White Plague" has ravished the world's population. It turns out that the movie pirate wasn't a pirate after all—it was an android time machine, and Gintoki has been hurtled five years into the future! Shinpachi and Kagura, his Yorozuya cohorts, have had a falling out and are now battle-hardened solo vigilantes and he himself has been missing for years, disappearing without a trace after scribbling a strange message in his journal. + + Setting out in the disguise given to him by the android time machine, Gintoki haphazardly reunites the Yorozuya team to investigate the White Plague, and soon discovers that the key to saving the future lies in the darkness of his own past. Determined to confront a powerful foe, he makes an important discovery—with a ragtag band of friends and allies at his side, he doesn't have to fight alone. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18119 + url: https://myanimelist.net/anime/18119/Servant_x_Service + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/51579.jpg + small_image_url: https://myanimelist.net/images/anime/13/51579t.jpg + large_image_url: https://myanimelist.net/images/anime/13/51579l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/51579.webp + small_image_url: https://myanimelist.net/images/anime/13/51579t.webp + large_image_url: https://myanimelist.net/images/anime/13/51579l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2c1GN5O6mx4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Servant x Service + - type: Japanese + title: サーバント×サービス + - type: English + title: Servant x Service + title: Servant x Service + title_english: Servant x Service + title_japanese: サーバント×サービス + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-07-06T00:00:00+00:00' + to: '2013-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2013 + to: + day: 28 + month: 9 + year: 2013 + string: Jul 6, 2013 to Sep 28, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.62 + scored_by: 101029 + rank: 1740 + popularity: 1199 + members: 236439 + favorites: 726 + synopsis: "Frustrating, insufficient, and irritating is how most citizens would describe civil servants. However, three\ + \ new employees are about to discover what really happens behind the scenes. Lucy Yamagami, bent on revenge against\ + \ the civil servant who allowed her comically long name to be put on her birth certificate; Yutaka Hasebe, an easygoing\ + \ guy always on the lookout for a place to slack off; and Saya Miyoshi, a nervous first-time worker, are about to\ + \ experience the underwhelming satisfaction of being government employees. \n\nThey are supposed to be trained by\ + \ Taishi Ichimiya, but he has no idea how to do so, even though he has worked there for eight years. With an incompetent\ + \ senior colleague and unfavorable confrontations with clients, the trio starts to lose faith in their chosen occupation\ + \ but encourage each other to do their best. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2013 + broadcast: + day: Saturdays + time: 03:08 + timezone: Asia/Tokyo + string: Saturdays at 03:08 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 2912 + type: anime + name: Three S Studio + url: https://myanimelist.net/anime/producer/2912/Three_S_Studio + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 16009 + url: https://myanimelist.net/anime/16009/Kamisama_no_Inai_Nichiyoubi + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/52127.jpg + small_image_url: https://myanimelist.net/images/anime/2/52127t.jpg + large_image_url: https://myanimelist.net/images/anime/2/52127l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/52127.webp + small_image_url: https://myanimelist.net/images/anime/2/52127t.webp + large_image_url: https://myanimelist.net/images/anime/2/52127l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nIYJXpaxO7M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamisama no Inai Nichiyoubi + - type: Synonym + title: The Sunday Without God + - type: Synonym + title: Kami-Nai + - type: Synonym + title: Kami-sama no Inai Nichiyoubi + - type: Japanese + title: 神さまのいない日曜日 + - type: English + title: Sunday Without God + - type: German + title: Sunday Without God + - type: Spanish + title: Sunday without God (Kamisama no Inai Nichiyoubi) + - type: French + title: Sunday Without God + title: Kamisama no Inai Nichiyoubi + title_english: Sunday Without God + title_japanese: 神さまのいない日曜日 + title_synonyms: + - The Sunday Without God + - Kami-Nai + - Kami-sama no Inai Nichiyoubi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-07T00:00:00+00:00' + to: '2013-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2013 + to: + day: 22 + month: 9 + year: 2013 + string: Jul 7, 2013 to Sep 22, 2013 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.28 + scored_by: 96977 + rank: 3409 + popularity: 1220 + members: 232346 + favorites: 899 + synopsis: |- + God has abandoned the world. As a result, life cannot end nor can new life be born, and the "dead" walk restlessly among the living. Granting one last miracle before turning away forever, God created "gravekeepers," mystical beings capable of putting the dead to rest through a proper burial. Ai, a cheerful but naïve young girl, serves as her village's gravekeeper in place of her late mother. + + One day, a man known as Hampnie Hambart, who is supposedly Ai's father, arrives and kills all the people in her village. Having lost her village and with no plans for the future, Ai decides to accompany the mysterious man on his journey. As she travels the land, the young gravekeeper strives to fulfill her duties, granting peace to the dead and assisting the living, while at the same time learning more about the world that God left in this tragic state. + + [Written by MAL Rewrite] + background: Kamisama no Inai Nichiyoubi adapts the first 5 novels of Kimihito Irie's light novel series of the same + title. + season: summer + year: 2013 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 16353 + url: https://myanimelist.net/anime/16353/Love_Lab + images: + jpg: + image_url: https://myanimelist.net/images/anime/1900/147887.jpg + small_image_url: https://myanimelist.net/images/anime/1900/147887t.jpg + large_image_url: https://myanimelist.net/images/anime/1900/147887l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1900/147887.webp + small_image_url: https://myanimelist.net/images/anime/1900/147887t.webp + large_image_url: https://myanimelist.net/images/anime/1900/147887l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ojjXhNR74_c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Love Lab + - type: Synonym + title: Renai Lab + - type: Japanese + title: 恋愛ラボ + - type: English + title: Love Lab + - type: Spanish + title: Love Lab (Ren Ai Lab) + title: Love Lab + title_english: Love Lab + title_japanese: 恋愛ラボ + title_synonyms: + - Renai Lab + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-07-05T00:00:00+00:00' + to: '2013-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2013 + to: + day: 27 + month: 9 + year: 2013 + string: Jul 5, 2013 to Sep 27, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 81267 + rank: 3232 + popularity: 1317 + members: 212225 + favorites: 553 + synopsis: |- + At Fujisaki Girls Academy, student council president Natsuo Maki is the epitome of grace and perfection, admired by all the young girls who attend the school. One day, Riko Kurahashi walks into the student council room on an errand, only to discover Natsuo practicing her kissing techniques on a pillow, an act that is neither graceful nor elegant. Riko soon discovers that Natsuo desires more romance in her life, leading her to practice "romantic situations" in secret. + + Sympathizing with her, Riko agrees to help Natsuo with her love research. Named "Love Lab," the project practices the essentials of love and romance, such as bumping into each other "accidentally" and holding hands. Soon, the entire student council joins in on the fun in the Love Lab too! Through their research and real life encounters, what will they learn about romance? + + Weaving together funny characters and comedic situations, Love Lab builds a story of friendship and romance, while never missing a beat with the laughter. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in Tokyo on June 30, 2013. Regular broadcasting began on July 5, + 2013. + season: summer + year: 2013 + broadcast: + day: Fridays + time: 02:05 + timezone: Asia/Tokyo + string: Fridays at 02:05 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 15605 + url: https://myanimelist.net/anime/15605/Brothers_Conflict + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/51409.jpg + small_image_url: https://myanimelist.net/images/anime/5/51409t.jpg + large_image_url: https://myanimelist.net/images/anime/5/51409l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/51409.webp + small_image_url: https://myanimelist.net/images/anime/5/51409t.webp + large_image_url: https://myanimelist.net/images/anime/5/51409l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cqrTp49PoYQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Brothers Conflict + - type: Synonym + title: BroCon + - type: Japanese + title: BROTHERS CONFLICT + - type: English + title: Brothers Conflict + title: Brothers Conflict + title_english: Brothers Conflict + title_japanese: BROTHERS CONFLICT + title_synonyms: + - BroCon + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-02T00:00:00+00:00' + to: '2013-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2013 + to: + day: 17 + month: 9 + year: 2013 + string: Jul 2, 2013 to Sep 17, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 5.88 + scored_by: 104835 + rank: 11588 + popularity: 1428 + members: 195115 + favorites: 754 + synopsis: |- + Ema Hinata is a sweet girl with only her father to call family. One day, she learns that he will be remarrying Miwa Asahina, a wealthy fashion designer. Though she's glad she has a new place to call home, the family she gains is greater than she could ever imagine—Ema now has 13 step-brothers! + + Wishing to give her father space, she moves into the Sunrise Residence where her brothers live. As she settles in, Ema realizes she may not experience the loving kinship of a family that she has always longed for, as many of her new brothers exhibit feelings toward Ema that aren't just familial. + + With each brother desiring Ema's attention in his own way, will she be able to work toward a happy ending for all, or will she choose one brother that has stolen her heart? + + [Written by MAL Rewrite] + background: Idea Factory released two games based on the franchise for the Sony PlayStation Portable. A compilation + of short stories that were first featured in Dengeki Girl’s Style and Sylph was also released. + season: summer + year: 2013 + broadcast: + day: Tuesdays + time: '19:30' + timezone: Asia/Tokyo + string: Tuesdays at 19:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + demographics: [] + - mal_id: 16732 + url: https://myanimelist.net/anime/16732/Kiniro_Mosaic + images: + jpg: + image_url: https://myanimelist.net/images/anime/1793/117610.jpg + small_image_url: https://myanimelist.net/images/anime/1793/117610t.jpg + large_image_url: https://myanimelist.net/images/anime/1793/117610l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1793/117610.webp + small_image_url: https://myanimelist.net/images/anime/1793/117610t.webp + large_image_url: https://myanimelist.net/images/anime/1793/117610l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qGf5rZ9iyfg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kiniro Mosaic + - type: Synonym + title: Kinmosa + - type: Synonym + title: Golden Mosaic + - type: Synonym + title: Kin-iro Mosaic + - type: Japanese + title: きんいろモザイク + - type: English + title: KINMOZA! + - type: German + title: KINMOZA! + - type: Spanish + title: KINMOZA! + - type: French + title: KINMOZA! + title: Kiniro Mosaic + title_english: KINMOZA! + title_japanese: きんいろモザイク + title_synonyms: + - Kinmosa + - Golden Mosaic + - Kin-iro Mosaic + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-06T00:00:00+00:00' + to: '2013-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2013 + to: + day: 21 + month: 9 + year: 2013 + string: Jul 6, 2013 to Sep 21, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 72487 + rank: 3695 + popularity: 1450 + members: 191218 + favorites: 902 + synopsis: |- + Shinobu Oomiya once left Japan to participate in a homestay in England. During her time there, she became close friends with Alice Cartelet, the daughter of the family she was living with. However, when it was time for Shinobu to return to Japan, the two were able to express their sorrow despite the language barrier between them. + + Five years later, now a first year student in high school, Shinobu receives a letter by air mail in a language she does not understand. This letter is penned by none other than Alice, detailing her own homestay in Japan. In fact, Alice will be attending Shinobu's high school and living with her! Alongside their friends Youko Inokuma, Aya Komichi, and Karen Kujou, the five girls attend school together and learn about what their different cultures have to offer, day after day. + + [Written by MAL Rewrite] + background: Characters and songs from this series also appear in the rhythm game Miracle Girls Festival, which was released + on the PlayStation Vita in December 2015. The conversation school Coco Juku directed the series' English segments. + season: summer + year: 2013 + broadcast: + day: Saturdays + time: '20:30' + timezone: Asia/Tokyo + string: Saturdays at 20:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 17909 + url: https://myanimelist.net/anime/17909/Uchouten_Kazoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/85433.jpg + small_image_url: https://myanimelist.net/images/anime/3/85433t.jpg + large_image_url: https://myanimelist.net/images/anime/3/85433l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/85433.webp + small_image_url: https://myanimelist.net/images/anime/3/85433t.webp + large_image_url: https://myanimelist.net/images/anime/3/85433l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QVu8qiE7Yv4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchouten Kazoku + - type: Synonym + title: Uchoten Kazoku + - type: Japanese + title: 有頂天家族 + - type: English + title: The Eccentric Family + - type: German + title: The Eccentric Family + - type: French + title: La Famille Excentrique + title: Uchouten Kazoku + title_english: The Eccentric Family + title_japanese: 有頂天家族 + title_synonyms: + - Uchoten Kazoku + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-07-07T00:00:00+00:00' + to: '2013-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2013 + to: + day: 29 + month: 9 + year: 2013 + string: Jul 7, 2013 to Sep 29, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.83 + scored_by: 68374 + rank: 1114 + popularity: 1458 + members: 190154 + favorites: 1542 + synopsis: |- + Kyoto has been populated by groups of tanuki and tengu for years, living alongside humans who are oblivious to the existence of these creatures. Yasaburou Shimogamo is the third son of an influential tanuki family who spends his carefree days taking care of an old tengu, observing humans through his ability to shapeshift, and dealing with the mysterious woman named Benten. + + Behind the peace and tranquility, however, is a painful memory from long ago as Yasaburou's father, head of the tanuki community, was killed and eaten by a group of humans known as the Friday Fellows. Uchouten Kazoku follows the trials and tribulations of the Shimogamo brothers as they struggle to avoid their own grisly demise while coming ever closer to unraveling the truth behind their father's death. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2013 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 158 + type: anime + name: Kids Station + url: https://myanimelist.net/anime/producer/158/Kids_Station + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 18229 + url: https://myanimelist.net/anime/18229/Gatchaman_Crowds + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/52471.jpg + small_image_url: https://myanimelist.net/images/anime/7/52471t.jpg + large_image_url: https://myanimelist.net/images/anime/7/52471l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/52471.webp + small_image_url: https://myanimelist.net/images/anime/7/52471t.webp + large_image_url: https://myanimelist.net/images/anime/7/52471l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ecYxVCXI844?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gatchaman Crowds + - type: Japanese + title: ガッチャマン クラウズ + - type: English + title: Gatchaman Crowds + title: Gatchaman Crowds + title_english: Gatchaman Crowds + title_japanese: ガッチャマン クラウズ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-13T00:00:00+00:00' + to: '2013-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2013 + to: + day: 28 + month: 9 + year: 2013 + string: Jul 13, 2013 to Sep 28, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.28 + scored_by: 71795 + rank: 3400 + popularity: 1467 + members: 189597 + favorites: 1221 + synopsis: |- + Hajime Ichinose's ordinary life is in for a change when a transcendent being named J.J Robinson hands her a small book called NOTE—a device which transforms her into one of the Gatchaman, the legendary protectors of Tachikawa City. Stressing that the existence of their group must remain a secret, fellow Gatchaman Sugane Tachibana takes Hajime to their base of operations, where Paiman, the panda-like alien leader of the Gatchaman, reveals their purpose: to eliminate aliens that pose a danger to humanity. These existential threats, called MESS, are becoming increasingly dangerous, destroying everything they touch. Now it is up to the Gatchaman and their new recruit to stop them before the world is engulfed in chaos. + + [Written by MAL Rewrite] + background: The North American release of the Gatchaman Crowds anime series does not contain the director's cut of episode + 12, which remains exclusive to Japan. + season: summer + year: 2013 + broadcast: + day: Saturdays + time: 01:58 + timezone: Asia/Tokyo + string: Saturdays at 01:58 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 3193 + type: anime + name: Sound Inn Studio + url: https://myanimelist.net/anime/producer/3193/Sound_Inn_Studio + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 17741 + url: https://myanimelist.net/anime/17741/Kimi_no_Iru_Machi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1829/144852.jpg + small_image_url: https://myanimelist.net/images/anime/1829/144852t.jpg + large_image_url: https://myanimelist.net/images/anime/1829/144852l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1829/144852.webp + small_image_url: https://myanimelist.net/images/anime/1829/144852t.webp + large_image_url: https://myanimelist.net/images/anime/1829/144852l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9hAXnfj52b8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi no Iru Machi + - type: Synonym + title: Kimi no Iru Machi + - type: Japanese + title: 君のいる町 + - type: English + title: A Town Where You Live + - type: German + title: A Town Where You Live + - type: Spanish + title: A Town Where You Live + - type: French + title: A Town Where You Live + title: Kimi no Iru Machi + title_english: A Town Where You Live + title_japanese: 君のいる町 + title_synonyms: + - Kimi no Iru Machi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-13T00:00:00+00:00' + to: '2013-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2013 + to: + day: 28 + month: 9 + year: 2013 + string: Jul 13, 2013 to Sep 28, 2013 + duration: 20 min per ep + rating: R+ - Mild Nudity + score: 6.83 + scored_by: 66356 + rank: 6098 + popularity: 1682 + members: 160876 + favorites: 627 + synopsis: |- + Haruto Kirishima lived a calm life out in the countryside, away from the fast-paced life of the city. Then Yuzuki Eba appeared in his life out of nowhere, having come from Tokyo to briefly live with her family. Their time together left him enamored with the memories of that short period before she just as abruptly disappeared from his life, and left him full of questions. + + Kimi no Iru Machi begins some time later, after Haruto moves to Tokyo to live with his sister, in order to pursue a career as a cook. In reality though he wishes to be with Yuzuki. Things don't start good though. When he arrives he is mistaken for a burglar and attacked by his sister's neighbour Mishima Asuka. After the misunderstanding is cleared his feelings begin to waver though. Is Eba, who keeps avoiding him for seemingly no reason, the one for him or is it Asuka? + background: '' + season: summer + year: 2013 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1081 + type: anime + name: ZERO-A + url: https://myanimelist.net/anime/producer/1081/ZERO-A + licensors: + - mal_id: 217 + type: anime + name: Nozomi Entertainment + url: https://myanimelist.net/anime/producer/217/Nozomi_Entertainment + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 16157 + url: https://myanimelist.net/anime/16157/Choujigen_Game_Neptune_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/52141.jpg + small_image_url: https://myanimelist.net/images/anime/6/52141t.jpg + large_image_url: https://myanimelist.net/images/anime/6/52141l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/52141.webp + small_image_url: https://myanimelist.net/images/anime/6/52141t.webp + large_image_url: https://myanimelist.net/images/anime/6/52141l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QUBDyCqOFso?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Choujigen Game Neptune The Animation + - type: Synonym + title: Kami Jigen Game Neptune V + - type: Synonym + title: Hyperdimension Neptunia Victory + - type: Japanese + title: 超次元ゲイム ネプテューヌ THE ANIMATION + - type: English + title: Hyperdimension Neptunia + title: Choujigen Game Neptune The Animation + title_english: Hyperdimension Neptunia + title_japanese: 超次元ゲイム ネプテューヌ THE ANIMATION + title_synonyms: + - Kami Jigen Game Neptune V + - Hyperdimension Neptunia Victory + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-12T00:00:00+00:00' + to: '2013-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2013 + to: + day: 27 + month: 9 + year: 2013 + string: Jul 12, 2013 to Sep 27, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 64222 + rank: 5613 + popularity: 1690 + members: 159428 + favorites: 1202 + synopsis: |- + After years of fruitless war between the four realms of Gamindustri (Planeptune, Lastation, Lowee and Leanbox) over Share energy, the source of their strength based on how much their people have faith in their goddesses, the four CPUs that rule over them have finally signed a friendship treaty. The treaty bans any attempt at claiming Share energy through military force, in hopes of bringing peace and prosperity to their worlds. Yet, a month after the treaty, Neptune, the CPU Goddess of Planeptune, spends her time goofing off and playing games rather than doing her job, leaving her land's Shares plummeting. + + Choujigen Game Neptune The Animation follows Neptune and her friends' attempts at raising Shares, while dealing with an external threat that could spell the end of both the Goddesses and Gamindustri itself... + background: Choujigen Game Neptune The Animation heavily alters and compresses the events of the video games that serve + as the basis of the franchise to create an original story. + season: summer + year: 2013 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 193 + type: anime + name: Idea Factory + url: https://myanimelist.net/anime/producer/193/Idea_Factory + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 2896 + type: anime + name: Cinema Sunshine + url: https://myanimelist.net/anime/producer/2896/Cinema_Sunshine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 17831 + url: https://myanimelist.net/anime/17831/Inu_to_Hasami_wa_Tsukaiyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/56313.jpg + small_image_url: https://myanimelist.net/images/anime/13/56313t.jpg + large_image_url: https://myanimelist.net/images/anime/13/56313l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/56313.webp + small_image_url: https://myanimelist.net/images/anime/13/56313t.webp + large_image_url: https://myanimelist.net/images/anime/13/56313l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tNJtVLU4JaI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Inu to Hasami wa Tsukaiyou + - type: Synonym + title: InuHasa + - type: Synonym + title: Dog and Scissors + - type: Japanese + title: 犬とハサミは使いよう + - type: English + title: Dog & Scissors + - type: German + title: Dog & Scissors + - type: Spanish + title: 'Dog & Scissors: Inu to Hasami wa Tsukaiyou' + - type: French + title: Dog & Scissors + title: Inu to Hasami wa Tsukaiyou + title_english: Dog & Scissors + title_japanese: 犬とハサミは使いよう + title_synonyms: + - InuHasa + - Dog and Scissors + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-07-02T00:00:00+00:00' + to: '2013-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2013 + to: + day: 17 + month: 9 + year: 2013 + string: Jul 2, 2013 to Sep 17, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.51 + scored_by: 73229 + rank: 8093 + popularity: 1701 + members: 158190 + favorites: 294 + synopsis: |- + A nonsense comical mystery. Harumi Kazuhito is a high school boy who loves books and is a fan of novelist Natsuno Kirihime. One day, he finds Kirihime writing at a cafe, about to be shot by a robber. He protects her from the attack but is killed instead. Through the supernatural power of a book-worm, he is reincarnated as a dachshund dog. Kazuhito (as a dog) writhes in a painful bookless life, when a sadistic woman carrying a pair of scissors offers him help. She is Kirihime herself. + + (Source: Dog and Scissors Wiki) + background: Episode 1 was previewed at a screening in Akihabara UDX, Tokyo on June 30, 2013. Regular broadcasting began + on July 2, 2013. + season: summer + year: 2013 + broadcast: + day: Tuesdays + time: 01:00 + timezone: Asia/Tokyo + string: Tuesdays at 01:00 (JST) + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 276 + type: anime + name: DLE + url: https://myanimelist.net/anime/producer/276/DLE + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1578 + type: anime + name: Xing + url: https://myanimelist.net/anime/producer/1578/Xing + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 17389 + url: https://myanimelist.net/anime/17389/Kingdom_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/53589.jpg + small_image_url: https://myanimelist.net/images/anime/13/53589t.jpg + large_image_url: https://myanimelist.net/images/anime/13/53589l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/53589.webp + small_image_url: https://myanimelist.net/images/anime/13/53589t.webp + large_image_url: https://myanimelist.net/images/anime/13/53589l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kingdom 2nd Season + - type: Synonym + title: Kingdom Hisho Hen + - type: Synonym + title: 'Kingdom: Dai 2 Series' + - type: Japanese + title: キングダム 第2シリーズ + - type: English + title: Kingdom Season 2 + - type: French + title: Kingdom Saison 2 + title: Kingdom 2nd Season + title_english: Kingdom Season 2 + title_japanese: キングダム 第2シリーズ + title_synonyms: + - Kingdom Hisho Hen + - 'Kingdom: Dai 2 Series' + type: TV + source: Manga + episodes: 39 + status: Finished Airing + airing: false + aired: + from: '2013-06-08T00:00:00+00:00' + to: '2014-03-02T00:00:00+00:00' + prop: + from: + day: 8 + month: 6 + year: 2013 + to: + day: 2 + month: 3 + year: 2014 + string: Jun 8, 2013 to Mar 2, 2014 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.29 + scored_by: 74858 + rank: 332 + popularity: 1774 + members: 150700 + favorites: 959 + synopsis: |- + A year after the devastating battle against the formidable Zhao, the State of Qin has returned its focus to pursuing King Ying Zheng's ambition of conquering the other six states and unifying China. Their next target is Wei, a smaller state which stands as a geographic stepping stone for the sake of conquest. + + Xin, now a three hundred man commander of the swiftly rising Fei Xin Unit, continues to seek out lofty achievements in order to garner recognition for himself and his soldiers, motivated by those previously lost in battle. In the preliminary battles ahead of Qin's invasion of Wei, Xin finds competition in other young commanders who are of a higher social status than him. Back in Qin, the royal palace faces turmoil as opposing factions begin to make their move against Ying Zheng's regime. + + With their hands full both abroad and at home, Zheng and Xin must lead the way in this era of unending war, resolved to etch their names in history by creating a unified China. + + [Written by MAL Rewrite] + background: Kingdom 2nd Season adapts chapters 174-261 of the original manga. + season: summer + year: 2013 + broadcast: + day: Sundays + time: '23:45' + timezone: Asia/Tokyo + string: Sundays at 23:45 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/16-2013-fall.yaml b/test/fixtures/jikan/season_matrix/16-2013-fall.yaml new file mode 100644 index 0000000..5e2ea7d --- /dev/null +++ b/test/fixtures/jikan/season_matrix/16-2013-fall.yaml @@ -0,0 +1,3370 @@ +metadata: + captured_at: '2026-05-11T11:33:01Z' + label: 2013-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2013/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:01 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:75719074aaa299ea772f9e1c4f586449ea32ceb2 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 240 + per_page: 25 + data: + - mal_id: 18679 + url: https://myanimelist.net/anime/18679/Kill_la_Kill + images: + jpg: + image_url: https://myanimelist.net/images/anime/1464/111943.jpg + small_image_url: https://myanimelist.net/images/anime/1464/111943t.jpg + large_image_url: https://myanimelist.net/images/anime/1464/111943l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1464/111943.webp + small_image_url: https://myanimelist.net/images/anime/1464/111943t.webp + large_image_url: https://myanimelist.net/images/anime/1464/111943l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/B98NY8Hfo7I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kill la Kill + - type: Synonym + title: KLK + - type: Synonym + title: Dressed to Kill + - type: Japanese + title: キルラキル + - type: English + title: Kill la Kill + - type: German + title: KILL la KILL + - type: Spanish + title: KILL la KILL + - type: French + title: KILL la KILL + title: Kill la Kill + title_english: Kill la Kill + title_japanese: キルラキル + title_synonyms: + - KLK + - Dressed to Kill + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2013-10-04T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2013 + to: + day: 28 + month: 3 + year: 2014 + string: Oct 4, 2013 to Mar 28, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.03 + scored_by: 1009949 + rank: 711 + popularity: 59 + members: 1848891 + favorites: 39345 + synopsis: "After the murder of her father, Ryuuko Matoi has been wandering the land in search of his killer. Following\ + \ her only lead—the missing half of his invention, the Scissor Blade—she arrives at the prestigious Honnouji Academy,\ + \ a high school unlike any other. The academy is ruled by the imposing and cold-hearted student council president\ + \ Satsuki Kiryuuin alongside her powerful underlings, the Elite Four. In the school's brutally competitive hierarchy,\ + \ Satsuki bestows upon those at the top special clothes called \"Goku Uniforms,\" which grant the wearer unique superhuman\ + \ abilities. \n\nThoroughly beaten in a fight against one of the students in uniform, Ryuuko retreats to her razed\ + \ home where she stumbles across Senketsu, a rare and sentient \"Kamui,\" or God Clothes. After coming into contact\ + \ with Ryuuko's blood, Senketsu awakens, latching onto her and providing her with immense power. Now, armed with Senketsu\ + \ and the Scissor Blade, Ryuuko makes a stand against the Elite Four, hoping to reach Satsuki and uncover the culprit\ + \ behind her father's murder once and for all. \n\n[Written by MAL Rewrite]" + background: Episode 1 was previewed at a screening in Tokyo on September 28, 2013. Regular broadcasting began on October + 4, 2013. Kill La Kill’s Toshio Ishizaki won the Tokyo Anime Award for Best Character Design in 2014. The series got + another Character Design Award along with a Storyboard Award, Soundtrack Award, Theme Song Award (for Sirius), Mascot + Awards (for Senketsu and Guts), Female Character Awards (for Ryuuko Matoi and Mako Mankanshoku), and Series Award + for TV Broadcast in the 2014 Newtype Anime Awards. + season: fall + year: 2013 + broadcast: + day: Fridays + time: 02:05 + timezone: Asia/Tokyo + string: Fridays at 02:05 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 18153 + url: https://myanimelist.net/anime/18153/Kyoukai_no_Kanata + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/85468.jpg + small_image_url: https://myanimelist.net/images/anime/3/85468t.jpg + large_image_url: https://myanimelist.net/images/anime/3/85468l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/85468.webp + small_image_url: https://myanimelist.net/images/anime/3/85468t.webp + large_image_url: https://myanimelist.net/images/anime/3/85468l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BnfeVrAAS2k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kyoukai no Kanata + - type: Synonym + title: Beyond the Horizon + - type: Japanese + title: 境界の彼方 + - type: English + title: Beyond the Boundary + - type: German + title: 'Beyond the Boundary: Kyokai no Kanata' + - type: Spanish + title: Beyond the Boundary + - type: French + title: Beyond The Boundary + title: Kyoukai no Kanata + title_english: Beyond the Boundary + title_japanese: 境界の彼方 + title_synonyms: + - Beyond the Horizon + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-03T00:00:00+00:00' + to: '2013-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2013 + to: + day: 19 + month: 12 + year: 2013 + string: Oct 3, 2013 to Dec 19, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.71 + scored_by: 580312 + rank: 1431 + popularity: 134 + members: 1243758 + favorites: 12272 + synopsis: |- + Mirai Kuriyama is the sole survivor of a clan of Spirit World warriors with the power to employ their blood as weapons. As such, Mirai is tasked with hunting down and killing "youmu"—creatures said to be the manifestation of negative human emotions. One day, while deep in thought on the school roof, Mirai comes across Akihito Kanbara, a rare half-breed of youmu in human form. In a panicked state, she plunges her blood saber into him only to realize that he's an immortal being. From then on, the two form an impromptu friendship that revolves around Mirai constantly trying to kill Akihito, in an effort to boost her own wavering confidence as a Spirit World warrior. Eventually, Akihito also manages to convince her to join the Literary Club, which houses two other powerful Spirit World warriors, Hiroomi and Mitsuki Nase. + + As the group's bond strengthens, however, so does the tenacity of the youmu around them. Their misadventures will soon turn into a fight for survival as the inevitable release of the most powerful youmu, Beyond the Boundary, approaches. + + [Written by MAL Rewrite] + background: Kyoukai no Kanata covers the storyline of the first two volumes of Nagomu Torii's light novel series of + the same name. It has been licensed by Sentai Filmworks in North America, Hanabee in Australia and Animatsu Entertainment + in the United Kingdom. It was also simulcast on Crunchyroll. + season: fall + year: 2013 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 17265 + url: https://myanimelist.net/anime/17265/Log_Horizon + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/84004.jpg + small_image_url: https://myanimelist.net/images/anime/5/84004t.jpg + large_image_url: https://myanimelist.net/images/anime/5/84004l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/84004.webp + small_image_url: https://myanimelist.net/images/anime/5/84004t.webp + large_image_url: https://myanimelist.net/images/anime/5/84004l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IG1VhJ75r8k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Log Horizon + - type: Japanese + title: ログ・ホライズン + - type: English + title: Log Horizon + title: Log Horizon + title_english: Log Horizon + title_japanese: ログ・ホライズン + title_synonyms: [] + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-10-05T00:00:00+00:00' + to: '2014-03-22T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2013 + to: + day: 22 + month: 3 + year: 2014 + string: Oct 5, 2013 to Mar 22, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 608291 + rank: 944 + popularity: 141 + members: 1183547 + favorites: 10454 + synopsis: |- + In the blink of an eye, thirty thousand bewildered Japanese gamers are whisked from their everyday lives into the world of the popular MMORPG, Elder Tale, after the game's latest update—unable to log out. Among them is the socially awkward college student Shiroe, whose confusion and shock lasts only a moment as, a veteran of the game, he immediately sets out to explore the limits of his new reality. + + Shiroe must learn to live in this new world, leading others and negotiating with the NPC "natives" in order to bring stability to the virtual city of Akihabara. He is joined by his unfortunate friend Naotsugu, having logged in for the first time in years only to find himself trapped, and Akatsuki, a petite but fierce assassin who labels Shiroe as her master. A tale of fantasy, adventure, and politics, Log Horizon explores the elements of gaming through the eyes of a master strategist who attempts to make the best of a puzzling situation. + + [Written by MAL Rewrite] + background: Log Horizon adapts the first five volumes of Mamare Touno's novel series of the same title. + season: fall + year: 2013 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 17895 + url: https://myanimelist.net/anime/17895/Golden_Time + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/52091.jpg + small_image_url: https://myanimelist.net/images/anime/12/52091t.jpg + large_image_url: https://myanimelist.net/images/anime/12/52091l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/52091.webp + small_image_url: https://myanimelist.net/images/anime/12/52091t.webp + large_image_url: https://myanimelist.net/images/anime/12/52091l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/44njDYJ5OJA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Golden Time + - type: Japanese + title: ゴールデンタイム + - type: English + title: Golden Time + title: Golden Time + title_english: Golden Time + title_japanese: ゴールデンタイム + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2013-10-04T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2013 + to: + day: 28 + month: 3 + year: 2014 + string: Oct 4, 2013 to Mar 28, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.74 + scored_by: 595652 + rank: 1330 + popularity: 153 + members: 1137960 + favorites: 14298 + synopsis: "Due to a tragic accident, Banri Tada is struck with amnesia, dissolving the memories of his hometown and\ + \ past. However, after befriending Mitsuo Yanagisawa, he decides to move on and begin a new life at law school in\ + \ Tokyo. But just as he is beginning to adjust to his college life, the beautiful Kouko Kaga dramatically barges into\ + \ Banri's life, and their chance meeting marks the beginning of an unforgettable year. \n\nAfter having a glimpse\ + \ of college life, Banri learns that he is in a new place and a new world—a place where he can be reborn, have new\ + \ friends, fall in love, make mistakes, and grow. And as he begins to discover who he was, the path he has chosen\ + \ leads him towards a blindingly bright life that he will never want to forget.\n\n[Written by MAL Rewrite]" + background: Episode 1 was previewed at a screening in Tokyo on September 23, 2013. The voice actors for the anime reprise + their roles in both the 2013 drama CD and web radio. + season: fall + year: 2013 + broadcast: + day: Fridays + time: 02:35 + timezone: Asia/Tokyo + string: Fridays at 02:35 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: [] + - mal_id: 16894 + url: https://myanimelist.net/anime/16894/Kuroko_no_Basket_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/56155.jpg + small_image_url: https://myanimelist.net/images/anime/9/56155t.jpg + large_image_url: https://myanimelist.net/images/anime/9/56155l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/56155.webp + small_image_url: https://myanimelist.net/images/anime/9/56155t.webp + large_image_url: https://myanimelist.net/images/anime/9/56155l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/11ROABkyews?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroko no Basket 2nd Season + - type: Synonym + title: Kuroko no Basuke 2nd Season + - type: Synonym + title: The Basketball Which Kuroko Plays + - type: Japanese + title: 黒子のバスケ + - type: English + title: Kuroko's Basketball 2 + - type: German + title: Kuroko's Basketball Staffel 2 + - type: Spanish + title: Kuroko no Basket Temporada 2 + - type: French + title: Kuroko's Basketball Saison 2 + title: Kuroko no Basket 2nd Season + title_english: Kuroko's Basketball 2 + title_japanese: 黒子のバスケ + title_synonyms: + - Kuroko no Basuke 2nd Season + - The Basketball Which Kuroko Plays + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-10-06T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2013 + to: + day: 30 + month: 3 + year: 2014 + string: Oct 6, 2013 to Mar 30, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 588795 + rank: 449 + popularity: 218 + members: 928776 + favorites: 4422 + synopsis: "With the Interhigh Championship finally over, Seirin's basketball team refocuses their efforts, training\ + \ harder than ever to get the chance to participate in the Winter Cup. Both Tetsuya Kuroko and Taiga Kagami see old\ + \ friends walk back into their lives, providing a challenge both on and off the court.\n\nAs new skills are developed\ + \ and new alliances created, enemies from various teams—giants of high school basketball such as Yousen, Shuutoku,\ + \ and Touou—stand in the way of Seirin's steadfast attempts to get to the top. All of these schools prove to be formidable\ + \ foes whose abilities progress exponentially, while Kuroko struggles to find a balance between his resolve to play\ + \ as part of a team and his desire to win. \n\nWith old wounds reopening, new challenges to face on the court, and\ + \ a new set of foes—the \"Uncrowned Kings\"—vowing to defeat the new hopefuls, will Seirin ever be able to achieve\ + \ their dream of beating the Generation of Miracles?\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2013 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18115 + url: https://myanimelist.net/anime/18115/Magi__The_Kingdom_of_Magic + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/55039.jpg + small_image_url: https://myanimelist.net/images/anime/13/55039t.jpg + large_image_url: https://myanimelist.net/images/anime/13/55039l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/55039.webp + small_image_url: https://myanimelist.net/images/anime/13/55039t.webp + large_image_url: https://myanimelist.net/images/anime/13/55039l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5ujX_FFmU0k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Magi: The Kingdom of Magic' + - type: Synonym + title: 'Magi: The Labyrinth of Magic 2' + - type: Synonym + title: Magi Season 2 + - type: Japanese + title: マギ The kingdom of magic + - type: English + title: 'Magi: The Kingdom of Magic' + title: 'Magi: The Kingdom of Magic' + title_english: 'Magi: The Kingdom of Magic' + title_japanese: マギ The kingdom of magic + title_synonyms: + - 'Magi: The Labyrinth of Magic 2' + - Magi Season 2 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-10-06T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2013 + to: + day: 30 + month: 3 + year: 2014 + string: Oct 6, 2013 to Mar 30, 2014 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 484491 + rank: 450 + popularity: 233 + members: 898713 + favorites: 7838 + synopsis: |- + After celebrating their victory against Al-Thamen, Aladdin and his friends depart the land of Sindria. With the end of the battle, however, comes the time for each of them to go their separate ways. Hakuryuu and Kougyoku are ordered to go back to their home country, the Kou Empire. Meanwhile Aladdin announces he needs to head for Magnostadt—a mysterious country ruled by magicians—to investigate the mysterious events occurring in this new kingdom and become more proficient in magic. For their part, encouraged by Aladdin's words, Alibaba and Morgiana also set off in pursuit of their own goals: training and going to her homeland, respectively. + + Magi: The Kingdom of Magic follows these friends as they all go about their separate adventures, each facing their own challenges. However, a new threat begins to rise as a great war looms over the horizon... + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2013 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18277 + url: https://myanimelist.net/anime/18277/Strike_the_Blood + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/56163.jpg + small_image_url: https://myanimelist.net/images/anime/5/56163t.jpg + large_image_url: https://myanimelist.net/images/anime/5/56163l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/56163.webp + small_image_url: https://myanimelist.net/images/anime/5/56163t.webp + large_image_url: https://myanimelist.net/images/anime/5/56163l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NzVpBvxalKk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Strike the Blood + - type: Synonym + title: SutoBura + - type: Japanese + title: ストライク・ザ・ブラッド + - type: English + title: Strike the Blood + title: Strike the Blood + title_english: Strike the Blood + title_japanese: ストライク・ザ・ブラッド + title_synonyms: + - SutoBura + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2013-10-04T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2013 + to: + day: 28 + month: 3 + year: 2014 + string: Oct 4, 2013 to Mar 28, 2014 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7 + scored_by: 323883 + rank: 5154 + popularity: 365 + members: 671462 + favorites: 2241 + synopsis: |- + Kojou Akatsuki's days as an ordinary high school student in the Demon District of Itogami Island come to an abrupt end after a fateful encounter leaves him with the remarkable abilities of a vampire. + + It isn't long before he is thrust into the center of attention when it is discovered that he is the fourth primogenitor, an immensely powerful vampire whom most consider to be merely a legend. Fearing Kojou's destructive potential, the Lion King Organization sends in an apprentice sword-shaman, Yukina Himeragi, to monitor, and should he become a threat, kill the boy deemed the world's most powerful vampire. Forced together by circumstance, the two form an unlikely alliance as Kojou comes to terms with his abilities and they both struggle to protect the city from various emerging chaotic forces. + + [Written by MAL Rewrite] + background: Strike the Blood adapts volumes 1 through 6 of the original light novel series. The series was banned in + China due to its violent content and plot filled with crimes against "public morality." + season: fall + year: 2013 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 16067 + url: https://myanimelist.net/anime/16067/Nagi_no_Asu_kara + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/53549.jpg + small_image_url: https://myanimelist.net/images/anime/7/53549t.jpg + large_image_url: https://myanimelist.net/images/anime/7/53549l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/53549.webp + small_image_url: https://myanimelist.net/images/anime/7/53549t.webp + large_image_url: https://myanimelist.net/images/anime/7/53549l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QrxQ51m5E3E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nagi no Asu kara + - type: Synonym + title: Nagi no Asukara + - type: Synonym + title: Nagiasu + - type: Japanese + title: 凪のあすから + - type: English + title: A Lull in the Sea + - type: German + title: 'Nagi-Asu: A Lull in the Sea' + - type: Spanish + title: 'A Lull in the Sea (Nagi-Asu: Nagi no Asukara)' + title: Nagi no Asu kara + title_english: A Lull in the Sea + title_japanese: 凪のあすから + title_synonyms: + - Nagi no Asukara + - Nagiasu + type: TV + source: Original + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2013-10-03T00:00:00+00:00' + to: '2014-04-03T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2013 + to: + day: 3 + month: 4 + year: 2014 + string: Oct 3, 2013 to Apr 3, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 269065 + rank: 874 + popularity: 387 + members: 637998 + favorites: 9572 + synopsis: |- + Long ago, all humans lived beneath the sea. However, some people preferred the surface and abandoned living underwater permanently. As a consequence, they were stripped of their god-given protection called "Ena" which allowed them to breathe underwater. Over time, the rift between the denizens of the sea and of the surface widened, although contact between the two peoples still existed. + + Nagi no Asu kara follows the story of Hikari Sakishima and Manaka Mukaido, along with their childhood friends Chisaki Hiradaira and Kaname Isaki, who are forced to leave the sea and attend a school on the surface. There, the group also meets Tsumugu Kihara, a fellow student and fisherman who loves the sea. + + Hikari and his friends' lives are bound to change as they have to deal with the deep-seated hatred and discrimination between the people of sea and of the surface, the storms in their personal lives, as well as an impending tempest which may spell doom for all who dwell on the surface. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in Tokyo on September 27, 2013. Regular broadcasting began on October + 3, 2013. + season: fall + year: 2013 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 160 + type: anime + name: Rondo Robe + url: https://myanimelist.net/anime/producer/160/Rondo_Robe + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 16011 + url: https://myanimelist.net/anime/16011/Tokyo_Ravens + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75094.jpg + small_image_url: https://myanimelist.net/images/anime/13/75094t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75094l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75094.webp + small_image_url: https://myanimelist.net/images/anime/13/75094t.webp + large_image_url: https://myanimelist.net/images/anime/13/75094l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7MuxbeVaoDM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Ravens + - type: Japanese + title: 東京レイヴンズ + - type: English + title: Tokyo Ravens + title: Tokyo Ravens + title_english: Tokyo Ravens + title_japanese: 東京レイヴンズ + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2013-10-09T00:00:00+00:00' + to: '2014-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2013 + to: + day: 26 + month: 3 + year: 2014 + string: Oct 9, 2013 to Mar 26, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.4 + scored_by: 230343 + rank: 2759 + popularity: 496 + members: 516872 + favorites: 2077 + synopsis: |- + Onmyoudou magic was once a powerful technique used by the Japanese during the second World War in order for them to gain the upper hand and establish their nation as a formidable force. But Japan was quickly defeated after the revered onmyouji Yakou Tsuchimikado caused the "Great Spiritual Disaster," an event which plagues Tokyo to this very day. As a result of this mishap, the Onmyou Agency was established in order to exorcise further spiritual disasters and combat the demons that would make their way into the world. + + Now, Onmyoudou has become far more modern, simplified, and refined for use in a wide variety of applications such as medicine and technology. However, not everyone is able to utilize the magic, as is the case with Harutora, a member of the Tsuchimikado's branch family. Despite an old promise to protect Natsume, the heir of the Tsuchimikado's main family and Yakou's supposed reincarnation, as her familiar, Harutora has no talent and chooses to live a normal life instead. But when a prominent member of the Onmyou Agency attempts to recreate the same experiment which led to Japan's downfall, he decides to make good on his word and fight by Natsume's side. + + [Written by MAL Rewrite] + background: Tokyo Ravens adapts volumes 1 through 9 of the original light novel series. + season: fall + year: 2013 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 18397 + url: https://myanimelist.net/anime/18397/Shingeki_no_Kyojin_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/59221.jpg + small_image_url: https://myanimelist.net/images/anime/9/59221t.jpg + large_image_url: https://myanimelist.net/images/anime/9/59221l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/59221.webp + small_image_url: https://myanimelist.net/images/anime/9/59221t.webp + large_image_url: https://myanimelist.net/images/anime/9/59221l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki no Kyojin OVA + - type: Synonym + title: 'Shingeki no Kyojin: Ilse no Techou' + - type: Synonym + title: 'Attack on Titan: Ilse''s Journal' + - type: Synonym + title: 進撃の巨人 「イルゼの手帳」 + - type: Japanese + title: 進撃の巨人OAD + - type: English + title: Attack on Titan OAD + title: Shingeki no Kyojin OVA + title_english: Attack on Titan OAD + title_japanese: 進撃の巨人OAD + title_synonyms: + - 'Shingeki no Kyojin: Ilse no Techou' + - 'Attack on Titan: Ilse''s Journal' + - 進撃の巨人 「イルゼの手帳」 + type: OVA + source: Manga + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2013-12-09T00:00:00+00:00' + to: '2014-08-08T00:00:00+00:00' + prop: + from: + day: 9 + month: 12 + year: 2013 + to: + day: 8 + month: 8 + year: 2014 + string: Dec 9, 2013 to Aug 8, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.89 + scored_by: 295843 + rank: 973 + popularity: 512 + members: 507287 + favorites: 1016 + synopsis: |- + Ilse no Techou: Aru Chousa Heidanin no Shuki + During the Survey Corps' 49th recon mission, Hange Zoë is determined to capture a titan specimen. Despite not receiving clearance from Commander Erwin Smith, when a titan is spotted in nearby forestland, Hange rides out alone to meet it. Recklessly luring it out, she asks the titan numerous questions and puts her life on the line for the sake of her research. However, the behavior of this particular titan is far from normal. It quickly turns back and enters the wood once again, leading Hange to somewhere specific. What Hange finds is the legacy of former scout Ilse Langnar. In spite of her death, she provides a valuable piece of information that may serve to turn the tide for titan research—a diary documenting her last moments. + + Totsuzen no Raihousha: Sainamareru Seishun no Noroi + Jean Kirstein would do anything to escape his boring home life and overbearing mother. After enlisting in the military, it became his ultimate goal to join the Military Police regiment and live out in peace and luxury. However, during his time with the 104th Training Corps, things never really go the way Jean wants them to. Eventually, the stolen glory and condescending banter of his comrades become too much—and Jean challenges fellow cadet Sasha Blouse to a battle, in order to determine which of them is strongest—but who will come out on top? + + Konnan + The 104th Training Corps' most recent mission is a trek on horseback into the forest. Although a test of their ability to stay alert even in non-threatening situations, the task is boring and can lead to in-fighting. This is especially true for one of the groups, lead by Marco Bott. Some want to stay true to the mission they have been tasked with, and the rest would rather slack off, occupying themselves with more exciting activities. But when trouble strikes, they are completely unprepared. + + [Written by MAL Rewrite] + background: The first Shingeki no Kyojin OVA, Ilse no Techou, is adapted from a side-story in the 5th volume of the + Shingeki no Kyojin manga. The second, Totsuzen no Raihousha, is an original story that utilizes the comedic previews + found at the end of the manga's volumes. The third is an anime-original story. Ilse no Techou was scheduled to be + bundled with the 11th limited-edition manga volume on August 9, but the disc was delayed 4 months. The 11th special-edition + manga volume bundled a sticker and 3D card instead of the OVA. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 17549 + url: https://myanimelist.net/anime/17549/Non_Non_Biyori + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/51581.jpg + small_image_url: https://myanimelist.net/images/anime/2/51581t.jpg + large_image_url: https://myanimelist.net/images/anime/2/51581l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/51581.webp + small_image_url: https://myanimelist.net/images/anime/2/51581t.webp + large_image_url: https://myanimelist.net/images/anime/2/51581l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GtOCzzLNsOY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Non Non Biyori + - type: Japanese + title: のんのんびより + - type: English + title: Non Non Biyori + title: Non Non Biyori + title_english: Non Non Biyori + title_japanese: のんのんびより + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-08T00:00:00+00:00' + to: '2013-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2013 + to: + day: 24 + month: 12 + year: 2013 + string: Oct 8, 2013 to Dec 24, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.94 + scored_by: 186139 + rank: 850 + popularity: 582 + members: 455516 + favorites: 6546 + synopsis: |- + Hotaru Ichijou's lifestyle completely changes when she leaves Tokyo and moves with her family to the isolated Asahigaoka village. Her new school has only five students including herself, all sharing a single classroom regardless of grade level. There are no convenience stores in the area, and it can take up to two hours for a bus to arrive. + + Nevertheless, Hotaru finds herself captivated by the countryside's charm thanks to her four unique schoolmates with whom she quickly forms a genuine bond. The most colorful of them is Renge Miyauchi, a first-grader who is often perceptive despite her age. However, no less intriguing are the three Koshigaya siblings: the quiet oldest brother Suguru, the petite older sister Komari, and the prankish youngest sister Natsumi. + + Having someone from the city join their cheerful little group enlivens the ordinary days in Asahigaoka. Not only does Hotaru bring firsthand knowledge from the alluring outside world, but her fresh outlook on life welcomes a blossom of change to their usual routine. + + [Written by MAL Rewrite] + background: Non Non Biyori placed first in the 2013 Fall Anime Satisfaction Ranking conducted by Akiba Research Institute. + In the same year, the anime ranked third in the men's division of the Anime!Anime! survey "What Fall 2013 Anime Are + You Watching?". Renge Miyauchi's greeting "Nyanpasu!" became so popular that it won the grand prize at the 2013 Anime + Buzzword Award. The series was released on Blu-ray and DVD in North America by Sentai Filmworks on January 6, 2015. + season: fall + year: 2013 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 19221 + url: https://myanimelist.net/anime/19221/Ore_no_Nounai_Sentakushi_ga_Gakuen_Love_Comedy_wo_Zenryoku_de_Jama_Shiteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/53235.jpg + small_image_url: https://myanimelist.net/images/anime/10/53235t.jpg + large_image_url: https://myanimelist.net/images/anime/10/53235l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/53235.webp + small_image_url: https://myanimelist.net/images/anime/10/53235t.webp + large_image_url: https://myanimelist.net/images/anime/10/53235l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/W0z8nMaAsFs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru + - type: Synonym + title: My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy + - type: Synonym + title: NouCome + - type: Synonym + title: NouKome + - type: Japanese + title: 俺の脳内選択肢が、学園ラブコメを全力で邪魔している + - type: English + title: My Mental Choices Are Completely Interfering With My School Romantic Comedy + - type: German + title: My Mental Choises are Completely interferring with my School Romantic Comedy + - type: French + title: Noucome + title: Ore no Nounai Sentakushi ga, Gakuen Love Comedy wo Zenryoku de Jama Shiteiru + title_english: My Mental Choices Are Completely Interfering With My School Romantic Comedy + title_japanese: 俺の脳内選択肢が、学園ラブコメを全力で邪魔している + title_synonyms: + - My Mental Multiple-Choice Power Is Completely Ruining My School Romantic Comedy + - NouCome + - NouKome + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2013-10-10T00:00:00+00:00' + to: '2013-12-12T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2013 + to: + day: 12 + month: 12 + year: 2013 + string: Oct 10, 2013 to Dec 12, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.13 + scored_by: 222605 + rank: 4412 + popularity: 634 + members: 426076 + favorites: 1547 + synopsis: |- + For Kanade Amakusa, life as a high schooler should have been normal, and it would have been—if he wasn't living with the most ridiculous curse imaginable. "Absolute Choice," a system forced upon him by a self-proclaimed god, randomly presents a mental selection of actions that he must act out based on his choice. To add to his dilemma, it tends to occur in the most public of places, and his options never seem to deviate from the rude and crude in nature. + + As a result, the helpless boy stresses through each day, fumbling to repair his already tarnished reputation while desperately praying to avoid the next spontaneous episode of Absolute Choice. To his dismay, the one in charge is always one step ahead of him and proceeds to not-so-subtly "choice" him into the lives of several girls at his school. Just when Kanade's school life can't seem to be doomed any further, a decision that he reluctantly selects on the way home sends a beautiful girl crashing down from the sky, along with the promise of more hysterically hellish choices. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in Tokyo on September 28, 2013. Regular broadcasting began on October + 10, 2013. + season: fall + year: 2013 + broadcast: + day: Thursdays + time: 01:00 + timezone: Asia/Tokyo + string: Thursdays at 01:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 11981 + url: https://myanimelist.net/anime/11981/Mahou_Shoujo_Madoka★Magica_Movie_3__Hangyaku_no_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/54231.jpg + small_image_url: https://myanimelist.net/images/anime/5/54231t.jpg + large_image_url: https://myanimelist.net/images/anime/5/54231l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/54231.webp + small_image_url: https://myanimelist.net/images/anime/5/54231t.webp + large_image_url: https://myanimelist.net/images/anime/5/54231l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aic9EjX2A8Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari' + - type: Synonym + title: Mahou Shoujo Madoka Magika Movie 3 + - type: Synonym + title: Magical Girl Madoka Magica Movie 3 + - type: Japanese + title: 劇場版 魔法少女まどか☆マギカ 叛逆の物語 + - type: English + title: 'Puella Magi Madoka Magica the Movie: Rebellion' + - type: German + title: 'Puella Magi Madoka Magica Film 3: Rebellion' + - type: Spanish + title: 'Puella Magi Madoka Magica la Película: Rebellion' + - type: French + title: 'Puella Magi Madoka Magica-Film 3: Rebellion' + title: 'Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari' + title_english: 'Puella Magi Madoka Magica the Movie: Rebellion' + title_japanese: 劇場版 魔法少女まどか☆マギカ 叛逆の物語 + title_synonyms: + - Mahou Shoujo Madoka Magika Movie 3 + - Magical Girl Madoka Magica Movie 3 + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-10-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 10 + year: 2013 + to: + day: null + month: null + year: null + string: Oct 26, 2013 + duration: 1 hr 56 min + rating: PG-13 - Teens 13 or older + score: 8.51 + scored_by: 250206 + rank: 161 + popularity: 641 + members: 421689 + favorites: 9761 + synopsis: |- + The young girls of Mitakihara happily live their lives, occasionally fighting off evil, but otherwise going about their peaceful, everyday routines. However, Homura Akemi feels that something is wrong with this unusually pleasant atmosphere—though the others remain oblivious, she can't help but suspect that there is more to what is going on than meets the eye: someone who should not exist is currently present to join in on their activities. + + Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari follows Homura in her struggle to uncover the painful truth behind the mysterious circumstances, as she selfishly and desperately fights for the sake of her undying love in this despair-ridden conclusion to the story of five magical girls. + + [Written by MAL Rewrite] + background: 'Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari is an original story which takes place after + the events of the previous films. The film was released in Japanese theaters by Warner Bros. Pictures on October 26, + 2013, with a manga adaptation by Hanokage released by Houbunsha between November 2013 and January 2014. Rebellion + was one of 19 animated films submitted for Best Animated Feature for the 86th Academy Awards, but was not nominated. + The film earned 2.25 billion yen in the Japanese box office. Rebellion was nominated for the Japan Academy Prize for + Animation of the Year at the 37th Japan Academy Prize and won the Best Theatrical Film Award at the 19th Animation + Kobe Awards.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 18247 + url: https://myanimelist.net/anime/18247/IS__Infinite_Stratos_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/49359.jpg + small_image_url: https://myanimelist.net/images/anime/12/49359t.jpg + large_image_url: https://myanimelist.net/images/anime/12/49359l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/49359.webp + small_image_url: https://myanimelist.net/images/anime/12/49359t.webp + large_image_url: https://myanimelist.net/images/anime/12/49359l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HF1-h8afKYw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'IS: Infinite Stratos 2' + - type: Japanese + title: IS〈インフィニット・ストラトス〉2 + - type: English + title: Infinite Stratos 2 + - type: German + title: Infinite Stratos 2 + - type: French + title: Infinite Stratos 2 + title: 'IS: Infinite Stratos 2' + title_english: Infinite Stratos 2 + title_japanese: IS〈インフィニット・ストラトス〉2 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-04T00:00:00+00:00' + to: '2013-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2013 + to: + day: 20 + month: 12 + year: 2013 + string: Oct 4, 2013 to Dec 20, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.45 + scored_by: 238756 + rank: 8452 + popularity: 649 + members: 416197 + favorites: 530 + synopsis: Second season of Infinite Stratos. + background: '' + season: fall + year: 2013 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 19369 + url: https://myanimelist.net/anime/19369/Outbreak_Company + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/54343.jpg + small_image_url: https://myanimelist.net/images/anime/7/54343t.jpg + large_image_url: https://myanimelist.net/images/anime/7/54343l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/54343.webp + small_image_url: https://myanimelist.net/images/anime/7/54343t.webp + large_image_url: https://myanimelist.net/images/anime/7/54343l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0-P2F7Lz7Mk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Outbreak Company + - type: Japanese + title: アウトブレイク・カンパニー + - type: English + title: Outbreak Company + title: Outbreak Company + title_english: Outbreak Company + title_japanese: アウトブレイク・カンパニー + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-04T00:00:00+00:00' + to: '2013-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2013 + to: + day: 20 + month: 12 + year: 2013 + string: Oct 4, 2013 to Dec 20, 2013 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.16 + scored_by: 188748 + rank: 4234 + popularity: 711 + members: 384408 + favorites: 925 + synopsis: |- + Shinichi Kanou is a shut-in otaku with a vast knowledge of anime, manga, and video games. One day, after applying for a job in hopes of escaping his secluded lifestyle, he is kidnapped and transported to the Eldant Empire—a fantasy world filled with elves, dragons, and dwarves. Trapped in this strange land, Shinichi is given an unlikely task by the Japanese government: to spread otaku culture across the realm by becoming an "Otaku Missionary." + + To accomplish his mission, Shinichi has the full support of the Japanese government, as well as the half-elf maid Myucel and Princess Petralka of the Eldant Empire. Together with this ragtag bunch, he will overcome the obstacles of politics, social classes, and ethnic discrimination to promote the ways of the otaku in this holy land. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2013 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 17513 + url: https://myanimelist.net/anime/17513/Diabolik_Lovers + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/51989.jpg + small_image_url: https://myanimelist.net/images/anime/9/51989t.jpg + large_image_url: https://myanimelist.net/images/anime/9/51989l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/51989.webp + small_image_url: https://myanimelist.net/images/anime/9/51989t.webp + large_image_url: https://myanimelist.net/images/anime/9/51989l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5rzoyyotvD4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Diabolik Lovers + - type: Synonym + title: DiaLover + - type: Japanese + title: DIABOLIK LOVERS + - type: English + title: Diabolik Lovers + title: Diabolik Lovers + title_english: Diabolik Lovers + title_japanese: DIABOLIK LOVERS + title_synonyms: + - DiaLover + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-09-16T00:00:00+00:00' + to: '2013-12-09T00:00:00+00:00' + prop: + from: + day: 16 + month: 9 + year: 2013 + to: + day: 9 + month: 12 + year: 2013 + string: Sep 16, 2013 to Dec 9, 2013 + duration: 14 min per ep + rating: R - 17+ (violence & profanity) + score: 5.18 + scored_by: 211611 + rank: 14048 + popularity: 734 + members: 374156 + favorites: 1890 + synopsis: |- + At the behest of her father, Yui Komori goes to live in a secluded mansion, home to the six Sakamaki brothers—Shuu, Reiji, Ayato, Kanato, Laito, and Subaru—a family of vampires. Though at first the siblings are confused as to why the girl has arrived, they soon realize that she is to be their new "sacrificial bride," not to mention their other, more carnal intentions for her. After meeting the brothers, Yui quickly begins to question why her father would have sent her here and why she feels a strange, new pain in her chest. With each brother more sadistic than the last, Yui's life as a captive takes a harrowing turn in her new home. As her days turn into endless nights, and each brother vows to make her his own, Yui falls deeper and deeper into madness and ecstasy. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2013 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 193 + type: anime + name: Idea Factory + url: https://myanimelist.net/anime/producer/193/Idea_Factory + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 17247 + url: https://myanimelist.net/anime/17247/Machine-Doll_wa_Kizutsukanai + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/56141.jpg + small_image_url: https://myanimelist.net/images/anime/4/56141t.jpg + large_image_url: https://myanimelist.net/images/anime/4/56141l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/56141.webp + small_image_url: https://myanimelist.net/images/anime/4/56141t.webp + large_image_url: https://myanimelist.net/images/anime/4/56141l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uKWMYSi4h8I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Machine-Doll wa Kizutsukanai + - type: Synonym + title: Machine Girl wa Kizutsukanai + - type: Synonym + title: Kikou Shoujo wa Kizutsukanai + - type: Japanese + title: 機巧少女〈マシンドール〉は傷つかない + - type: English + title: Unbreakable Machine-Doll + - type: German + title: Unbreakable Machine-Doll + - type: Spanish + title: Unbreakable Machine-Doll + - type: French + title: Unbreakable Machine-Doll + title: Machine-Doll wa Kizutsukanai + title_english: Unbreakable Machine-Doll + title_japanese: 機巧少女〈マシンドール〉は傷つかない + title_synonyms: + - Machine Girl wa Kizutsukanai + - Kikou Shoujo wa Kizutsukanai + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-07T00:00:00+00:00' + to: '2013-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2013 + to: + day: 23 + month: 12 + year: 2013 + string: Oct 7, 2013 to Dec 23, 2013 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.03 + scored_by: 163107 + rank: 4968 + popularity: 810 + members: 344195 + favorites: 674 + synopsis: |- + The Walpurgis Royal Academy of Machinart was founded alongside the development of "Machinart," machine magic capable of giving life and intelligence to mechanical dolls subsequently called as "automaton." Its aim: train skilled puppeteers to control the automatons, as militaries across the globe have begun incorporating Machinart into their armies. + + After miserably failing the academy's entrance exams, Raishin Akabane and his humanoid automaton Yaya must defeat one of the top one hundred students to earn the right to take part in the Evening Party, a fight for supremacy between puppeteers using their automatons. The last one standing is bestowed the title of "Wiseman" and granted access to the powerful forbidden arts. + + Thus, Raishin challenges Charlotte Belew and her automaton Sigmund to a duel, but before they even begin, Sigmund is attacked by other students. After saving his opponents from their assaulters, Raishin cancels the duel but is forced to search for a new way to gain access to the Party. Driven by the tragedies of his past, Raishin fights alongside Yaya to rise to the top and claim the title of Wiseman. + + [Written by MAL Rewrite] + background: Machine-Doll wa Kizutsukanai adapts the first three volumes of Reiji Kaitou's light novel series of the + same title. + season: fall + year: 2013 + broadcast: + day: Mondays + time: '20:30' + timezone: Asia/Tokyo + string: Mondays at 20:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 20021 + url: https://myanimelist.net/anime/20021/Sword_Art_Online__Extra_Edition + images: + jpg: + image_url: https://myanimelist.net/images/anime/1927/121997.jpg + small_image_url: https://myanimelist.net/images/anime/1927/121997t.jpg + large_image_url: https://myanimelist.net/images/anime/1927/121997l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1927/121997.webp + small_image_url: https://myanimelist.net/images/anime/1927/121997t.webp + large_image_url: https://myanimelist.net/images/anime/1927/121997l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WqHLQvIIFVs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online: Extra Edition' + - type: Synonym + title: 'S.A.O: Extra Edition' + - type: Synonym + title: 'SAO: Extra Edition' + - type: Japanese + title: ソードアート・オンライン Extra Edition + - type: English + title: 'Sword Art Online: Extra Edition' + - type: Spanish + title: Sword Art Online Extra Edition + title: 'Sword Art Online: Extra Edition' + title_english: 'Sword Art Online: Extra Edition' + title_japanese: ソードアート・オンライン Extra Edition + title_synonyms: + - 'S.A.O: Extra Edition' + - 'SAO: Extra Edition' + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-12-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 12 + year: 2013 + to: + day: null + month: null + year: null + string: Dec 31, 2013 + duration: 1 hr 41 min + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 198233 + rank: 7879 + popularity: 833 + members: 336236 + favorites: 595 + synopsis: |- + The story is set a couple of years after the events of Sword Art Online, where Kazuto "Kirito" Kirigaya and his sister Suguha meet up with Asuna Yuuki, Rika "Lisbeth" Shinozaki, and Keiko "Silica" Ayano at the SAO Survivor School. Kirito then attends emergency counseling, while the girls go for a swim at the pool. It turns out that said "emergency counseling" is a subterfuge set up by Seijirou Kikuoka, aiming to rehash the incident of Sword Art Online in hopes of determining Akihiko Kayaba's motives. What will the girls get up to in the pool, and what awaits Kirito and his "counseling"? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 18677 + url: https://myanimelist.net/anime/18677/Yuusha_ni_Narenakatta_Ore_wa_Shibushibu_Shuushoku_wo_Ketsui_Shimashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/54389.jpg + small_image_url: https://myanimelist.net/images/anime/13/54389t.jpg + large_image_url: https://myanimelist.net/images/anime/13/54389l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/54389.webp + small_image_url: https://myanimelist.net/images/anime/13/54389t.webp + large_image_url: https://myanimelist.net/images/anime/13/54389l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JYEKEHJpVrU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita. + - type: Synonym + title: Yu-sibu + - type: Synonym + title: Yusibu + - type: Synonym + title: Yuushibu + - type: Japanese + title: 勇者になれなかった俺はしぶしぶ就職を決意しました。 + - type: English + title: I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job + - type: German + title: 'Yusibu: I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.' + - type: Spanish + title: Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita + - type: French + title: 'Yusibu: I Couldn’t Become a Hero, So I Reluctantly Decided to Get a Job.' + title: Yuusha ni Narenakatta Ore wa Shibushibu Shuushoku wo Ketsui Shimashita. + title_english: I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job + title_japanese: 勇者になれなかった俺はしぶしぶ就職を決意しました。 + title_synonyms: + - Yu-sibu + - Yusibu + - Yuushibu + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2013-10-05T00:00:00+00:00' + to: '2013-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2013 + to: + day: 21 + month: 12 + year: 2013 + string: Oct 5, 2013 to Dec 21, 2013 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.79 + scored_by: 141829 + rank: 6377 + popularity: 865 + members: 325948 + favorites: 577 + synopsis: |- + Dreaming of becoming a hero and vanquishing the Demon King, Raul Chaser enters the Hero Training Program in pursuit of his ambition. However, when the Demon King is defeated and peace returns to the world, the Hero Training Program is suspended indefinitely, making it impossible for anyone to become a hero. + + Two years later, Raul reluctantly works at a small electronics store called Magic Shop Leon. Though the former hero-in-training is plagued by the mundanity of working in retail, everything changes with the arrival of a new hire. Appearing at first to be just a boy with good looks, "he" turns out to be a female demon by the name of Fino Bloodstone. She is not just any old demon either—Raul's new coworker is in fact the daughter of the late Demon King! Handed the responsibility of training this eccentric new employee, Raul soon finds his life becoming livelier than it ever was before. + + [Written by MAL Rewrite] + background: The series adapts the first 3 volumes of Jun Sakyou's light novel series of the same title. + season: fall + year: 2013 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 665 + type: anime + name: chara-ani.com + url: https://myanimelist.net/anime/producer/665/chara-anicom + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 12477 + url: https://myanimelist.net/anime/12477/Sakasama_no_Patema + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/52415.jpg + small_image_url: https://myanimelist.net/images/anime/12/52415t.jpg + large_image_url: https://myanimelist.net/images/anime/12/52415l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/52415.webp + small_image_url: https://myanimelist.net/images/anime/12/52415t.webp + large_image_url: https://myanimelist.net/images/anime/12/52415l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/C2NgRe7KVRM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakasama no Patema + - type: Synonym + title: Sakasama no Patema + - type: Japanese + title: サカサマのパテマ + - type: English + title: Patema Inverted + - type: German + title: Patema Inverted + - type: Spanish + title: Patema Inverted + - type: French + title: Patéma et le Monde Inversé + title: Sakasama no Patema + title_english: Patema Inverted + title_japanese: サカサマのパテマ + title_synonyms: + - Sakasama no Patema + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-11-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 11 + year: 2013 + to: + day: null + month: null + year: null + string: Nov 9, 2013 + duration: 1 hr 38 min + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 145247 + rank: 879 + popularity: 877 + members: 321826 + favorites: 1521 + synopsis: |- + Patema is a plucky young girl from an underground civilization boasting an incredible network of tunnels. Inspired by a friend that mysteriously went missing, she is often reprimanded due to her constant excursions of these tunnels due to her royal status. After she enters what is known as the "forbidden zone," she accidentally falls into a giant bottomless pit after being startled by a strange creature. + + Finding herself on the surface, a world literally turned upside down, she begins falling towards the sky only to be saved by Age, a discontented student of the totalitarian nation known as Aiga. The people of Aiga are taught to believe that "Inverts," like Patema, are sinners that will be "swallowed by the sky," but Age has resisted this propaganda and decides to protect his new friend. A chance meeting between two curious teenagers leads to an exploration of two unique worlds as they begin working together to unveil the secrets of their origins in Sakasama no Patema, a heart-warming film about overcoming differences in order to coexist. + + [Written by MAL Rewrite] + background: Sakasema no Patema was shown at selected countries like the UK while Cinedigm handled the Blu-ray and DVD + releases for North America. Patema Inverted won the Audience Award and the Judges Award during the 2013 Scotland Loves + Anime. It was also nominated for Best Animated Feature Film during the 7th Asia Pacific Screen Awards. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 324 + type: anime + name: Directions + url: https://myanimelist.net/anime/producer/324/Directions + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 84 + type: anime + name: Studio Rikka + url: https://myanimelist.net/anime/producer/84/Studio_Rikka + - mal_id: 559 + type: anime + name: Purple Cow Studio Japan + url: https://myanimelist.net/anime/producer/559/Purple_Cow_Studio_Japan + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 19647 + url: https://myanimelist.net/anime/19647/Hajime_no_Ippo__Rising + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/56147.jpg + small_image_url: https://myanimelist.net/images/anime/6/56147t.jpg + large_image_url: https://myanimelist.net/images/anime/6/56147l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/56147.webp + small_image_url: https://myanimelist.net/images/anime/6/56147t.webp + large_image_url: https://myanimelist.net/images/anime/6/56147l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hajime no Ippo: Rising' + - type: Synonym + title: 'Fighting Spirit: Rising' + - type: Synonym + title: Hajime no Ippo 3 + - type: Japanese + title: はじめの一歩 Rising + - type: English + title: 'Fighting Spirit: Rising' + - type: German + title: 'Hajime No Ippo: The Fighting! - Rising' + - type: Spanish + title: 'Hajime No Ippo: The Fighting!' + - type: French + title: 'Hajime No Ippo: The Fighting! - Rising' + title: 'Hajime no Ippo: Rising' + title_english: 'Fighting Spirit: Rising' + title_japanese: はじめの一歩 Rising + title_synonyms: + - 'Fighting Spirit: Rising' + - Hajime no Ippo 3 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2013-10-06T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2013 + to: + day: 30 + month: 3 + year: 2014 + string: Oct 6, 2013 to Mar 30, 2014 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.61 + scored_by: 164400 + rank: 107 + popularity: 934 + members: 299407 + favorites: 1426 + synopsis: |- + Japanese Featherweight Champion Makunouchi Ippo has defended his title belt once more with the help of his devastating signature move: the Dempsey Roll. However, new challengers are rising up left and right, claiming to have an answer for the move responsible for crushing his opponents. Will Ippo be able to step up to the challenge, or will the weight of his pride destroy him before he finds out just what it means to be strong? Meanwhile, fellow Kamogawa Gym mate Aoki Masaru is just a hop, skip, and a Frog Punch away from claiming his own belt, ready to take on the Japanese Lightweight Champion! + + Hajime no Ippo: Rising continues Ippo's quest to become stronger, featuring the same cast of loveable dimwits from Kamogawa Gym, as they put their bodies and hearts on the line to make their way in the harsh world of professional boxing. With a will of iron, Ippo steps into the ring once again. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2013 + broadcast: + day: Sundays + time: 01:35 + timezone: Asia/Tokyo + string: Sundays at 01:35 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18689 + url: https://myanimelist.net/anime/18689/Diamond_no_Ace + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/54235.jpg + small_image_url: https://myanimelist.net/images/anime/5/54235t.jpg + large_image_url: https://myanimelist.net/images/anime/5/54235l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/54235.webp + small_image_url: https://myanimelist.net/images/anime/5/54235t.webp + large_image_url: https://myanimelist.net/images/anime/5/54235l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9RUV98RNnNg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Diamond no Ace + - type: Synonym + title: Daiya no Ace + - type: Synonym + title: Ace of the Diamond + - type: Synonym + title: Dia no A + - type: Japanese + title: ダイヤのA[エース] + - type: English + title: Ace of Diamond + - type: German + title: Ace of Diamond + - type: Spanish + title: Ace of the Diamond + - type: French + title: Ace of Diamond + title: Diamond no Ace + title_english: Ace of Diamond + title_japanese: ダイヤのA[エース] + title_synonyms: + - Daiya no Ace + - Ace of the Diamond + - Dia no A + type: TV + source: Manga + episodes: 75 + status: Finished Airing + airing: false + aired: + from: '2013-10-06T00:00:00+00:00' + to: '2015-03-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2013 + to: + day: 29 + month: 3 + year: 2015 + string: Oct 6, 2013 to Mar 29, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.12 + scored_by: 124567 + rank: 560 + popularity: 1053 + members: 267341 + favorites: 4975 + synopsis: |- + With a stray pitch that completely missed the batter, Eijun Sawamura loses his final middle school baseball game. Frustrated by this defeat, Eijun and his teammates vow to reach the national tournament once they are in high school. But everything changes when a scout unexpectedly invites him to Tokyo's prestigious Seidou High School after seeing the potential in his unusual pitching style. Encouraged by his teammates, Eijun accepts the offer, ready to improve his skills and play at a much more competitive level of baseball. + + However, now surrounded by a large number of skilled players, Eijun struggles to find his place on the team. He declares that he will one day become the team's ace, but that's only if fellow first year Satoru Furuya doesn't take the title first, with his breakneck fastballs that earn him a coveted spot on the starting roster. With the addition of these talented new players to an already powerful lineup, the Seidou baseball team aims to become the best in Japan, facing off against a number of formidable foes that stand in their way. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening in Tokyo on September 28, 2013. Regular broadcasting began on October + 6, 2013. Although the anime was originally scheduled to run for a year, an additional two cours were ordered while + the series was airing, extending its run. + season: fall + year: 2013 + broadcast: + day: Sundays + time: 08:30 + timezone: Asia/Tokyo + string: Sundays at 08:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18245 + url: https://myanimelist.net/anime/18245/White_Album_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1674/142746.jpg + small_image_url: https://myanimelist.net/images/anime/1674/142746t.jpg + large_image_url: https://myanimelist.net/images/anime/1674/142746l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1674/142746.webp + small_image_url: https://myanimelist.net/images/anime/1674/142746t.webp + large_image_url: https://myanimelist.net/images/anime/1674/142746l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: White Album 2 + - type: Synonym + title: White Album2 + - type: Synonym + title: WA2 + - type: Japanese + title: WHITE ALBUM [ホワイトアルバム] 2 + - type: English + title: White Album 2 + title: White Album 2 + title_english: White Album 2 + title_japanese: WHITE ALBUM [ホワイトアルバム] 2 + title_synonyms: + - White Album2 + - WA2 + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2013-10-06T00:00:00+00:00' + to: '2013-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2013 + to: + day: 29 + month: 12 + year: 2013 + string: Oct 6, 2013 to Dec 29, 2013 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.6 + scored_by: 119339 + rank: 1827 + popularity: 1056 + members: 266964 + favorites: 3504 + synopsis: "Haruki Kitahara's light music club is on the verge of disbanding. At this rate, the third year's dream of\ + \ performing at the school festival would never be realized. However, as his exhausted fingers drift through the chords\ + \ of \"White Album,\" the first song he would ever play, an angelic voice and mysterious piano begin harmonizing with\ + \ his lonely guitar. It is a momentous performance that marks the beginning of everything for Haruki.\n \nWhite Album\ + \ 2 orchestrates Haruki's final semester with complex romance and exhilarating music, as the curtains of the stage\ + \ he so desired begin to open...\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2013 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + licensors: [] + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 16664 + url: https://myanimelist.net/anime/16664/Kaguya-hime_no_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1935/93606.jpg + small_image_url: https://myanimelist.net/images/anime/1935/93606t.jpg + large_image_url: https://myanimelist.net/images/anime/1935/93606l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1935/93606.webp + small_image_url: https://myanimelist.net/images/anime/1935/93606t.webp + large_image_url: https://myanimelist.net/images/anime/1935/93606l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/W71mtorCZDw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaguya-hime no Monogatari + - type: Synonym + title: Kaguyahime no Monogatari + - type: Synonym + title: Princess Kaguya Story + - type: Japanese + title: かぐや姫の物語 + - type: English + title: The Tale of the Princess Kaguya + - type: German + title: Die Legende der Prinzessin Kaguya + - type: Spanish + title: El Cuento de la Princesa Kaguya + - type: French + title: Le Conte de La Princesse Kaguya + title: Kaguya-hime no Monogatari + title_english: The Tale of the Princess Kaguya + title_japanese: かぐや姫の物語 + title_synonyms: + - Kaguyahime no Monogatari + - Princess Kaguya Story + type: Movie + source: Other + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2013-11-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 11 + year: 2013 + to: + day: null + month: null + year: null + string: Nov 23, 2013 + duration: 2 hr 17 min + rating: R+ - Mild Nudity + score: 8.22 + scored_by: 136919 + rank: 419 + popularity: 1078 + members: 262016 + favorites: 3067 + synopsis: |- + Deep in the countryside, a man named Okina works as a bamboo cutter in a forest, chopping away at the hollow plants day after day. One day, he discovers a small baby inside a glowing shoot. He immediately takes her home, convinced that she is a princess sent to Earth as a divine blessing from heaven. Okina and his wife Ouna take it upon themselves to raise the infant as their own, watching over her as she quickly grows into an energetic young girl. Given the name Kaguya, she fits right in with the village she has come to call home, going on adventures with the other children and enjoying what youth has to offer. + + But when Okina finds a large fortune of gold and treasure in the forest, Kaguya's life is completely changed. Believing this to be yet another gift from heaven, he takes it upon himself to turn his daughter into a real princess using the wealth he has just obtained, relocating the family to a mansion in the capital. As she leaves her friends behind to enter into an unwanted life of royalty, Kaguya's origins and purpose slowly come to light. + + [Written by MAL Rewrite] + background: Kaguya-hime no Monogatari is based on the 10th century Japanese folk tale of the same title. It was nominated + for Best Animated Feature at the 87th Academy Awards, the first such nomination for Takahata. The film received over + 20 nominations worldwide from critics associations, film festivals, and academies, winning seven times. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 18179 + url: https://myanimelist.net/anime/18179/Yowamushi_Pedal + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/53211.jpg + small_image_url: https://myanimelist.net/images/anime/5/53211t.jpg + large_image_url: https://myanimelist.net/images/anime/5/53211l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/53211.webp + small_image_url: https://myanimelist.net/images/anime/5/53211t.webp + large_image_url: https://myanimelist.net/images/anime/5/53211l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tzkiTvJWKtg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yowamushi Pedal + - type: Synonym + title: Yowapeda + - type: Japanese + title: 弱虫ペダル + - type: English + title: Yowamushi Pedal + title: Yowamushi Pedal + title_english: Yowamushi Pedal + title_japanese: 弱虫ペダル + title_synonyms: + - Yowapeda + type: TV + source: Manga + episodes: 38 + status: Finished Airing + airing: false + aired: + from: '2013-10-08T00:00:00+00:00' + to: '2014-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2013 + to: + day: 1 + month: 7 + year: 2014 + string: Oct 8, 2013 to Jul 1, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 122756 + rank: 885 + popularity: 1143 + members: 247918 + favorites: 2328 + synopsis: "Sakamichi Onoda is a cheerful otaku looking to join his new school's anime club, eager to finally make some\ + \ friends. Unfortunately, the club has been disbanded and he takes it upon himself to revive it by finding students\ + \ who are willing to join. Without much luck, Onoda decides to make a round trip to Akihabara on his old, bulky city\ + \ bicycle, a weekly 90-kilometer ride he has been completing since fourth grade.\n \nThis is when he meets fellow\ + \ first year student, Shunsuke Imaizumi, a determined cyclist who is using the school's steep incline for practice.\ + \ Surprised by Onoda's ability to climb the hill with his specific type of bicycle, Imaizumi challenges him to a race,\ + \ with the proposition of joining the anime club should Onoda win. And thus begins the young boy's first foray into\ + \ the world of high school bicycle racing!\n\n[Written by MAL Rewrite]" + background: Episode 1 was previewed at a screening in Tokyo on September 28, 2013. Regular broadcasting began on October + 8, 2013. + season: fall + year: 2013 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/17-2014-winter.yaml b/test/fixtures/jikan/season_matrix/17-2014-winter.yaml new file mode 100644 index 0000000..5d94865 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/17-2014-winter.yaml @@ -0,0 +1,3255 @@ +metadata: + captured_at: '2026-05-11T11:33:04Z' + label: 2014-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2014/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:03 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:1fc61a2bfdb0fc22267bcc818805f5e027b8d059 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 296 + per_page: 25 + data: + - mal_id: 20507 + url: https://myanimelist.net/anime/20507/Noragami + images: + jpg: + image_url: https://myanimelist.net/images/anime/1886/128266.jpg + small_image_url: https://myanimelist.net/images/anime/1886/128266t.jpg + large_image_url: https://myanimelist.net/images/anime/1886/128266l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1886/128266.webp + small_image_url: https://myanimelist.net/images/anime/1886/128266t.webp + large_image_url: https://myanimelist.net/images/anime/1886/128266l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IQnnwUXd_0U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Noragami + - type: Japanese + title: ノラガミ + - type: English + title: Noragami + title: Noragami + title_english: Noragami + title_japanese: ノラガミ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-05T00:00:00+00:00' + to: '2014-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2014 + to: + day: 23 + month: 3 + year: 2014 + string: Jan 5, 2014 to Mar 23, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.94 + scored_by: 1345877 + rank: 850 + popularity: 28 + members: 2316045 + favorites: 34646 + synopsis: |- + In times of need, if you look in the right place, you just may see a strange telephone number scrawled in red. If you call this number, you will hear a young man introduce himself as the Yato God. + + Yato is a minor deity and a self-proclaimed "Delivery God," who dreams of having millions of worshippers. Without a single shrine dedicated to his name, however, his goals are far from being realized. He spends his days doing odd jobs for five yen apiece, until his weapon partner becomes fed up with her useless master and deserts him. + + Just as things seem to be looking grim for the god, his fortune changes when a middle school girl, Hiyori Iki, supposedly saves Yato from a car accident, taking the hit for him. Remarkably, she survives, but the event has caused her soul to become loose and hence able to leave her body. Hiyori demands that Yato return her to normal, but upon learning that he needs a new partner to do so, reluctantly agrees to help him find one. And with Hiyori's help, Yato's luck may finally be turning around. + + [Written by MAL Rewrite] + background: Aside from the anime and manga there is a mobile game titled Noragami -Kami to Enishi-. + season: winter + year: 2014 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18897 + url: https://myanimelist.net/anime/18897/Nisekoi + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75587.jpg + small_image_url: https://myanimelist.net/images/anime/13/75587t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75587l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75587.webp + small_image_url: https://myanimelist.net/images/anime/13/75587t.webp + large_image_url: https://myanimelist.net/images/anime/13/75587l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pu-n_4CLXLA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nisekoi + - type: Synonym + title: Nisekoi + - type: Japanese + title: ニセコイ + - type: English + title: 'Nisekoi: False Love' + - type: German + title: 'Nisekoi: False Love' + - type: Spanish + title: 'Nisekoi: False Love' + - type: French + title: 'Nisekoi: Amours, mensonges & yakuzas!' + title: Nisekoi + title_english: 'Nisekoi: False Love' + title_japanese: ニセコイ + title_synonyms: + - Nisekoi + type: TV + source: Manga + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2014-01-11T00:00:00+00:00' + to: '2014-05-24T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2014 + to: + day: 24 + month: 5 + year: 2014 + string: Jan 11, 2014 to May 24, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 695177 + rank: 2024 + popularity: 133 + members: 1246362 + favorites: 11034 + synopsis: "Raku Ichijou, a first-year student at Bonyari High School, is the sole heir to an intimidating yakuza family.\ + \ Ten years ago, Raku made a promise to his childhood friend. Now, all he has to go on is a pendant with a lock, which\ + \ can only be unlocked with the key which the girl took with her when they parted.\n\nNow, years later, Raku has grown\ + \ into a typical teenager, and all he wants is to remain as uninvolved in his yakuza background as possible while\ + \ spending his school days alongside his middle school crush Kosaki Onodera. However, when the American Bee Hive Gang\ + \ invades his family's turf, Raku's idyllic romantic dreams are sent for a toss as he is dragged into a frustrating\ + \ conflict: Raku is to pretend that he is in a romantic relationship with Chitoge Kirisaki, the beautiful daughter\ + \ of the Bee Hive's chief, so as to reduce the friction between the two groups. Unfortunately, reality could not be\ + \ farther from this whopping lie—Raku and Chitoge fall in hate at first sight, as the girl is convinced he is a pathetic\ + \ pushover, and in Raku's eyes, Chitoge is about as attractive as a savage gorilla. \n\nNisekoi follows the daily\ + \ antics of this mismatched couple who have been forced to get along for the sake of maintaining the city's peace.\ + \ With many more girls popping up his life, all involved with Raku's past somehow, his search for the girl who holds\ + \ his heart and his promise leads him in more unexpected directions than he expects.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2014 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 18671 + url: https://myanimelist.net/anime/18671/Chuunibyou_demo_Koi_ga_Shitai_Ren + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/56643.jpg + small_image_url: https://myanimelist.net/images/anime/7/56643t.jpg + large_image_url: https://myanimelist.net/images/anime/7/56643l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/56643.webp + small_image_url: https://myanimelist.net/images/anime/7/56643t.webp + large_image_url: https://myanimelist.net/images/anime/7/56643l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3ZZgn8xNdJs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chuunibyou demo Koi ga Shitai! Ren + - type: Synonym + title: Chuunibyou demo Koi ga Shitai! 2 + - type: Synonym + title: Chu-2 Byo demo Koi ga Shitai! Ren + - type: Japanese + title: 中二病でも恋がしたい!戀 + - type: English + title: 'Love, Chunibyo & Other Delusions!: Heart Throb' + - type: German + title: Love, Chunibyo & Other Delusions! Heart Throb + - type: Spanish + title: 'Love, Chunibyo & Other Delusions!: Heart Throb' + - type: French + title: Love, Chunibyo & Other Delusions! Heart Throb + title: Chuunibyou demo Koi ga Shitai! Ren + title_english: 'Love, Chunibyo & Other Delusions!: Heart Throb' + title_japanese: 中二病でも恋がしたい!戀 + title_synonyms: + - Chuunibyou demo Koi ga Shitai! 2 + - Chu-2 Byo demo Koi ga Shitai! Ren + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-09T00:00:00+00:00' + to: '2014-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2014 + to: + day: 27 + month: 3 + year: 2014 + string: Jan 9, 2014 to Mar 27, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 478067 + rank: 2000 + popularity: 286 + members: 798925 + favorites: 2696 + synopsis: |- + The awkward lovebirds, Yuuta Togashi and Rikka Takanashi are now living together as they enter a new school year, but their adorable relationship remains stagnant. Yuuta struggles to adapt to having a chuuni girlfriend while the gang—Sanae Dekomori, Shinka Nibutani and Kumin Tsuyuri—are still keeping up with their quirks despite having advanced a grade. Making matters worse, another chuuni girl from Yuuta's middle school, Satone Shichimiya, appears... + + With the various events revolving around Yuuta, will he be able to develop his relationship with Rikka? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 20541 + url: https://myanimelist.net/anime/20541/Mikakunin_de_Shinkoukei + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75249.jpg + small_image_url: https://myanimelist.net/images/anime/10/75249t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75249l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75249.webp + small_image_url: https://myanimelist.net/images/anime/10/75249t.webp + large_image_url: https://myanimelist.net/images/anime/10/75249l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zF0oKX45fQA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mikakunin de Shinkoukei + - type: Japanese + title: 未確認で進行形 + - type: English + title: Engaged to the Unidentified + - type: German + title: Engaged to the Unidentified + - type: Spanish + title: Engaged to the Unidentified + - type: French + title: Engaged to the Unidentified + title: Mikakunin de Shinkoukei + title_english: Engaged to the Unidentified + title_japanese: 未確認で進行形 + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-09T00:00:00+00:00' + to: '2014-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2014 + to: + day: 27 + month: 3 + year: 2014 + string: Jan 9, 2014 to Mar 27, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 192815 + rank: 2939 + popularity: 645 + members: 419092 + favorites: 1260 + synopsis: |- + Just an ordinary teenager, Kobeni Yonomori receives quite the surprise on her 16th birthday—a fiancé and a sister-in-law she never even knew she had. As a result of an arrangement that her late grandfather made, Hakuya Mitsumine and his younger sister Mashiro have moved from their countryside home to the Yonomori household in order to deepen their relationship with their new family members. + + Mikakunin de Shinkoukei follows Kobeni's "love life" with Hakuya as she tries her best to adjust to the abrupt changes forced upon her. However, as some extraordinary secrets regarding the siblings come to light, Kobeni will find her life changed forever. + + [Written by MAL Rewrite] + background: Mikakunin de Shinkoukei originally premiered on Japan's ABC station, and also aired on Tokyo MX, BS11, and + AT-X. The series was simulcast on Crunchyroll and several other websites outside of Japan. Sales for a six-volume + DVD set of the series began March-August 2014. Although the anime follows the manga closely, the final episode is + original to the anime. + season: winter + year: 2014 + broadcast: + day: Thursdays + time: 02:13 + timezone: Asia/Tokyo + string: Thursdays at 02:13 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 20031 + url: https://myanimelist.net/anime/20031/D-Frag + images: + jpg: + image_url: https://myanimelist.net/images/anime/1662/112108.jpg + small_image_url: https://myanimelist.net/images/anime/1662/112108t.jpg + large_image_url: https://myanimelist.net/images/anime/1662/112108l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1662/112108.webp + small_image_url: https://myanimelist.net/images/anime/1662/112108t.webp + large_image_url: https://myanimelist.net/images/anime/1662/112108l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iaVVbM84uRY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: D-Frag! + - type: Synonym + title: D-Frag! + - type: Synonym + title: D-Fragments + - type: Japanese + title: ディーふらぐ! + - type: English + title: D-Frag! + title: D-Frag! + title_english: D-Frag! + title_japanese: ディーふらぐ! + title_synonyms: + - D-Frag! + - D-Fragments + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-07T00:00:00+00:00' + to: '2014-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2014 + to: + day: 25 + month: 3 + year: 2014 + string: Jan 7, 2014 to Mar 25, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 209387 + rank: 2235 + popularity: 651 + members: 415251 + favorites: 2428 + synopsis: |- + The Kazama Family—a gang of three wannabe delinquents and close friends, spearheaded by Kenji Kazama, is trying to make a name for themselves at Fujou Academy. On the first day of the term, the gang finds themselves putting out a fire in the Game Development Club. Instead of thanking them, the eccentric club members attack and knock out Kenji's two friends, forcing Kenji to fight for his life. Failing to escape, the gang leader is coerced into joining the Game Development Club. + + As he settles in, Kenji gets to know the four girls responsible for his provisional membership—student council president and general tyrant Chitose Karasuyama, spirited tomboy Sakura Mizukami, negligent club advisor Minami Oosawa, and the school's infamous shadow leader Roka Shibasaki. Throughout the Game Development Club's constant shenanigans and his desperate attempts to leave the club, Kenji begins to realize that he may be actually enjoying himself. + + [Written by MAL Rewrite] + background: D-Frag! adapts content from the first 5 volumes of Tomoya Haruno's manga of the same name. + season: winter + year: 2014 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20057 + url: https://myanimelist.net/anime/20057/Space☆Dandy + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/56611.jpg + small_image_url: https://myanimelist.net/images/anime/4/56611t.jpg + large_image_url: https://myanimelist.net/images/anime/4/56611l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/56611.webp + small_image_url: https://myanimelist.net/images/anime/4/56611t.webp + large_image_url: https://myanimelist.net/images/anime/4/56611l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hdhtVKk6-do?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Space☆Dandy + - type: Japanese + title: スペース☆ダンディ + - type: English + title: Space Dandy + - type: German + title: Space Dandy + title: Space☆Dandy + title_english: Space Dandy + title_japanese: スペース☆ダンディ + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-01-05T00:00:00+00:00' + to: '2014-03-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2014 + to: + day: 27 + month: 3 + year: 2014 + string: Jan 5, 2014 to Mar 27, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 164695 + rank: 975 + popularity: 697 + members: 391661 + favorites: 5920 + synopsis: "Dandy is a groovy, pompadour-wearing man who explores the stars in search of strange aliens for money, desiring\ + \ to visit his favorite place: BooBies, the best diner in all the cosmos. Traversing the galaxies in his trusty ship,\ + \ the Aloha Oe, Dandy is accompanied by his two equally unique friends: QT, the vacuum cleaner robot; and Meow, an\ + \ alien with a cat-like appearance. \n\nAlthough exciting, Dandy's job is never simple, and each new day promises\ + \ a completely different, thrilling adventure. Together, Dandy and his crew get dragged into perilous journeys, misadventures\ + \ in romance, and out of this world scenarios—all whilst steering clear of the evil scientist, Dr. Gel of the Gogol\ + \ Empire.\n\n[Written by MAL Rewrite]" + background: Space☆Dandy reunites a number of lead production staff members from Cowboy Bebop, including producer Masahiko + Minami and director Shinichiro Watanabe. Its production involved as many as 70 animation creators and 20 musical artists + as collaborators, with Watanabe insisting that artists could only use pre-1984 musical styles. Although character + designer Yoshiyuki Itou is credited as an animation director, his designs were not standardized across the series, + allowing for individual animators to express their style. The series was licensed in North America by Funimation. + Due to licensing issues, their initial simulcast used the instrumental track Cosmic Adventure by jazz band Mountain + Mocha Kilimanjaro as the opening song. Viva Namida was used from the 8th episode onwards. + season: winter + year: 2014 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 21085 + url: https://myanimelist.net/anime/21085/Witch_Craft_Works + images: + jpg: + image_url: https://myanimelist.net/images/anime/1949/112982.jpg + small_image_url: https://myanimelist.net/images/anime/1949/112982t.jpg + large_image_url: https://myanimelist.net/images/anime/1949/112982l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1949/112982.webp + small_image_url: https://myanimelist.net/images/anime/1949/112982t.webp + large_image_url: https://myanimelist.net/images/anime/1949/112982l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gLgBYps8LLQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Witch Craft Works + - type: Synonym + title: Witchcraft Works + - type: Japanese + title: ウィッチクラフトワークス + - type: English + title: Witch Craft Works + - type: German + title: Witchcraft Works + - type: French + title: Witchcraft Works + title: Witch Craft Works + title_english: Witch Craft Works + title_japanese: ウィッチクラフトワークス + title_synonyms: + - Witchcraft Works + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-05T00:00:00+00:00' + to: '2014-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2014 + to: + day: 23 + month: 3 + year: 2014 + string: Jan 5, 2014 to Mar 23, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.97 + scored_by: 169979 + rank: 5321 + popularity: 746 + members: 369728 + favorites: 816 + synopsis: |- + Even though they shared the same bus every morning and sat next to each other in class, Ayaka Kagari, the "Princess" of Tougetsu High School, was nothing more than an unreachable idol for Honoka Takamiya. The horde of students who worshipped the "Princess" was merely a nuisance to Honoka, living his lazy, regular high school life. + + Everything seemed perfectly normal until, one day, Honoka is attacked out of the blue by a mysterious witch. To his surprise, Ayaka saves his life, revealing herself to be a fire witch on a covert mission to protect Honoka. + + From that fateful day, the ordinary life of Honoka is turned upside down as he is thrown into the war between the Workshop Witches, who strive to protect the citizens, and the Tower Witches, who desire to steal a power hidden within him. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + - mal_id: 1605 + type: anime + name: I Will + url: https://myanimelist.net/anime/producer/1605/I_Will + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20767 + url: https://myanimelist.net/anime/20767/Noragami_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/77177.jpg + small_image_url: https://myanimelist.net/images/anime/7/77177t.jpg + large_image_url: https://myanimelist.net/images/anime/7/77177l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/77177.webp + small_image_url: https://myanimelist.net/images/anime/7/77177t.webp + large_image_url: https://myanimelist.net/images/anime/7/77177l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Noragami OVA + - type: Synonym + title: Noragami OAD + - type: Japanese + title: ノラガミ OAD + - type: English + title: Noragami OVA + title: Noragami OVA + title_english: Noragami OVA + title_japanese: ノラガミ OAD + title_synonyms: + - Noragami OAD + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2014-02-17T00:00:00+00:00' + to: '2014-07-17T00:00:00+00:00' + prop: + from: + day: 17 + month: 2 + year: 2014 + to: + day: 17 + month: 7 + year: 2014 + string: Feb 17, 2014 to Jul 17, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 192174 + rank: 1465 + popularity: 822 + members: 339726 + favorites: 393 + synopsis: "Kamigakari, Kamitatari\nHiyori Iki is excited to start high school alongside her two middle school friends,\ + \ but \"Delivery God\" Yato seems to have other plans for the day. Will Hiyori be able to make a good impression on\ + \ her first day? Or will Yato cost her a happy high school life?\n\nHaru no Hi no Yakusoku\nOn another day, Hiyori\ + \ decides to take advantage of the beautiful weather and invites a number of people to gaze at the cherry blossoms,\ + \ including the fearsome combat god, Bishamon. But how long will their blissful day last when Yato and his old rival\ + \ Bishamon start to drink together? \n\n[Written by MAL Rewrite]" + background: Noragami OVA consists of two separate episodes each bundled together with the 10th and 11th limited edition + volumes of the manga. The first episode, bundled with the 10th volume, adapts the manga's 25th chapter. The second + episode, bundled with the 11th volume, adapts the cherry blossom-viewing arc. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 20689 + url: https://myanimelist.net/anime/20689/Hamatora_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75653.jpg + small_image_url: https://myanimelist.net/images/anime/13/75653t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75653l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75653.webp + small_image_url: https://myanimelist.net/images/anime/13/75653t.webp + large_image_url: https://myanimelist.net/images/anime/13/75653l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Slnzv-4_oVI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hamatora The Animation + - type: Japanese + title: ハマトラ THE ANIMATION + - type: English + title: Hamatora The Animation + - type: Spanish + title: Hamatora + title: Hamatora The Animation + title_english: Hamatora The Animation + title_japanese: ハマトラ THE ANIMATION + title_synonyms: [] + type: TV + source: Mixed media + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-08T00:00:00+00:00' + to: '2014-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2014 + to: + day: 26 + month: 3 + year: 2014 + string: Jan 8, 2014 to Mar 26, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.24 + scored_by: 134445 + rank: 3683 + popularity: 894 + members: 316952 + favorites: 1099 + synopsis: |- + The ability to create miracles is not just a supernatural phenomenon; it is a gift which manifests in a limited number of human beings. "Minimum," or small miracles, are special powers that only selected people called "Minimum Holders" possess. The detective agency Yokohama Troubleshooting, or Hamatora for short, is composed of the "Minimum Holder PI Duo," Nice and Murasaki. Their office is a lone table at Cafe Nowhere, where the pair and their coworkers await new clients. + + Suddenly, the jobs that they begin to receive seem to have strange connections to the serial killer whom their friend Art, a police officer, is searching for. The murder victims share a single similarity: they are all Minimum Holders. Nice and Murasaki, as holders themselves, are drawn to the case—but what exactly is the link between Nice and the one who orchestrates it all? + + [Written by MAL Rewrite] + background: Hamatora, short for "Yokohama Troubleshooter," is a mixed-media project which was inspired by superhero + comics from Marvel and DC. The project began with a manga series, which was followed by a TV anime series. The franchise + also contains a stage play, a novel, and a video game adaptation for the Nintendo 3DS. + season: winter + year: 2014 + broadcast: + day: Wednesdays + time: 01:40 + timezone: Asia/Tokyo + string: Wednesdays at 01:40 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 20047 + url: https://myanimelist.net/anime/20047/Sakura_Trick + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/56189.jpg + small_image_url: https://myanimelist.net/images/anime/2/56189t.jpg + large_image_url: https://myanimelist.net/images/anime/2/56189l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/56189.webp + small_image_url: https://myanimelist.net/images/anime/2/56189t.webp + large_image_url: https://myanimelist.net/images/anime/2/56189l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cGeDE_RR6eo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakura Trick + - type: Japanese + title: 桜Trick + - type: English + title: Sakura Trick + title: Sakura Trick + title_english: Sakura Trick + title_japanese: 桜Trick + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-10T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2014 + to: + day: 28 + month: 3 + year: 2014 + string: Jan 10, 2014 to Mar 28, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.95 + scored_by: 128120 + rank: 5425 + popularity: 1016 + members: 277485 + favorites: 1545 + synopsis: |- + Having been best friends since middle school, Haruka Takayama and Yuu Sonoda plan to attend Misato West High School together. However, despite being assigned to the same class, a cruel twist of fate has them seated on the opposite ends of their classroom! To make matters worse, their school will shut down in three years, making them the final intake of first-year students. Undeterred by this chain of unfortunate events, Haruka is set on sticking with Yuu, striving to create many wonderful memories with her. + + Much to Haruka's jealousy however, Yuu's easygoing demeanor quickly attracts the attention of their female classmates. Sympathizing with her friend's growing insecurity, Yuu ends up sharing a deep, affectionate kiss with her in an empty classroom. The act intensifies their bond as "special friends," gradually revealing a different aspect to their unique friendship while also inviting new conflicts. + + [Written by MAL Rewrite] + background: Sakura Trick first premiered in Winter 2014 and was simulcast by Crunchyroll in the USA and Canada. It was + later licensed for a North American home video release by Sentai Filmworks. + season: winter + year: 2014 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20847 + url: https://myanimelist.net/anime/20847/Seitokai_Yakuindomo + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/56941.jpg + small_image_url: https://myanimelist.net/images/anime/9/56941t.jpg + large_image_url: https://myanimelist.net/images/anime/9/56941l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/56941.webp + small_image_url: https://myanimelist.net/images/anime/9/56941t.webp + large_image_url: https://myanimelist.net/images/anime/9/56941l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seitokai Yakuindomo* + - type: Synonym + title: Seitokai Yakuindomo 2 + - type: Synonym + title: SYD* + - type: Japanese + title: 生徒会役員共* + - type: English + title: Student Council Staff Members Season 2 + title: Seitokai Yakuindomo* + title_english: Student Council Staff Members Season 2 + title_japanese: 生徒会役員共* + title_synonyms: + - Seitokai Yakuindomo 2 + - SYD* + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-01-04T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2014 + to: + day: 30 + month: 3 + year: 2014 + string: Jan 4, 2014 to Mar 30, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.68 + scored_by: 130992 + rank: 1532 + popularity: 1036 + members: 272495 + favorites: 628 + synopsis: "They say that the more things change, the more they stay the same, and those words could not be more true\ + \ for the student council of Ousai Private Academy. Though an entire year has passed—bringing the senior members to\ + \ their final year of high school—not much has changed. President Shino Amakusa is just as perverted as ever, Secretary\ + \ Aria Shichijou still refuses to put on a pair of panties, Treasurer Suzu Hagimura has yet to grow an inch, and Vice\ + \ President Takatoshi Tsuda is still stuck as the straight man to their crazy antics.\n \nOf course, limiting the\ + \ fun to a four-way might get a little stale; although the group still messes around with the Judo Club and the Newspaper\ + \ Club, more girls have come to get in on the excitement. Takatoshi's sister Kotomi, a new student at Ousai, is as\ + \ perverse as the president, while Uomi, the aloof student council president of the nearby Eiryou High School, fits\ + \ right in with the insanity at Ousai. With loads of absurdity and sexual humor that keeps on coming, Takatoshi needs\ + \ to harden up if he is going to keep up with all the madness around him.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2014 + broadcast: + day: Saturdays + time: '20:30' + timezone: Asia/Tokyo + string: Saturdays at 20:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 19769 + url: https://myanimelist.net/anime/19769/Mahou_Sensou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/58103.jpg + small_image_url: https://myanimelist.net/images/anime/3/58103t.jpg + large_image_url: https://myanimelist.net/images/anime/3/58103l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/58103.webp + small_image_url: https://myanimelist.net/images/anime/3/58103t.webp + large_image_url: https://myanimelist.net/images/anime/3/58103l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oCbrgJoHuuw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahou Sensou + - type: Synonym + title: Mahosen + - type: Japanese + title: 魔法戦争 + - type: English + title: Magical Warfare + - type: German + title: Magical Warfare + - type: Spanish + title: Magical Warfare + - type: French + title: Magical Warfare + title: Mahou Sensou + title_english: Magical Warfare + title_japanese: 魔法戦争 + title_synonyms: + - Mahosen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-10T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2014 + to: + day: 28 + month: 3 + year: 2014 + string: Jan 10, 2014 to Mar 28, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 5.95 + scored_by: 119785 + rank: 11244 + popularity: 1064 + members: 266193 + favorites: 343 + synopsis: |- + The world as we know it is actually just half the story, as Takeshi Nanase finds out abruptly one summer morning. On his way to kendo practice, Takeshi comes across an unconscious girl in a uniform he doesn't recognize. Takeshi does the decent thing and saves her, and in return the girl wakes up and accidentally turns him into a magic-user. + + As Takeshi finds out, there is the world he lives in and the world of magic users. Most magic users just want to peacefully coexist with non-magicians, but there are some with bigger ambitions. Mui Aiba is a magician enrolled in the Subaru Magic Academy, where magic users can learn to control and channel their powers and how to live in peace with regular humans. After his fateful encounter with Mui, Takeshi and his newly magician friends Kurumi Isoshima and Kazumi Ida decide to enroll in the Magic Academy as well. + + All three friends have different reasons for fighting on, whether they're fighting to escape the past or catch up to the future. They wield different kinds of powers, which they must learn to harness in order to fight off the Ghost Trailers, a group of magicians who are willing to use violence to assert their superiority over humans. + + Pursued by the Ghost Trailers, Takeshi and his friends must train to become stronger, face the leader of the Trailers, and prevent the beginning of the Second Great Magic War. + background: Mahou Sensou adapts the first 7 novels of Hisashi Suzuki's light novel series of the same title. + season: winter + year: 2014 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 18139 + url: https://myanimelist.net/anime/18139/Tonari_no_Seki-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/55489.jpg + small_image_url: https://myanimelist.net/images/anime/9/55489t.jpg + large_image_url: https://myanimelist.net/images/anime/9/55489l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/55489.webp + small_image_url: https://myanimelist.net/images/anime/9/55489t.webp + large_image_url: https://myanimelist.net/images/anime/9/55489l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7ufd8z0F0Uk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tonari no Seki-kun + - type: Synonym + title: My Neighbor Seki + - type: Japanese + title: となりの関くん + - type: English + title: 'Tonari no Seki-kun: The Master of Killing Time' + - type: German + title: 'Tonari no Seki-kun: The Master of Killing Time' + - type: Spanish + title: 'Tonari no Seki-kun: The Master of Killing Time' + - type: French + title: 'Tonari no Seki-kun: The Master of Killing Time' + title: Tonari no Seki-kun + title_english: 'Tonari no Seki-kun: The Master of Killing Time' + title_japanese: となりの関くん + title_synonyms: + - My Neighbor Seki + type: TV + source: Manga + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2014-01-06T00:00:00+00:00' + to: '2014-05-26T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2014 + to: + day: 26 + month: 5 + year: 2014 + string: Jan 6, 2014 to May 26, 2014 + duration: 7 min per ep + rating: PG - Children + score: 7.53 + scored_by: 115920 + rank: 2129 + popularity: 1098 + members: 256461 + favorites: 711 + synopsis: |- + All Rumi Yokoi wants to do is focus during school, but she is constantly distracted by Toshinari Seki, her neighboring classmate. Paying attention during class is the least of Seki's worries, as he obsesses over intricate setups created using an assortment of items, from an elaborate domino course on his desk to a treacherous war played out with shogi pieces. Yokoi desperately attempts to focus in class, only to be repeatedly sucked into his intriguing eccentricities; however, they always seem to end up with her getting in trouble with their teacher. Fortunately, lessons will never be dull with Seki's antics around! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Mondays + time: 02:05 + timezone: Asia/Tokyo + string: Mondays at 02:05 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 18095 + url: https://myanimelist.net/anime/18095/Nourin + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/57563.jpg + small_image_url: https://myanimelist.net/images/anime/6/57563t.jpg + large_image_url: https://myanimelist.net/images/anime/6/57563l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/57563.webp + small_image_url: https://myanimelist.net/images/anime/6/57563t.webp + large_image_url: https://myanimelist.net/images/anime/6/57563l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1Dhxhd8JWJY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nourin + - type: Synonym + title: Agriculture and Forestry + - type: Japanese + title: のうりん + - type: English + title: No-Rin + - type: German + title: No-Rin + - type: Spanish + title: No-Rin + - type: French + title: No-Rin + title: Nourin + title_english: No-Rin + title_japanese: のうりん + title_synonyms: + - Agriculture and Forestry + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-11T00:00:00+00:00' + to: '2014-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2014 + to: + day: 29 + month: 3 + year: 2014 + string: Jan 11, 2014 to Mar 29, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.76 + scored_by: 84126 + rank: 6552 + popularity: 1354 + members: 206306 + favorites: 311 + synopsis: |- + Idol-obsessed Kousaku Hata is left devastated when his favorite, Yuka Kusakabe, unexpectedly announces her retirement at the peak of an illustrious career. As Yuka’s biggest fan, this news proves to be more difficult than he can bear. Shaken to his very core, he sinks into depression and places himself in self-imposed isolation. However, on the day his friends managed to convince him to attend school again, he gets a pleasant surprise. + + It turns out that his beloved idol, under the guise of Ringo Kinoshita, has transferred into his class. This miraculous development fills Kousaku with newfound resolve, as he dedicates himself to take advantage of the once-in-a-lifetime opportunity. With the support of his teacher and friends, Kousaku works toward getting close to the girl of his dreams and uncovering the reason for her retirement from the entertainment industry. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Saturdays + time: 01:00 + timezone: Asia/Tokyo + string: Saturdays at 01:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 19315 + url: https://myanimelist.net/anime/19315/Pupa + images: + jpg: + image_url: https://myanimelist.net/images/anime/1117/121859.jpg + small_image_url: https://myanimelist.net/images/anime/1117/121859t.jpg + large_image_url: https://myanimelist.net/images/anime/1117/121859l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1117/121859.webp + small_image_url: https://myanimelist.net/images/anime/1117/121859t.webp + large_image_url: https://myanimelist.net/images/anime/1117/121859l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hwRWZR1ChYE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Pupa + - type: Japanese + title: Pupa (ピューパ) + - type: English + title: Pupa + title: Pupa + title_english: Pupa + title_japanese: Pupa (ピューパ) + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-10T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2014 + to: + day: 28 + month: 3 + year: 2014 + string: Jan 10, 2014 to Mar 28, 2014 + duration: 4 min per ep + rating: R - 17+ (violence & profanity) + score: 3.28 + scored_by: 109219 + rank: 14974 + popularity: 1392 + members: 200931 + favorites: 270 + synopsis: "Abandoned by their abusive parents and with only each other to depend on, siblings Utsutsu and Yume Hasegawa\ + \ find themselves led astray by beautiful red butterflies that have appeared in their world. Unbeknownst to them,\ + \ these crimson winged heralds trumpet the beginning of a cannibalistic nightmare—a mysterious virus known as Pupa\ + \ is about to hatch.\n \nAfter succumbing to the full effects of Pupa, Yume undergoes a grotesque metamorphosis into\ + \ a monstrous creature with an insatiable desire for flesh; Utsutsu, on the other hand, is only partially affected,\ + \ gaining remarkable regenerative powers instead. Reaffirming the resolve to keep the promise he made to himself years\ + \ ago, Utsutsu is willing to sacrifice everything in order to always be there for his precious little sister.\n\n\ + Pupa tells the story of a loving brother's desperate struggles to save his sister while protecting the world from\ + \ her uncontrollable hunger.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2014 + broadcast: + day: Fridays + time: 02:03 + timezone: Asia/Tokyo + string: Fridays at 02:03 (JST) + producers: + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 17777 + url: https://myanimelist.net/anime/17777/Saikin_Imouto_no_Yousu_ga_Chotto_Okashiinda_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/56589.jpg + small_image_url: https://myanimelist.net/images/anime/3/56589t.jpg + large_image_url: https://myanimelist.net/images/anime/3/56589l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/56589.webp + small_image_url: https://myanimelist.net/images/anime/3/56589t.webp + large_image_url: https://myanimelist.net/images/anime/3/56589l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FTqWcmzKrQE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saikin, Imouto no Yousu ga Chotto Okashiinda ga. + - type: Synonym + title: Recently + - type: Synonym + title: My Little Sister is Unusual + - type: Synonym + title: ImoCho + - type: Synonym + title: ImoCyo + - type: Japanese + title: 最近、妹のようすがちょっとおかしいんだが。 + - type: English + title: Recently, my sister is unusual. + - type: German + title: Recently My Sister is Unusual + - type: Spanish + title: Recently My Sister is Unusual + - type: French + title: 'ImoCho: Recently My Sister is Unusual' + title: Saikin, Imouto no Yousu ga Chotto Okashiinda ga. + title_english: Recently, my sister is unusual. + title_japanese: 最近、妹のようすがちょっとおかしいんだが。 + title_synonyms: + - Recently + - My Little Sister is Unusual + - ImoCho + - ImoCyo + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-04T00:00:00+00:00' + to: '2014-03-23T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2014 + to: + day: 23 + month: 3 + year: 2014 + string: Jan 4, 2014 to Mar 23, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.2 + scored_by: 81836 + rank: 9934 + popularity: 1507 + members: 183765 + favorites: 212 + synopsis: |- + Saikin, Imouto no Yousu ga Chotto Okashiinda ga. follows a family just starting to rebuild. When they marry, Mr. and Mrs. Kanzaki bring a teenage son and daughter along for the ride. But high school freshman Mitsuki Kanzaki is less than thrilled. Stinging from a history of absent and abusive father figures, she is slow to accept her stepfather and stepbrother. + + But after an accident lands Mitsuki in the hospital, she finds herself possessed by the ghost of Hiyori Kotobuki, a girl her age who was deeply in love with Mitsuki's stepbrother Yuuya. Hiyori cannot pass on to her final reward because of her unrequited love for Yuuya, meaning she's got to consummate it... in Mitsuki's body?! + + Now, Mitsuki's life depends on getting Hiyori to Heaven. But will she get used to sharing herself with a pushy, amorous ghost? Can she overcome her distrust of her new family? Can she bring herself to fulfill Hiyori's feelings for Yuuya? And might she be hiding some feelings of her own? + background: The anime was streamed by Crunchyroll during its airing. The source material has also spawned a live-action + film and a light novel series. + season: winter + year: 2014 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 20457 + url: https://myanimelist.net/anime/20457/Inari_Konkon_Koi_Iroha + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/64897.jpg + small_image_url: https://myanimelist.net/images/anime/8/64897t.jpg + large_image_url: https://myanimelist.net/images/anime/8/64897l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/64897.webp + small_image_url: https://myanimelist.net/images/anime/8/64897t.webp + large_image_url: https://myanimelist.net/images/anime/8/64897l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F26Yjm5-qWA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Inari, Konkon, Koi Iroha. + - type: Synonym + title: Inari + - type: Synonym + title: Konkon + - type: Synonym + title: ABCs of Love + - type: Japanese + title: いなり、こんこん、恋いろは。 + - type: English + title: Inari Kon Kon + - type: German + title: Inari Kon Kon + - type: Spanish + title: Inari Kon Kon + - type: French + title: Inari Kon Kon + title: Inari, Konkon, Koi Iroha. + title_english: Inari Kon Kon + title_japanese: いなり、こんこん、恋いろは。 + title_synonyms: + - Inari + - Konkon + - ABCs of Love + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-01-16T00:00:00+00:00' + to: '2014-03-20T00:00:00+00:00' + prop: + from: + day: 16 + month: 1 + year: 2014 + to: + day: 20 + month: 3 + year: 2014 + string: Jan 16, 2014 to Mar 20, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 68104 + rank: 3952 + popularity: 1570 + members: 176588 + favorites: 422 + synopsis: |- + Frazzle-haired middle schooler Inari Fushimi is less than average; she's painfully shy and horribly clumsy, but despite all this, she is undeniably kind. Running about the winding streets of her hometown, she takes a shortcut through the local shrine and stumbles upon a small fox pup in a river. After rescuing him, she continues on, but from this moment on, her life takes a drastic turn. + + Grateful for rescuing the pup, the shrine goddess Uka-no-Mitama-no-Kami, "Uka-sama," grants Inari a fragment of her power. Now, Inari has the ability to transform into anyone by shouting the magical phrase "Inari, konkon." Could this power also grant her the courage to convey her feelings to her crush, Kouji Tanbabashi? With her new heavenly ability and the fox spirit Kon, Inari forms a sincere friendship with Uka-sama, encounters more of the supernatural world, and learns that true love knows no bounds. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Wednesdays + time: 01:00 + timezone: Asia/Tokyo + string: Wednesdays at 01:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 2545 + type: anime + name: Kyoto Broadcasting System + url: https://myanimelist.net/anime/producer/2545/Kyoto_Broadcasting_System + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 15565 + url: https://myanimelist.net/anime/15565/Maken-Ki_Two + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/58191.jpg + small_image_url: https://myanimelist.net/images/anime/10/58191t.jpg + large_image_url: https://myanimelist.net/images/anime/10/58191l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/58191.webp + small_image_url: https://myanimelist.net/images/anime/10/58191t.webp + large_image_url: https://myanimelist.net/images/anime/10/58191l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/53Ypf_Sl6Wo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maken-Ki! Two + - type: Synonym + title: Maken-Ki! Dai 2-ki + - type: Synonym + title: Maken-Ki! 2 + - type: Synonym + title: Maken-Ki! Second Season + - type: Synonym + title: Maken-Ki! 2nd Season + - type: Japanese + title: マケン姫っ!通 + - type: English + title: Maken-Ki! Two + title: Maken-Ki! Two + title_english: Maken-Ki! Two + title_japanese: マケン姫っ!通 + title_synonyms: + - Maken-Ki! Dai 2-ki + - Maken-Ki! 2 + - Maken-Ki! Second Season + - Maken-Ki! 2nd Season + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-01-16T00:00:00+00:00' + to: '2014-03-20T00:00:00+00:00' + prop: + from: + day: 16 + month: 1 + year: 2014 + to: + day: 20 + month: 3 + year: 2014 + string: Jan 16, 2014 to Mar 20, 2014 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.15 + scored_by: 75874 + rank: 10200 + popularity: 1619 + members: 170206 + favorites: 198 + synopsis: |- + Takeru continues his education at Tenbi Academy as part of the newly formed Security Committee. As a team with the other members, they battle unscrupulous individuals who use their Maken for evil purposes. In the meantime, his libido and the conflicting romantic interests of the girls surrounding him complicate matters considerably. + + (Source: ANN) + background: '' + season: winter + year: 2014 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 19363 + url: https://myanimelist.net/anime/19363/Gin_no_Saji_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/57995.jpg + small_image_url: https://myanimelist.net/images/anime/8/57995t.jpg + large_image_url: https://myanimelist.net/images/anime/8/57995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/57995.webp + small_image_url: https://myanimelist.net/images/anime/8/57995t.webp + large_image_url: https://myanimelist.net/images/anime/8/57995l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BxnVsmI6JeQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gin no Saji 2nd Season + - type: Japanese + title: 銀の匙 + - type: English + title: Silver Spoon 2nd Season + - type: German + title: Silver Spoon Staffel 2 + - type: Spanish + title: Silver Spoon Temporada 2 + - type: French + title: Silver Spoon Saison 2 + title: Gin no Saji 2nd Season + title_english: Silver Spoon 2nd Season + title_japanese: 銀の匙 + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2014-01-10T00:00:00+00:00' + to: '2014-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2014 + to: + day: 28 + month: 3 + year: 2014 + string: Jan 10, 2014 to Mar 28, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.28 + scored_by: 94993 + rank: 346 + popularity: 1726 + members: 155558 + favorites: 698 + synopsis: |- + Now accustomed to his life at Ooezo Agricultural High School, Yuugo Hachiken explores the deeper aspects of what school life really means. As Hachiken learns more about himself and earns the skills necessary for his everyday tasks, he is even offered the position of the Equestrian Club's vice-president. The new semester brings a variety of agricultural dilemmas and personal conflicts, but, nevertheless, Hachiken perseveres in order to discover his dream and continue working together with his friends. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Fridays + time: 00:50 + timezone: Asia/Tokyo + string: Fridays at 00:50 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 21329 + url: https://myanimelist.net/anime/21329/Mushishi__Hihamukage + images: + jpg: + image_url: https://myanimelist.net/images/anime/1559/147521.jpg + small_image_url: https://myanimelist.net/images/anime/1559/147521t.jpg + large_image_url: https://myanimelist.net/images/anime/1559/147521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1559/147521.webp + small_image_url: https://myanimelist.net/images/anime/1559/147521t.webp + large_image_url: https://myanimelist.net/images/anime/1559/147521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Q9PiKDPIgPg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushishi: Hihamukage' + - type: Synonym + title: 'Mushi-shi Tokubetsu-hen: Hihamu Kage' + - type: Synonym + title: 'Mushishi Special: Hihamukage' + - type: Japanese + title: 蟲師 特別篇「日蝕む翳」 + - type: English + title: 'Mushi-shi: The Shadow that Devours the Sun' + title: 'Mushishi: Hihamukage' + title_english: 'Mushi-shi: The Shadow that Devours the Sun' + title_japanese: 蟲師 特別篇「日蝕む翳」 + title_synonyms: + - 'Mushi-shi Tokubetsu-hen: Hihamu Kage' + - 'Mushishi Special: Hihamukage' + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-01-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 1 + year: 2014 + to: + day: null + month: null + year: null + string: Jan 4, 2014 + duration: 44 min + rating: PG-13 - Teens 13 or older + score: 8.53 + scored_by: 73654 + rank: 149 + popularity: 1743 + members: 153847 + favorites: 215 + synopsis: |- + The entire countryside comes to a halt midday to witness a rare solar eclipse that is rumored to allow the average person to see Mushi. Unable to avert their gaze, the air is full of awe and wonder—but those who know the Mushi are preparing for the eclipse's aftermath. + + Based on a prediction from Tanyuu Karibusa, the cursed recorder, Mushishi Ginko finds himself in a very unlucky farming village. Immediately following the solar eclipse, a strange black cloud begins to gather in the sky and blocks the sun once more. Suspecting it to be the work of a Mushi known as Hihami, Ginko seeks to liberate the village from perpetual darkness. However, it seems that not all of the villagers are eager to return to the light. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + licensors: [] + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20973 + url: https://myanimelist.net/anime/20973/Sekai_Seifuku__Bouryaku_no_Zvezda + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/56133.jpg + small_image_url: https://myanimelist.net/images/anime/2/56133t.jpg + large_image_url: https://myanimelist.net/images/anime/2/56133l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/56133.webp + small_image_url: https://myanimelist.net/images/anime/2/56133t.webp + large_image_url: https://myanimelist.net/images/anime/2/56133l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BRKSi6yO2wk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sekai Seifuku: Bouryaku no Zvezda' + - type: Synonym + title: 'Sekai Seifuku: Bouryaku no Zvezda' + - type: Japanese + title: 世界征服~謀略のズヴィズダー~ + - type: English + title: World Conquest Zvezda Plot + - type: German + title: World Conquest Zvezda Plot + - type: Spanish + title: 'Sekai Seifuku: Bōryaku no Zvezda: World Conquest Zvezda Plot' + - type: French + title: World Conquest Zvezda Plot + title: 'Sekai Seifuku: Bouryaku no Zvezda' + title_english: World Conquest Zvezda Plot + title_japanese: 世界征服~謀略のズヴィズダー~ + title_synonyms: + - 'Sekai Seifuku: Bouryaku no Zvezda' + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-12T00:00:00+00:00' + to: '2014-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2014 + to: + day: 30 + month: 3 + year: 2014 + string: Jan 12, 2014 to Mar 30, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.05 + scored_by: 57067 + rank: 4867 + popularity: 1742 + members: 153843 + favorites: 358 + synopsis: "Asuta Jimon, a runaway, is wandering the streets at night when he has a chance encounter with a young girl\ + \ collapsed beside her tricycle. After he offers her some food, she is moved by his kindness and asks him to join\ + \ her organization, offering him a face mask and a sweet bun. In need of a place to stay, Asuta decides to play along\ + \ and accepts her offer, adopting the nickname \"Dva.\" \n\nLittle does Dva know, this cute girl is Kate Hoshimiya,\ + \ the leader of Zvezda, a secret organization bent on world conquest. However, he soon realizes the true weight of\ + \ her words as peculiar happenings rope him deeper into Zvezda and its eccentric members—the samurai-like vanguard\ + \ Itsuka Shikabane, tech-genius Natalia \"Natasha\" Vasylchenko, troublesome Yasubee \"Yasu\" Morozumi, ex-gangster\ + \ Gorou Shikabane, and multi-purpose robot Roboko Tsujii. \n\nWith \"White Light,\" a powerful organization of justice,\ + \ and the entire Japanese government against them, can Zvezda really dominate all humanity and let their light shine\ + \ throughout the world?\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2014 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 20431 + url: https://myanimelist.net/anime/20431/Hoozuki_no_Reitetsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/87177.jpg + small_image_url: https://myanimelist.net/images/anime/7/87177t.jpg + large_image_url: https://myanimelist.net/images/anime/7/87177l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/87177.webp + small_image_url: https://myanimelist.net/images/anime/7/87177t.webp + large_image_url: https://myanimelist.net/images/anime/7/87177l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1vpCZ6si3dM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hoozuki no Reitetsu + - type: Synonym + title: Cool-headed Hoozuki + - type: Japanese + title: 鬼灯の冷徹 + - type: English + title: Hozuki's Coolheadedness + - type: German + title: Hozuki's Coolheadedness + - type: Spanish + title: 'Hoozuki no Reitetsu: Hozuki''s Coolheadedness' + - type: French + title: Hozuki's Coolheadedness + title: Hoozuki no Reitetsu + title_english: Hozuki's Coolheadedness + title_japanese: 鬼灯の冷徹 + title_synonyms: + - Cool-headed Hoozuki + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-01-10T00:00:00+00:00' + to: '2014-04-04T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2014 + to: + day: 4 + month: 4 + year: 2014 + string: Jan 10, 2014 to Apr 4, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.79 + scored_by: 47453 + rank: 1204 + popularity: 1867 + members: 140817 + favorites: 1376 + synopsis: |- + Hell is a bureaucracy, and business is running smoother than ever thanks to the demonic efficiency of Hoozuki, chief deputy to Lord Enma, the King of Hell. Whether offering counsel to the Momotarou of Japanese folklore or receiving diplomatic missions from the Judeo-Christian Hell, the demon who runs the show from behind the king's imposing shadow is ready to beat down any challenges coming his way into a bloody pulp. Metaphorically, of course... + + The poster boy for micromanagement and armed with negotiation skills worthy of Wall Street, Hoozuki no Reitetsu follows the sadistic and level-headed Hoozuki as he spends his days troubleshooting hell. With an abundance of familiar faces from popular Japanese legends and East Asian mythology working middle management positions, this referential and anachronistic dark comedy brings new meaning to the phrase "employer liability." Just how hard could it be to manage employees from hell, anyway? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2014 + broadcast: + day: Fridays + time: 01:35 + timezone: Asia/Tokyo + string: Fridays at 01:35 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20931 + url: https://myanimelist.net/anime/20931/Oneechan_ga_Kita + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/56415.jpg + small_image_url: https://myanimelist.net/images/anime/3/56415t.jpg + large_image_url: https://myanimelist.net/images/anime/3/56415l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/56415.webp + small_image_url: https://myanimelist.net/images/anime/3/56415t.webp + large_image_url: https://myanimelist.net/images/anime/3/56415l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oneechan ga Kita + - type: Synonym + title: My Sister Came + - type: Synonym + title: Onee-chan + - type: Japanese + title: お姉ちゃんが来た + - type: German + title: Onee-chan ga Kita + - type: Spanish + title: Onee-chan ga Kita + - type: French + title: Onee-chan ga Kita + title: Oneechan ga Kita + title_english: null + title_japanese: お姉ちゃんが来た + title_synonyms: + - My Sister Came + - Onee-chan + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-01-09T00:00:00+00:00' + to: '2014-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2014 + to: + day: 27 + month: 3 + year: 2014 + string: Jan 9, 2014 to Mar 27, 2014 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 6.31 + scored_by: 65204 + rank: 9313 + popularity: 1998 + members: 129424 + favorites: 114 + synopsis: |- + The story revolves around Tomoya Mizuhara, a 13-year-old boy who suddenly gains a big sister when his father remarries. 17-year-old Ichika is a little strange, and her affection for Tomoya is rather overwhelming, if not scary. On top of things, Ichika's friend Ruri is the ultimate sadist. Then there is Ichika's big-breasted quarter-Japanese friend Marina. + + (Source: ANN) + background: '' + season: winter + year: 2014 + broadcast: + day: Thursdays + time: 03:00 + timezone: Asia/Tokyo + string: Thursdays at 03:00 (JST) + producers: + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 1599 + type: anime + name: Studio CHANT + url: https://myanimelist.net/anime/producer/1599/Studio_CHANT + licensors: [] + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 19117 + url: https://myanimelist.net/anime/19117/Toaru_Hikuushi_e_no_Koiuta + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/56939.jpg + small_image_url: https://myanimelist.net/images/anime/2/56939t.jpg + large_image_url: https://myanimelist.net/images/anime/2/56939l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/56939.webp + small_image_url: https://myanimelist.net/images/anime/2/56939t.webp + large_image_url: https://myanimelist.net/images/anime/2/56939l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t2myFtKWXCE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Hikuushi e no Koiuta + - type: Synonym + title: Love Song of a Certain Pilot + - type: Japanese + title: とある飛空士への恋歌 + - type: English + title: The Pilot's Love Song + - type: German + title: The Pilot's Love Song + - type: French + title: The Pilot's Love Song + title: Toaru Hikuushi e no Koiuta + title_english: The Pilot's Love Song + title_japanese: とある飛空士への恋歌 + title_synonyms: + - Love Song of a Certain Pilot + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-01-06T00:00:00+00:00' + to: '2014-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2014 + to: + day: 31 + month: 3 + year: 2014 + string: Jan 6, 2014 to Mar 31, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 42836 + rank: 4184 + popularity: 2317 + members: 105299 + favorites: 225 + synopsis: |- + In order to uncover the "end of the sky," as spoken of in ancient mythology, Kal-el Albus is sent to Isla, an island in the sky. There he attends Cadoques High's Aerial Division, where he enjoys a carefree life with his schoolmates. That is...until a surprise attack by the air tribe drags Isla into a bloody war. + + (Source: NIS America) + background: '' + season: winter + year: 2014 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1079 + type: anime + name: 3xCube + url: https://myanimelist.net/anime/producer/1079/3xCube + - mal_id: 1081 + type: anime + name: ZERO-A + url: https://myanimelist.net/anime/producer/1081/ZERO-A + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1620 + type: anime + name: Toppan Printing + url: https://myanimelist.net/anime/producer/1620/Toppan_Printing + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 21177 + url: https://myanimelist.net/anime/21177/Nobunaga_the_Fool + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/57803.jpg + small_image_url: https://myanimelist.net/images/anime/10/57803t.jpg + large_image_url: https://myanimelist.net/images/anime/10/57803l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/57803.webp + small_image_url: https://myanimelist.net/images/anime/10/57803t.webp + large_image_url: https://myanimelist.net/images/anime/10/57803l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XChhBbKNdDE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nobunaga the Fool + - type: Japanese + title: ノブナガ・ザ・フール + - type: English + title: Nobunaga the Fool + title: Nobunaga the Fool + title_english: Nobunaga the Fool + title_japanese: ノブナガ・ザ・フール + title_synonyms: [] + type: TV + source: Other + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-01-06T00:00:00+00:00' + to: '2014-06-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2014 + to: + day: 23 + month: 6 + year: 2014 + string: Jan 6, 2014 to Jun 23, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.65 + scored_by: 39513 + rank: 7256 + popularity: 2346 + members: 103452 + favorites: 166 + synopsis: |- + Guided by her visions revealing the location of the King of Salvation, Jeanne Kaguya d'Arc flees with the polymath Leonardo da Vinci from the West Star to the East Star. There, she encounters Nobunaga Oda—the son of a local feudal lord who, following a brutal defeat dealt by an enemy clan, has sworn to conquer the world with his friends. + + Quickly convinced that Nobunaga is indeed the King of Salvation, Jeanne pledges allegiance to the Oda clan. Meanwhile, King Arthur, the ruler of the West Star, sends his ruthless general Gaius Julius Caesar and his combat machine army to conquer Nobunaga's planet and seize the Holy Grail. Although Kaguya believes that Arthur is the King of Destruction, the reckless behavior of Nobunaga "The Fool"—who named his own combat suit after his nickname—on the battlefield sows doubt in his capability as a leader. + + With the help of Himiko, the Yamato Queen, Nobunaga and his clan must unify in order to overcome tragedies, recover from betrayals, and eventually save the world. + + [Written by MAL Rewrite] + background: 'Nobunaga the Fool is a part of The Fool multidimensional project by Shouji Kawamori. Stage productions + of the series featured a combination of live action and animation by Satelight, where onstage actors and the voice + cast work in tandem to enhance the performances. Three acts of the play were performed from December 8, 2013 to July + 20, 2014. The series was released on Blu-ray and DVD in Japan from April 25, 2014 to November 26, 2014, and in North + America by Sentai Filmworks from April 28, 2015 to September 29, 2015. A smartphone video game based on the series + titled Nobunaga the Fool: Senran no Regalia was released by Bank of Innovation on June 30, 2014.' + season: winter + year: 2014 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/18-2014-spring.yaml b/test/fixtures/jikan/season_matrix/18-2014-spring.yaml new file mode 100644 index 0000000..71b906a --- /dev/null +++ b/test/fixtures/jikan/season_matrix/18-2014-spring.yaml @@ -0,0 +1,3294 @@ +metadata: + captured_at: '2026-05-11T11:33:07Z' + label: 2014-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2014/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:07 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:82df16aa5758f8db8d7de6656b219fa234e38284 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 249 + per_page: 25 + data: + - mal_id: 19815 + url: https://myanimelist.net/anime/19815/No_Game_No_Life + images: + jpg: + image_url: https://myanimelist.net/images/anime/1074/111944.jpg + small_image_url: https://myanimelist.net/images/anime/1074/111944t.jpg + large_image_url: https://myanimelist.net/images/anime/1074/111944l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1074/111944.webp + small_image_url: https://myanimelist.net/images/anime/1074/111944t.webp + large_image_url: https://myanimelist.net/images/anime/1074/111944l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fV7nGIUuyzA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: No Game No Life + - type: Synonym + title: NGNL + - type: Japanese + title: ノーゲーム・ノーライフ + - type: English + title: No Game, No Life + - type: German + title: No Game, No Life + - type: Spanish + title: No Game, No Life + - type: French + title: No Game, No Life + title: No Game No Life + title_english: No Game, No Life + title_japanese: ノーゲーム・ノーライフ + title_synonyms: + - NGNL + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-09T00:00:00+00:00' + to: '2014-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2014 + to: + day: 25 + month: 6 + year: 2014 + string: Apr 9, 2014 to Jun 25, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.03 + scored_by: 1625483 + rank: 714 + popularity: 21 + members: 2558385 + favorites: 48483 + synopsis: |- + Sixteen sentient races inhabit Disboard, a world overseen by Tet, the One True God. The lowest of the sixteen—Imanity—consists of humans, a race with no affinity for magic. In a place where everything is decided through simple games, humankind seems to have no way out of their predicament—but the arrival of two outsiders poses a change. + + On Earth, stepsiblings Sora and Shiro are two inseparable shut-ins who dominate various online games under the username "Blank." While notorious on the internet, the pair believe that life is merely another dull game. However, after responding to a message from an unknown user, they are suddenly transported to Disboard. The mysterious sender turns out to be Tet, who informs them about the world's absolute rules. After Tet leaves, Sora and Shiro begin their search for more information and a place to stay, taking them to Elkia—Imanity's only remaining kingdom. + + There, the duo encounters Stephanie Dola, an emotional girl vying for the kingdom's sovereignty. In desperation, she attempts to regain her father's throne, but her foolhardiness makes her goal unachievable. Inspired by the girl's motivation and passion, Sora and Shiro decide to aid Stephanie in getting Elkia back on its feet, ultimately aiming to become the new rulers of the enigmatic realm. + + [Written by MAL Rewrite] + background: No Game No Life adapts the first three volumes of Yuu Kamiya's light novel series of the same title. + season: spring + year: 2014 + broadcast: + day: Wednesdays + time: '21:30' + timezone: Asia/Tokyo + string: Wednesdays at 21:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: [] + - mal_id: 20583 + url: https://myanimelist.net/anime/20583/Haikyuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/76014.jpg + small_image_url: https://myanimelist.net/images/anime/7/76014t.jpg + large_image_url: https://myanimelist.net/images/anime/7/76014l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/76014.webp + small_image_url: https://myanimelist.net/images/anime/7/76014t.webp + large_image_url: https://myanimelist.net/images/anime/7/76014l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9kLRkH9zC5k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! + - type: Synonym + title: High Kyuu!! + - type: Synonym + title: HQ!! + - type: Japanese + title: ハイキュー!! + - type: English + title: Haikyu!! + - type: German + title: Haikyu!! + - type: Spanish + title: Haikyu!! Los Ases del Vóley + - type: French + title: Haikyu!! + title: Haikyuu!! + title_english: Haikyu!! + title_japanese: ハイキュー!! + title_synonyms: + - High Kyuu!! + - HQ!! + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2014-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 21 + month: 9 + year: 2014 + string: Apr 6, 2014 to Sep 21, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.43 + scored_by: 1348231 + rank: 200 + popularity: 36 + members: 2173724 + favorites: 78438 + synopsis: |- + Ever since having witnessed the "Little Giant" and his astonishing skills on the volleyball court, Shouyou Hinata has been bewitched by the dynamic nature of the sport. Even though his attempt to make his debut as a volleyball regular during a middle school tournament went up in flames, he longs to prove that his less-than-impressive height ceases to be a hindrance in the face of his sheer will and perseverance. + + When Hinata enrolls in Karasuno High School, the Little Giant's alma mater, he believes that he is one step closer to his goal of becoming a professional volleyball player. Although the school only retains a shadow of its former glory, Hinata's conviction isn't shaken until he learns that Tobio Kageyama—the prodigy who humiliated Hinata's middle school volleyball team in a crushing defeat—is now his teammate. + + To fulfill his desire of leaving a mark on the realm of volleyball—so often regarded as the domain of the tall and the strong—Hinata must smooth out his differences with Kageyama. Only when Hinata learns what it takes to be a part of a team will he be able to join the race to the top in earnest. + + [Written by MAL Rewrite] + background: Haikyuu!! adapts the first 8 volumes of Haruichi Furudate's manga of the same name. + season: spring + year: 2014 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1732 + type: anime + name: Spacey Music Entertainment + url: https://myanimelist.net/anime/producer/1732/Spacey_Music_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 20899 + url: https://myanimelist.net/anime/20899/JoJo_no_Kimyou_na_Bouken_Part_3__Stardust_Crusaders + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/55267.jpg + small_image_url: https://myanimelist.net/images/anime/11/55267t.jpg + large_image_url: https://myanimelist.net/images/anime/11/55267l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/55267.webp + small_image_url: https://myanimelist.net/images/anime/11/55267t.webp + large_image_url: https://myanimelist.net/images/anime/11/55267l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ER_SrymjhHQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders' + - type: Synonym + title: 'Dai San Bu Kuujou Joutarou: Mirai e no Isan' + - type: Synonym + title: JoJo's Bizarre Adventure Part 3 + - type: Japanese + title: ジョジョの奇妙な冒険 スターダストクルセイダース + - type: English + title: 'JoJo''s Bizarre Adventure: Stardust Crusaders' + - type: German + title: 'JoJo''s Bizarre Adventure: Stardust Crusaders' + - type: Spanish + title: Jojo´s Bizarre Adventure Stardust Crusaders + - type: French + title: 'JoJo''s Bizarre Adventure: Stardust Crusaders' + title: 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders' + title_english: 'JoJo''s Bizarre Adventure: Stardust Crusaders' + title_japanese: ジョジョの奇妙な冒険 スターダストクルセイダース + title_synonyms: + - 'Dai San Bu Kuujou Joutarou: Mirai e no Isan' + - JoJo's Bizarre Adventure Part 3 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-04-05T00:00:00+00:00' + to: '2014-09-13T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2014 + to: + day: 13 + month: 9 + year: 2014 + string: Apr 5, 2014 to Sep 13, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.11 + scored_by: 969870 + rank: 581 + popularity: 110 + members: 1372045 + favorites: 24220 + synopsis: |- + Years after an ancient evil was salvaged from the depths of the sea, Joutarou Kuujou sits peacefully within a Japanese jail cell. He's committed no crime yet demands he not be released, believing he's been possessed by an evil spirit capable of harming those around him. Concerned for her son, Holy Kuujou asks her father, Joseph Joestar, to convince Joutarou to leave the prison. Joseph informs his grandson that the "evil spirit" is in fact something called a "Stand," the physical manifestation of one's fighting spirit which can adopt a variety of deadly forms. After a fiery brawl with Joseph's friend Muhammad Avdol, Joutarou is forced out of his cell and begins learning how to control the power of his Stand. + + However, when a Stand awakens within Holy and threatens to consume her in 50 days, Joutarou, his grandfather, and their allies must seek out and destroy the immortal vampire responsible for her condition. They must travel halfway across the world to Cairo, Egypt and along the way, do battle with ferocious Stand users set on thwarting them. If Joutarou and his allies fail in their mission, humanity is destined for a grim fate. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken: Stardust Crusaders, as well as its second season, is a full adaptation of the + third part of the JoJo no Kimyou na Bouken manga series. The first season covers the first 69 chapters of the manga. + As with the prior season, the opening theme animations were produced by the studio Kamikaze Douga (神風動画).' + season: spring + year: 2014 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 20785 + url: https://myanimelist.net/anime/20785/Mahouka_Koukou_no_Rettousei + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/61039.jpg + small_image_url: https://myanimelist.net/images/anime/11/61039t.jpg + large_image_url: https://myanimelist.net/images/anime/11/61039l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/61039.webp + small_image_url: https://myanimelist.net/images/anime/11/61039t.webp + large_image_url: https://myanimelist.net/images/anime/11/61039l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v5AOTuxt2XY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahouka Koukou no Rettousei + - type: Japanese + title: 魔法科高校の劣等生 + - type: English + title: The Irregular at Magic High School + - type: German + title: The Irregular at Magic High School + - type: French + title: The Irregular at Magic High School + title: Mahouka Koukou no Rettousei + title_english: The Irregular at Magic High School + title_japanese: 魔法科高校の劣等生 + title_synonyms: [] + type: TV + source: Light novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2014-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 28 + month: 9 + year: 2014 + string: Apr 6, 2014 to Sep 28, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 625383 + rank: 2933 + popularity: 148 + members: 1149658 + favorites: 11116 + synopsis: |- + In the dawn of the 21st century, magic, long thought to be folklore and fairy tales, has become a systematized technology and is taught as a technical skill. In First High School, the institution for magicians, students are segregated into two groups based on their entrance exam scores: "Blooms," those who receive high scores, are assigned to the First Course, while "Weeds" are reserve students assigned to the Second Course. + + Mahouka Koukou no Rettousei follows the siblings, Tatsuya and Miyuki Shiba, who are enrolled in First High School. Upon taking the exam, the prodigious Miyuki is placed in the First Course, while Tatsuya is relegated to the Second Course. Though his practical test scores and status as a "Weed" show him to be magically inept, he possesses extraordinary technical knowledge, physical combat capabilities, and unique magic techniques—making Tatsuya the irregular at a magical high school. + + [Written by MAL Rewrite] + background: 'The anime closely follows the events of the first seven light novels (excluding the fifth novel: Summer + Holiday Arc + 1). There are three video game adaptations of the series.' + season: spring + year: 2014 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 22043 + url: https://myanimelist.net/anime/22043/Fairy_Tail_2014 + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/60551.jpg + small_image_url: https://myanimelist.net/images/anime/3/60551t.jpg + large_image_url: https://myanimelist.net/images/anime/3/60551l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/60551.webp + small_image_url: https://myanimelist.net/images/anime/3/60551t.webp + large_image_url: https://myanimelist.net/images/anime/3/60551l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NFATJgQM3pk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fairy Tail (2014) + - type: Synonym + title: Fairy Tail Season 2 + - type: Japanese + title: FAIRY TAIL(フェアリーテイル) + - type: English + title: Fairy Tail Series 2 + - type: German + title: Fairy Tail Zweite Staffel + - type: Spanish + title: Fairy Tail Temporada 2 + - type: French + title: Fairy Tail Deuxième Saison + title: Fairy Tail (2014) + title_english: Fairy Tail Series 2 + title_japanese: FAIRY TAIL(フェアリーテイル) + title_synonyms: + - Fairy Tail Season 2 + type: TV + source: Manga + episodes: 102 + status: Finished Airing + airing: false + aired: + from: '2014-04-05T00:00:00+00:00' + to: '2016-03-26T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2014 + to: + day: 26 + month: 3 + year: 2016 + string: Apr 5, 2014 to Mar 26, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 598538 + rank: 1584 + popularity: 169 + members: 1076911 + favorites: 12751 + synopsis: |- + The Grand Magic Games reaches its climax following Natsu Dragneel and Gajeel Redfox's stunning victory over Sting Eucliffe and Rogue Cheney of the Sabertooth guild. This success pushes the Fairy Tail guild closer to being crowned the overall champions, but obtaining victory is not the only challenge they face. A mystery still surrounds a hooded stranger and the ominous Eclipse Gate, leaving more questions than answers. + + More crazy adventures are on the horizon for Fairy Tail as their destructive antics and joyful rowdiness continue unabated. Their greatest trial is quickly approaching, but united as a family, the guild will always be ready to face any threat that comes their way. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Saturdays + time: '10:30' + timezone: Asia/Tokyo + string: Saturdays at 10:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 20787 + url: https://myanimelist.net/anime/20787/Black_Bullet + images: + jpg: + image_url: https://myanimelist.net/images/anime/1292/94693.jpg + small_image_url: https://myanimelist.net/images/anime/1292/94693t.jpg + large_image_url: https://myanimelist.net/images/anime/1292/94693l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1292/94693.webp + small_image_url: https://myanimelist.net/images/anime/1292/94693t.webp + large_image_url: https://myanimelist.net/images/anime/1292/94693l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/R-VkhMyUT4w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Black Bullet + - type: Japanese + title: ブラック・ブレット BLACK BULLET [黒の銃弾] + - type: English + title: Black Bullet + title: Black Bullet + title_english: Black Bullet + title_japanese: ブラック・ブレット BLACK BULLET [黒の銃弾] + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-04-08T00:00:00+00:00' + to: '2014-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2014 + to: + day: 1 + month: 7 + year: 2014 + string: Apr 8, 2014 to Jul 1, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.07 + scored_by: 508277 + rank: 4740 + popularity: 203 + members: 968504 + favorites: 3854 + synopsis: "In the year 2021, a parasitic virus known as \"Gastrea\" infects humans and turns them into monsters. What\ + \ is left of mankind now lives within the Monolith walls, walls that are made of Varanium, the only material that\ + \ can hurt Gastrea.\n\nTo counter the threat that the Gastrea pose, \"Cursed Children\"—female children whose bodies\ + \ contain trace amounts of the virus which grant them superhuman abilities—officially called Initiators by the Tendo\ + \ Civil Security, are given partners called Promoters, people who work to guide and protect the young Initiators.\ + \ These teams of two are sent out on missions to fight the monsters created by the Gastrea virus and keep them at\ + \ bay. \n\nBlack Bullet revolves around the team of Enju Aihara, an Initiator, and Satomi Rentaro, a Promoter, as\ + \ they go on missions to fight the growing threat of Gastrea in their hometown of Tokyo.\n\n[Written by MAL Rewrite]" + background: Black Bullet was simulcast outside of Japan by Crunchyroll. The series adapts the first 4 novels of Shiden + Kanzaki's light novel series of the same title. + season: spring + year: 2014 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 31 + type: anime + name: Geneon Universal Entertainment + url: https://myanimelist.net/anime/producer/31/Geneon_Universal_Entertainment + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 19163 + url: https://myanimelist.net/anime/19163/Date_A_Live_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1690/141818.jpg + small_image_url: https://myanimelist.net/images/anime/1690/141818t.jpg + large_image_url: https://myanimelist.net/images/anime/1690/141818l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1690/141818.webp + small_image_url: https://myanimelist.net/images/anime/1690/141818t.webp + large_image_url: https://myanimelist.net/images/anime/1690/141818l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wKUwDWFX4WA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Date A Live II + - type: Synonym + title: Date A Live 2 + - type: Japanese + title: デート・ア・ライブⅡ + - type: English + title: Date A Live II + title: Date A Live II + title_english: Date A Live II + title_japanese: デート・ア・ライブⅡ + title_synonyms: + - Date A Live 2 + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-04-12T00:00:00+00:00' + to: '2014-06-14T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2014 + to: + day: 14 + month: 6 + year: 2014 + string: Apr 12, 2014 to Jun 14, 2014 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 7.18 + scored_by: 421026 + rank: 4063 + popularity: 352 + members: 686784 + favorites: 2306 + synopsis: "Spirits are otherworldly entities with immense power, capable of creating spatial quakes whenever they appear.\ + \ One way of dealing with them is through brute force and killing them... or making them fall in love and sealing\ + \ their powers. \n\nHaving sealed three Spirits, Shidou Itsuka continues his mission with Ratatoskr in locating more\ + \ spirits and dating them, to ensure the world's safety from further destruction. However, this time around, their\ + \ problems will not be limited to Spirits as a more imposing threat seems to have noticed their activities.\n\n[Written\ + \ by MAL Rewrite]" + background: Date A Live II adapts novels 5-7 of Koushi Tachibana's light novel series of the same name. Like with the + first season, the Japanese home video releases have a Director's Cut with many new scenes. However, the English dub + by FUNimation Entertainment does not feature these new scenes as they didn't have them in their home video releases. + season: spring + year: 2014 + broadcast: + day: Saturdays + time: 01:35 + timezone: Asia/Tokyo + string: Saturdays at 01:35 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 21603 + url: https://myanimelist.net/anime/21603/Mekakucity_Actors + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/61519.jpg + small_image_url: https://myanimelist.net/images/anime/11/61519t.jpg + large_image_url: https://myanimelist.net/images/anime/11/61519l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/61519.webp + small_image_url: https://myanimelist.net/images/anime/11/61519t.webp + large_image_url: https://myanimelist.net/images/anime/11/61519l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/J4KkvN2qipg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mekakucity Actors + - type: Synonym + title: Mekaku City Actors + - type: Synonym + title: Kagerou Project + - type: Japanese + title: メカクシティアクターズ + - type: English + title: Mekakucity Actors + title: Mekakucity Actors + title_english: Mekakucity Actors + title_japanese: メカクシティアクターズ + title_synonyms: + - Mekaku City Actors + - Kagerou Project + type: TV + source: Mixed media + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-13T00:00:00+00:00' + to: '2014-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2014 + to: + day: 29 + month: 6 + year: 2014 + string: Apr 13, 2014 to Jun 29, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 210511 + rank: 5030 + popularity: 578 + members: 457988 + favorites: 3818 + synopsis: |- + On the hot summer day of August 14, Shintarou Kisaragi is forced to leave his room for the first time in two years. While arguing with the cyber girl Ene who lives in his computer, Shintarou Kisaragi accidentally spills soda all over his keyboard. Though they try to find a replacement online, most stores are closed due to the Obon festival, leaving them with no other choice but to visit the local department store. Venturing outside makes Shintarou extremely anxious, but the thought of living without his computer is even worse. It's just his luck that on the day he finally goes out, he's caught in a terrifying hostage situation. + + Luckily, a group of teenagers with mysterious eye powers, who call themselves the "Mekakushi Dan," assist Shintarou in resolving the situation. As a result, he is forced to join their group, along with Ene. Their abilities seem to be like pieces of a puzzle, connecting one another, and as each member's past is unveiled, the secret that ties them together is slowly brought to light. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1117 + type: anime + name: 1st PLACE + url: https://myanimelist.net/anime/producer/1117/1st_PLACE + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 22135 + url: https://myanimelist.net/anime/22135/Ping_Pong_the_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/1586/146565.jpg + small_image_url: https://myanimelist.net/images/anime/1586/146565t.jpg + large_image_url: https://myanimelist.net/images/anime/1586/146565l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1586/146565.webp + small_image_url: https://myanimelist.net/images/anime/1586/146565t.webp + large_image_url: https://myanimelist.net/images/anime/1586/146565l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ItlDaDfLBn8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ping Pong the Animation + - type: Synonym + title: PPTA + - type: Japanese + title: ピンポン THE ANIMATION + - type: English + title: Ping Pong the Animation + title: Ping Pong the Animation + title_english: Ping Pong the Animation + title_japanese: ピンポン THE ANIMATION + title_synonyms: + - PPTA + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2014-04-11T00:00:00+00:00' + to: '2014-06-20T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2014 + to: + day: 20 + month: 6 + year: 2014 + string: Apr 11, 2014 to Jun 20, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.63 + scored_by: 204651 + rank: 96 + popularity: 609 + members: 440346 + favorites: 17506 + synopsis: |- + Despite being polar opposites, Makoto "Smile" Tsukimoto and Yutaka "Peco" Hoshino have been best friends since childhood. Although the overly confident Peco strives to be the best ping-pong player in the world, he often skips practice, earning the ire of his fellow teammates on the Katase High School ping-pong team. Meanwhile, Smile—in spite of his innate talent for the sport—cannot help but hold back his full strength when playing against others. Through their mutual love for ping-pong, the two have developed a bond that is seemingly unbreakable. + + When Peco hears that an ex-national team player from China is coming to Japan, he drags Smile over to rival Tsujido High School to observe them. The subsequent trip leads to a clash between Peco and Kong Wenge, who overwhelmingly defeats the former in one game. Stunned by such a comprehensive loss, Peco finds himself questioning why he plays to begin with. Seeing his potential as a player, Katase's coach begins to train Smile to overcome his hesitation, but he is reluctant to play if it is not for enjoyment. + + As the two struggle to find meaning in the sport, a plethora of stronger players—each with their own internal strifes—await them at the inter-high tournament, where only the very best can persevere. But when these young athletes let their unbridled ambition go unchecked, the hardships they face paint a somber reality as they pursue glory. + + [Written by MAL Rewrite] + background: Ping Pong The Animation won the Animation of the Year award in the Television category at the Tokyo Anime + Award Festival in 2015. The series was released on Blu-ray and DVD by Funimation Entertainment on June 23, 2015. + season: spring + year: 2014 + broadcast: + day: Fridays + time: 00:50 + timezone: Asia/Tokyo + string: Fridays at 00:50 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 21647 + url: https://myanimelist.net/anime/21647/Tamako_Love_Story + images: + jpg: + image_url: https://myanimelist.net/images/anime/1417/91333.jpg + small_image_url: https://myanimelist.net/images/anime/1417/91333t.jpg + large_image_url: https://myanimelist.net/images/anime/1417/91333l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1417/91333.webp + small_image_url: https://myanimelist.net/images/anime/1417/91333t.webp + large_image_url: https://myanimelist.net/images/anime/1417/91333l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/B8JlGOXjZ28?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tamako Love Story + - type: Synonym + title: Tamako Market Movie + - type: Japanese + title: たまこラブストーリー + title: Tamako Love Story + title_english: null + title_japanese: たまこラブストーリー + title_synonyms: + - Tamako Market Movie + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-04-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 4 + year: 2014 + to: + day: null + month: null + year: null + string: Apr 26, 2014 + duration: 1 hr 23 min + rating: PG-13 - Teens 13 or older + score: 7.91 + scored_by: 194816 + rank: 921 + popularity: 628 + members: 428868 + favorites: 2393 + synopsis: |- + As the seasons pass by, the end of Mochizou Ooji's third and final school year quickly approaches. He aims to study at a university in Tokyo, but at the cost of leaving behind his loved ones—including his beloved childhood crush, Tamako Kitashirakawa. Having no such plans for the future, Tamako will merely remain in town to work at her family's humble mochi shop. + + As the time for Mochizou's departure draws closer, the reserved young man must gather up the courage to confess his feelings to Tamako before it is too late—lest his love go unnoticed forever. + + [Written by MAL Rewrite] + background: Winner of the 2014 Japan Media Arts Festival Encouragement Prize/New Face Award. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 21405 + url: https://myanimelist.net/anime/21405/Bokura_wa_Minna_Kawai-sou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1257/145479.jpg + small_image_url: https://myanimelist.net/images/anime/1257/145479t.jpg + large_image_url: https://myanimelist.net/images/anime/1257/145479l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1257/145479.webp + small_image_url: https://myanimelist.net/images/anime/1257/145479t.webp + large_image_url: https://myanimelist.net/images/anime/1257/145479l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Toe2YMNqpmE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bokura wa Minna Kawai-sou + - type: Japanese + title: 僕らはみんな河合荘 + - type: English + title: The Kawai Complex Guide to Manors and Hostel Behavior + title: Bokura wa Minna Kawai-sou + title_english: The Kawai Complex Guide to Manors and Hostel Behavior + title_japanese: 僕らはみんな河合荘 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-04T00:00:00+00:00' + to: '2014-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2014 + to: + day: 20 + month: 6 + year: 2014 + string: Apr 4, 2014 to Jun 20, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.65 + scored_by: 201517 + rank: 1618 + popularity: 671 + members: 405800 + favorites: 2316 + synopsis: |- + Kazunari Usa is a high school freshman who will start living alone due to his parents now working in a different area. Excited for his new independent life, he hopes to go about his teenage days without the worry of dealing with any strange people, but as he soon discovers, his new boarding house Kawai Complex is far from ordinary. + + The various tenants at Kawai Complex are all quite eccentric characters. Shirosaki, Kazunari's roommate, is a pervert and masochist; Mayumi Nishikino, a borderline alcoholic office lady, hates couples because of her unfortunate luck with men; and Sayaka Watanabe, a seemingly innocent college student, enjoys leading men on. Shocked with the lack of decent individuals at his new residence, Kazunari is about to leave when he runs into shy senior student Ritsu Kawai and finds himself slowly falling in love with her. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Fridays + time: 01:16 + timezone: Asia/Tokyo + string: Fridays at 01:16 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 20853 + url: https://myanimelist.net/anime/20853/Hitsugi_no_Chaika + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/61781.jpg + small_image_url: https://myanimelist.net/images/anime/4/61781t.jpg + large_image_url: https://myanimelist.net/images/anime/4/61781l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/61781.webp + small_image_url: https://myanimelist.net/images/anime/4/61781t.webp + large_image_url: https://myanimelist.net/images/anime/4/61781l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jO7eXXIt8fA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hitsugi no Chaika + - type: Synonym + title: Hitsugi Hime no Chaika + - type: Japanese + title: 棺姫のチャイカ + - type: English + title: 'Chaika: The Coffin Princess' + - type: German + title: 'Chaika: Die Sargprinzessin' + title: Hitsugi no Chaika + title_english: 'Chaika: The Coffin Princess' + title_japanese: 棺姫のチャイカ + title_synonyms: + - Hitsugi Hime no Chaika + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-10T00:00:00+00:00' + to: '2014-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2014 + to: + day: 26 + month: 6 + year: 2014 + string: Apr 10, 2014 to Jun 26, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.21 + scored_by: 182056 + rank: 3880 + popularity: 672 + members: 404910 + favorites: 903 + synopsis: |- + For 500 years, the Taboo Emperor, Arthur Gaz, ruled the Gaz Empire with an iron fist and conducted inhumane experiments on his own people. But his reign came to an end five years ago, when mighty warriors—later known as the Eight Heroes—defeated him in a battle for the capital. His death ended the 300-yearlong war between the Gaz Empire and the alliance of six nations. + + In the present day, Tooru Acura is a former saboteur from the war who has difficulty settling into the peaceful world, as he cannot find a job where he can put his fighting skills to use. An opportunity appears before him, however, when he meets a white-haired Wizard named Chaika Trabant. With a coffin on her back, she is searching for the scattered remains of her father in order to give him a proper burial, and she hires Tooru and his adoptive sister Akari to help her. However, the six nations alliance, which have now formed the Council of Six Nations, dispatches Albéric Gillette and his men from the Kleeman Agency to pursue and apprehend the late Emperor Gaz's daughter—Chaika. + + With the shocking revelation of Chaika's identity, the Acura siblings must choose between helping her gather the remains of the tyrannical emperor and upholding the peace the continent strives to maintain. + + [Written by MAL Rewrite] + background: Hitsugi no Chaika adapts the first 6 novels of Ichirou Sakaki's light novel series of the same name, while + utilizing original content for the 8th and 9th episode. + season: spring + year: 2014 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 21431 + url: https://myanimelist.net/anime/21431/Gokukoku_no_Brynhildr + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/61433.jpg + small_image_url: https://myanimelist.net/images/anime/5/61433t.jpg + large_image_url: https://myanimelist.net/images/anime/5/61433l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/61433.webp + small_image_url: https://myanimelist.net/images/anime/5/61433t.webp + large_image_url: https://myanimelist.net/images/anime/5/61433l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NpU48on5QKw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gokukoku no Brynhildr + - type: Synonym + title: Gokukoku no Brynhildr + - type: Japanese + title: 極黒のブリュンヒルデ + - type: English + title: Brynhildr in the Darkness + - type: German + title: Brynhildr in the Darkness + - type: Spanish + title: 'Gokukoku no Buryunhirude: Brynhildr in the Darkness' + - type: French + title: Brynhildr in the Darkness + title: Gokukoku no Brynhildr + title_english: Brynhildr in the Darkness + title_japanese: 極黒のブリュンヒルデ + title_synonyms: + - Gokukoku no Brynhildr + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2014-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 29 + month: 6 + year: 2014 + string: Apr 6, 2014 to Jun 29, 2014 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.85 + scored_by: 174114 + rank: 5965 + popularity: 766 + members: 357168 + favorites: 1203 + synopsis: |- + Venturing into the wilderness, the skeptical Ryouta Murakami and the ambitious Kuroneko were on a quest to prove the existence of extraterrestrial life when a tragic accident occurred, reaping Kuroneko of her life and leaving Ryouta in a critically injured state. + + Ten years have passed since the disaster, and Ryouta is now living a normal life in high school. He vows to prove that aliens are real in honor of his late friend. A transfer student named Neko Kuroha unexpectedly arrives one day, bearing a striking resemblance to the late Kuroneko—even sharing a similar name. Most mysteriously, she seems to possess supernatural powers. + + As Ryouta takes more interest in Neko, he is drawn into a deadly world where dangerous scientists hunt magic-wielding witches that have escaped from their secret research laboratory. Neko is one of these escapees, but there are many others who are in similar situations, and it's up to Ryouta to protect them from their would-be captors. + + [Written by MAL Rewrite] + background: Gokukoku no Brynhildr adapts the first 10 volumes of Lynn Okamoto's manga series of the same name. + season: spring + year: 2014 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 22101 + url: https://myanimelist.net/anime/22101/Soredemo_Sekai_wa_Utsukushii + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/59259.jpg + small_image_url: https://myanimelist.net/images/anime/4/59259t.jpg + large_image_url: https://myanimelist.net/images/anime/4/59259l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/59259.webp + small_image_url: https://myanimelist.net/images/anime/4/59259t.webp + large_image_url: https://myanimelist.net/images/anime/4/59259l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z6i8EJO3uKk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Soredemo Sekai wa Utsukushii + - type: Synonym + title: Still world is Beautiful + - type: Japanese + title: それでも世界は美しい + - type: English + title: The World is Still Beautiful + - type: German + title: The World is Still Beautiful + - type: French + title: The World is Still Beautiful + title: Soredemo Sekai wa Utsukushii + title_english: The World is Still Beautiful + title_japanese: それでも世界は美しい + title_synonyms: + - Still world is Beautiful + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2014-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 29 + month: 6 + year: 2014 + string: Apr 6, 2014 to Jun 29, 2014 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 152625 + rank: 1897 + popularity: 815 + members: 341104 + favorites: 2051 + synopsis: |- + In the Sun Kingdom, sunshine is part of its citizens' everyday lives, and rain is something that they have never even heard of. However, in a faraway land called the Rain Dukedom, the weather is reversed, and everybody has the power to create rain with their voices. + + Livius Orvinus Ifrikia has conquered the entire world and expanded the Sun Kingdom's influence in the three short years since he was crowned king. Upon learning about the powers to create rain, Livius decides to marry Nike Remercier, one of the princesses of the Rain Dukedom. However, those outside the Sun Kingdom have spread a rumor that Livius is a cruel, ruthless, and tyrannical ruler, and as word reaches the princess, she begins to prepare herself for the worst. But when she finally meets her fiancé, Nike discovers that he is an entirely different person from what she originally expected. + + [Written by MAL Rewrite] + background: Soredemo Sekai wa Utsukushii adapts the first 19 chapters from the first 4 volumes of Dai Shiina's manga + series of the same name. The anime uses an anime exclusive beginning and ending. + season: spring + year: 2014 + broadcast: + day: Sundays + time: 02:20 + timezone: Asia/Tokyo + string: Sundays at 02:20 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 21327 + url: https://myanimelist.net/anime/21327/Isshuukan_Friends + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/61891.jpg + small_image_url: https://myanimelist.net/images/anime/6/61891t.jpg + large_image_url: https://myanimelist.net/images/anime/6/61891l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/61891.webp + small_image_url: https://myanimelist.net/images/anime/6/61891t.webp + large_image_url: https://myanimelist.net/images/anime/6/61891l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Vrz_-80bvW4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isshuukan Friends. + - type: Japanese + title: 一週間フレンズ。 + - type: English + title: One Week Friends + - type: German + title: One Week Friends + - type: French + title: One Week Friends + title: Isshuukan Friends. + title_english: One Week Friends + title_japanese: 一週間フレンズ。 + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-07T00:00:00+00:00' + to: '2014-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2014 + to: + day: 23 + month: 6 + year: 2014 + string: Apr 7, 2014 to Jun 23, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 153820 + rank: 2157 + popularity: 842 + members: 334228 + favorites: 1263 + synopsis: |- + Sixteen-year-old Yuuki Hase finally finds the courage to speak to his crush and ask her if she wants to become friends. The object of his affection, Kaori Fujimiya, is a quiet and reserved girl who cuts herself off from everyone and does not spare him the same blunt rejection she gives everybody else. + + Some time after, Yuuki finds her eating lunch on the roof where she secludes herself during break. He decides to start meeting with Kaori every day in the hopes of beginning to understand her better. The more time they spend together, the more she begins to open up to him. However, nearing the end of the week, she starts to push him away once more. It is then revealed to him the reason for Kaori's cold front: at the end of the week, her memories of those close to her, excluding her family, are forgotten, as they are reset every Monday. The result of an accident in middle school, the once popular and kind Kaori is now unable to make friends in fear of hurting the people dear to her. + + Determined to become more than just one week friends, Yuuki asks her the exact same question each Monday: "Would you like to be friends?" Because he knows that deep down, Kaori wishes for that more than anything. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 21939 + url: https://myanimelist.net/anime/21939/Mushishi_Zoku_Shou + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/58533.jpg + small_image_url: https://myanimelist.net/images/anime/13/58533t.jpg + large_image_url: https://myanimelist.net/images/anime/13/58533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/58533.webp + small_image_url: https://myanimelist.net/images/anime/13/58533t.webp + large_image_url: https://myanimelist.net/images/anime/13/58533l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CXhPRWY1L0E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mushishi Zoku Shou + - type: Synonym + title: Mushi-shi Zoku Shou + - type: Synonym + title: 'Mushishi: The Next Chapter' + - type: Japanese + title: 蟲師 続章 + - type: English + title: 'Mushi-shi: Next Passage Part 1' + - type: German + title: Mushi-Shi -The Next Passage- + - type: Spanish + title: Mushi-Shi -The Next Passage- + - type: French + title: Mushishi Zoku Shô + title: Mushishi Zoku Shou + title_english: 'Mushi-shi: Next Passage Part 1' + title_japanese: 蟲師 続章 + title_synonyms: + - Mushi-shi Zoku Shou + - 'Mushishi: The Next Chapter' + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-04-05T00:00:00+00:00' + to: '2014-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2014 + to: + day: 21 + month: 6 + year: 2014 + string: Apr 5, 2014 to Jun 21, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.69 + scored_by: 128749 + rank: 72 + popularity: 860 + members: 327441 + favorites: 1652 + synopsis: |- + Perceived as strange and feared by man, over time the misshapen ones came to be known as Mushi. Although they harbor no ill intentions towards humans, many suffer from the side effects of their existence and strange nature; exploiting the Mushi without understanding them, even unintentionally, can lead to disaster and strife for any involved. Mushishi Zoku Shou continues the story of Mushishi Ginko on his journey to help the visible world to coexist with the Mushi. + + During his travels, Ginko discovers various gifted individuals—those cursed by circumstance and those maintaining a fragile symbiosis with the Mushi—inevitably confronting the question of whether humanity, talented and tortured alike, can manage the responsibility of the unseen. Moreover, as a Mushishi, Ginko must learn more about these strange beings and decide if he has the right to interfere with the complex relationships between Mushi and mankind. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 21863 + url: https://myanimelist.net/anime/21863/Mangaka-san_to_Assistant-san_to_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/62219.jpg + small_image_url: https://myanimelist.net/images/anime/11/62219t.jpg + large_image_url: https://myanimelist.net/images/anime/11/62219l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/62219.webp + small_image_url: https://myanimelist.net/images/anime/11/62219t.webp + large_image_url: https://myanimelist.net/images/anime/11/62219l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/euti9PHLOKc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mangaka-san to Assistant-san to The Animation + - type: Synonym + title: Mangaka-san to Assistant-san to + - type: Synonym + title: ManAshi + - type: Japanese + title: マンガ家さんとアシスタントさんと THE ANIMATION + - type: English + title: The Comic Artist and His Assistants + - type: German + title: The Comic Artist and His Assistants + - type: Spanish + title: Mangada-san To Assistant-san To The Animation + - type: French + title: The Comic Artist and His Assistants + title: Mangaka-san to Assistant-san to The Animation + title_english: The Comic Artist and His Assistants + title_japanese: マンガ家さんとアシスタントさんと THE ANIMATION + title_synonyms: + - Mangaka-san to Assistant-san to + - ManAshi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-08T00:00:00+00:00' + to: '2014-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2014 + to: + day: 24 + month: 6 + year: 2014 + string: Apr 8, 2014 to Jun 24, 2014 + duration: 13 min per ep + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 136002 + rank: 4657 + popularity: 960 + members: 292446 + favorites: 491 + synopsis: "Yuuki Aito is a perverted manga artist who appreciates panties, wishing to draw as many as he can. Being\ + \ surrounded by numerous female assistants, he is constantly asking to use them as references for the manga he draws.\n\ + \ \nAlthough Aito has an extremely degenerate mind, he can also be a very kind, generous, and helpful person. The\ + \ duality of his behavior confuses his assistants—do they love the considerate side of him that he rarely displays,\ + \ or do they hate him for the perverted thoughts he has most of the time?\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2014 + broadcast: + day: Tuesdays + time: 01:05 + timezone: Asia/Tokyo + string: Tuesdays at 01:05 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 19429 + url: https://myanimelist.net/anime/19429/Akuma_no_Riddle + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/60479.jpg + small_image_url: https://myanimelist.net/images/anime/6/60479t.jpg + large_image_url: https://myanimelist.net/images/anime/6/60479l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/60479.webp + small_image_url: https://myanimelist.net/images/anime/6/60479t.webp + large_image_url: https://myanimelist.net/images/anime/6/60479l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pKs5R0tlxW8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akuma no Riddle + - type: Synonym + title: Akuma no Riddle + - type: Japanese + title: 悪魔のリドル + - type: English + title: Riddle Story of Devil + title: Akuma no Riddle + title_english: Riddle Story of Devil + title_japanese: 悪魔のリドル + title_synonyms: + - Akuma no Riddle + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-04T00:00:00+00:00' + to: '2014-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2014 + to: + day: 20 + month: 6 + year: 2014 + string: Apr 4, 2014 to Jun 20, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.6 + scored_by: 133054 + rank: 7520 + popularity: 997 + members: 281777 + favorites: 1077 + synopsis: |- + Tokaku Azuma has just transferred to the elite Myoujou Academy, a private girls' boarding school. But there is a catch: she, along with 11 of her fellow students in Class Black, is an assassin taking part in the challenge to kill their sweet-natured classmate, Haru Ichinose. Whoever succeeds will be granted their deepest desire, no matter the difficulty or cost. However, each assassin only gets one chance; if they fail to kill her, they will be expelled. + + Despite the extraordinary reward, Tokaku decides to take a different course of action. Though Haru is her target, the young assassin soon finds herself drawn to the very girl she is supposed to kill. With the entire class out for Haru, Tokaku refuses to let her friend die, vowing to protect her from a growing bloodlust. + + [Written by MAL Rewrite] + background: Akuma no Riddle is based on Yun Kouga and Sunao Minakata's manga series of the same title. Despite premiering + while the manga was in the middle of publication, the anime adapts the full story of the manga, with a few additions + and alterations. + season: spring + year: 2014 + broadcast: + day: Fridays + time: 02:19 + timezone: Asia/Tokyo + string: Fridays at 02:19 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 19111 + url: https://myanimelist.net/anime/19111/Love_Live_School_Idol_Project_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/59101.jpg + small_image_url: https://myanimelist.net/images/anime/10/59101t.jpg + large_image_url: https://myanimelist.net/images/anime/10/59101l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/59101.webp + small_image_url: https://myanimelist.net/images/anime/10/59101t.webp + large_image_url: https://myanimelist.net/images/anime/10/59101l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0iV7LV8HCh4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Love Live! School Idol Project 2nd Season + - type: Japanese + title: ラブライブ! School idol project 2期 + - type: English + title: Love Live! School Idol Project 2 + - type: German + title: Love Live! School Idol Project Zweite Staffel + - type: Spanish + title: Love Live! School Idol Project Temporada 2 + - type: French + title: Love Live! School Idol Project Deuxième Saison + title: Love Live! School Idol Project 2nd Season + title_english: Love Live! School Idol Project 2 + title_japanese: ラブライブ! School idol project 2期 + title_synonyms: [] + type: TV + source: Other + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2014-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 29 + month: 6 + year: 2014 + string: Apr 6, 2014 to Jun 29, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.76 + scored_by: 157446 + rank: 1286 + popularity: 1032 + members: 273354 + favorites: 2784 + synopsis: "Otonokizaka High School has been saved! Despite having to withdraw from the Love Live!, the efforts of μ's\ + \ were able to garner enough interest in their school to prevent it from being shut down. What more, following the\ + \ conclusion of the first, a second Love Live! is announced, this time on an even larger stage than before. Given\ + \ a chance for redemption, the nine girls come together once more to sing their hearts out and claim victory.\n \n\ + However, with the end of the school year approaching, the graduation of the third years draws near. As they attempt\ + \ to reach the top of the Love Live!, they must also consider their future and choose what path the group will take.\ + \ Though the question of whether to continue without the third years or disband weighs heavily on the minds of its\ + \ members, μ's must quickly come to an answer with graduation right around the corner.\n \nLove Live! School Idol\ + \ Project 2nd Season continues the story of the girls as they laugh, cry, sing, and dance in their journey to determine\ + \ the future of their group and conquer the Love Live! in their last chance to win with all nine girls together.\n\ + \n[Written by MAL Rewrite]" + background: The series also has released a mobile rhythm game titled Love Live! School Idol Festival for iOS and Android, + released in 2013 for Japan and in 2014 for English users. + season: spring + year: 2014 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + licensors: + - mal_id: 372 + type: anime + name: NIS America + url: https://myanimelist.net/anime/producer/372/NIS_America + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 21273 + url: https://myanimelist.net/anime/21273/Gochuumon_wa_Usagi_desu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/79600.jpg + small_image_url: https://myanimelist.net/images/anime/6/79600t.jpg + large_image_url: https://myanimelist.net/images/anime/6/79600l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/79600.webp + small_image_url: https://myanimelist.net/images/anime/6/79600t.webp + large_image_url: https://myanimelist.net/images/anime/6/79600l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aWyPbj1CItQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gochuumon wa Usagi desu ka? + - type: Synonym + title: GochiUsa + - type: Japanese + title: ご注文はうさぎですか? + - type: English + title: Is the Order a Rabbit? + - type: German + title: Is the Order a Rabbit? + - type: French + title: Is the Order a Rabbit? + title: Gochuumon wa Usagi desu ka? + title_english: Is the Order a Rabbit? + title_japanese: ご注文はうさぎですか? + title_synonyms: + - GochiUsa + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-10T00:00:00+00:00' + to: '2014-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2014 + to: + day: 26 + month: 6 + year: 2014 + string: Apr 10, 2014 to Jun 26, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 96933 + rank: 2241 + popularity: 1139 + members: 248536 + favorites: 2276 + synopsis: |- + Kokoa Hoto is a positive and energetic girl who becomes friends with anyone in just three seconds. After moving in with the Kafuu family in order to attend high school away from home, she immediately befriends the shy and precocious granddaughter of Rabbit House cafe's founder, Chino Kafuu, who is often seen with the talking rabbit, Tippy, on her head. + + After beginning to work as a waitress in return for room and board, Kokoa also befriends another part-timer, Rize Tedeza, who has unusual behavior and significant physical capabilities due to her military upbringing; Chiya Ujimatsu, a waitress from a rival cafe who does everything at her own pace; and Sharo Kirima, another waitress at a different cafe who has the air of a noblewoman despite being impoverished. + + With fluffy silliness and caffeinated fun, Gochuumon wa Usagi Desu ka? is a heartwarming comedy about five young waitresses and their amusing adventures in the town they call home. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2014 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 21561 + url: https://myanimelist.net/anime/21561/Ryuugajou_Nanana_no_Maizoukin + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/60475.jpg + small_image_url: https://myanimelist.net/images/anime/3/60475t.jpg + large_image_url: https://myanimelist.net/images/anime/3/60475l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/60475.webp + small_image_url: https://myanimelist.net/images/anime/3/60475t.webp + large_image_url: https://myanimelist.net/images/anime/3/60475l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/C-J-iw6Fl7Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ryuugajou Nanana no Maizoukin + - type: Synonym + title: Ryuugajou Nanana no Maizoukin + - type: Japanese + title: 龍ヶ嬢七々々の埋蔵金 + - type: English + title: Nanana's Buried Treasure + - type: German + title: Nanana's Buried Treasure + - type: Spanish + title: 'Ryūgajō Nanana no Maizōkin: Nanana''s Buried Treasure' + - type: French + title: Nanana's Buried Treasure + title: Ryuugajou Nanana no Maizoukin + title_english: Nanana's Buried Treasure + title_japanese: 龍ヶ嬢七々々の埋蔵金 + title_synonyms: + - Ryuugajou Nanana no Maizoukin + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2014-04-11T00:00:00+00:00' + to: '2014-06-20T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2014 + to: + day: 20 + month: 6 + year: 2014 + string: Apr 11, 2014 to Jun 20, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.11 + scored_by: 102704 + rank: 4543 + popularity: 1142 + members: 248272 + favorites: 364 + synopsis: |- + Nanae Island is a man-made island in the Pacific Ocean that holds everything necessary for the proper education and training of children. It was created by the Great Seven, a group of adventurers headed by Nanana Ryuugajou, as a place for the young to chase their dreams. + + After being disowned and exiled by his family, high school student Juugo Yama arrives on this island, happy to finally be free of his father. Upon moving into his new room, he discovers the ghost of Nanana Ryuugajou, bound to the island after her unsolved murder 10 years ago. Nanana tells Juugo that, just before her death, she hid items with unique and mysterious powers all across the island—items known as the Nanana Collection. Hoping to uncover clues that will help him find the culprit behind her death, Juugo, with the help of self-proclaimed "Master Detective" Tensai Ikkyuu and her cross-dressing maid Daruku Hoshino, sets out on his search. + + [Written by MAL Rewrite] + background: Ryuugajou Nanana no Maizoukin adapts the first 3 novels of Kazuma Ootorino's light novel series of the same + title. + season: spring + year: 2014 + broadcast: + day: Fridays + time: 01:20 + timezone: Asia/Tokyo + string: Fridays at 01:20 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 789 + type: anime + name: BIGLOBE + url: https://myanimelist.net/anime/producer/789/BIGLOBE + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 19775 + url: https://myanimelist.net/anime/19775/Sidonia_no_Kishi + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/53257.jpg + small_image_url: https://myanimelist.net/images/anime/12/53257t.jpg + large_image_url: https://myanimelist.net/images/anime/12/53257l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/53257.webp + small_image_url: https://myanimelist.net/images/anime/12/53257t.webp + large_image_url: https://myanimelist.net/images/anime/12/53257l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/htgcz87-Wqk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sidonia no Kishi + - type: Synonym + title: Sidonia no Kishi + - type: Japanese + title: シドニアの騎士 + - type: English + title: Knights of Sidonia + - type: Spanish + title: Knights of Sidonia + - type: French + title: Knights of Sidonia + title: Sidonia no Kishi + title_english: Knights of Sidonia + title_japanese: シドニアの騎士 + title_synonyms: + - Sidonia no Kishi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-11T00:00:00+00:00' + to: '2014-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2014 + to: + day: 27 + month: 6 + year: 2014 + string: Apr 11, 2014 to Jun 27, 2014 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 7.63 + scored_by: 114353 + rank: 1708 + popularity: 1154 + members: 246019 + favorites: 1558 + synopsis: |- + After destroying Earth many years ago, the alien race Gauna has been pursuing the remnants of humanity—which, having narrowly escaped, fled across the galaxy in a number of giant seed ships. In the year 3394, Nagate Tanikaze surfaces from his lifelong seclusion deep beneath the seed ship Sidonia in search of food on the upper levels, only to find himself dragged into events unfolding without his knowledge. + + When the Gauna begin their assault on Sidonia, it's up to Tanikaze—with the help of his fellow soldiers and friends Shizuka Hoshijiro, Izana Shinatose, and Yuhata Midorikawa—to defend humanity's last hope for survival, and defeat their alien foes. Sidonia no Kishi follows Tanikaze as he discovers the world that has been above him his entire life, and becomes the hero Sidonia needs. + + [Written by MAL Rewrite] + background: Sidonia no Kishi was nominated for the Animation of the Year Award in the Television category at the 2015 + Tokyo Anime Award Festival. The anime's opening song, "Sidonia" by Angela, won the 19th Animation Kobe Theme Song + Award in 2014. + season: spring + year: 2014 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1023 + type: anime + name: Polygon Pictures + url: https://myanimelist.net/anime/producer/1023/Polygon_Pictures + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 21033 + url: https://myanimelist.net/anime/21033/Seikoku_no_Dragonar + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/56419.jpg + small_image_url: https://myanimelist.net/images/anime/13/56419t.jpg + large_image_url: https://myanimelist.net/images/anime/13/56419l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/56419.webp + small_image_url: https://myanimelist.net/images/anime/13/56419t.webp + large_image_url: https://myanimelist.net/images/anime/13/56419l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fCRak4oyA9o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seikoku no Dragonar + - type: Synonym + title: Seikoku no Ryuukishi + - type: Japanese + title: 星刻の竜騎士 + - type: English + title: Dragonar Academy + - type: German + title: Dragonar Academy + - type: Spanish + title: Dragonar Academy + - type: French + title: Dragonar Academy + title: Seikoku no Dragonar + title_english: Dragonar Academy + title_japanese: 星刻の竜騎士 + title_synonyms: + - Seikoku no Ryuukishi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-05T00:00:00+00:00' + to: '2014-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2014 + to: + day: 21 + month: 6 + year: 2014 + string: Apr 5, 2014 to Jun 21, 2014 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.39 + scored_by: 114121 + rank: 8845 + popularity: 1178 + members: 240820 + favorites: 299 + synopsis: |- + Learning to ride and tame dragons comes easy to most students at Ansarivan Dragonar Academy—except for first-year student Ash Blake, who is known by his fellow classmates as the "number one problem child." Poor Ash is the laughing stock at school because, despite his unfashionably large star-shaped brand that marks him as a future dragon master, he has nothing to show for it. His dragon has never appeared. + + Until now, that is. One fateful day, Ash's dragon awakes in full glory, but appears different than any dragon ever seen before—in the form of a beautiful girl! What's worse, Ash soon discovers that this new dragon has attitude to spare, as she promptly informs him that she is the master, and he, the servant. + + Ash's problems with dragon riding have only just begun. + + (Source: ANN) + background: The Seikoku no Dragonar anime series adapts the first 4 volumes of the 20 volume light novel series. + season: spring + year: 2014 + broadcast: + day: Saturdays + time: '20:30' + timezone: Asia/Tokyo + string: Saturdays at 20:30 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1686 + type: anime + name: Tsukuru no Mori + url: https://myanimelist.net/anime/producer/1686/Tsukuru_no_Mori + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1075 + type: anime + name: C-Station + url: https://myanimelist.net/anime/producer/1075/C-Station + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 21507 + url: https://myanimelist.net/anime/21507/Soul_Eater_NOT + images: + jpg: + image_url: https://myanimelist.net/images/anime/1401/153016.jpg + small_image_url: https://myanimelist.net/images/anime/1401/153016t.jpg + large_image_url: https://myanimelist.net/images/anime/1401/153016l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1401/153016.webp + small_image_url: https://myanimelist.net/images/anime/1401/153016t.webp + large_image_url: https://myanimelist.net/images/anime/1401/153016l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z8HSMFelQIU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Soul Eater NOT! + - type: Synonym + title: SEN! + - type: Japanese + title: ソウルイーターノット! + - type: German + title: Soul Eater Not! + - type: Spanish + title: Soul Eater Not! + - type: French + title: Soul Eater Not! + title: Soul Eater NOT! + title_english: null + title_japanese: ソウルイーターノット! + title_synonyms: + - SEN! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-04-09T00:00:00+00:00' + to: '2014-07-02T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2014 + to: + day: 2 + month: 7 + year: 2014 + string: Apr 9, 2014 to Jul 2, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.87 + scored_by: 111176 + rank: 11667 + popularity: 1260 + members: 223753 + favorites: 231 + synopsis: |- + Soul Eater NOT! is a spin-off and side story that takes place one year prior to the events of the original Soul Eater. At the Death Weapon Meister Academy, humans born with the power to transform into weapons and those with the power to wield these weapons (Meisters) train to hone their natural talent. The characters of the main series are enrolled in the Especially Advantaged Talent class, where they train to become warriors of justice capable of defeating what threats prey on innocent lives—or even the entire world. + + Other students at the DWMA are less talented. Members of the Normally Overcome Target class focus less on being warriors of justice and more on controlling their powers so they don't hurt themselves or anyone around them. Tsugumi Harudori, a new halberd-transforming student, meets Meisters Meme Tatane and Anya Hepburn and quickly grows indecisive about which of the two new friends should be her partner. As they learn to use these powers and settle in, their lives as everyday students will be far from normal. + background: '' + season: spring + year: 2014 + broadcast: + day: Wednesdays + time: 01:40 + timezone: Asia/Tokyo + string: Wednesdays at 01:40 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 22777 + url: https://myanimelist.net/anime/22777/Dragon_Ball_Kai_2014 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1333/149169.jpg + small_image_url: https://myanimelist.net/images/anime/1333/149169t.jpg + large_image_url: https://myanimelist.net/images/anime/1333/149169l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1333/149169.webp + small_image_url: https://myanimelist.net/images/anime/1333/149169t.webp + large_image_url: https://myanimelist.net/images/anime/1333/149169l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JXVcOKppJZE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dragon Ball Kai (2014) + - type: Synonym + title: Dragonball Kai + - type: Synonym + title: DBK + - type: Synonym + title: DB Kai + - type: Synonym + title: DBZ Kai + - type: Japanese + title: ドラゴンボール改 + - type: English + title: 'Dragon Ball Z Kai: The Final Chapters' + - type: French + title: 'Dragon Ball Z Kai: The Final Chapters' + title: Dragon Ball Kai (2014) + title_english: 'Dragon Ball Z Kai: The Final Chapters' + title_japanese: ドラゴンボール改 + title_synonyms: + - Dragonball Kai + - DBK + - DB Kai + - DBZ Kai + type: TV + source: Manga + episodes: 61 + status: Finished Airing + airing: false + aired: + from: '2014-04-06T00:00:00+00:00' + to: '2015-06-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2014 + to: + day: 28 + month: 6 + year: 2015 + string: Apr 6, 2014 to Jun 28, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.74 + scored_by: 124454 + rank: 1330 + popularity: 1295 + members: 217394 + favorites: 938 + synopsis: Remastered version of the Majin Buu saga that adheres more to the manga's story. + background: '' + season: spring + year: 2014 + broadcast: + day: Sundays + time: 09:00 + timezone: Asia/Tokyo + string: Sundays at 09:00 (JST) + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/19-2014-summer.yaml b/test/fixtures/jikan/season_matrix/19-2014-summer.yaml new file mode 100644 index 0000000..bc99a49 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/19-2014-summer.yaml @@ -0,0 +1,3388 @@ +metadata: + captured_at: '2026-05-11T11:33:10Z' + label: 2014-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2014/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:09 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:ffff6e213d7ae548b771e08ad5ce79bb668e5621 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 228 + per_page: 25 + data: + - mal_id: 22319 + url: https://myanimelist.net/anime/22319/Tokyo_Ghoul + images: + jpg: + image_url: https://myanimelist.net/images/anime/1498/134443.jpg + small_image_url: https://myanimelist.net/images/anime/1498/134443t.jpg + large_image_url: https://myanimelist.net/images/anime/1498/134443l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1498/134443.webp + small_image_url: https://myanimelist.net/images/anime/1498/134443t.webp + large_image_url: https://myanimelist.net/images/anime/1498/134443l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vGuQeQsoRgU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Ghoul + - type: Synonym + title: Tokyo Kushu + - type: Synonym + title: Toukyou Kushu + - type: Synonym + title: Toukyou Ghoul + - type: Japanese + title: 東京喰種-トーキョーグール- + - type: English + title: Tokyo Ghoul + title: Tokyo Ghoul + title_english: Tokyo Ghoul + title_japanese: 東京喰種-トーキョーグール- + title_synonyms: + - Tokyo Kushu + - Toukyou Kushu + - Toukyou Ghoul + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-04T00:00:00+00:00' + to: '2014-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2014 + to: + day: 19 + month: 9 + year: 2014 + string: Jul 4, 2014 to Sep 19, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.79 + scored_by: 2003291 + rank: 1222 + popularity: 10 + members: 3056365 + favorites: 53074 + synopsis: |- + A sinister threat is invading Tokyo: flesh-eating "ghouls" who appear identical to humans and blend into their population. Reserved college student Ken Kaneki buries his nose in books and avoids the news of the growing crisis. However, the appearance of an attractive woman named Rize Kamishiro shatters his solitude when she forwardly asks him on a date. + + While walking Rize home, Kaneki discovers she isn't as kind as she first appeared, and she has led him on with sinister intent. After a tragic struggle, he later awakens in a hospital to learn his life was saved by transplanting the now deceased Rize's organs into his own body. + + Kaneki's body begins to change in horrifying ways, and he transforms into a human-ghoul hybrid. As he embarks on his new dreadful journey, Kaneki clings to his humanity in the evolving bloody conflict between society's new monsters and the government agents who hunt them. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2014 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1283 + type: anime + name: TC Entertainment + url: https://myanimelist.net/anime/producer/1283/TC_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 22199 + url: https://myanimelist.net/anime/22199/Akame_ga_Kill + images: + jpg: + image_url: https://myanimelist.net/images/anime/1429/95946.jpg + small_image_url: https://myanimelist.net/images/anime/1429/95946t.jpg + large_image_url: https://myanimelist.net/images/anime/1429/95946l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1429/95946.webp + small_image_url: https://myanimelist.net/images/anime/1429/95946t.webp + large_image_url: https://myanimelist.net/images/anime/1429/95946l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HOB4GZ1S1Wo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akame ga Kill! + - type: Synonym + title: Akame ga Kiru! + - type: Japanese + title: アカメが斬る! + - type: English + title: Akame ga Kill! + - type: French + title: Red Eyes Sword - Akame ga Kill! + title: Akame ga Kill! + title_english: Akame ga Kill! + title_japanese: アカメが斬る! + title_synonyms: + - Akame ga Kiru! + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-07-07T00:00:00+00:00' + to: '2014-12-15T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2014 + to: + day: 15 + month: 12 + year: 2014 + string: Jul 7, 2014 to Dec 15, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.48 + scored_by: 1411481 + rank: 2314 + popularity: 31 + members: 2269924 + favorites: 30889 + synopsis: |- + Night Raid is the covert assassination branch of the Revolutionary Army, an uprising assembled to overthrow Prime Minister Honest, whose avarice and greed for power has led him to take advantage of the child emperor's inexperience. Without a strong and benevolent leader, the rest of the nation is left to drown in poverty, strife, and ruin. Though the Night Raid members are all experienced killers, they understand that taking lives is far from commendable and that they will likely face retribution as they mercilessly eliminate anyone who stands in the revolution's way. + + This merry band of assassins' newest member is Tatsumi, a naïve boy from a remote village who had embarked on a journey to help his impoverished hometown and was won over by not only Night Raid's ideals, but also their resolve. Akame ga Kill! follows Tatsumi as he fights the Empire and comes face-to-face with powerful weapons, enemy assassins, challenges to his own morals and values, and ultimately, what it truly means to be an assassin with a cause. + + [Written by MAL Rewrite] + background: Akame ga Kill! is the anime adaptation of Takahiro's shounen manga of the same title, which is illustrated + by Tetsuya Tashiro and was serialized in Square Enix's Gangan Joker from April 2010 to December 2016. The anime follows + the source material through the first eight volumes of the manga, incorporating events from later issues as well, + before concluding with an original story arc that deviates from the manga. + season: summer + year: 2014 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 2904 + type: anime + name: REAL-T + url: https://myanimelist.net/anime/producer/2904/REAL-T + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 21881 + url: https://myanimelist.net/anime/21881/Sword_Art_Online_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1223/121999.jpg + small_image_url: https://myanimelist.net/images/anime/1223/121999t.jpg + large_image_url: https://myanimelist.net/images/anime/1223/121999l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1223/121999.webp + small_image_url: https://myanimelist.net/images/anime/1223/121999t.webp + large_image_url: https://myanimelist.net/images/anime/1223/121999l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tdvsWRjh224?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sword Art Online II + - type: Synonym + title: Phantom Bullet + - type: Synonym + title: SAO II + - type: Synonym + title: Sword Art Online 2 + - type: Synonym + title: SAO 2 + - type: Japanese + title: ソードアート・オンライン II + - type: English + title: Sword Art Online II + - type: French + title: Sword Art Online Ⅱ + title: Sword Art Online II + title_english: Sword Art Online II + title_japanese: ソードアート・オンライン II + title_synonyms: + - Phantom Bullet + - SAO II + - Sword Art Online 2 + - SAO 2 + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-07-05T00:00:00+00:00' + to: '2014-12-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2014 + to: + day: 20 + month: 12 + year: 2014 + string: Jul 5, 2014 to Dec 20, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 1412109 + rank: 6826 + popularity: 40 + members: 2112700 + favorites: 9537 + synopsis: |- + A year after escaping Sword Art Online, Kazuto Kirigaya has been settling back into the real world. However, his peace is short-lived as a new incident occurs in a game called Gun Gale Online, where a player by the name of Death Gun appears to be killing people in the real world by shooting them in-game. Approached by officials to assist in investigating the murders, Kazuto assumes his persona of Kirito once again and logs into Gun Gale Online, intent on stopping the killer. + + Once inside, Kirito meets Sinon, a highly skilled sniper afflicted by a traumatic past. She is soon dragged in his chase after Death Gun, and together they enter the Bullet of Bullets, a tournament where their target is sure to appear. Uncertain of Death Gun's real powers, Kirito and Sinon race to stop him before he has the chance to claim another life. Not everything goes smoothly, however, as scars from the past impede their progress. In a high-stakes game where the next victim could easily be one of them, Kirito puts his life on the line in the virtual world once more. + + [Written by MAL Rewrite] + background: Sword Art Online II adapts novels 5 to 8 of Reki Kawahara's light novel series of the same title. + season: summer + year: 2014 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 23283 + url: https://myanimelist.net/anime/23283/Zankyou_no_Terror + images: + jpg: + image_url: https://myanimelist.net/images/anime/1417/117422.jpg + small_image_url: https://myanimelist.net/images/anime/1417/117422t.jpg + large_image_url: https://myanimelist.net/images/anime/1417/117422l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1417/117422.webp + small_image_url: https://myanimelist.net/images/anime/1417/117422t.webp + large_image_url: https://myanimelist.net/images/anime/1417/117422l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nLVy50LnLMM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zankyou no Terror + - type: Synonym + title: Terror in Tokyo + - type: Synonym + title: Terror of Resonance + - type: Japanese + title: 残響のテロル + - type: English + title: Terror in Resonance + - type: German + title: Terror in Resonance + - type: Spanish + title: Terror in Resonance + - type: French + title: Terror in Resonance + title: Zankyou no Terror + title_english: Terror in Resonance + title_japanese: 残響のテロル + title_synonyms: + - Terror in Tokyo + - Terror of Resonance + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2014-07-11T00:00:00+00:00' + to: '2014-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2014 + to: + day: 26 + month: 9 + year: 2014 + string: Jul 11, 2014 to Sep 26, 2014 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.08 + scored_by: 671093 + rank: 636 + popularity: 125 + members: 1281363 + favorites: 23447 + synopsis: |- + Painted in red, the word "VON" is all that is left behind after a terrorist attack on a nuclear facility in Japan. The government is shattered by their inability to act, and the police are left frantically searching for ways to crack down the perpetrators. The public are clueless—until, six months later, a strange video makes its way onto the internet. In it, two teenage boys who identify themselves only as "Sphinx" directly challenge the police, threatening to cause destruction and mayhem across Tokyo. Unable to stop the mass panic quickly spreading through the city and desperate for any leads in their investigation, the police struggle to act effectively against these terrorists, with Detective Kenjirou Shibazaki caught in the middle of it all. + + Zankyou no Terror tells the story of Nine and Twelve, the two boys behind the masked figures of Sphinx. They should not exist, yet they stand strong in a world of deception and secrets while they make the city fall around them, all in the hopes of burying their own tragic truth. + + [Written by MAL Rewrite] + background: Episodes 1 and 2 were previewed at a screening in Los Angeles at Anime Expo on July 5, 2014. Regular broadcasting + began on July 11, 2014. In an interview with Otaku USA Magazine director Shinichirou Watanabe stated that the music + of Icelandic band Sigur Rós gave him visual images that inspired the series and its soundtrack. He also states that + the team went to Iceland to record the music. + season: summer + year: 2014 + broadcast: + day: Fridays + time: 00:50 + timezone: Asia/Tokyo + string: Fridays at 00:50 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 21995 + url: https://myanimelist.net/anime/21995/Ao_Haru_Ride + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/64813.jpg + small_image_url: https://myanimelist.net/images/anime/8/64813t.jpg + large_image_url: https://myanimelist.net/images/anime/8/64813l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/64813.webp + small_image_url: https://myanimelist.net/images/anime/8/64813t.webp + large_image_url: https://myanimelist.net/images/anime/8/64813l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lgGUEEaIMaQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao Haru Ride + - type: Synonym + title: Aoharaido + - type: Japanese + title: アオハライド + - type: English + title: Blue Spring Ride + - type: German + title: Blue Spring Ride + - type: Spanish + title: Blue Spring Ride + - type: French + title: Blue Spring Ride + title: Ao Haru Ride + title_english: Blue Spring Ride + title_japanese: アオハライド + title_synonyms: + - Aoharaido + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-08T00:00:00+00:00' + to: '2014-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2014 + to: + day: 23 + month: 9 + year: 2014 + string: Jul 8, 2014 to Sep 23, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 538808 + rank: 1679 + popularity: 185 + members: 1013911 + favorites: 11451 + synopsis: |- + While most young girls make an effort to show off their feminine charms, Futaba Yoshioka deliberately behaves like she wants to repel anyone who might be attracted to her. Ostracized by her female classmates in middle school for being a little too popular with the boys, she desperately strives to avoid a similar situation in high school by being unnecessarily noisy and graceless. + + Nevertheless, scattered among Futaba's unpleasant memories are the treasured moments with the boy she had a crush on, Kou Tanaka. Unfortunately, that spell abruptly ended on a sour note when he suddenly stopped attending school and never came back. When Futaba finds out that Kou has returned—with a different last name this time—she can already feel the butterflies in her stomach. However, Kou Mabuchi is not the warm boy that she remembers from her days in middle school; he is now taller, more charismatic and withdrawn—making him far less approachable. + + Futaba believes that if she returns to her former self, Kou will begin to take notice of her again. But is she prepared to sacrifice her bubble of normalcy and risk losing her friends in the process? + + [Written by MAL Rewrite] + background: Ao Haru Ride is the anime adaptation of the manga series written and illustrated by Io Sakisaka, which was + serialized in the shoujo magazine Bessatsu Margaret between 2011 and 2015. It has sold over 5.84 million copies, and + released in Germany, France, Italy, Taiwan and Poland. It was adapted into a live action film directed by Takahiro + Miki and released on 13 December 2014. The anime is licensed for release in North America with English subtitles by + Sentai Filmworks. + season: summer + year: 2014 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 23289 + url: https://myanimelist.net/anime/23289/Gekkan_Shoujo_Nozaki-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/66083.jpg + small_image_url: https://myanimelist.net/images/anime/5/66083t.jpg + large_image_url: https://myanimelist.net/images/anime/5/66083l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/66083.webp + small_image_url: https://myanimelist.net/images/anime/5/66083t.webp + large_image_url: https://myanimelist.net/images/anime/5/66083l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8FGsSpcZ-FI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gekkan Shoujo Nozaki-kun + - type: Synonym + title: Gekkan Shoujo Nozaki-kun + - type: Japanese + title: 月刊少女野崎くん + - type: English + title: Monthly Girls' Nozaki-kun + - type: German + title: Monthly Girls' Nozaki-kun + - type: Spanish + title: Gekkan Shojo Nozaki-kun + - type: French + title: Monthly Girls' Nozaki-kun + title: Gekkan Shoujo Nozaki-kun + title_english: Monthly Girls' Nozaki-kun + title_japanese: 月刊少女野崎くん + title_synonyms: + - Gekkan Shoujo Nozaki-kun + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-07T00:00:00+00:00' + to: '2014-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2014 + to: + day: 22 + month: 9 + year: 2014 + string: Jul 7, 2014 to Sep 22, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.81 + scored_by: 544173 + rank: 1146 + popularity: 194 + members: 997773 + favorites: 11333 + synopsis: |- + Chiyo Sakura is a cheerful high school girl who has fallen head over heels for the oblivious Umetarou Nozaki. Much to Chiyo's confusion, when she confesses to her beloved Nozaki, he hands her an unfamiliar autograph. As it turns out, the stoic teenage boy is actually a respected shoujo manga artist, publishing under the pen name Sakiko Yumeno! A series of misunderstandings leads to Chiyo becoming one of Nozaki's manga assistants. + + Throughout the hilarious events that ensue, she befriends many of her quirky schoolmates, including her seemingly shameless fellow assistant, Mikoto Mikoshiba, and the "Prince of the School," Yuu Kashima. Gekkan Shoujo Nozaki-kun follows Chiyo as she strives to help Nozaki with his manga and hopes that he will eventually notice her feelings. + + [Written by MAL Rewrite] + background: The voice acting cast for the anime differs from the cast of the Drama CD adaptation which was released + June 2013. + season: summer + year: 2014 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 22789 + url: https://myanimelist.net/anime/22789/Barakamon + images: + jpg: + image_url: https://myanimelist.net/images/anime/1426/111248.jpg + small_image_url: https://myanimelist.net/images/anime/1426/111248t.jpg + large_image_url: https://myanimelist.net/images/anime/1426/111248l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1426/111248.webp + small_image_url: https://myanimelist.net/images/anime/1426/111248t.webp + large_image_url: https://myanimelist.net/images/anime/1426/111248l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/u1pCw1Cr3_U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Barakamon + - type: Synonym + title: Barakamon + - type: Japanese + title: ばらかもん + - type: English + title: Barakamon + title: Barakamon + title_english: Barakamon + title_japanese: ばらかもん + title_synonyms: + - Barakamon + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-06T00:00:00+00:00' + to: '2014-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2014 + to: + day: 28 + month: 9 + year: 2014 + string: Jul 6, 2014 to Sep 28, 2014 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.36 + scored_by: 362427 + rank: 263 + popularity: 331 + members: 714179 + favorites: 13474 + synopsis: |- + Seishuu Handa is an up-and-coming calligrapher: young, handsome, talented, and unfortunately, a narcissist to boot. When a veteran labels his award-winning piece as "unoriginal," Seishuu quickly loses his cool with severe repercussions. + + As punishment, and also in order to aid him in self-reflection, Seishuu's father exiles him to the Goto Islands, far from the comfortable Tokyo lifestyle the temperamental artist is used to. Now thrown into a rural setting, Seishuu must attempt to find new inspiration and develop his own unique art style—that is, if boisterous children (headed by the frisky Naru Kotoishi), fujoshi middle schoolers, and energetic old men stop barging into his house! The newest addition to the intimate and quirky Goto community only wants to get some work done, but the islands are far from the peaceful countryside he signed up for. Thanks to his wacky neighbors who are entirely incapable of minding their own business, the arrogant calligrapher learns so much more than he ever hoped to. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2014 + broadcast: + day: Sundays + time: 02:20 + timezone: Asia/Tokyo + string: Sundays at 02:20 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 22729 + url: https://myanimelist.net/anime/22729/AldnoahZero + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/60263.jpg + small_image_url: https://myanimelist.net/images/anime/7/60263t.jpg + large_image_url: https://myanimelist.net/images/anime/7/60263l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/60263.webp + small_image_url: https://myanimelist.net/images/anime/7/60263t.webp + large_image_url: https://myanimelist.net/images/anime/7/60263l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/D6XOSJyJtk8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aldnoah.Zero + - type: Synonym + title: AZ + - type: Japanese + title: アルドノア・ゼロ + - type: English + title: Aldnoah.Zero + - type: Spanish + title: Aldnoah. Zero + title: Aldnoah.Zero + title_english: Aldnoah.Zero + title_japanese: アルドノア・ゼロ + title_synonyms: + - AZ + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-06T00:00:00+00:00' + to: '2014-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2014 + to: + day: 21 + month: 9 + year: 2014 + string: Jul 6, 2014 to Sep 21, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.38 + scored_by: 294121 + rank: 2815 + popularity: 467 + members: 538556 + favorites: 3716 + synopsis: |- + The discovery of a hypergate on the Moon once allowed the human race to teleport to Mars. Those who chose to settle there unearthed a technology far more advanced than that of their home planet, which they named "Aldnoah." This discovery led to the founding of the Vers Empire of Mars and a declaration of war against the "Terrans," those who stayed behind on Earth. However, a battle on the moon—later called "Heaven's Fall"—caused the hypergate to explode, destroying the moon and leading the two planets to establish an uneasy ceasefire. + + Their peace was a fragile one, however. Fifteen years later, high school student Inaho Kaizuka witnesses the plotted assassination of the Vers Empire's Princess Asseylum Vers Allusia, who had come to Earth in hopes of repairing the relationship between the empire and its homeland. The ceasefire is shattered, and the Martians declare war on the Terrans once again. In the face of this insurmountable enemy, Inaho and his friends must now fight against the Vers Empire to settle the war once and for all. + + [Written by MAL Rewrite] + background: Aldnoah.Zero was streamed in Australia by Hanabee, in the UK by Anime Limited and in the USA by Aniplex + of America. The manga adaptation of the anime was published in 2014, written by Olympus Knights and illustrated by + Pinakes. The manga was licensed by Yen Press in the USA in 2015. The creator and director had previously collaborated + on Fate/Zero. + season: summer + year: 2014 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 21855 + url: https://myanimelist.net/anime/21855/Hanamonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/65755.jpg + small_image_url: https://myanimelist.net/images/anime/13/65755t.jpg + large_image_url: https://myanimelist.net/images/anime/13/65755l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/65755.webp + small_image_url: https://myanimelist.net/images/anime/13/65755t.webp + large_image_url: https://myanimelist.net/images/anime/13/65755l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/njPnn2rmIO8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hanamonogatari + - type: Synonym + title: 'Monogatari Series: Second Season +α' + - type: Japanese + title: 花物語 + - type: English + title: Hanamonogatari + title: Hanamonogatari + title_english: Hanamonogatari + title_japanese: 花物語 + title_synonyms: + - 'Monogatari Series: Second Season +α' + type: TV Special + source: Light novel + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2014-08-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 8 + year: 2014 + to: + day: null + month: null + year: null + string: Aug 16, 2014 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.91 + scored_by: 256708 + rank: 909 + popularity: 586 + members: 455247 + favorites: 1119 + synopsis: |- + Now that Koyomi Araragi and Hitagi Senjougahara have graduated, very few familiar faces remain at Naoetsu Private High School. One of these is Suruga Kanbaru, holder of the Monkey's Paw. When she begins to hear talk of a mysterious being known as the "Devil" who will magically solve any problem, Kanbaru immediately thinks these rumors are about her and decides to investigate. + + She discovers the Devil is actually Rouka Numachi, a former basketball rival from junior high who is no longer able to play due to a leg injury. Rouka provides free advice to those who seek her out. Acting as a collector of misfortune, she enjoys relieving the stress of her clients by providing them with the false hope of having their problems solved. Although Kanbaru sees no real harm being done, she reprimands Rouka for lying and heads home, relieved she is not the cause of the rumors. But she may have a reason to worry after all: she finds that her left hand has reverted back to its human form. + + [Written by MAL Rewrite] + background: 'Hanamonogatari adapts the third volume of NisiOisiN''s Monogatari Series: Second Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 22145 + url: https://myanimelist.net/anime/22145/Kuroshitsuji__Book_of_Circus + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/64811.jpg + small_image_url: https://myanimelist.net/images/anime/6/64811t.jpg + large_image_url: https://myanimelist.net/images/anime/6/64811l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/64811.webp + small_image_url: https://myanimelist.net/images/anime/6/64811t.webp + large_image_url: https://myanimelist.net/images/anime/6/64811l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AZTuRJUpmE4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kuroshitsuji: Book of Circus' + - type: Synonym + title: Kuroshitsuji Circus Hen + - type: Synonym + title: Kuroshitsuji Shin Series + - type: Synonym + title: Black Butler 3 + - type: Synonym + title: Kuroshitsuji III + - type: Japanese + title: 黒執事 Book of Circus + - type: English + title: 'Black Butler: Book of Circus' + - type: German + title: 'Black Butler: Book of Circus' + - type: French + title: 'Black Butler: Book of Circus' + title: 'Kuroshitsuji: Book of Circus' + title_english: 'Black Butler: Book of Circus' + title_japanese: 黒執事 Book of Circus + title_synonyms: + - Kuroshitsuji Circus Hen + - Kuroshitsuji Shin Series + - Black Butler 3 + - Kuroshitsuji III + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-07-11T00:00:00+00:00' + to: '2014-09-12T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2014 + to: + day: 12 + month: 9 + year: 2014 + string: Jul 11, 2014 to Sep 12, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.06 + scored_by: 233140 + rank: 659 + popularity: 601 + members: 443887 + favorites: 3904 + synopsis: |- + Full of wonder and excitement, the Noah's Arc Circus troupe has captured audiences with their dazzling performances. Yet these fantastic acts do not come without a price. Children have mysteriously gone missing around London, correlating to that of the group's movements. Unsettled by these kidnappings, Queen Victoria sends in her notorious guard dog, Ciel Phantomhive; and his ever-faithful demon butler, Sebastian Michaelis, on an undercover mission to find these missing children. + + Trying to balance their new circus acts with their covert investigation under the big top, however, proves to be quite a challenge. With the other performers growing suspicious and the threat of the circus' mysterious benefactor looming overhead, what the two discover will shake Ciel to his very core. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2014 + broadcast: + day: Fridays + time: 02:19 + timezone: Asia/Tokyo + string: Fridays at 02:19 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 22265 + url: https://myanimelist.net/anime/22265/Free_Eternal_Summer + images: + jpg: + image_url: https://myanimelist.net/images/anime/1719/108886.jpg + small_image_url: https://myanimelist.net/images/anime/1719/108886t.jpg + large_image_url: https://myanimelist.net/images/anime/1719/108886l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1719/108886.webp + small_image_url: https://myanimelist.net/images/anime/1719/108886t.webp + large_image_url: https://myanimelist.net/images/anime/1719/108886l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tTRUFbOiwME?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Free! Eternal Summer + - type: Synonym + title: Free! - Iwatobi Swim Club 2 + - type: Synonym + title: Free! 2nd Season + - type: Japanese + title: Free!-Eternal Summer- + - type: Spanish + title: Free! Eternal Summer + title: Free! Eternal Summer + title_english: null + title_japanese: Free!-Eternal Summer- + title_synonyms: + - Free! - Iwatobi Swim Club 2 + - Free! 2nd Season + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-07-03T00:00:00+00:00' + to: '2014-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2014 + to: + day: 25 + month: 9 + year: 2014 + string: Jul 3, 2014 to Sep 25, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 241659 + rank: 1759 + popularity: 606 + members: 441279 + favorites: 2559 + synopsis: |- + Even though it has been a year since the Iwatobi High School Swim Club has been created, new members have yet to join the club. Now that Haruka Nanase and Makoto Tachibana are senior students, along with their younger friends Nagisa Hazuki and Rei Ryuugazaki, they have to find a way to attract new members. If not, the club will be forced to close the following year due to a lack of membership. + + Meanwhile, with impending graduation, it is also time for the seniors to decide their plans for the future. Unlike their friend Rin Matsuoka, the new captain of Samezuka Academy Swim Club who is determined to fulfill his dream of being a professional swimmer, Haruka and Makoto are unsure about what career path they want to take. + + Further problems arise when an old friend of Rin's, Sousuke Yamazaki, comes to the city to study at Samezuka Academy; the recently scouted swimmer's arrival causes tension in the relationship among him, Rin, and Haruka. + + [Written by MAL Rewrite] + background: The series won the 2014 Animage's Anime Grand Prix Award. + season: summer + year: 2014 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 941 + type: anime + name: Iwatobi High School Swimming Club + url: https://myanimelist.net/anime/producer/941/Iwatobi_High_School_Swimming_Club + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 22877 + url: https://myanimelist.net/anime/22877/Seireitsukai_no_Blade_Dance + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/63031.jpg + small_image_url: https://myanimelist.net/images/anime/7/63031t.jpg + large_image_url: https://myanimelist.net/images/anime/7/63031l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/63031.webp + small_image_url: https://myanimelist.net/images/anime/7/63031t.webp + large_image_url: https://myanimelist.net/images/anime/7/63031l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oHxzueWeo1E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seireitsukai no Blade Dance + - type: Synonym + title: Seirei Tsukai no Kenbu + - type: Synonym + title: Bladedance of Elementalers + - type: Japanese + title: 精霊使いの剣舞〈ブレイドダンス〉 + - type: English + title: Blade Dance of the Elementalers + - type: German + title: Blade Dance of the Elementalers + - type: Spanish + title: Seirei Tsukai no Blade Dance + - type: French + title: Seirei Tsukai no Blade Dance + title: Seireitsukai no Blade Dance + title_english: Blade Dance of the Elementalers + title_japanese: 精霊使いの剣舞〈ブレイドダンス〉 + title_synonyms: + - Seirei Tsukai no Kenbu + - Bladedance of Elementalers + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-14T00:00:00+00:00' + to: '2014-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2014 + to: + day: 29 + month: 9 + year: 2014 + string: Jul 14, 2014 to Sep 29, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 194663 + rank: 7210 + popularity: 705 + members: 385728 + favorites: 947 + synopsis: |- + On his way to Areishia Spirit Academy, Kamito Kazehaya runs into a naked Claire Rouge, a student who had been bathing as part of a purification ceremony. She had been preparing to form a contract with a powerful spirit in order to acquire more power as an "elementalist." Her efforts are wasted, however, when Kamito ends up with the spirit despite the fact that only shrine maidens can become elementalists. Yet to be discouraged, Claire then announces that Kamito must become her contracted spirit instead! + + After reaching the school grounds, Kamito escapes from Claire and meets Headmaster Greyworth Ciel Mais, who invites him to enroll at the academy. Although his life at Areishia will be far from easy as the only male student among the shrine princesses-in-training, he begrudgingly accepts in exchange for information about his former contracted spirit, Restia Ashdoll. Adding on to that, he also must fulfill Greyworth's main request: to win in the Blade Dance, a battle festival occurring in two months, where he will face the strongest elementalist rumored to be contracted with a darkness spirit. + + [Written by MAL Rewrite] + background: Seireitsukai no Blade Dance was streamed by Crunchyroll at the same time when it first premiered, and Sentai + Filmworks licensed the series in July 2014. + season: summer + year: 2014 + broadcast: + day: Mondays + time: '20:30' + timezone: Asia/Tokyo + string: Mondays at 20:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 21557 + url: https://myanimelist.net/anime/21557/Omoide_no_Marnie + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/64293.jpg + small_image_url: https://myanimelist.net/images/anime/7/64293t.jpg + large_image_url: https://myanimelist.net/images/anime/7/64293l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/64293.webp + small_image_url: https://myanimelist.net/images/anime/7/64293t.webp + large_image_url: https://myanimelist.net/images/anime/7/64293l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jjmrxqcQdYg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Omoide no Marnie + - type: Japanese + title: 思い出のマーニー + - type: English + title: When Marnie Was There + - type: German + title: Erinnerungen an Marnie + - type: Spanish + title: El Recuerdo de Marnie + - type: French + title: Souvenirs de Marnie + title: Omoide no Marnie + title_english: When Marnie Was There + title_japanese: 思い出のマーニー + title_synonyms: [] + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-07-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 7 + year: 2014 + to: + day: null + month: null + year: null + string: Jul 19, 2014 + duration: 1 hr 42 min + rating: G - All Ages + score: 8.04 + scored_by: 183729 + rank: 699 + popularity: 840 + members: 334837 + favorites: 2924 + synopsis: |- + Suffering from frequent asthma attacks, young Anna Sasaki is quiet, unsociable, and isolated from her peers, causing her foster parent endless worry. Upon recommendation by the doctor, Anna is sent to the countryside, in hope that the cleaner air and more relaxing lifestyle will improve her health and help clear her mind. Engaging in her passion for sketching, Anna spends her summer days living with her aunt and uncle in a small town near the sea. + + One day while wandering outside, Anna discovers an abandoned mansion known as the Marsh House. However, she soon finds that the residence isn't as vacant as it appears to be, running into a mysterious girl named Marnie. Marnie's bubbly demeanor slowly begins to draw Anna out of her shell as she returns night after night to meet with her new friend. But it seems there is more to the strange girl than meets the eye—as her time in the town nears its end, Anna begins to discover the truth behind the walls of the Marsh House. + + Omoide no Marnie tells the touching story of a young girl's journey through self-discovery and friendship, and the summer that she will remember for the rest of her life. + + [Written by MAL Rewrite] + background: Omoide no Marnie is based on Joan G. Robinson's English children's novel classic When Marnie Was There. + The movie was nominated for Animation of the Year at the 38th Japan Academy Prize Awards and Best Animated Feature + Film at the 9th Asia Pacific Screen Awards in 2015. The movie won an award for Best Animated Feature Film at the Chicago + International Children's Film Festival in 2015. Other nominations include Best Animated Feature (Independent) at the + 43rd Annual Annie Awards and Academy Award for Best Animated Feature at the 88th Academy Awards in 2016. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 417 + type: anime + name: Disney Platform Distribution + url: https://myanimelist.net/anime/producer/417/Disney_Platform_Distribution + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 21105 + url: https://myanimelist.net/anime/21105/Love_Stage + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/76599.jpg + small_image_url: https://myanimelist.net/images/anime/11/76599t.jpg + large_image_url: https://myanimelist.net/images/anime/11/76599l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/76599.webp + small_image_url: https://myanimelist.net/images/anime/11/76599t.webp + large_image_url: https://myanimelist.net/images/anime/11/76599l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RrFOU4FYWkM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Love Stage!! + - type: Japanese + title: LOVE STAGE!! + - type: English + title: Love Stage!! + title: Love Stage!! + title_english: Love Stage!! + title_japanese: LOVE STAGE!! + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-07-10T00:00:00+00:00' + to: '2014-09-11T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2014 + to: + day: 11 + month: 9 + year: 2014 + string: Jul 10, 2014 to Sep 11, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.13 + scored_by: 153934 + rank: 4407 + popularity: 1010 + members: 278347 + favorites: 1667 + synopsis: "With an actress mother, producer father, and rockstar brother, anyone would expect Izumi Sena to eventually\ + \ enter showbiz himself. However, aside from a commercial for a wedding magazine when he was a child, Izumi has never\ + \ been in the spotlight; instead, he aims to become a manga artist. \n\nBut a decade after the shoot, the magazine\ + \ calls for a 10th anniversary ad, requesting the original child actors for the project. This reunites Izumi with\ + \ Ryouma Ichijou, now a popular actor who, much to Izumi's shock, has been in love with him ever since their first\ + \ meeting! However, due to Izumi's feminine appearance and unisex name, Ryouma believed the boy was a girl and continues\ + \ to do so to this day. Izumi's troubles are just beginning, because even after discovering the truth, Ryouma can't\ + \ seem to shake off his feelings...\n\n[Written by MAL Rewrite]" + background: Love Stage!! covers the events of the first 15 chapters of the manga. Crunchyroll licensed Love Stage!! + to be streamed in North America, Latin America, Europe and Africa. + season: summer + year: 2014 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: [] + - mal_id: 16904 + url: https://myanimelist.net/anime/16904/K__Missing_Kings + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/71795.jpg + small_image_url: https://myanimelist.net/images/anime/5/71795t.jpg + large_image_url: https://myanimelist.net/images/anime/5/71795l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/71795.webp + small_image_url: https://myanimelist.net/images/anime/5/71795t.webp + large_image_url: https://myanimelist.net/images/anime/5/71795l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yhNzL20gNX0/?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'K: Missing Kings' + - type: Synonym + title: K (Movie) + - type: Synonym + title: K-Project Movie + - type: Synonym + title: K-Project Sequel + - type: Japanese + title: K MISSING KINGS + - type: English + title: 'K: Missing Kings' + title: 'K: Missing Kings' + title_english: 'K: Missing Kings' + title_japanese: K MISSING KINGS + title_synonyms: + - K (Movie) + - K-Project Movie + - K-Project Sequel + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-07-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 7 + year: 2014 + to: + day: null + month: null + year: null + string: Jul 12, 2014 + duration: 1 hr 13 min + rating: PG-13 - Teens 13 or older + score: 7.62 + scored_by: 129370 + rank: 1734 + popularity: 1054 + members: 267045 + favorites: 714 + synopsis: |- + It's been a year since the disappearance of Shiro, the Silver King; Kurou Yatogami and Neko have been diligent in their search, but to no end. Their investigation leads to a run-in with members of the now disbanded Red Clan HOMRA—Rikio Kamamoto and Anna Kushina—being pursued by the Green Clan, who desire Anna's powers for their own ends. + + Now, the members of Scepter 4 are called upon alongside Kurou and Neko in order to rescue Anna, the mascot, and only female member of the ruined Red Clan, from the enemy's clutches and hopefully find Shiro using the young girl's powers. Amidst crisis, the group is forced into a power struggle when the Green Clan threatens to overtake the Gold King's domain. + + The second step in the K Project series, K: Missing Kings, continues the story of a young boy caught up in a psychic war between seven kings, and showcases each character's struggles after the losses of their respective Kings. + + [Written by MAL Rewrite] + background: The movie was first premiered in Singapore on July 5, 2014. Screening in Japanese theaters began on July + 12, 2014. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 23309 + url: https://myanimelist.net/anime/23309/Rail_Wars + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/65671.jpg + small_image_url: https://myanimelist.net/images/anime/13/65671t.jpg + large_image_url: https://myanimelist.net/images/anime/13/65671l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/65671.webp + small_image_url: https://myanimelist.net/images/anime/13/65671t.webp + large_image_url: https://myanimelist.net/images/anime/13/65671l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gNI1s3vYoQw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rail Wars! + - type: Japanese + title: RAIL WARS! [レールウォーズ] + - type: English + title: Rail Wars! + title: Rail Wars! + title_english: Rail Wars! + title_japanese: RAIL WARS! [レールウォーズ] + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-04T00:00:00+00:00' + to: '2014-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2014 + to: + day: 19 + month: 9 + year: 2014 + string: Jul 4, 2014 to Sep 19, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.4 + scored_by: 96697 + rank: 8789 + popularity: 1264 + members: 223104 + favorites: 295 + synopsis: |- + Rail Wars! takes place in an alternate universe where the Japanese government remains in control of the nation's railway systems. Because of the stability afforded by the leadership of the government, the railway system is allowed to flourish. + + Naoto Takayama aspires to become an employee for Japan National Railways because of the comfortable life that it will enable him to live. In order to accomplish this he enters its training program, where students must demonstrate their knowledge of trains as well as their ability to be ready for any challenge that might arise. + + During this time period he will encounter other students such as the athletically gifted Aoi Sakura, the constantly hungry Sho Iwaizumi, and the human encyclopedia Haruka Komi. Together they will work towards surviving their trainee period, all the while taking on purse snatchers, bomb threats, and the looming specter of the extremist “RJ” group who wants to privatize the railway system. + background: From June 6, 2014 to July 6, 2014, the first episodes of Rail Wars! were streamed on Niconico. The regular + TV broadcast began July 4, 2014 (July 3rd, 25:46) on TBS. + season: summer + year: 2014 + broadcast: + day: Fridays + time: 01:46 + timezone: Asia/Tokyo + string: Fridays at 01:46 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 21659 + url: https://myanimelist.net/anime/21659/Kill_la_Kill_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/1964/122317.jpg + small_image_url: https://myanimelist.net/images/anime/1964/122317t.jpg + large_image_url: https://myanimelist.net/images/anime/1964/122317l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1964/122317.webp + small_image_url: https://myanimelist.net/images/anime/1964/122317t.webp + large_image_url: https://myanimelist.net/images/anime/1964/122317l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kill la Kill Specials + - type: Synonym + title: Kill la Kill Tokubetsu-hen + - type: Synonym + title: Sayonara wo Mou Ichido + - type: Synonym + title: 'Kill la Kill Digest: Naked Memories' + - type: Synonym + title: KILL la KILL Digest –Naked Memories by Aikuro Mikisugi– + - type: Japanese + title: キルラキル 特別編 + - type: English + title: Kill la Kill Specials + title: Kill la Kill Specials + title_english: Kill la Kill Specials + title_japanese: キルラキル 特別編 + title_synonyms: + - Kill la Kill Tokubetsu-hen + - Sayonara wo Mou Ichido + - 'Kill la Kill Digest: Naked Memories' + - KILL la KILL Digest –Naked Memories by Aikuro Mikisugi– + type: Special + source: Original + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2014-09-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 9 + year: 2014 + to: + day: null + month: null + year: null + string: Sep 3, 2014 + duration: 18 min per ep + rating: R - 17+ (violence & profanity) + score: 7.67 + scored_by: 118860 + rank: 1558 + popularity: 1320 + members: 211651 + favorites: 311 + synopsis: |- + Peace has returned to Honnouji Academy at last, and now that it has served its original purpose, the unique high school is set to be shut down within a month. However, there is still one final event that must take place: the graduation ceremony. As each member of the student council prepares to leave their past selves behind to focus on what they would like to do in the future, Satsuki Kiryuuin struggles to find her own path, having lost her resolve after finally achieving victory. + + But just before she is to give her speech to the student body, the ceremony is disrupted by mysterious beings that are identical to the student council members. As Ryuuko Matoi and the Elite Four prepare for battle once more, they quickly discover that the one pulling the strings is an old enemy who has returned to take revenge. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 22865 + url: https://myanimelist.net/anime/22865/Rokujouma_no_Shinryakusha + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/62655.jpg + small_image_url: https://myanimelist.net/images/anime/2/62655t.jpg + large_image_url: https://myanimelist.net/images/anime/2/62655l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/62655.webp + small_image_url: https://myanimelist.net/images/anime/2/62655t.webp + large_image_url: https://myanimelist.net/images/anime/2/62655l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8ZKg5HOSuF4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rokujouma no Shinryakusha!? + - type: Synonym + title: Rokujouma no Shinryakusha!? + - type: Japanese + title: 六畳間の侵略者!? + - type: English + title: Invaders of the Rokujyoma!? + - type: German + title: Invaders of the Rokujyoma!? + - type: Spanish + title: Rokujouma no Shinryakusha!? + - type: French + title: Rokujôma no Shinryakusha!? + title: Rokujouma no Shinryakusha!? + title_english: Invaders of the Rokujyoma!? + title_japanese: 六畳間の侵略者!? + title_synonyms: + - Rokujouma no Shinryakusha!? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-12T00:00:00+00:00' + to: '2014-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2014 + to: + day: 27 + month: 9 + year: 2014 + string: Jul 12, 2014 to Sep 27, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 86988 + rank: 4474 + popularity: 1453 + members: 190748 + favorites: 436 + synopsis: |- + After Koutarou Satomi's father is suddenly relocated for his job, the first-year high school student is faced with finding a cheap place to live by himself. Naturally, he jumps at the chance to move into Corona House's Room 106 for a mere five thousand yen a month. But while everything goes well at first, Koutarou soon gets a lot more than he bargained for after stumbling upon a mysterious cave while working his part-time job. + + The following night, Koutarou is visited by various seemingly mythical figures, all of whom claim ownership of the poor student's apartment. Among the invaders are Sanae Higashihongan, a ghost supposedly haunting the room, magical girl Yurika, alien princess Theiamillis Gre Fortorthe, and Kiriha Kurano, a direct descendant of the Earth People. But more importantly, each of these four girls needs Koutarou's apartment for her own reasons and won’t back down without a fight! + + Rokujouma no Shinryakusha!? is a comedic battle royale over a six-tatami mat apartment involving supernatural beings, romantic high school hijinks, and a deceptively cordial landlady. + + [Written by MAL Rewrite] + background: Rokujouma no Shinryakusha!? adapts the first 7 novels of Takehaya's light novel series of the same title. + season: summer + year: 2014 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 23327 + url: https://myanimelist.net/anime/23327/Space☆Dandy_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/64451.jpg + small_image_url: https://myanimelist.net/images/anime/3/64451t.jpg + large_image_url: https://myanimelist.net/images/anime/3/64451l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/64451.webp + small_image_url: https://myanimelist.net/images/anime/3/64451t.webp + large_image_url: https://myanimelist.net/images/anime/3/64451l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xVde2A6zqUg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Space☆Dandy 2nd Season + - type: Synonym + title: Space☆Dandy Second Season + - type: Japanese + title: スペース☆ダンディ 第2シリーズ + - type: English + title: Space Dandy 2nd Season + - type: German + title: Space Dandy Staffel 2 + - type: French + title: Space Dandy Saison 2 + title: Space☆Dandy 2nd Season + title_english: Space Dandy 2nd Season + title_japanese: スペース☆ダンディ 第2シリーズ + title_synonyms: + - Space☆Dandy Second Season + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-07-06T00:00:00+00:00' + to: '2014-09-25T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2014 + to: + day: 25 + month: 9 + year: 2014 + string: Jul 6, 2014 to Sep 25, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 96394 + rank: 356 + popularity: 1519 + members: 183126 + favorites: 1954 + synopsis: |- + Second season of Space Dandy. + + Space Dandy is a dandy guy, in space! This dreamy adventurer with a to-die-for pompadour travels across the galaxy in search of aliens no one has ever laid eyes on. Each new species he discovers earns him a hefty reward, but this dandy has to be quick on his feet because it's first come, first served! Accompanied by his sidekicks, a rundown robot named QT and Meow the cat-looking space alien, Dandy bravely explores unknown worlds inhabited by a variety of aliens. Join the best dressed alien hunter in all of space and time as he embarks on an adventure that ends at the edge of the universe! + + (Source: Bandai Visual) + background: '' + season: summer + year: 2014 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 23421 + url: https://myanimelist.net/anime/23421/Re_␣Hamatora + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75641.jpg + small_image_url: https://myanimelist.net/images/anime/3/75641t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75641l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75641.webp + small_image_url: https://myanimelist.net/images/anime/3/75641t.webp + large_image_url: https://myanimelist.net/images/anime/3/75641l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2wOG2K4CxsM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:␣Hamatora + - type: Synonym + title: Hamatora The Animation 2nd Season + - type: Synonym + title: Reply Hamatora + - type: Japanese + title: Re:␣ ハマトラ + - type: English + title: 'Re: Hamatora: Season 2' + - type: German + title: 'Re: Hamatora: Staffel 2' + - type: Spanish + title: 'Re: Hamatora' + - type: French + title: Hamatora The Animation Saison 2 + title: Re:␣Hamatora + title_english: 'Re: Hamatora: Season 2' + title_japanese: Re:␣ ハマトラ + title_synonyms: + - Hamatora The Animation 2nd Season + - Reply Hamatora + type: TV + source: Mixed media + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-08T00:00:00+00:00' + to: '2014-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2014 + to: + day: 23 + month: 9 + year: 2014 + string: Jul 8, 2014 to Sep 23, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.35 + scored_by: 81913 + rank: 3007 + popularity: 1560 + members: 177436 + favorites: 422 + synopsis: |- + It has been three months since the incident at Yokohama. Things have been settling down at Cafe Nowhere. Murasaki and Hajime have teamed up and started investigating again. After an unforeseen reunion, Art holds Nice at gunpoint. What are his real intentions? What will become of the connection between Art and Hamatora? + + (Source: Crunchyroll) + background: '' + season: summer + year: 2014 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 23333 + url: https://myanimelist.net/anime/23333/DRAMAtical_Murder + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/75642.jpg + small_image_url: https://myanimelist.net/images/anime/6/75642t.jpg + large_image_url: https://myanimelist.net/images/anime/6/75642l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/75642.webp + small_image_url: https://myanimelist.net/images/anime/6/75642t.webp + large_image_url: https://myanimelist.net/images/anime/6/75642l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PLi1o7kkGm4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: DRAMAtical Murder + - type: Synonym + title: DMMd + - type: Japanese + title: ドラマティカル マーダー + - type: English + title: DRAMAtical Murder + title: DRAMAtical Murder + title_english: DRAMAtical Murder + title_japanese: ドラマティカル マーダー + title_synonyms: + - DMMd + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-07T00:00:00+00:00' + to: '2014-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2014 + to: + day: 22 + month: 9 + year: 2014 + string: Jul 7, 2014 to Sep 22, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.05 + scored_by: 77088 + rank: 10749 + popularity: 1573 + members: 176143 + favorites: 643 + synopsis: "Some time ago, the influential and powerful Toue Inc. bought the island of Midorijima, Japan, with the plans\ + \ of building Platinum Jail—a luxurious utopian facility. Those who are lucky enough to call it home are the wealthiest\ + \ citizens in the world. The original residents of the island, however, were forced to relocate to the Old Residential\ + \ District; and after the completion of Platinum Jail, they were completely abandoned.\n \n\"Rib\" and \"Rhyme\" are\ + \ the most common games played on the island. Rib is an old school game in which gangs engage in turf wars against\ + \ each other, while Rhyme is a technologically advanced game wherein participants fight in a virtual reality. To be\ + \ able to play Rhyme, you must have an \"All-Mate\" (an AI that typically looks like a pet), and the match must be\ + \ mediated by an \"Usui.\"\n\nAoba Seragaki has no interest in playing either game; he prefers to live a peaceful\ + \ life with his grandmother and All-Mate, Ren. However, after getting forcefully dragged into a dangerous Rhyme match\ + \ and hearing rumors about disappearing Rib players, all of Aoba's hopes of living a normal life are completely abolished.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2014 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 20509 + url: https://myanimelist.net/anime/20509/Fate_kaleid_liner_Prisma☆Illya_2wei + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/64175.jpg + small_image_url: https://myanimelist.net/images/anime/12/64175t.jpg + large_image_url: https://myanimelist.net/images/anime/12/64175l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/64175.webp + small_image_url: https://myanimelist.net/images/anime/12/64175t.webp + large_image_url: https://myanimelist.net/images/anime/12/64175l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DgDPgDzgC3s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/kaleid liner Prisma☆Illya 2wei! + - type: Synonym + title: Prisma Illya 2wei! + - type: Synonym + title: Prisma☆Illya 2nd Season + - type: Japanese + title: Fate/kaleid liner プリズマ☆イリヤ ツヴァイ! + - type: English + title: Fate/Kaleid Liner Prisma Illya 2Wei! + - type: German + title: Fate/kaleid liner Prisma Illya 2wei! + - type: Spanish + title: Fate/Kaleid Liner Prisma Illya 2Wei! + - type: French + title: Fate/kaleid liner Prisma Illya 2wei! + title: Fate/kaleid liner Prisma☆Illya 2wei! + title_english: Fate/Kaleid Liner Prisma Illya 2Wei! + title_japanese: Fate/kaleid liner プリズマ☆イリヤ ツヴァイ! + title_synonyms: + - Prisma Illya 2wei! + - Prisma☆Illya 2nd Season + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-07-10T00:00:00+00:00' + to: '2014-09-11T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2014 + to: + day: 11 + month: 9 + year: 2014 + string: Jul 10, 2014 to Sep 11, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.21 + scored_by: 93253 + rank: 3876 + popularity: 1575 + members: 175990 + favorites: 262 + synopsis: "Another lovely summer goes by for Illyasviel von Einzbern. Taking a break from her magical girl duties, she\ + \ enjoys her time off after collecting the Class Cards with her best friend Miyu Edelfelt. \n\nHowever, her break\ + \ comes to an abrupt end when she and Miyu are abducted by Rin Toosaka and Luviagelita Edelfelt, while out with her\ + \ friends. The magical girls learn that their work is far from over, as Clock Tower informs them that the out of control\ + \ mana thought to have been sealed continues to be dispersing throughout Fuyuki City. After heading to the origin\ + \ point of the out of control mana, Illya and Miyu are tasked with solving the anomaly. \n\nBut after casting their\ + \ spell, Illyasviel discovers that she's split into two people! As this mysterious new form darts off, she can only\ + \ wonder: what is to come from the existence of her dopplegänger, running amok in the unsuspecting town?\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: summer + year: 2014 + broadcast: + day: Thursdays + time: 01:35 + timezone: Asia/Tokyo + string: Thursdays at 01:35 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: [] + - mal_id: 21353 + url: https://myanimelist.net/anime/21353/Tokyo_ESP + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/64587.jpg + small_image_url: https://myanimelist.net/images/anime/10/64587t.jpg + large_image_url: https://myanimelist.net/images/anime/10/64587l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/64587.webp + small_image_url: https://myanimelist.net/images/anime/10/64587t.webp + large_image_url: https://myanimelist.net/images/anime/10/64587l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mJlKu9ZM1N8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo ESP + - type: Japanese + title: 東京ESP + - type: English + title: Tokyo ESP + title: Tokyo ESP + title_english: Tokyo ESP + title_japanese: 東京ESP + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-12T00:00:00+00:00' + to: '2014-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2014 + to: + day: 27 + month: 9 + year: 2014 + string: Jul 12, 2014 to Sep 27, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.57 + scored_by: 75230 + rank: 7757 + popularity: 1579 + members: 175028 + favorites: 192 + synopsis: |- + Rinka Urushiba works part time as a waitress to help out her unemployed father. By all accounts, her life in Tokyo is a relatively normal one—but her sense of normalcy begins to fade when she inexplicably sees a flying penguin one day. Chasing it all the way to the top of a building, she encounters more surprises, including flying goldfish and another person—a classmate named Kyoutarou Azuma—who can also see these strange things. After Rinka passes out when a goldfish phases through her, she wakes up an esper with the ability to phase her body through solid matter. + + However, her newfound ability is not the only strange thing about her: when she uses her powers, her hair turns white. Deciding reluctantly to use this new gift to help the city, she becomes Tokyo's new hero, dubbed the "White Girl." Along with Kyoutarou, who gained the power of teleportation, Rinka begins righting the wrongs in the city while fighting other espers who have much less noble intentions. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2014 + broadcast: + day: Saturdays + time: 01:35 + timezone: Asia/Tokyo + string: Saturdays at 01:35 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 23079 + url: https://myanimelist.net/anime/23079/Glasslip + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/64265.jpg + small_image_url: https://myanimelist.net/images/anime/12/64265t.jpg + large_image_url: https://myanimelist.net/images/anime/12/64265l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/64265.webp + small_image_url: https://myanimelist.net/images/anime/12/64265t.webp + large_image_url: https://myanimelist.net/images/anime/12/64265l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sTY1pAAGQ28?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Glasslip + - type: Japanese + title: グラスリップ + - type: English + title: Glasslip + title: Glasslip + title_english: Glasslip + title_japanese: グラスリップ + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-07-03T00:00:00+00:00' + to: '2014-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2014 + to: + day: 25 + month: 9 + year: 2014 + string: Jul 3, 2014 to Sep 25, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.43 + scored_by: 83604 + rank: 13438 + popularity: 1598 + members: 172753 + favorites: 234 + synopsis: |- + What if you hold the power to hear the voices or see fragments of images from the future? Would that be a good thing or a bad thing? Glasslip follows the life of Touko Fukami, an aspiring glass artist born from a glass artisan family. She enjoys her worry-free life in Fukui, save for the fragments of images that she sees on occasion. + + On her 18th summer, she meets the transfer student Kakeru Okikura at her school, and then again at her favorite café called Kazemichi together with all four of her friends. The voices from the future lead Kakeru to Touko, and his arrival disrupts her mediocre existence. All six of the friends must face their most unforgettable summer full of hope, affection, and heartache. + background: '' + season: summer + year: 2014 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 20709 + url: https://myanimelist.net/anime/20709/Sabage-bu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1278/98837.jpg + small_image_url: https://myanimelist.net/images/anime/1278/98837t.jpg + large_image_url: https://myanimelist.net/images/anime/1278/98837l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1278/98837.webp + small_image_url: https://myanimelist.net/images/anime/1278/98837t.webp + large_image_url: https://myanimelist.net/images/anime/1278/98837l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Wf8KtD5Q4dg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sabage-bu! + - type: Synonym + title: Survival Game Club! + - type: Japanese + title: さばげぶっ! + - type: English + title: Sabagebu! -Survival Game Club!- + - type: German + title: 'Sabagebu!: Survival Game Club' + - type: Spanish + title: 'Sabagebu!: Survival Game Club!' + - type: French + title: 'Sabagebu!: Survival Game Club!' + title: Sabage-bu! + title_english: Sabagebu! -Survival Game Club!- + title_japanese: さばげぶっ! + title_synonyms: + - Survival Game Club! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-07-06T00:00:00+00:00' + to: '2014-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2014 + to: + day: 21 + month: 9 + year: 2014 + string: Jul 6, 2014 to Sep 21, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 59554 + rank: 3010 + popularity: 1657 + members: 164793 + favorites: 593 + synopsis: |- + On a train to her new middle school, Momoka Sonokawa is preyed upon by a molester, only to be rescued by a girl wielding dual pistols. The girl turns out to be Miou Ootori, Momoka's upperclassman and president of the Aogiri Academy's Survival Game Club, called Sabage-bu for short. Noticing Momoka's aptitude with a pistol, Miou takes a liking to her and tries to persuade her to join the club. In spite of her steadfast refusal, Momoka inexplicably finds herself a member of Sabage-bu. + + Sabage-bu is anything but a typical middle-school club. Its members' socially awkward behaviors scare Momoka. Their personalities range from the fanatical to the completely delusional. They do not hold back from walking around public areas wearing ghillie suits or even bungee jumping from the school building. Thrown together with this collection of survival game maniacs, the zealously ordinary Momoka must somehow adjust to her unexpectedly wild school life. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2014 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1129 + type: anime + name: Pierrot Plus + url: https://myanimelist.net/anime/producer/1129/Pierrot_Plus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/20-2014-fall.yaml b/test/fixtures/jikan/season_matrix/20-2014-fall.yaml new file mode 100644 index 0000000..3bb9fe4 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/20-2014-fall.yaml @@ -0,0 +1,3374 @@ +metadata: + captured_at: '2026-05-11T11:33:12Z' + label: 2014-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2014/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:12 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:35a0a070e3e23438160169aa9ed6907d49d9dad0 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 268 + per_page: 25 + data: + - mal_id: 23273 + url: https://myanimelist.net/anime/23273/Shigatsu_wa_Kimi_no_Uso + images: + jpg: + image_url: https://myanimelist.net/images/anime/1405/143284.jpg + small_image_url: https://myanimelist.net/images/anime/1405/143284t.jpg + large_image_url: https://myanimelist.net/images/anime/1405/143284l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1405/143284.webp + small_image_url: https://myanimelist.net/images/anime/1405/143284t.webp + large_image_url: https://myanimelist.net/images/anime/1405/143284l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aMJpI_fEsA4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shigatsu wa Kimi no Uso + - type: Synonym + title: Kimiuso + - type: Japanese + title: 四月は君の嘘 + - type: English + title: Your Lie in April + - type: German + title: Shigatsu Wa Kimi No Uso - Sekunden in Moll + - type: Spanish + title: Your Lie in April + - type: French + title: Your Lie in April + title: Shigatsu wa Kimi no Uso + title_english: Your Lie in April + title_japanese: 四月は君の嘘 + title_synonyms: + - Kimiuso + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2014-10-10T00:00:00+00:00' + to: '2015-03-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2014 + to: + day: 20 + month: 3 + year: 2015 + string: Oct 10, 2014 to Mar 20, 2015 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.64 + scored_by: 1472833 + rank: 89 + popularity: 24 + members: 2426057 + favorites: 90315 + synopsis: |- + Kousei Arima is a child prodigy known as the "Human Metronome" for playing the piano with precision and perfection. Guided by a strict mother and rigorous training, Kousei dominates every competition he enters, earning the admiration of his musical peers and praise from audiences. When his mother suddenly passes away, the subsequent trauma makes him unable to hear the sound of a piano, and he never takes the stage thereafter. + + Nowadays, Kousei lives a quiet and unassuming life as a junior high school student alongside his friends Tsubaki Sawabe and Ryouta Watari. While struggling to get over his mother's death, he continues to cling to music. His monochrome life turns upside down the day he encounters the eccentric violinist Kaori Miyazono, who thrusts him back into the spotlight as her accompanist. Through a little lie, these two young musicians grow closer together as Kaori tries to fill Kousei's world with color. + + [Written by MAL Rewrite] + background: Winner in the anime division of the 2016 Sugoi Japan® Awards. + season: fall + year: 2014 + broadcast: + day: Fridays + time: 01:20 + timezone: Asia/Tokyo + string: Fridays at 01:20 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 23755 + url: https://myanimelist.net/anime/23755/Nanatsu_no_Taizai + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/65409.jpg + small_image_url: https://myanimelist.net/images/anime/8/65409t.jpg + large_image_url: https://myanimelist.net/images/anime/8/65409l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/65409.webp + small_image_url: https://myanimelist.net/images/anime/8/65409t.webp + large_image_url: https://myanimelist.net/images/anime/8/65409l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wxcvbL6o55M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nanatsu no Taizai + - type: Japanese + title: 七つの大罪 + - type: English + title: The Seven Deadly Sins + - type: German + title: The Seven Deadly Sins + - type: French + title: The Seven Deadly Sins + title: Nanatsu no Taizai + title_english: The Seven Deadly Sins + title_japanese: 七つの大罪 + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: '2015-03-29T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: 29 + month: 3 + year: 2015 + string: Oct 5, 2014 to Mar 29, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.6 + scored_by: 1433216 + rank: 1821 + popularity: 33 + members: 2211022 + favorites: 19440 + synopsis: "In a world similar to the European Middle Ages, the feared yet revered Holy Knights of Britannia use immensely\ + \ powerful magic to protect the region of Britannia and its kingdoms. However, a small subset of the Knights supposedly\ + \ betrayed their homeland and turned their blades against their comrades in an attempt to overthrow the ruler of Liones.\ + \ They were defeated by the Holy Knights, but rumors continued to persist that these legendary knights, called the\ + \ \"Seven Deadly Sins,\" were still alive. Ten years later, the Holy Knights themselves staged a coup d’état, and\ + \ thus became the new, tyrannical rulers of the Kingdom of Liones.\n\nBased on the best-selling manga series of the\ + \ same name, Nanatsu no Taizai follows the adventures of Elizabeth, the third princess of the Kingdom of Liones, and\ + \ her search for the Seven Deadly Sins. With their help, she endeavors to not only take back her kingdom from the\ + \ Holy Knights, but to also seek justice in an unjust world.\n \n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2014 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 22535 + url: https://myanimelist.net/anime/22535/Kiseijuu__Sei_no_Kakuritsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/73178.jpg + small_image_url: https://myanimelist.net/images/anime/3/73178t.jpg + large_image_url: https://myanimelist.net/images/anime/3/73178l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/73178.webp + small_image_url: https://myanimelist.net/images/anime/3/73178t.webp + large_image_url: https://myanimelist.net/images/anime/3/73178l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9Oe9umzw1Gc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kiseijuu: Sei no Kakuritsu' + - type: Synonym + title: Parasite + - type: Synonym + title: Parasitic Beasts + - type: Synonym + title: Parasyte + - type: Japanese + title: 寄生獣 セイの格率 + - type: English + title: 'Parasyte: The Maxim' + - type: German + title: Parasyte -the maxim- + - type: Spanish + title: Parasyte -the maxim- + - type: French + title: Parasite -la maxime- + title: 'Kiseijuu: Sei no Kakuritsu' + title_english: 'Parasyte: The Maxim' + title_japanese: 寄生獣 セイの格率 + title_synonyms: + - Parasite + - Parasitic Beasts + - Parasyte + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-10-09T00:00:00+00:00' + to: '2015-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2014 + to: + day: 26 + month: 3 + year: 2015 + string: Oct 9, 2014 to Mar 26, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.32 + scored_by: 1252539 + rank: 308 + popularity: 43 + members: 2040862 + favorites: 36786 + synopsis: "All of a sudden, they arrived: parasitic aliens that descended upon Earth and quickly infiltrated humanity\ + \ by burrowing into the brains of vulnerable targets. These insatiable beings acquire full control of their host and\ + \ are able to morph into a variety of forms in order to feed on unsuspecting prey.\n \nSixteen-year-old high school\ + \ student Shinichi Izumi falls victim to one of these parasites, but it fails to take over his brain, ending up in\ + \ his right hand instead. Unable to relocate, the parasite, now named Migi, has no choice but to rely on Shinichi\ + \ in order to stay alive. Thus, the pair is forced into an uneasy coexistence and must defend themselves from hostile\ + \ parasites that hope to eradicate this new threat to their species.\n\n[Written by MAL Rewrite]" + background: 'The anime was simulcast by Crunchyroll outside of Asia. Aside from the manga and anime, the series also + has two live-action film adaptations. The Chinese Ministry of Culture blacklisted Kiseijuu: Sei no Kakuritsu as well + as 37 other works on June 9, 2015.' + season: fall + year: 2014 + broadcast: + day: Thursdays + time: 01:29 + timezone: Asia/Tokyo + string: Thursdays at 01:29 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1423 + type: anime + name: Forecast Communications + url: https://myanimelist.net/anime/producer/1423/Forecast_Communications + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 22297 + url: https://myanimelist.net/anime/22297/Fate_stay_night__Unlimited_Blade_Works + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/67333.jpg + small_image_url: https://myanimelist.net/images/anime/12/67333t.jpg + large_image_url: https://myanimelist.net/images/anime/12/67333l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/67333.webp + small_image_url: https://myanimelist.net/images/anime/12/67333t.webp + large_image_url: https://myanimelist.net/images/anime/12/67333l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/61RuoLIlCUM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night: Unlimited Blade Works' + - type: Synonym + title: Fate/stay night (2014) + - type: Synonym + title: Fate - Stay Night + - type: Japanese + title: Fate/stay night [Unlimited Blade Works] + - type: English + title: Fate/stay night [Unlimited Blade Works] + - type: German + title: Fate/stay night [Unlimited Blade Works] + - type: Spanish + title: Fate/stay night [Unlimited Blade Works] + - type: French + title: Fate/stay night [Unlimited Blade Works] + title: 'Fate/stay night: Unlimited Blade Works' + title_english: Fate/stay night [Unlimited Blade Works] + title_japanese: Fate/stay night [Unlimited Blade Works] + title_synonyms: + - Fate/stay night (2014) + - Fate - Stay Night + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-10-12T00:00:00+00:00' + to: '2014-12-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2014 + to: + day: 28 + month: 12 + year: 2014 + string: Oct 12, 2014 to Dec 28, 2014 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 8.18 + scored_by: 731636 + rank: 479 + popularity: 142 + members: 1175774 + favorites: 17449 + synopsis: "The Holy Grail War is a battle royale among seven magi who serve as Masters. Masters, through the use of\ + \ the command seals they are given when they enter the war, command Heroic Spirits known as Servants to fight for\ + \ them in battle. In the Fifth Holy Grail War, Rin Toosaka is among the magi entering the competition. With her Servant,\ + \ Archer, she hopes to obtain the ultimate prize—the Holy Grail, a magical artifact capable of granting its wielder\ + \ any wish.\n \nOne of Rin's classmates, Shirou Emiya, accidentally enters the competition and ends up commanding\ + \ a Servant of his own known as Saber. As they find themselves facing mutual enemies, Rin and Shirou decide to form\ + \ a temporary alliance as they challenge their opponents in the Holy Grail War. \n\n[Written by MAL Rewrite]" + background: 'Fate/Stay Night: Unlimited Blade Works is based on the second route of Type-Moon''s Fate/stay Night visual + novel. It was originally released in 2004 for Microsoft Windows and later ported to the PS2 and PS Vita in the form + of an updated edition, with bonus content, titled Fate/stay Night: Réalta Nua.' + season: fall + year: 2014 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 25013 + url: https://myanimelist.net/anime/25013/Akatsuki_no_Yona + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/64225.jpg + small_image_url: https://myanimelist.net/images/anime/9/64225t.jpg + large_image_url: https://myanimelist.net/images/anime/9/64225l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/64225.webp + small_image_url: https://myanimelist.net/images/anime/9/64225t.webp + large_image_url: https://myanimelist.net/images/anime/9/64225l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mbXTfrDueNw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akatsuki no Yona + - type: Synonym + title: 'Yona: The girl standing in the blush of dawn' + - type: Japanese + title: 暁のヨナ + - type: English + title: Yona of the Dawn + - type: German + title: 'Akatsuki No Yona: Prinzessin der Morgendämmerung' + - type: Spanish + title: 'Akatsuka no Yona: Yona of the Dawn' + - type: French + title: 'Yona: Princesse de l''Aube' + title: Akatsuki no Yona + title_english: Yona of the Dawn + title_japanese: 暁のヨナ + title_synonyms: + - 'Yona: The girl standing in the blush of dawn' + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-10-07T00:00:00+00:00' + to: '2015-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2014 + to: + day: 24 + month: 3 + year: 2015 + string: Oct 7, 2014 to Mar 24, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.04 + scored_by: 453594 + rank: 684 + popularity: 215 + members: 938494 + favorites: 17976 + synopsis: |- + The kingdom of Kouka is blessed with a beautiful princess whose childlike innocence charms all who come across her. Named Yona, she has grown up sheltered in the royal palace, shielded from any danger that may befall her. However, all good things must come to an end. + + Yona's perfect world comes crashing down when a heinous act of treason threatens to erase all that she holds dear, including her birthright as the princess of Kouka. Left with no one to trust but her childhood friend and loyal bodyguard Son Hak, she is forced to flee the palace. Faced with the perils of surviving in the wild with a target on her back, Yona realizes that her kingdom is no longer the safe haven it once was. + + Free from the shackles of naivety, Yona vows to do everything in her power to become strong enough to crush her enemies. With Hak by her side, she must piece together the remains of an ancient legend that might be the key to reclaiming her kingdom from those who conspired to steal it from her. + + [Written by MAL Rewrite] + background: The cast members from the drama CD reprised their roles in the anime. + season: fall + year: 2014 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1225 + type: anime + name: Age Global Networks + url: https://myanimelist.net/anime/producer/1225/Age_Global_Networks + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1637 + type: anime + name: Top-Insight International + url: https://myanimelist.net/anime/producer/1637/Top-Insight_International + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 25157 + url: https://myanimelist.net/anime/25157/Trinity_Seven + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/67795.jpg + small_image_url: https://myanimelist.net/images/anime/12/67795t.jpg + large_image_url: https://myanimelist.net/images/anime/12/67795l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/67795.webp + small_image_url: https://myanimelist.net/images/anime/12/67795t.webp + large_image_url: https://myanimelist.net/images/anime/12/67795l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DO49_W622Rs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Trinity Seven + - type: Japanese + title: トリニティセブン + - type: English + title: Trinity Seven + title: Trinity Seven + title_english: Trinity Seven + title_japanese: トリニティセブン + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-10-08T00:00:00+00:00' + to: '2014-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2014 + to: + day: 24 + month: 12 + year: 2014 + string: Oct 8, 2014 to Dec 24, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.03 + scored_by: 488585 + rank: 4991 + popularity: 230 + members: 902883 + favorites: 3866 + synopsis: |- + One day, the bright red sun stopped shining, causing the "Breakdown Phenomenon"—the destruction of Arata Kasuga's town and the disappearance of the people inhabiting it. All, however, is not yet lost; by utilizing the magical grimoire given to him by his childhood friend and cousin Hijiri Kasuga, Arata's world gets artificially reconstructed. + + In order to investigate the phenomenon, Lilith Asami appears before Arata, whose artificial world suddenly disintegrates. He is given two choices: hand over the book, or die. However, Arata chooses the third option—enrolling in the top-secret magic school Royal Biblia Academy, where six other magical users await him. Together with Lilith, these six form the Trinity Seven, the elite of the school who each bolster their own power and skill. + + With the ambition to save Hijiri and the help of his newfound friends, Arata stops at nothing to prevent the destruction of his beloved hometown and to bring his best friend back. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Wednesdays + time: 01:40 + timezone: Asia/Tokyo + string: Wednesdays at 01:40 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1569 + type: anime + name: Seven Arcs Pictures + url: https://myanimelist.net/anime/producer/1569/Seven_Arcs_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 22147 + url: https://myanimelist.net/anime/22147/Amagi_Brilliant_Park + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/85435.jpg + small_image_url: https://myanimelist.net/images/anime/5/85435t.jpg + large_image_url: https://myanimelist.net/images/anime/5/85435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/85435.webp + small_image_url: https://myanimelist.net/images/anime/5/85435t.webp + large_image_url: https://myanimelist.net/images/anime/5/85435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ylxiq33nd-A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Amagi Brilliant Park + - type: Synonym + title: Amaburi + - type: Japanese + title: 甘城ブリリアントパーク + - type: English + title: Amagi Brilliant Park + title: Amagi Brilliant Park + title_english: Amagi Brilliant Park + title_japanese: 甘城ブリリアントパーク + title_synonyms: + - Amaburi + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-10-07T00:00:00+00:00' + to: '2014-12-26T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2014 + to: + day: 26 + month: 12 + year: 2014 + string: Oct 7, 2014 to Dec 26, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 371971 + rank: 2463 + popularity: 340 + members: 702348 + favorites: 2808 + synopsis: |- + Seiya Kanie, a smart and extremely narcissistic high school student, believes that the beautiful but reserved Isuzu Sento has invited him on a date at an amusement park called Amagi Brilliant Park. Much to his chagrin, not only is the location a run-down facility, the supposed date is merely a recruitment tour where Sento and Princess Latifa Fleuranza, the owner of the theme park, ask him to become the park's new manager. Their cause for desperation? As stipulated in a land-use contract, Amagi has less than three months to meet a quota of 500,000 guests, or the park will be closed for good and the land redeveloped by a greedy real-estate company. + + Seiya is won over by the revelation that Amagi is no ordinary amusement park; many of its employees are Maple Landers—mysterious magical beings who live in the human world and are nourished by the energy created by people having fun. Entrusted with the hopes and dreams of this far-off enchanted land, Seiya must now use his many skills to bring Amagi back on its feet, or watch it crumble before his eyes. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Fridays + time: 02:16 + timezone: Asia/Tokyo + string: Fridays at 02:16 (JST) + producers: + - mal_id: 52 + type: anime + name: Avex Entertainment + url: https://myanimelist.net/anime/producer/52/Avex_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1213 + type: anime + name: Mobcast + url: https://myanimelist.net/anime/producer/1213/Mobcast + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 23281 + url: https://myanimelist.net/anime/23281/Psycho-Pass_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1197/100616.jpg + small_image_url: https://myanimelist.net/images/anime/1197/100616t.jpg + large_image_url: https://myanimelist.net/images/anime/1197/100616l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1197/100616.webp + small_image_url: https://myanimelist.net/images/anime/1197/100616t.webp + large_image_url: https://myanimelist.net/images/anime/1197/100616l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QKjI60UUg1M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Psycho-Pass 2 + - type: Synonym + title: Psycho-Pass Second Season + - type: Synonym + title: Psychopath 2nd Season + - type: Japanese + title: PSYCHO-PASS サイコパス 2 + - type: English + title: Psycho-Pass 2 + - type: German + title: Psycho-Pass Staffel 2 + - type: Spanish + title: Psycho - Pass Temporada 2 + - type: French + title: Psycho-Pass Saison 2 + title: Psycho-Pass 2 + title_english: Psycho-Pass 2 + title_japanese: PSYCHO-PASS サイコパス 2 + title_synonyms: + - Psycho-Pass Second Season + - Psychopath 2nd Season + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2014-10-10T00:00:00+00:00' + to: '2014-12-19T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2014 + to: + day: 19 + month: 12 + year: 2014 + string: Oct 10, 2014 to Dec 19, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.41 + scored_by: 370973 + rank: 2690 + popularity: 348 + members: 694158 + favorites: 1511 + synopsis: |- + A year and a half after the events of the original sci-fi psychological thriller, Akane Tsunemori continues her work as an inspector—enforcing the Sibyl System's judgments. Joining her are new enforcers and junior inspector Mika Shimotsuki, a young woman blindly and inflexibly loyal to Sibyl. As Akane ponders both the nature of her job and the legitimacy of Sibyl's verdicts, a disturbing new menace emerges. + + A mysterious figure has discovered a way to control the Crime Coefficient—a number compiled from mental scans that allows Sibyl to gauge psychological health and identify potential criminals. Through these means, he is able to murder an enforcer, leaving behind a cryptic clue: "WC?" scrawled in blood on a wall. + + Akane and the rest of Division 01 soon find themselves playing a deadly game against their new foe, coming face-to-face with a conspiracy threatening not only the authority of the Sibyl System, but the very foundation of Akane's own convictions. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Fridays + time: 00:50 + timezone: Asia/Tokyo + string: Fridays at 00:50 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 16870 + url: https://myanimelist.net/anime/16870/The_Last__Naruto_the_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1491/134498.jpg + small_image_url: https://myanimelist.net/images/anime/1491/134498t.jpg + large_image_url: https://myanimelist.net/images/anime/1491/134498l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1491/134498.webp + small_image_url: https://myanimelist.net/images/anime/1491/134498t.webp + large_image_url: https://myanimelist.net/images/anime/1491/134498l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tA3yE4_t6SY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'The Last: Naruto the Movie' + - type: Synonym + title: 'Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last' + - type: Japanese + title: THE LAST NARUTO THE MOVIE + - type: English + title: 'Naruto Shippuden the Movie 7: The Last' + - type: German + title: 'Naruto Film 7: The Last' + - type: Spanish + title: 'Naruto Película 7: The Last' + - type: French + title: 'Naruto Film 7: The Last' + title: 'The Last: Naruto the Movie' + title_english: 'Naruto Shippuden the Movie 7: The Last' + title_japanese: THE LAST NARUTO THE MOVIE + title_synonyms: + - 'Naruto Movie 10: Naruto the Movie: The Last,Naruto: Shippuuden Movie 7 - The Last' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-12-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 12 + year: 2014 + to: + day: null + month: null + year: null + string: Dec 6, 2014 + duration: 1 hr 52 min + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 442416 + rank: 1194 + popularity: 366 + members: 669527 + favorites: 2343 + synopsis: |- + Two years have passed since the end of the Fourth Great Ninja War. Konohagakure has remained in a state of peace and harmony—until Sixth Hokage Kakashi Hatake notices the moon is dangerously approaching the Earth, posing the threat of planetary ruin. + + Amidst the grave ordeal, Konoha is invaded by a new evil, Toneri Oosutuski, who suddenly abducts Hinata Hyuuga's little sister Hanabi. Kakashi dispatches a skilled ninja team comprised of Naruto Uzumaki, Sakura Haruno, Shikamaru Nara, Sai, and Hinata in an effort to rescue Hanabi from the diabolical clutches of Toneri. However, during their mission, the team faces several obstacles that challenge them, foiling their efforts. + + With her abduction, the relationships the team share with one another are tested, and with the world reaching the brink of destruction, they must race against time to ensure the safety of their planet. Meanwhile, as the battle ensues, Naruto is driven to fight for something greater than he has ever imagined—love. + + [Written by MAL Rewrite] + background: 'The events in the film The Last: Naruto the Movie take place chronologically between chapters 699 and 700 + of the original manga. It is the tenth animated film in the Naruto series and was made to commemorate the manga''s + 15th anniversary.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 17729 + url: https://myanimelist.net/anime/17729/Grisaia_no_Kajitsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1645/112632.jpg + small_image_url: https://myanimelist.net/images/anime/1645/112632t.jpg + large_image_url: https://myanimelist.net/images/anime/1645/112632l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1645/112632.webp + small_image_url: https://myanimelist.net/images/anime/1645/112632t.webp + large_image_url: https://myanimelist.net/images/anime/1645/112632l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/970KFTXP4YQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Grisaia no Kajitsu + - type: Synonym + title: Le Fruit de la Grisaia + - type: Japanese + title: グリザイアの果実 + - type: English + title: The Fruit of Grisaia + - type: German + title: The Fruit of Grisaia + - type: Spanish + title: Le Fruit de la Grisaia + - type: French + title: Le Fruit de la Grisaia + title: Grisaia no Kajitsu + title_english: The Fruit of Grisaia + title_japanese: グリザイアの果実 + title_synonyms: + - Le Fruit de la Grisaia + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: '2014-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: 28 + month: 12 + year: 2014 + string: Oct 5, 2014 to Dec 28, 2014 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.45 + scored_by: 330823 + rank: 2475 + popularity: 372 + members: 657915 + favorites: 4455 + synopsis: |- + Yuuji Kazami is a transfer student who has just been admitted into Mihama Academy. He wants to live an ordinary high school life, but this dream of his may not come true any time soon as Mihama Academy is quite the opposite. Consisting of only the principal and five other students, all of whom are girls, Yuuji becomes acquainted with each of them, discovering more about their personalities as socialization is inevitable. Slowly, he begins to learn about the truth behind the small group of students occupying the academy—they each have their own share of traumatic experiences which are tucked away from the world. + + Mihama Academy acts as a home for these girls, they are the "fruit" which fell from their trees and have begun to decay. It is up to Yuuji to become the catalyst to save them from themselves, but how can he save another when he cannot even save himself? + + [Written by MAL Rewrite] + background: Grisaia no Kajitsu is based on a visual novel by FrontWing. Some of the visual novel's voice actresses reprise + their roles in the anime. + season: fall + year: 2014 + broadcast: + day: Sundays + time: '20:30' + timezone: Asia/Tokyo + string: Sundays at 20:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 2202 + type: anime + name: Front Wing + url: https://myanimelist.net/anime/producer/2202/Front_Wing + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 23321 + url: https://myanimelist.net/anime/23321/Log_Horizon_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/68097.jpg + small_image_url: https://myanimelist.net/images/anime/5/68097t.jpg + large_image_url: https://myanimelist.net/images/anime/5/68097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/68097.webp + small_image_url: https://myanimelist.net/images/anime/5/68097t.webp + large_image_url: https://myanimelist.net/images/anime/5/68097l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lJrCR6up9jE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Log Horizon 2nd Season + - type: Synonym + title: Log Horizon Second Season + - type: Synonym + title: Log Horizon Dai 2 Series + - type: Japanese + title: ログ・ホライズン 第2シリーズ + - type: English + title: Log Horizon 2 + - type: German + title: Log Horizon 2 + - type: Spanish + title: Log Horizon 2 + - type: French + title: Log Horizon 2 + title: Log Horizon 2nd Season + title_english: Log Horizon 2 + title_japanese: ログ・ホライズン 第2シリーズ + title_synonyms: + - Log Horizon Second Season + - Log Horizon Dai 2 Series + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2014-10-04T00:00:00+00:00' + to: '2015-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2014 + to: + day: 28 + month: 3 + year: 2015 + string: Oct 4, 2014 to Mar 28, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 358152 + rank: 2019 + popularity: 381 + members: 647986 + favorites: 1411 + synopsis: |- + After being trapped in the world of Elder Tale for six months, Shiroe and the other Adventurers have begun to get the hang of things in their new environment. The Adventurers are starting to gain the trust of the People of the Land, and Akiba has flourished thanks to the law and order established by Shiroe's Round Table Alliance, regaining its everyday liveliness. Despite this success, however, the Alliance faces a new crisis: they are running out of funds to govern Akiba, and spies from the Minami district have infiltrated the city. + + As formidable forces rise in other districts, there is also a need to discover more about the vast new world they are trapped in—leading Shiroe to decide that the time has come to venture outside the city. Accompanied by his friend Naotsugu and the Sage of Mirror Lake Regan, the calculative Shiroe makes his move, hoping to unravel new possibilities and eventually find a way home. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 25781 + url: https://myanimelist.net/anime/25781/Shingeki_no_Kyojin__Kuinaki_Sentaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/69497.jpg + small_image_url: https://myanimelist.net/images/anime/8/69497t.jpg + large_image_url: https://myanimelist.net/images/anime/8/69497l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/69497.webp + small_image_url: https://myanimelist.net/images/anime/8/69497t.webp + large_image_url: https://myanimelist.net/images/anime/8/69497l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zDjZS2PSZ9o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: Kuinaki Sentaku' + - type: Synonym + title: 'Shingeki no Kyojin: Birth of Levi' + - type: Japanese + title: 進撃の巨人 悔いなき選択 + - type: English + title: 'Attack on Titan: No Regrets' + title: 'Shingeki no Kyojin: Kuinaki Sentaku' + title_english: 'Attack on Titan: No Regrets' + title_japanese: 進撃の巨人 悔いなき選択 + title_synonyms: + - 'Shingeki no Kyojin: Birth of Levi' + type: OVA + source: Visual novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2014-12-09T00:00:00+00:00' + to: '2015-04-09T00:00:00+00:00' + prop: + from: + day: 9 + month: 12 + year: 2014 + to: + day: 9 + month: 4 + year: 2015 + string: Dec 9, 2014 to Apr 9, 2015 + duration: 27 min per ep + rating: R - 17+ (violence & profanity) + score: 8.42 + scored_by: 336349 + rank: 215 + popularity: 441 + members: 564730 + favorites: 2035 + synopsis: |- + Many years before becoming the famed captain of the Survey Corps, a young Levi struggles to survive in the capital's garbage dump, the Underground. As the boss of his own criminal operation, Levi attempts to get by with meager earnings while aided by fellow criminals, Isabel Magnolia and Farlan Church. With little hope for the future, Levi accepts a deal from the anti-expedition faction leader Nicholas Lobov, who promises the trio citizenship aboveground if they are able to successfully assassinate Erwin Smith, a squad leader of the Survey Corps. + + As Levi and Erwin cross paths, Erwin acknowledges Levi's agility and skill and gives him the option to either become part of the expedition team, or be turned over to the Military Police, to atone for his crimes. Now closer to the man they are tasked to kill, the group plans to complete their mission and save themselves from a grim demise in the dim recesses of their past home. However, they are about to learn that the surface world is not as liberating as they had thought and that sometimes, freedom can come at a heavy price. + + Based on the popular spin-off manga of the same name, Shingeki no Kyojin: Kuinaki Sentaku illustrates the encounter between two of Shingeki no Kyojin's pivotal characters, as well as the events of the 23rd expedition beyond the walls. + + [Written by MAL Rewrite] + background: 'Shingeki no Kyojin: Kuinaki Sentaku is based on . The visual novel was bundled with the first press release + of the 6th Blu-ray volume of the anime''s 1st season and was supervised by Shingeki no Kyojin creator Hajime Isayama. + It was later adapted into a 2-volume manga series which was serialized in shoujo magazine and illustrated by . The + OVA was released for the Western audience when bundled with Kodansha Comics USA''s Attack on Titan Special Edition + manga. The first part of the OVA was included with the manga''s 18th volume on April 5, 2016 while the second part + was included with the 19th volume''s release on August 2, 2016.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 23673 + url: https://myanimelist.net/anime/23673/Ookami_Shoujo_to_Kuro_Ouji + images: + jpg: + image_url: https://myanimelist.net/images/anime/1728/147375.jpg + small_image_url: https://myanimelist.net/images/anime/1728/147375t.jpg + large_image_url: https://myanimelist.net/images/anime/1728/147375l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1728/147375.webp + small_image_url: https://myanimelist.net/images/anime/1728/147375t.webp + large_image_url: https://myanimelist.net/images/anime/1728/147375l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tZJPQfq2UNk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ookami Shoujo to Kuro Ouji + - type: Synonym + title: Ookami Shoujo to Kuroouji + - type: Synonym + title: Wolf Girl & Black Prince + - type: Japanese + title: オオカミ少女と黒王子 + - type: English + title: Wolf Girl & Black Prince + - type: German + title: Wolf Girl & Black Prince + - type: Spanish + title: 'Ookami Shoujo to Kuro Ouji: Wolf Girl & Black Prince' + - type: French + title: Wolf Girl and Black Prince + title: Ookami Shoujo to Kuro Ouji + title_english: Wolf Girl & Black Prince + title_japanese: オオカミ少女と黒王子 + title_synonyms: + - Ookami Shoujo to Kuroouji + - Wolf Girl & Black Prince + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: '2014-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: 21 + month: 12 + year: 2014 + string: Oct 5, 2014 to Dec 21, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.99 + scored_by: 269771 + rank: 5196 + popularity: 520 + members: 502815 + favorites: 2017 + synopsis: |- + Erika Shinohara has taken to lying about her romantic exploits to earn the respect of her new friends. So when they ask for a picture of her "boyfriend," she hastily snaps a photo of a handsome stranger, whom her friends recognize as the popular and kind-hearted Kyouya Sata. + + Trapped in her own web of lies and desperately trying to avoid humiliation, Erika explains her predicament to Kyouya, hoping he will pretend to be her boyfriend. But Kyouya is not the angel he appears to be: he is actually a mean-spirited sadist who forces Erika to become his "dog" in exchange for keeping her secret. + + Begrudgingly accepting his deal, Erika soon begins to see glimpses of the real Kyouya beneath the multiple layers of his outer persona. As she finds herself falling for him, she can't help but question if he will ever feel the same way about her. Will Kyouya finally make an honest woman out of Erika, or is she destined to be a "wolf girl" forever? + + [Written by MAL Rewrite] + background: Ookami Shoujo to Kuro Ouji covers the storyline of 21 chapters of the manga adaptation, ending with events + from volume 6. The anime has been licensed by Madman Entertainment in Australia and by Sentai Filmworks in the United + States. + season: fall + year: 2014 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 333 + type: anime + name: TYO Animations + url: https://myanimelist.net/anime/producer/333/TYO_Animations + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 25835 + url: https://myanimelist.net/anime/25835/Shirobako + images: + jpg: + image_url: https://myanimelist.net/images/anime/1460/141897.jpg + small_image_url: https://myanimelist.net/images/anime/1460/141897t.jpg + large_image_url: https://myanimelist.net/images/anime/1460/141897l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1460/141897.webp + small_image_url: https://myanimelist.net/images/anime/1460/141897t.webp + large_image_url: https://myanimelist.net/images/anime/1460/141897l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fpp0mfi6HmY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shirobako + - type: Synonym + title: White Box + - type: Japanese + title: SHIROBAKO + - type: English + title: Shirobako + title: Shirobako + title_english: Shirobako + title_japanese: SHIROBAKO + title_synonyms: + - White Box + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2014-10-09T00:00:00+00:00' + to: '2015-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2014 + to: + day: 26 + month: 3 + year: 2015 + string: Oct 9, 2014 to Mar 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 149974 + rank: 355 + popularity: 557 + members: 471234 + favorites: 6242 + synopsis: |- + It all started in Kaminoyama High School, when five best friends—Aoi Miyamori, Ema Yasuhara, Midori Imai, Shizuka Sakaki, and Misa Toudou—discovered their collective love for all things anime and formed the animation club. After making their first amateur anime together and showcasing it at the culture festival, the group vows to pursue careers in the industry, aiming to one day work together and create their own mainstream show. + + Two and a half years later, Aoi and Ema have managed to land jobs at the illustrious Musashino Animation production company. The others, however, are finding it difficult to get their dream jobs. Shizuka is feeling the weight of not being recognized as a capable voice actor, Misa has a secure yet unsatisfying career designing 3D models for a car company, and Midori is a university student intent on pursuing her dream as a story writer. These five girls will learn that the path to success is one with many diversions, but dreams can still be achieved through perseverance and a touch of eccentric creativity. + + [Written by MAL Rewrite] + background: Shirobako won the Animation Kobe Television Award in 2015. It also won the Animation of the Year award in + the Television category at the Tokyo Anime Award Festival in 2016. + season: fall + year: 2014 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 24405 + url: https://myanimelist.net/anime/24405/World_Trigger + images: + jpg: + image_url: https://myanimelist.net/images/anime/1783/106843.jpg + small_image_url: https://myanimelist.net/images/anime/1783/106843t.jpg + large_image_url: https://myanimelist.net/images/anime/1783/106843l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1783/106843.webp + small_image_url: https://myanimelist.net/images/anime/1783/106843t.webp + large_image_url: https://myanimelist.net/images/anime/1783/106843l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2oui7JLlBpk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: World Trigger + - type: Japanese + title: ワールドトリガー + - type: English + title: World Trigger + title: World Trigger + title_english: World Trigger + title_japanese: ワールドトリガー + title_synonyms: [] + type: TV + source: Manga + episodes: 73 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: '2016-04-03T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: 3 + month: 4 + year: 2016 + string: Oct 5, 2014 to Apr 3, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 161518 + rank: 1868 + popularity: 561 + members: 469352 + favorites: 3195 + synopsis: |- + When a gate to another world suddenly opens on Earth, Mikado City is invaded by strange creatures known as "Neighbors," malicious beings impervious to traditional weaponry. In response to their arrival, an organization called the Border Defense Agency has been established to combat the Neighbor menace through special weapons called "Triggers." Even though several years have passed after the gate first opened, Neighbors are still a threat and members of Border remain on guard to ensure the safety of the planet. + + Despite this delicate situation, members-in-training, such as Osamu Mikumo, are not permitted to use their Triggers outside of headquarters. But when the mysterious new student in his class is dragged into a forbidden area by bullies, they are attacked by Neighbors, and Osamu has no choice but to do what he believes is right. Much to his surprise, however, the transfer student Yuuma Kuga makes short work of the aliens, revealing that he is a humanoid Neighbor in disguise. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Sundays + time: 06:30 + timezone: Asia/Tokyo + string: Sundays at 06:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 25159 + url: https://myanimelist.net/anime/25159/Inou-Battle_wa_Nichijou-kei_no_Naka_de + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/67047.jpg + small_image_url: https://myanimelist.net/images/anime/8/67047t.jpg + large_image_url: https://myanimelist.net/images/anime/8/67047l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/67047.webp + small_image_url: https://myanimelist.net/images/anime/8/67047t.webp + large_image_url: https://myanimelist.net/images/anime/8/67047l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fIEeVqJjjIQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Inou-Battle wa Nichijou-kei no Naka de + - type: Synonym + title: InoBato + - type: Synonym + title: Inou-Battle in the Usually Daze. + - type: Synonym + title: Inou Battle Within Everyday Life + - type: Japanese + title: 異能バトルは日常系のなかで + - type: English + title: When Supernatural Battles Became Commonplace + - type: German + title: When Supernatural Battle Became Commonplace + - type: Spanish + title: 'When Supernatural Battle Became Commonplace: Inou-Battle wa Nichijou-kei no Naka de' + title: Inou-Battle wa Nichijou-kei no Naka de + title_english: When Supernatural Battles Became Commonplace + title_japanese: 異能バトルは日常系のなかで + title_synonyms: + - InoBato + - Inou-Battle in the Usually Daze. + - Inou Battle Within Everyday Life + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-10-07T00:00:00+00:00' + to: '2014-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2014 + to: + day: 23 + month: 12 + year: 2014 + string: Oct 7, 2014 to Dec 23, 2014 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.04 + scored_by: 207913 + rank: 4902 + popularity: 589 + members: 453218 + favorites: 964 + synopsis: |- + During a Literature Club meeting, the four club members—along with their faculty adviser's niece—suddenly find themselves with supernatural powers. Now capable of fabricating black flames, resident chuunibyou Jurai Andou is the most ecstatic about their new abilities; unfortunately, his own is only for show and unable to accomplish anything of substance. Moreover, he is completely outclassed by those around him: fellow club member Tomoyo Kanzaki manipulates time, Jurai's childhood friend Hatoko Kushikawa wields control over the five elements, club president Sayumi Takanashi can repair both inanimate objects and living things, and their adviser's niece Chifuyu Himeki is able to create objects out of thin air. + + However, while the mystery of why they received these powers looms overhead, very little has changed for the Literature Club. The everyday lives of these five superpowered students continue on, albeit now tinged with the supernatural. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 28025 + url: https://myanimelist.net/anime/28025/Tsukimonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/68259.jpg + small_image_url: https://myanimelist.net/images/anime/6/68259t.jpg + large_image_url: https://myanimelist.net/images/anime/6/68259l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/68259.webp + small_image_url: https://myanimelist.net/images/anime/6/68259t.webp + large_image_url: https://myanimelist.net/images/anime/6/68259l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lvAT8aJhi2k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsukimonogatari + - type: Synonym + title: 'Tsukimonogatari: Yotsugi Doll' + - type: Synonym + title: Monogatari Final Season + - type: Japanese + title: 憑物語 + - type: English + title: Tsukimonogatari + title: Tsukimonogatari + title_english: Tsukimonogatari + title_japanese: 憑物語 + title_synonyms: + - 'Tsukimonogatari: Yotsugi Doll' + - Monogatari Final Season + type: TV Special + source: Light novel + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2014-12-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 12 + year: 2014 + to: + day: null + month: null + year: null + string: Dec 31, 2014 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.08 + scored_by: 252626 + rank: 636 + popularity: 600 + members: 444842 + favorites: 954 + synopsis: |- + Koyomi Araragi is studying hard in preparation for his college entrance exams when he begins to notice something very strange: his reflection no longer appears in a mirror, a characteristic of a true vampire. Worried about the state of his body, he enlists the help of the human-like doll Yotsugi Ononoki and her master Yozuru Kagenui, an immortal oddity specialist. + + Quickly realizing what is wrong with him, Kagenui gives Araragi two choices: either abstain from using the vampiric abilities he received from Shinobu Oshino, or lose his humanity forever. + + [Written by MAL Rewrite] + background: 'Tsukimonogatari adapts the first volume of NisiOisiN''s Monogatari Series: Final Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 21843 + url: https://myanimelist.net/anime/21843/Shingeki_no_Bahamut__Genesis + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/67513.jpg + small_image_url: https://myanimelist.net/images/anime/2/67513t.jpg + large_image_url: https://myanimelist.net/images/anime/2/67513l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/67513.webp + small_image_url: https://myanimelist.net/images/anime/2/67513t.webp + large_image_url: https://myanimelist.net/images/anime/2/67513l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-meX7dpotzA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Bahamut: Genesis' + - type: Japanese + title: 神撃のバハムート GENESIS + - type: English + title: 'Rage of Bahamut: Genesis' + - type: German + title: 'Rage of Bahamut: Genesis' + - type: Spanish + title: 'Rage of Bahamut: Genesis' + - type: French + title: 'Rage of Bahamut: Genesis' + title: 'Shingeki no Bahamut: Genesis' + title_english: 'Rage of Bahamut: Genesis' + title_japanese: 神撃のバハムート GENESIS + title_synonyms: [] + type: TV + source: Card game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2014-10-06T00:00:00+00:00' + to: '2014-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2014 + to: + day: 29 + month: 12 + year: 2014 + string: Oct 6, 2014 to Dec 29, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.61 + scored_by: 187697 + rank: 1790 + popularity: 613 + members: 438897 + favorites: 1713 + synopsis: |- + Thousands of years ago, the ancient dragon Bahamut wrought havoc upon the land of Mistarcia, a world where both gods and demons live amongst mankind. Working together to prevent the world's destruction, the rival deities barely managed to seal Bahamut, agreeing to split the key between them so that the dragon would remain eternally imprisoned. + + With the world safe from the destruction of Bahamut, it is business as usual for bounty hunters like Favaro Leone. Living a laid-back, self-serving lifestyle, the amoral Favaro goes about his work while on the run from fellow bounty hunter Kaisar Lidfard, a righteous man who swears vengeance upon Favaro. However, Favaro's carefree life is thrown into chaos when he meets Amira, a mysterious woman who holds half of the key to the world's fragile peace. + + Shingeki no Bahamut: Genesis tells the story of a group of unlikely heroes who find themselves caught in the middle of an epic clash between gods and demons, forced to carve their own path in the face of the imminent storm. + + [Written by MAL Rewrite] + background: 'Shingeki no Bahamut: Genesis is the anime adaptation of Shingeki no Bahamut, a social collectible card + game created by Cygames and published by DeNA for Android and iOS platforms, which launched in 2012 and has earned + the number one title for the Top Grossing Charts for both Google Play (US) and App Store (US). Shingeki no Bahamut: + Genesis is licensed for streaming in North America by Funimation.' + season: fall + year: 2014 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 24455 + url: https://myanimelist.net/anime/24455/Madan_no_Ou_to_Vanadis + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/64911.jpg + small_image_url: https://myanimelist.net/images/anime/3/64911t.jpg + large_image_url: https://myanimelist.net/images/anime/3/64911l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/64911.webp + small_image_url: https://myanimelist.net/images/anime/3/64911t.webp + large_image_url: https://myanimelist.net/images/anime/3/64911l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TWhNpVbkdo0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Madan no Ou to Vanadis + - type: Synonym + title: Madan no Ou to Senki + - type: Synonym + title: The King of the Magic Bullet and Vanadis + - type: Japanese + title: 魔弾の王と戦姫 (ヴァナディース) + - type: English + title: Lord Marksman and Vanadis + - type: German + title: Lord Marksman and Vanadis + - type: Spanish + title: Lord Marksman y Vanadis + - type: French + title: Madan no Ô to Vanadis + title: Madan no Ou to Vanadis + title_english: Lord Marksman and Vanadis + title_japanese: 魔弾の王と戦姫 (ヴァナディース) + title_synonyms: + - Madan no Ou to Senki + - The King of the Magic Bullet and Vanadis + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-10-04T00:00:00+00:00' + to: '2014-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2014 + to: + day: 27 + month: 12 + year: 2014 + string: Oct 4, 2014 to Dec 27, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.1 + scored_by: 192920 + rank: 4608 + popularity: 692 + members: 393409 + favorites: 1090 + synopsis: |- + In a fantasy version of Europe, a war between enemy countries is brewing. One of these countries, Zhcted, has its seven regions ruled by War Maidens, known as Vanadis. Equipped with powerful dragon-carved weapons, Eleonora "Elen" Viltaria, one of the Vanadis, launches an invasion against their neighboring rival country of Brune. Eventually, Tigrevurmud "Tigre" Vorn, a young archer and an earl for Brune's region of Alsace, has his entire army decimated at Elen's hands. In a strange twist of events, Elen spares Tigre, and gives him the order, "Become mine!" What could be the meaning behind this new alliance? + + Adapted from the light novel written by Tsukasa Kawaguchi, Madan no Ou to Vanadis is an epic adventure filled with complex war tactics and beautiful women. Trapped in a multinational conflict, Tigre and Elen are swept up in a war filled with dark secrets, conspiracies, and corruption. + + [Written by MAL Rewrite] + background: Madan no Ou to Vanadis adapts the first 5 novels of Tsukasa Kawaguchi's light novel series of the same title. + season: fall + year: 2014 + broadcast: + day: Saturdays + time: '20:00' + timezone: Asia/Tokyo + string: Saturdays at 20:00 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 26349 + url: https://myanimelist.net/anime/26349/Danna_ga_Nani_wo_Itteiru_ka_Wakaranai_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/75287.jpg + small_image_url: https://myanimelist.net/images/anime/7/75287t.jpg + large_image_url: https://myanimelist.net/images/anime/7/75287l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/75287.webp + small_image_url: https://myanimelist.net/images/anime/7/75287t.webp + large_image_url: https://myanimelist.net/images/anime/7/75287l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UZhI7a2j9mk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Danna ga Nani wo Itteiru ka Wakaranai Ken + - type: Synonym + title: Danna ga Nani wo Itteiru ka Wakaranai Ken + - type: Japanese + title: 旦那が何を言っているかわからない件 + - type: English + title: I Can't Understand What My Husband Is Saying + - type: German + title: I Can't Understand What My Husband Is Saying + - type: Spanish + title: No Puedo Entender lo que Dice mi Esposo + title: Danna ga Nani wo Itteiru ka Wakaranai Ken + title_english: I Can't Understand What My Husband Is Saying + title_japanese: 旦那が何を言っているかわからない件 + title_synonyms: + - Danna ga Nani wo Itteiru ka Wakaranai Ken + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-10-03T00:00:00+00:00' + to: '2014-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2014 + to: + day: 26 + month: 12 + year: 2014 + string: Oct 3, 2014 to Dec 26, 2014 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 193721 + rank: 3466 + popularity: 739 + members: 372679 + favorites: 842 + synopsis: |- + Though they couldn't be any more different, love has managed to blossom between Hajime Tsunashi, a hardcore otaku who shuts himself in at home while making a living off his blog, and his wife Kaoru—a hard-working office lady who, in contrast, is fairly ordinary, albeit somewhat of a crazy drunk. As this unlikely couple discovers, love is much more than just a first kiss or a wedding; the years that come afterward in the journey of marriage brings with it many joys as well as challenges. + + Whether due to their quirky personalities or the peculiar people surrounding them, Hajime and Kaoru find themselves caught up in a variety of baffling and ridiculous antics. But despite the struggles they face, the love that ties them together spurs them to move forward and strive to become better people in order to bring their partner happiness. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Fridays + time: 01:00 + timezone: Asia/Tokyo + string: Fridays at 01:00 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 615 + type: anime + name: Dream Creation + url: https://myanimelist.net/anime/producer/615/Dream_Creation + licensors: [] + studios: + - mal_id: 541 + type: anime + name: Seven + url: https://myanimelist.net/anime/producer/541/Seven + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 27821 + url: https://myanimelist.net/anime/27821/Fate_stay_night__Unlimited_Blade_Works_Prologue + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/67425.jpg + small_image_url: https://myanimelist.net/images/anime/9/67425t.jpg + large_image_url: https://myanimelist.net/images/anime/9/67425l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/67425.webp + small_image_url: https://myanimelist.net/images/anime/9/67425t.webp + large_image_url: https://myanimelist.net/images/anime/9/67425l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yarWSqrMDUs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night: Unlimited Blade Works Prologue' + - type: Synonym + title: Fate/stay night (2014) Episode 00 + - type: Japanese + title: Fate/stay night [Unlimited Blade Works] プロローグ + - type: English + title: Fate/stay night [Unlimited Blade Works] - Prologue + title: 'Fate/stay night: Unlimited Blade Works Prologue' + title_english: Fate/stay night [Unlimited Blade Works] - Prologue + title_japanese: Fate/stay night [Unlimited Blade Works] プロローグ + title_synonyms: + - Fate/stay night (2014) Episode 00 + type: TV Special + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: null + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: null + month: null + year: null + string: Oct 5, 2014 + duration: 51 min + rating: PG-13 - Teens 13 or older + score: 8.03 + scored_by: 215000 + rank: 708 + popularity: 787 + members: 349547 + favorites: 465 + synopsis: |- + In Fuyuki City, a long-lived ritual involving battles between seven magi and their servants is taking place. This ritual is known as the Holy Grail War and it promises to grant the victor any wish. With the war now entering its fifth iteration, the stage is set for Rin Toosaka to succeed her father's legacy. + + Rin wishes to summon Saber, said to be the most powerful class. But when she miscalculates and summons Archer instead, how will she fare in the battles that lie ahead of her? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 24701 + url: https://myanimelist.net/anime/24701/Mushishi_Zoku_Shou_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/68095.jpg + small_image_url: https://myanimelist.net/images/anime/9/68095t.jpg + large_image_url: https://myanimelist.net/images/anime/9/68095l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/68095.webp + small_image_url: https://myanimelist.net/images/anime/9/68095t.webp + large_image_url: https://myanimelist.net/images/anime/9/68095l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zuX3P6ynAgc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mushishi Zoku Shou 2nd Season + - type: Synonym + title: Mushishi Zoku Shou 2nd Season + - type: Japanese + title: 蟲師 続章 + - type: English + title: 'Mushi-shi: Next Passage Part 2' + title: Mushishi Zoku Shou 2nd Season + title_english: 'Mushi-shi: Next Passage Part 2' + title_japanese: 蟲師 続章 + title_synonyms: + - Mushishi Zoku Shou 2nd Season + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-10-19T00:00:00+00:00' + to: '2014-12-21T00:00:00+00:00' + prop: + from: + day: 19 + month: 10 + year: 2014 + to: + day: 21 + month: 12 + year: 2014 + string: Oct 19, 2014 to Dec 21, 2014 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.72 + scored_by: 117023 + rank: 61 + popularity: 956 + members: 293445 + favorites: 1582 + synopsis: |- + Ghostly, primordial beings known as Mushi continue to cause mysterious changes in the lives of humans. The travelling Mushishi, Ginko, persists in trying to set right the strange and unsettling situations he encounters. Time loops, living shadows, and telepathy are among the overt effects of interference from Mushi, but more subtle symptoms that take years to be noticed also rouse Ginko's concern as he passes from village to village. + + Through circumstance, Ginko has become an arbiter, determining which Mushi are blessings and which are curses. But the lines that he seeks to draw are subjective. Some of his patients would rather exercise their new powers until they are utterly consumed by them; others desperately strive to rid themselves of afflictions which are in fact protecting their lives from devastation. Those who cross paths with Mushi must learn to accept seemingly impossible consequences for their actions, and heal wounds they did not know they had. Otherwise, they risk meeting with fates beyond their comprehension. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2014 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 22687 + url: https://myanimelist.net/anime/22687/Terra_Formars + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/67117.jpg + small_image_url: https://myanimelist.net/images/anime/2/67117t.jpg + large_image_url: https://myanimelist.net/images/anime/2/67117l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/67117.webp + small_image_url: https://myanimelist.net/images/anime/2/67117t.webp + large_image_url: https://myanimelist.net/images/anime/2/67117l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KVx9GrpN5lU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Terra Formars + - type: Japanese + title: TERRA FORMARS [テラフォーマーズ] + title: Terra Formars + title_english: null + title_japanese: TERRA FORMARS [テラフォーマーズ] + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2014-09-27T00:00:00+00:00' + to: '2014-12-20T00:00:00+00:00' + prop: + from: + day: 27 + month: 9 + year: 2014 + to: + day: 20 + month: 12 + year: 2014 + string: Sep 27, 2014 to Dec 20, 2014 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.99 + scored_by: 123200 + rank: 5204 + popularity: 1156 + members: 245856 + favorites: 650 + synopsis: "During the 21st century, humanity attempted to colonize Mars by sending two species which could endure the\ + \ harsh environment of the planet to terraform it—algae and cockroaches. However, they did not anticipate the species'\ + \ remarkable ability to adapt. Now in the 26th century, a lethal disease known as the Alien Engine Virus has arrived\ + \ on Earth, and the cure is suspected to be found only on Mars. The problem is, Mars in the present is overrun by\ + \ creatures known as \"Terraformars,\" incredibly powerful and intelligent humanoid cockroaches that mutated from\ + \ those originally sent to the planet. \n\nThe Annex I team, consisting of a hundred men and women genetically enhanced\ + \ with characteristics of powerful organisms from earth, has been sent to Mars on a mission to find the cause of the\ + \ Alien Engine Virus and to help cure humanity—signalling the start of the crew's fight for survival.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: fall + year: 2014 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 537 + type: anime + name: SANZIGEN + url: https://myanimelist.net/anime/producer/537/SANZIGEN + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 25731 + url: https://myanimelist.net/anime/25731/Cross_Ange__Tenshi_to_Ryuu_no_Rondo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1780/145951.jpg + small_image_url: https://myanimelist.net/images/anime/1780/145951t.jpg + large_image_url: https://myanimelist.net/images/anime/1780/145951l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1780/145951.webp + small_image_url: https://myanimelist.net/images/anime/1780/145951t.webp + large_image_url: https://myanimelist.net/images/anime/1780/145951l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_aQF5kye0kg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Cross Ange: Tenshi to Ryuu no Rondo' + - type: Japanese + title: クロスアンジュ 天使と竜の輪舞〈ロンド〉 + - type: English + title: 'Cross Ange: Rondo of Angel and Dragon' + - type: German + title: CROSS ANGE Rondo of Angel and Dragon + - type: Spanish + title: Cross Ange Tenshi to Ryuu no Rondo + - type: French + title: CROSS ANGE Rondo of Angel and Dragon + title: 'Cross Ange: Tenshi to Ryuu no Rondo' + title_english: 'Cross Ange: Rondo of Angel and Dragon' + title_japanese: クロスアンジュ 天使と竜の輪舞〈ロンド〉 + title_synonyms: [] + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2014-10-05T00:00:00+00:00' + to: '2015-03-29T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2014 + to: + day: 29 + month: 3 + year: 2015 + string: Oct 5, 2014 to Mar 29, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.39 + scored_by: 90765 + rank: 2772 + popularity: 1249 + members: 225885 + favorites: 1829 + synopsis: "Angelise Ikaruga Misurugi is the first princess of the noble Misurugi Empire. The kingdom has seen great\ + \ power and prosperity due to the advancement of the revolutionary technology known as \"Mana,\" an abstract bending\ + \ of light that has reduced the world's problems of war and pollution to a timeless peace. \n\nHowever, not all are\ + \ blessed with the ability to wield Mana. Those who cannot are labeled \"Norma,\" outcasts of society who are considered\ + \ a threat to civilization and live under constant persecution, and Angelise herself is one of many who want the Norma\ + \ exterminated. But as Angelise's sixteenth birthday commences, it is discovered in a shocking revelation that she\ + \ is actually a Norma. Chaos ensues, the public is outraged, and the once adored princess is exiled to Arzenal: a\ + \ remote military base where Normas are forced into conscription.\n\nNow, the former royal must adapt to a harsh and\ + \ vastly different lifestyle; piloting mechanical robots known as \"Paramail\" to fend off large, devastating beasts\ + \ referred to as DRAGONs. However, a sinister truth about these savage creatures threatens to change everything.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2014 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1588 + type: anime + name: Bandai Channel + url: https://myanimelist.net/anime/producer/1588/Bandai_Channel + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 24231 + url: https://myanimelist.net/anime/24231/Hitsugi_no_Chaika__Avenging_Battle + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/67797.jpg + small_image_url: https://myanimelist.net/images/anime/3/67797t.jpg + large_image_url: https://myanimelist.net/images/anime/3/67797l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/67797.webp + small_image_url: https://myanimelist.net/images/anime/3/67797t.webp + large_image_url: https://myanimelist.net/images/anime/3/67797l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/coQHwcwW8Ao?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hitsugi no Chaika: Avenging Battle' + - type: Synonym + title: Hitsugi no Chaika 2nd Season + - type: Synonym + title: Hitsugi no Chaika Second Season + - type: Japanese + title: 棺姫のチャイカ AVENGING BATTLE + - type: English + title: Chaika -The Coffin Princess- Avenging Battle + - type: German + title: 'Chaika Die Sargprinzessin: Avenging Battle' + - type: Spanish + title: Chaika - The Coffin Princess - Avenging Battle + title: 'Hitsugi no Chaika: Avenging Battle' + title_english: Chaika -The Coffin Princess- Avenging Battle + title_japanese: 棺姫のチャイカ AVENGING BATTLE + title_synonyms: + - Hitsugi no Chaika 2nd Season + - Hitsugi no Chaika Second Season + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2014-10-09T00:00:00+00:00' + to: '2014-12-11T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2014 + to: + day: 11 + month: 12 + year: 2014 + string: Oct 9, 2014 to Dec 11, 2014 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.16 + scored_by: 115656 + rank: 4213 + popularity: 1278 + members: 220280 + favorites: 218 + synopsis: |- + The search for the remains of Emperor Gaz continues. Chaika still in search of knowing who she really is and what her purpose is. Similarly, the Red Chaika continues the search for the rest of Emperor Gaz's remains. The Gillette corporation continues the mission to catch every last Chaika. In their adventure they give a revealing account kept secret by the Emperor, which Chaika, Fredrica, Toru, and Akari decide to uncover. + + (Source: ANN, edited) + background: 'Hitsugi no Chaika: Avenging Battle mostly tells an anime-exclusive story that utilizes content from novels + 8 to 11 of the original novel series. Episodes 4 and 5 adapt the 7th novel.' + season: fall + year: 2014 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/21-2015-winter.yaml b/test/fixtures/jikan/season_matrix/21-2015-winter.yaml new file mode 100644 index 0000000..3ee5688 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/21-2015-winter.yaml @@ -0,0 +1,3381 @@ +metadata: + captured_at: '2026-05-11T11:33:15Z' + label: 2015-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2015/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:14 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:873288a861218ae6bcff54b5ca43ce037f261f7b + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 263 + per_page: 25 + data: + - mal_id: 24833 + url: https://myanimelist.net/anime/24833/Ansatsu_Kyoushitsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/75639.jpg + small_image_url: https://myanimelist.net/images/anime/5/75639t.jpg + large_image_url: https://myanimelist.net/images/anime/5/75639l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/75639.webp + small_image_url: https://myanimelist.net/images/anime/5/75639t.webp + large_image_url: https://myanimelist.net/images/anime/5/75639l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kgNkGohA20k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ansatsu Kyoushitsu + - type: Japanese + title: 暗殺教室 + - type: English + title: Assassination Classroom + - type: German + title: Assassination Classroom + - type: Spanish + title: Assassination Classroom + - type: French + title: Assassination Classroom + title: Ansatsu Kyoushitsu + title_english: Assassination Classroom + title_japanese: 暗殺教室 + title_synonyms: [] + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2015-01-10T00:00:00+00:00' + to: '2015-06-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2015 + to: + day: 20 + month: 6 + year: 2015 + string: Jan 10, 2015 to Jun 20, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.07 + scored_by: 1304205 + rank: 637 + popularity: 32 + members: 2215168 + favorites: 31503 + synopsis: "Tucked in the mountains near the elite Kunugigaoka Middle School lies a small derelict building that houses\ + \ the delinquents and dropouts of Class 3-E. Looked down upon by their peers, the students in this class appear to\ + \ have little hope in advancing their academic careers. That is, until the national government tasks them with eliminating\ + \ the greatest threat to their planet: their new teacher. \n\nHaving already destroyed the moon, the octopus-like\ + \ professor—dubbed \"Koro-sensei\"—has now threatened to destroy the Earth by March of the following year. In light\ + \ of their mission, the students have found that killing him is easier said than done. Not only can Koro-sensei move\ + \ at speeds of up to Mach 20, but he can also resist almost every earthly weapon. Ironically, he also proves to be\ + \ one of the best teachers Class 3-E has ever had. Training the class to excel in both their studies as students and\ + \ skills as assassins, Koro-sensei is confident that his students' ingenuity and indomitable will could return them\ + \ to the main campus. \n\nThrough trial and error, Nagisa Shiota, as well as the other students of Class 3-E, must\ + \ figure out Koro-sensei's weaknesses—and fast, for the very fate of the world depends upon it.\n\n[Written by MAL\ + \ Rewrite]" + background: '' + season: winter + year: 2015 + broadcast: + day: Saturdays + time: 00:55 + timezone: Asia/Tokyo + string: Saturdays at 00:55 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28223 + url: https://myanimelist.net/anime/28223/Death_Parade + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/71553.jpg + small_image_url: https://myanimelist.net/images/anime/5/71553t.jpg + large_image_url: https://myanimelist.net/images/anime/5/71553l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/71553.webp + small_image_url: https://myanimelist.net/images/anime/5/71553t.webp + large_image_url: https://myanimelist.net/images/anime/5/71553l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O1X6czI74UQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Death Parade + - type: Japanese + title: デス・パレード + - type: English + title: Death Parade + title: Death Parade + title_english: Death Parade + title_japanese: デス・パレード + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-10T00:00:00+00:00' + to: '2015-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2015 + to: + day: 28 + month: 3 + year: 2015 + string: Jan 10, 2015 to Mar 28, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.13 + scored_by: 1083492 + rank: 544 + popularity: 52 + members: 1918753 + favorites: 29641 + synopsis: |- + After death, either Heaven or Hell awaits most humans. But for a select few, death brings them to Quindecim—a bar where only pairs of people who die at the same time can enter. Attending the bar is an enigmatic figure known as Decim, who also acts as the arbiter. He passes judgment on those who wind up at Quindecim by challenging them to a life-threatening game. These games determine if the patron's soul will reincarnate into a new life, or be sent into the void, never to be seen again. + + From darts and bowling to fighting games, the true nature of each patron slowly comes to light as they wager their souls. Though his methods remain unchanged, the sudden appearance of a black-haired amnesiac causes Decim to reevaluate his own rulings. + + [Written by MAL Rewrite] + background: Death Parade spawned from the short film Death Billiards, which was part of the Young Animator Training + Project's Anime Mirai 2013. + season: winter + year: 2015 + broadcast: + day: Saturdays + time: 01:58 + timezone: Asia/Tokyo + string: Saturdays at 01:58 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 27899 + url: https://myanimelist.net/anime/27899/Tokyo_Ghoul_√A + images: + jpg: + image_url: https://myanimelist.net/images/anime/1889/123307.jpg + small_image_url: https://myanimelist.net/images/anime/1889/123307t.jpg + large_image_url: https://myanimelist.net/images/anime/1889/123307l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1889/123307.webp + small_image_url: https://myanimelist.net/images/anime/1889/123307t.webp + large_image_url: https://myanimelist.net/images/anime/1889/123307l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/M2DObpz2174?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Ghoul √A + - type: Synonym + title: Tokyo Ghoul Root A + - type: Synonym + title: Tokyo Ghoul 2nd Season + - type: Synonym + title: Tokyo Ghoul Second Season + - type: Japanese + title: 東京喰種√A + - type: English + title: Tokyo Ghoul √A + title: Tokyo Ghoul √A + title_english: Tokyo Ghoul √A + title_japanese: 東京喰種√A + title_synonyms: + - Tokyo Ghoul Root A + - Tokyo Ghoul 2nd Season + - Tokyo Ghoul Second Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-09T00:00:00+00:00' + to: '2015-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2015 + to: + day: 27 + month: 3 + year: 2015 + string: Jan 9, 2015 to Mar 27, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.03 + scored_by: 1272028 + rank: 4987 + popularity: 55 + members: 1898883 + favorites: 10811 + synopsis: |- + Ken Kaneki has finally come to accept the monstrous, flesh-craving part of himself that he has feared and despised for so long. After escaping captivity and torture, Kaneki joins Aogiri Tree—the very militant ghoul organization that had abducted him, leading his friends to question his true motive and loyalty. + + As tension between the government and the ghouls continues to rise, the Commission of Counter Ghoul, the government's specialized anti-ghoul agency, has intensified their efforts to completely purge Tokyo of ghouls. This threatens the transient peace of Kaneki's friends and former comrades—the ghouls at the Anteiku coffee shop. Aware of the dangerous situation, Kaneki faces several battles that puts his precious fleeting humanity on the line. + + [Written by MAL Rewrite] + background: Both the Tokyo Ghoul manga and Tokyo Ghoul √A anime concluded with the same last arc, but how the anime + arrived at that ending diverged greatly from the source material. Besides changing the ending fight scene and the + main major plot of the manga, which was the focus of many chapters in the manga, Tokyo Ghoul √A also features a watered-down + and greatly changed version of the source manga's final arc. Episode 1 was previewed at a screening at TOHO Cinemas, + Nihonbashi on January 4, 2015. Regular broadcasting began on January 9, 2015. + season: winter + year: 2015 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 26055 + url: https://myanimelist.net/anime/26055/JoJo_no_Kimyou_na_Bouken_Part_3__Stardust_Crusaders_-_Egypt-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/75045.jpg + small_image_url: https://myanimelist.net/images/anime/11/75045t.jpg + large_image_url: https://myanimelist.net/images/anime/11/75045l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/75045.webp + small_image_url: https://myanimelist.net/images/anime/11/75045t.webp + large_image_url: https://myanimelist.net/images/anime/11/75045l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JA48VBSl4nc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen' + - type: Synonym + title: JoJo's Bizarre Adventure Part 3 + - type: Synonym + title: 'JoJo''s Bizarre Adventure: Stardust Crusaders - Egypt Arc' + - type: Japanese + title: ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編 + - type: English + title: 'JoJo''s Bizarre Adventure: Stardust Crusaders - Battle in Egypt' + - type: Spanish + title: 'Jojo''s Bizarre Adventures. Stardust Crusaders: Battle in Egypt Temporada 2 Parte 3' + title: 'JoJo no Kimyou na Bouken Part 3: Stardust Crusaders - Egypt-hen' + title_english: 'JoJo''s Bizarre Adventure: Stardust Crusaders - Battle in Egypt' + title_japanese: ジョジョの奇妙な冒険 スターダストクルセイダース エジプト編 + title_synonyms: + - JoJo's Bizarre Adventure Part 3 + - 'JoJo''s Bizarre Adventure: Stardust Crusaders - Egypt Arc' + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2015-01-10T00:00:00+00:00' + to: '2015-06-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2015 + to: + day: 20 + month: 6 + year: 2015 + string: Jan 10, 2015 to Jun 20, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.44 + scored_by: 885850 + rank: 196 + popularity: 132 + members: 1250982 + favorites: 22085 + synopsis: |- + Joutarou Kuujou and his allies have finally made it to Egypt, where the immortal Dio awaits. Upon their arrival, the group gains a new comrade: Iggy, a mutt who wields the Stand "The Fool." It's not all good news however, as standing in their path is a new group of Stand users who serve Dio, each with a Stand representative of an ancient Egyptian god. As their final battle approaches, it is a race against time to break Joutarou's mother free from her curse and end Dio's reign of terror over the Joestar family once and for all. + + [Written by MAL Rewrite] + background: The 2nd season covers the remaining 83 chapters of the manga (the Egypt arc). + season: winter + year: 2015 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 24415 + url: https://myanimelist.net/anime/24415/Kuroko_no_Basket_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/68299.jpg + small_image_url: https://myanimelist.net/images/anime/4/68299t.jpg + large_image_url: https://myanimelist.net/images/anime/4/68299l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/68299.webp + small_image_url: https://myanimelist.net/images/anime/4/68299t.webp + large_image_url: https://myanimelist.net/images/anime/4/68299l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H1TvpW04Oxs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroko no Basket 3rd Season + - type: Synonym + title: Kuroko no Basuke 3rd Season + - type: Synonym + title: The Basketball Which Kuroko Plays + - type: Japanese + title: 黒子のバスケ + - type: English + title: Kuroko's Basketball 3 + - type: German + title: Kuroko's Basket Staffel 3 + - type: Spanish + title: Kuroko no Basket Temporada 3 + - type: French + title: Kuroko's Basket Saison 3 + title: Kuroko no Basket 3rd Season + title_english: Kuroko's Basketball 3 + title_japanese: 黒子のバスケ + title_synonyms: + - Kuroko no Basuke 3rd Season + - The Basketball Which Kuroko Plays + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2015-01-11T00:00:00+00:00' + to: '2015-06-30T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2015 + to: + day: 30 + month: 6 + year: 2015 + string: Jan 11, 2015 to Jun 30, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 513546 + rank: 334 + popularity: 268 + members: 832395 + favorites: 5238 + synopsis: |- + Seirin prepares to face major obstacles on their path to winning the Winter Cup, including the teams each possessing a member of the Generation of Miracles. Kuroko goes head-to-head with his old teammates once more as he attempts to show them that individual skill is not the only way to play basketball. His firm belief that his form of basketball, team play, is the right way to play the sport will clash with the talents of a perfect copy and an absolute authority. + + While Kuroko tries to prove that his basketball is "right," he and the rest of Seirin High ultimately have one goal: to win the Winter Cup and overcome the strength of the Generation of Miracles, who have long dominated the scene of middle and high school basketball. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2015 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 23233 + url: https://myanimelist.net/anime/23233/Shinmai_Maou_no_Testament + images: + jpg: + image_url: https://myanimelist.net/images/anime/1654/112033.jpg + small_image_url: https://myanimelist.net/images/anime/1654/112033t.jpg + large_image_url: https://myanimelist.net/images/anime/1654/112033l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1654/112033.webp + small_image_url: https://myanimelist.net/images/anime/1654/112033t.webp + large_image_url: https://myanimelist.net/images/anime/1654/112033l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AfDCSdkWWxE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinmai Maou no Testament + - type: Synonym + title: Shinmai Maou no Keiyakusha + - type: Japanese + title: 新妹魔王の契約者〈テスタメント〉 + - type: English + title: The Testament of Sister New Devil + - type: German + title: The Testament of Sister New Devil + - type: Spanish + title: The Testament of Sister New Devil + - type: French + title: The Testament of Sister New Devil + title: Shinmai Maou no Testament + title_english: The Testament of Sister New Devil + title_japanese: 新妹魔王の契約者〈テスタメント〉 + title_synonyms: + - Shinmai Maou no Keiyakusha + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-08T00:00:00+00:00' + to: '2015-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2015 + to: + day: 26 + month: 3 + year: 2015 + string: Jan 8, 2015 to Mar 26, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.68 + scored_by: 390169 + rank: 7085 + popularity: 319 + members: 731334 + favorites: 2218 + synopsis: |- + Running into your new stepsister in the bathroom is not the best way to make a good first impression, which Basara Toujou learns the hard way. When his father suddenly brings home two beautiful girls and introduces them as his new siblings, he has no choice but to accept into his family the Naruse sisters: busty redhead Mio and petite silver-haired Maria. + + But when these seemingly normal girls reveal themselves as demons—Mio the former Demon Lord's only daughter and Maria her trusted succubus servant—Basara is forced to reveal himself as a former member of a clan of "Heroes," sworn enemies of the demons. However, having begun to care for his new sisters, Basara instead decides to protect them with his powers and forms a master-servant contract with Mio to keep watch over her. + + With the Heroes observing his every move and the constant threat of hostile demons, Basara has to do the impossible to protect his new family members. Moreover, the protector himself is hiding his own dark secret that still haunts him to this day... + + [Written by MAL Rewrite] + background: Shinmai Maou no Testament adapts the first 3 volumes of Tetsuto Uesu's light novel series of the same title. + season: winter + year: 2015 + broadcast: + day: Thursdays + time: 02:00 + timezone: Asia/Tokyo + string: Thursdays at 02:00 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1213 + type: anime + name: Mobcast + url: https://myanimelist.net/anime/producer/1213/Mobcast + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 23277 + url: https://myanimelist.net/anime/23277/Saenai_Heroine_no_Sodatekata + images: + jpg: + image_url: https://myanimelist.net/images/anime/1329/142757.jpg + small_image_url: https://myanimelist.net/images/anime/1329/142757t.jpg + large_image_url: https://myanimelist.net/images/anime/1329/142757l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1329/142757.webp + small_image_url: https://myanimelist.net/images/anime/1329/142757t.webp + large_image_url: https://myanimelist.net/images/anime/1329/142757l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Hv3oF7Ky8NI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saenai Heroine no Sodatekata + - type: Synonym + title: Saenai Kanojo no Sodate-kata + - type: Japanese + title: 冴えない彼女〈ヒロイン〉の育てかた + - type: English + title: 'Saekano: How to Raise a Boring Girlfriend' + - type: German + title: Saekano? How to Raise a Boring Girlfriend + - type: Spanish + title: 'Saekano: Cómo Educar a una Novia Aburrida' + - type: French + title: 'Saekano: How to Raise a Boring Girlfriend' + title: Saenai Heroine no Sodatekata + title_english: 'Saekano: How to Raise a Boring Girlfriend' + title_japanese: 冴えない彼女〈ヒロイン〉の育てかた + title_synonyms: + - Saenai Kanojo no Sodate-kata + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-16T00:00:00+00:00' + to: '2015-03-27T00:00:00+00:00' + prop: + from: + day: 16 + month: 1 + year: 2015 + to: + day: 27 + month: 3 + year: 2015 + string: Jan 16, 2015 to Mar 27, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 337192 + rank: 2395 + popularity: 330 + members: 716896 + favorites: 4574 + synopsis: |- + Tomoya Aki, an otaku, has been obsessed with collecting anime and light novels for years, attaching himself to various series with captivating stories and characters. Now, he wants to have a chance of providing the same experience for others by creating his own game, but unfortunately, Tomoya cannot do this task by himself. + + He successfully recruits childhood friend Eriri Spencer Sawamura to illustrate and literary elitist Utaha Kasumigaoka to write the script for his visual novel, while he directs. Super-group now in hand, Tomoya only needs an inspiration to base his project on, and luckily meets the beautiful, docile Megumi Katou, who he then models his main character after. + + Using what knowledge he has, Tomoya creates a new doujin circle with hopes to touch the hearts of those who play their game. What he does not realize, is that to invoke these emotions, the creators have had to experience the same feelings in their own lives. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2015 + broadcast: + day: Fridays + time: 00:50 + timezone: Asia/Tokyo + string: Fridays at 00:50 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 25397 + url: https://myanimelist.net/anime/25397/Absolute_Duo + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/68839.jpg + small_image_url: https://myanimelist.net/images/anime/4/68839t.jpg + large_image_url: https://myanimelist.net/images/anime/4/68839l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/68839.webp + small_image_url: https://myanimelist.net/images/anime/4/68839t.webp + large_image_url: https://myanimelist.net/images/anime/4/68839l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DBkXWtMZlUk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Absolute Duo + - type: Japanese + title: アブソリュート・デュオ + - type: English + title: Absolute Duo + title: Absolute Duo + title_english: Absolute Duo + title_japanese: アブソリュート・デュオ + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-04T00:00:00+00:00' + to: '2015-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2015 + to: + day: 22 + month: 3 + year: 2015 + string: Jan 4, 2015 to Mar 22, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.41 + scored_by: 330016 + rank: 8682 + popularity: 425 + members: 590300 + favorites: 1591 + synopsis: |- + Individuals who can materialize weapons from their soul are called "Blazers," and they attend Kouryou Academy High School in order to harness their abilities. Each student is required to partner with another, in the hopes that one day, the pair can attain the power of Absolute Duo. + + Tooru Kokonoe hopes to attend this academy in order to gain power after his sister and friends were slain by a mysterious man. However, at the opening ceremony, he is forced to duel against the person sitting next to him, with the loser being expelled. As Tooru prepares to give the match his all, it is not a weapon that manifests from his soul, but a shield, an irregularity which catches the attention of a foreign student named Julie Sigtuna. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening at Kadokawa Cinema Shinjuku in Tokyo on December 28, 2014. Regular + broadcasting began on January 4, 2015. + season: winter + year: 2015 + broadcast: + day: Sundays + time: '20:30' + timezone: Asia/Tokyo + string: Sundays at 20:30 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 699 + type: anime + name: feng + url: https://myanimelist.net/anime/producer/699/feng + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 23199 + url: https://myanimelist.net/anime/23199/Durararax2_Shou + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/67743.jpg + small_image_url: https://myanimelist.net/images/anime/12/67743t.jpg + large_image_url: https://myanimelist.net/images/anime/12/67743l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/67743.webp + small_image_url: https://myanimelist.net/images/anime/12/67743t.webp + large_image_url: https://myanimelist.net/images/anime/12/67743l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f5yXNsIPw5U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Durarara!!x2 Shou + - type: Synonym + title: Durarara!! 2nd Season + - type: Synonym + title: DRRR!! 2nd Season + - type: Synonym + title: Durararax2 1st Arc + - type: Japanese + title: デュラララ!!×2 承 + - type: English + title: Durarara!! x2 Shou + - type: German + title: Durarara!! x2 + - type: Spanish + title: Durarara!! x2 Shou + - type: French + title: Durarara!! x2 + title: Durarara!!x2 Shou + title_english: Durarara!! x2 Shou + title_japanese: デュラララ!!×2 承 + title_synonyms: + - Durarara!! 2nd Season + - DRRR!! 2nd Season + - Durararax2 1st Arc + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-10T00:00:00+00:00' + to: '2015-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2015 + to: + day: 28 + month: 3 + year: 2015 + string: Jan 10, 2015 to Mar 28, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.97 + scored_by: 263314 + rank: 800 + popularity: 500 + members: 513834 + favorites: 1010 + synopsis: |- + Although peace has finally returned to Ikebukuro, many of the odd occurrences have become common sights around the city. One such case is the police's constant pursuit of Celty Sturluson, the Headless Rider. Moreover, someone has placed a large bounty on her, igniting the motivation of gang members all over to begin searching for the supernatural creature as well. Meanwhile, Mikado Ryuugamine is approached by Aoba Kuronuma, a mysterious underclassman with unknown intentions, who reveals that he knows Mikado's true identity. + + But Ikebukuro's state of tranquility is short-lived, as a new threat appears in the form of a murderer who goes by the pseudonym "Hollywood," known for wearing a different mask each time they commit a crime. As the various events taking place prove to be connected yet again, Ikebukuro is thrown into another conflict that threatens to engulf the entire city in chaos. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2015 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 25681 + url: https://myanimelist.net/anime/25681/Kamisama_Hajimemashita◎ + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/69187.jpg + small_image_url: https://myanimelist.net/images/anime/8/69187t.jpg + large_image_url: https://myanimelist.net/images/anime/8/69187l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/69187.webp + small_image_url: https://myanimelist.net/images/anime/8/69187t.webp + large_image_url: https://myanimelist.net/images/anime/8/69187l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VYl_-Uef63k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamisama Hajimemashita◎ + - type: Synonym + title: Kamisama Hajimemashita 2nd Season + - type: Synonym + title: Kami-sama Hajimemashita 2nd Season + - type: Synonym + title: Kamisama Kiss 2nd Season + - type: Japanese + title: 神様はじめました◎ + - type: English + title: Kamisama Kiss Season 2 + - type: German + title: Kamisama Hajimemashita Staffel 2 + - type: Spanish + title: Kamisama Hajimemashita Temporada 2 + - type: French + title: Kamisama Hajimemashita Saison 2 + title: Kamisama Hajimemashita◎ + title_english: Kamisama Kiss Season 2 + title_japanese: 神様はじめました◎ + title_synonyms: + - Kamisama Hajimemashita 2nd Season + - Kami-sama Hajimemashita 2nd Season + - Kamisama Kiss 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-06T00:00:00+00:00' + to: '2015-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2015 + to: + day: 31 + month: 3 + year: 2015 + string: Jan 6, 2015 to Mar 31, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.24 + scored_by: 250230 + rank: 393 + popularity: 559 + members: 470593 + favorites: 3894 + synopsis: "Nanami Momozono and her familiars Tomoe and Mizuki have survived quite a few challenges since Nanami took\ + \ up the mantle of Mikage Shrine's patron god. Naturally, the wind god Otohiko comes to invite Nanami to the Divine\ + \ Assembly in Izumo, the home of the gods, and Nanami chooses to take Mizuki with her, leaving Tomoe to pose as her\ + \ at school. However, she has an ulterior motive for attending the Divine Assembly: to discover the whereabouts of\ + \ the missing Lord Mikage, the former god of the shrine. \n\nAfter her adventures in Izumo, Nanami meets Botanmaru,\ + \ a tengu child looking for someone she knows all too well—tengu turned goth idol Shinjirou Kurama. Botanmaru needs\ + \ Shinjirou, their prince, to return home to Mount Kurama and stop the tyranny of Jirou, who has taken over the rule\ + \ of their hometown. However, Nanami soon discovers a force much darker than Jirou is at work on the mountain.\n\n\ + As a fledgling god becoming more accustomed to divinity, Nanami finds herself dealing with a tengu rebellion, her\ + \ blooming feelings for Tomoe, and a strange man with ties to both Tomoe's past and Nanami's future.\n\n[Written by\ + \ MAL Rewrite]" + background: '' + season: winter + year: 2015 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 22663 + url: https://myanimelist.net/anime/22663/Seiken_Tsukai_no_World_Break + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/71769.jpg + small_image_url: https://myanimelist.net/images/anime/7/71769t.jpg + large_image_url: https://myanimelist.net/images/anime/7/71769l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/71769.webp + small_image_url: https://myanimelist.net/images/anime/7/71769t.webp + large_image_url: https://myanimelist.net/images/anime/7/71769l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zGXx54r4yWU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seiken Tsukai no World Break + - type: Synonym + title: Seiken Tsukai no Kinshuu Eishou + - type: Synonym + title: Warubure + - type: Japanese + title: 聖剣使いの禁呪詠唱〈ワールドブレイク〉 + - type: English + title: 'World Break: Aria of Curse for a Holy Swordsman' + - type: German + title: 'World Break: Aria of Curse for a Holy Swordman' + title: Seiken Tsukai no World Break + title_english: 'World Break: Aria of Curse for a Holy Swordsman' + title_japanese: 聖剣使いの禁呪詠唱〈ワールドブレイク〉 + title_synonyms: + - Seiken Tsukai no Kinshuu Eishou + - Warubure + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-12T00:00:00+00:00' + to: '2015-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2015 + to: + day: 30 + month: 3 + year: 2015 + string: Jan 12, 2015 to Mar 30, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.75 + scored_by: 168905 + rank: 6619 + popularity: 835 + members: 335558 + favorites: 909 + synopsis: |- + Seiken Tsukai no World Break takes place at Akane Private Academy where students who possess memories of their previous lives are being trained to use Ancestral Arts so that they can serve as defenders against monsters, called Metaphysicals, who randomly attack. Known as saviors, the students are broken up into two categories: the kurogane who are able to use their prana to summon offensive weapons and the kuroma who are able to use magic. + + The story begins six months prior to the major climax of the series during the opening ceremonies on the first day of the school year. After the ceremony is over, the main character, Moroha Haimura, meets a girl named Satsuki Ranjou who reveals that she was Moroha's little sister in a past life where Moroha was a heroic prince capable of slaying entire armies with his sword skills. Soon afterwards he meets another girl, Shizuno Urushibara, who eventually reveals that she also knew Moroha in an entirely different past life where he was a dark lord capable of using destructive magic but saved her from a life of slavery. Can those whose minds live in both the present and the past truly reach a bright future? Delve into the complex world of Seiken Tsukai no World Break to find out! + background: The anime adaptation for Seiken Tsukai no World Break was first announced in February of 2014 on the wraparound + jacket of the sixth volume of the original light novel series. The cast members from the drama CD reprised their roles + in the anime. + season: winter + year: 2015 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 27655 + url: https://myanimelist.net/anime/27655/AldnoahZero_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/71297.jpg + small_image_url: https://myanimelist.net/images/anime/10/71297t.jpg + large_image_url: https://myanimelist.net/images/anime/10/71297l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/71297.webp + small_image_url: https://myanimelist.net/images/anime/10/71297t.webp + large_image_url: https://myanimelist.net/images/anime/10/71297l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AEn7nqWONC0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aldnoah.Zero Part 2 + - type: Synonym + title: Aldnoah.Zero 2nd Season + - type: Japanese + title: アルドノア・ゼロ(第2クール) + - type: English + title: Aldnoah.Zero Part 2 + - type: German + title: Aldnoah.Zero Saison 2 + - type: Spanish + title: Aldnoah.Zero Temporada 2 + - type: French + title: Aldnoah.Zero Saison 2 + title: Aldnoah.Zero Part 2 + title_english: Aldnoah.Zero Part 2 + title_japanese: アルドノア・ゼロ(第2クール) + title_synonyms: + - Aldnoah.Zero 2nd Season + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-11T00:00:00+00:00' + to: '2015-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2015 + to: + day: 29 + month: 3 + year: 2015 + string: Jan 11, 2015 to Mar 29, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.91 + scored_by: 199861 + rank: 5609 + popularity: 870 + members: 324866 + favorites: 772 + synopsis: |- + The war between the Terrans and the Vers Empire of Mars has ended, allowing humanity to blissfully enjoy their lives in a time of peace. Nineteen months later, however, the Vers princess makes a shocking public declaration: "the Terrans are a foolish race that covets resources, destroys nature, and are devoted to the pursuit of pleasure." And so, to protect their precious Earth, she calls upon her knights to take up arms, and the raging battle between the two civilizations reignites. + + Slaine Troyard has found a place among the Martians, giving Earth a short respite from the war against the Vers Empire. However, a peaceful resolution seems inconceivable. The various people who fought desperately for survival in the past now find themselves in the midst of yet another bloody and chaotic conflict, one that will forever alter the fate of humankind. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2015 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 21339 + url: https://myanimelist.net/anime/21339/Psycho-Pass_Movie_1 + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/71793.jpg + small_image_url: https://myanimelist.net/images/anime/8/71793t.jpg + large_image_url: https://myanimelist.net/images/anime/8/71793l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/71793.webp + small_image_url: https://myanimelist.net/images/anime/8/71793t.webp + large_image_url: https://myanimelist.net/images/anime/8/71793l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MFI9ygRHwuI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Psycho-Pass Movie 1 + - type: Synonym + title: Psychopath Movie + - type: Japanese + title: 劇場版 サイコパス + - type: English + title: 'Psycho-Pass: The Movie' + - type: German + title: 'Psycho Pass: Der Film' + - type: Spanish + title: 'Psycho-Pass: La Película' + - type: French + title: 'Psycho-Pass: Le Film' + title: Psycho-Pass Movie 1 + title_english: 'Psycho-Pass: The Movie' + title_japanese: 劇場版 サイコパス + title_synonyms: + - Psychopath Movie + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-01-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 1 + year: 2015 + to: + day: null + month: null + year: null + string: Jan 9, 2015 + duration: 1 hr 53 min + rating: R - 17+ (violence & profanity) + score: 7.69 + scored_by: 147588 + rank: 1500 + popularity: 963 + members: 292024 + favorites: 559 + synopsis: |- + Due to the incredible success of the Sibyl System, Japan has begun exporting the technology to other countries with the hope that it will one day be used all around the world. In order to test its effectiveness in a foreign location, the war-torn state of the South East Asian Union (SEAUn) decides to implement the system, hoping to bring peace and stability to the town of Shambala Float and keep the population in check. + + However, a group of anti-Sibyl terrorists arrive in Japan, and the Ministry of Welfare's Public Safety Bureau discovers significant evidence that the invaders are being aided by Shinya Kougami, a former Enforcer who went rogue. Because of their past relationship, Akane Tsunemori is sent to SEAUn to bring him back, but with their last meeting years in the past, their reunion might not go quite as planned. + + [Written by MAL Rewrite] + background: Psycho-Pass Movie won the Newtype Anime Award for Best Film in 2015 and was nominated for the 47th Seuin + Award in the Media Category in 2016. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 23317 + url: https://myanimelist.net/anime/23317/Kuroshitsuji__Book_of_Murder + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/74392.jpg + small_image_url: https://myanimelist.net/images/anime/12/74392t.jpg + large_image_url: https://myanimelist.net/images/anime/12/74392l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/74392.webp + small_image_url: https://myanimelist.net/images/anime/12/74392t.webp + large_image_url: https://myanimelist.net/images/anime/12/74392l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SMK4HSpyALE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kuroshitsuji: Book of Murder' + - type: Japanese + title: 黒執事 Book of Murder + - type: English + title: 'Black Butler: Book of Murder' + - type: German + title: 'Black Butler: Book of Murder' + - type: French + title: 'Black Butler: Book of Murder' + title: 'Kuroshitsuji: Book of Murder' + title_english: 'Black Butler: Book of Murder' + title_japanese: 黒執事 Book of Murder + title_synonyms: [] + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2015-01-28T00:00:00+00:00' + to: '2015-02-25T00:00:00+00:00' + prop: + from: + day: 28 + month: 1 + year: 2015 + to: + day: 25 + month: 2 + year: 2015 + string: Jan 28, 2015 to Feb 25, 2015 + duration: 1 hr 1 min per ep + rating: R - 17+ (violence & profanity) + score: 8.05 + scored_by: 135017 + rank: 672 + popularity: 1034 + members: 273148 + favorites: 1215 + synopsis: |- + At the behest of the Queen, Earl Ciel Phantomhive hosts a lavish dinner party attended by several of the finest members of polite society—as well as struggling author, Arthur. But as the party reaches its high, a terrible murder takes place and none other than the Earl himself is suspected of the crime. + + As a violent storm rages on outside, the death count continues to climb. The Phantomhive household and their eminent guests find they must cooperate in order to solve this mystery before they too fall prey to the mysterious murderer. However, it seems that not even the perfect butler, Sebastian Michaelis, is safe from this horror. + + [Written by MAL Rewrite] + background: Episodes 1 and 2 were previewed at screenings in multiple cities across Japan on October 25 and November + 15, 2014. The DVDs and BDs were released on January 28 and February 25, 2015. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 21511 + url: https://myanimelist.net/anime/21511/Kantai_Collection__KanColle + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/73954.jpg + small_image_url: https://myanimelist.net/images/anime/4/73954t.jpg + large_image_url: https://myanimelist.net/images/anime/4/73954l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/73954.webp + small_image_url: https://myanimelist.net/images/anime/4/73954t.webp + large_image_url: https://myanimelist.net/images/anime/4/73954l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3u-WE85ExIU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kantai Collection: KanColle' + - type: Synonym + title: Kankore + - type: Synonym + title: Kantai Collection + - type: Japanese + title: 艦隊これくしょん -艦これ- + - type: English + title: KanColle + - type: German + title: 'KanColle: Fleet Girls Collection' + - type: Spanish + title: KanColle + - type: French + title: KanColle + title: 'Kantai Collection: KanColle' + title_english: KanColle + title_japanese: 艦隊これくしょん -艦これ- + title_synonyms: + - Kankore + - Kantai Collection + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-08T00:00:00+00:00' + to: '2015-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2015 + to: + day: 26 + month: 3 + year: 2015 + string: Jan 8, 2015 to Mar 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.83 + scored_by: 94785 + rank: 6097 + popularity: 1246 + members: 226478 + favorites: 1363 + synopsis: |- + With the seas under constant threat from the hostile "Abyssal Fleet," a specialized naval base is established to counter them. Rather than standard naval weaponry, however, the base is armed with "Kanmusu"—girls who harbor the spirits of Japanese warships—possessing the ability to don weaponized gear that allows them to harness the powerful souls within themselves. Fubuki, a young Destroyer-type Kanmusu, joins the base as a new recruit; unfortunately for her, despite her inexperience and timid nature, she is assigned to the famous Third Torpedo Squadron and quickly thrust into the heat of battle. When she is rescued from near annihilation, the rookie warship resolves to become as strong as the one who saved her. + + [Written by MAL Rewrite] + background: Kantai Collection is based on a Japanese free-to-play web browser game of the same name, launched in 2013. + season: winter + year: 2015 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 30300 + url: https://myanimelist.net/anime/30300/High_School_DxD_New__Oppai_Tsutsumimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/73605.jpg + small_image_url: https://myanimelist.net/images/anime/8/73605t.jpg + large_image_url: https://myanimelist.net/images/anime/8/73605l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/73605.webp + small_image_url: https://myanimelist.net/images/anime/8/73605t.webp + large_image_url: https://myanimelist.net/images/anime/8/73605l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'High School DxD New: Oppai, Tsutsumimasu!' + - type: Synonym + title: High School DxD New OVA + - type: Synonym + title: High School DxD New Episode 13 + - type: Japanese + title: ハイスクールD×D NEW OVA おっぱい、包みます! + - type: English + title: High School DxD New OVA + title: 'High School DxD New: Oppai, Tsutsumimasu!' + title_english: High School DxD New OVA + title_japanese: ハイスクールD×D NEW OVA おっぱい、包みます! + title_synonyms: + - High School DxD New OVA + - High School DxD New Episode 13 + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-03-10T00:00:00+00:00' + to: null + prop: + from: + day: 10 + month: 3 + year: 2015 + to: + day: null + month: null + year: null + string: Mar 10, 2015 + duration: 24 min + rating: R+ - Mild Nudity + score: 7.27 + scored_by: 97165 + rank: 3484 + popularity: 1544 + members: 179502 + favorites: 298 + synopsis: Unaired anime episode bundled with the limited edition of High School DxD DX.1. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + licensors: [] + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 25015 + url: https://myanimelist.net/anime/25015/Kyoukai_no_Kanata_Movie_1__Ill_Be_Here_-_Kako-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/73298.jpg + small_image_url: https://myanimelist.net/images/anime/6/73298t.jpg + large_image_url: https://myanimelist.net/images/anime/6/73298l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/73298.webp + small_image_url: https://myanimelist.net/images/anime/6/73298t.webp + large_image_url: https://myanimelist.net/images/anime/6/73298l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/y6I_QK9oBSI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kyoukai no Kanata Movie 1: I''ll Be Here - Kako-hen' + - type: Synonym + title: Beyond the Boundary Movie + - type: Synonym + title: Kyokai no Kanata Movie + - type: Japanese + title: 劇場版 境界の彼方 I'LL BE HERE 過去篇 + - type: English + title: 'Beyond the Boundary: I''ll Be Here - Past' + title: 'Kyoukai no Kanata Movie 1: I''ll Be Here - Kako-hen' + title_english: 'Beyond the Boundary: I''ll Be Here - Past' + title_japanese: 劇場版 境界の彼方 I'LL BE HERE 過去篇 + title_synonyms: + - Beyond the Boundary Movie + - Kyokai no Kanata Movie + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-03-14T00:00:00+00:00' + to: null + prop: + from: + day: 14 + month: 3 + year: 2015 + to: + day: null + month: null + year: null + string: Mar 14, 2015 + duration: 1 hr 22 min + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 80660 + rank: 1398 + popularity: 1552 + members: 178210 + favorites: 278 + synopsis: |- + The first part of a two-part movie. The story is a recap of the TV series. + + Mirai Kuriyama is the sole survivor of a clan of Spirit World warriors with the power to employ their blood as weapons. As such, Mirai is tasked with hunting down and killing "youmu"—creatures said to be the manifestation of negative human emotions. One day, while deep in thought on the school roof, Mirai comes across Akihito Kanbara, a rare half-breed of youmu in human form. In a panicked state, she plunges her blood saber into him only to realize that he's an immortal being. From then on, the two form an impromptu friendship that revolves around Mirai constantly trying to kill Akihito, in an effort to boost her own wavering confidence as a Spirit World warrior. Eventually, Akihito also manages to convince her to join the Literary Club, which houses two other powerful Spirit World warriors, Hiroomi and Mitsuki Nase. + + As the group's bond strengthens, however, so does the tenacity of the youmu around them. Their misadventures will soon turn into a fight for survival as the inevitable release of the most powerful youmu, Beyond the Boundary, approaches. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 24873 + url: https://myanimelist.net/anime/24873/Juuou_Mujin_no_Fafnir + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/69085.jpg + small_image_url: https://myanimelist.net/images/anime/11/69085t.jpg + large_image_url: https://myanimelist.net/images/anime/11/69085l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/69085.webp + small_image_url: https://myanimelist.net/images/anime/11/69085t.webp + large_image_url: https://myanimelist.net/images/anime/11/69085l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zq2Ho7NKtVE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Juuou Mujin no Fafnir + - type: Japanese + title: 銃皇無尽のファフニール + - type: English + title: Unlimited Fafnir + - type: German + title: Unlimited Fafnir + - type: Spanish + title: Mujin Fafnir + - type: French + title: Unlimited Fafnir + title: Juuou Mujin no Fafnir + title_english: Unlimited Fafnir + title_japanese: 銃皇無尽のファフニール + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-09T00:00:00+00:00' + to: '2015-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2015 + to: + day: 27 + month: 3 + year: 2015 + string: Jan 9, 2015 to Mar 27, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.17 + scored_by: 77076 + rank: 10078 + popularity: 1642 + members: 166479 + favorites: 179 + synopsis: |- + Midgar, all-girl academy, would have been notable just for the action of accepting its first and only male student, Yuu Mononobe. But Midgar stands out for much more than that: it's a school exclusive to a group of girls known as D's. Each of them have extremely powerful abilities in generating dark matter and manipulating it into powerful weaponry. + + The D's didn't exist twenty-five years ago, and only appeared after a number of mysterious, destructive monsters known as "Dragons" started appearing around the world. Strangely, just as suddenly as they appeared, they vanished. In their destructive wake, some girls started being born with symbols on their bodies and powers similar in nature to those wielded by the Dragons themselves. + + Now the D's attend this school, hoping to harness and utilize their powers against the Dragons. Yuu is their latest member and is extraordinary for being the only known male D in existence. Now he must forge relationships with the girls around him, including his long separated sister who attends the school as well, and work with them to investigate and eliminate the threat of the powerful Dragons. + background: Juuou Mujin no Fafnir adapts the first 3 novels of Tsukasa's light novel series of the same title. + season: winter + year: 2015 + broadcast: + day: Fridays + time: 02:16 + timezone: Asia/Tokyo + string: Fridays at 02:16 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1215 + type: anime + name: Daiichikosho + url: https://myanimelist.net/anime/producer/1215/Daiichikosho + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: [] + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 26441 + url: https://myanimelist.net/anime/26441/Junketsu_no_Maria + images: + jpg: + image_url: https://myanimelist.net/images/anime/1940/98844.jpg + small_image_url: https://myanimelist.net/images/anime/1940/98844t.jpg + large_image_url: https://myanimelist.net/images/anime/1940/98844l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1940/98844.webp + small_image_url: https://myanimelist.net/images/anime/1940/98844t.webp + large_image_url: https://myanimelist.net/images/anime/1940/98844l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/z29gaSlNJB8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Junketsu no Maria + - type: Synonym + title: 'Junketsu no Maria: Sorcière de gré' + - type: Synonym + title: pucelle de force + - type: Japanese + title: 純潔のマリア + - type: English + title: Maria the Virgin Witch + - type: German + title: Maria the Virgin Witch + title: Junketsu no Maria + title_english: Maria the Virgin Witch + title_japanese: 純潔のマリア + title_synonyms: + - 'Junketsu no Maria: Sorcière de gré' + - pucelle de force + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-11T00:00:00+00:00' + to: '2015-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2015 + to: + day: 29 + month: 3 + year: 2015 + string: Jan 11, 2015 to Mar 29, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.12 + scored_by: 68248 + rank: 4456 + popularity: 1658 + members: 164615 + favorites: 260 + synopsis: |- + Maria is a powerful young witch living with her two familiars in medieval France during the Hundred Years' War against England. As the war rages on and the innocent get caught in its destruction, Maria becomes fed up with the situation and begins using her magic to try and prevent further conflict in hopes of maintaining peace. However, her constant intervention soon attracts the attention of the heavens, and the archangel Michael is sent to keep her from meddling in human affairs. The divine being confronts Maria, and he forbids her from using her powers, issuing a decree that her magic will be taken if she loses her virginity. Though she is now labeled a heretic, Maria adamantly refuses to heed Michael's warning and continues to disrupt the war between the two nations. But as the Church begins plotting to take away the witch's power and put a stop to Maria's interference once and for all, her peacemaking may soon come to an end. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at Bandai Channel on January 4, 2015. Regular broadcasting began on January 11, + 2015. + season: winter + year: 2015 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1605 + type: anime + name: I Will + url: https://myanimelist.net/anime/producer/1605/I_Will + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 25429 + url: https://myanimelist.net/anime/25429/Isuca + images: + jpg: + image_url: https://myanimelist.net/images/anime/1769/134794.jpg + small_image_url: https://myanimelist.net/images/anime/1769/134794t.jpg + large_image_url: https://myanimelist.net/images/anime/1769/134794l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1769/134794.webp + small_image_url: https://myanimelist.net/images/anime/1769/134794t.webp + large_image_url: https://myanimelist.net/images/anime/1769/134794l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ut_1MzzZYWI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isuca + - type: Synonym + title: Isuka + - type: Japanese + title: ISUCA [イスカ] + - type: English + title: Isuca + title: Isuca + title_english: Isuca + title_japanese: ISUCA [イスカ] + title_synonyms: + - Isuka + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2015-01-24T00:00:00+00:00' + to: '2015-03-28T00:00:00+00:00' + prop: + from: + day: 24 + month: 1 + year: 2015 + to: + day: 28 + month: 3 + year: 2015 + string: Jan 24, 2015 to Mar 28, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 5.98 + scored_by: 71031 + rank: 11090 + popularity: 1703 + members: 157712 + favorites: 103 + synopsis: |- + Poor Shinichirou Asano has the worst of luck. His parents abandoned him and ran off to Europe. If that isn't bad enough on its own, they barely left him any money to take care of himself. In order to pay rent and keep a roof over his head, he has to work. Unfortunately, he was just fired from his last job and as a high school student, he doesn't have many other prospects. + + One evening, he's attacked by a centipede monster on his way home. Shinichirou is saved by a mysterious girl with a bow and arrow, who he later discovers is Sakuya Shimazu, a beautiful student who attends his school. But when he later helps an injured girl, he discovers two things. First, the injured girl isn't human at all but rather a nekomata, a two-tailed demon cat. And second, Sakuya comes from a family of exorcists, who've protected humanity from rogue monsters and spirits for generations. Because Shinichirou was responsible for releasing the nekomata, Sakuya enlists his help in recapturing the demon, but that's just the beginning of Shinichirou's relationship with Sakuya. It turns out the Shimazu family needs a housekeeper and it just so happens that Shinichirou excels at cooking and likes to clean! It may not be his dream job, but if it pays the rent and puts food on the table... + background: Episode 1 was previewed at a screening at Kadokawa Cinema Shinjuku in Tokyo on January 5, 2015. Regular + broadcasting began on January 24, 2015. + season: winter + year: 2015 + broadcast: + day: Saturdays + time: 01:35 + timezone: Asia/Tokyo + string: Saturdays at 01:35 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 38 + type: anime + name: Arms + url: https://myanimelist.net/anime/producer/38/Arms + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 28285 + url: https://myanimelist.net/anime/28285/Trinity_Seven__Nanatsu_no_Taizai_to_Nana_Madoushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/74066.jpg + small_image_url: https://myanimelist.net/images/anime/3/74066t.jpg + large_image_url: https://myanimelist.net/images/anime/3/74066l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/74066.webp + small_image_url: https://myanimelist.net/images/anime/3/74066t.webp + large_image_url: https://myanimelist.net/images/anime/3/74066l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Trinity Seven: Nanatsu no Taizai to Nana Madoushi' + - type: Synonym + title: Trinity Seven (2015) + - type: Synonym + title: 'Trinity Seven: The Seven Deadly Sins and The Seven Mages' + - type: Japanese + title: トリニティセブン 七つの大罪と七魔道士 + - type: English + title: Trinity Seven OVA + title: 'Trinity Seven: Nanatsu no Taizai to Nana Madoushi' + title_english: Trinity Seven OVA + title_japanese: トリニティセブン 七つの大罪と七魔道士 + title_synonyms: + - Trinity Seven (2015) + - 'Trinity Seven: The Seven Deadly Sins and The Seven Mages' + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-03-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 3 + year: 2015 + to: + day: null + month: null + year: null + string: Mar 25, 2015 + duration: 26 min + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 78082 + rank: 3201 + popularity: 1795 + members: 148875 + favorites: 137 + synopsis: Arata is set to be expelled! The only way to save himself is to be taught more about the magic archives from + the Trinity Seven themselves. + background: Bundled with the limited edition version of the 11th compiled volume of the manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: [] + studios: + - mal_id: 1569 + type: anime + name: Seven Arcs Pictures + url: https://myanimelist.net/anime/producer/1569/Seven_Arcs_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 25303 + url: https://myanimelist.net/anime/25303/Haikyuu_Lev_Genzan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1498/96643.jpg + small_image_url: https://myanimelist.net/images/anime/1498/96643t.jpg + large_image_url: https://myanimelist.net/images/anime/1498/96643l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1498/96643.webp + small_image_url: https://myanimelist.net/images/anime/1498/96643t.webp + large_image_url: https://myanimelist.net/images/anime/1498/96643l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! Lev Genzan! + - type: Synonym + title: 'Haikyuu!!: Jump Festa 2014 Special' + - type: Synonym + title: Haikyuu!! OVA + - type: Synonym + title: Haikyuu!! The Arrival of Haiba Lev + - type: Japanese + title: ハイキュー!! リエーフ見参! + - type: English + title: 'Haikyu!!: Lev Appears!' + title: Haikyuu!! Lev Genzan! + title_english: 'Haikyu!!: Lev Appears!' + title_japanese: ハイキュー!! リエーフ見参! + title_synonyms: + - 'Haikyuu!!: Jump Festa 2014 Special' + - Haikyuu!! OVA + - Haikyuu!! The Arrival of Haiba Lev + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-03-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 3 + year: 2015 + to: + day: null + month: null + year: null + string: Mar 4, 2015 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.69 + scored_by: 79671 + rank: 1486 + popularity: 1824 + members: 145720 + favorites: 208 + synopsis: "Nekoma High School's volleyball team recruits a new member: the half-Japanese, half-Russian Lev Haiba. Though\ + \ the self-proclaimed ace is blessed with great height, he lacks basic volleyball techniques. This gives the team's\ + \ setter, Kenma Kozume, a hard time when matching up with him.\n \nTo everyone's surprise, Nekoma's coach suggests\ + \ that Lev play in the Kunihira Senior High School's practice match, leaving Kenma no choice but to cooperate with\ + \ the tall player. Will Kenma be able to overcome this new challenge?\n \n[Written by MAL Rewrite]" + background: 'Haikyuu!!: Lev Kenzan! (ハイキュー!! リエーフ見参!) was screened at Jump Festa 2014 on November 9, 2014. The OVA was + later bundled with the 15th volume of the manga, released March 4, 2015.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 29317 + url: https://myanimelist.net/anime/29317/Saenai_Heroine_no_Sodatekata__Ai_to_Seishun_no_Service-kai + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/70493.jpg + small_image_url: https://myanimelist.net/images/anime/6/70493t.jpg + large_image_url: https://myanimelist.net/images/anime/6/70493l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/70493.webp + small_image_url: https://myanimelist.net/images/anime/6/70493t.webp + large_image_url: https://myanimelist.net/images/anime/6/70493l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Saenai Heroine no Sodatekata: Ai to Seishun no Service-kai' + - type: Synonym + title: 'Saenai Heroine no Sodatekata Special: Episode 0' + - type: Synonym + title: 'Saekano: How to Raise a Boring Girlfriend: Prologue' + - type: Japanese + title: '冴えない彼女の育てかた #0 「愛と青春のサービス回」' + - type: English + title: 'Saekano: Fan Service of Love and Youth' + - type: Spanish + title: 'Saekano: Cómo Educar a una Novia Aburrida. Capítulo 0: Fan Service de Amor y Corazones Puros' + title: 'Saenai Heroine no Sodatekata: Ai to Seishun no Service-kai' + title_english: 'Saekano: Fan Service of Love and Youth' + title_japanese: '冴えない彼女の育てかた #0 「愛と青春のサービス回」' + title_synonyms: + - 'Saenai Heroine no Sodatekata Special: Episode 0' + - 'Saekano: How to Raise a Boring Girlfriend: Prologue' + type: TV Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-01-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 1 + year: 2015 + to: + day: null + month: null + year: null + string: Jan 9, 2015 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.08 + scored_by: 76915 + rank: 4723 + popularity: 1891 + members: 138978 + favorites: 104 + synopsis: |- + The latest game by Blessing Software needs one final push to make it over the finish line. To help with this, the team ventures out to the Japanese countryside for location scouting. Illustrator Eriri Spencer Sawamura and model Megumi Kato busy themselves with work. However, scriptwriter Utaha Kasumigaoka and music producer Michiru Hyoudou have other plans with their teammate Tomoya Aki. With the four girls all fighting for his attention, Tomoya finds himself in increasingly risqué situations. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 26165 + url: https://myanimelist.net/anime/26165/Yuri_Kuma_Arashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/69203.jpg + small_image_url: https://myanimelist.net/images/anime/3/69203t.jpg + large_image_url: https://myanimelist.net/images/anime/3/69203l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/69203.webp + small_image_url: https://myanimelist.net/images/anime/3/69203t.webp + large_image_url: https://myanimelist.net/images/anime/3/69203l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fs9NVXjiHiQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuri Kuma Arashi + - type: Synonym + title: Yuri Bear Storm + - type: Synonym + title: 'Love Bullet: Yurikuma Arashi' + - type: Japanese + title: ユリ熊嵐 + - type: English + title: Yurikuma Arashi + title: Yuri Kuma Arashi + title_english: Yurikuma Arashi + title_japanese: ユリ熊嵐 + title_synonyms: + - Yuri Bear Storm + - 'Love Bullet: Yurikuma Arashi' + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-01-06T00:00:00+00:00' + to: '2015-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2015 + to: + day: 31 + month: 3 + year: 2015 + string: Jan 6, 2015 to Mar 31, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.08 + scored_by: 36752 + rank: 4733 + popularity: 2237 + members: 110426 + favorites: 781 + synopsis: |- + In the past, humanoid bears coexisted with humans. However, a meteor shower that fell onto Earth had a strange effect on bears throughout the world: they suddenly became violent and hungry for human flesh, spurring an endless cycle of bloodshed in which bear ate man and man shot bear, forgetting the lively relationship they once had. The "Wall of Severance" was thus built, separating the two civilizations and keeping peace. + + Kureha Tsubaki and Sumika Izumino are two lovers attending Arashigaoka Academy, who, upon the arrival of two bears that have sneaked through the Wall of Severance and infiltrated the academy, find their relationship under a grave threat. The hungering yet affectionate bears, Ginko Yurishiro and Lulu Yurigasaki, seem to see the bear-hating Kureha as more than just another meal, and in getting closer to her, trigger an unraveling of secrets that Kureha may not be able to bear. + + When their relationships provoke the Invisible Storm, a group that keeps order within the ideological school, the girls must stand on trial with their love, embarking on a journey of self-discovery en route to attaining true love's "promised kiss." + + [Written by MAL Rewrite] + background: Yuri Kuma Arashi was known by several different working names, such as Penguinbear Project and Yuri★Asobi. + season: winter + year: 2015 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 282 + type: anime + name: Gentosha Comics + url: https://myanimelist.net/anime/producer/282/Gentosha_Comics + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 26213 + url: https://myanimelist.net/anime/26213/Free_Eternal_Summer__Kindan_no_All_Hard + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/73125.jpg + small_image_url: https://myanimelist.net/images/anime/6/73125t.jpg + large_image_url: https://myanimelist.net/images/anime/6/73125l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/73125.webp + small_image_url: https://myanimelist.net/images/anime/6/73125t.webp + large_image_url: https://myanimelist.net/images/anime/6/73125l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Free! Eternal Summer: Kindan no All Hard!' + - type: Synonym + title: Free! Eternal Summer Special + - type: Synonym + title: Free! Iwatobi Swim Club 2 Special + - type: Synonym + title: Free! 2nd Season Special + - type: Japanese + title: Free! -Eternal Summer- 禁断のオールハード! + title: 'Free! Eternal Summer: Kindan no All Hard!' + title_english: null + title_japanese: Free! -Eternal Summer- 禁断のオールハード! + title_synonyms: + - Free! Eternal Summer Special + - Free! Iwatobi Swim Club 2 Special + - Free! 2nd Season Special + type: Special + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-03-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 3 + year: 2015 + to: + day: null + month: null + year: null + string: Mar 18, 2015 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.88 + scored_by: 47776 + rank: 988 + popularity: 2409 + members: 99133 + favorites: 201 + synopsis: Unaired episode included with volume 7 of the Blu-ray/DVD. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/22-2015-spring.yaml b/test/fixtures/jikan/season_matrix/22-2015-spring.yaml new file mode 100644 index 0000000..51ecc77 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/22-2015-spring.yaml @@ -0,0 +1,3457 @@ +metadata: + captured_at: '2026-05-11T11:33:18Z' + label: 2015-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2015/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:18 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:43344f6f6764c43d059a5f3dd0fc68f9b4938d43 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 230 + per_page: 25 + data: + - mal_id: 28171 + url: https://myanimelist.net/anime/28171/Shokugeki_no_Souma + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/148976.jpg + small_image_url: https://myanimelist.net/images/anime/1444/148976t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/148976l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/148976.webp + small_image_url: https://myanimelist.net/images/anime/1444/148976t.webp + large_image_url: https://myanimelist.net/images/anime/1444/148976l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H-4Qyr_3V-E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shokugeki no Souma + - type: Synonym + title: Shokugeki no Soma + - type: Synonym + title: 'Food Wars: Shokugeki no Soma' + - type: Japanese + title: 食戟のソーマ + - type: English + title: Food Wars! Shokugeki no Soma + - type: German + title: Food Wars! Shokugeki no Soma + - type: Spanish + title: Food Wars! Shokugeki no Soma + - type: French + title: Food Wars! Shokugeki no Soma + title: Shokugeki no Souma + title_english: Food Wars! Shokugeki no Soma + title_japanese: 食戟のソーマ + title_synonyms: + - Shokugeki no Soma + - 'Food Wars: Shokugeki no Soma' + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2015-04-04T00:00:00+00:00' + to: '2015-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2015 + to: + day: 26 + month: 9 + year: 2015 + string: Apr 4, 2015 to Sep 26, 2015 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 1056681 + rank: 586 + popularity: 71 + members: 1748817 + favorites: 23740 + synopsis: |- + Souma Yukihira has been cooking alongside his father Jouichirou for as long as he can remember. As a sous chef at his father's restaurant, he has spent years developing his culinary expertise and inventing new dishes to amaze their customers. He aspires to exceed his father's skill and take over the restaurant one day, but he is shocked to learn that Jouichirou is closing up the shop to take a job in New York. + + Rather than tagging along with his father, Souma finds himself enrolling at the prestigious Tootsuki Culinary Academy, where only 10 percent of its students end up graduating. The school is famous for its "Shokugeki"—intense cooking competitions between students often used to settle debates and arguments. Jouichirou tells Souma that, to surpass him, he must survive the next three years at Tootsuki and graduate there. + + The academy's brutal curriculum and fiercely competitive student body await the young chef, who must learn to navigate the treacherous environment if he wants to stand a chance at realizing his dreams. But is skill alone enough to let him rise to the top? + + [Written by MAL Rewrite] + background: Shokugeki no Souma was released on Blu-ray and DVD as Food Wars! Shokugeki no Souma by Sentai Filmworks + on August 15, 2017. + season: spring + year: 2015 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1605 + type: anime + name: I Will + url: https://myanimelist.net/anime/producer/1605/I_Will + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28121 + url: https://myanimelist.net/anime/28121/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1172/148981.jpg + small_image_url: https://myanimelist.net/images/anime/1172/148981t.jpg + large_image_url: https://myanimelist.net/images/anime/1172/148981l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1172/148981.webp + small_image_url: https://myanimelist.net/images/anime/1172/148981t.webp + large_image_url: https://myanimelist.net/images/anime/1172/148981l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sbcwRt0y4kY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka + - type: Synonym + title: DanMachi + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうか + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? + - type: German + title: 'DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?' + - type: Spanish + title: DANMACHI ¿Qué tiene de Malo intentar Ligar en una Mazmorra? + - type: French + title: 'DanMachi: Familia Myth' + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうか + title_synonyms: + - DanMachi + - Is It Wrong That I Want to Meet You in a Dungeon + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-04T00:00:00+00:00' + to: '2015-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2015 + to: + day: 27 + month: 6 + year: 2015 + string: Apr 4, 2015 to Jun 27, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 1016094 + rank: 2101 + popularity: 77 + members: 1653506 + favorites: 12736 + synopsis: |- + Life in the bustling city of Orario is never dull, especially for Bell Cranel, a naive young man who hopes to become the greatest adventurer in the land. After a chance encounter with the lonely goddess, Hestia, his dreams become a little closer to reality. With her support, Bell embarks on a fantastic quest as he ventures deep within the city's monster-filled catacombs, known only as the "Dungeon." Death lurks around every corner in the cavernous depths of this terrifying labyrinth, and a mysterious power moves amidst the shadows. + + Even on the surface, survival is a hard-earned privilege. Indeed, nothing is ever certain in a world where gods and humans live and work together, especially when they often struggle to get along. One thing is for sure, though: a myriad of blunders, triumphs and friendships awaits the dauntlessly optimistic protagonist of this herculean tale. + + [Written by MAL Rewrite] + background: The series adapts the first 5 novels of Fujino Omori's light novel series of the same title. + season: spring + year: 2015 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 26243 + url: https://myanimelist.net/anime/26243/Owari_no_Seraph + images: + jpg: + image_url: https://myanimelist.net/images/anime/1879/148979.jpg + small_image_url: https://myanimelist.net/images/anime/1879/148979t.jpg + large_image_url: https://myanimelist.net/images/anime/1879/148979l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1879/148979.webp + small_image_url: https://myanimelist.net/images/anime/1879/148979t.webp + large_image_url: https://myanimelist.net/images/anime/1879/148979l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NtzDAmRhD9s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Owari no Seraph + - type: Synonym + title: Seraph of the End + - type: Japanese + title: 終わりのセラフ + - type: English + title: 'Seraph of the End: Vampire Reign' + - type: German + title: 'Seraph of the End: Vampire Reign' + - type: Spanish + title: 'Seraph of the End: El Reino de los Vampiros' + - type: French + title: 'Seraph of the End: Vampire Reign' + title: Owari no Seraph + title_english: 'Seraph of the End: Vampire Reign' + title_japanese: 終わりのセラフ + title_synonyms: + - Seraph of the End + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-04T00:00:00+00:00' + to: '2015-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2015 + to: + day: 20 + month: 6 + year: 2015 + string: Apr 4, 2015 to Jun 20, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.49 + scored_by: 785905 + rank: 2295 + popularity: 103 + members: 1454093 + favorites: 14594 + synopsis: |- + With the appearance of a mysterious virus that kills everyone above the age of 13, mankind becomes enslaved by previously hidden, power-hungry vampires who emerge in order to subjugate society with the promise of protecting the survivors, in exchange for donations of their blood. + + Among these survivors are Yuuichirou and Mikaela Hyakuya, two young boys who are taken captive from an orphanage, along with other children whom they consider family. Discontent with being treated like livestock under the vampires' cruel reign, Mikaela hatches a rebellious escape plan that is ultimately doomed to fail. The only survivor to come out on the other side is Yuuichirou, who is found by the Moon Demon Company, a military unit dedicated to exterminating the vampires in Japan. + + Many years later, now a member of the Japanese Imperial Demon Army, Yuuichirou is determined to take revenge on the creatures that slaughtered his family, but at what cost? + + [Written by MAL Rewrite] + background: Owari no Seraph is an anime adaptation of Takaya Kagami's ongoing shounen manga of the same name. Kagami + himself did script writing for the anime involving events that were not yet published in the source material. The + anime is licensed by Funimation for both video and streaming in North America. The source material has also spawned + several other adaptations including two different light novel series, a voice comic, two video games and a spin-off + manga. + season: spring + year: 2015 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 23847 + url: https://myanimelist.net/anime/23847/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_Zoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/75376.jpg + small_image_url: https://myanimelist.net/images/anime/11/75376t.jpg + large_image_url: https://myanimelist.net/images/anime/11/75376l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/75376.webp + small_image_url: https://myanimelist.net/images/anime/11/75376t.webp + large_image_url: https://myanimelist.net/images/anime/11/75376l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku + - type: Synonym + title: Oregairu 2 + - type: Synonym + title: My Teen Romantic Comedy SNAFU 2 + - type: Synonym + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season + - type: Synonym + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season + - type: Japanese + title: やはり俺の青春ラブコメはまちがっている。続 + - type: English + title: My Teen Romantic Comedy SNAFU TOO! + - type: German + title: My Teen Romantic Comedy SNAFU Too! + - type: Spanish + title: My Teen Romantic Comedy SNAFU Too! + - type: French + title: My Teen Romantic Comedy SNAFU Too! + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku + title_english: My Teen Romantic Comedy SNAFU TOO! + title_japanese: やはり俺の青春ラブコメはまちがっている。続 + title_synonyms: + - Oregairu 2 + - My Teen Romantic Comedy SNAFU 2 + - Yahari Ore no Seishun Love Comedy wa Machigatteiru. Second Season + - Yahari Ore no Seishun Love Comedy wa Machigatteiru. 2nd Season + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-03T00:00:00+00:00' + to: '2015-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2015 + to: + day: 26 + month: 6 + year: 2015 + string: Apr 3, 2015 to Jun 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 747869 + rank: 455 + popularity: 146 + members: 1163251 + favorites: 16212 + synopsis: "With the Volunteer Service Club now firmly established, it is receiving more requests from students in search\ + \ of solutions to their various issues. However, the club members often struggle to see eye to eye when it comes to\ + \ their problem-solving ideals. The suggestions that Hachiman Hikigaya recommends frequently clash with those of Yukino\ + \ Yukinoshita, fracturing the relationships within the club. \n\nDespite their differences, with the trio constantly\ + \ trying to find common ground, they may soon reach a point where they discover something genuine.\n\n[Written by\ + \ MAL Rewrite]" + background: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku adapts volumes 7 to 11 of Wataru Watari's light + novel series of the same title. + season: spring + year: 2015 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 751 + type: anime + name: Marvelous AQL + url: https://myanimelist.net/anime/producer/751/Marvelous_AQL + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 27775 + url: https://myanimelist.net/anime/27775/Plastic_Memories + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/72750.jpg + small_image_url: https://myanimelist.net/images/anime/4/72750t.jpg + large_image_url: https://myanimelist.net/images/anime/4/72750l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/72750.webp + small_image_url: https://myanimelist.net/images/anime/4/72750t.webp + large_image_url: https://myanimelist.net/images/anime/4/72750l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Rl6ypQrTzOI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Plastic Memories + - type: Synonym + title: Plamemo + - type: Japanese + title: プラスティック・メモリーズ + - type: English + title: Plastic Memories + title: Plastic Memories + title_english: Plastic Memories + title_japanese: プラスティック・メモリーズ + title_synonyms: + - Plamemo + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-05T00:00:00+00:00' + to: '2015-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2015 + to: + day: 28 + month: 6 + year: 2015 + string: Apr 5, 2015 to Jun 28, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.92 + scored_by: 513656 + rank: 899 + popularity: 181 + members: 1030883 + favorites: 12791 + synopsis: |- + Eighteen-year-old Tsukasa Mizugaki has failed his college entrance exams, but after pulling some strings, he manages to land a job at the Sion Artificial Intelligence Corporation. SAI Corp is responsible for the creation of "Giftias"—highly advanced androids which are almost indiscernible from normal humans. However, unlike humans, Giftias have a maximum lifespan of 81,920 hours, or around nine years and four months. Terminal Service One, the station Tsukasa was assigned to, is responsible for collecting Giftias that have met their expiration date, before they lose their memories and become hostile. + + Promptly after joining Terminal Service One, Tsukasa is partnered with a beautiful Giftia named Isla. She is a Terminal Service veteran and considered the best in Giftia retrievals, contrary to her petite figure and placid nature. Time is fleeting though, and Tsukasa must come to terms with his feelings for Isla before her time is up. No matter how much someone desires it, nothing lasts forever. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 24439 + url: https://myanimelist.net/anime/24439/Kekkai_Sensen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1449/142053.jpg + small_image_url: https://myanimelist.net/images/anime/1449/142053t.jpg + large_image_url: https://myanimelist.net/images/anime/1449/142053l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1449/142053.webp + small_image_url: https://myanimelist.net/images/anime/1449/142053t.webp + large_image_url: https://myanimelist.net/images/anime/1449/142053l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aMe0J7c8uOU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kekkai Sensen + - type: Synonym + title: Bloodline Battlefront + - type: Japanese + title: 血界戦線 + - type: English + title: Blood Blockade Battlefront + - type: German + title: Blood Blockade Battlefront + - type: Spanish + title: Blood Blockade Battlefront + - type: French + title: Blood Blockade Battlefront + title: Kekkai Sensen + title_english: Blood Blockade Battlefront + title_japanese: 血界戦線 + title_synonyms: + - Bloodline Battlefront + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-05T00:00:00+00:00' + to: '2015-10-04T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2015 + to: + day: 4 + month: 10 + year: 2015 + string: Apr 5, 2015 to Oct 4, 2015 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 7.59 + scored_by: 414453 + rank: 1844 + popularity: 214 + members: 946197 + favorites: 8417 + synopsis: |- + Supersonic monkeys, vampires, talking fishmen, and all sorts of different supernatural monsters living alongside humans—this has been part of daily life in Hellsalem's Lot, formerly known as New York City, for some time now. When a gateway between Earth and the Beyond opened three years ago, New Yorkers and creatures from the other dimension alike were trapped in an impenetrable bubble and were forced to live together. Libra is a secret organization composed of eccentrics and superhumans, tasked with keeping order in the city and making sure that chaos doesn't spread to the rest of the world. + + Pursuing photography as a hobby, Leonardo Watch is living a normal life with his parents and sister. But when he obtains the "All-seeing Eyes of the Gods" at the expense of his sister's eyesight, he goes to Hellsalem's Lot in order to help her by finding answers about the mysterious powers he received. He soon runs into Libra, and when Leo unexpectedly joins their ranks, he gets more than what he bargained for. Kekkai Sensen follows Leo's misadventures in the strangest place on Earth with his equally strange comrades—as the ordinary boy unwittingly sees his life take a turn for the extraordinary. + + [Written by MAL Rewrite] + background: Kekkai Sensen adapts a select 12 chapters from the first 6 volumes of the manga it is based on while adding + a new plotline and characters, culminating in an anime-exclusive ending. Aside from the first episode which adapts + the three-chapter pilot, each episode adapts one chapter. Episodes 1 and 2 were previewed at a screening at Odaiba + Cinema Mediage in Tokyo on March 21, 2015. Regular broadcasting began on April 5, 2015. The final episode was originally + scheduled to broadcast on July 4, 2015, but was delayed to October 4, 2015. + season: spring + year: 2015 + broadcast: + day: Sundays + time: 02:28 + timezone: Asia/Tokyo + string: Sundays at 02:28 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28701 + url: https://myanimelist.net/anime/28701/Fate_stay_night__Unlimited_Blade_Works_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1881/124810.jpg + small_image_url: https://myanimelist.net/images/anime/1881/124810t.jpg + large_image_url: https://myanimelist.net/images/anime/1881/124810l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1881/124810.webp + small_image_url: https://myanimelist.net/images/anime/1881/124810t.webp + large_image_url: https://myanimelist.net/images/anime/1881/124810l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0PY9qcyr3-0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night: Unlimited Blade Works 2nd Season' + - type: Synonym + title: Fate/stay night (2015) + - type: Synonym + title: Fate - Stay Night + - type: Japanese + title: Fate/stay night [Unlimited Blade Works] 2nd シーズン + - type: English + title: Fate/stay night [Unlimited Blade Works] Season 2 + title: 'Fate/stay night: Unlimited Blade Works 2nd Season' + title_english: Fate/stay night [Unlimited Blade Works] Season 2 + title_japanese: Fate/stay night [Unlimited Blade Works] 2nd シーズン + title_synonyms: + - Fate/stay night (2015) + - Fate - Stay Night + type: TV + source: Visual novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-05T00:00:00+00:00' + to: '2015-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2015 + to: + day: 28 + month: 6 + year: 2015 + string: Apr 5, 2015 to Jun 28, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.32 + scored_by: 606331 + rank: 303 + popularity: 220 + members: 922586 + favorites: 9676 + synopsis: |- + In the midst of the Fifth Holy Grail War, Caster sets her plans into motion, beginning with the capture of Shirou's Servant Saber. With the witch growing ever more powerful, Rin and Archer determine she is a threat that must be dealt with at once. But as the balance of power in the war begins to shift, the Master and Servant find themselves walking separate ways. + + Meanwhile, despite losing his Servant and stumbling from injuries, Shirou ignores Rin's warning to abandon the battle royale, forcing his way into the fight against Caster. Determined to show his resolve in his will to fight, Shirou's potential to become a protector of the people is put to the test. + + Amidst the bloodshed and chaos, the motivations of each Master and Servant are slowly revealed as they sacrifice everything in order to arise as the victor and claim the Holy Grail. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 28677 + url: https://myanimelist.net/anime/28677/Yamada-kun_to_7-nin_no_Majo + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/73700.jpg + small_image_url: https://myanimelist.net/images/anime/2/73700t.jpg + large_image_url: https://myanimelist.net/images/anime/2/73700l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/73700.webp + small_image_url: https://myanimelist.net/images/anime/2/73700t.webp + large_image_url: https://myanimelist.net/images/anime/2/73700l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1_n_k5nNA3A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yamada-kun to 7-nin no Majo + - type: Synonym + title: Yamada-kun to Nananin no Majo + - type: Synonym + title: Yamada-kun and the 7 Witches + - type: Synonym + title: Yamajo + - type: Japanese + title: 山田くんと7人の魔女 + - type: English + title: Yamada-kun and the Seven Witches + - type: German + title: Yamada-Kun & the Seven Witches + - type: Spanish + title: Yamada-kun And The Seven Witches + - type: French + title: Yamada-kun and the Seven Witches + title: Yamada-kun to 7-nin no Majo + title_english: Yamada-kun and the Seven Witches + title_japanese: 山田くんと7人の魔女 + title_synonyms: + - Yamada-kun to Nananin no Majo + - Yamada-kun and the 7 Witches + - Yamajo + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-12T00:00:00+00:00' + to: '2015-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2015 + to: + day: 28 + month: 6 + year: 2015 + string: Apr 12, 2015 to Jun 28, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 478228 + rank: 2174 + popularity: 256 + members: 854381 + favorites: 4306 + synopsis: "When Ryuu Yamada entered high school, he wanted to turn over a new leaf and lead a productive school life.\ + \ That is why he chose to attend Suzaku High School, where no one would know of his violent delinquent reputation.\ + \ However, much to Ryuu's dismay, he is soon bored; now a second year, Ryuu has reverted to his old ways—lazy with\ + \ abysmal grades and always getting into fights.\n\nOne day, back from yet another office visit, Ryuu encounters Urara\ + \ Shiraishi, a beautiful honors student. A misstep causes them both to tumble down the stairs, ending in an accidental\ + \ kiss! The pair discover they can switch bodies with a kiss: an ability which will prove to be both convenient and\ + \ troublesome.\n \nLearning of their new power, Toranosuke Miyamura, a student council officer and the single member\ + \ of the Supernatural Studies Club, recruits them for the club. Soon joined by Miyabi Itou, an eccentric interested\ + \ in all things supernatural, the group unearths the legend of the Seven Witches of Suzaku High, seven female students\ + \ who have obtained different powers activated by a kiss. The Supernatural Studies Club embarks on its first quest:\ + \ to find the identities of all the witches.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1215 + type: anime + name: Daiichikosho + url: https://myanimelist.net/anime/producer/1215/Daiichikosho + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1313 + type: anime + name: Amuse + url: https://myanimelist.net/anime/producer/1313/Amuse + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 24703 + url: https://myanimelist.net/anime/24703/High_School_DxD_BorN + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/73642.jpg + small_image_url: https://myanimelist.net/images/anime/12/73642t.jpg + large_image_url: https://myanimelist.net/images/anime/12/73642l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/73642.webp + small_image_url: https://myanimelist.net/images/anime/12/73642t.webp + large_image_url: https://myanimelist.net/images/anime/12/73642l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qWSVkPaH3n8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD BorN + - type: Synonym + title: High School DxD Third Season + - type: Synonym + title: High School DxD 3rd Season + - type: Synonym + title: Highschool DxD BorN + - type: Japanese + title: ハイスクールD×D BorN + - type: English + title: High School DxD BorN + title: High School DxD BorN + title_english: High School DxD BorN + title_japanese: ハイスクールD×D BorN + title_synonyms: + - High School DxD Third Season + - High School DxD 3rd Season + - Highschool DxD BorN + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-04T00:00:00+00:00' + to: '2015-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2015 + to: + day: 20 + month: 6 + year: 2015 + string: Apr 4, 2015 to Jun 20, 2015 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.41 + scored_by: 536467 + rank: 2662 + popularity: 258 + members: 851484 + favorites: 3939 + synopsis: |- + The Red Dragon Emperor, Issei Hyoudou, and the Occult Research Club are back in action as summer break comes for the students of Kuoh Academy. After their fight with Issei’s sworn enemy, Vali and the Chaos Brigade, it is clear just how inexperienced Rias Gremory's team is. As a result, she and Azazel lead the club on an intense training regime in the Underworld to prepare them for the challenges that lie ahead. + + While they slowly mature as a team, Issei will once again find himself in intimate situations with the girls of the Occult Research Club. Meanwhile, their adversaries grow stronger and more numerous as they rally their forces. And with the sudden appearance of Loki, the Evil God of Norse Mythology, the stage is set for epic fights and wickedly powerful devils in High School DxD BorN! + + [Written by MAL Rewrite] + background: Episodes 1 and 2 were previewed at back-to-back screenings at United Cinemas Toyosu in Tokyo on March 15, + 2015. Regular broadcasting began on April 4, 2015. + season: spring + year: 2015 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 27787 + url: https://myanimelist.net/anime/27787/Nisekoi_ + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/72626.jpg + small_image_url: https://myanimelist.net/images/anime/13/72626t.jpg + large_image_url: https://myanimelist.net/images/anime/13/72626l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/72626.webp + small_image_url: https://myanimelist.net/images/anime/13/72626t.webp + large_image_url: https://myanimelist.net/images/anime/13/72626l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2hrjZgMVMnc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nisekoi:' + - type: Synonym + title: Nisekoi 2nd Season + - type: Japanese + title: ニセコイ + - type: English + title: 'Nisekoi: False Love Season 2' + - type: German + title: 'Nisekoi: Liebe, Lügen & Yakuza' + - type: French + title: 'Nisekoi: Amours Mensonges & Yakuzas' + title: 'Nisekoi:' + title_english: 'Nisekoi: False Love Season 2' + title_japanese: ニセコイ + title_synonyms: + - Nisekoi 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-10T00:00:00+00:00' + to: '2015-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2015 + to: + day: 26 + month: 6 + year: 2015 + string: Apr 10, 2015 to Jun 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 452568 + rank: 3000 + popularity: 311 + members: 743538 + favorites: 1886 + synopsis: "Despite having seemingly quelled the war between their respective gangs, Raku Ichijou and Chitoge Kirisaki\ + \ still carry on with their fake relationship. Eventually, as Chitoge's perception of Raku slowly changes, she even\ + \ begins to see him as a little charming. \n\nChitoge struggles to come to terms with her newfound feelings for Raku,\ + \ as a new girl joins the slew of Raku's admirers and the competition among those vying for the yakuza heir's attention\ + \ grows even fiercer. And amidst all this, Raku's search for his first love and the contents of the mysterious sealed\ + \ locket continues in Nisekoi:, which picks up where the first season left off.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28297 + url: https://myanimelist.net/anime/28297/Ore_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/69455.jpg + small_image_url: https://myanimelist.net/images/anime/13/69455t.jpg + large_image_url: https://myanimelist.net/images/anime/13/69455l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/69455.webp + small_image_url: https://myanimelist.net/images/anime/13/69455t.webp + large_image_url: https://myanimelist.net/images/anime/13/69455l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2oAYS6jWyIs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore Monogatari!! + - type: Synonym + title: Ore Monogatari!! + - type: Synonym + title: My Story!! + - type: Japanese + title: 俺物語!! + - type: English + title: My Love Story!! + - type: German + title: My Love Story!! + - type: Spanish + title: 'My Love Story!!: Ore Monogatari!!' + - type: French + title: My Love Story!! + title: Ore Monogatari!! + title_english: My Love Story!! + title_japanese: 俺物語!! + title_synonyms: + - Ore Monogatari!! + - My Story!! + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2015-04-09T00:00:00+00:00' + to: '2015-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2015 + to: + day: 24 + month: 9 + year: 2015 + string: Apr 9, 2015 to Sep 24, 2015 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 350738 + rank: 968 + popularity: 317 + members: 735180 + favorites: 5418 + synopsis: "With his muscular build and tall stature, Takeo Gouda is no ordinary high school freshman. However, behind\ + \ Takeo's intimidating appearance lies a pure heart of gold, and he is considered a hero by his male peers for his\ + \ courage and chivalry. \n\nUnfortunately for Takeo, his appearance does not bode well for his love life. As if his\ + \ looks were not already enough to scare the opposite sex away, Takeo's cool, handsome best friend and constant companion\ + \ Makoto Sunakawa easily, and unintentionally, steals the hearts of the female students—including every girl Takeo\ + \ has ever liked.\n\nOne day, when Takeo saves cute Rinko Yamato from being molested, he falls in love with her instantly.\ + \ Unfortunately, he suspects that she might be interested in Sunakawa. Despite his romantic feelings for Yamato continuing\ + \ to bloom, Takeo decides to act as her cupid, even as he yearns for his own love story.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Thursdays + time: 01:29 + timezone: Asia/Tokyo + string: Thursdays at 01:29 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 28977 + url: https://myanimelist.net/anime/28977/Gintama° + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/72078.jpg + small_image_url: https://myanimelist.net/images/anime/3/72078t.jpg + large_image_url: https://myanimelist.net/images/anime/3/72078l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/72078.webp + small_image_url: https://myanimelist.net/images/anime/3/72078t.webp + large_image_url: https://myanimelist.net/images/anime/3/72078l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama° + - type: Synonym + title: Gintama' (2015) + - type: Japanese + title: 銀魂° + - type: English + title: Gintama Season 4 + - type: German + title: Gintama Season 4 + - type: Spanish + title: Gintama Temporada 4 + - type: French + title: Gintama Saison 4 + title: Gintama° + title_english: Gintama Season 4 + title_japanese: 銀魂° + title_synonyms: + - Gintama' (2015) + type: TV + source: Manga + episodes: 51 + status: Finished Airing + airing: false + aired: + from: '2015-04-08T00:00:00+00:00' + to: '2016-03-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2015 + to: + day: 30 + month: 3 + year: 2016 + string: Apr 8, 2015 to Mar 30, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 9.05 + scored_by: 272896 + rank: 7 + popularity: 349 + members: 692066 + favorites: 17520 + synopsis: |- + Gintoki, Shinpachi, and Kagura return as the fun-loving but broke members of the Yorozuya team! Living in an alternate-reality Edo, where swords are prohibited and alien overlords have conquered Japan, they try to thrive on doing whatever work they can get their hands on. However, Shinpachi and Kagura still haven't been paid... Does Gin-chan really spend all that cash playing pachinko? + + Meanwhile, when Gintoki drunkenly staggers home one night, an alien spaceship crashes nearby. A fatally injured crew member emerges from the ship and gives Gintoki a strange, clock-shaped device, warning him that it is incredibly powerful and must be safeguarded. Mistaking it for his alarm clock, Gintoki proceeds to smash the device the next morning and suddenly discovers that the world outside his apartment has come to a standstill. With Kagura and Shinpachi at his side, he sets off to get the device fixed; though, as usual, nothing is ever that simple for the Yorozuya team. + + Filled with tongue-in-cheek humor and moments of heartfelt emotion, Gintama's fourth season finds Gintoki and his friends facing both their most hilarious misadventures and most dangerous crises yet. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Wednesdays + time: '18:00' + timezone: Asia/Tokyo + string: Wednesdays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 27989 + url: https://myanimelist.net/anime/27989/Hibike_Euphonium + images: + jpg: + image_url: https://myanimelist.net/images/anime/1517/142072.jpg + small_image_url: https://myanimelist.net/images/anime/1517/142072t.jpg + large_image_url: https://myanimelist.net/images/anime/1517/142072l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1517/142072.webp + small_image_url: https://myanimelist.net/images/anime/1517/142072t.webp + large_image_url: https://myanimelist.net/images/anime/1517/142072l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/r_Kk9xhVkB8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hibike! Euphonium + - type: Japanese + title: 響け!ユーフォニアム + - type: English + title: Sound! Euphonium + - type: German + title: Sound! Euphonium + - type: Spanish + title: Sound! Euphonium + - type: French + title: Sound! Euphonium + title: Hibike! Euphonium + title_english: Sound! Euphonium + title_japanese: 響け!ユーフォニアム + title_synonyms: [] + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-08T00:00:00+00:00' + to: '2015-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2015 + to: + day: 1 + month: 7 + year: 2015 + string: Apr 8, 2015 to Jul 1, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.03 + scored_by: 212698 + rank: 709 + popularity: 502 + members: 511721 + favorites: 8253 + synopsis: "Now that Kumiko Oumae has enrolled in Kitauji High School, she hopes to forget about her past. Despite her\ + \ desire for a fresh start, she gets dragged into the school's band club by her new friends—Sapphire Kawashima and\ + \ Hazuki Katou—and is once again stuck playing the euphonium. \n\nAs the band currently stands, they won't be able\ + \ to participate in the local festival, Sunfest, let alone compete at a national level. The band's new advisor, Noboru\ + \ Taki, gives them a choice: they can relax and have fun, or practice hard and attempt to get into nationals. Not\ + \ wanting to repeat her mistakes from middle school, Kumiko is doubtful as to whether they should try for nationals.\ + \ Amidst the chaos, she learns that her old bandmate, Reina Kousaka (who she had a bitter relationship with) has joined\ + \ Kitauji's band club. Under the pressure of Noboru's strict training, Kumiko and her bandmates must learn to overcome\ + \ their struggles and find success together.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 29095 + url: https://myanimelist.net/anime/29095/Grisaia_no_Rakuen + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/72855.jpg + small_image_url: https://myanimelist.net/images/anime/8/72855t.jpg + large_image_url: https://myanimelist.net/images/anime/8/72855l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/72855.webp + small_image_url: https://myanimelist.net/images/anime/8/72855t.webp + large_image_url: https://myanimelist.net/images/anime/8/72855l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cXI6Rb3RqSg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Grisaia no Rakuen + - type: Synonym + title: Le Eden de la Grisaia + - type: Japanese + title: グリザイアの楽園 + - type: English + title: The Eden of Grisaia + - type: German + title: The Eden of Grisaia + - type: Spanish + title: The Eden of Grisaia + - type: French + title: L’Eden de la Grisaia + title: Grisaia no Rakuen + title_english: The Eden of Grisaia + title_japanese: グリザイアの楽園 + title_synonyms: + - Le Eden de la Grisaia + type: TV + source: Visual novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2015-04-19T00:00:00+00:00' + to: '2015-06-21T00:00:00+00:00' + prop: + from: + day: 19 + month: 4 + year: 2015 + to: + day: 21 + month: 6 + year: 2015 + string: Apr 19, 2015 to Jun 21, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.73 + scored_by: 233293 + rank: 1364 + popularity: 616 + members: 437342 + favorites: 2051 + synopsis: "Grisaia no Rakuen begins right at the end of the previous installment, Grisaia no Meikyuu. Kazami Yuuji is\ + \ arrested under suspicion for terrorism. A video showing apparently concrete proof that Yuuji committed these acts,\ + \ and he is held in custody by Ichigaya.\n\nIchigaya knows full well that Yuuji didn't commit the crimes he has been\ + \ accused of. But he did fail to assassinate Heath Oslo, who is the leader of the terrorist organization with an extremely\ + \ devastating weapon in their possession. In fact, Ichigaya have their own plans for Yuuji... \n\nBut all may not\ + \ be lost for Yuuji. The girls of the Mihama Academy are not about to let Yuuji be used for political gain, and neither\ + \ may the mysterious new figure which appears before them." + background: '' + season: spring + year: 2015 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 2202 + type: anime + name: Front Wing + url: https://myanimelist.net/anime/producer/2202/Front_Wing + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 28249 + url: https://myanimelist.net/anime/28249/Arslan_Senki_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1168/148973.jpg + small_image_url: https://myanimelist.net/images/anime/1168/148973t.jpg + large_image_url: https://myanimelist.net/images/anime/1168/148973l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1168/148973.webp + small_image_url: https://myanimelist.net/images/anime/1168/148973t.webp + large_image_url: https://myanimelist.net/images/anime/1168/148973l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/B2pogqq7jpI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arslan Senki (TV) + - type: Japanese + title: アルスラーン戦記 + - type: English + title: The Heroic Legend of Arslan + - type: German + title: The Heroic Legend of Arslan + - type: Spanish + title: La Heroica Leyenda de Arslan + - type: French + title: The Heroic Legend of Arslân + title: Arslan Senki (TV) + title_english: The Heroic Legend of Arslan + title_japanese: アルスラーン戦記 + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2015-04-05T00:00:00+00:00' + to: '2015-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2015 + to: + day: 27 + month: 9 + year: 2015 + string: Apr 5, 2015 to Sep 27, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.65 + scored_by: 175026 + rank: 1615 + popularity: 679 + members: 398199 + favorites: 1779 + synopsis: |- + The year is 320. Under the rule of the belligerent King Andragoras III, the Kingdom of Pars is at war with the neighboring empire, Lusitania. Though different from his father in many aspects, Arslan, the young prince, sets out to prove his valor on the battlefield for the very first time. However, when the king is betrayed by one of his most trusted officials, the Parsian army is decimated and the capital city of Ecbatana is sieged. With the army in shambles and the Lusitanians out for his head, Arslan is forced to go on the run. With a respected general by his side, Daryun, Arslan soon sets off on a journey in search of allies that will help him take back his home. + + However, the enemies that the prince faces are far from limited to just those occupying his kingdom. Armies of other kingdoms stand ready to conquer Ecbatana. Moreover, the mastermind behind Lusitania's victory, an enigmatic man hiding behind a silver mask, poses a dangerous threat to Arslan and his company as he possesses a secret that could jeopardize Arslan's right to succession. + + With the odds stacked against him, Arslan must find the strength and courage to overcome these obstacles, and allies who will help him fight in the journey that will help prepare him for the day he becomes king. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 537 + type: anime + name: SANZIGEN + url: https://myanimelist.net/anime/producer/537/SANZIGEN + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28675 + url: https://myanimelist.net/anime/28675/Kyoukai_no_Kanata_Movie_2__Ill_Be_Here_-_Mirai-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/72614.jpg + small_image_url: https://myanimelist.net/images/anime/9/72614t.jpg + large_image_url: https://myanimelist.net/images/anime/9/72614l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/72614.webp + small_image_url: https://myanimelist.net/images/anime/9/72614t.webp + large_image_url: https://myanimelist.net/images/anime/9/72614l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/U7F0Z88GMZU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kyoukai no Kanata Movie 2: I''ll Be Here - Mirai-hen' + - type: Synonym + title: Beyond the Boundary Movie + - type: Synonym + title: Kyokai no Kanata Movie + - type: Japanese + title: 劇場版 境界の彼方 I'LL BE HERE 未来篇 + - type: English + title: 'Beyond the Boundary: I''ll Be Here - Future' + title: 'Kyoukai no Kanata Movie 2: I''ll Be Here - Mirai-hen' + title_english: 'Beyond the Boundary: I''ll Be Here - Future' + title_japanese: 劇場版 境界の彼方 I'LL BE HERE 未来篇 + title_synonyms: + - Beyond the Boundary Movie + - Kyokai no Kanata Movie + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-04-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 4 + year: 2015 + to: + day: null + month: null + year: null + string: Apr 25, 2015 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 144550 + rank: 535 + popularity: 955 + members: 293457 + favorites: 1076 + synopsis: "After Akihito Kanbara reunites with Mirai Kuriyama—whom he believed had vanished after defeating Beyond the\ + \ Boundary—he discovers a heartbreaking fact: Mirai has lost all memory of him, their friends, and her past as a Spirit\ + \ Warrior. Akihito is utterly devastated, but realizes that she has a unique opportunity. Mirai can finally live the\ + \ life of a normal girl—where she'll be completely devoid of the supernatural society that both shunned and used her.\ + \ While it's all for the sake of Mirai's happiness, the price is costly—Akihito and his friends must keep her true\ + \ origins a secret from her, and as a result avoid befriending her. \n\nHowever, the troubling memories of Mirai's\ + \ old life gradually begin to resurface, and a mysterious new evil leads a group of shadow-like creatures into the\ + \ city with the goal of seeking her out. As the situations become dire, Akihito must fight to protect himself, his\ + \ closest friends, and Mirai—the bespectacled beauty he holds most dear. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 29093 + url: https://myanimelist.net/anime/29093/Grisaia_no_Meikyuu__Caprice_no_Mayu_0 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1278/112633.jpg + small_image_url: https://myanimelist.net/images/anime/1278/112633t.jpg + large_image_url: https://myanimelist.net/images/anime/1278/112633l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1278/112633.webp + small_image_url: https://myanimelist.net/images/anime/1278/112633t.webp + large_image_url: https://myanimelist.net/images/anime/1278/112633l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cXI6Rb3RqSg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Grisaia no Meikyuu: Caprice no Mayu 0' + - type: Synonym + title: Le Labyrinthe de la Grisaia + - type: Japanese + title: グリザイアの迷宮 カプリスの繭0 + - type: English + title: 'The Labyrinth of Grisaia: The Cocoon of Caprice 0' + - type: German + title: The Labyrinth of Grisaia + - type: Spanish + title: 'The Labyrinth of Grisaia: El Capullo del Deseo' + - type: French + title: 'The Labyrinth of Grisaia: Interlude' + title: 'Grisaia no Meikyuu: Caprice no Mayu 0' + title_english: 'The Labyrinth of Grisaia: The Cocoon of Caprice 0' + title_japanese: グリザイアの迷宮 カプリスの繭0 + title_synonyms: + - Le Labyrinthe de la Grisaia + type: TV Special + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-04-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 4 + year: 2015 + to: + day: null + month: null + year: null + string: Apr 12, 2015 + duration: 47 min + rating: R+ - Mild Nudity + score: 7.81 + scored_by: 156004 + rank: 1149 + popularity: 1088 + members: 259030 + favorites: 722 + synopsis: |- + Having attended Mihama Academy for about a year, Yuuji Kazami has seemingly found his place within the school, but he suddenly decides to pursue a promotion in CIRS. After consulting JB about his intentions, they both thoroughly examine Yuuji's documents and dissect the events of his upbringing to determine if the job is fit for him. + + Meanwhile, unbeknownst to the two, the girls of Mihama uncover some torn documents in Yuuji's room. After restoring the papers, they discover the story that has formed—or perhaps broken—Yuuji into the man he is today. However, what was thought to be history has haunted him to the present, and the chains of the past begin to drag him back into the darkness... + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 2202 + type: anime + name: Front Wing + url: https://myanimelist.net/anime/producer/2202/Front_Wing + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 28617 + url: https://myanimelist.net/anime/28617/Punch_Line + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/74641.jpg + small_image_url: https://myanimelist.net/images/anime/4/74641t.jpg + large_image_url: https://myanimelist.net/images/anime/4/74641l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/74641.webp + small_image_url: https://myanimelist.net/images/anime/4/74641t.webp + large_image_url: https://myanimelist.net/images/anime/4/74641l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2A0c7ksWiWg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Punch Line + - type: Synonym + title: Punchline + - type: Japanese + title: パンチライン + - type: English + title: Punch Line + title: Punch Line + title_english: Punch Line + title_japanese: パンチライン + title_synonyms: + - Punchline + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-04-10T00:00:00+00:00' + to: '2015-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2015 + to: + day: 26 + month: 6 + year: 2015 + string: Apr 10, 2015 to Jun 26, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.88 + scored_by: 98168 + rank: 5822 + popularity: 1163 + members: 245234 + favorites: 648 + synopsis: |- + After escaping a bus hijacking with the help of masked superhero Strange Juice, Yuuta Iridatsu finds his soul separated from his body and in the care of a perverse cat spirit, Chiranosuke. As a spirit, Yuuta wanders around his residence, the Korai House, aiming to regain his body and observe the other residents: Meika Daihatsu, a genius inventor; Mikatan Narugino, a cheerful idol; Ito Hikiotani, a shut-in NEET; and Rabura Chichibu, a spiritual medium. After catching a glimpse of Narugino's undergarments, Chiranosuke reveals to Yuuta that he becomes exponentially stronger upon seeing panties. However, if he sees another pair while he is still a spirit, his power will cause an asteroid to crash into the earth, ending the world and killing his friends. + + Punch Line follows Yuuta as he unravels the mysteries surrounding Korai House, its residents, and a villainous organization attempting to end the world. Will Yuuta be able to save everyone, or will the ever-present threat of panties result in their doom? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 29067 + url: https://myanimelist.net/anime/29067/Danna_ga_Nani_wo_Itteiru_ka_Wakaranai_Ken_2_Sure-me + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/73595.jpg + small_image_url: https://myanimelist.net/images/anime/9/73595t.jpg + large_image_url: https://myanimelist.net/images/anime/9/73595l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/73595.webp + small_image_url: https://myanimelist.net/images/anime/9/73595t.webp + large_image_url: https://myanimelist.net/images/anime/9/73595l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me + - type: Synonym + title: Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season + - type: Synonym + title: I Can't Understand What My Husband Is Saying Second Season + - type: Japanese + title: 旦那が何を言っているかわからない件2スレ目 + - type: English + title: 'I Can''t Understand What My Husband Is Saying: 2nd Thread' + - type: German + title: 'I Can''t Understand What My Husband Is Saying: 2nd Thread' + - type: Spanish + title: No Puedo Entender lo que Dice mi Esposo Temporada 2 + - type: French + title: I Can't Understand What My Husband Is Saying Saison2 + title: Danna ga Nani wo Itteiru ka Wakaranai Ken 2 Sure-me + title_english: 'I Can''t Understand What My Husband Is Saying: 2nd Thread' + title_japanese: 旦那が何を言っているかわからない件2スレ目 + title_synonyms: + - Danna ga Nani wo Itteiru ka Wakaranai Ken 2nd Season + - I Can't Understand What My Husband Is Saying Second Season + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-04-03T00:00:00+00:00' + to: '2015-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2015 + to: + day: 26 + month: 6 + year: 2015 + string: Apr 3, 2015 to Jun 26, 2015 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 125651 + rank: 3275 + popularity: 1334 + members: 209930 + favorites: 190 + synopsis: |- + The Tsunashi couple is as lively and offbeat as ever. Hardcore otaku shut-in Hajime and workaholic office lady Kaoru still get themselves into hilarious situations thanks to both their own eccentric natures and the bizarre group of friends surrounding them. + + After learning about Kaoru's pregnancy, Hajime works harder than ever to become a good husband and a worthy father. Meanwhile, Kaoru reflects on their relationship and remembers all of the trials and tribulations that brought them closer. The two of them continue to put their best foot forward in their lives and their marriage—all for the sake of long-lasting, selfless love. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2015 + broadcast: + day: Fridays + time: 01:00 + timezone: Asia/Tokyo + string: Fridays at 01:00 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 615 + type: anime + name: Dream Creation + url: https://myanimelist.net/anime/producer/615/Dream_Creation + licensors: [] + studios: + - mal_id: 541 + type: anime + name: Seven + url: https://myanimelist.net/anime/producer/541/Seven + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 25389 + url: https://myanimelist.net/anime/25389/Dragon_Ball_Z_Movie_15__Fukkatsu_no_F + images: + jpg: + image_url: https://myanimelist.net/images/anime/1833/93679.jpg + small_image_url: https://myanimelist.net/images/anime/1833/93679t.jpg + large_image_url: https://myanimelist.net/images/anime/1833/93679l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1833/93679.webp + small_image_url: https://myanimelist.net/images/anime/1833/93679t.webp + large_image_url: https://myanimelist.net/images/anime/1833/93679l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WiONylGn8Xw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dragon Ball Z Movie 15: Fukkatsu no "F"' + - type: Japanese + title: ドラゴンボールZ 復活の「F」 + - type: English + title: 'Dragon Ball Z: Resurrection ''F''' + - type: German + title: 'Dragon Ball Z Film 15: Resurrection ''F''' + - type: Spanish + title: 'Dragon Ball Z Película 15: La Resurrección de "F"' + - type: French + title: 'Dragon Ball Z Film 15: La Résurrection de ''''F''''' + title: 'Dragon Ball Z Movie 15: Fukkatsu no "F"' + title_english: 'Dragon Ball Z: Resurrection ''F''' + title_japanese: ドラゴンボールZ 復活の「F」 + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-04-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 4 + year: 2015 + to: + day: null + month: null + year: null + string: Apr 18, 2015 + duration: 1 hr 33 min + rating: PG-13 - Teens 13 or older + score: 7.03 + scored_by: 135219 + rank: 4957 + popularity: 1390 + members: 201107 + favorites: 150 + synopsis: |- + Earth is finally peaceful again, but this calm is short-lived. The remnants of Frieza's army, led by Sorbet and his right hand Tagoma, arrive on Earth in order to summon Shen Long with the goal of resurrecting their old master. To do so, they threaten Emperor Pilaf, Shuu, and Mai for the Dragon Balls in their possession. + + Once successfully revived, Frieza—who had been stoking his hatred for Gokuu Son and Future Trunks in Hell—proclaims that he will not be content until they are dead by his hand. Sorbet informs him that Future Trunks has not been heard of in years, and Gokuu's power has far surpassed even that of the mighty Majin Buu. Unfazed, Frieza responds that he only requires a few months of training before being capable of defeating Gokuu. + + Will Frieza be able to exact revenge upon his nemesis, or will Gokuu, Vegeta, and their friends prevail against adversity, saving Earth once more? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30347 + url: https://myanimelist.net/anime/30347/Nanatsu_no_Taizai_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1973/97505.jpg + small_image_url: https://myanimelist.net/images/anime/1973/97505t.jpg + large_image_url: https://myanimelist.net/images/anime/1973/97505l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1973/97505.webp + small_image_url: https://myanimelist.net/images/anime/1973/97505t.webp + large_image_url: https://myanimelist.net/images/anime/1973/97505l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nanatsu no Taizai OVA + - type: Synonym + title: 'Nanatsu no Taizai: Ban no Bangai-hen' + - type: Synonym + title: 'The Seven Deadly Sins: Ban''s Side Story' + - type: Synonym + title: 'The Seven Deadly Sins: Bandit Ban OVA 1' + - type: Japanese + title: 七つの大罪 + - type: English + title: 'The Seven Deadly Sins: Ban''s Side Story OVA' + title: Nanatsu no Taizai OVA + title_english: 'The Seven Deadly Sins: Ban''s Side Story OVA' + title_japanese: 七つの大罪 + title_synonyms: + - 'Nanatsu no Taizai: Ban no Bangai-hen' + - 'The Seven Deadly Sins: Ban''s Side Story' + - 'The Seven Deadly Sins: Bandit Ban OVA 1' + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2015-06-17T00:00:00+00:00' + to: '2015-08-12T00:00:00+00:00' + prop: + from: + day: 17 + month: 6 + year: 2015 + to: + day: 12 + month: 8 + year: 2015 + string: Jun 17, 2015 to Aug 12, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.48 + scored_by: 107564 + rank: 2334 + popularity: 1406 + members: 199062 + favorites: 213 + synopsis: |- + OVA bundled with the 15th and 16th volume of the manga. + + 15th volume DVD will feature the sin of greed as the central character. + + 16th volume DVD will feature side stories of the main characters in omnibus format. + + (Source: MAL News) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 26443 + url: https://myanimelist.net/anime/26443/Triage_X + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/73682.jpg + small_image_url: https://myanimelist.net/images/anime/8/73682t.jpg + large_image_url: https://myanimelist.net/images/anime/8/73682l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/73682.webp + small_image_url: https://myanimelist.net/images/anime/8/73682t.webp + large_image_url: https://myanimelist.net/images/anime/8/73682l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bB0XFfJUFRk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Triage X + - type: Japanese + title: トリアージX + - type: English + title: Triage X + title: Triage X + title_english: Triage X + title_japanese: トリアージX + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2015-04-09T00:00:00+00:00' + to: '2015-06-11T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2015 + to: + day: 11 + month: 6 + year: 2015 + string: Apr 9, 2015 to Jun 11, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.32 + scored_by: 69553 + rank: 9280 + popularity: 1550 + members: 178353 + favorites: 329 + synopsis: |- + In a deadly terrorist attack, Arashi Mikami narrowly escapes death but loses everything in the process, including his family and best friend. However, the surgeon that rescues him is far from just an ordinary doctor—he commands a strike team known as Black Label whose task is to exterminate deadly criminals who have fallen too far. Filled with a new determination, Arashi joins the ranks of the vigilante organization. + + Black Label's targets are aplenty, as evil scum lurks everywhere—dangerous arms dealers, corrupt politicians, and shady gangsters all find themselves hunted by the extermination team. Although haunted by their dark and sinister past, all of the hunters are highly skilled at slaying their targets. In spite of the perilous lives the members live, Arashi and the gorgeous ladies surrounding him still manage to get caught up in a variety of sultry moments and racy hijinks. Though they face strong opposition, nothing can stop Black Label's objective of cleansing the world of ghastly evil. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening at Shinjuku Kadokawa Cinema on March 29, 2015. Regular broadcasting + began on April 9, 2015. + season: spring + year: 2015 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 29589 + url: https://myanimelist.net/anime/29589/Denpa_Kyoushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/73475.jpg + small_image_url: https://myanimelist.net/images/anime/4/73475t.jpg + large_image_url: https://myanimelist.net/images/anime/4/73475l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/73475.webp + small_image_url: https://myanimelist.net/images/anime/4/73475t.webp + large_image_url: https://myanimelist.net/images/anime/4/73475l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WxDQDGNm1SU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Denpa Kyoushi + - type: Synonym + title: He Is an Ultimate Teacher + - type: Japanese + title: 電波教師 + - type: English + title: Ultimate Otaku Teacher + title: Denpa Kyoushi + title_english: Ultimate Otaku Teacher + title_japanese: 電波教師 + title_synonyms: + - He Is an Ultimate Teacher + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2015-04-04T00:00:00+00:00' + to: '2015-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2015 + to: + day: 26 + month: 9 + year: 2015 + string: Apr 4, 2015 to Sep 26, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.86 + scored_by: 72589 + rank: 5909 + popularity: 1666 + members: 163361 + favorites: 326 + synopsis: "Junichirou Kagami is a young published physicist, a genius, and a hopeless otaku. At the mercy of YD, a self-diagnosed\ + \ illness which causes him to only be able to do what he \"Yearns to Do,\" Junichirou foregoes his scientific career\ + \ to maintain and improve his anime blog. However, when he gets hired as a high school physics teacher; his sister\ + \ Suzune, no longer willing to tolerate his NEET lifestyle, forces him to take the position. \n\nDespite the fact\ + \ that Junichirou has no motivation to teach the standard curriculum, he may still have something of value to teach\ + \ his students outside of academics. With his class in tow, Junichirou embarks on an unlikely journey filled with\ + \ life lessons such as acceptance of others, how to make lasting friends, and what it means to live a better life\ + \ by doing what you yearn to do.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 23777 + url: https://myanimelist.net/anime/23777/Shingeki_no_Kyojin_Movie_2__Jiyuu_no_Tsubasa + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/72510.jpg + small_image_url: https://myanimelist.net/images/anime/2/72510t.jpg + large_image_url: https://myanimelist.net/images/anime/2/72510l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/72510.webp + small_image_url: https://myanimelist.net/images/anime/2/72510t.webp + large_image_url: https://myanimelist.net/images/anime/2/72510l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O8-wUG7sjSk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa' + - type: Japanese + title: 劇場版「進撃の巨人」後編~自由の翼~ + - type: English + title: 'Attack on Titan: Wings of Freedom' + - type: German + title: 'Attack on Titan: Anime Movie Teil 2: Flügel der Freiheit' + - type: Spanish + title: 'Ataque a los Titanes, la película parte 2: Las Alas de la Libertad' + - type: French + title: 'L’Attaque des Titans: Les Ailes de la Liberté' + title: 'Shingeki no Kyojin Movie 2: Jiyuu no Tsubasa' + title_english: 'Attack on Titan: Wings of Freedom' + title_japanese: 劇場版「進撃の巨人」後編~自由の翼~ + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-06-27T00:00:00+00:00' + to: null + prop: + from: + day: 27 + month: 6 + year: 2015 + to: + day: null + month: null + year: null + string: Jun 27, 2015 + duration: 2 hr + rating: R - 17+ (violence & profanity) + score: 8.02 + scored_by: 63688 + rank: 727 + popularity: 1714 + members: 156980 + favorites: 336 + synopsis: Recap of episodes 14-25. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30230 + url: https://myanimelist.net/anime/30230/Diamond_no_Ace__Second_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/74398.jpg + small_image_url: https://myanimelist.net/images/anime/9/74398t.jpg + large_image_url: https://myanimelist.net/images/anime/9/74398l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/74398.webp + small_image_url: https://myanimelist.net/images/anime/9/74398t.webp + large_image_url: https://myanimelist.net/images/anime/9/74398l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Diamond no Ace: Second Season' + - type: Synonym + title: 'Daiya no Ace: Second Season' + - type: Synonym + title: 'Ace of the Diamond: 2nd Season' + - type: Japanese + title: ダイヤのA[エース]~Second Season~ + - type: English + title: 'Ace of Diamond: Second Season' + - type: German + title: 'Ace of the Diamond: Zweite Staffel' + - type: Spanish + title: Ace of the Diamond Temporada 2 + - type: French + title: 'Ace of the Diamond: Deuxième saison' + title: 'Diamond no Ace: Second Season' + title_english: 'Ace of Diamond: Second Season' + title_japanese: ダイヤのA[エース]~Second Season~ + title_synonyms: + - 'Daiya no Ace: Second Season' + - 'Ace of the Diamond: 2nd Season' + type: TV + source: Manga + episodes: 51 + status: Finished Airing + airing: false + aired: + from: '2015-04-06T00:00:00+00:00' + to: '2016-03-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2015 + to: + day: 28 + month: 3 + year: 2016 + string: Apr 6, 2015 to Mar 28, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.32 + scored_by: 83350 + rank: 302 + popularity: 1768 + members: 151314 + favorites: 1125 + synopsis: "After the National Tournament, the Seidou High baseball team moves forward with uncertainty as the Fall season\ + \ quickly approaches. In an attempt to build a stronger team centered around their new captain, fresh faces join the\ + \ starting roster for the very first time. Previous losses weigh heavily on the minds of the veteran players as they\ + \ continue their rigorous training, preparing for what will inevitably be their toughest season yet.\n \nRivals both\ + \ new and old stand in their path as Seidou once again climbs their way toward the top, one game at a time. Needed\ + \ now more than ever before, Furuya and Eijun must be determined to pitch with all their skill and strength in order\ + \ to lead their team to victory. And this time, one of these young pitchers may finally claim that coveted title:\ + \ \"The Ace of Seidou.\"\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2015 + broadcast: + day: Mondays + time: '18:00' + timezone: Asia/Tokyo + string: Mondays at 18:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/23-2015-summer.yaml b/test/fixtures/jikan/season_matrix/23-2015-summer.yaml new file mode 100644 index 0000000..2ff9d9e --- /dev/null +++ b/test/fixtures/jikan/season_matrix/23-2015-summer.yaml @@ -0,0 +1,3378 @@ +metadata: + captured_at: '2026-05-11T11:33:21Z' + label: 2015-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2015/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:20 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:39280392311d0f22096cf978b9e793c576d1484a + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 263 + per_page: 25 + data: + - mal_id: 28999 + url: https://myanimelist.net/anime/28999/Charlotte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1826/147276.jpg + small_image_url: https://myanimelist.net/images/anime/1826/147276t.jpg + large_image_url: https://myanimelist.net/images/anime/1826/147276l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1826/147276.webp + small_image_url: https://myanimelist.net/images/anime/1826/147276t.webp + large_image_url: https://myanimelist.net/images/anime/1826/147276l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6AgEzww-a0w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Charlotte + - type: Japanese + title: Charlotte(シャーロット) + - type: English + title: Charlotte + title: Charlotte + title_english: Charlotte + title_japanese: Charlotte(シャーロット) + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-07-05T00:00:00+00:00' + to: '2015-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2015 + to: + day: 27 + month: 9 + year: 2015 + string: Jul 5, 2015 to Sep 27, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.76 + scored_by: 1069439 + rank: 1279 + popularity: 68 + members: 1764802 + favorites: 25177 + synopsis: |- + If not for his ability to take over people's mind and body, Yuu Otosaka would be an ordinary high school student. Though it only lasts for five seconds at a time, Yuu's mysterious power allowed him to cheat his way to the top of his class and enter a prestigious high school, where he continues his dishonest acts. + + His shenanigans are eventually stopped by Nao Tomori—the headstrong student council president from Hoshinoumi Academy—who sees through his deceit. Through coercion, Nao convinces Yuu to transfer to Hoshinoumi and join the student council. Hoshinoumi Academy is secretly an institution created for adolescents who possess supernatural abilities—with the student council serving as a means of locating those who abuse their powers. + + With Yuu begrudgingly assisting in council affairs, the group sets out to find and protect new ability users from harm. However, as they further investigate the abilities, their findings entangle them in far more complicated matters than they could ever imagine. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 203 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/producer/203/Visual_Arts + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 29803 + url: https://myanimelist.net/anime/29803/Overlord + images: + jpg: + image_url: https://myanimelist.net/images/anime/1945/136600.jpg + small_image_url: https://myanimelist.net/images/anime/1945/136600t.jpg + large_image_url: https://myanimelist.net/images/anime/1945/136600l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1945/136600.webp + small_image_url: https://myanimelist.net/images/anime/1945/136600t.webp + large_image_url: https://myanimelist.net/images/anime/1945/136600l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3jE9moHQePI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Overlord + - type: Japanese + title: オーバーロード + - type: English + title: Overlord + title: Overlord + title_english: Overlord + title_japanese: オーバーロード + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-07-07T00:00:00+00:00' + to: '2015-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2015 + to: + day: 29 + month: 9 + year: 2015 + string: Jul 7, 2015 to Sep 29, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.9 + scored_by: 1037069 + rank: 950 + popularity: 69 + members: 1756984 + favorites: 28454 + synopsis: |- + The final hour of the popular virtual reality game Yggdrasil has come. However, Momonga, a powerful wizard and master of the dark guild Ainz Ooal Gown, decides to spend his last few moments in the game as the servers begin to shut down. To his surprise, despite the clock having struck midnight, Momonga is still fully conscious as his character and, moreover, the non-player characters appear to have developed personalities of their own! + + Confronted with this abnormal situation, Momonga commands his loyal servants to help him investigate and take control of this new world, with the hopes of figuring out what has caused this development and if there may be others in the same predicament. + + [Written by MAL Rewrite] + background: Overlord adapts light novel volumes 1 to 3. + season: summer + year: 2015 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1254 + type: anime + name: Grooove + url: https://myanimelist.net/anime/producer/1254/Grooove + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 30240 + url: https://myanimelist.net/anime/30240/Prison_School + images: + jpg: + image_url: https://myanimelist.net/images/anime/1286/112161.jpg + small_image_url: https://myanimelist.net/images/anime/1286/112161t.jpg + large_image_url: https://myanimelist.net/images/anime/1286/112161l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1286/112161.webp + small_image_url: https://myanimelist.net/images/anime/1286/112161t.webp + large_image_url: https://myanimelist.net/images/anime/1286/112161l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/L5UUgGyNp9o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Prison School + - type: Synonym + title: Kangoku Gakuen + - type: Japanese + title: 監獄学園〈プリズンスクール〉 + - type: English + title: Prison School + title: Prison School + title_english: Prison School + title_japanese: 監獄学園〈プリズンスクール〉 + title_synonyms: + - Kangoku Gakuen + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-11T00:00:00+00:00' + to: '2015-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2015 + to: + day: 26 + month: 9 + year: 2015 + string: Jul 11, 2015 to Sep 26, 2015 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.59 + scored_by: 647880 + rank: 1854 + popularity: 167 + members: 1101014 + favorites: 8018 + synopsis: "Located on the outskirts of Tokyo, Hachimitsu Private Academy is a prestigious all-girls boarding school,\ + \ famous for its high-quality education and disciplined students. However, this is all about to change due to the\ + \ revision of the school's most iconic policy, as boys are now able to enroll as well.\n \nAt the start of the first\ + \ semester under this new decree, a mere five boys have been accepted, effectively splitting the student body into\ + \ a ratio of two hundred girls to one boy. Kiyoshi, Gakuto, Shingo, Andre, and Jo are quickly cast away without having\ + \ a chance to make any kind of a first impression. Unable to communicate with their fellow female students, the eager\ + \ boys set their sights on a far more dangerous task: peeping into the girls' bath!\n \nIt is only after their plan\ + \ is thoroughly decimated by the infamous Underground Student Council that the motley crew find their freedom abruptly\ + \ taken from them, as they are thrown into the school's prison with the sentence of an entire month as punishment.\ + \ Thus begins the tale of the boys' harsh lives in Prison School, a righteous struggle that will ultimately test the\ + \ bonds of friendship and perverted brotherhood.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2015 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30694 + url: https://myanimelist.net/anime/30694/Dragon_Ball_Super + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/74606.jpg + small_image_url: https://myanimelist.net/images/anime/7/74606t.jpg + large_image_url: https://myanimelist.net/images/anime/7/74606l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/74606.webp + small_image_url: https://myanimelist.net/images/anime/7/74606t.webp + large_image_url: https://myanimelist.net/images/anime/7/74606l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ycaU9xEEdi8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dragon Ball Super + - type: Synonym + title: Dragon Ball Chou + - type: Synonym + title: DB Super + - type: Synonym + title: DBS + - type: Japanese + title: ドラゴンボール超(スーパー) + - type: English + title: Dragon Ball Super + title: Dragon Ball Super + title_english: Dragon Ball Super + title_japanese: ドラゴンボール超(スーパー) + title_synonyms: + - Dragon Ball Chou + - DB Super + - DBS + type: TV + source: Manga + episodes: 131 + status: Finished Airing + airing: false + aired: + from: '2015-07-05T00:00:00+00:00' + to: '2018-03-25T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2015 + to: + day: 25 + month: 3 + year: 2018 + string: Jul 5, 2015 to Mar 25, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 589751 + rank: 2368 + popularity: 223 + members: 915881 + favorites: 11366 + synopsis: |- + Seven years after the defeat of Majin Buu, Earth is at peace, and its people live free from any dangers lurking in the universe. However, this peace is short-lived; a sleeping threat awakens in the dark reaches of the galaxy: Beerus, the ruthless God of Destruction. + + Disturbed by a prophecy that he will be defeated by a "Super Saiyan God," Beerus and his angelic attendant Whis search the universe for this mysterious being. Before long, they reach Earth and encounter Gokuu Son, one of the planet's mightiest warriors, and his powerful friends. + + [Written by MAL Rewrite] + background: 'Dragon Ball Super''s first 27 episodes are adaptations of the films Dragon Ball Z Movie 14: Kami to Kami + (episodes 1-14) and Dragon Ball Z Movie 15: Fukkatsu no F (episodes 15-27).' + season: summer + year: 2015 + broadcast: + day: Sundays + time: 09:00 + timezone: Asia/Tokyo + string: Sundays at 09:00 (JST) + producers: + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28907 + url: https://myanimelist.net/anime/28907/Gate__Jieitai_Kanochi_nite_Kaku_Tatakaeri + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/76222.jpg + small_image_url: https://myanimelist.net/images/anime/8/76222t.jpg + large_image_url: https://myanimelist.net/images/anime/8/76222l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/76222.webp + small_image_url: https://myanimelist.net/images/anime/8/76222t.webp + large_image_url: https://myanimelist.net/images/anime/8/76222l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mdTjE_jHnKk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri' + - type: Synonym + title: 'Gate: Thus the JSDF Fought There!' + - type: Japanese + title: GATE(ゲート)自衛隊 彼の地にて、斯く戦えり + - type: English + title: GATE + - type: German + title: GATE + - type: Spanish + title: GATE + - type: French + title: 'Gate: Au-delà de la Porte' + title: 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri' + title_english: GATE + title_japanese: GATE(ゲート)自衛隊 彼の地にて、斯く戦えり + title_synonyms: + - 'Gate: Thus the JSDF Fought There!' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-04T00:00:00+00:00' + to: '2015-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2015 + to: + day: 19 + month: 9 + year: 2015 + string: Jul 4, 2015 to Sep 19, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.68 + scored_by: 490180 + rank: 1516 + popularity: 238 + members: 887232 + favorites: 6729 + synopsis: |- + Off-duty Japan Self-Defense Forces (JSDF) officer and otaku Youji Itami is on his way to attend a doujin convention in Ginza, Tokyo when a mysterious portal in the shape of a large gate suddenly appears. From this gate, supernatural creatures and warriors clad in medieval armor emerge, charging through the city, killing and destroying everything in their path. With swift actions, Youji saves as many lives as he can while the rest of the JSDF direct their efforts toward stopping the invasion. + + Three months after the attack, Youji has been tasked with leading a special recon team, as part of a JSDF task force, that will be sent to the world beyond the gate—now being referred to as the "Special Region." They must travel into this unknown world in order to learn more about what they are dealing with and attempt to befriend the locals in hopes of creating peaceful ties with the ruling empire. But if they fail, they face the consequence of participating in a devastating war that will engulf both sides of the gate. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 29786 + url: https://myanimelist.net/anime/29786/Shimoneta_to_Iu_Gainen_ga_Sonzai_Shinai_Taikutsu_na_Sekai + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/75106.jpg + small_image_url: https://myanimelist.net/images/anime/6/75106t.jpg + large_image_url: https://myanimelist.net/images/anime/6/75106l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/75106.webp + small_image_url: https://myanimelist.net/images/anime/6/75106t.webp + large_image_url: https://myanimelist.net/images/anime/6/75106l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k4sLMxdbnSo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai + - type: Synonym + title: Shimoseka + - type: Japanese + title: 下ネタという概念が存在しない退屈な世界 + - type: English + title: 'SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn''t Exist' + - type: German + title: 'Shimoneta: A Boring World Where the Concept of "Dirty Jokes" Doesn''t Exist' + - type: Spanish + title: 'SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist' + - type: French + title: 'Shimoseka: À Bas L''Ordre Normal !' + title: Shimoneta to Iu Gainen ga Sonzai Shinai Taikutsu na Sekai + title_english: 'SHIMONETA: A Boring World Where the Concept of Dirty Jokes Doesn''t Exist' + title_japanese: 下ネタという概念が存在しない退屈な世界 + title_synonyms: + - Shimoseka + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-04T00:00:00+00:00' + to: '2015-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2015 + to: + day: 19 + month: 9 + year: 2015 + string: Jul 4, 2015 to Sep 19, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.21 + scored_by: 472700 + rank: 3910 + popularity: 242 + members: 879461 + favorites: 4140 + synopsis: "With the introduction of strict new morality laws, Japan has become a nation cleansed of all that is obscene\ + \ and impure. By monitoring citizens using special devices worn around their necks, authorities have taken extreme\ + \ measures to ensure that society remains chaste. \n\nIn this world of sexual suppression, Tanukichi Okuma—son of\ + \ an infamous terrorist who opposed the chastity laws—has just entered high school, offering his help to the student\ + \ council in order to get close to president Anna Nishikinomiya, his childhood friend and crush. Little does he know\ + \ that the vice president Ayame Kajou has a secret identity: Blue Snow, a masked criminal dedicated to spreading lewd\ + \ material amongst the sheltered public—and Tanukichi has caught the girl's interest due to his father's notoriety.\n\ + \nSoon, Tanukichi is dragged into joining her organization called SOX, where he is forced to spread obscene propaganda,\ + \ helping to launch an assault against the government's oppressive rule. With their school set as the first point\ + \ of attack, Tanukichi will have to do the unthinkable when he realizes that their primary target is the person he\ + \ admires most.\n\n[Written by MAL Rewrite]" + background: Episode 1 was previewed at a screening at Yebisu Garden Place on June 28, 2015. Regular broadcasting began + on July 5, 2015. + season: summer + year: 2015 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 30307 + url: https://myanimelist.net/anime/30307/Monster_Musume_no_Iru_Nichijou + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/75104.jpg + small_image_url: https://myanimelist.net/images/anime/9/75104t.jpg + large_image_url: https://myanimelist.net/images/anime/9/75104l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/75104.webp + small_image_url: https://myanimelist.net/images/anime/9/75104t.webp + large_image_url: https://myanimelist.net/images/anime/9/75104l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/G-IfYF_oesk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Monster Musume no Iru Nichijou + - type: Synonym + title: MonMusu + - type: Japanese + title: モンスター娘のいる日常 + - type: English + title: 'Monster Musume: Everyday Life with Monster Girls' + - type: German + title: Die Monster Mädchen + - type: Spanish + title: 'Monster Musume: Everyday Life with Monster Girls (Monster Musume no Iru Nichijou)' + - type: French + title: 'Monster Musume: Everyday Life with Monster Girls' + title: Monster Musume no Iru Nichijou + title_english: 'Monster Musume: Everyday Life with Monster Girls' + title_japanese: モンスター娘のいる日常 + title_synonyms: + - MonMusu + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-08T00:00:00+00:00' + to: '2015-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2015 + to: + day: 23 + month: 9 + year: 2015 + string: Jul 8, 2015 to Sep 23, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.92 + scored_by: 454608 + rank: 5581 + popularity: 283 + members: 803770 + favorites: 4133 + synopsis: |- + With his parents abroad, Kimihito Kurusu lived a quiet, unremarkable life alone until monster girls came crowding in! This alternate reality presents cutting-edge Japan, the first country to promote the integration of non-human species into society. After the incompetence of interspecies exchange coordinator Agent Smith leaves Kimihito as the homestay caretaker of a Lamia named Miia, the newly-minted "Darling" quickly attracts girls of various breeds, resulting in an ever-growing harem flush with eroticism and attraction. + + Unfortunately for him and the ladies, sexual interactions between species is forbidden by the Interspecies Exchange Act! The only loophole is through an experimental marriage provision. Kimihito's life becomes fraught with an abundance of creature-specific caveats and sensitive interspecies law as the passionate, affectionate, and lusty women hound his every move, seeking his romantic and sexual affections. With new species often appearing and events materializing out of thin air, where Kimihito and his harem go is anyone's guess! + + [Written by MAL Rewrite] + background: Episodes 1 and 2 were previewed at a screening at Odaiba Cinema Mediage on June 27, 2015. Regular broadcasting + began on July 8, 2015. + season: summer + year: 2015 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 28825 + url: https://myanimelist.net/anime/28825/Himouto_Umaru-chan + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/75086.jpg + small_image_url: https://myanimelist.net/images/anime/12/75086t.jpg + large_image_url: https://myanimelist.net/images/anime/12/75086l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/75086.webp + small_image_url: https://myanimelist.net/images/anime/12/75086t.webp + large_image_url: https://myanimelist.net/images/anime/12/75086l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PJ10D-q8kLw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Himouto! Umaru-chan + - type: Synonym + title: My Two-Faced Little Sister + - type: Japanese + title: 干物妹!うまるちゃん + - type: English + title: Himouto! Umaru-chan + title: Himouto! Umaru-chan + title_english: Himouto! Umaru-chan + title_japanese: 干物妹!うまるちゃん + title_synonyms: + - My Two-Faced Little Sister + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-09T00:00:00+00:00' + to: '2015-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2015 + to: + day: 24 + month: 9 + year: 2015 + string: Jul 9, 2015 to Sep 24, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.1 + scored_by: 405905 + rank: 4590 + popularity: 312 + members: 740269 + favorites: 4745 + synopsis: |- + People are not always who they appear to be, as is the case with Umaru Doma, the perfect high school girl—that is, until she gets home! Once the front door closes, the real fun begins. When she dons her hamster hoodie, she transforms from a refined, over-achieving student into a lazy, junk food-eating otaku, leaving all the housework to her responsible older brother Taihei. Whether she's hanging out with her friends Nana Ebina and Kirie Motoba, or competing with her self-proclaimed "rival" Sylphinford Tachibana, Umaru knows how to kick back and have some fun! + + Himouto! Umaru-chan is a cute story that follows the daily adventures of Umaru and Taihei, as they take care of—and put up with—each other the best they can, as well as the unbreakable bonds between friends and siblings. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Thursdays + time: 02:14 + timezone: Asia/Tokyo + string: Thursdays at 02:14 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30123 + url: https://myanimelist.net/anime/30123/Akagami_no_Shirayuki-hime + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/75764.jpg + small_image_url: https://myanimelist.net/images/anime/10/75764t.jpg + large_image_url: https://myanimelist.net/images/anime/10/75764l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/75764.webp + small_image_url: https://myanimelist.net/images/anime/10/75764t.webp + large_image_url: https://myanimelist.net/images/anime/10/75764l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XzXLibJm6GE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akagami no Shirayuki-hime + - type: Synonym + title: Akagami no Shirayukihime + - type: Japanese + title: 赤髪の白雪姫 + - type: English + title: Snow White with the Red Hair + - type: German + title: Snow White with the Red Hair + - type: Spanish + title: Snow White with the Red Hair + - type: French + title: Shirayuki aux Cheveux Rouges + title: Akagami no Shirayuki-hime + title_english: Snow White with the Red Hair + title_japanese: 赤髪の白雪姫 + title_synonyms: + - Akagami no Shirayukihime + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-07T00:00:00+00:00' + to: '2015-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2015 + to: + day: 22 + month: 9 + year: 2015 + string: Jul 7, 2015 to Sep 22, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.76 + scored_by: 361077 + rank: 1277 + popularity: 313 + members: 739745 + favorites: 8378 + synopsis: |- + Although her name means "snow white," Shirayuki is a cheerful, red-haired girl living in the country of Tanbarun who works diligently as an apothecary at her herbal shop. Her life changes drastically when she is noticed by the silly prince of Tanbarun, Prince Raji, who then tries to force her to become his concubine. Unwilling to give up her freedom, Shirayuki cuts her long red hair and escapes into the forest, where she is rescued from Raji by Zen Wistalia, the second prince of a neighboring country, and his two aides. Hoping to repay her debt to the trio someday, Shirayuki sets her sights on pursuing a career as the court herbalist in Zen's country, Clarines. + + Akagami no Shirayuki-hime depicts Shirayuki's journey toward a new life at the royal palace of Clarines, as well as Zen's endeavor to become a prince worthy of his title. As loyal friendships are forged and deadly enemies formed, Shirayuki and Zen slowly learn to support each other as they walk their own paths. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 3309 + type: anime + name: Peerless Gerbera + url: https://myanimelist.net/anime/producer/3309/Peerless_Gerbera + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 28497 + url: https://myanimelist.net/anime/28497/Rokka_no_Yuusha + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/74374.jpg + small_image_url: https://myanimelist.net/images/anime/9/74374t.jpg + large_image_url: https://myanimelist.net/images/anime/9/74374l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/74374.webp + small_image_url: https://myanimelist.net/images/anime/9/74374t.webp + large_image_url: https://myanimelist.net/images/anime/9/74374l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KLOtrSOeO10?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rokka no Yuusha + - type: Synonym + title: Rokka no Yusha + - type: Japanese + title: 六花の勇者 + - type: English + title: 'Rokka: Braves of the Six Flowers' + - type: German + title: 'Rokka: Braves of the Six Flowers' + - type: Spanish + title: 'Rokka: Braves of the Six Flowers' + - type: French + title: 'Rokka : Brave of The Six Flowers' + title: Rokka no Yuusha + title_english: 'Rokka: Braves of the Six Flowers' + title_japanese: 六花の勇者 + title_synonyms: + - Rokka no Yusha + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-05T00:00:00+00:00' + to: '2015-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2015 + to: + day: 20 + month: 9 + year: 2015 + string: Jul 5, 2015 to Sep 20, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 349615 + rank: 3648 + popularity: 362 + members: 674629 + favorites: 2721 + synopsis: |- + An ancient legend states that with the revival of the Demon God, six heroes—the Braves of the Six Flowers—will be chosen by the Goddess of Fate, granting them power to rise up against the fiends attempting to turn the world into a living hell. Adlet Mayer, self-proclaimed "Strongest Man in the World," has arrived at the continent of Piena in hopes of becoming a Brave. Although it doesn't go as smoothly as he had planned, Adlet is ultimately chosen as one of the six heroes shortly after being greeted by Nashetania Loei Piena Augustra, crown princess and fellow Brave. + + Rokka no Yuusha follows the two as they embark upon their destined journey to fight the Demon God, intending to meet up with their fellow heroes at a small temple outside of the Land of the Howling Demons, the fiends' domain. However, when they finally unite, seven heroes are present, and soon the others begin to suspect Adlet to be a fraud. Now on the run, Adlet must utilize his unique skill set and wit in a fight for his life to identify which member of the group is the true impostor before it's too late! + + [Written by MAL Rewrite] + background: 'Rokka no Yuusha adapts the first novel of Ishio Yamagata''s light novel series of the same title. Pony + Canyon USA localized the series as Rokka: Braves of the Six Flowers in the US in 2015, but cancelled the standard + edition Blu-Ray/DVD version of the series in favor of making the collector’s edition a more attractive purchase for + fans.' + season: summer + year: 2015 + broadcast: + day: Sundays + time: 02:58 + timezone: Asia/Tokyo + string: Sundays at 02:58 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 25183 + url: https://myanimelist.net/anime/25183/Gangsta + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/74415.jpg + small_image_url: https://myanimelist.net/images/anime/8/74415t.jpg + large_image_url: https://myanimelist.net/images/anime/8/74415l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/74415.webp + small_image_url: https://myanimelist.net/images/anime/8/74415t.webp + large_image_url: https://myanimelist.net/images/anime/8/74415l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/llcwN3KvuXA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gangsta. + - type: Japanese + title: GANGSTA. ギャングスタ + - type: English + title: Gangsta. + title: Gangsta. + title_english: Gangsta. + title_japanese: GANGSTA. ギャングスタ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-02T00:00:00+00:00' + to: '2015-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2015 + to: + day: 24 + month: 9 + year: 2015 + string: Jul 2, 2015 to Sep 24, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.42 + scored_by: 297678 + rank: 2605 + popularity: 400 + members: 625814 + favorites: 4103 + synopsis: |- + Nicholas Brown and Worick Arcangelo, known in the city of Ergastalum as the "Handymen," are mercenaries for hire who take on jobs no one else can handle. Contracted by powerful mob syndicates and police alike, the Handymen have to be ready and willing for anything. After completing the order of killing a local pimp, the Handymen add Alex Benedetto—a prostitute also designated for elimination—to their ranks to protect her from forces that want her gone from the decrepit hellhole of a city she has come to call home. However, this criminal’s paradise is undergoing a profound period of change that threatens to corrode the delicate balance of power. + + Ergastalum was once a safe haven for "Twilights," super-human beings born as the result of a special drug but are now being hunted down by a fierce underground organization. This new threat is rising up to challenge everything the city stands for, and the Handymen will not be able to avoid this coming war. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Thursdays + time: 02:44 + timezone: Asia/Tokyo + string: Thursdays at 02:44 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 32 + type: anime + name: Manglobe + url: https://myanimelist.net/anime/producer/32/Manglobe + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 27631 + url: https://myanimelist.net/anime/27631/God_Eater + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/73852.jpg + small_image_url: https://myanimelist.net/images/anime/7/73852t.jpg + large_image_url: https://myanimelist.net/images/anime/7/73852l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/73852.webp + small_image_url: https://myanimelist.net/images/anime/7/73852t.webp + large_image_url: https://myanimelist.net/images/anime/7/73852l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2LUfrT5hZM4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: God Eater + - type: Japanese + title: GOD EATER + - type: English + title: God Eater + title: God Eater + title_english: God Eater + title_japanese: GOD EATER + title_synonyms: [] + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-07-12T00:00:00+00:00' + to: '2016-03-26T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2015 + to: + day: 26 + month: 3 + year: 2016 + string: Jul 12, 2015 to Mar 26, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.18 + scored_by: 266547 + rank: 4074 + popularity: 435 + members: 574962 + favorites: 1973 + synopsis: |- + The year is 2071. Humanity has been pushed to the brink of extinction following the emergence of man-eating monsters called "Aragami" that boast an immunity to conventional weaponry. They ravaged the land, consuming almost everything in their path and leaving nothing in their wake. To combat them, an organization named Fenrir was formed as a last-ditch effort to save humanity through the use of "God Eaters"—special humans infused with Oracle cells, allowing them to wield the God Arc, the only known weapon capable of killing an Aragami. One such God Eater is Lenka Utsugi, a New-Type whose God Arc takes the form of both blade and gun. + + Now, as one of Fenrir's greatest weapons, Lenka must master his God Arc if he is to fulfill his desire of wiping out the Aragami once and for all. The monsters continue to be born en masse while the remnants of humanity struggle to survive the night. Only God Eaters stand between the Aragami and complete and total annihilation of the human race. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1510 + type: anime + name: Anime Consortium Japan + url: https://myanimelist.net/anime/producer/1510/Anime_Consortium_Japan + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 28755 + url: https://myanimelist.net/anime/28755/Boruto__Naruto_the_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/78280.jpg + small_image_url: https://myanimelist.net/images/anime/4/78280t.jpg + large_image_url: https://myanimelist.net/images/anime/4/78280l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/78280.webp + small_image_url: https://myanimelist.net/images/anime/4/78280t.webp + large_image_url: https://myanimelist.net/images/anime/4/78280l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ld-oqpvOBAk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boruto: Naruto the Movie' + - type: Synonym + title: Gekijouban Naruto (2015) + - type: Japanese + title: BORUTO -NARUTO THE MOVIE- + - type: English + title: 'Boruto: Naruto the Movie' + - type: German + title: 'Boruto: Naruto The Movie' + - type: Spanish + title: 'Boruto: Naruto La Película' + - type: French + title: 'Boruto: Naruto Le Film' + title: 'Boruto: Naruto the Movie' + title_english: 'Boruto: Naruto the Movie' + title_japanese: BORUTO -NARUTO THE MOVIE- + title_synonyms: + - Gekijouban Naruto (2015) + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-08-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 8 + year: 2015 + to: + day: null + month: null + year: null + string: Aug 7, 2015 + duration: 1 hr 35 min + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 319072 + rank: 2864 + popularity: 521 + members: 498433 + favorites: 1016 + synopsis: "The spirited Boruto Uzumaki, son of Seventh Hokage Naruto, is a skilled ninja who possesses the same brashness\ + \ and passion his father once had. However, the constant absence of his father, who is busy with his Hokage duties,\ + \ puts a damper on Boruto's fire. Upon learning that his father will watch the aspiring ninjas who will participate\ + \ in the upcoming Chunin exams, Boruto is driven to prove to him that he is worthy of his attention. In order to do\ + \ so, he enlists the help of Naruto's childhood friend and rival, Sasuke Uchiha. \n\nThe Chunin exams begin and progress\ + \ smoothly, until suddenly, the Konohagakure is attacked by a new foe that threatens the long-standing peace of the\ + \ village. Now facing real danger, Naruto and his comrades must work together to protect the future of their cherished\ + \ home and defeat the evil that terrorizes their world. As this battle ensues, Boruto comes to realize the struggles\ + \ his father once experienced—and what it truly means to be a ninja.\n\n[Written by MAL Rewrite]" + background: 'Boruto: Naruto the Movie is officially the highest grossing feature film in the entire Naruto franchise, + and was number 11 on Japan''s Top Grossing Domestic Movies of 2015. This is the first time that original creator Masashi + Kishimoto has written the entire screenplay for a Naruto movie.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 24765 + url: https://myanimelist.net/anime/24765/Gakkougurashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1798/91548.jpg + small_image_url: https://myanimelist.net/images/anime/1798/91548t.jpg + large_image_url: https://myanimelist.net/images/anime/1798/91548l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1798/91548.webp + small_image_url: https://myanimelist.net/images/anime/1798/91548t.webp + large_image_url: https://myanimelist.net/images/anime/1798/91548l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mYyu0yys5Ks?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gakkougurashi! + - type: Synonym + title: Gakkou Gurashi! + - type: Japanese + title: がっこうぐらし! + - type: English + title: School-Live! + - type: German + title: School-Live! + - type: Spanish + title: 'School-Live!: Gakkougurashi!' + - type: French + title: School-Live! + title: Gakkougurashi! + title_english: School-Live! + title_japanese: がっこうぐらし! + title_synonyms: + - Gakkou Gurashi! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-09T00:00:00+00:00' + to: '2015-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2015 + to: + day: 24 + month: 9 + year: 2015 + string: Jul 9, 2015 to Sep 24, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.62 + scored_by: 231897 + rank: 1727 + popularity: 540 + members: 483423 + favorites: 5731 + synopsis: |- + Carefree high school senior Yuki Takeya every day looks forward to the School Living Club. Consisting of the president Yuuri Wakasa, the athletic Kurumi Ebisuzawa, the mature Miki Naoki, the supervising teacher Megumi Sakura, and club dog Taroumaru, the club prides itself on making the most of life at school. There is only one rule the club members have to follow: all members must live their entire lives within school grounds. + + Gakkougurashi! follows the adventures of the School Living Club as they promote independence and self-determination through their lively time residing at Megurigaoka Private High School. + + [Written by MAL Rewrite] + background: Gakkougurashi! adapts the first 5 volumes of the manga. + season: summer + year: 2015 + broadcast: + day: Thursdays + time: '21:30' + timezone: Asia/Tokyo + string: Thursdays at 21:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 28805 + url: https://myanimelist.net/anime/28805/Bakemono_no_Ko + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/73540.jpg + small_image_url: https://myanimelist.net/images/anime/11/73540t.jpg + large_image_url: https://myanimelist.net/images/anime/11/73540l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/73540.webp + small_image_url: https://myanimelist.net/images/anime/11/73540t.webp + large_image_url: https://myanimelist.net/images/anime/11/73540l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PkNtujKPZtE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bakemono no Ko + - type: Synonym + title: Child of a Beast + - type: Japanese + title: バケモノの子 + - type: English + title: The Boy and the Beast + - type: German + title: Der Junge und das Biest + - type: Spanish + title: El Niño y la Bestia + - type: French + title: Le Garçon et La Bête + title: Bakemono no Ko + title_english: The Boy and the Beast + title_japanese: バケモノの子 + title_synonyms: + - Child of a Beast + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-07-11T00:00:00+00:00' + to: null + prop: + from: + day: 11 + month: 7 + year: 2015 + to: + day: null + month: null + year: null + string: Jul 11, 2015 + duration: 1 hr 59 min + rating: PG-13 - Teens 13 or older + score: 8.22 + scored_by: 240398 + rank: 415 + popularity: 580 + members: 456096 + favorites: 3260 + synopsis: "Two souls, living very different lives, wander alone and isolated in their respective worlds. For nine-year-old\ + \ Ren, the last person who treated him with any form of kindness has been killed, and he is shunned by what is left\ + \ of his family. With no parents, no real family, and no place to go, Ren escapes into the confusing streets and alleyways\ + \ of Shibuya. Through the twists and turns of the alleys, Ren stumbles into the intimidating Kumatetsu, who leads\ + \ him to the beast realm of Shibuten.\n\nFor Kumatetsu, the boy represents a chance for him to become a candidate\ + \ to replace the lord of the realm once he retires. While nearly unmatched in combat, Kumatetsu's chilly persona leaves\ + \ him with no disciples to teach and no way to prove he is worthy of becoming the lord's successor. \n\nWhile the\ + \ two share different goals, they agree to help each other in order to reach them. Kumatetsu searches for recognition;\ + \ Ren, now known as Kyuuta, searches for the home he never had. As the years pass by, it starts to become apparent\ + \ that the two are helping each other in more ways than they had originally thought. Perhaps there has always been\ + \ less of a difference between them, a boy and a beast, than either of the two ever realized.\n\n[Written by MAL Rewrite]" + background: With over ¥5.8 billion in total, Bakemono no Ko was Japan's second highest-grossing domestic film of 2015. + It won the Japan Academy Prize for Best Animated Feature, and was also nominated for an Annie Award in its independent + category. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1912 + type: anime + name: Arquebuse + url: https://myanimelist.net/anime/producer/1912/Arquebuse + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 555 + type: anime + name: Studio Chizu + url: https://myanimelist.net/anime/producer/555/Studio_Chizu + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 27831 + url: https://myanimelist.net/anime/27831/Durararax2_Ten + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/74981.jpg + small_image_url: https://myanimelist.net/images/anime/8/74981t.jpg + large_image_url: https://myanimelist.net/images/anime/8/74981l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/74981.webp + small_image_url: https://myanimelist.net/images/anime/8/74981t.webp + large_image_url: https://myanimelist.net/images/anime/8/74981l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/d7wPSLpUcFg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Durarara!!x2 Ten + - type: Synonym + title: Durarara!!x2 Ten + - type: Japanese + title: デュラララ!!×2 転 + - type: English + title: Durarara!! x2 Ten + title: Durarara!!x2 Ten + title_english: Durarara!! x2 Ten + title_japanese: デュラララ!!×2 転 + title_synonyms: + - Durarara!!x2 Ten + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-04T00:00:00+00:00' + to: '2015-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2015 + to: + day: 26 + month: 9 + year: 2015 + string: Jul 4, 2015 to Sep 26, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.96 + scored_by: 213716 + rank: 818 + popularity: 642 + members: 421139 + favorites: 773 + synopsis: |- + In Ikebukuro, the lives of its citizens continue intertwining with each other as if their fates are predestined. Mikado Ryuugamine is now one step closer to his goal of living an exciting life, and in turn, delves deeper into the darker side of Ikebukuro. After gaining absolute control over a former rival, he uses his newfound power as he pleases, purging the Dollars from the inside to mold it into the ideal organization. This proves to be as challenging as it sounds as Mikado must now deal with unwanted outside interference, most notably a re-emerging and dearly missed friend. Meanwhile, Izaya Orihara still has some schemes up his sleeve, although a rival information exchange center has proven to be quite the hindrance, lurking within everyone's favorite downtown district. Undoubtedly, sooner or later, chaos will strike again. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 28725 + url: https://myanimelist.net/anime/28725/Kokoro_ga_Sakebitagatterunda + images: + jpg: + image_url: https://myanimelist.net/images/anime/1245/112628.jpg + small_image_url: https://myanimelist.net/images/anime/1245/112628t.jpg + large_image_url: https://myanimelist.net/images/anime/1245/112628l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1245/112628.webp + small_image_url: https://myanimelist.net/images/anime/1245/112628t.webp + large_image_url: https://myanimelist.net/images/anime/1245/112628l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mnOKdfEwNMQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kokoro ga Sakebitagatterunda. + - type: Synonym + title: Kokosake + - type: Japanese + title: 心が叫びたがってるんだ。 + - type: English + title: The Anthem of the Heart + - type: German + title: The Anthem of the Heart + - type: Spanish + title: El Himno del Corazón + - type: French + title: Jun, La Voix du Coeur + title: Kokoro ga Sakebitagatterunda. + title_english: The Anthem of the Heart + title_japanese: 心が叫びたがってるんだ。 + title_synonyms: + - Kokosake + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-09-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 9 + year: 2015 + to: + day: null + month: null + year: null + string: Sep 19, 2015 + duration: 1 hr 59 min + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 167805 + rank: 1184 + popularity: 773 + members: 355676 + favorites: 2053 + synopsis: |- + Jun Naruse is a chatterbox whose life is colored by fairy tales and happy endings. However, influenced by her deep belief in those tales, she is too naive and trusting, and her words soon shatter her family's bond when she inadvertently reveals her father's affair. Naruse is scarred for life after being blamed for her parent's divorce, and her regrets soon manifest into a fairy egg—a being who seals her mouth from speaking in order to protect everyone's happy ending. + + Now, even in high school, Naruse's speech remains locked by the fairy egg. Even trying to speak causes her stomach to twist. Though unable to convey her thoughts through words, she is unexpectedly chosen to perform in a musical alongside three other students: Takumi Sakagami, Natsuki Nitou, and Daiki Tasaki. Naruse makes her way to the club room to reject the daunting task, but changes her mind when she overhears Sakagami's beautiful singing. + + Perhaps the fairy egg "curse" does not apply to singing, and perhaps Sakagami is the fairy tale prince she has been seeking all along. Will Naruse be able to convey the anthem of her heart? + + [Written by MAL Rewrite] + background: Kokoro ga Sakebitagatterunda. was created by the production staff of the 2011 anime series , and the two + works are set in the city of Chichibu, Saitama Prefecture. It earned 1.12 billion yen in the Japanese box office according + to data from the Motion Picture Producers Association of Japan. The movie was one of the Jury Selections in the Animation + Division of the 19th Japan Media Arts Festival. It was also nominated for the Animation of the Year award in the 39th + Japan Academy Prize. A live-action film adaptation opened in theaters in July 22, 2017. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 28819 + url: https://myanimelist.net/anime/28819/Okusama_ga_Seitokaichou + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/75012.jpg + small_image_url: https://myanimelist.net/images/anime/12/75012t.jpg + large_image_url: https://myanimelist.net/images/anime/12/75012l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/75012.webp + small_image_url: https://myanimelist.net/images/anime/12/75012t.webp + large_image_url: https://myanimelist.net/images/anime/12/75012l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1UDp4TdyJsg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Okusama ga Seitokaichou! + - type: Synonym + title: Oku-sama ga Seito Kaichou! + - type: Japanese + title: おくさまが生徒会長! + - type: English + title: My Wife is the Student Council President! + - type: German + title: My Wife is the Student Council President + - type: French + title: Okusama ga Seitokaichô! + title: Okusama ga Seitokaichou! + title_english: My Wife is the Student Council President! + title_japanese: おくさまが生徒会長! + title_synonyms: + - Oku-sama ga Seito Kaichou! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-02T00:00:00+00:00' + to: '2015-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2015 + to: + day: 17 + month: 9 + year: 2015 + string: Jul 2, 2015 to Sep 17, 2015 + duration: 8 min per ep + rating: R+ - Mild Nudity + score: 6.55 + scored_by: 159466 + rank: 7872 + popularity: 880 + members: 320475 + favorites: 475 + synopsis: |- + Hayato Izumi, an introverted and studious high school student, is running for the position of student council president. However, his ambition is soon shattered by his rival, Ui Wakana, an outgoing person focused on the noble goal of improving school life through love and sex education. Accepting his loss, Hayato takes on the role of vice president. + + Shortly after the election, Hayato is met with a surprise: Ui announces that she will be moving in with him—as his wife! Although initially hesitant, Hayato discovers that this marriage was arranged by their parents, and he eventually complies. Now that they are welcoming a new beginning, the couple must learn how to live with each other while keeping their unconventional relationship a secret from the entire school. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 615 + type: anime + name: Dream Creation + url: https://myanimelist.net/anime/producer/615/Dream_Creation + - mal_id: 1599 + type: anime + name: Studio CHANT + url: https://myanimelist.net/anime/producer/1599/Studio_CHANT + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 250 + type: anime + name: Media Blasters + url: https://myanimelist.net/anime/producer/250/Media_Blasters + studios: + - mal_id: 541 + type: anime + name: Seven + url: https://myanimelist.net/anime/producer/541/Seven + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 29785 + url: https://myanimelist.net/anime/29785/Jitsu_wa_Watashi_wa + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/74042.jpg + small_image_url: https://myanimelist.net/images/anime/8/74042t.jpg + large_image_url: https://myanimelist.net/images/anime/8/74042l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/74042.webp + small_image_url: https://myanimelist.net/images/anime/8/74042t.webp + large_image_url: https://myanimelist.net/images/anime/8/74042l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BDonHeTke1w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jitsu wa Watashi wa + - type: Synonym + title: Jitsuwata + - type: Synonym + title: The Truth Is I Am... + - type: Synonym + title: I am... + - type: Japanese + title: 実は私は + - type: English + title: Actually, I am... + - type: German + title: Actually, I am... + - type: Spanish + title: Actually I Am… + - type: French + title: Actually, I am... + title: Jitsu wa Watashi wa + title_english: Actually, I am... + title_japanese: 実は私は + title_synonyms: + - Jitsuwata + - The Truth Is I Am... + - I am... + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-07-07T00:00:00+00:00' + to: '2015-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2015 + to: + day: 29 + month: 9 + year: 2015 + string: Jul 7, 2015 to Sep 29, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.83 + scored_by: 135732 + rank: 6093 + popularity: 950 + members: 295057 + favorites: 576 + synopsis: |- + One day after school, Asahi Kuromine stumbles upon the truth that Youko Shiragami, the girl he has a crush on, is actually a vampire. According to her father's rules, Youko must now quit school in order to keep her family safe. However, Asahi does not want her to go and promises that he will keep her true nature secret. Unfortunately, this turns out to be easier said than done, as Asahi is a man who is easy to read and is unable to keep any secrets to himself. + + And this is only the beginning of his troubles—more supernatural beings enter his life, and he is forced to protect all of their identities or face the consequences. Jitsu wa Watashi wa follows Asahi as he deals with his new friends and the unique challenges they bring, struggles to keep his mouth shut, and desperately tries to win Youko's heart in the process. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1079 + type: anime + name: 3xCube + url: https://myanimelist.net/anime/producer/1079/3xCube + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28979 + url: https://myanimelist.net/anime/28979/To_LOVE-Ru_Darkness_2nd + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/69847.jpg + small_image_url: https://myanimelist.net/images/anime/5/69847t.jpg + large_image_url: https://myanimelist.net/images/anime/5/69847l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/69847.webp + small_image_url: https://myanimelist.net/images/anime/5/69847t.webp + large_image_url: https://myanimelist.net/images/anime/5/69847l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: To LOVE-Ru Darkness 2nd + - type: Synonym + title: To LOVE-Ru Trouble Darkness 2nd + - type: Japanese + title: To LOVEる -とらぶる- ダークネス2nd + - type: English + title: To LOVE Ru Darkness 2 + title: To LOVE-Ru Darkness 2nd + title_english: To LOVE Ru Darkness 2 + title_japanese: To LOVEる -とらぶる- ダークネス2nd + title_synonyms: + - To LOVE-Ru Trouble Darkness 2nd + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-07T00:00:00+00:00' + to: '2015-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2015 + to: + day: 29 + month: 9 + year: 2015 + string: Jul 7, 2015 to Sep 29, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.42 + scored_by: 145111 + rank: 2641 + popularity: 1012 + members: 278159 + favorites: 971 + synopsis: |- + The dispassionate, transforming assassin Golden Darkness returns to peer deeper into the mysteries surrounding her new life, while a sinister Nemesis manipulates her younger sister Mea from the shadows. Along with their newly discovered mother, Tearju, this previously estranged family quickly becomes the center of everyone's attention. On the other hand, Princess Momo's Harem Plan stands on shaky ground amidst Rito's inability to confess to his longtime crush Haruna, who has grown feelings of her own. + + But things aren't as peaceful as they seem; an evil force looms amidst the innocuous commotion, threatening to eclipse the love, happiness, and friendship of Rito and his harem. Only the light of love can hope to banish the shadow. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at a screening at TOHO Cinemas Shinjuku on June 21, 2015. Regular broadcasting began + on July 7, 2015. The franchise has been adapted into five video games. + season: summer + year: 2015 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 25283 + url: https://myanimelist.net/anime/25283/Kuusen_Madoushi_Kouhosei_no_Kyoukan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1886/154001.jpg + small_image_url: https://myanimelist.net/images/anime/1886/154001t.jpg + large_image_url: https://myanimelist.net/images/anime/1886/154001l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1886/154001.webp + small_image_url: https://myanimelist.net/images/anime/1886/154001t.webp + large_image_url: https://myanimelist.net/images/anime/1886/154001l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tAbM4ZUO_Z4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuusen Madoushi Kouhosei no Kyoukan + - type: Synonym + title: The Instructor of Aerial Combat Wizard Candidates + - type: Japanese + title: 空戦魔導士候補生の教官 + - type: English + title: Sky Wizards Academy + - type: German + title: Sky Wizards Academy + - type: Spanish + title: Sky Wizards Academy + - type: French + title: Sky Wizards Academy + title: Kuusen Madoushi Kouhosei no Kyoukan + title_english: Sky Wizards Academy + title_japanese: 空戦魔導士候補生の教官 + title_synonyms: + - The Instructor of Aerial Combat Wizard Candidates + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-09T00:00:00+00:00' + to: '2015-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2015 + to: + day: 24 + month: 9 + year: 2015 + string: Jul 9, 2015 to Sep 24, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.31 + scored_by: 133116 + rank: 9305 + popularity: 1027 + members: 273772 + favorites: 350 + synopsis: |- + Years ago, humanity almost got wiped out by huge magical armored insects that had become too strong and aggressive to handle. Because of these giant bugs, humans do not live on the earth anymore, but in floating cities instead. However, this does not mean that everything is lost, because the wizards from prestigious floating wizard academies are fighting these monsters. + + Kanata Age is a young man now labelled as a traitor even though he was once praised as the "Black Master Swordsman." He gets a chance to repair his reputation by instructing the team E601, which seems to be facing some difficulties. It consists of three girls, Misora Whitale, Lecty Eisenach, and Rico Flamel, each with problems of their own. It appears that Kanata will get in deep waters more than once because of them... + background: The cast members from the drama CD reprised their roles in the anime. + season: summer + year: 2015 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 30458 + url: https://myanimelist.net/anime/30458/Tokyo_Ghoul__Jack + images: + jpg: + image_url: https://myanimelist.net/images/anime/1739/123152.jpg + small_image_url: https://myanimelist.net/images/anime/1739/123152t.jpg + large_image_url: https://myanimelist.net/images/anime/1739/123152l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1739/123152.webp + small_image_url: https://myanimelist.net/images/anime/1739/123152t.webp + large_image_url: https://myanimelist.net/images/anime/1739/123152l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pg278L_T62k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tokyo Ghoul: "Jack"' + - type: Japanese + title: 東京喰種 トーキョーグール【JACK】 + - type: English + title: 'Tokyo Ghoul: Jack' + - type: German + title: 'Tokyo Ghoul: Jack' + - type: French + title: 'Tokyo Ghoul: Jack' + title: 'Tokyo Ghoul: "Jack"' + title_english: 'Tokyo Ghoul: Jack' + title_japanese: 東京喰種 トーキョーグール【JACK】 + title_synonyms: [] + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-09-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 9 + year: 2015 + to: + day: null + month: null + year: null + string: Sep 30, 2015 + duration: 30 min + rating: R - 17+ (violence & profanity) + score: 7.29 + scored_by: 152649 + rank: 3372 + popularity: 1038 + members: 272205 + favorites: 449 + synopsis: "Former baseball player turned delinquent Taishi Fura accidentally witnesses the man-eating \"ghoul\" known\ + \ as Lantern injuring his old friend and murdering another. Before the situation gets any worse, Fura's classmate\ + \ Kishou Arima arrives―as he is actually an undercover investigator for the Commission of Counter Ghoul (CCG)―and\ + \ forces the ghoul to flee.\n\nSeeking revenge for his friends, Fura joins forces with Arima to hunt down ghouls in\ + \ the 13th Ward—ultimately aiming to bring down Lantern. \n\nTokyo Ghoul: \"Jack\" unveils snippets of life in the\ + \ past for the CCG's fearsome \"Reaper,\" Arima, giving insight into how he spent his high school days.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 25879 + url: https://myanimelist.net/anime/25879/Working + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/73886.jpg + small_image_url: https://myanimelist.net/images/anime/7/73886t.jpg + large_image_url: https://myanimelist.net/images/anime/7/73886l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/73886.webp + small_image_url: https://myanimelist.net/images/anime/7/73886t.webp + large_image_url: https://myanimelist.net/images/anime/7/73886l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_dA2sN7FPJs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Working!!! + - type: Synonym + title: Working!! 3rd Season + - type: Synonym + title: Working!! Third Season + - type: Japanese + title: Working[ワーキング]!!! + - type: English + title: Wagnaria!!3 + - type: German + title: Wagnaria!!3 + - type: Spanish + title: Wagnaria!! Temporada 3 + - type: French + title: Wagnaria!!3 + title: Working!!! + title_english: Wagnaria!!3 + title_japanese: Working[ワーキング]!!! + title_synonyms: + - Working!! 3rd Season + - Working!! Third Season + type: TV + source: 4-koma manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-07-05T00:00:00+00:00' + to: '2015-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2015 + to: + day: 27 + month: 9 + year: 2015 + string: Jul 5, 2015 to Sep 27, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.94 + scored_by: 134705 + rank: 855 + popularity: 1070 + members: 264158 + favorites: 964 + synopsis: |- + As the stories of those connected to Wagnaria come to a close, only one thing is certain: the workplace is about to get crazier than ever before! Whether it be incredibly awkward romances, relentless searches for lost relatives, or even uncomfortable family reunions, lover of all things cute and tiny Souta Takanashi and his motley crew have plenty on their plates. With more Napoleon complexes, androphobia, and katana-wielding than you can shake a frying pan at, Working!!! delivers a final serving of the staff's hilarious misadventures working at everybody's favorite family restaurant. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at screenings at Sofmap, Toranoana, Animate, and Gamers stores throughout Japan + on June 13, 2015. Regular broadcasting began on July 5, 2015. + season: summer + year: 2015 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 29854 + url: https://myanimelist.net/anime/29854/Ushio_to_Tora_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/74945.jpg + small_image_url: https://myanimelist.net/images/anime/8/74945t.jpg + large_image_url: https://myanimelist.net/images/anime/8/74945l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/74945.webp + small_image_url: https://myanimelist.net/images/anime/8/74945t.webp + large_image_url: https://myanimelist.net/images/anime/8/74945l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sOlvF6MiDTY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ushio to Tora (TV) + - type: Synonym + title: Ushio and Tora + - type: Japanese + title: うしおととら + - type: English + title: Ushio & Tora (2015) + - type: German + title: Ushio & Tora + - type: Spanish + title: Ushio & Tora + - type: French + title: Ushio & Tora + title: Ushio to Tora (TV) + title_english: Ushio & Tora (2015) + title_japanese: うしおととら + title_synonyms: + - Ushio and Tora + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2015-07-03T00:00:00+00:00' + to: '2015-12-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2015 + to: + day: 25 + month: 12 + year: 2015 + string: Jul 3, 2015 to Dec 25, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.57 + scored_by: 105342 + rank: 1950 + popularity: 1181 + members: 239909 + favorites: 727 + synopsis: |- + Ushio Aotsuki is a stubborn middle school student and son of an eccentric temple priest who goes about life without care for his father's claims regarding otherworldly monsters known as youkai. However, as he is tending to the temple while his father is away on work, his chores lead him to a shocking discovery: in the basement he finds a menacing youkai impaled by the fabled Beast Spear. + + The beast in question is Tora, infamous for his destructive power, who tries to coerce Ushio into releasing him from his five hundred year seal. Ushio puts no trust in his words and refuses to set him free. But when a sudden youkai outbreak puts his friends and home in danger, he is left with no choice but to rely on Tora, his only insurance being the ancient spear if he gets out of hand. + + Ushio and Tora's meeting is only the beginning of the unlikely duo's journey into the depths of the spiritual realm. With the legendary Beast Spear in his hands, Ushio will find out just how real and threatening the world of the supernatural can be. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1493 + type: anime + name: Tokuma Japan Communications + url: https://myanimelist.net/anime/producer/1493/Tokuma_Japan_Communications + - mal_id: 1632 + type: anime + name: Daiichi Shokai + url: https://myanimelist.net/anime/producer/1632/Daiichi_Shokai + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30205 + url: https://myanimelist.net/anime/30205/Aoharu_x_Kikanjuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/76271.jpg + small_image_url: https://myanimelist.net/images/anime/4/76271t.jpg + large_image_url: https://myanimelist.net/images/anime/4/76271l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/76271.webp + small_image_url: https://myanimelist.net/images/anime/4/76271t.webp + large_image_url: https://myanimelist.net/images/anime/4/76271l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3-xcAfq7JFY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aoharu x Kikanjuu + - type: Synonym + title: Aoharu x Machine Gun + - type: Japanese + title: 青春×機関銃 + - type: English + title: Aoharu x Machinegun + - type: German + title: Aoharu x Machinegun + - type: Spanish + title: Aoharu x Machinegun + - type: French + title: Aoharu x Machinegun + title: Aoharu x Kikanjuu + title_english: Aoharu x Machinegun + title_japanese: 青春×機関銃 + title_synonyms: + - Aoharu x Machine Gun + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-07-03T00:00:00+00:00' + to: '2015-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2015 + to: + day: 18 + month: 9 + year: 2015 + string: Jul 3, 2015 to Sep 18, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 105237 + rank: 4245 + popularity: 1241 + members: 227166 + favorites: 1312 + synopsis: |- + Hotaru Tachibana has a strong sense of justice and just cannot help confronting those who choose to perform malicious acts. Furthermore, Hotaru is actually a girl who likes to disguise herself as a boy. After hearing rumors that her best friend was tricked by the popular host of a local club, Hotaru seeks to punish the evildoer. Upon arriving at the club, however, she is challenged to a so-called "survival game" by the host Masamune Matsuoka, where the first person hit by the bullet of a toy gun will lose. + + After a destructive fight which results in Hotaru's loss, Masamune forces the young "boy" to join his survival game team named Toy Gun Gun, in order to repay the cost of the damages that "he" has caused inside the club. Although she is initially unhappy with this turn of events, Hotaru quickly begins to enjoy what survival games have to offer and is determined to pay off her debt, much to the dismay of Tooru Yukimura, the other member of Toy Gun Gun. As time goes on, Hotaru begins to develop a close friendship with the rest of the team and hopes to take part in realizing their dream of winning the Top Combat Game (TCG), a tournament to decide the best survival game team in Japan. + + Although Hotaru tries her best, there are just two little problems: she is absolutely terrible at the game, and Toy Gun Gun doesn't allow female members on their team! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2015 + broadcast: + day: Fridays + time: 01:46 + timezone: Asia/Tokyo + string: Fridays at 01:46 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 665 + type: anime + name: chara-ani.com + url: https://myanimelist.net/anime/producer/665/chara-anicom + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 81 + type: anime + name: Crossdressing + url: https://myanimelist.net/anime/genre/81/Crossdressing + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/24-2015-fall.yaml b/test/fixtures/jikan/season_matrix/24-2015-fall.yaml new file mode 100644 index 0000000..a5d9823 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/24-2015-fall.yaml @@ -0,0 +1,3327 @@ +metadata: + captured_at: '2026-05-11T11:33:24Z' + label: 2015-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2015/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:23 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:eef0f61aa878d09aed6e322fc056697e1d70afac + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 283 + per_page: 25 + data: + - mal_id: 30276 + url: https://myanimelist.net/anime/30276/One_Punch_Man + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/76049.jpg + small_image_url: https://myanimelist.net/images/anime/12/76049t.jpg + large_image_url: https://myanimelist.net/images/anime/12/76049l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/76049.webp + small_image_url: https://myanimelist.net/images/anime/12/76049t.webp + large_image_url: https://myanimelist.net/images/anime/12/76049l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ExUMiF1L0HA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: One Punch Man + - type: Synonym + title: One Punch-Man + - type: Synonym + title: OPM + - type: Japanese + title: ワンパンマン + - type: English + title: One-Punch Man + title: One Punch Man + title_english: One-Punch Man + title_japanese: ワンパンマン + title_synonyms: + - One Punch-Man + - OPM + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-05T00:00:00+00:00' + to: '2015-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2015 + to: + day: 21 + month: 12 + year: 2015 + string: Oct 5, 2015 to Dec 21, 2015 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.47 + scored_by: 2423033 + rank: 180 + popularity: 4 + members: 3519851 + favorites: 66336 + synopsis: |- + The seemingly unimpressive Saitama has a rather unique hobby: being a hero. In order to pursue his childhood dream, Saitama relentlessly trained for three years, losing all of his hair in the process. Now, Saitama is so powerful, he can defeat any enemy with just one punch. However, having no one capable of matching his strength has led Saitama to an unexpected problem—he is no longer able to enjoy the thrill of battling and has become quite bored. + + One day, Saitama catches the attention of 19-year-old cyborg Genos, who witnesses his power and wishes to become Saitama's disciple. Genos proposes that the two join the Hero Association in order to become certified heroes that will be recognized for their positive contributions to society. Saitama, who is shocked that no one knows who he is, quickly agrees. Meeting new allies and taking on new foes, Saitama embarks on a new journey as a member of the Hero Association to experience the excitement of battle he once felt. + + [Written by MAL Rewrite] + background: Episodes 1 and 2 were previewed at a screening in Saitama city cultural center (small hall) on September + 6, 2015. Regular broadcasting began on October 5, 2015. One Punch Man is based on Yusuke Murata's manga remake of + ONE's original web comic. The anime adapts the first seven volumes of the manga. + season: fall + year: 2015 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 28891 + url: https://myanimelist.net/anime/28891/Haikyuu_Second_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/76662.jpg + small_image_url: https://myanimelist.net/images/anime/9/76662t.jpg + large_image_url: https://myanimelist.net/images/anime/9/76662l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/76662.webp + small_image_url: https://myanimelist.net/images/anime/9/76662t.webp + large_image_url: https://myanimelist.net/images/anime/9/76662l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qK_ASmBoiz0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! Second Season + - type: Synonym + title: Haikyuu!! Second Season + - type: Japanese + title: ハイキュー!! セカンドシーズン + - type: English + title: Haikyu!! 2nd Season + - type: German + title: Haikyu!! Staffel 2 + - type: Spanish + title: Haikyu!! Los Ases del Vóley Temporada 2 + - type: French + title: Haikyu!! Saison 2 + title: Haikyuu!! Second Season + title_english: Haikyu!! 2nd Season + title_japanese: ハイキュー!! セカンドシーズン + title_synonyms: + - Haikyuu!! Second Season + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2015-10-04T00:00:00+00:00' + to: '2016-03-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2015 + to: + day: 27 + month: 3 + year: 2016 + string: Oct 4, 2015 to Mar 27, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.62 + scored_by: 1028584 + rank: 100 + popularity: 87 + members: 1567635 + favorites: 16117 + synopsis: "Following their participation at the Inter-High, the Karasuno High School volleyball team attempts to refocus\ + \ their efforts, aiming to conquer the Spring tournament instead. \n\nWhen they receive an invitation from long-standing\ + \ rival Nekoma High, Karasuno agrees to take part in a large training camp alongside many notable volleyball teams\ + \ in Tokyo and even some national level players. By playing with some of the toughest teams in Japan, they hope not\ + \ only to sharpen their skills, but also come up with new attacks that would strengthen them. Moreover, Hinata and\ + \ Kageyama attempt to devise a more powerful weapon, one that could possibly break the sturdiest of blocks. \n\nFacing\ + \ what may be their last chance at victory before the senior players graduate, the members of Karasuno's volleyball\ + \ team must learn to settle their differences and train harder than ever if they hope to overcome formidable opponents\ + \ old and new—including their archrival Aoba Jousai and its world-class setter Tooru Oikawa.\n\n[Written by MAL Rewrite]" + background: Haikyuu!! Second Season is the sequel to the first anime adaptation of the manga of the same name, Haikyuu!!, + which was ranked in 4th place in Honya Club's prestigious 'Zenkoku Shotenin ga Eranda Osusume Comic' ranking in 2013. + Sentai Filmworks has announced their exclusive licensing rights for digital and home release in North America. + season: fall + year: 2015 + broadcast: + day: Sundays + time: 02:58 + timezone: Asia/Tokyo + string: Sundays at 02:58 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30503 + url: https://myanimelist.net/anime/30503/Noragami_Aragoto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1689/94850.jpg + small_image_url: https://myanimelist.net/images/anime/1689/94850t.jpg + large_image_url: https://myanimelist.net/images/anime/1689/94850l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1689/94850.webp + small_image_url: https://myanimelist.net/images/anime/1689/94850t.webp + large_image_url: https://myanimelist.net/images/anime/1689/94850l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nI_2PqGZb-c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Noragami Aragoto + - type: Japanese + title: ノラガミ ARAGOTO + - type: English + title: Noragami Aragoto + title: Noragami Aragoto + title_english: Noragami Aragoto + title_japanese: ノラガミ ARAGOTO + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-10-03T00:00:00+00:00' + to: '2015-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2015 + to: + day: 26 + month: 12 + year: 2015 + string: Oct 3, 2015 to Dec 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 945699 + rank: 538 + popularity: 90 + members: 1556602 + favorites: 11629 + synopsis: |- + Yato and Yukine have finally mended their relationship as god and Regalia. As a minor and unknown deity, Yato continues to take odd jobs for five yen apiece in hopes of one day having millions of worshippers and his own grand shrine. He has yet to fix Hiyori Iki's loose soul, but she cheerily prepares for high school nonetheless. + + While things are seemingly back to normal, the complicated history between Yato and Bishamon—goddess of war and warriors—resurfaces. Bishamon holds a mysterious old grudge against Yato, which results in violent clashes between them. To further complicate matters, Bishamon's most trusted Regalia, Kazuma, is indebted to Yato. When lives are on the line, unraveling these secrets is possibly the only way to correct mistakes of the past. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30296 + url: https://myanimelist.net/anime/30296/Rakudai_Kishi_no_Cavalry + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/76493.jpg + small_image_url: https://myanimelist.net/images/anime/9/76493t.jpg + large_image_url: https://myanimelist.net/images/anime/9/76493l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/76493.webp + small_image_url: https://myanimelist.net/images/anime/9/76493t.webp + large_image_url: https://myanimelist.net/images/anime/9/76493l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iCKk6qhBkpc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rakudai Kishi no Cavalry + - type: Synonym + title: A Chivalry of the Failed Knight + - type: Synonym + title: Rakudai Kishi no Eiyuutan + - type: Synonym + title: A Tale of Worst One + - type: Japanese + title: 落第騎士の英雄譚《キャバルリィ》 + - type: English + title: Chivalry of a Failed Knight + - type: German + title: A Chivalry of a Failed Knight + - type: Spanish + title: Chivalry of a Failed Knight + - type: French + title: Chivalry of a Failed Knight + title: Rakudai Kishi no Cavalry + title_english: Chivalry of a Failed Knight + title_japanese: 落第騎士の英雄譚《キャバルリィ》 + title_synonyms: + - A Chivalry of the Failed Knight + - Rakudai Kishi no Eiyuutan + - A Tale of Worst One + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-03T00:00:00+00:00' + to: '2015-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2015 + to: + day: 19 + month: 12 + year: 2015 + string: Oct 3, 2015 to Dec 19, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.41 + scored_by: 599084 + rank: 2690 + popularity: 180 + members: 1036113 + favorites: 9071 + synopsis: |- + There exist few humans in this world with the ability to manipulate their souls to form powerful weapons. Dubbed "Blazers," these people study and train at the prestigious Hagun Academy to become Mage-Knights; among the students is so-called failure Ikki Kurogane, the sole F-rated Blazer. However, when the worst student in the academy sees Stella Vermillion, an A-ranked Blazer who also happens to be a princess, naked, she challenges him to a duel with dire stakes—the loser becomes the slave of the winner. There's no possible way that Stella can lose, right? + + As he tries to prove his strength to a world that believes him to be the weakest, Ikki gains new friends, wisdom, and experience. + + [Written by MAL Rewrite] + background: Rakudai Kishi no Cavalry adapts the firsts 3 novels of Riku Misoria's light novel series of the same title. + season: fall + year: 2015 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 852 + type: anime + name: Nexus + url: https://myanimelist.net/anime/producer/852/Nexus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 28927 + url: https://myanimelist.net/anime/28927/Owari_no_Seraph__Nagoya_Kessen-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/76632.jpg + small_image_url: https://myanimelist.net/images/anime/9/76632t.jpg + large_image_url: https://myanimelist.net/images/anime/9/76632l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/76632.webp + small_image_url: https://myanimelist.net/images/anime/9/76632t.webp + large_image_url: https://myanimelist.net/images/anime/9/76632l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KRYkpjKW9sQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Owari no Seraph: Nagoya Kessen-hen' + - type: Synonym + title: Owari no Seraph 2nd Season + - type: Synonym + title: Seraph of the End 2nd Season + - type: Japanese + title: 終わりのセラフ 名古屋決戦編 + - type: English + title: 'Seraph of the End: Battle in Nagoya' + - type: German + title: 'Seraph of the End: Battle in Nagoya' + - type: Spanish + title: 'Seraph of the End: El Reino de los Vampiros Temporada 2' + - type: French + title: 'Seraph of the End: Vampire Reign Partie 2' + title: 'Owari no Seraph: Nagoya Kessen-hen' + title_english: 'Seraph of the End: Battle in Nagoya' + title_japanese: 終わりのセラフ 名古屋決戦編 + title_synonyms: + - Owari no Seraph 2nd Season + - Seraph of the End 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-10T00:00:00+00:00' + to: '2015-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2015 + to: + day: 26 + month: 12 + year: 2015 + string: Oct 10, 2015 to Dec 26, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.61 + scored_by: 505566 + rank: 1788 + popularity: 255 + members: 854770 + favorites: 3027 + synopsis: "Yuuichirou Hyakuya is finally reunited with his childhood friend Mikaela Hyakuya, whom he had long presumed\ + \ to be dead. Upon their reunion, however, he discovers that Mikaela has been turned into a vampire. Determined to\ + \ help his friend, Yuuichirou vows to get stronger so that he can protect Mikaela as well as the comrades in the Moon\ + \ Demon Company.\n \nKureto Hiiragi receives information that a large group of vampires will be gathering in Nagoya,\ + \ preparing for their assault on the Imperial Demon Army's main forces in Tokyo. Led by Guren Ichinose, Yuuichirou's\ + \ team is one of many selected to intercept and eliminate the vampire nobles.\n \nWith the Nagoya mission quickly\ + \ approaching, the members of Shinoa squad continue to work towards fully mastering their weapons, while learning\ + \ how to improve their teamwork. Yuuichirou must gain the power he needs to slay the nobles and save his best friend,\ + \ before he succumbs to the demon of the Cursed Gear.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2015 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30544 + url: https://myanimelist.net/anime/30544/Gakusen_Toshi_Asterisk + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/76034.jpg + small_image_url: https://myanimelist.net/images/anime/5/76034t.jpg + large_image_url: https://myanimelist.net/images/anime/5/76034l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/76034.webp + small_image_url: https://myanimelist.net/images/anime/5/76034t.webp + large_image_url: https://myanimelist.net/images/anime/5/76034l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qevN31yJemQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gakusen Toshi Asterisk + - type: Synonym + title: Academy Battle City Asterisk + - type: Japanese + title: 学戦都市アスタリスク + - type: English + title: The Asterisk War + - type: German + title: The Asterisk War + - type: Spanish + title: 'The Asterisk War: Gakusen Toshi Asterisk' + - type: French + title: The Asterisk War + title: Gakusen Toshi Asterisk + title_english: The Asterisk War + title_japanese: 学戦都市アスタリスク + title_synonyms: + - Academy Battle City Asterisk + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-03T00:00:00+00:00' + to: '2015-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2015 + to: + day: 19 + month: 12 + year: 2015 + string: Oct 3, 2015 to Dec 19, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.8 + scored_by: 396388 + rank: 6273 + popularity: 336 + members: 705936 + favorites: 2293 + synopsis: |- + In the previous century, an unprecedented disaster known as the Invertia drastically reformed the world. The powers of existing nations declined significantly, paving the way for a conglomerate called the Integrated Empire Foundation to assume control. But more importantly, the Invertia led to the emergence of a new species of humans who are born with phenomenal physical capabilities—the Genestella. Its elite are hand-picked across the globe to attend the top six schools, and they duel amongst themselves in entertainment battles called Festas. + + Ayato Amagiri is a scholarship transfer student at the prestigious Seidoukan Academy, which has recently been suffering from declining performances. Through a series of events, he accidentally sees the popular Witch of Resplendent Flames, Julis-Alexia von Riessfeld, half-dressed! Enraged, Julis challenges him to a duel for intruding on her privacy. After said duel is voided by the student council president, Ayato reveals that he has no interest in Festas. Instead, he has enrolled in the academy to investigate the whereabouts of his missing elder sister. But when a more devious plot unravels, Ayato sets out to achieve victory, while being surrounded by some of the most talented Genestella on the planet. + + [Written by MAL Rewrite] + background: The release of the Gakusen Toshi Asterisk anime series was first announced at an American anime convention + called SakuraCon. It adapts the first three volumes of its light novel source material. Gakusen Toshi Asterisk was + simulcast in North America by Crunchyroll and Funimation. + season: fall + year: 2015 + broadcast: + day: Saturdays + time: '20:30' + timezone: Asia/Tokyo + string: Saturdays at 20:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 31181 + url: https://myanimelist.net/anime/31181/Owarimonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/76479.jpg + small_image_url: https://myanimelist.net/images/anime/8/76479t.jpg + large_image_url: https://myanimelist.net/images/anime/8/76479l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/76479.webp + small_image_url: https://myanimelist.net/images/anime/8/76479t.webp + large_image_url: https://myanimelist.net/images/anime/8/76479l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TOlWzlNk0nw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Owarimonogatari + - type: Synonym + title: End Story + - type: Japanese + title: 終物語 + - type: English + title: Owarimonogatari + title: Owarimonogatari + title_english: Owarimonogatari + title_japanese: 終物語 + title_synonyms: + - End Story + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-04T00:00:00+00:00' + to: '2015-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2015 + to: + day: 20 + month: 12 + year: 2015 + string: Oct 4, 2015 to Dec 20, 2015 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.45 + scored_by: 252181 + rank: 191 + popularity: 506 + members: 511369 + favorites: 3042 + synopsis: "A peculiar transfer student named Ougi Oshino has just arrived at Naoetsu Private High School. She is quickly\ + \ introduced to senior student Koyomi Araragi by their mutual friend Kanbaru Suruga, in hopes of obtaining advice\ + \ regarding a strange discovery she has made. After taking a look at the school's layout, Ougi notices that a classroom\ + \ has appeared in an otherwise empty area—a place that should not exist. \n\nUnsure if this is the work of an apparition,\ + \ Araragi and Ougi attempt to unravel the truth behind this enigma. But Araragi soon discovers, after finding himself\ + \ locked in with Ougi, that the room holds the memory of an event he had long since forgotten.\n\n[Written by MAL\ + \ Rewrite]" + background: 'Owarimonogatari adapts the third and fourth volumes of NisiOisiN''s Monogatari Series: Final Season.' + season: fall + year: 2015 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 30363 + url: https://myanimelist.net/anime/30363/Shinmai_Maou_no_Testament_Burst + images: + jpg: + image_url: https://myanimelist.net/images/anime/1151/94750.jpg + small_image_url: https://myanimelist.net/images/anime/1151/94750t.jpg + large_image_url: https://myanimelist.net/images/anime/1151/94750l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1151/94750.webp + small_image_url: https://myanimelist.net/images/anime/1151/94750t.webp + large_image_url: https://myanimelist.net/images/anime/1151/94750l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4f5cBYUZmT0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinmai Maou no Testament Burst + - type: Japanese + title: 新妹魔王の契約者 BURST + - type: English + title: 'The Testament of Sister New Devil: Burst' + - type: German + title: 'The Testament of Sister New Devil: Burst' + - type: Spanish + title: 'The Testament of Sister New Devil: Burst (Shinmai Maou no Testament Burst)' + - type: French + title: 'The Testament of Sister New Devil: Burst' + title: Shinmai Maou no Testament Burst + title_english: 'The Testament of Sister New Devil: Burst' + title_japanese: 新妹魔王の契約者 BURST + title_synonyms: [] + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2015-10-10T00:00:00+00:00' + to: '2015-12-12T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2015 + to: + day: 12 + month: 12 + year: 2015 + string: Oct 10, 2015 to Dec 12, 2015 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.79 + scored_by: 235122 + rank: 6361 + popularity: 620 + members: 431804 + favorites: 614 + synopsis: |- + Basara Toujou has a hard life. He is the older step-brother to two demonic sisters, Mio and Maria Naruse, whom he protects from entitled demons looking to claim Mio's power for themselves. On top of that, rising political tension within the demon realm only makes his job more difficult. + + When a messenger arrives with summons for Mio to the demon realm, she and her friends go in spite of the danger. Now on the enemy's turf, Basara will have to grow stronger through erotic pleasure in order to do the impossible and protect everyone. + + [Written by MAL Rewrite] + background: Shinmai Maou no Testament Burst adapts volumes 4 to 7 of Tetsuto Uesu's light novel series of the same title. + season: fall + year: 2015 + broadcast: + day: Saturdays + time: 01:40 + timezone: Asia/Tokyo + string: Saturdays at 01:40 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 27991 + url: https://myanimelist.net/anime/27991/K__Return_of_Kings + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/76198.jpg + small_image_url: https://myanimelist.net/images/anime/6/76198t.jpg + large_image_url: https://myanimelist.net/images/anime/6/76198l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/76198.webp + small_image_url: https://myanimelist.net/images/anime/6/76198t.webp + large_image_url: https://myanimelist.net/images/anime/6/76198l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lXKYCOShfAI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'K: Return of Kings' + - type: Synonym + title: K-Project Sequel + - type: Synonym + title: K 2nd Season + - type: Japanese + title: K RETURN OF KINGS + - type: English + title: 'K: Return of Kings' + title: 'K: Return of Kings' + title_english: 'K: Return of Kings' + title_japanese: K RETURN OF KINGS + title_synonyms: + - K-Project Sequel + - K 2nd Season + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2015-10-03T00:00:00+00:00' + to: '2015-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2015 + to: + day: 26 + month: 12 + year: 2015 + string: Oct 3, 2015 to Dec 26, 2015 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 164810 + rank: 2012 + popularity: 786 + members: 350147 + favorites: 1268 + synopsis: "Tensions are running high among the clans as the Green King begins making moves that threaten to drive the\ + \ world into pandemonium. Following the death of the Gold King, the safety of the Dresden Slate, the source of power\ + \ of the Kings, is under threat. Nagare Hisui, the sly and mysterious leader of the Green Clan Jungle, is determined\ + \ to procure the powerful Slate by any means possible.\n\nStanding directly in his way is Sceptre 4, the Blue Clan,\ + \ headed by their unyielding King, Reishi Munakata. However, the grim sight of his crumbling Sword of Damocles leaves\ + \ the stability of his clan and all of Japan in jeopardy. Meanwhile, still recovering from their tragic losses, Anna\ + \ Kushina and her aggressive clan HOMRA find themselves caught up in the Green King's games. Amidst the chaos, Kurou\ + \ Yatogami and Neko are left vulnerable while their beloved friend, Yashiro Isana, the Silver King, remains missing.\ + \ \n\nAs the remaining clans struggle against the Green King's formidable forces, one final king appears.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: fall + year: 2015 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 210 + type: anime + name: Studio Tulip + url: https://myanimelist.net/anime/producer/210/Studio_Tulip + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 31772 + url: https://myanimelist.net/anime/31772/One_Punch_Man_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/1452/97840.jpg + small_image_url: https://myanimelist.net/images/anime/1452/97840t.jpg + large_image_url: https://myanimelist.net/images/anime/1452/97840l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1452/97840.webp + small_image_url: https://myanimelist.net/images/anime/1452/97840t.webp + large_image_url: https://myanimelist.net/images/anime/1452/97840l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xVy62_GaACE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: One Punch Man Specials + - type: Japanese + title: ワンパンマン + - type: English + title: One Punch Man Specials + - type: Spanish + title: 'One Punch Man: Ovas' + title: One Punch Man Specials + title_english: One Punch Man Specials + title_japanese: ワンパンマン + title_synonyms: [] + type: Special + source: Web manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2015-12-24T00:00:00+00:00' + to: '2016-05-27T00:00:00+00:00' + prop: + from: + day: 24 + month: 12 + year: 2015 + to: + day: 27 + month: 5 + year: 2016 + string: Dec 24, 2015 to May 27, 2016 + duration: 12 min per ep + rating: R - 17+ (violence & profanity) + score: 7.69 + scored_by: 193588 + rank: 1500 + popularity: 797 + members: 347773 + favorites: 515 + synopsis: Specials included in the Blu-ray and DVD releases of One Punch Man. + background: The One Punch Man Specials are anime-exclusive stories written by original creator ONE. They take place + between the episodes of the TV anime. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31704 + url: https://myanimelist.net/anime/31704/One_Punch_Man__Road_to_Hero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1802/124744.jpg + small_image_url: https://myanimelist.net/images/anime/1802/124744t.jpg + large_image_url: https://myanimelist.net/images/anime/1802/124744l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1802/124744.webp + small_image_url: https://myanimelist.net/images/anime/1802/124744t.webp + large_image_url: https://myanimelist.net/images/anime/1802/124744l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Punch Man: Road to Hero' + - type: Synonym + title: One Punch Man OVA + - type: Synonym + title: One Punch-Man OVA + - type: Synonym + title: One-Punch Man OVA + - type: Japanese + title: ワンパンマン OVA「ロード・トゥ・ヒーロー」 + title: 'One Punch Man: Road to Hero' + title_english: null + title_japanese: ワンパンマン OVA「ロード・トゥ・ヒーロー」 + title_synonyms: + - One Punch Man OVA + - One Punch-Man OVA + - One-Punch Man OVA + type: OVA + source: Web manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-12-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 12 + year: 2015 + to: + day: null + month: null + year: null + string: Dec 4, 2015 + duration: 24 min + rating: R - 17+ (violence & profanity) + score: 7.7 + scored_by: 196093 + rank: 1467 + popularity: 809 + members: 344914 + favorites: 373 + synopsis: |- + Before Saitama became the man he is today, he trained and fought endlessly to become a hero. While every scuffle leaves his tracksuit uniform in tatters, he always has it mended for free thanks to his local tailor. One day, however, the tailor informs him that he must close up shop due to pressure from a local gang. Saitama decides to help him out—and gains something irreplaceable in the process. + + [Written by MAL Rewrite] + background: 'One Punch Man: Road to Hero is an anime-exclusive story written by original creator ONE and set before + the events of the main story and was bundled with the tenth volume of One Punch-Man manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 24133 + url: https://myanimelist.net/anime/24133/Taimadou_Gakuen_35_Shiken_Shoutai + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/76211.jpg + small_image_url: https://myanimelist.net/images/anime/6/76211t.jpg + large_image_url: https://myanimelist.net/images/anime/6/76211l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/76211.webp + small_image_url: https://myanimelist.net/images/anime/6/76211t.webp + large_image_url: https://myanimelist.net/images/anime/6/76211l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Phh6NOoYcsA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Taimadou Gakuen 35 Shiken Shoutai + - type: Synonym + title: Taimadou Gakuen Sanjuugo Shiken Shoutai + - type: Japanese + title: 対魔導学園35試験小隊 + - type: English + title: 'Anti-Magic Academy: The 35th Test Platoon' + - type: German + title: Anti-Magic Academy Test-Trupp 35 + - type: French + title: 'Anti-Magic Academy: The 35th Test Platoon' + title: Taimadou Gakuen 35 Shiken Shoutai + title_english: 'Anti-Magic Academy: The 35th Test Platoon' + title_japanese: 対魔導学園35試験小隊 + title_synonyms: + - Taimadou Gakuen Sanjuugo Shiken Shoutai + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-08T00:00:00+00:00' + to: '2015-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2015 + to: + day: 24 + month: 12 + year: 2015 + string: Oct 8, 2015 to Dec 24, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.8 + scored_by: 154102 + rank: 6305 + popularity: 854 + members: 329004 + favorites: 489 + synopsis: "In a world plagued by magical dangers and threats, there exist special warriors—known as Inquisitors—who\ + \ are tasked with non-violently preventing these threats and nefarious actions. The Anti-Magic Academy is a specialized\ + \ school built to educate and train these Inquisitors, which splits its students into small squads in order to train\ + \ them to work together. Among these talented squads is the 35th Test Platoon, also known as the \"Small Fry Platoon\"\ + \ due to its low ranking and incompetent members. \n\nHowever, everything changes when Ouka Ootori, a powerful yet\ + \ rebellious former Inquisitor, is forced into joining due to her tendency to break rules and committing a serious\ + \ violation: the killing of a witch. Tempers flare upon her arrival, as she clashes with their clumsy captain Takeru\ + \ Kusanagi and argues with the rest of the squad over her views on witches. This eclectic group has a long way to\ + \ go if they wish to succeed and climb the ranks at the Anti-Magic Academy: they must first set aside their differences\ + \ and come to work together as a team.\n\n[Written by MAL Rewrite]" + background: Taimadou Gakuen 35 Shiken Shoutai adapts the first 5 novels of Touki Yanagimi's light novel series of the + same name, as well as content from the Another Mission side story series. + season: fall + year: 2015 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2035 + type: anime + name: Heiwa + url: https://myanimelist.net/anime/producer/2035/Heiwa + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 25099 + url: https://myanimelist.net/anime/25099/Ore_ga_Ojousama_Gakkou_ni_Shomin_Sample_Toshite_Gets♥Sareta_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/76542.jpg + small_image_url: https://myanimelist.net/images/anime/9/76542t.jpg + large_image_url: https://myanimelist.net/images/anime/9/76542l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/76542.webp + small_image_url: https://myanimelist.net/images/anime/9/76542t.webp + large_image_url: https://myanimelist.net/images/anime/9/76542l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5cVaIS82_og?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore ga Ojousama Gakkou ni "Shomin Sample" Toshite Gets♥Sareta Ken + - type: Synonym + title: Story in Which I Was Kidnapped by a Young Lady's School to be a "Sample of the Common People" + - type: Synonym + title: Ore ga Ojou-sama Gakkou ni "Shomin Sample" Toshite Rachirareta Ken + - type: Japanese + title: 俺がお嬢様学校に「庶民サンプル」としてゲッツされた件 + - type: English + title: Shomin Sample + - type: German + title: 'Shomin Sample: Get''s Shomin Sample' + title: Ore ga Ojousama Gakkou ni "Shomin Sample" Toshite Gets♥Sareta Ken + title_english: Shomin Sample + title_japanese: 俺がお嬢様学校に「庶民サンプル」としてゲッツされた件 + title_synonyms: + - Story in Which I Was Kidnapped by a Young Lady's School to be a "Sample of the Common People" + - Ore ga Ojou-sama Gakkou ni "Shomin Sample" Toshite Rachirareta Ken + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-07T00:00:00+00:00' + to: '2015-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2015 + to: + day: 23 + month: 12 + year: 2015 + string: Oct 7, 2015 to Dec 23, 2015 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 141149 + rank: 7192 + popularity: 936 + members: 298861 + favorites: 469 + synopsis: |- + Kimito Kagurazaka is a commoner with a fetish for men's muscles—or at least that's the lie he must keep telling if he wants to keep himself out of trouble at the elite all-girls school, Seikain Academy. Kidnapped by the school under the assumption that he prefers men, Kimito is made to be their "commoner sample," exposing the girls to both commoner and man so that the transition to the world after school is not jarring. Threatened with castration should his sexual preferences not match the school's assumptions, Kimito keeps up the facade to protect his manhood. + + But there are eccentric individuals around every corner who begin to make Kimito's life even more difficult. Among them are Aika Tenkuubashi, a social outcast who blurts out whatever comes to mind; Hakua Shiodome, a young genius; Karen Jinryou, the daughter of samurai who is obsessed with defeating Kimito; and Reiko Arisugawa, the perfect student who has delusions of marrying Kimito. Along with the commoner himself, these four girls make up the Commoner Club, which attempts to teach the girls more about life outside the school, while Kimito gradually learns about the odd girls surrounding him. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32188 + url: https://myanimelist.net/anime/32188/Steins_Gate__Kyoukaimenjou_no_Missing_Link_-_Divide_By_Zero + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/77324.jpg + small_image_url: https://myanimelist.net/images/anime/7/77324t.jpg + large_image_url: https://myanimelist.net/images/anime/7/77324l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/77324.webp + small_image_url: https://myanimelist.net/images/anime/7/77324t.webp + large_image_url: https://myanimelist.net/images/anime/7/77324l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero' + - type: Synonym + title: 'Steins Gate: Episode 23 (β)' + - type: Synonym + title: Open the Missing Link + - type: Japanese + title: シュタインズ・ゲート境界面上のミッシングリンク-Divide By Zero- + - type: English + title: 'Steins;Gate: Open the Missing Link - Divide By Zero' + title: 'Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero' + title_english: 'Steins;Gate: Open the Missing Link - Divide By Zero' + title_japanese: シュタインズ・ゲート境界面上のミッシングリンク-Divide By Zero- + title_synonyms: + - 'Steins Gate: Episode 23 (β)' + - Open the Missing Link + type: TV Special + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-12-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 12 + year: 2015 + to: + day: null + month: null + year: null + string: Dec 3, 2015 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 162074 + rank: 357 + popularity: 971 + members: 290172 + favorites: 483 + synopsis: "Having reached his emotional breaking point, Rintarou Okabe refuses to continue aiding time traveler Suzuha\ + \ Amane in her mission to prevent World War III, believing any further efforts to save Makise Kurisu will be in vain.\ + \ Shortly after, Okabe abandons his mad scientist persona and becomes a seemingly regular university student. \n\n\ + Okabe's close friend Mayuri Shiina perceives him to be recovering from his trauma and is visibly happy. However, something\ + \ still seems to be bothering Okabe. Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero marks the beginning\ + \ of a critical divergence—a timeline in which the burden of fate escalates beyond one's limits.\n\n[Written by MAL\ + \ Rewrite]" + background: 'Steins;Gate: Kyoukaimenjou no Missing Link - Divide By Zero aired on December 3, 2015 during the rebroadcast + of Steins;Gate to promote the Steins;Gate 0 visual novel, which was subsequently released on December 10, 2015. It + was bundled with the Steins;Gate complete Blu-ray box set, released in Japan on February 5, 2016 and in North America + on February 5, 2019 by Funimation Entertainment. The special incorporates a majority of the Steins;Gate anime''s 23rd + episode, "Open the Steins Gate," but features an entirely new alternative ending in its latter half.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 352 + type: anime + name: Kadokawa Pictures Japan + url: https://myanimelist.net/anime/producer/352/Kadokawa_Pictures_Japan + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 31374 + url: https://myanimelist.net/anime/31374/Shingeki_Kyojin_Chuugakkou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/75467.jpg + small_image_url: https://myanimelist.net/images/anime/3/75467t.jpg + large_image_url: https://myanimelist.net/images/anime/3/75467l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/75467.webp + small_image_url: https://myanimelist.net/images/anime/3/75467t.webp + large_image_url: https://myanimelist.net/images/anime/3/75467l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8APiYXvS6wI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki! Kyojin Chuugakkou + - type: Synonym + title: Attack! Titan Junior High + - type: Japanese + title: 進撃!巨人中学校 + - type: English + title: 'Attack on Titan: Junior High' + - type: German + title: 'Attack on Titan: Junior High' + - type: Spanish + title: 'Ataque a los Titanes: Junior High' + - type: French + title: 'Attack on Titan: Junior High' + title: Shingeki! Kyojin Chuugakkou + title_english: 'Attack on Titan: Junior High' + title_japanese: 進撃!巨人中学校 + title_synonyms: + - Attack! Titan Junior High + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-04T00:00:00+00:00' + to: '2015-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2015 + to: + day: 20 + month: 12 + year: 2015 + string: Oct 4, 2015 to Dec 20, 2015 + duration: 17 min per ep + rating: PG-13 - Teens 13 or older + score: 7.22 + scored_by: 158692 + rank: 3845 + popularity: 979 + members: 287616 + favorites: 856 + synopsis: |- + On his first day of junior high, Eren Yeager comes face-to-face with a titan—and has his lunch stolen! From that day on, he holds a grudge against titans for taking his favorite food from him, a cheeseburger, vowing to eliminate their kind once and for all. Along with his adoptive sister Mikasa Ackerman and their friend Armin Arlert, the trio traverse the halls of Titan Junior High, encountering familiar faces and participating in various extracurricular activities as part of the Wall Cleanup Club. + + A parody of the immensely popular parent series, Shingeki! Kyojin Chuugakkou places beloved characters as junior high school students, fighting to protect their lunches from gluttonous titans. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Sundays + time: 01:58 + timezone: Asia/Tokyo + string: Sundays at 01:58 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31251 + url: https://myanimelist.net/anime/31251/Kidou_Senshi_Gundam__Tekketsu_no_Orphans + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/75879.jpg + small_image_url: https://myanimelist.net/images/anime/6/75879t.jpg + large_image_url: https://myanimelist.net/images/anime/6/75879l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/75879.webp + small_image_url: https://myanimelist.net/images/anime/6/75879t.webp + large_image_url: https://myanimelist.net/images/anime/6/75879l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kidou Senshi Gundam: Tekketsu no Orphans' + - type: Synonym + title: G-Tekketsu + - type: Japanese + title: 機動戦士ガンダム 鉄血のオルフェンズ + - type: English + title: 'Mobile Suit Gundam: Iron-Blooded Orphans' + - type: Spanish + title: Mobile Suit Gundam Iron Blooded Orphans + title: 'Kidou Senshi Gundam: Tekketsu no Orphans' + title_english: 'Mobile Suit Gundam: Iron-Blooded Orphans' + title_japanese: 機動戦士ガンダム 鉄血のオルフェンズ + title_synonyms: + - G-Tekketsu + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2015-10-04T00:00:00+00:00' + to: '2016-03-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2015 + to: + day: 27 + month: 3 + year: 2016 + string: Oct 4, 2015 to Mar 27, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.07 + scored_by: 136155 + rank: 645 + popularity: 1029 + members: 273696 + favorites: 3680 + synopsis: |- + Over three hundred years have passed since the Calamity War, the great conflict between Earth and its outer space colonies. Now Earth is ruled over by four economic blocs, and the military organization Gjallarhorn is responsible for keeping the peace. Mars, on the other hand, depends heavily on Earth's economy. + + Horrified by the appalling living conditions that Mars' inhabitants have to bear, Kudelia Aina Bernstein, a young aristocrat from the Chryse Autonomous Region, gets involved in the Red Planet's independence movement. She hires the services of a local company, Chryse Guard Security (CGS), to escort her on the journey to Earth to negotiate economic conditions with the earthly bloc that controls the region. The Third Army Division—consisting of Mikazuki Augus, Orga Itsuka, and many other child soldiers—are chosen to protect her. + + When Gjallarhorn attacks the CGS facilities to assassinate the young revolutionary threatening their interests, Orga and his comrades must not let the attackers accomplish their goal—in fact, Gjallarhorn's actions might turn out to be the unintentional catalyst that leads the children to be the forgers of their own destiny. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 30885 + url: https://myanimelist.net/anime/30885/Noragami_Aragoto_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/77510.jpg + small_image_url: https://myanimelist.net/images/anime/11/77510t.jpg + large_image_url: https://myanimelist.net/images/anime/11/77510l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/77510.webp + small_image_url: https://myanimelist.net/images/anime/11/77510t.webp + large_image_url: https://myanimelist.net/images/anime/11/77510l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Noragami Aragoto OVA + - type: Synonym + title: Noragami Aragoto OAD + - type: Japanese + title: ノラガミ OAD + title: Noragami Aragoto OVA + title_english: null + title_japanese: ノラガミ OAD + title_synonyms: + - Noragami Aragoto OAD + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2015-11-17T00:00:00+00:00' + to: '2016-03-17T00:00:00+00:00' + prop: + from: + day: 17 + month: 11 + year: 2015 + to: + day: 17 + month: 3 + year: 2016 + string: Nov 17, 2015 to Mar 17, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 144140 + rank: 1085 + popularity: 1037 + members: 272522 + favorites: 378 + synopsis: |- + Yoru to Shinrenzoku Satsujin Jiken: Noragami Suspense Gekijou + Hiyori Iki goes on a skiing trip with her parents and happens to bump into Yato and Yukine. After a short while, they find the other gods who are there for a company vacation. But amidst all the fun, someone is plotting a heinous crime, and Yato is the primary target. + + Issho ni Shashin wo + On a different day, Yato’s been able to make a small fortune from his last job and decides to take Hiyori and Yukine to Capyper Land. Although she agrees without knowing the destination, will Hiyori actually enjoy the day considering what happened on her last visit? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31297 + url: https://myanimelist.net/anime/31297/Tokyo_Ghoul__Pinto + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/78666.jpg + small_image_url: https://myanimelist.net/images/anime/3/78666t.jpg + large_image_url: https://myanimelist.net/images/anime/3/78666l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/78666.webp + small_image_url: https://myanimelist.net/images/anime/3/78666t.webp + large_image_url: https://myanimelist.net/images/anime/3/78666l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/POKCMT3b2_I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tokyo Ghoul: "Pinto"' + - type: Japanese + title: 東京喰種 トーキョーグール【PINTO】 + - type: English + title: 'Tokyo Ghoul: Pinto' + - type: French + title: 'Tokyo Ghoul: Pinto' + title: 'Tokyo Ghoul: "Pinto"' + title_english: 'Tokyo Ghoul: Pinto' + title_japanese: 東京喰種 トーキョーグール【PINTO】 + title_synonyms: [] + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-12-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 12 + year: 2015 + to: + day: null + month: null + year: null + string: Dec 25, 2015 + duration: 24 min + rating: R - 17+ (violence & profanity) + score: 7.2 + scored_by: 129794 + rank: 3986 + popularity: 1206 + members: 235018 + favorites: 409 + synopsis: |- + Shuu Tsukiyama is a "ghoul": a creature who eats human flesh, and he likes to enjoy his meals to the fullest. One night, while relishing in the premeditated murder of his dinner, Shuu's much anticipated first bite is disturbed by a sudden flash of light. + + The flash turns out to be from the camera of high schooler Chie Hori, who presents Shuu with the perfect picture capturing his true nature; the extremely clear shot of a bloody corpse and an overly excited Shuu threatens to expose his ghoul identity, thus Shuu needs to sort out this situation quickly. + + After Shuu discovers that Chie attends the same high school as him and is even in the same class, the reason behind his feelings of obsession changes from self-preservation to morbid curiosity. As he grows closer to the absent-minded and extremely odd photographer, he challenges them both to learn more about each other's conflicting worlds; Shuu promises that Chie will come out of this experience with a photograph superior to the one she already has. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30187 + url: https://myanimelist.net/anime/30187/Sakurako-san_no_Ashimoto_ni_wa_Shitai_ga_Umatteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/76116.jpg + small_image_url: https://myanimelist.net/images/anime/7/76116t.jpg + large_image_url: https://myanimelist.net/images/anime/7/76116l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/76116.webp + small_image_url: https://myanimelist.net/images/anime/7/76116t.webp + large_image_url: https://myanimelist.net/images/anime/7/76116l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-pDRype0mQU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru + - type: Synonym + title: A Corpse is Buried Under Sakurako's Feet. + - type: Japanese + title: 櫻子さんの足下には死体が埋まっている + - type: English + title: Beautiful Bones -Sakurako's Investigation- + - type: German + title: 'Beautiful Bones: Sakurako''s Investigation' + - type: Spanish + title: 'Beautiful Bones -Sakurako''s Investigation-: Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru' + - type: French + title: Beautiful Bones -Sakurako's Investigation- + title: Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru + title_english: Beautiful Bones -Sakurako's Investigation- + title_japanese: 櫻子さんの足下には死体が埋まっている + title_synonyms: + - A Corpse is Buried Under Sakurako's Feet. + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-10-08T00:00:00+00:00' + to: '2015-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2015 + to: + day: 24 + month: 12 + year: 2015 + string: Oct 8, 2015 to Dec 24, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.42 + scored_by: 95674 + rank: 2631 + popularity: 1216 + members: 232852 + favorites: 1038 + synopsis: |- + When Shoutarou Tatewaki first meets Sakurako Kujou, he knows his life will never be the same. Initially believing her to be responsible for a disappearance in the neighborhood, he later learns of her true talent: analyzing bone specimens. Sakurako has quite the collection of reconstructed animal bones, but she wishes she had more of the human variety, much to the chagrin of those around her. + + Soon, Shoutarou begins accompanying the eccentric osteologist on the many different unsolved cases she comes across—usually in the form of decomposing bodies. But with so many incidents happening around them, could there be a larger mystery at work in their lives? + + Sakurako-san no Ashimoto ni wa Shitai ga Umatteiru is a story of two unlikely partners, each showing in their own way that bones can tell how one died, but only people can tell how they lived. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 28621 + url: https://myanimelist.net/anime/28621/Subete_ga_F_ni_Naru + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/76071.jpg + small_image_url: https://myanimelist.net/images/anime/9/76071t.jpg + large_image_url: https://myanimelist.net/images/anime/9/76071l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/76071.webp + small_image_url: https://myanimelist.net/images/anime/9/76071t.webp + large_image_url: https://myanimelist.net/images/anime/9/76071l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nmT4jMKAQhk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Subete ga F ni Naru + - type: Synonym + title: 'Everything Becomes F: The Perfect Insider' + - type: Japanese + title: すべてがFになる THE PERFECT INSIDER + - type: English + title: The Perfect Insider + - type: German + title: 'The Perfect Insider: Subete ga F ni naru' + - type: Spanish + title: The Perfect Insider + - type: French + title: 'The Perfect Insider: Surdduee et Meurtriere - Elle est la Cle de l''Enquête' + title: Subete ga F ni Naru + title_english: The Perfect Insider + title_japanese: すべてがFになる THE PERFECT INSIDER + title_synonyms: + - 'Everything Becomes F: The Perfect Insider' + type: TV + source: Novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2015-10-09T00:00:00+00:00' + to: '2015-12-18T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2015 + to: + day: 18 + month: 12 + year: 2015 + string: Oct 9, 2015 to Dec 18, 2015 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.24 + scored_by: 72829 + rank: 3728 + popularity: 1510 + members: 183833 + favorites: 761 + synopsis: "In a research facility hidden away on a remote island, genius programmer Shiki Magata has lived as a recluse\ + \ for years. She rarely sees guests, but associate professor Souhei Saikawa and university student Moe Nishinosono\ + \ still seek her out. However, their meeting is cut short when they are caught up in a locked-room murder mystery.\ + \ \n\nEverything is not as it seems, and many secrets are hidden. Within an isolated facility, a seemingly impossible\ + \ and gruesome crime takes place, and Saikawa and Moe must unravel the truth behind the murder and Magata's shrouded\ + \ past.\n\n[Written by MAL Rewrite]" + background: Subete ga F ni Naru is based on the Japanese mystery novel of the same name by Hiroshi Mori, which was released + on April 5, 1996. + season: fall + year: 2015 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 31174 + url: https://myanimelist.net/anime/31174/Osomatsu-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/76540.jpg + small_image_url: https://myanimelist.net/images/anime/7/76540t.jpg + large_image_url: https://myanimelist.net/images/anime/7/76540l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/76540.webp + small_image_url: https://myanimelist.net/images/anime/7/76540t.webp + large_image_url: https://myanimelist.net/images/anime/7/76540l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_imsKXx0Stk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Osomatsu-san + - type: Japanese + title: おそ松さん + - type: English + title: Mr. Osomatsu + - type: German + title: Mr. Osomatsu + - type: Spanish + title: Mr.Osomatsu + - type: French + title: Mr. Osomatsu + title: Osomatsu-san + title_english: Mr. Osomatsu + title_japanese: おそ松さん + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2015-10-06T00:00:00+00:00' + to: '2016-03-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2015 + to: + day: 29 + month: 3 + year: 2016 + string: Oct 6, 2015 to Mar 29, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.93 + scored_by: 70088 + rank: 878 + popularity: 1526 + members: 181835 + favorites: 3599 + synopsis: |- + The majority of the Matsuno household is comprised of six identical siblings: self-centered leader Osomatsu, manly Karamatsu, voice of reason Choromatsu, cynical Ichimatsu, hyperactive Juushimatsu, and lovable Todomatsu. Despite each one of them being over the age of 20, they are incredibly lazy and have absolutely no motivation to get a job, choosing to live as NEETs instead. In the rare occurrence that they try to look for employment and are somehow able to land an interview, their unique personalities generally lead to their swift rejection. + + From trying to pick up girlfriends to finding the perfect job, the daily activities of the Matsuno brothers are never dull as they go on all sorts of crazy, and often downright bizarre, adventures. Though they desperately search for a way to improve their social standing, it won't be possible if they can't survive the various challenges that come with being sextuplets! + + [Written by MAL Rewrite] + background: Osomatsu-san was made to commemorate the 80th birthday of the series' late original creator, Fujio Akatsuka. + A parody of Anpanman, a popular kids anime, in the third episode was reanimated following complaints to the network, + while the first episode, due to the fact that it contained multiple parodies, has been pulled entirely from streaming + sites and the Japanese Blu-Ray release. + season: fall + year: 2015 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1632 + type: anime + name: Daiichi Shokai + url: https://myanimelist.net/anime/producer/1632/Daiichi_Shokai + - mal_id: 1822 + type: anime + name: Fujio Production + url: https://myanimelist.net/anime/producer/1822/Fujio_Production + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 19489 + url: https://myanimelist.net/anime/19489/Little_Witch_Academia__Mahoujikake_no_Parade + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/75752.jpg + small_image_url: https://myanimelist.net/images/anime/12/75752t.jpg + large_image_url: https://myanimelist.net/images/anime/12/75752l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/75752.webp + small_image_url: https://myanimelist.net/images/anime/12/75752t.webp + large_image_url: https://myanimelist.net/images/anime/12/75752l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JUVaeqAWnQI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Little Witch Academia: Mahoujikake no Parade' + - type: Synonym + title: LWA 2 + - type: Synonym + title: Little Witch Academia 2 + - type: Japanese + title: リトルウィッチアカデミア 魔法仕掛けのパレード + - type: English + title: 'Little Witch Academia: The Enchanted Parade' + title: 'Little Witch Academia: Mahoujikake no Parade' + title_english: 'Little Witch Academia: The Enchanted Parade' + title_japanese: リトルウィッチアカデミア 魔法仕掛けのパレード + title_synonyms: + - LWA 2 + - Little Witch Academia 2 + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2015-10-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 10 + year: 2015 + to: + day: null + month: null + year: null + string: Oct 9, 2015 + duration: 53 min + rating: G - All Ages + score: 7.75 + scored_by: 99955 + rank: 1311 + popularity: 1545 + members: 179316 + favorites: 330 + synopsis: |- + You can tell witch training is not going swimmingly for the young sorceresses Akko, Lotte, and Sucy—they face expulsion for screwing up one class too many, and their only way out is if they successfully organize their academy's annual parade through a nearby town. But when they stumble upon the momentous discovery that the objective of the parade is to humiliate witches and commemorate their past subjugation, Akko decides it is time for a change: It is time to show the world how fantastic modern witches truly are! However, with the other girls struggling to keep up with Akko's grandiose ambitions, and everything from mischievous boys to slumbering giants getting in their way, maybe pulling it off will require not only all the magical prowess the pupils of Luna Nova Magical Academy can muster, but also a miracle. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 29974 + url: https://myanimelist.net/anime/29974/Diabolik_Lovers_MoreBlood + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/73657.jpg + small_image_url: https://myanimelist.net/images/anime/3/73657t.jpg + large_image_url: https://myanimelist.net/images/anime/3/73657l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/73657.webp + small_image_url: https://myanimelist.net/images/anime/3/73657t.webp + large_image_url: https://myanimelist.net/images/anime/3/73657l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k5QsnqwfClY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Diabolik Lovers More,Blood + - type: Synonym + title: Diabolik Lovers 2nd Season + - type: Synonym + title: Diabolik Lovers Second Season + - type: Synonym + title: 'Diabolik Lovers: More Blood' + - type: Japanese + title: DIABOLIK LOVERS MORE,BLOOD + - type: English + title: 'Diabolik Lovers II: More,Blood' + - type: German + title: 'Diabolik Lovers II: More,Blood' + - type: Spanish + title: 'Diabolik Lovers II: More,Blood' + - type: French + title: 'Diabolik Lovers II: More,Blood' + title: Diabolik Lovers More,Blood + title_english: 'Diabolik Lovers II: More,Blood' + title_japanese: DIABOLIK LOVERS MORE,BLOOD + title_synonyms: + - Diabolik Lovers 2nd Season + - Diabolik Lovers Second Season + - 'Diabolik Lovers: More Blood' + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2015-09-24T00:00:00+00:00' + to: '2015-12-10T00:00:00+00:00' + prop: + from: + day: 24 + month: 9 + year: 2015 + to: + day: 10 + month: 12 + year: 2015 + string: Sep 24, 2015 to Dec 10, 2015 + duration: 12 min per ep + rating: R - 17+ (violence & profanity) + score: 5.51 + scored_by: 91863 + rank: 13206 + popularity: 1584 + members: 173980 + favorites: 614 + synopsis: |- + Yui Komori, still held captive by the Sakamaki brothers—pureblood vampires after her blood—experiences yet more bizarre twists to her life following her stay at their household. Though haunted by enigmatic dreams, Yui soon deciphers their meaning when caught in a car crash, which subsequently leads to meeting four new vampires: the Mukami brothers, Ruki, Azusa, Kou, and Yuuma, who themselves capture the bewildered girl. + + Yui later awakens in the Mukami mansion, where the brothers reveal their plans for her: she is their "Eve," and her blood will find the "Adam" among them; together, they will have the power to rule the world. However, with the Sakamaki brothers hot on their heels, things might not go quite as smoothly as they had imagined. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 31592 + url: https://myanimelist.net/anime/31592/Pokemon_XY_Z + images: + jpg: + image_url: https://myanimelist.net/images/anime/1627/140267.jpg + small_image_url: https://myanimelist.net/images/anime/1627/140267t.jpg + large_image_url: https://myanimelist.net/images/anime/1627/140267l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1627/140267.webp + small_image_url: https://myanimelist.net/images/anime/1627/140267t.webp + large_image_url: https://myanimelist.net/images/anime/1627/140267l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JeyVL5FCCM8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Pokemon XY&Z + - type: Synonym + title: Pocket Monsters XY&Z + - type: Synonym + title: Pokémon XY&Z + - type: Japanese + title: ポケットモンスターXY&Z + - type: English + title: 'Pokémon the Series: XYZ' + - type: German + title: Pokémon XYZ + - type: Spanish + title: Pokémon Temporada XYZ + - type: French + title: Pokémon XYZ + title: Pokemon XY&Z + title_english: 'Pokémon the Series: XYZ' + title_japanese: ポケットモンスターXY&Z + title_synonyms: + - Pocket Monsters XY&Z + - Pokémon XY&Z + type: TV + source: Game + episodes: 47 + status: Finished Airing + airing: false + aired: + from: '2015-10-29T00:00:00+00:00' + to: '2016-10-27T00:00:00+00:00' + prop: + from: + day: 29 + month: 10 + year: 2015 + to: + day: 27 + month: 10 + year: 2016 + string: Oct 29, 2015 to Oct 27, 2016 + duration: 23 min per ep + rating: PG - Children + score: 7.83 + scored_by: 105160 + rank: 1110 + popularity: 1653 + members: 165628 + favorites: 1321 + synopsis: |- + The journey of Satoshi and his friends through the Kalos region continues! After Satoshi obtains his seventh gym badge, the group is moving toward the next town when Eureka discovers a mysterious Pokémon resting in her pochette. Soon given the name Puni-chan, it is one that even Satoshi and Serena's new Pokémon Zukan cannot identify. However, it quickly becomes apparent that Puni-chan is the target of a mysterious group clad in bright red suits known as Team Flare, aiming to capture the new Pokémon to further their agenda. But when Satoshi and the gang realize that the enigmatic organization has no intention of treating Puni-chan with any decency, they take a stand in opposition to Team Flare's plans, daring to fight back. + + With Gojika's predictions looming above them, Satoshi aims for his final gym badge while Serena contests for her last Princess Key in order to be able to compete at the TriPokalon Master Class. But as Team Flare begins to move in search of the mysterious Z, the stories of Pokemon XY and Pokemon XY: Mega Evolution cross paths as Satoshi and his friends, along with Team Rocket, get caught up in a scheme that could put Kalos in great danger. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2015 + broadcast: + day: Thursdays + time: '18:55' + timezone: Asia/Tokyo + string: Thursdays at 18:55 (JST) + producers: [] + licensors: + - mal_id: 499 + type: anime + name: The Pokemon Company International + url: https://myanimelist.net/anime/producer/499/The_Pokemon_Company_International + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 15 + type: anime + name: Kids + url: https://myanimelist.net/anime/genre/15/Kids + - mal_id: 27829 + url: https://myanimelist.net/anime/27829/Heavy_Object + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/75940.jpg + small_image_url: https://myanimelist.net/images/anime/13/75940t.jpg + large_image_url: https://myanimelist.net/images/anime/13/75940l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/75940.webp + small_image_url: https://myanimelist.net/images/anime/13/75940t.webp + large_image_url: https://myanimelist.net/images/anime/13/75940l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cZDDuFj_qmg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Heavy Object + - type: Japanese + title: ヘヴィーオブジェクト + - type: English + title: Heavy Object + title: Heavy Object + title_english: Heavy Object + title_japanese: ヘヴィーオブジェクト + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2015-10-03T00:00:00+00:00' + to: '2016-03-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2015 + to: + day: 26 + month: 3 + year: 2016 + string: Oct 3, 2015 to Mar 26, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 63324 + rank: 3541 + popularity: 1670 + members: 163026 + favorites: 467 + synopsis: |- + In the distant future, the nature of war has changed. "Objects"—massive, spherical tanks impermeable to standard weaponry and armed with destructive firepower—rule the battlefield; their very deployment ensures victory, rendering traditional armies useless. However, this new method of warfare is about to be turned on its head. + + Qwenthur Barbotage, a student studying Object Design, and Havia Winchell, a radar analyst of noble birth, serve in the Legitimate Kingdom's 37th Mobile Maintenance Battalion, tasked with supporting the Baby Magnum, one of the nation's Objects. Unfortunately, a battle gone awry places the duo in a precarious situation: mere infantry stand face-to-face against the unfathomable might of an enemy Object. As they scramble to save themselves and their fellow soldiers, a glimmer of hope shines through, and the world's perception of Objects is changed forever. + + Heavy Object follows these two soldiers alongside Milinda Brantini, the Baby Magnum's pilot, and their commanding officer Frolaytia Capistrano as the unit treks all over the globe to fight battle after battle. Facing one impossible situation after another, they must summon all their wit and courage to overcome the insurmountable foes that are Objects. + + [Written by MAL Rewrite] + background: Several characters from Heavy Object are slated to appear in the sequel to the arcade fighting game Dengeki + Bunko Fighting Climax. + season: fall + year: 2015 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + - mal_id: 537 + type: anime + name: SANZIGEN + url: https://myanimelist.net/anime/producer/537/SANZIGEN + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/25-2016-winter.yaml b/test/fixtures/jikan/season_matrix/25-2016-winter.yaml new file mode 100644 index 0000000..f0d12ae --- /dev/null +++ b/test/fixtures/jikan/season_matrix/25-2016-winter.yaml @@ -0,0 +1,3292 @@ +metadata: + captured_at: '2026-05-11T11:33:26Z' + label: 2016-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2016/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:26 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:a85ea189de4e24b51831de37146e590693835a78 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 298 + per_page: 25 + data: + - mal_id: 31043 + url: https://myanimelist.net/anime/31043/Boku_dake_ga_Inai_Machi + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/77957.jpg + small_image_url: https://myanimelist.net/images/anime/10/77957t.jpg + large_image_url: https://myanimelist.net/images/anime/10/77957l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/77957.webp + small_image_url: https://myanimelist.net/images/anime/10/77957t.webp + large_image_url: https://myanimelist.net/images/anime/10/77957l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DwmxEAWjTQQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku dake ga Inai Machi + - type: Synonym + title: The Town Where Only I am Missing + - type: Synonym + title: BokuMachi + - type: Japanese + title: 僕だけがいない街 + - type: English + title: Erased + - type: German + title: ERASED - Die Stadt, in der es mich nicht gibt - + - type: Spanish + title: Desaparecido + - type: French + title: ERASED + title: Boku dake ga Inai Machi + title_english: Erased + title_japanese: 僕だけがいない街 + title_synonyms: + - The Town Where Only I am Missing + - BokuMachi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: '2016-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: 25 + month: 3 + year: 2016 + string: Jan 8, 2016 to Mar 25, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.31 + scored_by: 1479201 + rank: 312 + popularity: 29 + members: 2293361 + favorites: 51255 + synopsis: "When tragedy is about to strike, Satoru Fujinuma finds himself sent back several minutes before the accident\ + \ occurs. The detached, 29-year-old manga artist has taken advantage of this powerful yet mysterious phenomenon, which\ + \ he calls \"Revival,\" to save many lives.\n \nHowever, when he is wrongfully accused of murdering someone close\ + \ to him, Satoru is sent back to the past once again, but this time to 1988, 18 years in the past. Soon, he realizes\ + \ that the murder may be connected to the abduction and killing of one of his classmates, the solitary and mysterious\ + \ Kayo Hinazuki, that took place when he was a child. This is his chance to make things right.\n \nBoku dake ga Inai\ + \ Machi follows Satoru in his mission to uncover what truly transpired 18 years ago and prevent the death of his classmate\ + \ while protecting those he cares about in the present.\n\n[Written by MAL Rewrite]" + background: Boku dake ga Inai Machi is based on Kei Sanbe's manga series of the same title. The anime adapts the full + story of the manga, though it condenses and alters the events that take place in volumes 6 to 8. The first two episodes + were shown at an event on January 5, 2016, at Shinjuku Ward 9. A live-action movie adaptation was released in Japan + on March 19, 2016 which also featured an alternate ending. A live-action Netflix TV series was released on December + 15, 2017. + season: winter + year: 2016 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 2225 + type: anime + name: C-one + url: https://myanimelist.net/anime/producer/2225/C-one + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30831 + url: https://myanimelist.net/anime/30831/Kono_Subarashii_Sekai_ni_Shukufuku_wo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1895/142748.jpg + small_image_url: https://myanimelist.net/images/anime/1895/142748t.jpg + large_image_url: https://myanimelist.net/images/anime/1895/142748l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1895/142748.webp + small_image_url: https://myanimelist.net/images/anime/1895/142748t.webp + large_image_url: https://myanimelist.net/images/anime/1895/142748l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NU87y-38glA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Subarashii Sekai ni Shukufuku wo! + - type: Synonym + title: Give Blessings to This Wonderful World! + - type: Japanese + title: この素晴らしい世界に祝福を! + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World!' + - type: German + title: 'KonoSuba: God''s Blessing on This Wonderful World!' + - type: Spanish + title: 'KonoSuba: God''s blessing on this wonderful world!' + - type: French + title: 'KonoSuba: God''s Blessing on This Wonderful World!' + title: Kono Subarashii Sekai ni Shukufuku wo! + title_english: 'KonoSuba: God''s Blessing on This Wonderful World!' + title_japanese: この素晴らしい世界に祝福を! + title_synonyms: + - Give Blessings to This Wonderful World! + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2016-01-14T00:00:00+00:00' + to: '2016-03-17T00:00:00+00:00' + prop: + from: + day: 14 + month: 1 + year: 2016 + to: + day: 17 + month: 3 + year: 2016 + string: Jan 14, 2016 to Mar 17, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.09 + scored_by: 1385426 + rank: 614 + popularity: 38 + members: 2151217 + favorites: 47611 + synopsis: |- + After dying a laughable and pathetic death on his way back from buying a game, high school student and recluse Kazuma Satou finds himself sitting before a beautiful but obnoxious goddess named Aqua. She provides the NEET with two options: continue on to heaven or reincarnate in every gamer's dream—a real fantasy world! Choosing to start a new life, Kazuma is quickly tasked with defeating a Demon King who is terrorizing villages. But before he goes, he can choose one item of any kind to aid him in his quest, and the future hero selects Aqua. But Kazuma has made a grave mistake—Aqua is completely useless! + + Unfortunately, their troubles don't end here; it turns out that living in such a world is far different from how it plays out in a game. Instead of going on a thrilling adventure, the duo must first work to pay for their living expenses. Indeed, their misfortunes have only just begun! + + [Written by MAL Rewrite] + background: Kono Subarashii Sekai ni Shukufuku wo! adapts the first 2 volumes of Natsume Akatsuki's light novel series + of the same name. + season: winter + year: 2016 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 30654 + url: https://myanimelist.net/anime/30654/Ansatsu_Kyoushitsu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/77966.jpg + small_image_url: https://myanimelist.net/images/anime/8/77966t.jpg + large_image_url: https://myanimelist.net/images/anime/8/77966l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/77966.webp + small_image_url: https://myanimelist.net/images/anime/8/77966t.webp + large_image_url: https://myanimelist.net/images/anime/8/77966l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tZiHgr0kd7E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ansatsu Kyoushitsu 2nd Season + - type: Synonym + title: Ansatsu Kyoushitsu Season 2 + - type: Synonym + title: Ansatsu Kyoushitsu Final Season + - type: Japanese + title: 暗殺教室 第2期 + - type: English + title: Assassination Classroom Second Season + - type: German + title: Assassination Classroom Staffel 2 + - type: Spanish + title: Assassination Classroom Temporada 2 + - type: French + title: Assassination Classroom Saison 2 + title: Ansatsu Kyoushitsu 2nd Season + title_english: Assassination Classroom Second Season + title_japanese: 暗殺教室 第2期 + title_synonyms: + - Ansatsu Kyoushitsu Season 2 + - Ansatsu Kyoushitsu Final Season + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: '2016-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: 1 + month: 7 + year: 2016 + string: Jan 8, 2016 to Jul 1, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.47 + scored_by: 973779 + rank: 175 + popularity: 85 + members: 1569038 + favorites: 17941 + synopsis: "Returning from their summer vacation, the students of Class 3-E at the prestigious Kunugigaoka Middle School\ + \ find themselves up against unbeatable odds. Faced with the possibility of world annihilation, the students must\ + \ come up with increasingly elaborate and creative ways to kill their teacher, the cunning yet optimistic and helpful\ + \ Koro-sensei.\n \nHowever, eliminating Koro-sensei is not the only objective the students need to worry about. Gakuhou\ + \ Asano, the academy's merciless and cruel principal, seeks to prevent Class 3-E's success by brainwashing his other\ + \ hard-working pupils into ruthlessly competitive studying machines. Hostility begins to linger in the air as traitors\ + \ and killers alike attempt to claim the bounty on Koro-sensei's head for themselves.\n \nNagisa Shiota, one of Class\ + \ 3-E's most skilled assassins, finds himself in the middle of the conflict. While he works to maintain his academic\ + \ standing and prevent the end of the world, domestic affairs jeopardize his place in Class 3-E. Together with his\ + \ dedicated classmates, he must now face the threats head-on.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2016 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31859 + url: https://myanimelist.net/anime/31859/Hai_to_Gensou_no_Grimgar + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/77976.jpg + small_image_url: https://myanimelist.net/images/anime/13/77976t.jpg + large_image_url: https://myanimelist.net/images/anime/13/77976l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/77976.webp + small_image_url: https://myanimelist.net/images/anime/13/77976t.webp + large_image_url: https://myanimelist.net/images/anime/13/77976l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ngLUKREIZMo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hai to Gensou no Grimgar + - type: Synonym + title: Grimgal of Ashes and Fantasies + - type: Synonym + title: Hai to Gensou no Grimgal + - type: Japanese + title: 灰と幻想のグリムガル + - type: English + title: 'Grimgar: Ashes and Illusions' + - type: German + title: Grimgar, Ashes and Illusions + - type: French + title: 'Grimgar: Le Monde des Cendres et de Fantaisie' + title: Hai to Gensou no Grimgar + title_english: 'Grimgar: Ashes and Illusions' + title_japanese: 灰と幻想のグリムガル + title_synonyms: + - Grimgal of Ashes and Fantasies + - Hai to Gensou no Grimgal + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-11T00:00:00+00:00' + to: '2016-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2016 + to: + day: 28 + month: 3 + year: 2016 + string: Jan 11, 2016 to Mar 28, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.66 + scored_by: 409755 + rank: 1586 + popularity: 281 + members: 807531 + favorites: 6892 + synopsis: "Fear, survival, instinct. Thrown into a foreign land with nothing but hazy memories and the knowledge of\ + \ their name, they can feel only these three emotions resonating deep within their souls. A group of strangers is\ + \ given no other choice than to accept the only paying job in this game-like world—the role of a soldier in the Reserve\ + \ Army—and eliminate anything that threatens the peace in their new world, Grimgar.\n\nWhen all of the stronger candidates\ + \ join together, those left behind must create a party together to survive: Manato, a charismatic leader and priest;\ + \ Haruhiro, a nervous thief; Yume, a cheerful hunter; Shihoru, a shy mage; Moguzo, a kind warrior; and Ranta, a rowdy\ + \ dark knight. Despite its resemblance to one, this is no game—there are no redos or respawns; it is kill or be killed.\ + \ \n\nIt is now up to this ragtag group of unlikely fighters to survive together in a world where life and death are\ + \ separated only by a fine line. \n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2016 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 3210 + type: anime + name: Verygoo + url: https://myanimelist.net/anime/producer/3210/Verygoo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 31580 + url: https://myanimelist.net/anime/31580/Ajin + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/77968.jpg + small_image_url: https://myanimelist.net/images/anime/13/77968t.jpg + large_image_url: https://myanimelist.net/images/anime/13/77968l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/77968.webp + small_image_url: https://myanimelist.net/images/anime/13/77968t.webp + large_image_url: https://myanimelist.net/images/anime/13/77968l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/V62kcgCXNJU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ajin + - type: Synonym + title: Ajin + - type: Japanese + title: 亜人 + - type: English + title: 'Ajin: Demi-Human' + - type: German + title: 'Ajin: Demi Human' + - type: Spanish + title: 'Ajin: Semi Humano' + - type: French + title: Ajin Demi-Human + title: Ajin + title_english: 'Ajin: Demi-Human' + title_japanese: 亜人 + title_synonyms: + - Ajin + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-01-16T00:00:00+00:00' + to: '2016-04-09T00:00:00+00:00' + prop: + from: + day: 16 + month: 1 + year: 2016 + to: + day: 9 + month: 4 + year: 2016 + string: Jan 16, 2016 to Apr 9, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.38 + scored_by: 312304 + rank: 2812 + popularity: 401 + members: 625284 + favorites: 3330 + synopsis: |- + Mysterious immortal humans known as "Ajin" first appeared 17 years ago in Africa. Upon their discovery, they were labeled as a threat to mankind, as they might use their powers for evil and were incapable of being destroyed. Since then, whenever an Ajin is found within society, they are to be arrested and taken into custody immediately. + + Studying hard to become a doctor, Kei Nagai is a high schooler who knows very little about Ajin, only having seen them appear in the news every now and then. Students are taught that these creatures are not considered to be human, but Kei doesn't pay much attention in class. As a result, his perilously little grasp on this subject proves to be completely irrelevant when he survives an accident that was supposed to claim his life, signaling his rebirth as an Ajin and the start of his days of torment. However, as he finds himself alone on the run from the entire world, Kei soon realizes that more of his species may be a lot closer than he thinks. + + [Written by MAL Rewrite] + background: Ajin is scheduled to be streamed by the multinational provider Netflix worldwide after the current run ends. + season: winter + year: 2016 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1023 + type: anime + name: Polygon Pictures + url: https://myanimelist.net/anime/producer/1023/Polygon_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31637 + url: https://myanimelist.net/anime/31637/Gate__Jieitai_Kanochi_nite_Kaku_Tatakaeri_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/77382.jpg + small_image_url: https://myanimelist.net/images/anime/8/77382t.jpg + large_image_url: https://myanimelist.net/images/anime/8/77382l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/77382.webp + small_image_url: https://myanimelist.net/images/anime/8/77382t.webp + large_image_url: https://myanimelist.net/images/anime/8/77382l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TrwXsOTWUeU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2' + - type: Synonym + title: 'Gate: Jieitai Kanochi nite' + - type: Synonym + title: Kaku Tatakaeri 2nd Season + - type: Synonym + title: 'Gate: Thus the JSDF Fought There! Fire Dragon Arc' + - type: Synonym + title: 'Gate: Jieitai Kanochi nite' + - type: Synonym + title: Kaku Tatakaeri - Enryuu-hen + - type: Japanese + title: GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール + - type: English + title: GATE Part 2 + - type: German + title: GATE Staffel 2 + - type: Spanish + title: GATE Temporada 2 + - type: French + title: 'Gate : Au-delà de la Porte' + title: 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri Part 2' + title_english: GATE Part 2 + title_japanese: GATE(ゲート)自衛隊 彼の地にて、斯く戦えり 第2クール + title_synonyms: + - 'Gate: Jieitai Kanochi nite' + - Kaku Tatakaeri 2nd Season + - 'Gate: Thus the JSDF Fought There! Fire Dragon Arc' + - 'Gate: Jieitai Kanochi nite' + - Kaku Tatakaeri - Enryuu-hen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-09T00:00:00+00:00' + to: '2016-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2016 + to: + day: 26 + month: 3 + year: 2016 + string: Jan 9, 2016 to Mar 26, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.71 + scored_by: 366719 + rank: 1427 + popularity: 413 + members: 605132 + favorites: 1963 + synopsis: "Several months have passed since the infamous Ginza Incident, with tensions between the Empire and JSDF escalating\ + \ in the vast and mysterious \"Special Region\" over peace negotiations. The greed and curiosity of the global powers\ + \ have also begun to grow, as reports about the technological limitations of the magical realm's archaic civilizations\ + \ come to light. \n\nMeanwhile, Lieutenant Youji Itami and his merry band of female admirers struggle to navigate\ + \ the complex political intrigue that plagues the Empire's court. Despite her best efforts, Princess Piña Co Lada\ + \ faces difficulties attempting to convince her father that the JSDF has no intention of conquering their kingdom.\ + \ Pressured from both sides of the Gate, Itami must consider even more drastic measures to fulfill his mission.\n\n\ + [Written by MAL Rewrite]" + background: 'The actual Japan Self Defense Force has used images from Gate: Jieitai Kanochi nite, Kaku Tatakaeri as + part of its recruiting efforts.' + season: winter + year: 2016 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 31442 + url: https://myanimelist.net/anime/31442/Musaigen_no_Phantom_World + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/78339.jpg + small_image_url: https://myanimelist.net/images/anime/4/78339t.jpg + large_image_url: https://myanimelist.net/images/anime/4/78339l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/78339.webp + small_image_url: https://myanimelist.net/images/anime/4/78339t.webp + large_image_url: https://myanimelist.net/images/anime/4/78339l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BQ-Mh5gMPwQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Musaigen no Phantom World + - type: Synonym + title: Musaigen no Phantom World + - type: Japanese + title: 無彩限のファントム・ワールド + - type: English + title: Myriad Colors Phantom World + - type: German + title: Myriad Colors Phantom World + - type: Spanish + title: Myriad Colors Phantom World + - type: French + title: Myriad Colors Phantom World + title: Musaigen no Phantom World + title_english: Myriad Colors Phantom World + title_japanese: 無彩限のファントム・ワールド + title_synonyms: + - Musaigen no Phantom World + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-01-07T00:00:00+00:00' + to: '2016-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2016 + to: + day: 31 + month: 3 + year: 2016 + string: Jan 7, 2016 to Mar 31, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.85 + scored_by: 257969 + rank: 5986 + popularity: 430 + members: 585762 + favorites: 1378 + synopsis: |- + Phantoms: supernatural entities such as ghosts or youkai that, until recently, were thought to be superstition. However, when a virus that infects the brain spreads throughout society, people's perception of the world changes as the mythical beings are revealed to have been living alongside humanity the entire time. This virus has also affected those of the next generation significantly, allowing them to develop special abilities that they can use to fight against dangerous phantoms. + + Haruhiko Ichijou and Mai Kawakami are two of those that were granted such power—Haruhiko wields the ability to summon and seal phantoms through drawings, while Mai imbues the power of the elements into martial arts. Together, along with the friendly phantom Ruru, they form Team E of Hosea Academy, which is dedicated to dealing with these often mischievous beings. In a world where the real and surreal intertwine, they handle the everyday troubles caused by phantoms. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 9260 + url: https://myanimelist.net/anime/9260/Kizumonogatari_I__Tekketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1783/112810.jpg + small_image_url: https://myanimelist.net/images/anime/1783/112810t.jpg + large_image_url: https://myanimelist.net/images/anime/1783/112810l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1783/112810.webp + small_image_url: https://myanimelist.net/images/anime/1783/112810t.webp + large_image_url: https://myanimelist.net/images/anime/1783/112810l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4lt0rT_nmvg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kizumonogatari I: Tekketsu-hen' + - type: Synonym + title: Koyomi Vamp + - type: Japanese + title: 傷物語〈Ⅰ鉄血篇〉 + - type: English + title: 'Kizumonogatari Part 1: Iron-Blooded' + - type: German + title: 'Kizumonogatari I: Blut und Eisen' + title: 'Kizumonogatari I: Tekketsu-hen' + title_english: 'Kizumonogatari Part 1: Iron-Blooded' + title_japanese: 傷物語〈Ⅰ鉄血篇〉 + title_synonyms: + - Koyomi Vamp + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: null + month: null + year: null + string: Jan 8, 2016 + duration: 1 hr 3 min + rating: R - 17+ (violence & profanity) + score: 8.36 + scored_by: 313202 + rank: 270 + popularity: 433 + members: 581566 + favorites: 3977 + synopsis: "During Koyomi Araragi's second year at Naoetsu Private High School, he has a chance encounter with Tsubasa\ + \ Hanekawa, the top honor student in his class. When they strike up a conversation, Hanekawa mentions a shocking rumor:\ + \ a vampire with beautiful blonde hair and freezing cold eyes has been seen lurking around town.\n\nHappy to have\ + \ made a new friend, Araragi writes off the rumor and goes about the rest of his evening in a carefree manner. However,\ + \ on his way home, he stumbles across splatters of blood leading down the stairs to the subway. His curiosity pushes\ + \ him to investigate further, so he follows the gruesome pools into the depths of the station. \n\nWhen he arrives\ + \ at the source of the blood, he is terrified by what he sees—the rumored blonde vampire herself, completely dismembered.\ + \ After she calls for his help, Araragi must make a decision, one which carries the potential to change his life forever.\n\ + \n[Written by MAL Rewrite]" + background: 'The Kizumonogatari movie trilogy adapts the third volume of NisiOisiN''s Monogatari Series: First Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 31636 + url: https://myanimelist.net/anime/31636/Dagashi_Kashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1538/95686.jpg + small_image_url: https://myanimelist.net/images/anime/1538/95686t.jpg + large_image_url: https://myanimelist.net/images/anime/1538/95686l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1538/95686.webp + small_image_url: https://myanimelist.net/images/anime/1538/95686t.webp + large_image_url: https://myanimelist.net/images/anime/1538/95686l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-U5O9GSI_Dk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dagashi Kashi + - type: Synonym + title: Dagashikashi + - type: Japanese + title: だがしかし + - type: English + title: Dagashi Kashi + title: Dagashi Kashi + title_english: Dagashi Kashi + title_japanese: だがしかし + title_synonyms: + - Dagashikashi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: '2016-04-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: 1 + month: 4 + year: 2016 + string: Jan 8, 2016 to Apr 1, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.6 + scored_by: 210729 + rank: 7520 + popularity: 536 + members: 489183 + favorites: 1039 + synopsis: |- + Out in the countryside stands a sweet shop run by the Shikada family for nine generations: Shikada Dagashi, a small business selling traditional Japanese candy. However, despite his father's pleas, Kokonotsu Shikada, an aspiring manga artist, adamantly refuses to inherit the family business. + + However, this may start to change with the arrival of the eccentric Hotaru Shidare. Hotaru is in search of Kokonotsu's father, with the goal of bringing him back to work for her family's company, Shidare Corporation, a world famous sweets manufacturer. Although the senior Shikada initially refuses, he states that he will change his mind on one condition: if Hotaru can convince Kokonotsu to take over the family shop. And so begins Hotaru's mission to enlighten the boy on the true joy of delicious and nostalgic dagashi! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Fridays + time: 02:16 + timezone: Asia/Tokyo + string: Fridays at 02:16 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 693 + type: anime + name: BS-TBS + url: https://myanimelist.net/anime/producer/693/BS-TBS + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30749 + url: https://myanimelist.net/anime/30749/Saijaku_Muhai_no_Bahamut + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/76664.jpg + small_image_url: https://myanimelist.net/images/anime/12/76664t.jpg + large_image_url: https://myanimelist.net/images/anime/12/76664l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/76664.webp + small_image_url: https://myanimelist.net/images/anime/12/76664t.webp + large_image_url: https://myanimelist.net/images/anime/12/76664l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LYTSjZL0rl4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saijaku Muhai no Bahamut + - type: Synonym + title: Saijaku Muhai no Bahamut + - type: Japanese + title: 最弱無敗の神装機竜《バハムート》 + - type: English + title: Undefeated Bahamut Chronicle + - type: German + title: Undefeated Bahamut Chronicle + - type: Spanish + title: Undefeated Bahamut Chronicle + - type: French + title: Undefeated Bahamut Chronicle + title: Saijaku Muhai no Bahamut + title_english: Undefeated Bahamut Chronicle + title_japanese: 最弱無敗の神装機竜《バハムート》 + title_synonyms: + - Saijaku Muhai no Bahamut + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-11T00:00:00+00:00' + to: '2016-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2016 + to: + day: 28 + month: 3 + year: 2016 + string: Jan 11, 2016 to Mar 28, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.52 + scored_by: 212057 + rank: 8059 + popularity: 622 + members: 430778 + favorites: 1109 + synopsis: |- + Lux, a former prince of an empire named Arcadia that was overthrown via a rebellion five years earlier, accidentally trespasses in a female dormitory's bathing area, sees the kingdom's new princess Lisesharte naked, incurring her wrath. Lisesharte then challenges Lux to a Drag-Ride duel. Drag-Rides are ancient armored mechanical weapons that have been excavated from ruins all around the world. Lux used to be called the strongest Drag-Knight, but now he's known as the "undefeated weakest" Drag-Knight because he will absolutely not attack in battle. After his duel with Lisesharte, Lux ends up attending the female-only academy that trains royals to be Drag-Knights. + + (Source: ANN) + background: Saijaku Muhai no Bahamut is the fourth project created to commemorate the 10th anniversary of the establishment + of the GA Bunko imprint, the production company responsible for launching the original source material. + season: winter + year: 2016 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 27833 + url: https://myanimelist.net/anime/27833/Durararax2_Ketsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/77838.jpg + small_image_url: https://myanimelist.net/images/anime/6/77838t.jpg + large_image_url: https://myanimelist.net/images/anime/6/77838l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/77838.webp + small_image_url: https://myanimelist.net/images/anime/6/77838t.webp + large_image_url: https://myanimelist.net/images/anime/6/77838l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S6WCHOxTfBM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Durarara!!x2 Ketsu + - type: Synonym + title: Durarara!!x2 Ketsu + - type: Japanese + title: デュラララ!!×2 結 + - type: English + title: Durarara!! x2 Ketsu + title: Durarara!!x2 Ketsu + title_english: Durarara!! x2 Ketsu + title_japanese: デュラララ!!×2 結 + title_synonyms: + - Durarara!!x2 Ketsu + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-09T00:00:00+00:00' + to: '2016-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2016 + to: + day: 26 + month: 3 + year: 2016 + string: Jan 9, 2016 to Mar 26, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.05 + scored_by: 197227 + rank: 667 + popularity: 675 + members: 402981 + favorites: 1092 + synopsis: |- + As Mikado Ryuugamine continues to purge the Dollars from within in accordance with his warped sense of justice, Masaomi Kida hopes to bring his friend back to his senses by bringing the Yellow Scarves together once more. Little do they know that a far more dominant force is about to enter their struggle for power, one that their friend Anri Sonohara is all too familiar with. + + Meanwhile, the group that has gathered at Shinra Kishitani's apartment realizes that they are on the brink of something life-changing, an event that will throw Ikebukuro into a spiral of confusion. Their anxiety is realized when reports of Celty's head being found in public start to appear all over the news as Kasane Kujiragi begins to make her move. + + Gone are the brief periods of tranquility as the current turmoil sets the stage for one final performance in this thrilling conclusion to the story of Ikebukuro's finest. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 31173 + url: https://myanimelist.net/anime/31173/Akagami_no_Shirayuki-hime_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/77834.jpg + small_image_url: https://myanimelist.net/images/anime/12/77834t.jpg + large_image_url: https://myanimelist.net/images/anime/12/77834l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/77834.webp + small_image_url: https://myanimelist.net/images/anime/12/77834t.webp + large_image_url: https://myanimelist.net/images/anime/12/77834l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yP9kzpaQF20?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akagami no Shirayuki-hime 2nd Season + - type: Synonym + title: Akagami no Shirayukihime 2nd Season + - type: Japanese + title: 赤髪の白雪姫 + - type: English + title: Snow White with the Red Hair 2 + title: Akagami no Shirayuki-hime 2nd Season + title_english: Snow White with the Red Hair 2 + title_japanese: 赤髪の白雪姫 + title_synonyms: + - Akagami no Shirayukihime 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-12T00:00:00+00:00' + to: '2016-03-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2016 + to: + day: 29 + month: 3 + year: 2016 + string: Jan 12, 2016 to Mar 29, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.97 + scored_by: 215836 + rank: 796 + popularity: 699 + members: 390007 + favorites: 1798 + synopsis: |- + Shirayuki and Zen Wistalia have finally confirmed their romantic feelings for each other, and everyone has resumed their daily lives. Shirayuki remains an apprentice court herbalist at the royal palace of Clarines, and Zen continues his duties alongside his aides. + + However, their daily routines are disrupted when Crown Prince Izana, Zen’s older brother, receives an invitation from Raji Shenazard, the prince of Tanbarun. The herbalist finds herself ordered to go to Tanbarun for seven days, to build a new friendship with the formerly selfish and haughty ruler who once ordered Shirayuki to become his concubine. Along the way, Shirayuki is bound to run into trouble once again, as she is sought by a mysterious boy named Kazuki, someone she has never met. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 28735 + url: https://myanimelist.net/anime/28735/Shouwa_Genroku_Rakugo_Shinjuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1354/124768.jpg + small_image_url: https://myanimelist.net/images/anime/1354/124768t.jpg + large_image_url: https://myanimelist.net/images/anime/1354/124768l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1354/124768.webp + small_image_url: https://myanimelist.net/images/anime/1354/124768t.webp + large_image_url: https://myanimelist.net/images/anime/1354/124768l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/79-t5S8-3Xg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shouwa Genroku Rakugo Shinjuu + - type: Synonym + title: Showa and Genroku Era Lover's Suicide Through Rakugo + - type: Japanese + title: 昭和元禄落語心中 + - type: English + title: Showa Genroku Rakugo Shinju + - type: French + title: Showa Genroku Rakugo Shinju + title: Shouwa Genroku Rakugo Shinjuu + title_english: Showa Genroku Rakugo Shinju + title_japanese: 昭和元禄落語心中 + title_synonyms: + - Showa and Genroku Era Lover's Suicide Through Rakugo + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-01-09T00:00:00+00:00' + to: '2016-04-02T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2016 + to: + day: 2 + month: 4 + year: 2016 + string: Jan 9, 2016 to Apr 2, 2016 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 8.55 + scored_by: 100057 + rank: 136 + popularity: 897 + members: 314951 + favorites: 6015 + synopsis: |- + Yotarou is a former yakuza member fresh out of prison and fixated on just one thing: rather than return to a life of crime, the young man aspires to take to the stage of rakugo, a traditional Japanese form of comedic storytelling. Inspired during his incarceration by the performance of distinguished practitioner Yakumo Yuurakutei, he sets his mind on meeting the man who changed his life. After hearing Yotarou's desperate appeal for his mentorship, Yakumo is left with no choice but to accept his very first apprentice. + + As he eagerly begins his training, Yotarou meets Konatsu, an abrasive young woman who has been under Yakumo's care ever since her beloved father Sukeroku Yuurakutei, another prolific rakugo performer, passed away. Through her hidden passion, Yotarou is drawn to Sukeroku's unique style of rakugo despite learning under contrasting techniques. Upon seeing this, old memories and feelings return to Yakumo who reminisces about a much earlier time when he made a promise with his greatest rival. + + Shouwa Genroku Rakugo Shinjuu is a story set in both the past and present, depicting the art of rakugo, the relationships it creates, and the lives and hearts of those dedicated to keeping the unique form of storytelling alive. + + [Written by MAL Rewrite] + background: Shouwa Genroku Rakugo Shinjuu covers the first five volumes of the manga. The original voice cast of the + OVA reprised their roles for the animated TV series. + season: winter + year: 2016 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 92 + type: anime + name: Starchild Records + url: https://myanimelist.net/anime/producer/92/Starchild_Records + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 31163 + url: https://myanimelist.net/anime/31163/Dimension_W + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/86304.jpg + small_image_url: https://myanimelist.net/images/anime/8/86304t.jpg + large_image_url: https://myanimelist.net/images/anime/8/86304l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/86304.webp + small_image_url: https://myanimelist.net/images/anime/8/86304t.webp + large_image_url: https://myanimelist.net/images/anime/8/86304l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Mgq7hcFxkXM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dimension W + - type: Japanese + title: Dimension W + - type: English + title: Dimension W + title: Dimension W + title_english: Dimension W + title_japanese: Dimension W + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-10T00:00:00+00:00' + to: '2016-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2016 + to: + day: 27 + month: 3 + year: 2016 + string: Jan 10, 2016 to Mar 27, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.18 + scored_by: 144857 + rank: 4067 + popularity: 904 + members: 312965 + favorites: 842 + synopsis: |- + In the near future, humans have discovered a fourth dimension, Dimension W, and a supposedly infinite source of energy within. In order to harness this profound new energy, mankind develops advanced "coils," devices that link to and use the power of Dimension W. However, by year 2071, the New Tesla Energy corporation has monopolized the energy industry with coils, soon leading to the illegal distribution of unofficial coils that begin flooding the markets. + + Kyouma Mabuchi is an ex-soldier who is wary of all coil-based technology to the extent that he still drives a gas-powered car. Kyouma is a "Collector," individuals with the sole duty of hunting down illegal coils in exchange for money. What started out as just any other mission is turned on its head when he bumps into Mira Yurizaki, an android with a connection to the "father" of coils. When a series of strange events begin to take place, these two unlikely allies band together to uncover the mysteries of Dimension W. + + [Written by MAL Rewrite] + background: Dimension W was first announced to be in production at Anime Expo 2015 in Los Angeles. Studio 3Hz is responsible + for animation production, while the studio Orange is responsible for CG production. North American distributor FUNimation + Entertainment is also a member of the production committee. + season: winter + year: 2016 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1605 + type: anime + name: I Will + url: https://myanimelist.net/anime/producer/1605/I_Will + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30346 + url: https://myanimelist.net/anime/30346/Doukyuusei + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/78606.jpg + small_image_url: https://myanimelist.net/images/anime/3/78606t.jpg + large_image_url: https://myanimelist.net/images/anime/3/78606l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/78606.webp + small_image_url: https://myanimelist.net/images/anime/3/78606t.webp + large_image_url: https://myanimelist.net/images/anime/3/78606l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9VZdzlavJyw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Doukyuusei + - type: Japanese + title: 同級生 + - type: English + title: 'Doukyusei: Classmates' + title: Doukyuusei + title_english: 'Doukyusei: Classmates' + title_japanese: 同級生 + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-02-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 2 + year: 2016 + to: + day: null + month: null + year: null + string: Feb 20, 2016 + duration: 1 hr + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 159118 + rank: 350 + popularity: 942 + members: 296994 + favorites: 6626 + synopsis: |- + Hikaru Kusakabe is a normal, carefree boy in a rock band who is always focused on the present. During the summer, his entire class is forced to participate in an upcoming chorus festival. By coincidence, he discovers his classmate Rihito Sajou—known for being an honor student with excellent grades—practicing his singing alone. Sajou just cannot seem to get their class' song right, and Kusakabe, delighted at seeing a new side of his straight-laced classmate, offers to help him prepare for the event. + + Although their lives and personalities are total opposites, they begin to grow closer as time progresses. But with the pressure of an unknown future, what will become of them and their growing relationship? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32268 + url: https://myanimelist.net/anime/32268/Koyomimonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/77744.jpg + small_image_url: https://myanimelist.net/images/anime/2/77744t.jpg + large_image_url: https://myanimelist.net/images/anime/2/77744l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/77744.webp + small_image_url: https://myanimelist.net/images/anime/2/77744t.webp + large_image_url: https://myanimelist.net/images/anime/2/77744l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koyomimonogatari + - type: Synonym + title: Calendar Story + - type: Japanese + title: 暦物語 + - type: English + title: Koyomimonogatari + title: Koyomimonogatari + title_english: Koyomimonogatari + title_japanese: 暦物語 + title_synonyms: + - Calendar Story + type: ONA + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-10T00:00:00+00:00' + to: '2016-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2016 + to: + day: 27 + month: 3 + year: 2016 + string: Jan 10, 2016 to Mar 27, 2016 + duration: 12 min per ep + rating: R - 17+ (violence & profanity) + score: 7.62 + scored_by: 148405 + rank: 1737 + popularity: 1040 + members: 271881 + favorites: 373 + synopsis: |- + Whether it is investigating stone shrines, tracking rumors, or simply playing hide and seek, Koyomi Araragi is always there to fulfill the requests of his friends from both the human and supernatural worlds. In this series of short stories, Koyomi helps each of the girls in his cohort solve a mystery or kill some time, all while slowly unraveling the truth about his town and its many supernatural occurrences. + + [Written by MAL Rewrite] + background: 'Koyomimonogatari adapts the second volume of NisiOisiN''s Monogatari Series: Final Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 31414 + url: https://myanimelist.net/anime/31414/Nijiiro_Days + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/76691.jpg + small_image_url: https://myanimelist.net/images/anime/8/76691t.jpg + large_image_url: https://myanimelist.net/images/anime/8/76691l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/76691.webp + small_image_url: https://myanimelist.net/images/anime/8/76691t.webp + large_image_url: https://myanimelist.net/images/anime/8/76691l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nWkFNSt9ZyY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nijiiro Days + - type: Synonym + title: Nijiiro Days + - type: Japanese + title: 虹色デイズ + - type: English + title: Rainbow Days + - type: French + title: Rainbow Days + title: Nijiiro Days + title_english: Rainbow Days + title_japanese: 虹色デイズ + title_synonyms: + - Nijiiro Days + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2016-01-10T00:00:00+00:00' + to: '2016-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2016 + to: + day: 26 + month: 6 + year: 2016 + string: Jan 10, 2016 to Jun 26, 2016 + duration: 13 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 103644 + rank: 3566 + popularity: 1152 + members: 246705 + favorites: 738 + synopsis: |- + Nijiiro Days follows the colorful lives and romantic relationships of four high school boys—Natsuki Hashiba, a dreamer with delusions of love; Tomoya Matsunaga, a narcissistic playboy who has multiple girlfriends; Keiichi Katakura, a kinky sadist who always carries a whip; and Tsuyoshi Naoe, an otaku who has a cosplaying girlfriend. + + When his girlfriend unceremoniously dumps him on Christmas Eve, Natsuki breaks down in tears in the middle of the street and is offered tissues by a girl in a Santa Claus suit. He instantly falls in love with this girl, Anna Kobayakawa, who fortunately attends the same school as him. Natsuki's pursuit of Anna should have been simple and uneventful; however, much to his dismay, his nosy friends constantly meddle in his relationship, as they strive to succeed in their own endeavors of love. + + [Written by MAL Rewrite] + background: The voice cast for the drama CD, that was released in 2014 alongside the seventh volume of the manga, have + also taken on the roles of the main characters in the anime adaptation. + season: winter + year: 2016 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 905 + type: anime + name: Tokuma Japan + url: https://myanimelist.net/anime/producer/905/Tokuma_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 196 + type: anime + name: Production Reed + url: https://myanimelist.net/anime/producer/196/Production_Reed + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 31553 + url: https://myanimelist.net/anime/31553/Charlotte__Tsuyoimono-tachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1709/98068.jpg + small_image_url: https://myanimelist.net/images/anime/1709/98068t.jpg + large_image_url: https://myanimelist.net/images/anime/1709/98068l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1709/98068.webp + small_image_url: https://myanimelist.net/images/anime/1709/98068t.webp + large_image_url: https://myanimelist.net/images/anime/1709/98068l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Charlotte: Tsuyoimono-tachi' + - type: Synonym + title: Charlotte Special + - type: Synonym + title: Strong People + - type: Japanese + title: Charlotte(シャーロット)特別篇 強い者たち + - type: English + title: 'Charlotte: The Strong Ones' + title: 'Charlotte: Tsuyoimono-tachi' + title_english: 'Charlotte: The Strong Ones' + title_japanese: Charlotte(シャーロット)特別篇 強い者たち + title_synonyms: + - Charlotte Special + - Strong People + type: Special + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-03-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 3 + year: 2016 + to: + day: null + month: null + year: null + string: Mar 30, 2016 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 116056 + rank: 2236 + popularity: 1345 + members: 208864 + favorites: 350 + synopsis: |- + Takehito Kumagami's clairvoyance leads his group of friends to another child with supernatural powers: Iori Sekiguchi, a mind reader. However, as they try to approach her, they realize her power makes her nearly impossible to pin down. Having been chosen by the club to handle this case, Nao Tomori and Yuu Otosaka must find a way to get around the child's unique ability before it is too late. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 32013 + url: https://myanimelist.net/anime/32013/Oshiete_Galko-chan + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/77845.jpg + small_image_url: https://myanimelist.net/images/anime/3/77845t.jpg + large_image_url: https://myanimelist.net/images/anime/3/77845l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/77845.webp + small_image_url: https://myanimelist.net/images/anime/3/77845t.webp + large_image_url: https://myanimelist.net/images/anime/3/77845l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3yd4-qFngmM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oshiete! Galko-chan + - type: Synonym + title: Oshiete! Gyaruko-chan + - type: Japanese + title: おしえて! ギャル子ちゃん + - type: English + title: Please tell me! Galko-chan + - type: German + title: Please tell me! Galko-chan + - type: Spanish + title: Please tell me! Galko-chan + - type: French + title: Please Tell Me! Galko-chan + title: Oshiete! Galko-chan + title_english: Please tell me! Galko-chan + title_japanese: おしえて! ギャル子ちゃん + title_synonyms: + - Oshiete! Gyaruko-chan + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: '2016-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: 25 + month: 3 + year: 2016 + string: Jan 8, 2016 to Mar 25, 2016 + duration: 7 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 81797 + rank: 5095 + popularity: 1466 + members: 189745 + favorites: 523 + synopsis: "At first glance, Galko, Otako, and Ojou are three high school girls who seem like they wouldn’t have anything\ + \ to do with each other. Galko is a social butterfly with a reputation for being a party animal, even though she is\ + \ actually innocent and good-hearted despite her appearance. Otako is a plain-looking girl with a sarcastic personality\ + \ and a rabid love of manga. And Ojou is a wealthy young lady with excellent social graces, though she can be a bit\ + \ absent-minded at times. Despite their differences, the three are best friends, and together they love to talk about\ + \ various myths and ask candid questions about the female body.\n \nOshiete! Galko-chan is a lighthearted and humorous\ + \ look at three very different girls and their frank conversations about themselves and everyday life. No topic is\ + \ too safe or too sensitive for them to joke about—even though every so often, Galko seems to get a bit embarrassed\ + \ by their discussions!\n\n[Written by MAL Rewrite]" + background: Oshiete! Galko-chan aired in the Ultra Super Anime Time programming block of Tokyo MX and BS11. + season: winter + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31559 + url: https://myanimelist.net/anime/31559/Prince_of_Stride__Alternative + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/77842.jpg + small_image_url: https://myanimelist.net/images/anime/6/77842t.jpg + large_image_url: https://myanimelist.net/images/anime/6/77842l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/77842.webp + small_image_url: https://myanimelist.net/images/anime/6/77842t.webp + large_image_url: https://myanimelist.net/images/anime/6/77842l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HqZIIe7tLNA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Prince of Stride: Alternative' + - type: Synonym + title: PuriSuto + - type: Japanese + title: プリンス・オブ・ストライド オルタナティブ + - type: English + title: 'Prince of Stride: Alternative' + title: 'Prince of Stride: Alternative' + title_english: 'Prince of Stride: Alternative' + title_japanese: プリンス・オブ・ストライド オルタナティブ + title_synonyms: + - PuriSuto + type: TV + source: Mixed media + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-05T00:00:00+00:00' + to: '2016-03-22T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2016 + to: + day: 22 + month: 3 + year: 2016 + string: Jan 5, 2016 to Mar 22, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.9 + scored_by: 82635 + rank: 5705 + popularity: 1523 + members: 182310 + favorites: 643 + synopsis: |- + "Stride"—an extreme sport that combines parkour, free running, relay, and sprinting—is what made first year high school student Nana Sakurai enroll in Honan Academy, after being captivated by the school's stride team. Sharing the mutual intention of joining the team is fellow first year and stride maniac, Takeru Fujiwara, and together they request to join. Much to their dismay, however, the stride club is no longer active due to lack of members, and they are now operating under the shogi club. + + In order to revive the stride club, Nana and Takeru recruit first year Riku Yagami—a fast runner who is interested in almost every sport. With this new team, the club now aims high at a new goal: to win the prestigious End of Summer competition, and bring the Honan stride team back to their prime. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31710 + url: https://myanimelist.net/anime/31710/Divine_Gate + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/77844.jpg + small_image_url: https://myanimelist.net/images/anime/5/77844t.jpg + large_image_url: https://myanimelist.net/images/anime/5/77844l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/77844.webp + small_image_url: https://myanimelist.net/images/anime/5/77844t.webp + large_image_url: https://myanimelist.net/images/anime/5/77844l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/u7gqmRyl7d0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Divine Gate + - type: Synonym + title: ディバゲ + - type: Japanese + title: ディバインゲート + - type: English + title: Divine Gate + title: Divine Gate + title_english: Divine Gate + title_japanese: ディバインゲート + title_synonyms: + - ディバゲ + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-08T00:00:00+00:00' + to: '2016-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2016 + to: + day: 25 + month: 3 + year: 2016 + string: Jan 8, 2016 to Mar 25, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.52 + scored_by: 74962 + rank: 13170 + popularity: 1580 + members: 174939 + favorites: 215 + synopsis: |- + The legend of the Divine Gate is a story told to young children that depicts the merging of the living world, the heavens, and the underworld. "Adapters"—people born with unique elemental abilities gifted to them from the union of these worlds—formed the World Council, an organization which controls the chaos of the Gate by portraying its legend as nothing more than a myth. These Adapters train in a special academy owned by the World Council that allows the students to hone their skills. + + Aoto, a teenage boy with exceptional water powers and a tragic past, rejects the offer to join the academy numerous times—until he is successfully pressured by the energetic wind user Midori and stubborn fire user Akane. Together, with the World Council and their mysterious leader Arthur, they seek out the Gate in the hopes of uncovering the truth. But in order to reach their goals, they must unite and overcome their own despair while dealing with behind the scene mischief. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32485 + url: https://myanimelist.net/anime/32485/Prison_School__Mad_Wax + images: + jpg: + image_url: https://myanimelist.net/images/anime/1216/122467.jpg + small_image_url: https://myanimelist.net/images/anime/1216/122467t.jpg + large_image_url: https://myanimelist.net/images/anime/1216/122467l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1216/122467.webp + small_image_url: https://myanimelist.net/images/anime/1216/122467t.webp + large_image_url: https://myanimelist.net/images/anime/1216/122467l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/V979_JMNYIg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Prison School: Mad Wax' + - type: Synonym + title: Prison School OVA + - type: Synonym + title: Kangoku Gakuen OVA + - type: Japanese + title: 監獄学園[プリズンスクール] マッドワックス + title: 'Prison School: Mad Wax' + title_english: null + title_japanese: 監獄学園[プリズンスクール] マッドワックス + title_synonyms: + - Prison School OVA + - Kangoku Gakuen OVA + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-03-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 3 + year: 2016 + to: + day: null + month: null + year: null + string: Mar 4, 2016 + duration: 25 min + rating: R+ - Mild Nudity + score: 7.35 + scored_by: 100549 + rank: 3006 + popularity: 1617 + members: 170542 + favorites: 133 + synopsis: "Hachimitsu Private Academy's five male students have been released from their oppressive prison captors,\ + \ allowing them to return to their ideal school lives surrounded by short-skirted girls.\n\nWith their freedom restored,\ + \ things could not be going better for the gang. Kiyoshi Fujino and Shingo Wakamoto have formed close bonds with their\ + \ female classmates; Reiji Andou is the center of attention due to his masochistic quirks; and even Takehito \"Gakuto\"\ + \ Morokuzu—notorious for defecating himself during class—befriends the klutzy yet like-minded Mitsuko Yokoyama. \n\ + \nHowever, in contrast to his fellow ex-convicts, Jouji \"Joe\" Nezu struggles to readjust to student life, and the\ + \ unlikely romantic success of his friend Gakuto pushes him to his wit's end. Feeling ostracized, he begins to wonder\ + \ if life was better behind bars.\n\n[Written by MAL Rewrite]" + background: 'Prison School: Mad Wax was bundled with the limited edition of the manga’s 20th volume.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 28391 + url: https://myanimelist.net/anime/28391/Ao_no_Kanata_no_Four_Rhythm + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/77839.jpg + small_image_url: https://myanimelist.net/images/anime/9/77839t.jpg + large_image_url: https://myanimelist.net/images/anime/9/77839l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/77839.webp + small_image_url: https://myanimelist.net/images/anime/9/77839t.webp + large_image_url: https://myanimelist.net/images/anime/9/77839l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WOy3WbcbNtQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao no Kanata no Four Rhythm + - type: Synonym + title: Aokana + - type: Japanese + title: 蒼の彼方のフォーリズム + - type: English + title: 'Aokana: Four Rhythm Across the Blue' + - type: German + title: 'Aokana: Four Rhythm Across the Blue' + - type: Spanish + title: 'Anokana: Four Rhythm Across The Blue' + - type: French + title: 'Aokana: Four Rhythm Across the Blue' + title: Ao no Kanata no Four Rhythm + title_english: 'Aokana: Four Rhythm Across the Blue' + title_japanese: 蒼の彼方のフォーリズム + title_synonyms: + - Aokana + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-12T00:00:00+00:00' + to: '2016-03-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2016 + to: + day: 29 + month: 3 + year: 2016 + string: Jan 12, 2016 to Mar 29, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 68380 + rank: 7162 + popularity: 1718 + members: 156147 + favorites: 531 + synopsis: |- + With the invention of anti-gravitational shoes known as Grav-Shoes, the ability to fly freely has become an everyday experience for the people inhabiting a four-island archipelago south of Japan. This invention has brought the people new ways of living and also a new sport known as "Flying Circus," where participants gain points by either touching floating buoys or their opponent's back. + + The gullible and clumsy Asuka Kurashina, newly transferred to Kunahama High School, enters this world of flight unknowingly when she is able to pull off a difficult maneuver the first time she participates in a Flying Circus match. Eventually, this leads her to join her school’s Flying Circus club. Led by their coach, Masaya Hinata, their members consist of the experienced Misaki Tobisawa and her overprotective friend, Mashiro Arisaka. Ao no Kanata no Four Rhythm follows this rookie group soaring high above the skies and toward their dreams, armed only with their unwavering passion against an uncertain future. + + [Written by MAL Rewrite] + background: Episode 1 was previewed at an event at Togeki Cinema in Tokyo on December 26, 2015. Regular broadcasting + began in January 12, 2016. + season: winter + year: 2016 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 276 + type: anime + name: DLE + url: https://myanimelist.net/anime/producer/276/DLE + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1495 + type: anime + name: Hobibox + url: https://myanimelist.net/anime/producer/1495/Hobibox + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32491 + url: https://myanimelist.net/anime/32491/Kanojo_to_Kanojo_no_Neko__Everything_Flows + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/79716.jpg + small_image_url: https://myanimelist.net/images/anime/9/79716t.jpg + large_image_url: https://myanimelist.net/images/anime/9/79716l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/79716.webp + small_image_url: https://myanimelist.net/images/anime/9/79716t.webp + large_image_url: https://myanimelist.net/images/anime/9/79716l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6Y3OtzPl50M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kanojo to Kanojo no Neko: Everything Flows' + - type: Japanese + title: 彼女と彼女の猫 -Everything Flows- + - type: English + title: 'She and Her Cat: Everything Flows' + - type: Spanish + title: 'She And Her Cat: Everything Flows' + - type: French + title: 'She And Her Cat: Everything Flows' + title: 'Kanojo to Kanojo no Neko: Everything Flows' + title_english: 'She and Her Cat: Everything Flows' + title_japanese: 彼女と彼女の猫 -Everything Flows- + title_synonyms: [] + type: TV + source: Original + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2016-03-04T00:00:00+00:00' + to: '2016-03-25T00:00:00+00:00' + prop: + from: + day: 4 + month: 3 + year: 2016 + to: + day: 25 + month: 3 + year: 2016 + string: Mar 4, 2016 to Mar 25, 2016 + duration: 7 min per ep + rating: G - All Ages + score: 7.67 + scored_by: 63028 + rank: 1554 + popularity: 1811 + members: 146444 + favorites: 727 + synopsis: |- + For the longest time, it's just been the two of them. "Kanojo" and her cat Daru are inseparable, having grown up together. Now a junior in college, Tomoka—her roommate of a year and a half—moves out of their shared apartment, and in order to keep her living space, Kanojo must find a job. Day by day, Daru watches her continued efforts from a cat's-eye view, eagerly awaiting his owner's return. When she gets back, once again, it's just she and her cat. + + Kanojo to Kanojo no Neko: Everything Flows is a charming short series about the bond between a pet and his owner. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2016 + broadcast: + day: Fridays + time: '23:17' + timezone: Asia/Tokyo + string: Fridays at 23:17 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 71 + type: anime + name: Pets + url: https://myanimelist.net/anime/genre/71/Pets + demographics: [] + - mal_id: 31914 + url: https://myanimelist.net/anime/31914/Shoujo-tachi_wa_Kouya_wo_Mezasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/77837.jpg + small_image_url: https://myanimelist.net/images/anime/4/77837t.jpg + large_image_url: https://myanimelist.net/images/anime/4/77837l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/77837.webp + small_image_url: https://myanimelist.net/images/anime/4/77837t.webp + large_image_url: https://myanimelist.net/images/anime/4/77837l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rblaPG33Hnk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shoujo-tachi wa Kouya wo Mezasu + - type: Synonym + title: The girls who aim for the wildlands + - type: Synonym + title: Girls beyond the youth KOYA + - type: Synonym + title: Shokomeza + - type: Japanese + title: 少女たちは荒野を目指す + - type: English + title: Girls Beyond the Wasteland + - type: German + title: Girls Beyond the Wasteland + - type: Spanish + title: Girls Beyond The Wasteland + - type: French + title: Girls Beyond the Wasteland + title: Shoujo-tachi wa Kouya wo Mezasu + title_english: Girls Beyond the Wasteland + title_japanese: 少女たちは荒野を目指す + title_synonyms: + - The girls who aim for the wildlands + - Girls beyond the youth KOYA + - Shokomeza + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-01-07T00:00:00+00:00' + to: '2016-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2016 + to: + day: 24 + month: 3 + year: 2016 + string: Jan 7, 2016 to Mar 24, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.33 + scored_by: 46491 + rank: 9210 + popularity: 2004 + members: 128802 + favorites: 178 + synopsis: "Shoujo-tachi wa Kouya wo Mezasu is a series all about finding oneself and a direction in life... no matter\ + \ how far off the beaten path it might be. \n\nBuntarou Hojo is a high school student who has a talent for writing,\ + \ but no real direction in life or any plans for the future. His classmate, Sayuki Kuroda notices his talent, decides\ + \ to help him find a way to use it properly by enlisting him in her bishoujo game development group.\n\nWhen Buntarou\ + \ is cornered in the men's bathroom at school by Sayuki, he is surprised when he is asked out on what he thinks is\ + \ a date, and even further surprised when he finds out that it's not a date, but a job interview. Reluctantly agreeing,\ + \ the two start recruiting other members for their team but will they learn more about game creation, or life itself\ + \ along the way?" + background: The visual novel was released on March 25, 2016 in Japan. It shares its cast with that of the anime. + season: winter + year: 2016 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1946 + type: anime + name: Hawkeye + url: https://myanimelist.net/anime/producer/1946/Hawkeye + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: [] + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/26-2016-spring.yaml b/test/fixtures/jikan/season_matrix/26-2016-spring.yaml new file mode 100644 index 0000000..902fa17 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/26-2016-spring.yaml @@ -0,0 +1,3495 @@ +metadata: + captured_at: '2026-05-11T11:33:30Z' + label: 2016-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2016/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:29 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:cd1f9b05eb7c879756d820e8163d12f002e1971a + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 279 + per_page: 25 + data: + - mal_id: 31964 + url: https://myanimelist.net/anime/31964/Boku_no_Hero_Academia + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/78745.jpg + small_image_url: https://myanimelist.net/images/anime/10/78745t.jpg + large_image_url: https://myanimelist.net/images/anime/10/78745l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/78745.webp + small_image_url: https://myanimelist.net/images/anime/10/78745t.webp + large_image_url: https://myanimelist.net/images/anime/10/78745l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/D5fYOnwYkj4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia + - type: German + title: My Hero Academia + - type: Spanish + title: My Hero Academia + - type: French + title: My Hero Academia + title: Boku no Hero Academia + title_english: My Hero Academia + title_japanese: 僕のヒーローアカデミア + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-04-03T00:00:00+00:00' + to: '2016-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2016 + to: + day: 26 + month: 6 + year: 2016 + string: Apr 3, 2016 to Jun 26, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.83 + scored_by: 2239539 + rank: 1098 + popularity: 6 + members: 3305516 + favorites: 55280 + synopsis: |- + The appearance of "quirks," newly discovered super powers, has been steadily increasing over the years, with 80 percent of humanity possessing various abilities from manipulation of elements to shapeshifting. This leaves the remainder of the world completely powerless, and Izuku Midoriya is one such individual. + + Since he was a child, the ambitious middle schooler has wanted nothing more than to be a hero. Izuku's unfair fate leaves him admiring heroes and taking notes on them whenever he can. But it seems that his persistence has borne some fruit: Izuku meets the number one hero and his personal idol, All Might. All Might's quirk is a unique ability that can be inherited, and he has chosen Izuku to be his successor! + + Enduring many months of grueling training, Izuku enrolls in UA High, a prestigious high school famous for its excellent hero training program, and this year's freshmen look especially promising. With his bizarre but talented classmates and the looming threat of a villainous organization, Izuku will soon learn what it really means to be a hero. + + [Written by MAL Rewrite] + background: Mangaka Kouhei Horikoshi has noted that American superhero comics are the inspiration for the series, and + has based character pages on logos for Marvel and DC comic characters. + season: spring + year: 2016 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31240 + url: https://myanimelist.net/anime/31240/Re_Zero_kara_Hajimeru_Isekai_Seikatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1522/128039.jpg + small_image_url: https://myanimelist.net/images/anime/1522/128039t.jpg + large_image_url: https://myanimelist.net/images/anime/1522/128039l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1522/128039.webp + small_image_url: https://myanimelist.net/images/anime/1522/128039t.webp + large_image_url: https://myanimelist.net/images/anime/1522/128039l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vFfXjuVA1Jk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu + - type: Synonym + title: 'Re: Life in a different world from zero' + - type: Synonym + title: ReZero + - type: Japanese + title: Re:ゼロから始める異世界生活 + - type: English + title: Re:ZERO -Starting Life in Another World- + - type: German + title: Re:ZERO -Starting Life in Another World- + - type: Spanish + title: Re:Zero -Empezar de cero en un mundo diferente- + - type: French + title: Re:Zero -Starting Life in Another World- + title: Re:Zero kara Hajimeru Isekai Seikatsu + title_english: Re:ZERO -Starting Life in Another World- + title_japanese: Re:ゼロから始める異世界生活 + title_synonyms: + - 'Re: Life in a different world from zero' + - ReZero + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2016-04-04T00:00:00+00:00' + to: '2016-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2016 + to: + day: 19 + month: 9 + year: 2016 + string: Apr 4, 2016 to Sep 19, 2016 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.25 + scored_by: 1568233 + rank: 385 + popularity: 23 + members: 2459197 + favorites: 76213 + synopsis: |- + When Subaru Natsuki leaves the convenience store, the last thing he expects is to be wrenched from his everyday life and dropped into a fantasy world. Things are not looking good for the bewildered teenager; however, not long after his arrival, he is attacked by some thugs. Armed with only a bag of groceries and a now useless cell phone, he is quickly beaten to a pulp. Fortunately, a mysterious beauty named Satella, in hot pursuit after the one who stole her insignia, happens upon Subaru and saves him. In order to thank the honest and kindhearted girl, Subaru offers to help in her search, and later that night, he even finds the whereabouts of that which she seeks. But unbeknownst to them, a much darker force stalks the pair from the shadows, and just minutes after locating the insignia, Subaru and Satella are brutally murdered. + + However, Subaru immediately reawakens to a familiar scene—confronted by the same group of thugs, meeting Satella all over again—the enigma deepens as history inexplicably repeats itself. + + [Written by MAL Rewrite] + background: 'Re:Zero kara Hajimeru Isekai Seikatsu adapts the first nine volumes of Tappei Nagatsuki''s light novel + series of the same title. An edited version of the series, titled Re:Zero kara Hajimeru Isekai Seikatsu: Shin Henshuu-ban + (Re: Zero -Starting Life In Another World- Director''s Cut), received a rebroadcast starting January 1, 2020. Twenty-five + episodes of the original series were combined into thirteen 49-minute long episodes with some scenes being slightly + extended. The last four minutes of episode 13 featured new scenes that were later included at the beginning of the + second season.' + season: spring + year: 2016 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 31478 + url: https://myanimelist.net/anime/31478/Bungou_Stray_Dogs + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/79409.jpg + small_image_url: https://myanimelist.net/images/anime/3/79409t.jpg + large_image_url: https://myanimelist.net/images/anime/3/79409l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/79409.webp + small_image_url: https://myanimelist.net/images/anime/3/79409t.webp + large_image_url: https://myanimelist.net/images/anime/3/79409l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GGsohezPRXU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bungou Stray Dogs + - type: Synonym + title: Literary Stray Dogs + - type: Synonym + title: BSD + - type: Japanese + title: 文豪ストレイドッグス + - type: English + title: Bungo Stray Dogs + - type: German + title: Bungo Stray Dogs + - type: Spanish + title: Bungo Stray Dogs + - type: French + title: Bungo Stray Dogs + title: Bungou Stray Dogs + title_english: Bungo Stray Dogs + title_japanese: 文豪ストレイドッグス + title_synonyms: + - Literary Stray Dogs + - BSD + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-07T00:00:00+00:00' + to: '2016-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2016 + to: + day: 23 + month: 6 + year: 2016 + string: Apr 7, 2016 to Jun 23, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.8 + scored_by: 789790 + rank: 1177 + popularity: 91 + members: 1553299 + favorites: 29151 + synopsis: |- + For weeks, Atsushi Nakajima's orphanage has been plagued by a mystical tiger that only he seems to be unaware of. Suspected to be behind the strange incidents, the 18-year-old is abruptly kicked out of the orphanage and left hungry, homeless, and wandering through the city. + + While starving on a riverbank, Atsushi saves a rather eccentric man named Osamu Dazai from drowning. Whimsical suicide enthusiast and supernatural detective, Dazai has been investigating the same tiger that has been terrorizing the boy. Together with Dazai's partner Doppo Kunikida, they solve the mystery, but its resolution leaves Atsushi in a tight spot. As various odd events take place, Atsushi is coerced into joining their firm of supernatural investigators, taking on unusual cases the police cannot handle, alongside his numerous enigmatic co-workers. + + [Written by MAL Rewrite] + background: This season adapts chapters 1 through 14 of the manga. + season: spring + year: 2016 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31933 + url: https://myanimelist.net/anime/31933/JoJo_no_Kimyou_na_Bouken_Part_4__Diamond_wa_Kudakenai + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/79156.jpg + small_image_url: https://myanimelist.net/images/anime/3/79156t.jpg + large_image_url: https://myanimelist.net/images/anime/3/79156l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/79156.webp + small_image_url: https://myanimelist.net/images/anime/3/79156t.webp + large_image_url: https://myanimelist.net/images/anime/3/79156l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gagUdy3AY14?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai' + - type: Synonym + title: 'JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai' + - type: Synonym + title: Diamond is not Crash + - type: Japanese + title: ジョジョの奇妙な冒険 ダイヤモンドは砕けない + - type: English + title: 'JoJo''s Bizarre Adventure: Diamond Is Unbreakable' + - type: Spanish + title: 'Jojo''s Bizarre Adventure: Diamond Is Unbreakable Temporada 3' + - type: French + title: 'JoJo''s Bizarre Adventure: Diamond is Unbreakable' + title: 'JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai' + title_english: 'JoJo''s Bizarre Adventure: Diamond Is Unbreakable' + title_japanese: ジョジョの奇妙な冒険 ダイヤモンドは砕けない + title_synonyms: + - 'JoJo no Kimyou na Bouken Part 4: Diamond wa Kudakenai' + - Diamond is not Crash + type: TV + source: Manga + episodes: 39 + status: Finished Airing + airing: false + aired: + from: '2016-04-02T00:00:00+00:00' + to: '2016-12-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2016 + to: + day: 24 + month: 12 + year: 2016 + string: Apr 2, 2016 to Dec 24, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.51 + scored_by: 879252 + rank: 158 + popularity: 129 + members: 1271693 + favorites: 43773 + synopsis: |- + The year is 1999. Morioh, a normally quiet and peaceful town, has recently become a hotbed of strange activity. Joutarou Kuujou, now a marine biologist, heads to the mysterious town to meet Jousuke Higashikata. While the two may seem like strangers at first, Jousuke is actually the illegitimate child of Joutarou's grandfather, Joseph Joestar. When they meet, Joutarou realizes that he may have more in common with Jousuke than just a blood relation. + + Along with the mild-mannered Kouichi Hirose and the boisterous Okuyasu Nijimura, the group dedicates themselves to investigating recent disappearances and other suspicious occurrences within Morioh. Aided by the power of Stands, the four men will encounter danger at every street corner, as it is up to them to unravel the town's secrets, before another occurs. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken: Diamond wa Kudakenai is a full adaptation of the fourth part of the JoJo no Kimyou + na Bouken manga series.' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 28623 + url: https://myanimelist.net/anime/28623/Koutetsujou_no_Kabaneri + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/79164.jpg + small_image_url: https://myanimelist.net/images/anime/12/79164t.jpg + large_image_url: https://myanimelist.net/images/anime/12/79164l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/79164.webp + small_image_url: https://myanimelist.net/images/anime/12/79164t.webp + large_image_url: https://myanimelist.net/images/anime/12/79164l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NljBw9RtOx4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koutetsujou no Kabaneri + - type: Japanese + title: 甲鉄城のカバネリ + - type: English + title: Kabaneri of the Iron Fortress + - type: German + title: Kabaneri of the Iron Fortress + - type: Spanish + title: 'Kabaneri de la Fortaleza de Hierro: La Batalla de Unato' + - type: French + title: Kabaneri of the Iron Fortress + title: Koutetsujou no Kabaneri + title_english: Kabaneri of the Iron Fortress + title_japanese: 甲鉄城のカバネリ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-08T00:00:00+00:00' + to: '2016-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2016 + to: + day: 1 + month: 7 + year: 2016 + string: Apr 8, 2016 to Jul 1, 2016 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.29 + scored_by: 461131 + rank: 3346 + popularity: 241 + members: 884840 + favorites: 3937 + synopsis: |- + The world is in the midst of the industrial revolution when horrific creatures emerge from a mysterious virus, ripping through the flesh of humans to sate their never-ending appetite. The only way to kill these beings, known as "Kabane," is by destroying their steel-coated hearts. However, if bitten by one of these monsters, the victim is doomed to a fate worse than death, as the fallen rise once more to join the ranks of their fellow undead. + + Only the most fortified of civilizations have survived this turmoil, as is the case with the island of Hinomoto, where mankind has created a massive wall to protect themselves from the endless hordes of Kabane. The only way into these giant fortresses is via heavily-armored trains, which are serviced and built by young men such as Ikoma. Having created a deadly weapon that he believes will easily pierce through the hearts of Kabane, Ikoma eagerly awaits the day when he will be able to fight using his new invention. Little does he know, however, that his chance will come much sooner than he expected... + + [Written by MAL Rewrite] + background: The series won the 2016 Newtype Anime Awards for Best TV Anime. + season: spring + year: 2016 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 32542 + url: https://myanimelist.net/anime/32542/Sakamoto_desu_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/79468.jpg + small_image_url: https://myanimelist.net/images/anime/4/79468t.jpg + large_image_url: https://myanimelist.net/images/anime/4/79468l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/79468.webp + small_image_url: https://myanimelist.net/images/anime/4/79468t.webp + large_image_url: https://myanimelist.net/images/anime/4/79468l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xpgApmZi7dg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakamoto desu ga? + - type: Synonym + title: Sakamoto desu ga? + - type: Japanese + title: 坂本ですが? + - type: English + title: Haven't You Heard? I'm Sakamoto + - type: German + title: Haven’t You Heard? I’m Sakamoto + - type: Spanish + title: Haven't You Heard? I'm Sakamoto (Sakamoto desu ga?) + - type: French + title: Haven’t You Heard? I’m Sakamoto + title: Sakamoto desu ga? + title_english: Haven't You Heard? I'm Sakamoto + title_japanese: 坂本ですが? + title_synonyms: + - Sakamoto desu ga? + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-08T00:00:00+00:00' + to: '2016-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2016 + to: + day: 1 + month: 7 + year: 2016 + string: Apr 8, 2016 to Jul 1, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.54 + scored_by: 415308 + rank: 2076 + popularity: 269 + members: 830647 + favorites: 2833 + synopsis: |- + Sophisticated, suave, sublime; all words which describe the exceedingly handsome and patently perfect Sakamoto. Though it is only his first day in high school, his attractiveness, intelligence, and charm already has the girls swooning and the guys fuming with jealousy. No one seems able to derail him, as all attempts at tripping him up are quickly foiled. His sangfroid is indomitable, his wits peerless. Will any of Sakamoto's classmates, or even teachers, be able to reach his level of excellence? Probably not, but they just might learn a thing or two trying... + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Fridays + time: 02:28 + timezone: Asia/Tokyo + string: Fridays at 02:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1215 + type: anime + name: Daiichikosho + url: https://myanimelist.net/anime/producer/1215/Daiichikosho + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31798 + url: https://myanimelist.net/anime/31798/Kiznaiver + images: + jpg: + image_url: https://myanimelist.net/images/anime/1085/147246.jpg + small_image_url: https://myanimelist.net/images/anime/1085/147246t.jpg + large_image_url: https://myanimelist.net/images/anime/1085/147246l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1085/147246.webp + small_image_url: https://myanimelist.net/images/anime/1085/147246t.webp + large_image_url: https://myanimelist.net/images/anime/1085/147246l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/x8M8LIcLtoo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kiznaiver + - type: Japanese + title: キズナイーバー + - type: English + title: Kiznaiver + - type: German + title: Kizunaiver + title: Kiznaiver + title_english: Kiznaiver + title_japanese: キズナイーバー + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-09T00:00:00+00:00' + to: '2016-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2016 + to: + day: 25 + month: 6 + year: 2016 + string: Apr 9, 2016 to Jun 25, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 381878 + rank: 2877 + popularity: 285 + members: 799271 + favorites: 5270 + synopsis: |- + Katsuhira Agata is a quiet and reserved teenage boy whose sense of pain has all but vanished. His friend, Chidori Takashiro, can only faintly remember the days before Katsuhira had undergone this profound change. Now, his muffled and complacent demeanor make Katsuhira a constant target for bullies, who exploit him for egregious sums of money. But their fists only just manage to make him blink, as even emotions are far from his grasp. + + However, one day Katsuhira, Chidori, and four other teenagers are abducted and forced to join the Kizuna System as official "Kiznaivers." Those taking part are connected through pain: if one member is injured, the others will feel an equal amount of agony. These individuals must become the lab rats and scapegoats of an incomplete system designed with world peace in mind. With their fates literally intertwined, the Kiznaivers must expose their true selves to each other, or risk failing much more than just the Kizuna System. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 31404 + url: https://myanimelist.net/anime/31404/Netoge_no_Yome_wa_Onnanoko_ja_Nai_to_Omotta + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/79414.jpg + small_image_url: https://myanimelist.net/images/anime/3/79414t.jpg + large_image_url: https://myanimelist.net/images/anime/3/79414l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/79414.webp + small_image_url: https://myanimelist.net/images/anime/3/79414t.webp + large_image_url: https://myanimelist.net/images/anime/3/79414l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_iMzdyYRPrk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Netoge no Yome wa Onnanoko ja Nai to Omotta? + - type: Synonym + title: Net Game no Yome wa Onna no Ko ja Nai to Omotta? + - type: Synonym + title: NetoYome + - type: Japanese + title: ネトゲの嫁は女の子じゃないと思った? + - type: English + title: And you thought there is never a girl online? + - type: German + title: And you thought there is never a girl online? + - type: Spanish + title: And You Thought There is Never a Girl Online? + - type: French + title: And You Thought There is Never a Girl Online? + title: Netoge no Yome wa Onnanoko ja Nai to Omotta? + title_english: And you thought there is never a girl online? + title_japanese: ネトゲの嫁は女の子じゃないと思った? + title_synonyms: + - Net Game no Yome wa Onna no Ko ja Nai to Omotta? + - NetoYome + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-07T00:00:00+00:00' + to: '2016-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2016 + to: + day: 23 + month: 6 + year: 2016 + string: Apr 7, 2016 to Jun 23, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 308917 + rank: 7191 + popularity: 417 + members: 599733 + favorites: 1300 + synopsis: |- + After mustering up the courage to propose to a girl in an online game, naive otaku Hideki "Rusian" Nishimura is devastated when she flat-out rejects him. To make matters worse, the girl reveals that she is actually an older man in real life. With his dreams crushed and his heart broken, Rusian comes to an abrupt decision in the midst of his raging fit: he will never trust another girl in an online game again. + + Years later, Rusian is now in a guild with three other players, one of whom possesses a female avatar by the name of Ako. Ako is deeply in love with Rusian and wants to marry him. Although he entertains the possibility that she might be a guy, Rusian accepts her proposal, claiming that her gender does not matter as long as she is cute in-game. However, after a discussion between the guild members that led to all of them having an offline meeting, Rusian finds out that Ako, along with the other members, is not just a girl but also his schoolmate. + + [Written by MAL Rewrite] + background: Netoge no Yome wa Onnanoko ja Nai to Omotta? adapts the first 4 novels of Shibai Kineko's light novel series + of the same title. + season: spring + year: 2016 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1631 + type: anime + name: Radio Osaka + url: https://myanimelist.net/anime/producer/1631/Radio_Osaka + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 32105 + url: https://myanimelist.net/anime/32105/Sousei_no_Onmyouji + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/79556.jpg + small_image_url: https://myanimelist.net/images/anime/12/79556t.jpg + large_image_url: https://myanimelist.net/images/anime/12/79556l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/79556.webp + small_image_url: https://myanimelist.net/images/anime/12/79556t.webp + large_image_url: https://myanimelist.net/images/anime/12/79556l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6_dDnFYGXBE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sousei no Onmyouji + - type: Japanese + title: 双星の陰陽師 + - type: English + title: Twin Star Exorcists + - type: German + title: Twin Star Exorcists + - type: Spanish + title: Twin Star Exorcists + - type: French + title: Twin Star Exorcists + title: Sousei no Onmyouji + title_english: Twin Star Exorcists + title_japanese: 双星の陰陽師 + title_synonyms: [] + type: TV + source: Manga + episodes: 50 + status: Finished Airing + airing: false + aired: + from: '2016-04-06T00:00:00+00:00' + to: '2017-03-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2016 + to: + day: 29 + month: 3 + year: 2017 + string: Apr 6, 2016 to Mar 29, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.29 + scored_by: 229349 + rank: 3366 + popularity: 456 + members: 553685 + favorites: 3147 + synopsis: |- + Magano, a parallel realm filled with monsters known as "Kegare," is a place where exorcists deal with all impurities. Benio Adashino is a prodigy exorcist who is recognized for her strength and is summoned to Tokyo by the Exorcist Union. On her way, she plummets into the arms of Rokuro Enmadou, a young exorcist with a troubled past. + + But the impurities of Magano do not rest. When these two exorcists witness a couple of children stolen by a Kegare, Benio rushes to save them, dragging Rokuro along with her into Magano. Engaged in a fight she is on the verge of being defeated in, Benio is saved by Rokuro, revealing himself capable of being her rival in talent. + + Sousei no Onmyouji tells the story of two talented exorcists who are destined to become the "Twin Star Exorcists" and the prophesised parents of the Miko—the reincarnation of Abe no Seimei—who will cleanse the world of all impurities. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Wednesdays + time: '18:25' + timezone: Asia/Tokyo + string: Wednesdays at 18:25 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 717 + type: anime + name: TV Tokyo Music + url: https://myanimelist.net/anime/producer/717/TV_Tokyo_Music + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31741 + url: https://myanimelist.net/anime/31741/Magi__Sinbad_no_Bouken_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/78783.jpg + small_image_url: https://myanimelist.net/images/anime/10/78783t.jpg + large_image_url: https://myanimelist.net/images/anime/10/78783l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/78783.webp + small_image_url: https://myanimelist.net/images/anime/10/78783t.webp + large_image_url: https://myanimelist.net/images/anime/10/78783l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8hA3IVLHMU0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Magi: Sinbad no Bouken (TV)' + - type: Japanese + title: マギ シンドバッドの冒険 + - type: English + title: 'Magi: Adventure of Sinbad' + title: 'Magi: Sinbad no Bouken (TV)' + title_english: 'Magi: Adventure of Sinbad' + title_japanese: マギ シンドバッドの冒険 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-04-16T00:00:00+00:00' + to: '2016-07-02T00:00:00+00:00' + prop: + from: + day: 16 + month: 4 + year: 2016 + to: + day: 2 + month: 7 + year: 2016 + string: Apr 16, 2016 to Jul 2, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 275361 + rank: 1082 + popularity: 494 + members: 518381 + favorites: 1613 + synopsis: |- + In the small, impoverished Tison Village of the Parthevia Empire, a boy, Sinbad, is born to the jaded ex-soldier Badr and his kind-hearted wife Esra. His birth creates a radiant surge throughout the rukh, a declaration of a singularity to those who stand at the pinnacle of magical might: the "Child of Destiny" is here. Despite his country being plagued by economic instability and the repercussions of war, Sinbad leads a cheerful life—until a stranger's arrival shatters his peaceful world, and tragedy soon befalls him. + + Years later, mysterious edifices called "dungeons" have been erected all over the world. Rumored to contain great power and treasures, these dungeons piqued the interest of adventurers and armies alike; though to this day, none have returned therefrom. Sinbad, now 14, has grown into a charming and talented young boy. Inspired by the shocking events of his childhood and by his father's words, he yearns to begin exploring the world beyond his village. As though orchestrated by fate, Sinbad meets an enigmatic traveler named Yunan. Stirred by Sinbad's story and ambitions, Yunan directs him to a dungeon which he claims holds the power Sinbad needs to achieve his goals—the "power of a king." + + Magi: Sinbad no Bouken tells the epic saga of Sinbad's early life as he travels the world, honing his skill and influence, while gathering allies and power to become the High King of the Seven Seas. + + [Written by MAL Rewrite] + background: Episodes 2 through 6 of the television series are renamed versions of the OVAs. Episodes 1 and 7 through + 13 will be new animation not featured in the previous OVAs. + season: spring + year: 2016 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: [] + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32093 + url: https://myanimelist.net/anime/32093/Tanaka-kun_wa_Itsumo_Kedaruge + images: + jpg: + image_url: https://myanimelist.net/images/anime/1189/111994.jpg + small_image_url: https://myanimelist.net/images/anime/1189/111994t.jpg + large_image_url: https://myanimelist.net/images/anime/1189/111994l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1189/111994.webp + small_image_url: https://myanimelist.net/images/anime/1189/111994t.webp + large_image_url: https://myanimelist.net/images/anime/1189/111994l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/r0U83wtmk28?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tanaka-kun wa Itsumo Kedaruge + - type: Japanese + title: 田中くんはいつもけだるげ + - type: English + title: Tanaka-kun is Always Listless + - type: German + title: Tanaka-kun is Always Listless + - type: French + title: Tanaka-kun is Always Listless + title: Tanaka-kun wa Itsumo Kedaruge + title_english: Tanaka-kun is Always Listless + title_japanese: 田中くんはいつもけだるげ + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-09T00:00:00+00:00' + to: '2016-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2016 + to: + day: 25 + month: 6 + year: 2016 + string: Apr 9, 2016 to Jun 25, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 238117 + rank: 1192 + popularity: 498 + members: 514142 + favorites: 4420 + synopsis: |- + For high school student Tanaka, the act of being listless is a way of life. Known for his inattentiveness and ability to fall asleep anywhere, Tanaka prays that each day will be as uneventful as the last, seeking to preserve his lazy lifestyle however he can by avoiding situations that require him to exert himself. Along with his dependable friend Oota who helps him with tasks he is unable to accomplish, the lethargic teenager constantly deals with events that prevent him from experiencing the quiet and peaceful days he longs for. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 795 + type: anime + name: Yahoo! Japan + url: https://myanimelist.net/anime/producer/795/Yahoo_Japan + - mal_id: 1254 + type: anime + name: Grooove + url: https://myanimelist.net/anime/producer/1254/Grooove + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31737 + url: https://myanimelist.net/anime/31737/Gakusen_Toshi_Asterisk_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/79107.jpg + small_image_url: https://myanimelist.net/images/anime/11/79107t.jpg + large_image_url: https://myanimelist.net/images/anime/11/79107l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/79107.webp + small_image_url: https://myanimelist.net/images/anime/11/79107t.webp + large_image_url: https://myanimelist.net/images/anime/11/79107l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/28pD4wkg5vM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gakusen Toshi Asterisk 2nd Season + - type: Synonym + title: Academy Battle City Asterisk + - type: Japanese + title: 学戦都市アスタリスク + - type: English + title: The Asterisk War Season 2 + - type: German + title: The Asterisk War 2nd Staffel + - type: Spanish + title: The Asterisk War Temporada 2 + - type: French + title: The Asterisk War 2nd Saison + title: Gakusen Toshi Asterisk 2nd Season + title_english: The Asterisk War Season 2 + title_japanese: 学戦都市アスタリスク + title_synonyms: + - Academy Battle City Asterisk + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-02T00:00:00+00:00' + to: '2016-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2016 + to: + day: 18 + month: 6 + year: 2016 + string: Apr 2, 2016 to Jun 18, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.98 + scored_by: 268771 + rank: 5221 + popularity: 565 + members: 464232 + favorites: 788 + synopsis: |- + Gakusen Toshi Asterisk 2nd Season continues the story of Genestella students Ayato Amagiri and Julis-Alexia von Riessfeld, who have progressed to the next round of the Phoenix Festa after a long and strenuous battle with sisters Irene and Priscilla Urzaiz. + + Despite Julis and Ayato's best attempts, the fact that Ayato's powers have been sealed is no longer a secret. Now at a major disadvantage, the duo must come up with a plan if they are to have any hope of winning the Phoenix Festa. Only one thing is for sure: the troubles heading their way are only going to get more insurmountable from here on. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 32380 + url: https://myanimelist.net/anime/32380/Kono_Subarashii_Sekai_ni_Shukufuku_wo__Kono_Subarashii_Choker_ni_Shukufuku_wo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1649/98516.jpg + small_image_url: https://myanimelist.net/images/anime/1649/98516t.jpg + large_image_url: https://myanimelist.net/images/anime/1649/98516l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1649/98516.webp + small_image_url: https://myanimelist.net/images/anime/1649/98516t.webp + large_image_url: https://myanimelist.net/images/anime/1649/98516l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m4FOQ5NzodA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!' + - type: Synonym + title: KonoSuba OVA + - type: Synonym + title: A Blessing to this Wonderful Choker! + - type: Japanese + title: この素晴らしい世界に祝福を! 第11話 この素晴らしいチヨーカーに祝福を! + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! - God''s Blessing on This Wonderful Choker!' + title: 'Kono Subarashii Sekai ni Shukufuku wo!: Kono Subarashii Choker ni Shukufuku wo!' + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! - God''s Blessing on This Wonderful Choker!' + title_japanese: この素晴らしい世界に祝福を! 第11話 この素晴らしいチヨーカーに祝福を! + title_synonyms: + - KonoSuba OVA + - A Blessing to this Wonderful Choker! + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-06-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 6 + year: 2016 + to: + day: null + month: null + year: null + string: Jun 24, 2016 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.83 + scored_by: 283980 + rank: 1106 + popularity: 599 + members: 444883 + favorites: 695 + synopsis: |- + While exploring Wiz's magic shop with his party, Kazuma Satou finds a magical wish-granting choker and decides to try it on. Only then does Wiz tell him that the choker strangles its wearer to death in four days unless their desires are fulfilled. This wouldn't be a problem if Kazuma knew what his wish was. Fearing for Kazuma's life, Aqua, Megumin, and Lalatina Ford "Darkness" Dustiness all agree to do his bidding in order to satisfy his desires and hopefully grant his wish, no matter what he asks for. + + [Written by MAL Rewrite] + background: Bundled with the 9th volume of the light novel. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 31338 + url: https://myanimelist.net/anime/31338/Hundred + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/78858.jpg + small_image_url: https://myanimelist.net/images/anime/3/78858t.jpg + large_image_url: https://myanimelist.net/images/anime/3/78858l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/78858.webp + small_image_url: https://myanimelist.net/images/anime/3/78858t.webp + large_image_url: https://myanimelist.net/images/anime/3/78858l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6I_qEn6yYoo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hundred + - type: Japanese + title: ハンドレッド + - type: English + title: Hundred + title: Hundred + title_english: Hundred + title_japanese: ハンドレッド + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-05T00:00:00+00:00' + to: '2016-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2016 + to: + day: 21 + month: 6 + year: 2016 + string: Apr 5, 2016 to Jun 21, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.31 + scored_by: 203223 + rank: 9300 + popularity: 677 + members: 399052 + favorites: 703 + synopsis: |- + When an extraterrestrial organism known as "Savage" attacks mankind, the only technology capable of combating the enemy is a weapon known as “Hundred.” A survivor of a Savage attack, Hayato Kisaragi is a teenager boasting the highest compatibility level with the aforementioned technology and as a result, is invited to master his skills at Little Garden, a prestigious military academy aboard a battleship. + + Over the course of his intense training for the battle ahead, he immediately attracts the interest of multiple female peers and gets drawn into a number of incidents as he tries to fight against the creatures that now inhabit Earth and threaten its safety. + + [Written by MAL Rewrite] + background: Hundred adapts the first four novels of Jun Misaki's light novel series of the same title. + season: spring + year: 2016 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1469 + type: anime + name: BS TV Tokyo + url: https://myanimelist.net/anime/producer/1469/BS_TV_Tokyo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31376 + url: https://myanimelist.net/anime/31376/Flying_Witch + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/80039.jpg + small_image_url: https://myanimelist.net/images/anime/6/80039t.jpg + large_image_url: https://myanimelist.net/images/anime/6/80039l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/80039.webp + small_image_url: https://myanimelist.net/images/anime/6/80039t.webp + large_image_url: https://myanimelist.net/images/anime/6/80039l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hnlVcyUvUD8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Flying Witch + - type: Japanese + title: ふらいんぐうぃっち + - type: English + title: Flying Witch + title: Flying Witch + title_english: Flying Witch + title_japanese: ふらいんぐうぃっち + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-10T00:00:00+00:00' + to: '2016-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2016 + to: + day: 26 + month: 6 + year: 2016 + string: Apr 10, 2016 to Jun 26, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 113921 + rank: 2241 + popularity: 978 + members: 287792 + favorites: 1402 + synopsis: "In the witches' tradition, when a practitioner turns 15, they must become independent and leave their home\ + \ to study witchcraft. Makoto Kowata is one such apprentice witch who leaves her parents' home in Yokohama in pursuit\ + \ of knowledge and training. Along with her companion Chito, a black cat familiar, they embark on a journey to Aomori,\ + \ a region favored by witches due to its abundance of nature and affinity with magic. They begin their new life by\ + \ living with Makoto's second cousins, Kei Kuramoto and his little sister Chinatsu.\n\nWhile Makoto may seem to be\ + \ attending high school like any other teenager, her whimsical and eccentric involvement with witchcraft sets her\ + \ apart from others her age. From her encounter with an anthropomorphic dog fortune teller to the peculiar magic training\ + \ she receives from her older sister Akane, Makoto's peaceful everyday life is filled with the idiosyncrasies of witchcraft\ + \ that she shares with her friends and family.\n \n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2016 + broadcast: + day: Sundays + time: 02:25 + timezone: Asia/Tokyo + string: Sundays at 02:25 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1417 + type: anime + name: RAB Aomori Broadcasting + url: https://myanimelist.net/anime/producer/1417/RAB_Aomori_Broadcasting + - mal_id: 1418 + type: anime + name: Nippon Television Music + url: https://myanimelist.net/anime/producer/1418/Nippon_Television_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31245 + url: https://myanimelist.net/anime/31245/Zutto_Mae_kara_Suki_deshita_Kokuhaku_Jikkou_Iinkai + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/82121.jpg + small_image_url: https://myanimelist.net/images/anime/3/82121t.jpg + large_image_url: https://myanimelist.net/images/anime/3/82121l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/82121.webp + small_image_url: https://myanimelist.net/images/anime/3/82121t.webp + large_image_url: https://myanimelist.net/images/anime/3/82121l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EQbOQJx2ZWE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zutto Mae kara Suki deshita. Kokuhaku Jikkou Iinkai + - type: Synonym + title: 'HoneyWorks: I''ve Liked You Since Long Ago' + - type: Synonym + title: 'I''ve liked you for a long time.: Confession Committee' + - type: Synonym + title: 'I''ve had feelings for you since a long time ago.: Executive Confession Committee' + - type: Japanese + title: ずっと前から好きでした。~告白実行委員会~ + - type: English + title: I've Always Liked You + - type: German + title: I've Always Liked You + - type: Spanish + title: I've Always Liked You + - type: French + title: I've Always Liked You + title: Zutto Mae kara Suki deshita. Kokuhaku Jikkou Iinkai + title_english: I've Always Liked You + title_japanese: ずっと前から好きでした。~告白実行委員会~ + title_synonyms: + - 'HoneyWorks: I''ve Liked You Since Long Ago' + - 'I''ve liked you for a long time.: Confession Committee' + - 'I''ve had feelings for you since a long time ago.: Executive Confession Committee' + type: Movie + source: Music + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-04-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 4 + year: 2016 + to: + day: null + month: null + year: null + string: Apr 23, 2016 + duration: 1 hr 4 min + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 105703 + rank: 3997 + popularity: 1110 + members: 254073 + favorites: 685 + synopsis: |- + Love is blooming at Sakuragaoka High School. Natsuki Enomoto has finally mustered the courage to confess to her childhood friend, Yuu Setoguchi. However, in the final moments of her confession, an embarrassed Natsuki passes it off as a "practice confession." Oblivious to her true feelings and struggling with his own, Yuu promises to support Natsuki in her quest for love. While Natsuki deals with her failed confession, fellow classmate Koyuki Ayase struggles with his own feelings for Natsuki. Despite his timidness, he is determined to win over her heart. + + Zutto Mae Kara Suki deshita.: Kokuhaku Jikkou Iinkai follows Natsuki as she dreams of one day ending her practices and genuinely confessing to Yuu. Meanwhile, close friends also find themselves entangled in their own webs of unrequited love and unspoken affections. + + [Written by MAL Rewrite] + background: 'Zutto Mae Kara Suki deshita.: Kokuhaku Jikkou Iinkai is adaptation of music and animation series featuring + various seiyuu Kokuhaku Jikkou Iinkai: Renai Series, created by HoneyWorks.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1305 + type: anime + name: Milestone Music Publishing + url: https://myanimelist.net/anime/producer/1305/Milestone_Music_Publishing + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1682 + type: anime + name: MusicRay’n + url: https://myanimelist.net/anime/producer/1682/MusicRay%E2%80%99n + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1304 + type: anime + name: Qualia Animation + url: https://myanimelist.net/anime/producer/1304/Qualia_Animation + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31904 + url: https://myanimelist.net/anime/31904/Big_Order_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/79757.jpg + small_image_url: https://myanimelist.net/images/anime/11/79757t.jpg + large_image_url: https://myanimelist.net/images/anime/11/79757l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/79757.webp + small_image_url: https://myanimelist.net/images/anime/11/79757t.webp + large_image_url: https://myanimelist.net/images/anime/11/79757l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DpGlepcMre0/?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Big Order (TV) + - type: Synonym + title: Big Order + - type: Japanese + title: ビッグオーダー + - type: German + title: Big Order + - type: Spanish + title: Big Order + - type: French + title: Big Order + title: Big Order (TV) + title_english: null + title_japanese: ビッグオーダー + title_synonyms: + - Big Order + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2016-04-16T00:00:00+00:00' + to: '2016-06-18T00:00:00+00:00' + prop: + from: + day: 16 + month: 4 + year: 2016 + to: + day: 18 + month: 6 + year: 2016 + string: Apr 16, 2016 to Jun 18, 2016 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 5.35 + scored_by: 114188 + rank: 13678 + popularity: 1157 + members: 245511 + favorites: 266 + synopsis: |- + Ten years ago, a fairy by the name of Daisy appeared and asked the child Eiji Hoshimiya what his one and only wish was. Although his wish remains a mystery, the consequences were catastrophic. In an event called the "Great Destruction," the world started to fall apart as everything collapsed and countless people died. + + Now, Eiji is a high school student whose only concern is his sick sister. He does not remember what he wished for; all that he remembers is that his wish caused the Great Destruction. In the years since that event, thousands of other people have also received abilities to make their heart's desire come true. These people called "Orders" are believed to be evil and are hated by the general public. However, some of these Orders are after Eiji's life in vengeance for those that he killed. Will Eiji be able to survive the numerous assassination attempts? And the biggest mystery of all: what did he wish for, and what were his intentions in wishing for something that caused so much desolation? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: 01:40 + timezone: Asia/Tokyo + string: Saturdays at 01:40 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32438 + url: https://myanimelist.net/anime/32438/Mayoiga + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/79413.jpg + small_image_url: https://myanimelist.net/images/anime/4/79413t.jpg + large_image_url: https://myanimelist.net/images/anime/4/79413l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/79413.webp + small_image_url: https://myanimelist.net/images/anime/4/79413t.webp + large_image_url: https://myanimelist.net/images/anime/4/79413l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4o29kFnF0yg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mayoiga + - type: Japanese + title: 迷家-マヨイガ- + - type: English + title: The Lost Village + - type: German + title: The Lost Village + - type: Spanish + title: The Lost Village -Mayoiga- + - type: French + title: The Lost Village + title: Mayoiga + title_english: The Lost Village + title_japanese: 迷家-マヨイガ- + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-01T00:00:00+00:00' + to: '2016-06-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2016 + to: + day: 17 + month: 6 + year: 2016 + string: Apr 1, 2016 to Jun 17, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 5.5 + scored_by: 113758 + rank: 13250 + popularity: 1248 + members: 226027 + favorites: 307 + synopsis: |- + A bus full of eccentric individuals is headed toward the urban legend known as Nanaki Village, a place where one can supposedly start over and live a perfect life. While many have different ideas of why the village cannot be found on any map, or why even the police cannot pinpoint its location, they each look forward to their new lives and just what awaits them once they reach their destination. + + After a few mishaps, they successfully arrive at Nanaki Village only to find it completely abandoned. Judging from the state of disrepair, it has been vacant for at least a year. However, secrets are soon revealed as some of the group begin to go missing while exploring the village and amidst the confusion, they find bloody claw marks in a forest. As mistrust and in-fighting break out, will they ever be able to figure out the truth behind this lost village? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1429 + type: anime + name: Azumaker + url: https://myanimelist.net/anime/producer/1429/Azumaker + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 31405 + url: https://myanimelist.net/anime/31405/Joker_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/77523.jpg + small_image_url: https://myanimelist.net/images/anime/9/77523t.jpg + large_image_url: https://myanimelist.net/images/anime/9/77523l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/77523.webp + small_image_url: https://myanimelist.net/images/anime/9/77523t.webp + large_image_url: https://myanimelist.net/images/anime/9/77523l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0G7YW3XcUaA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Joker Game + - type: Japanese + title: ジョーカー・ゲーム + - type: English + title: Joker Game + title: Joker Game + title_english: Joker Game + title_japanese: ジョーカー・ゲーム + title_synonyms: [] + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-04-05T00:00:00+00:00' + to: '2016-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2016 + to: + day: 21 + month: 6 + year: 2016 + string: Apr 5, 2016 to Jun 21, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.03 + scored_by: 91855 + rank: 4961 + popularity: 1282 + members: 219765 + favorites: 619 + synopsis: |- + With World War II right around the corner, intelligence on other countries' social and economic situation has become a valuable asset. As a result, Japan has established a new spy organization known as the "D Agency" to obtain this weapon. + + Under the command of Lieutenant Colonel Yuuki, eight agents have been assigned to infiltrate and observe some of the most powerful countries, reporting on any developments associated with the war. In order to carry out these dangerous tasks, these men have trained their bodies to survive in extreme conditions and studied numerous fields such as communications and languages. However, their greatest strength lies in their ability to manipulate people in order to obtain the information necessary to give their nation the upper hand. + + [Written by MAL Rewrite] + background: The series was awarded the 2016 Nogizaka46 Award (a Monthly Newtype Joint Special Award). + season: spring + year: 2016 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 32681 + url: https://myanimelist.net/anime/32681/Uchuu_Patrol_Luluco + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/79073.jpg + small_image_url: https://myanimelist.net/images/anime/4/79073t.jpg + large_image_url: https://myanimelist.net/images/anime/4/79073l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/79073.webp + small_image_url: https://myanimelist.net/images/anime/4/79073t.webp + large_image_url: https://myanimelist.net/images/anime/4/79073l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GQwGr3gfSHY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchuu Patrol Luluco + - type: Japanese + title: 宇宙パトロールルル子 + - type: English + title: Space Patrol Luluco + - type: German + title: Space Patrol Luluco + - type: Spanish + title: Patrullera Espacial Luluco + - type: French + title: Space Patrol Luluco + title: Uchuu Patrol Luluco + title_english: Space Patrol Luluco + title_japanese: 宇宙パトロールルル子 + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-04-01T00:00:00+00:00' + to: '2016-06-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2016 + to: + day: 24 + month: 6 + year: 2016 + string: Apr 1, 2016 to Jun 24, 2016 + duration: 7 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 78590 + rank: 2135 + popularity: 1674 + members: 161683 + favorites: 1112 + synopsis: |- + Living an abnormal existence in Ogikubo, an intergalactic melting pot of humans and aliens as well as the only Space Immigration Zone on Earth, Luluco is a bubbly middle school girl who just wants to be normal. One morning, however, her father, who works at the Space Patrol, eats a volatile sleep capsule by mistake and is frozen solid! To make matters worse, Luluco accidentally breaks him, so she hurries off to his office for help. There, the chief of the Space Patrol, Over Justice, hires Luluco as a space temp worker for undercover investigations, so that the institution may crack down on crime within her school. + + Made to don the Space Patrol suit and sent on her way to mete out justice, Luluco attempts to maintain the image of a normal girl who does not stand out in any way. But she soon discovers that with the automatic systems and inherently zealous judiciousness of the Space Patrol suit, continuing to be normal will be more difficult than she thought. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 31680 + url: https://myanimelist.net/anime/31680/Super_Lovers + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/78450.jpg + small_image_url: https://myanimelist.net/images/anime/4/78450t.jpg + large_image_url: https://myanimelist.net/images/anime/4/78450l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/78450.webp + small_image_url: https://myanimelist.net/images/anime/4/78450t.webp + large_image_url: https://myanimelist.net/images/anime/4/78450l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8qyNNf03HaM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Super Lovers + - type: Japanese + title: SUPER LOVERS(スーパーラヴァーズ) + - type: English + title: Super Lovers + title: Super Lovers + title_english: Super Lovers + title_japanese: SUPER LOVERS(スーパーラヴァーズ) + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2016-04-06T00:00:00+00:00' + to: '2016-06-08T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2016 + to: + day: 8 + month: 6 + year: 2016 + string: Apr 6, 2016 to Jun 8, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.68 + scored_by: 82352 + rank: 7086 + popularity: 1731 + members: 154858 + favorites: 1076 + synopsis: |- + Upon hearing news that his mother was on verge of death, Haru Kaidou—the eldest son of the family—flies all the way to Canada. The moment he arrives, he learns that not only did his mother fool him, but he is also supposed to take care of his adoptive brother, Ren Kaidou, an antisocial kid who feels more comfortable around dogs than people. + + Due to his new brother's distrustful nature, Haru initially has a hard time reaching out to Ren but their relationship eventually grows. He makes a promise to Ren: they will live together in Japan after Haru graduates from high school. However, due to an unfortunate accident, Haru loses all memories of the summer they spent together, including the promise he made. Five years later, expecting Haru to keep his promise, Ren arrives in Tokyo; but to Haru, Ren is just a random boy claiming to be his brother. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32245 + url: https://myanimelist.net/anime/32245/Kuromukuro + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/82281.jpg + small_image_url: https://myanimelist.net/images/anime/12/82281t.jpg + large_image_url: https://myanimelist.net/images/anime/12/82281l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/82281.webp + small_image_url: https://myanimelist.net/images/anime/12/82281t.webp + large_image_url: https://myanimelist.net/images/anime/12/82281l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LrDfpKyvXUc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuromukuro + - type: Synonym + title: Black Corpse + - type: Synonym + title: Black Relic + - type: Japanese + title: クロムクロ + - type: English + title: Kuromukuro + title: Kuromukuro + title_english: Kuromukuro + title_japanese: クロムクロ + title_synonyms: + - Black Corpse + - Black Relic + type: TV + source: Original + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2016-04-07T00:00:00+00:00' + to: '2016-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2016 + to: + day: 29 + month: 9 + year: 2016 + string: Apr 7, 2016 to Sep 29, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.15 + scored_by: 64312 + rank: 4280 + popularity: 1751 + members: 152936 + favorites: 443 + synopsis: |- + During the dawn of the 21st century, the United Nations Kurobe Research Institute was established in Japan to investigate an ancient artifact, which was discovered during the construction of the Kurobe Dam. Scientists from around the world have gathered in the facility to study the object, while their children enjoy their everyday lives attending Mt. Tate International Senior High School. + + Yukina Shirahane, a reserved high school girl, is the daughter of the facility's head scientist. While visiting her mother at the facility, Yukina manages to solve part of the artifact's puzzle. To her surprise, what appears before her is Kennosuke Tokisada Ouma, a young samurai from the Sengoku era. + + As a threat approaches from outer space, Yukina, along with Kennosuke, finds herself defending Earth against the invading forces. Along the way, she discovers the mystery behind Kennosuke and the reason he is determined to protect her. + + [Written by MAL Rewrite] + background: Kuromukuro is the 15th anniversary production of animation studio P.A. Works. + season: spring + year: 2016 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 31630 + url: https://myanimelist.net/anime/31630/Gyakuten_Saiban__Sono_Shinjitsu_Igi_Ari + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/79448.jpg + small_image_url: https://myanimelist.net/images/anime/5/79448t.jpg + large_image_url: https://myanimelist.net/images/anime/5/79448l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/79448.webp + small_image_url: https://myanimelist.net/images/anime/5/79448t.webp + large_image_url: https://myanimelist.net/images/anime/5/79448l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O-tfGuZShKQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gyakuten Saiban: Sono "Shinjitsu", Igi Ari!' + - type: Synonym + title: 'Phoenix Wright: Ace Attorney' + - type: Japanese + title: 逆転裁判 ~その「真実」、異議あり!~ + - type: English + title: Ace Attorney + - type: German + title: Ace Attorney + - type: Spanish + title: Ace Attorney + - type: French + title: Ace Attorney + title: 'Gyakuten Saiban: Sono "Shinjitsu", Igi Ari!' + title_english: Ace Attorney + title_japanese: 逆転裁判 ~その「真実」、異議あり!~ + title_synonyms: + - 'Phoenix Wright: Ace Attorney' + type: TV + source: Game + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2016-04-02T00:00:00+00:00' + to: '2016-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2016 + to: + day: 24 + month: 9 + year: 2016 + string: Apr 2, 2016 to Sep 24, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.57 + scored_by: 63503 + rank: 7727 + popularity: 1791 + members: 149156 + favorites: 563 + synopsis: |- + Since he was a child, Ryuuichi Naruhodou's dream was to become a defense attorney, protecting the innocent when no one else would. However, when the rookie lawyer finally takes on his first case under the guidance of his mentor Chihiro Ayasato, he realizes that the courtroom is a battlefield. In these fast paced trials, Ryuuichi is forced to think outside the box to uncover the truth of the crimes that have taken place in order to prove the innocence of his clients. + + Gyakuten Saiban: Sono "Shinjitsu", Igi Ari! follows Ryuuichi as he tackles cases to absolve the falsely accused of the charges they face. It will not be easy—standing in his path is the ruthless Reiji Mitsurugi, a prosecutor who will stop at nothing to hand out guilty verdicts. With his back against the wall, the defense attorney must carefully examine both evidence and witness testimony, sifting through lies to solve the mystery behind each case. With a shout of "objection!," the battle in the courtroom begins! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2016 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 240 + type: anime + name: Capcom + url: https://myanimelist.net/anime/producer/240/Capcom + - mal_id: 643 + type: anime + name: Trinity Sound + url: https://myanimelist.net/anime/producer/643/Trinity_Sound + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 31098 + url: https://myanimelist.net/anime/31098/Ushio_to_Tora_TV_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1092/117404.jpg + small_image_url: https://myanimelist.net/images/anime/1092/117404t.jpg + large_image_url: https://myanimelist.net/images/anime/1092/117404l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1092/117404.webp + small_image_url: https://myanimelist.net/images/anime/1092/117404t.webp + large_image_url: https://myanimelist.net/images/anime/1092/117404l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KMe4UYXNOmg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ushio to Tora (TV) 2nd Season + - type: Synonym + title: Ushio and Tora + - type: Japanese + title: うしおととら + - type: English + title: Ushio & Tora (2016) + - type: Spanish + title: Ushio & Tora Temporada 2 + - type: French + title: Ushio & Tora Saison 2 + title: Ushio to Tora (TV) 2nd Season + title_english: Ushio & Tora (2016) + title_japanese: うしおととら + title_synonyms: + - Ushio and Tora + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-04-01T00:00:00+00:00' + to: '2016-06-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2016 + to: + day: 24 + month: 6 + year: 2016 + string: Apr 1, 2016 to Jun 24, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 69860 + rank: 978 + popularity: 1867 + members: 140947 + favorites: 331 + synopsis: Continuation of Ushio to Tora TV series. + background: '' + season: spring + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1493 + type: anime + name: Tokuma Japan Communications + url: https://myanimelist.net/anime/producer/1493/Tokuma_Japan_Communications + - mal_id: 1632 + type: anime + name: Daiichi Shokai + url: https://myanimelist.net/anime/producer/1632/Daiichi_Shokai + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31327 + url: https://myanimelist.net/anime/31327/Shokugeki_no_Souma_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1622/96638.jpg + small_image_url: https://myanimelist.net/images/anime/1622/96638t.jpg + large_image_url: https://myanimelist.net/images/anime/1622/96638l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1622/96638.webp + small_image_url: https://myanimelist.net/images/anime/1622/96638t.webp + large_image_url: https://myanimelist.net/images/anime/1622/96638l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tZCQhVrEv8k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shokugeki no Souma OVA + - type: Synonym + title: 'Shokugeki no Souma: Jump Festa 2015 Special' + - type: Synonym + title: Food Wars! Shokugeki no Soma OVA + - type: Japanese + title: 食戟のソーマ + - type: English + title: Food Wars! OVA + title: Shokugeki no Souma OVA + title_english: Food Wars! OVA + title_japanese: 食戟のソーマ + title_synonyms: + - 'Shokugeki no Souma: Jump Festa 2015 Special' + - Food Wars! Shokugeki no Soma OVA + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2016-05-02T00:00:00+00:00' + to: '2016-07-04T00:00:00+00:00' + prop: + from: + day: 2 + month: 5 + year: 2016 + to: + day: 4 + month: 7 + year: 2016 + string: May 2, 2016 to Jul 4, 2016 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 65576 + rank: 3197 + popularity: 1985 + members: 130710 + favorites: 78 + synopsis: |- + Takumi no Shitamachi Kassen + Following the end of the exhausting training camp, brothers Takumi and Isami Aldini spend their holiday sightseeing Tokyo Tower and its surroundings. While learning about the local culture and tasting various dishes, the two encounter Megumi Tadokoro, Ryouko Sakaki, and Yuuki Yoshino, who all happened to be touring the area as well. The group decides to have lunch together at a traditional Japanese restaurant—where an unexpected food duel is set to take place. + + Natsuyasumi no Erina + Tootsuki students are hard at work experimenting with dishes for the Autumn Elections during the summer break; but for Erina Nakiri, her preparations for the event are already complete. Just as she dwells on what to do with her free time, she receives an invitation to the public pool from her cousin Alice. Despite her initial hesitation, Erina takes the opportunity to broaden her horizons and explore what this seemingly ordinary summer activity has to offer. Meanwhile, the members of the Polar Star Dormitory kick off a small party at a nearby lake to cool off and enjoy themselves before the Autumn Elections. + + [Written by MAL Rewrite] + background: Shokugeki no Souma OVA was bundled with the release of the 18th and 19th volumes of the Shokugeki no Souma + manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/27-2016-summer.yaml b/test/fixtures/jikan/season_matrix/27-2016-summer.yaml new file mode 100644 index 0000000..33159a6 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/27-2016-summer.yaml @@ -0,0 +1,3469 @@ +metadata: + captured_at: '2026-05-11T11:33:32Z' + label: 2016-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2016/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:32 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:edcc49d354dcc9c0cdb9bb42ff452c2c39ed9e9e + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 282 + per_page: 25 + data: + - mal_id: 32281 + url: https://myanimelist.net/anime/32281/Kimi_no_Na_wa + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/87048.jpg + small_image_url: https://myanimelist.net/images/anime/5/87048t.jpg + large_image_url: https://myanimelist.net/images/anime/5/87048l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/87048.webp + small_image_url: https://myanimelist.net/images/anime/5/87048t.webp + large_image_url: https://myanimelist.net/images/anime/5/87048l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3KR8_igDs1Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi no Na wa. + - type: Japanese + title: 君の名は。 + - type: English + title: Your Name. + - type: German + title: Your Name. + - type: Spanish + title: Your Name. + - type: French + title: Your Name. + title: Kimi no Na wa. + title_english: Your Name. + title_japanese: 君の名は。 + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-08-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 8 + year: 2016 + to: + day: null + month: null + year: null + string: Aug 26, 2016 + duration: 1 hr 46 min + rating: PG-13 - Teens 13 or older + score: 8.82 + scored_by: 2083458 + rank: 36 + popularity: 12 + members: 3026509 + favorites: 95418 + synopsis: |- + Mitsuha Miyamizu, a high school girl, yearns to live the life of a boy in the bustling city of Tokyo—a dream that stands in stark contrast to her present life in the countryside. Meanwhile in the city, Taki Tachibana lives a busy life as a high school student while juggling his part-time job and hopes for a future in architecture. + + One day, Mitsuha awakens in a room that is not her own and suddenly finds herself living the dream life in Tokyo—but in Taki's body! Elsewhere, Taki finds himself living Mitsuha's life in the humble countryside. In pursuit of an answer to this strange phenomenon, they begin to search for one another. + + Kimi no Na wa. revolves around Mitsuha and Taki's actions, which begin to have a dramatic impact on each other's lives, weaving them into a fabric held together by fate and circumstance. + + [Written by MAL Rewrite] + background: Kimi no Na wa. won the LAFCA Animation Award in 2016 and the Best Animated Film in 2017 by Mainichi Film + Awards. It also won the Grand Prize Award on the 20th Japan Media Arts Festival. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1313 + type: anime + name: Amuse + url: https://myanimelist.net/anime/producer/1313/Amuse + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1929 + type: anime + name: voque ting + url: https://myanimelist.net/anime/producer/1929/voque_ting + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 28851 + url: https://myanimelist.net/anime/28851/Koe_no_Katachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1122/96435.jpg + small_image_url: https://myanimelist.net/images/anime/1122/96435t.jpg + large_image_url: https://myanimelist.net/images/anime/1122/96435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1122/96435.webp + small_image_url: https://myanimelist.net/images/anime/1122/96435t.webp + large_image_url: https://myanimelist.net/images/anime/1122/96435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XBNWo25izJ8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koe no Katachi + - type: Synonym + title: The Shape of Voice + - type: Japanese + title: 聲の形 + - type: English + title: A Silent Voice + - type: German + title: A Silent Voice + - type: Spanish + title: Una Voz Silenciosa + - type: French + title: A Silent Voice + title: Koe no Katachi + title_english: A Silent Voice + title_japanese: 聲の形 + title_synonyms: + - The Shape of Voice + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-09-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 9 + year: 2016 + to: + day: null + month: null + year: null + string: Sep 17, 2016 + duration: 2 hr 10 min + rating: PG-13 - Teens 13 or older + score: 8.93 + scored_by: 1799851 + rank: 20 + popularity: 19 + members: 2615979 + favorites: 96163 + synopsis: "As a wild youth, elementary school student Shouya Ishida sought to beat boredom in the cruelest ways. When\ + \ the deaf Shouko Nishimiya transfers into his class, Shouya and the rest of his class thoughtlessly bully her for\ + \ fun. However, when her mother notifies the school, he is singled out and blamed for everything done to her. With\ + \ Shouko transferring out of the school, Shouya is left at the mercy of his classmates. He is heartlessly ostracized\ + \ all throughout elementary and middle school, while teachers turn a blind eye.\n\nNow in his third year of high school,\ + \ Shouya is still plagued by his wrongdoings as a young boy. Sincerely regretting his past actions, he sets out on\ + \ a journey of redemption: to meet Shouko once more and make amends.\n\nKoe no Katachi tells the heartwarming tale\ + \ of Shouya's reunion with Shouko and his honest attempts to redeem himself, all while being continually haunted by\ + \ the shadows of his past.\n \n[Written by MAL Rewrite]" + background: 'Koe no Katachi won the following awards: Japanese Movie Critics Awards for Best Animation Feature Film + in 2016; Japanese Academy Award for Excellent Animation of the Year in 2016; Tokyo Anime Award Festival for Anime + of the Year (movie) & Best Screenplay / Original Story (Reiko Yoshida) in 2017; Japan Media Arts Festival for Animation + Division - Excellence Award in 2017; Japan Movie Critics Awards for Best Animation of the Year in 2017; and Camera + Japan Festival for Feature Film in 2017.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1574 + type: anime + name: Quaras + url: https://myanimelist.net/anime/producer/1574/Quaras + licensors: + - mal_id: 531 + type: anime + name: Eleven Arts + url: https://myanimelist.net/anime/producer/531/Eleven_Arts + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32182 + url: https://myanimelist.net/anime/32182/Mob_Psycho_100 + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/80356.jpg + small_image_url: https://myanimelist.net/images/anime/8/80356t.jpg + large_image_url: https://myanimelist.net/images/anime/8/80356l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/80356.webp + small_image_url: https://myanimelist.net/images/anime/8/80356t.webp + large_image_url: https://myanimelist.net/images/anime/8/80356l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F8g3TuKsQHs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mob Psycho 100 + - type: Synonym + title: Mob Psycho Hyaku + - type: Synonym + title: Mob Psycho One Hundred + - type: Japanese + title: モブサイコ100 + - type: English + title: Mob Psycho 100 + title: Mob Psycho 100 + title_english: Mob Psycho 100 + title_japanese: モブサイコ100 + title_synonyms: + - Mob Psycho Hyaku + - Mob Psycho One Hundred + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-11T00:00:00+00:00' + to: '2016-09-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2016 + to: + day: 27 + month: 9 + year: 2016 + string: Jul 11, 2016 to Sep 27, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.49 + scored_by: 1421730 + rank: 172 + popularity: 27 + members: 2319809 + favorites: 54504 + synopsis: |- + Eighth-grader Shigeo "Mob" Kageyama has tapped into his inner wellspring of psychic prowess at a young age. But the power quickly proves to be a liability when he realizes the potential danger in his skills. Choosing to suppress his power, Mob's only present use for his ability is to impress his longtime crush, Tsubomi, who soon grows bored of the same tricks. + + In order to effectuate control on his skills, Mob enlists himself under the wing of Arataka Reigen, a con artist claiming to be a psychic, who exploits Mob's powers for pocket change. Now, exorcising evil spirits on command has become a part of Mob's daily, monotonous life. However, the psychic energy he exerts is barely the tip of the iceberg; if his vast potential and unrestrained emotions run berserk, a cataclysmic event that would render him completely unrecognizable will be triggered. The progression toward Mob's explosion is rising and attempting to stop it is futile. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 3309 + type: anime + name: Peerless Gerbera + url: https://myanimelist.net/anime/producer/3309/Peerless_Gerbera + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 33255 + url: https://myanimelist.net/anime/33255/Saiki_Kusuo_no_Ψ-nan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1973/142750.jpg + small_image_url: https://myanimelist.net/images/anime/1973/142750t.jpg + large_image_url: https://myanimelist.net/images/anime/1973/142750l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1973/142750.webp + small_image_url: https://myanimelist.net/images/anime/1973/142750t.webp + large_image_url: https://myanimelist.net/images/anime/1973/142750l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RChRfCHWsOI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saiki Kusuo no Ψ-nan + - type: Synonym + title: Saiki Kusuo no Psi Nan + - type: Synonym + title: Saiki Kusuo no Sainan + - type: Japanese + title: 斉木楠雄のΨ難 + - type: English + title: The Disastrous Life of Saiki K. + - type: German + title: The Disastrous Life of Saiki K. + - type: Spanish + title: The Disastrous Life of Saiki K. + - type: French + title: The Disastrous Life of Saiki K. + title: Saiki Kusuo no Ψ-nan + title_english: The Disastrous Life of Saiki K. + title_japanese: 斉木楠雄のΨ難 + title_synonyms: + - Saiki Kusuo no Psi Nan + - Saiki Kusuo no Sainan + type: TV + source: Manga + episodes: 120 + status: Finished Airing + airing: false + aired: + from: '2016-07-04T00:00:00+00:00' + to: '2016-12-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2016 + to: + day: 26 + month: 12 + year: 2016 + string: Jul 4, 2016 to Dec 26, 2016 + duration: 5 min per ep + rating: PG-13 - Teens 13 or older + score: 8.41 + scored_by: 700457 + rank: 224 + popularity: 131 + members: 1253831 + favorites: 33977 + synopsis: |- + To the average person, psychic abilities might seem a blessing; for Kusuo Saiki, however, this could not be further from the truth. Gifted with a wide assortment of supernatural abilities ranging from telepathy to x-ray vision, he finds this so-called blessing to be nothing but a curse. As all the inconveniences his powers cause constantly pile up, all Kusuo aims for is an ordinary, hassle-free life—a life where ignorance is bliss. + + Unfortunately, the life of a psychic is far from quiet. Though Kusuo tries to stay out of the spotlight by keeping his powers a secret from his classmates, he ends up inadvertently attracting the attention of many odd characters, such as the empty-headed Riki Nendou and the delusional Shun Kaidou. Forced to deal with the craziness of the people around him, Kusuo comes to learn that the ordinary life he has been striving for is a lot more difficult to achieve than expected. + + [Written by MAL Rewrite] + background: Saiki Kusuo no Ψ-nan aired weekly from Monday to Friday short 5 minute episodes in the morning block until + November 4, 2016. A full episode every Sunday night followed the morning block short, but later became the main broadcast + time. + season: summer + year: 2016 + broadcast: + day: null + time: null + timezone: null + string: Not scheduled once per week + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1803 + type: anime + name: Dear Stage inc. + url: https://myanimelist.net/anime/producer/1803/Dear_Stage_inc + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32282 + url: https://myanimelist.net/anime/32282/Shokugeki_no_Souma__Ni_no_Sara + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/79353.jpg + small_image_url: https://myanimelist.net/images/anime/8/79353t.jpg + large_image_url: https://myanimelist.net/images/anime/8/79353l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/79353.webp + small_image_url: https://myanimelist.net/images/anime/8/79353t.webp + large_image_url: https://myanimelist.net/images/anime/8/79353l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ftkShI-StTU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: Ni no Sara' + - type: Synonym + title: Shokugeki no Souma 2nd Season + - type: Synonym + title: Shokugeki no Soma 2 + - type: Synonym + title: 'Food Wars: Shokugeki no Soma 2' + - type: Synonym + title: 'Shokugeki no Soma: The Second Plate' + - type: Japanese + title: 食戟のソーマ 弍ノ皿 + - type: English + title: Food Wars! The Second Plate + - type: German + title: Food Wars! The Second Plate + - type: Spanish + title: 'Food Wars! (Shokugeki no Soma): Temporada 2 (Ni no Sara)' + - type: French + title: 'Food Wars! Shokugeki no Soma: The Second Plate' + title: 'Shokugeki no Souma: Ni no Sara' + title_english: Food Wars! The Second Plate + title_japanese: 食戟のソーマ 弍ノ皿 + title_synonyms: + - Shokugeki no Souma 2nd Season + - Shokugeki no Soma 2 + - 'Food Wars: Shokugeki no Soma 2' + - 'Shokugeki no Soma: The Second Plate' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-07-02T00:00:00+00:00' + to: '2016-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2016 + to: + day: 24 + month: 9 + year: 2016 + string: Jul 2, 2016 to Sep 24, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.06 + scored_by: 762935 + rank: 662 + popularity: 138 + members: 1207581 + favorites: 3110 + synopsis: |- + The qualifiers of the Autumn Elections are now over, and only eight talented chefs remain. Now, they face off in one-on-one food wars, each with their own unique themes. Met with both new judges and new opponents all with their own specialties, Souma must stay on his toes if he hopes to make it to the top of both the Autumn Elections and Tootsuki Culinary Academy. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30015 + url: https://myanimelist.net/anime/30015/ReLIFE + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/82149.jpg + small_image_url: https://myanimelist.net/images/anime/3/82149t.jpg + large_image_url: https://myanimelist.net/images/anime/3/82149l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/82149.webp + small_image_url: https://myanimelist.net/images/anime/3/82149t.webp + large_image_url: https://myanimelist.net/images/anime/3/82149l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fZCgXuxMAZY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: ReLIFE + - type: Synonym + title: Re LIFE + - type: Japanese + title: ReLIFE + - type: English + title: ReLIFE + title: ReLIFE + title_english: ReLIFE + title_japanese: ReLIFE + title_synonyms: + - Re LIFE + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-07-02T00:00:00+00:00' + to: '2016-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2016 + to: + day: 24 + month: 9 + year: 2016 + string: Jul 2, 2016 to Sep 24, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.96 + scored_by: 633758 + rank: 825 + popularity: 150 + members: 1141185 + favorites: 10825 + synopsis: |- + Dismissed as a hopeless loser by those around him, 27-year-old Arata Kaizaki bounces around from one job to another after quitting his first company. His unremarkable existence takes a sharp turn when he meets Ryou Yoake, a member of the ReLife Research Institute, who offers Arata the opportunity to change his life for the better with the help of a mysterious pill. Taking it without a second thought, Arata awakens the next day to find that his appearance has reverted to that of a 17-year-old. + + Arata soon learns that he is now the subject of a unique experiment and must attend high school as a transfer student for one year. Though he initially believes it will be a cinch due to his superior life experience, Arata is proven horribly wrong on his first day: he flunks all his tests, is completely out of shape, and can't keep up with the new school policies that have cropped up in the last 10 years. Furthermore, Ryou has been assigned to observe him, bringing Arata endless annoyance. ReLIFE follows Arata's struggle to adjust to his hectic new lifestyle and avoid repeating his past mistakes, all while slowly discovering more about his fellow classmates. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1481 + type: anime + name: comico + url: https://myanimelist.net/anime/producer/1481/comico + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1497 + type: anime + name: C & I entertainment + url: https://myanimelist.net/anime/producer/1497/C___I_entertainment + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32729 + url: https://myanimelist.net/anime/32729/Orange + images: + jpg: + image_url: https://myanimelist.net/images/anime/1415/102477.jpg + small_image_url: https://myanimelist.net/images/anime/1415/102477t.jpg + large_image_url: https://myanimelist.net/images/anime/1415/102477l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1415/102477.webp + small_image_url: https://myanimelist.net/images/anime/1415/102477t.webp + large_image_url: https://myanimelist.net/images/anime/1415/102477l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RU2mPHp9Btk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Orange + - type: Japanese + title: orange(オレンジ) + - type: English + title: Orange + title: Orange + title_english: Orange + title_japanese: orange(オレンジ) + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-07-04T00:00:00+00:00' + to: '2016-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2016 + to: + day: 26 + month: 9 + year: 2016 + string: Jul 4, 2016 to Sep 26, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 433401 + rank: 1705 + popularity: 232 + members: 900458 + favorites: 7463 + synopsis: |- + Naho Takamiya's first day of her sophomore year of high school is off to an uneasy start. After waking up late, she receives a strange letter addressed to her. However, the letter is from herself—10 years in the future! At first, Naho is skeptical of the note; yet, after witnessing several events described to take place, she realizes the letter really is from her 26-year-old self. + + The note details that Naho's future life is filled with regrets, and she hopes that her younger self can correct the mistakes that were made in the past. The letter also warns her to keep a close eye on the new transfer student, Kakeru Naruse. Naho must be especially careful in making decisions involving him, as Kakeru is not around in the future. With the letter as her guide, Naho now has the power to protect Kakeru before she comes to regret it once more. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 2279 + type: anime + name: MediaLink Entertainment Limited + url: https://myanimelist.net/anime/producer/2279/MediaLink_Entertainment_Limited + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 94 + type: anime + name: Telecom Animation Film + url: https://myanimelist.net/anime/producer/94/Telecom_Animation_Film + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 32998 + url: https://myanimelist.net/anime/32998/91_Days + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/80515.jpg + small_image_url: https://myanimelist.net/images/anime/13/80515t.jpg + large_image_url: https://myanimelist.net/images/anime/13/80515l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/80515.webp + small_image_url: https://myanimelist.net/images/anime/13/80515t.webp + large_image_url: https://myanimelist.net/images/anime/13/80515l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-NLxTEFb2pk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 91 Days + - type: Japanese + title: 91Days + - type: English + title: 91 Days + title: 91 Days + title_english: 91 Days + title_japanese: 91Days + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-09T00:00:00+00:00' + to: '2016-10-01T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2016 + to: + day: 1 + month: 10 + year: 2016 + string: Jul 9, 2016 to Oct 1, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.83 + scored_by: 360286 + rank: 1097 + popularity: 290 + members: 793906 + favorites: 8628 + synopsis: |- + As a child living in the town of Lawless, Angelo Lagusa has witnessed a tragedy: his parents and younger brother have been mercilessly slaughtered by the Vanetti mafia family. Losing everything he holds dear, he leaves both his name and hometown behind, adopting the new identity of Avilio Bruno. + + Seven years later, Avilio finally has his chance for revenge when he receives a mysterious letter prompting him to return to Lawless. Obliging, he soon encounters the Vanetti don's son, Nero, and seeks to befriend him using the skills he has quietly honed for years. + + Set during the Prohibition era, 91 Days tells the story of Avilio's dark, bloodstained path to vengeance, as he slowly ends each of the men involved in the killing of his family. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1626 + type: anime + name: Shochiku Music Publishing + url: https://myanimelist.net/anime/producer/1626/Shochiku_Music_Publishing + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 31722 + url: https://myanimelist.net/anime/31722/Nanatsu_no_Taizai__Seisen_no_Shirushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/79331.jpg + small_image_url: https://myanimelist.net/images/anime/13/79331t.jpg + large_image_url: https://myanimelist.net/images/anime/13/79331l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/79331.webp + small_image_url: https://myanimelist.net/images/anime/13/79331t.webp + large_image_url: https://myanimelist.net/images/anime/13/79331l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/J4ldr0d80zA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nanatsu no Taizai: Seisen no Shirushi' + - type: Japanese + title: 七つの大罪 聖戦の予兆 + - type: English + title: 'The Seven Deadly Sins: Signs of Holy War' + - type: Spanish + title: 'The Seven Deadly Sins: Las Huellas de la Guerra Santa' + title: 'Nanatsu no Taizai: Seisen no Shirushi' + title_english: 'The Seven Deadly Sins: Signs of Holy War' + title_japanese: 七つの大罪 聖戦の予兆 + title_synonyms: [] + type: TV + source: Manga + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2016-08-28T00:00:00+00:00' + to: '2016-09-18T00:00:00+00:00' + prop: + from: + day: 28 + month: 8 + year: 2016 + to: + day: 18 + month: 9 + year: 2016 + string: Aug 28, 2016 to Sep 18, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.94 + scored_by: 463382 + rank: 5475 + popularity: 301 + members: 773619 + favorites: 829 + synopsis: |- + The Seven Deadly Sins, along with Elizabeth Liones and Hawk, have won the Kingdom of Leones back from the Holy Knights. At long last, it's their time to indulge in the peaceful lives they fought for. From inedible meat pies, overdue battles, unexpected stalkers, and the butterflies of first love, the Sins are accompanied by their friends in their carefree, fun-filled time together. However, the calm is broken with the premonition of a new threat, bringing upon the signs of Holy War and threatening to shatter the peace of the Sins' easygoing days. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31757 + url: https://myanimelist.net/anime/31757/Kizumonogatari_II__Nekketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1981/112812.jpg + small_image_url: https://myanimelist.net/images/anime/1981/112812t.jpg + large_image_url: https://myanimelist.net/images/anime/1981/112812l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1981/112812.webp + small_image_url: https://myanimelist.net/images/anime/1981/112812t.webp + large_image_url: https://myanimelist.net/images/anime/1981/112812l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nOiEjQy-J7U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kizumonogatari II: Nekketsu-hen' + - type: Synonym + title: Koyomi Vamp + - type: Synonym + title: Kizumonogatari Part 2 + - type: Japanese + title: 傷物語〈Ⅱ熱血篇〉 + - type: English + title: 'Kizumonogatari Part 2: Hot-Blooded' + - type: German + title: 'Kizumonogatari: Heißes Blut' + title: 'Kizumonogatari II: Nekketsu-hen' + title_english: 'Kizumonogatari Part 2: Hot-Blooded' + title_japanese: 傷物語〈Ⅱ熱血篇〉 + title_synonyms: + - Koyomi Vamp + - Kizumonogatari Part 2 + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-08-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 8 + year: 2016 + to: + day: null + month: null + year: null + string: Aug 19, 2016 + duration: 1 hr 8 min + rating: R - 17+ (violence & profanity) + score: 8.56 + scored_by: 297054 + rank: 130 + popularity: 535 + members: 489438 + favorites: 2494 + synopsis: |- + No longer truly human, Koyomi Araragi decides to retrieve Kiss-shot Acerola-orion Heart-under-blade's severed body parts that were stolen by three powerful vampire hunters. Awaiting him are Dramaturgie, a vampire hunter who is a vampire himself; Episode, a half-vampire with the ability to transform into mist; and Guillotinecutter, a human priest who is the most dangerous of them all. + + Unbeknownst to Araragi, each minute he spends trying to retrieve Kiss-shot's limbs makes him less of a human and more of a vampire. Will he be able to keep his wish of becoming human once again by the end of his battles? + + [Written by MAL Rewrite] + background: 'The Kizumonogatari movie trilogy adapts the third volume of NisiOisiN''s Monogatari Series: First Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 31953 + url: https://myanimelist.net/anime/31953/New_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/80417.jpg + small_image_url: https://myanimelist.net/images/anime/9/80417t.jpg + large_image_url: https://myanimelist.net/images/anime/9/80417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/80417.webp + small_image_url: https://myanimelist.net/images/anime/9/80417t.webp + large_image_url: https://myanimelist.net/images/anime/9/80417l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E8JGXixftYQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: New Game! + - type: Japanese + title: NEW GAME! + - type: English + title: New Game! + title: New Game! + title_english: New Game! + title_japanese: NEW GAME! + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-04T00:00:00+00:00' + to: '2016-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2016 + to: + day: 19 + month: 9 + year: 2016 + string: Jul 4, 2016 to Sep 19, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 215202 + rank: 2021 + popularity: 582 + members: 455447 + favorites: 2944 + synopsis: |- + Since childhood, Aoba Suzukaze has loved the Fairies Story game series, particularly the character designs. So when she graduates from high school, it is no surprise that she applies to work at Eagle Jump, the company responsible for making her favorite video game. On her first day, she is excited to learn that she will be working on a new installment to the series: Fairies Story 3—and even more so under Kou Yagami, the lead character designer. + + In their department are people who share the same passion for games. There is Yun Iijima, whose specialty is designing monsters; the shy Hifumi Takimoto, who prefers to communicate through instant messaging; Hajime Shinoda, an animation team member with an impressive figurine collection; Rin Tooyama, the orderly art director; Shizuku Hazuki, the game director who brings her cat to work; and Umiko Ahagon, the short-tempered head programmer. + + New Game! follows Aoba and the others on their adventure through the ups and downs of game making, from making the perfect character design to fixing all the errors that will inevitably accumulate in the process. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 32379 + url: https://myanimelist.net/anime/32379/Berserk + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/79352.jpg + small_image_url: https://myanimelist.net/images/anime/10/79352t.jpg + large_image_url: https://myanimelist.net/images/anime/10/79352l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/79352.webp + small_image_url: https://myanimelist.net/images/anime/10/79352t.webp + large_image_url: https://myanimelist.net/images/anime/10/79352l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XQr7LvFZrlE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Berserk + - type: Japanese + title: ベルセルク + - type: English + title: Berserk (2016) + title: Berserk + title_english: Berserk (2016) + title_japanese: ベルセルク + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-01T00:00:00+00:00' + to: '2016-09-16T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2016 + to: + day: 16 + month: 9 + year: 2016 + string: Jul 1, 2016 to Sep 16, 2016 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.35 + scored_by: 197367 + rank: 9041 + popularity: 682 + members: 397527 + favorites: 2828 + synopsis: |- + Now branded for death and destined to be hunted by demons until the day he dies, Guts embarks on a journey to defy such a gruesome fate, as waves of beasts relentlessly pursue him. Steeling his resolve, he takes up the monstrous blade Dragonslayer and vows to exact vengeance on the one responsible, hunting down the very man he once looked up to and considered a friend. + + Along the way, he encounters some unlikely allies, such as a small elf named Puck, and Isidro, a young thief looking to learn swordsmanship from the former mercenary. As the ragtag group slowly comes together after having decided to join Guts in his quest, they will face incredible danger unlike anything they have ever experienced before. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1498 + type: anime + name: Koei Tecmo Games + url: https://myanimelist.net/anime/producer/1498/Koei_Tecmo_Games + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1237 + type: anime + name: Millepensee + url: https://myanimelist.net/anime/producer/1237/Millepensee + - mal_id: 1381 + type: anime + name: GEMBA + url: https://myanimelist.net/anime/producer/1381/GEMBA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 32189 + url: https://myanimelist.net/anime/32189/Danganronpa_3__The_End_of_Kibougamine_Gakuen_-_Mirai-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/80931.jpg + small_image_url: https://myanimelist.net/images/anime/10/80931t.jpg + large_image_url: https://myanimelist.net/images/anime/10/80931l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/80931.webp + small_image_url: https://myanimelist.net/images/anime/10/80931t.webp + large_image_url: https://myanimelist.net/images/anime/10/80931l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0AaOjY0cBzg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen' + - type: Synonym + title: 'Danganronpa 3: The End of Hope''s Peak Academy - Future Volume' + - type: Japanese + title: ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編 + - type: English + title: 'Danganronpa 3: The End of Hope''s Peak High School - Future Arc' + title: 'Danganronpa 3: The End of Kibougamine Gakuen - Mirai-hen' + title_english: 'Danganronpa 3: The End of Hope''s Peak High School - Future Arc' + title_japanese: ダンガンロンパ3 -The End of 希望ヶ峰学園- 未来編 + title_synonyms: + - 'Danganronpa 3: The End of Hope''s Peak Academy - Future Volume' + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-11T00:00:00+00:00' + to: '2016-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2016 + to: + day: 26 + month: 9 + year: 2016 + string: Jul 11, 2016 to Sep 26, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.21 + scored_by: 205438 + rank: 3872 + popularity: 719 + members: 381730 + favorites: 1714 + synopsis: |- + After Makoto Naegi and his fellow survivors escaped Hope's Peak Academy to the world beyond, they soon join the Future Foundation, an organization dedicated to combating despair. Just when all seems to be looking up, Naegi is arrested and tried for betrayal due to defending a malicious group of Remnants of Despair. Standing before all of the Future Foundation executives, he finds himself, along with Kyouko Kirigiri and Aoi Asahina, facing an unknown fate. + + The matter at hand only escalates when the organization's supposedly impenetrable security is hacked into by a familiar face: Monokuma. Much to Naegi's horror, the mechanical bear immediately announces the beginning of a new killing game, as moments later, the first victim appears as a signal for despair to resume its brutal conquest. + + Naegi, the Super High School-Level Lucky Student, must once again unravel the mystery as his colleagues and friends begin falling around him. However, there are no more class trials; among the 16 desperate participants, there is only one killer—and their death means the end of this infernal game. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 33028 + url: https://myanimelist.net/anime/33028/Danganronpa_3__The_End_of_Kibougamine_Gakuen_-_Zetsubou-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/80932.jpg + small_image_url: https://myanimelist.net/images/anime/4/80932t.jpg + large_image_url: https://myanimelist.net/images/anime/4/80932l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/80932.webp + small_image_url: https://myanimelist.net/images/anime/4/80932t.webp + large_image_url: https://myanimelist.net/images/anime/4/80932l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0AaOjY0cBzg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen' + - type: Synonym + title: 'Danganronpa 3: The End of Hope''s Peak Academy - Despair Volume' + - type: Japanese + title: ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編 + - type: English + title: 'Danganronpa 3: The End of Hope''s Peak High School - Despair Arc' + - type: German + title: 'Danganronpa 3: The End of Hope''s Peak High School' + - type: Spanish + title: 'Danganronpa 3: The End of Hope’s Peak High School' + - type: French + title: 'Danganronpa 3: The End of Hope’s Peak High School' + title: 'Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen' + title_english: 'Danganronpa 3: The End of Hope''s Peak High School - Despair Arc' + title_japanese: ダンガンロンパ3 -The End of 希望ヶ峰学園- 絶望編 + title_synonyms: + - 'Danganronpa 3: The End of Hope''s Peak Academy - Despair Volume' + type: TV + source: Visual novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2016-07-14T00:00:00+00:00' + to: '2016-09-22T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2016 + to: + day: 22 + month: 9 + year: 2016 + string: Jul 14, 2016 to Sep 22, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.35 + scored_by: 194482 + rank: 2976 + popularity: 785 + members: 351042 + favorites: 2329 + synopsis: |- + Hope's Peak Academy's unconventional class 77-B is about to have an even more eccentric addition: Chisa Yukizome, an alumna with the title of Super High School-Level Housekeeper—and their new homeroom teacher. Cheerful, passionate, and capable, Chisa immediately sets about correcting the students' problematic behavior and strengthening their relationships. It may not be easy dealing with diverse pupils ranging from princesses and nurses to yakuza and impossibly lucky students, but anything is possible with the power of hope. + + Meanwhile, Hajime Hinata, an unremarkable boy from the school's Reserve Course, longs for a talent. One day, he has an unexpected meeting with class 77-B's Super High School-Level Gamer Chiaki Nanami, who presents to him a new, hope-filled outlook on life. However, unbeknownst to him, the school's upper echelon is about to execute a sinister project centered around Hajime that will bring Hope's Peak—and the rest of the world—to its knees. + + Zetsubou-hen chronicles the daily lives carried out at the talent-cultivating academy, and the darkness that lurks beneath. As despair slowly infects hope, plans are put into motion to start the Biggest, Most Awful, Most Tragic Event in Human History, and the end begins. + + [Written by MAL Rewrite] + background: 'Danganronpa 3: The End of Kibougamine Gakuen - Zetsubou-hen is an original story following the characters + of the visual novel Super Danganronpa 2: Sayonara Zetsubou Gakuen before they arrived at the island. It is a prequel + to SDR2.' + season: summer + year: 2016 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 31764 + url: https://myanimelist.net/anime/31764/Nejimaki_Seirei_Senki__Tenkyou_no_Alderamin + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/79531.jpg + small_image_url: https://myanimelist.net/images/anime/11/79531t.jpg + large_image_url: https://myanimelist.net/images/anime/11/79531l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/79531.webp + small_image_url: https://myanimelist.net/images/anime/11/79531t.webp + large_image_url: https://myanimelist.net/images/anime/11/79531l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Mq3YB_ueHdo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nejimaki Seirei Senki: Tenkyou no Alderamin' + - type: Japanese + title: ねじ巻き精霊戦記 天鏡のアルデラミン + - type: English + title: Alderamin on the Sky + - type: German + title: Alderamin on the Sky + - type: Spanish + title: Alderamin on the Sky + - type: French + title: Alderamin on the Sky + title: 'Nejimaki Seirei Senki: Tenkyou no Alderamin' + title_english: Alderamin on the Sky + title_japanese: ねじ巻き精霊戦記 天鏡のアルデラミン + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-07-09T00:00:00+00:00' + to: '2016-10-01T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2016 + to: + day: 1 + month: 10 + year: 2016 + string: Jul 9, 2016 to Oct 1, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.63 + scored_by: 170737 + rank: 1699 + popularity: 792 + members: 348526 + favorites: 1600 + synopsis: |- + Ikta Solork is a carefree young man who only wants two things in life: a woman on his arm and a place to nap. Unfortunately, his peaceful life is destroyed when war breaks out between the Katjvarna Empire and the neighboring Republic of Kioka. Ikta and his childhood friend, Yatorishino Igsem, join the army as military officers, where they meet the infantryman Matthew Tetojirichi, the sniper Torway Remion, and the medic Haroma Becker on a boat heading for the military exam site. + + However, after a rogue storm sinks their vessel, the five of them end up in enemy territory near a military outpost. There, they discover that the heir to the Katjvarnan throne, Princess Chamille Kitora Katjvanmaninik, has been taken hostage. The five are able to rescue her, and as a reward, each one of them is granted the title of Imperial Knight—one of the highest honors a soldier can receive. It seems that Ikta will have to put his dream of tranquility on hold, as he must now become the hero he never wanted to be. + + [Written by MAL Rewrite] + background: Tenkyou no Alderamin adapts the first 3 novels of Bokuto Uno's light novel series of the same title. It + also utilizes content from the 7th novel in the 5th episode. + season: summer + year: 2016 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 30911 + url: https://myanimelist.net/anime/30911/Tales_of_Zestiria_the_Cross + images: + jpg: + image_url: https://myanimelist.net/images/anime/1739/124338.jpg + small_image_url: https://myanimelist.net/images/anime/1739/124338t.jpg + large_image_url: https://myanimelist.net/images/anime/1739/124338l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1739/124338.webp + small_image_url: https://myanimelist.net/images/anime/1739/124338t.webp + large_image_url: https://myanimelist.net/images/anime/1739/124338l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-h5iZ_osbJE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tales of Zestiria the Cross + - type: Synonym + title: Tales of Zestiria the X + - type: Japanese + title: テイルズ オブ ゼスティリア ザ クロス + - type: English + title: Tales of Zestiria the X + - type: German + title: Tales of Zestiria The X + - type: French + title: Tales of Zestiria The X + title: Tales of Zestiria the Cross + title_english: Tales of Zestiria the X + title_japanese: テイルズ オブ ゼスティリア ザ クロス + title_synonyms: + - Tales of Zestiria the X + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-10T00:00:00+00:00' + to: '2016-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2016 + to: + day: 25 + month: 9 + year: 2016 + string: Jul 10, 2016 to Sep 25, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.22 + scored_by: 150276 + rank: 3851 + popularity: 807 + members: 345178 + favorites: 804 + synopsis: |- + The Celestial Records speak of the existence of the "Seraphim," a race of divine beings who give blessings to humanity and are offered prayers by them in return. Those who are anointed with the ability to interact with these spirits are known as "Shepherds." Hailed as heroes for their prompt appearances in times of crisis, while also being feared for their power, the Shepherds are imprinted in common folklore along with the Seraphim. + + Sorey is a young human who has spent his entire life living in harmony alongside the Seraphim in the village of Elysia. Fascinated by the myths of the Celestial Records, he explores some nearby ruins with Mikleo—his childhood Seraphim companion—hoping to enlighten himself about the Seraphims' history with mankind. + + Unfortunately, they become trapped in the depths of the historical site during their investigation. While searching for an exit, they come across a mysterious girl who desperately seeks the help of a Shepherd to save the world, which is on the brink of being consumed by darkness. Despite Mikleo's warning about making contact with other humans, Sorey decides to help the stranger, which unknowingly leads him closer to the dream of peaceful coexistence between man and Seraphim. + + [Written by MAL Rewrite] + background: Tales of Zestiria the Cross is an animated television series adaptation of the Japanese role-playing game, + Tales of Zestiria, which is the fifteenth main entry in the Tales series. The game was developed by Bandai Namco Studios + and tri-Crescendo, and published by Bandai Namco Entertainment. It released in January 2015 in Japan on the Playstation + 3, and the Playstation 4 version was subsequently released in July 2016 in Japan. + season: summer + year: 2016 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1510 + type: anime + name: Anime Consortium Japan + url: https://myanimelist.net/anime/producer/1510/Anime_Consortium_Japan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32828 + url: https://myanimelist.net/anime/32828/Amaama_to_Inazuma + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/80546.jpg + small_image_url: https://myanimelist.net/images/anime/6/80546t.jpg + large_image_url: https://myanimelist.net/images/anime/6/80546l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/80546.webp + small_image_url: https://myanimelist.net/images/anime/6/80546t.webp + large_image_url: https://myanimelist.net/images/anime/6/80546l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dyDTqDFprlY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Amaama to Inazuma + - type: Japanese + title: 甘々と稲妻 + - type: English + title: Sweetness & Lightning + - type: German + title: Sweetness & Lightning + - type: Spanish + title: Sweetness & Lightning (Amaama to Inazuma) + - type: French + title: Sweetness & Lightning + title: Amaama to Inazuma + title_english: Sweetness & Lightning + title_japanese: 甘々と稲妻 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-05T00:00:00+00:00' + to: '2016-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2016 + to: + day: 20 + month: 9 + year: 2016 + string: Jul 5, 2016 to Sep 20, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 147635 + rank: 2088 + popularity: 812 + members: 343097 + favorites: 1293 + synopsis: |- + Since the death of his wife, Kouhei Inuzuka has been caring for his young daughter Tsumugi to the best of his abilities. However, with his lack of culinary knowledge and his busy job as a teacher, he is left relying on ready-made meals from convenience stores to feed the little girl. Frustrated at his own incapability to provide a fresh, nutritious meal for his daughter, Kouhei takes up an offer from his student, Kotori Iida, to come have dinner at her family's restaurant. But on their very first visit, the father and daughter discover that the restaurant is often closed due to Kotori's mother being away for work and that Kotori often eats alone. After much pleading from his pupil, Kouhei decides to continue to go to the restaurant with Tsumugi to cook and share delicious homemade food with Kotori. + + Amaama to Inazuma follows the heartwarming story of a caring father trying his hardest to make his adorable little daughter happy, while exploring the meanings and values behind cooking, family, and the warm meals at home that are often taken for granted. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Tuesdays + time: 01:05 + timezone: Asia/Tokyo + string: Tuesdays at 01:05 (JST) + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1507 + type: anime + name: Sumitomo + url: https://myanimelist.net/anime/producer/1507/Sumitomo + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 32648 + url: https://myanimelist.net/anime/32648/Handa-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/80752.jpg + small_image_url: https://myanimelist.net/images/anime/4/80752t.jpg + large_image_url: https://myanimelist.net/images/anime/4/80752l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/80752.webp + small_image_url: https://myanimelist.net/images/anime/4/80752t.webp + large_image_url: https://myanimelist.net/images/anime/4/80752l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ytcDOlydU_4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Handa-kun + - type: Japanese + title: はんだくん + - type: English + title: Handa-kun + title: Handa-kun + title_english: Handa-kun + title_japanese: はんだくん + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-08T00:00:00+00:00' + to: '2016-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2016 + to: + day: 23 + month: 9 + year: 2016 + string: Jul 8, 2016 to Sep 23, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 147077 + rank: 3038 + popularity: 847 + members: 332274 + favorites: 944 + synopsis: |- + Hated by everyone around him, Sei Handa goes about his high school life regarded as an outcast—or at least that is what he believes. In reality, Handa is the most popular student on campus, revered by all for his incomparable calligraphy skills, good looks, and cool personality. However, due to an endless series of misunderstandings, Handa perceives the worship he receives from his legions of fans as bullying, leading the school's idol to shut himself off from the rest of his classmates. + + But distancing himself from his peers does not deter them from adoring him; in fact, his attempts at drawing attention away from himself often end up unintentionally converting even the most skeptical of students into believers. Fashion models, shut-in delinquents, obsessive fangirls, and more—none can stand against the brilliance that is Sei Handa. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1283 + type: anime + name: TC Entertainment + url: https://myanimelist.net/anime/producer/1283/TC_Entertainment + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31952 + url: https://myanimelist.net/anime/31952/Kono_Bijutsu-bu_ni_wa_Mondai_ga_Aru + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/80688.jpg + small_image_url: https://myanimelist.net/images/anime/3/80688t.jpg + large_image_url: https://myanimelist.net/images/anime/3/80688l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/80688.webp + small_image_url: https://myanimelist.net/images/anime/3/80688t.webp + large_image_url: https://myanimelist.net/images/anime/3/80688l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/74nhsY34tpM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Bijutsu-bu ni wa Mondai ga Aru! + - type: Synonym + title: Konobi + - type: Japanese + title: この美術部には問題がある! + - type: English + title: This Art Club Has a Problem! + - type: German + title: This Art Club Has a Problem! + - type: Spanish + title: ¡Este Club de Arte tiene un Problema! (Kono Bijutsubu ni wa Mondai ga Aru!) + - type: French + title: This Art Club Has a Problem! + title: Kono Bijutsu-bu ni wa Mondai ga Aru! + title_english: This Art Club Has a Problem! + title_japanese: この美術部には問題がある! + title_synonyms: + - Konobi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-08T00:00:00+00:00' + to: '2016-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2016 + to: + day: 23 + month: 9 + year: 2016 + string: Jul 8, 2016 to Sep 23, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 138435 + rank: 4152 + popularity: 860 + members: 327159 + favorites: 824 + synopsis: |- + Mizuki Usami is a passionate member of her school's art club, but the club has a problem—Usami is the only member who takes her craft seriously! The lazy club president constantly sleeps through activities and Collette has not regularly attended club activities in quite some time. Subaru Uchimaki, despite being an exceptional artist who could win an award if he tried, is obsessed with drawing the perfect 2D wife. + + As Usami struggles to do art club-like activities, she is often obstructed by her motley crew of good-for-nothings and her distracting crush on Subaru. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Fridays + time: 02:28 + timezone: Asia/Tokyo + string: Fridays at 02:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 490 + type: anime + name: Maiden Japan + url: https://myanimelist.net/anime/producer/490/Maiden_Japan + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31845 + url: https://myanimelist.net/anime/31845/Masou_Gakuen_HxH + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/80262.jpg + small_image_url: https://myanimelist.net/images/anime/7/80262t.jpg + large_image_url: https://myanimelist.net/images/anime/7/80262l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/80262.webp + small_image_url: https://myanimelist.net/images/anime/7/80262t.webp + large_image_url: https://myanimelist.net/images/anime/7/80262l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EUvKVj_dKKU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Masou Gakuen HxH + - type: Synonym + title: Masou Gakuen Hybrid x Heart + - type: Japanese + title: 魔装学園H×H + - type: English + title: Hybrid x Heart Magias Academy Ataraxia + - type: German + title: Hybrid x Heart Magias Academy Ataraxia + - type: Spanish + title: Hybrid x Heart Magias Academy Ataraxia + - type: French + title: Hybrid x Heart Magias Academy Ataraxia + title: Masou Gakuen HxH + title_english: Hybrid x Heart Magias Academy Ataraxia + title_japanese: 魔装学園H×H + title_synonyms: + - Masou Gakuen Hybrid x Heart + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-06T00:00:00+00:00' + to: '2016-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2016 + to: + day: 21 + month: 9 + year: 2016 + string: Jul 6, 2016 to Sep 21, 2016 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.11 + scored_by: 139431 + rank: 10429 + popularity: 892 + members: 317972 + favorites: 835 + synopsis: |- + Hida Kizuna possesses the HHG (Heart Hybrid Gear) ability, but it is not strong enough to make him particularly important. His older sister calls him to transfer to a strategic defense school, where many of the students (many of which are large-breasted girls) use their HHG abilities to fight invaders from another world while wearing extremely skimpy pilot outfits. Kizuna's fighting ability doesn't measure up, but his sister has another plan—apparently having erotic experiences with Kizuna will allow the girls to replenish their energy or power-up. It looks like his new school life is going to be full of embarrassment. + + (Source: MangaHelpers) + background: '' + season: summer + year: 2016 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1053 + type: anime + name: Production IMS + url: https://myanimelist.net/anime/producer/1053/Production_IMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 31229 + url: https://myanimelist.net/anime/31229/Servamp + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/80953.jpg + small_image_url: https://myanimelist.net/images/anime/8/80953t.jpg + large_image_url: https://myanimelist.net/images/anime/8/80953l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/80953.webp + small_image_url: https://myanimelist.net/images/anime/8/80953t.webp + large_image_url: https://myanimelist.net/images/anime/8/80953l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/R_zJEoQBi_8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Servamp + - type: Japanese + title: SERVAMP(サーヴァンプ) + - type: English + title: Servamp + title: Servamp + title_english: Servamp + title_japanese: SERVAMP(サーヴァンプ) + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-05T00:00:00+00:00' + to: '2016-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2016 + to: + day: 20 + month: 9 + year: 2016 + string: Jul 5, 2016 to Sep 20, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.88 + scored_by: 125854 + rank: 5828 + popularity: 913 + members: 309245 + favorites: 1356 + synopsis: |- + Mahiru Shirota firmly believes that simple is best and troublesome things should be avoided at all costs. It is troublesome to do nothing and regret it later—and this ideology has led the 15-year-old to pick up a stray cat on his way home from school. As he affectionately names the feline Kuro, little does he know that this chance meeting will spark an extraordinary change in his everyday life. + + One day, Mahiru returns home to find something quite strange: a mysterious young man he has never seen before. His subsequent panic results in the uninvited guest being exposed to sunlight and—much to Mahiru's shock—transforming into Kuro! Upon revealing himself as a mere lazy shut-in vampire, Kuro promises to leave once night falls. However, one disaster after another leads to Mahiru accidentally forming a contract with his new freeloader, dragging him into a life-threatening battle of supernatural servants and bloodthirsty beings that is anything but simple. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1502 + type: anime + name: Adores + url: https://myanimelist.net/anime/producer/1502/Adores + - mal_id: 1503 + type: anime + name: Heroz + url: https://myanimelist.net/anime/producer/1503/Heroz + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 29758 + url: https://myanimelist.net/anime/29758/Taboo_Tattoo + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/80197.jpg + small_image_url: https://myanimelist.net/images/anime/12/80197t.jpg + large_image_url: https://myanimelist.net/images/anime/12/80197l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/80197.webp + small_image_url: https://myanimelist.net/images/anime/12/80197t.webp + large_image_url: https://myanimelist.net/images/anime/12/80197l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rzfSLQODed0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Taboo Tattoo + - type: Japanese + title: タブー・タトゥー + - type: English + title: Taboo Tattoo + title: Taboo Tattoo + title_english: Taboo Tattoo + title_japanese: タブー・タトゥー + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-05T00:00:00+00:00' + to: '2016-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2016 + to: + day: 20 + month: 9 + year: 2016 + string: Jul 5, 2016 to Sep 20, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 5.74 + scored_by: 132668 + rank: 12286 + popularity: 915 + members: 308177 + favorites: 261 + synopsis: |- + By all accounts, middle schooler Seigi is pretty unremarkable except for his martial arts prowess and a desire to protect the weak. But when his good intentions are put to the test by saving an old homeless man from some street thugs, the mysterious man shows his gratitude by...burning a tattoo onto Seigi's palm?! It turns out, the tattoo is a powerful secret weapon that everyone--including a formidable girl with a tattoo of her own--is after. With his life on the line and his martial arts skills alone no match against super-powered foes, will Seigi be able to unlock the latent potential of his tattoo and live to fight another day?! + + (Source: Yen Press) + background: '' + season: summer + year: 2016 + broadcast: + day: Tuesdays + time: 02:05 + timezone: Asia/Tokyo + string: Tuesdays at 02:05 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1469 + type: anime + name: BS TV Tokyo + url: https://myanimelist.net/anime/producer/1469/BS_TV_Tokyo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 32902 + url: https://myanimelist.net/anime/32902/Mahoutsukai_no_Yome__Hoshi_Matsu_Hito + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/80587.jpg + small_image_url: https://myanimelist.net/images/anime/4/80587t.jpg + large_image_url: https://myanimelist.net/images/anime/4/80587l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/80587.webp + small_image_url: https://myanimelist.net/images/anime/4/80587t.webp + large_image_url: https://myanimelist.net/images/anime/4/80587l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hGnMRRAvd8s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mahoutsukai no Yome: Hoshi Matsu Hito' + - type: Synonym + title: The Magician's Bride + - type: Synonym + title: Mahoyome + - type: Japanese + title: 魔法使いの嫁 星待つひと + - type: English + title: 'The Ancient Magus'' Bride: Those Awaiting a Star' + - type: German + title: 'The Ancient Magus'' Bride: Those Awaiting a Star' + - type: Spanish + title: 'The Ancient Magus'' Bride: Those Awaiting a Star' + - type: French + title: 'The Ancient Magus'' Bride: Those Awaiting a Star' + title: 'Mahoutsukai no Yome: Hoshi Matsu Hito' + title_english: 'The Ancient Magus'' Bride: Those Awaiting a Star' + title_japanese: 魔法使いの嫁 星待つひと + title_synonyms: + - The Magician's Bride + - Mahoyome + type: OVA + source: Manga + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2016-09-10T00:00:00+00:00' + to: '2017-09-09T00:00:00+00:00' + prop: + from: + day: 10 + month: 9 + year: 2016 + to: + day: 9 + month: 9 + year: 2017 + string: Sep 10, 2016 to Sep 9, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.09 + scored_by: 134495 + rank: 616 + popularity: 935 + members: 299114 + favorites: 762 + synopsis: |- + Angelica sends Chise some magic supplies including a present. The present turns out to be a book Chise read in her childhood. Elias asks Chise to tell him the story behind the book. Chise tells him about Miura-san and the mysterious library she found in the forest as a child. + + [Written by MAL Rewrite] + background: 'Mahoutsukai no Yome: Hoshi Matsu Hito takes place during episode 13 of Mahoutsukai no Yome.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31490 + url: https://myanimelist.net/anime/31490/One_Piece_Film__Gold + images: + jpg: + image_url: https://myanimelist.net/images/anime/1081/137690.jpg + small_image_url: https://myanimelist.net/images/anime/1081/137690t.jpg + large_image_url: https://myanimelist.net/images/anime/1081/137690l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1081/137690.webp + small_image_url: https://myanimelist.net/images/anime/1081/137690t.webp + large_image_url: https://myanimelist.net/images/anime/1081/137690l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_shEgcWHC2U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece Film: Gold' + - type: Synonym + title: One Piece Movie 13 + - type: Japanese + title: ONE PIECE FILM GOLD + - type: German + title: 'One Piece Film 13: Gold' + - type: Spanish + title: 'One Piece Película 13: Gold' + - type: French + title: 'One Piece Film 13: Gold' + title: 'One Piece Film: Gold' + title_english: null + title_japanese: ONE PIECE FILM GOLD + title_synonyms: + - One Piece Movie 13 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-07-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 7 + year: 2016 + to: + day: null + month: null + year: null + string: Jul 23, 2016 + duration: 2 hr + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 150406 + rank: 1039 + popularity: 1124 + members: 251596 + favorites: 492 + synopsis: |- + Monkey D. Luffy and his Straw Hat Crew have finally arrived on Gran Tesoro, a ship carrying the largest entertainment city in the world. Drawn in by the chances of hitting the jackpot, the crew immediately head to the casino. There, they quickly find themselves on a winning streak, playing with what seems to be endless luck. + + When offered a special gamble by Gild Tesoro—the master of the city himself—the crew agrees, choosing to believe in their captain's luck. However, when they find themselves victims of a despicable scam, the crew quickly realize that there is something darker happening beneath the city's surface. + + Left penniless and beaten down, the Straw Hat Crew are forced to rely on another gamble of a plan. With the help of a new friend or two, the group must work to reclaim what they've lost before time, and what remains of their luck, runs out. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33421 + url: https://myanimelist.net/anime/33421/Yi_Ren_Zhi_Xia + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/80346.jpg + small_image_url: https://myanimelist.net/images/anime/12/80346t.jpg + large_image_url: https://myanimelist.net/images/anime/12/80346l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/80346.webp + small_image_url: https://myanimelist.net/images/anime/12/80346t.webp + large_image_url: https://myanimelist.net/images/anime/12/80346l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_h-HJ7Sy98M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yi Ren Zhi Xia + - type: Synonym + title: Hitori no Shita - The Outcast + - type: Japanese + title: 一人之下 THE OUTCAST + - type: English + title: The Outcast Season 1 + - type: French + title: Hitori no Shita - The Outcast + title: Yi Ren Zhi Xia + title_english: The Outcast Season 1 + title_japanese: 一人之下 THE OUTCAST + title_synonyms: + - Hitori no Shita - The Outcast + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-07-08T00:00:00+00:00' + to: '2016-09-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2016 + to: + day: 24 + month: 9 + year: 2016 + string: Jul 8, 2016 to Sep 24, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.82 + scored_by: 66952 + rank: 6199 + popularity: 1257 + members: 224535 + favorites: 535 + synopsis: |- + When university student Zhang Chulan returns to his home village, he is devastated to learn that his grandfather Zhang Xilin's grave has been desecrated. As he investigates the cemetery in search for clues, he is attacked by a tomb raider using the false identity of Zhang Xilin's granddaughter. Left to die in a swarm of zombies summoned by the person who spirited his grandfather's body away, Zhang Chulan manages to escape thanks to qi, the power that his grandfather taught him. + + When Zhang Chulan returns to his uneventful student life, he is shocked to again meet the tomb raider, Feng Baobao, who condemned him to a grim fate. Affiliated with a state organization tasked with handling outcasts known as qi wielders, Baobao forces him to join a delivery company that acts as a front for their true pursuits. + + As various factions clash to seize the mysterious power Zhang Chulan is said to have inherited from his grandfather, the young man must learn how to choose his allies if he wants to survive in this dangerous world of outcasts. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2016 + broadcast: + day: Saturdays + time: '21:00' + timezone: Asia/Tokyo + string: Saturdays at 21:00 (JST) + producers: + - mal_id: 1325 + type: anime + name: Haoliners Animation + url: https://myanimelist.net/anime/producer/1325/Haoliners_Animation + - mal_id: 1349 + type: anime + name: Tencent Animation & Comics + url: https://myanimelist.net/anime/producer/1349/Tencent_Animation___Comics + - mal_id: 1530 + type: anime + name: Emon + url: https://myanimelist.net/anime/producer/1530/Emon + licensors: [] + studios: + - mal_id: 1536 + type: anime + name: Namu Animation + url: https://myanimelist.net/anime/producer/1536/Namu_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/28-2016-fall.yaml b/test/fixtures/jikan/season_matrix/28-2016-fall.yaml new file mode 100644 index 0000000..a633dfd --- /dev/null +++ b/test/fixtures/jikan/season_matrix/28-2016-fall.yaml @@ -0,0 +1,3379 @@ +metadata: + captured_at: '2026-05-11T11:33:35Z' + label: 2016-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2016/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:34 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:e725d0780a804949565cdaecaa1478ecb8ea46bc + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 325 + per_page: 25 + data: + - mal_id: 32935 + url: https://myanimelist.net/anime/32935/Haikyuu_Karasuno_Koukou_vs_Shiratorizawa_Gakuen_Koukou + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/81992.jpg + small_image_url: https://myanimelist.net/images/anime/7/81992t.jpg + large_image_url: https://myanimelist.net/images/anime/7/81992l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/81992.webp + small_image_url: https://myanimelist.net/images/anime/7/81992t.webp + large_image_url: https://myanimelist.net/images/anime/7/81992l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kJfU5boNUIE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou + - type: Synonym + title: Haikyuu!! Third Season + - type: Synonym + title: Haikyuu!! Karasuno High VS Shiratorizawa Academy + - type: Japanese + title: ハイキュー!! 烏野高校 VS 白鳥沢学園高校 + - type: English + title: Haikyu!! 3rd Season + - type: German + title: Haikyuu!!Staffel 3 Karasuno vs. Shiratorizawa + - type: Spanish + title: Haikyu!! Los Ases del Vóley Temporada 3 + - type: French + title: Haikyuu!! Saison 3 + title: Haikyuu!! Karasuno Koukou vs. Shiratorizawa Gakuen Koukou + title_english: Haikyu!! 3rd Season + title_japanese: ハイキュー!! 烏野高校 VS 白鳥沢学園高校 + title_synonyms: + - Haikyuu!! Third Season + - Haikyuu!! Karasuno High VS Shiratorizawa Academy + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2016-10-08T00:00:00+00:00' + to: '2016-12-10T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2016 + to: + day: 10 + month: 12 + year: 2016 + string: Oct 8, 2016 to Dec 10, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.77 + scored_by: 874920 + rank: 44 + popularity: 116 + members: 1328254 + favorites: 16002 + synopsis: |- + After the victory against Aoba Jousai High, Karasuno High School, once called “a fallen powerhouse, a crow that can’t fly,” has finally reached the climax of the heated Spring tournament. Now, to advance to nationals, the Karasuno team has to defeat the powerhouse Shiratorizawa Academy. Karasuno’s greatest hurdle is their adversary’s ace, Wakatoshi Ushijima, the number one player in the Miyagi Prefecture, and one of the country’s top three aces. + + Only the strongest team will make it to the national tournament. Since this match is the third-year players’ last chance to qualify for nationals, Karasuno has to use everything they learned during the training camp and prior matches to attain victory. Filled with restlessness and excitement, both teams are determined to come out on top in the third season of Haikyuu!!. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32995 + url: https://myanimelist.net/anime/32995/Yuri_on_Ice + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/81149.jpg + small_image_url: https://myanimelist.net/images/anime/6/81149t.jpg + large_image_url: https://myanimelist.net/images/anime/6/81149l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/81149.webp + small_image_url: https://myanimelist.net/images/anime/6/81149t.webp + large_image_url: https://myanimelist.net/images/anime/6/81149l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9-xcX0sqkkA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuri!!! on Ice + - type: Japanese + title: ユーリ!!! on ICE + - type: English + title: Yuri!!! On Ice + title: Yuri!!! on Ice + title_english: Yuri!!! On Ice + title_japanese: ユーリ!!! on ICE + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-06T00:00:00+00:00' + to: '2016-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2016 + to: + day: 22 + month: 12 + year: 2016 + string: Oct 6, 2016 to Dec 22, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 569040 + rank: 956 + popularity: 210 + members: 953951 + favorites: 21580 + synopsis: |- + Reeling from his crushing defeat at the Grand Prix Finale, Yuuri Katsuki, once Japan's most promising figure skater, returns to his family home to assess his options for the future. At age 23, Yuuri's window for success in skating is closing rapidly, and his love of pork cutlets and aptitude for gaining weight are not helping either. + + However, Yuuri finds himself in the spotlight when a video of him performing a routine previously executed by five-time world champion, Victor Nikiforov, suddenly goes viral. In fact, Victor himself abruptly appears at Yuuri's house and offers to be his mentor. As one of his biggest fans, Yuuri eagerly accepts, kicking off his journey to make it back onto the world stage. But the competition is fierce, as the rising star from Russia, Yuri Plisetsky, is relentlessly determined to defeat Yuuri and win back Victor's tutelage. + + [Written by MAL Rewrite] + background: Yuri!!! on Ice won the Animation of the Year award in the Television category at the Tokyo Anime Award Festival + in 2017. + season: fall + year: 2016 + broadcast: + day: Thursdays + time: 02:21 + timezone: Asia/Tokyo + string: Thursdays at 02:21 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1586 + type: anime + name: CIC + url: https://myanimelist.net/anime/producer/1586/CIC + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: [] + - mal_id: 32867 + url: https://myanimelist.net/anime/32867/Bungou_Stray_Dogs_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1572/133096.jpg + small_image_url: https://myanimelist.net/images/anime/1572/133096t.jpg + large_image_url: https://myanimelist.net/images/anime/1572/133096l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1572/133096.webp + small_image_url: https://myanimelist.net/images/anime/1572/133096t.webp + large_image_url: https://myanimelist.net/images/anime/1572/133096l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A70E8AXQhjg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bungou Stray Dogs 2nd Season + - type: Japanese + title: 文豪ストレイドッグス + - type: English + title: Bungo Stray Dogs 2 + - type: German + title: Bungo Stray Dogs Staffel 2 + - type: Spanish + title: Bungo Stray Dogs 2 + - type: French + title: Bungo Stray Dogs Saison 2 + title: Bungou Stray Dogs 2nd Season + title_english: Bungo Stray Dogs 2 + title_japanese: 文豪ストレイドッグス + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-06T00:00:00+00:00' + to: '2016-12-16T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2016 + to: + day: 16 + month: 12 + year: 2016 + string: Oct 6, 2016 to Dec 16, 2016 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.16 + scored_by: 544935 + rank: 502 + popularity: 211 + members: 953736 + favorites: 6838 + synopsis: "Despite their differences in position, three men—the youngest senior executive of the Port Mafia, Osamu Dazai;\ + \ the lowest ranking member, Sakunosuke Oda; and the intelligence agent, Ango Sakaguchi—gather at the Lupin Bar at\ + \ the end of the day to relax and take delight in the company of friends.\n\nHowever, one night, Ango disappears.\ + \ A photograph taken at the bar is all that is left of the three together.\n\nFast forward to the present, and Dazai\ + \ is now a member of the Armed Detective Agency. The Guild, an American gifted organization, has entered the fray\ + \ and is intent on taking the Agency's work permit. They must now divide their attention between the two groups, the\ + \ Guild and the Port Mafia, who oppose their very existence. \n\n[Written by MAL Rewrite]" + background: This season adapts chapters 15 through 37 of the manga. + season: fall + year: 2016 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31646 + url: https://myanimelist.net/anime/31646/3-gatsu_no_Lion + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/82899.jpg + small_image_url: https://myanimelist.net/images/anime/3/82899t.jpg + large_image_url: https://myanimelist.net/images/anime/3/82899l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/82899.webp + small_image_url: https://myanimelist.net/images/anime/3/82899t.webp + large_image_url: https://myanimelist.net/images/anime/3/82899l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZL5nnx4vd7k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 3-gatsu no Lion + - type: Synonym + title: Sangatsu no Lion + - type: Japanese + title: 3月のライオン + - type: English + title: March Comes In Like a Lion + - type: German + title: March Comes in Like a Lion + - type: Spanish + title: March Comes in Like a Lion + - type: French + title: March Comes in Like a Lion + title: 3-gatsu no Lion + title_english: March Comes In Like a Lion + title_japanese: 3月のライオン + title_synonyms: + - Sangatsu no Lion + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2016-10-08T00:00:00+00:00' + to: '2017-03-18T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2016 + to: + day: 18 + month: 3 + year: 2017 + string: Oct 8, 2016 to Mar 18, 2017 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.37 + scored_by: 301567 + rank: 250 + popularity: 316 + members: 735267 + favorites: 16433 + synopsis: |- + Having reached professional status in middle school, Rei Kiriyama is one of the few elite in the world of shogi. Due to this, he faces an enormous amount of pressure, both from the shogi community and his adoptive family. Seeking independence from his tense home life, he moves into an apartment in Tokyo. As a 17-year-old living on his own, Rei tends to take poor care of himself, and his reclusive personality ostracizes him from his peers in school and at the shogi hall. + + However, not long after his arrival in Tokyo, Rei meets Akari, Hinata, and Momo Kawamoto, a trio of sisters living with their grandfather who owns a traditional wagashi shop. Akari, the oldest of the three girls, is determined to combat Rei's loneliness and poorly sustained lifestyle with motherly hospitality. The Kawamoto sisters, coping with past tragedies, also share with Rei a unique familial bond that he has lacked for most of his life. As he struggles to maintain himself physically and mentally through his shogi career, Rei must learn how to interact with others and understand his own complex emotions. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 31339 + url: https://myanimelist.net/anime/31339/Drifters + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/80271.jpg + small_image_url: https://myanimelist.net/images/anime/10/80271t.jpg + large_image_url: https://myanimelist.net/images/anime/10/80271l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/80271.webp + small_image_url: https://myanimelist.net/images/anime/10/80271t.webp + large_image_url: https://myanimelist.net/images/anime/10/80271l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nw-btdhO8mg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Drifters + - type: Synonym + title: 'Drifters: Battle in a Brand-new World War' + - type: Japanese + title: DRIFTERS + - type: English + title: Drifters + - type: Spanish + title: 'Drifters: Battle in a Brand-new World War' + title: Drifters + title_english: Drifters + title_japanese: DRIFTERS + title_synonyms: + - 'Drifters: Battle in a Brand-new World War' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-07T00:00:00+00:00' + to: '2016-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2016 + to: + day: 23 + month: 12 + year: 2016 + string: Oct 7, 2016 to Dec 23, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.88 + scored_by: 292221 + rank: 988 + popularity: 403 + members: 618606 + favorites: 4309 + synopsis: |- + At the Battle of Sekigahara in 1600, Toyohisa Shimazu is the rearguard for his retreating troops, and is critically wounded when he suddenly finds himself in a modern, gleaming white hallway. Faced with only a stoic man named Murasaki and hundreds of doors on both sides, Toyohisa is pulled into the nearest door and into a world completely unlike his own. + + The strange land is populated by all manner of fantastical creatures, as well as warriors from different eras of Toyohisa's world who were thought to be dead. Quickly befriending the infamous warlord Nobunaga Oda and the ancient archer Yoichi Suketaka Nasu, Toyohisa learns of the political unrest tearing through the continent. Furthermore, they have been summoned as "Drifters" to fight against the "Ends," people who are responsible for the creation of the Orte Empire and are trying to annihilate the Drifters. As the Ends grow more powerful, so does the Empire's persecution of elves and other demihumans. It is up to Toyohisa and his group of unconventional heroes to battle in a brand-new world war to help the Empire's subjects, while challenging the Ends protecting the land to claim it for themselves. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1553 + type: anime + name: Shounen Gahousha + url: https://myanimelist.net/anime/producer/1553/Shounen_Gahousha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 32899 + url: https://myanimelist.net/anime/32899/Watashi_ga_Motete_Dousunda + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/81953.jpg + small_image_url: https://myanimelist.net/images/anime/4/81953t.jpg + large_image_url: https://myanimelist.net/images/anime/4/81953l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/81953.webp + small_image_url: https://myanimelist.net/images/anime/4/81953t.webp + large_image_url: https://myanimelist.net/images/anime/4/81953l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/d6Eh-y9BnUg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi ga Motete Dousunda + - type: Japanese + title: 私がモテてどうすんだ + - type: English + title: Kiss Him, Not Me! + - type: German + title: Küss Ihn, Nicht Mich! + - type: Spanish + title: Kiss Him, Not Me + - type: French + title: Kiss Him, Not Me + title: Watashi ga Motete Dousunda + title_english: Kiss Him, Not Me! + title_japanese: 私がモテてどうすんだ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-07T00:00:00+00:00' + to: '2016-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2016 + to: + day: 23 + month: 12 + year: 2016 + string: Oct 7, 2016 to Dec 23, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.93 + scored_by: 245703 + rank: 5554 + popularity: 530 + members: 493147 + favorites: 2008 + synopsis: "Kae Serinuma is a very kind second-year high school student and a devoted otaku. A little known fact about\ + \ her, though, is that she's obsessed with BL, or Boy's Love. Serinuma can't help but to fantasize about her male\ + \ classmates falling for each other and enjoys imagining them together. A more known fact about Serinuma, however,\ + \ is that she’s noticeably overweight. \n\nWhile watching her favorite show one day, Serinuma witnesses the death\ + \ of her most beloved character. Utterly depressed, she can't muster up the energy to eat her meals, let alone attend\ + \ school. After an entire week, she finally recovers. But now there's something unusual about her—during the time\ + \ she refused to leave her room, she ended up losing a large amount of weight and has somehow become strikingly beautiful!\n\ + \nNow catching the eye of everyone who sees her, she finds herself at the center of attention of four boys she has\ + \ always known at her school. Though they all wish to spend time with her, Serinuma would much rather they spend time\ + \ falling in love with one another. How will Serinuma deal with the four boys pursuing her BL-obsessed self?\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: fall + year: 2016 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 32686 + url: https://myanimelist.net/anime/32686/Keijo + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/81906.jpg + small_image_url: https://myanimelist.net/images/anime/10/81906t.jpg + large_image_url: https://myanimelist.net/images/anime/10/81906l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/81906.webp + small_image_url: https://myanimelist.net/images/anime/10/81906t.webp + large_image_url: https://myanimelist.net/images/anime/10/81906l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9dfQVsgO16Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Keijo!!!!!!!! + - type: Japanese + title: 競女!!!!!!!! + - type: English + title: Keijo!!!!!!!! + title: Keijo!!!!!!!! + title_english: Keijo!!!!!!!! + title_japanese: 競女!!!!!!!! + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-06T00:00:00+00:00' + to: '2016-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2016 + to: + day: 22 + month: 12 + year: 2016 + string: Oct 6, 2016 to Dec 22, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.9 + scored_by: 206577 + rank: 5697 + popularity: 630 + members: 427493 + favorites: 1484 + synopsis: |- + Japan's latest competitive sport, keijo, is dictated by a simple set of rules: female-only participants must stand on circular platforms floating in a pool—referred to as "lands"—with the goal being to knocking off opponents using only their breasts and butts. Despite this outlandish premise, the sport attracts millions of viewers across the country and boasts a lavish prize pool. Many aspiring athletes take up the challenge in hopes of becoming the next national champion. + + After graduating from high school, the lively 18-year-old Nozomi Kaminashi enters the world of keijo, hoping to bring home a fortune to her poor family. As a gifted gymnast, Nozomi quickly proves herself a tough competitor after stealing the spotlight in her debut tournament. Meeting new friends and rivals as she climbs the ranks, Nozomi discovers that the path to stardom as a keijo player is filled with intense competition that will challenge not only her body, but also her soul. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1631 + type: anime + name: Radio Osaka + url: https://myanimelist.net/anime/producer/1631/Radio_Osaka + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30016 + url: https://myanimelist.net/anime/30016/Nanbaka + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/81399.jpg + small_image_url: https://myanimelist.net/images/anime/2/81399t.jpg + large_image_url: https://myanimelist.net/images/anime/2/81399l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/81399.webp + small_image_url: https://myanimelist.net/images/anime/2/81399t.webp + large_image_url: https://myanimelist.net/images/anime/2/81399l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NWyuTZHm1E0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nanbaka + - type: Synonym + title: Nambaka + - type: Synonym + title: Numbaka + - type: Synonym + title: The Numbers + - type: Japanese + title: ナンバカ + - type: English + title: Nanbaka + title: Nanbaka + title_english: Nanbaka + title_japanese: ナンバカ + title_synonyms: + - Nambaka + - Numbaka + - The Numbers + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-10-05T00:00:00+00:00' + to: '2016-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2016 + to: + day: 28 + month: 12 + year: 2016 + string: Oct 5, 2016 to Dec 28, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 155820 + rank: 3052 + popularity: 759 + members: 362490 + favorites: 2393 + synopsis: |- + Nanba is the world's most formidable prison, built to incarcerate criminals who are too slippery to stay in ordinary confinement. The four inmates who occupy Cell 13 are particularly cunning on that behalf, having escaped every other prison with a perfect success rate. There is Juugo, a specialist in locks who has spent the majority of his life in prison; Uno, a gambler with great intuition; Nico, an otaku whose body reacts strangely to drugs; and Rock, a bruiser with a love for food. The daily shenanigans of the four prisoners always cause trouble for the building supervisor, Hajime Sugoroku, who desperately tries to prevent them from breaking out of Nanba. + + Nanbaka follows the comedic, sparkle-filled exploits of these prisoners and their guards. From three square meals a day to sports festivals, prison life in Nanba isn't actually that bad—and it is the closest these four have to a home. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Wednesdays + time: 03:00 + timezone: Asia/Tokyo + string: Wednesdays at 03:00 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1481 + type: anime + name: comico + url: https://myanimelist.net/anime/producer/1481/comico + - mal_id: 1493 + type: anime + name: Tokuma Japan Communications + url: https://myanimelist.net/anime/producer/1493/Tokuma_Japan_Communications + - mal_id: 1555 + type: anime + name: Nelke Planning + url: https://myanimelist.net/anime/producer/1555/Nelke_Planning + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 34240 + url: https://myanimelist.net/anime/34240/Shelter_Music + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/82388.jpg + small_image_url: https://myanimelist.net/images/anime/5/82388t.jpg + large_image_url: https://myanimelist.net/images/anime/5/82388l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/82388.webp + small_image_url: https://myanimelist.net/images/anime/5/82388t.webp + large_image_url: https://myanimelist.net/images/anime/5/82388l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shelter (Music) + - type: Japanese + title: シェルター + - type: English + title: Shelter + title: Shelter (Music) + title_english: Shelter + title_japanese: シェルター + title_synonyms: [] + type: Music + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-10-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 10 + year: 2016 + to: + day: null + month: null + year: null + string: Oct 18, 2016 + duration: 6 min + rating: G - All Ages + score: 8.32 + scored_by: 220711 + rank: null + popularity: 855 + members: 328771 + favorites: 2419 + synopsis: |- + Day 2539: Rin wakes up alone again with blurred memories and still no contact from any other human. She is not bored, however, because in her arms lies a tablet capable of creating any world her heart desires. Day after day, Rin crafts a wonderful reality—one utopia at a time—to shelter her from loneliness, hoping to one day reveal the truth behind her very existence. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 33253 + url: https://myanimelist.net/anime/33253/Ajin_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/81858.jpg + small_image_url: https://myanimelist.net/images/anime/12/81858t.jpg + large_image_url: https://myanimelist.net/images/anime/12/81858l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/81858.webp + small_image_url: https://myanimelist.net/images/anime/12/81858t.webp + large_image_url: https://myanimelist.net/images/anime/12/81858l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sQAYvPNFZZI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ajin Part 2 + - type: Synonym + title: Ajin 2nd Season, + - type: Japanese + title: 亜人 第2クール + - type: English + title: 'Ajin: Demi-Human 2nd Season' + - type: German + title: Ajin Demi-Human Staffel 2 + - type: Spanish + title: 'Ajin: Semihumano Temporada 2' + - type: French + title: 'Ajin: Demi-Human Saison 2' + title: Ajin Part 2 + title_english: 'Ajin: Demi-Human 2nd Season' + title_japanese: 亜人 第2クール + title_synonyms: + - Ajin 2nd Season, + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-10-08T00:00:00+00:00' + to: '2016-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2016 + to: + day: 24 + month: 12 + year: 2016 + string: Oct 8, 2016 to Dec 24, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.56 + scored_by: 181128 + rank: 1959 + popularity: 901 + members: 313774 + favorites: 521 + synopsis: |- + After escaping certain death, Kei Nagai and his new companion Kou Nakano plot revenge on Satou, their fellow Ajin who is hellbent on world domination. As Satou embarks on a string of public executions, the human race rushes to come up with a solution to stop the immortal villain. + + Kei discovers unlikely allies in the form of two former adversaries: high-ranking government official Yuu Tosaki, whose extensive research on Ajin gives him a tactical advantage in the fight against Satou, and Tosaki's Ajin assistant Izumi Shimomura. As his faction continues to gather allies, Kei races against time to put a stop to Satou's crusade before it brings about an end to civilization as he knows it. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1023 + type: anime + name: Polygon Pictures + url: https://myanimelist.net/anime/producer/1023/Polygon_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 33161 + url: https://myanimelist.net/anime/33161/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_Zoku_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/84052.jpg + small_image_url: https://myanimelist.net/images/anime/13/84052t.jpg + large_image_url: https://myanimelist.net/images/anime/13/84052l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/84052.webp + small_image_url: https://myanimelist.net/images/anime/13/84052t.webp + large_image_url: https://myanimelist.net/images/anime/13/84052l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/72URg3ayiYU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA + - type: Synonym + title: Oregairu 2 OVA + - type: Synonym + title: 'Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku: Kitto' + - type: Synonym + title: Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru + - type: Japanese + title: やはり俺の青春ラブコメはまちがっている. 続 きっと, 女の子はお砂糖とスパイスと素敵な何かでできている。 + - type: English + title: My Teen Romantic Comedy SNAFU TOO! OVA + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku OVA + title_english: My Teen Romantic Comedy SNAFU TOO! OVA + title_japanese: やはり俺の青春ラブコメはまちがっている. 続 きっと, 女の子はお砂糖とスパイスと素敵な何かでできている。 + title_synonyms: + - Oregairu 2 OVA + - 'Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku: Kitto' + - Onnanoko wa Osatou to Spice to Suteki na Nanika de Dekiteiru + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-10-27T00:00:00+00:00' + to: null + prop: + from: + day: 27 + month: 10 + year: 2016 + to: + day: null + month: null + year: null + string: Oct 27, 2016 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 8.02 + scored_by: 160421 + rank: 729 + popularity: 1025 + members: 274620 + favorites: 508 + synopsis: |- + After accepting a weekend invitation, Hachiman Hikigaya accompanies Isshiki Iroha around the Chiba Prefecture to brainstorm ideas suitable for an ideal date with Hayato Hayama. As the duo wanders from place to place without a plan, they seemingly enjoy each other's company. Yet, through these straightforward and sincere interactions, the meaning behind what it means to be genuine continues to intrigue Hachiman and his outlook for the future of the Volunteer Service Club and its members. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31988 + url: https://myanimelist.net/anime/31988/Hibike_Euphonium_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/81155.jpg + small_image_url: https://myanimelist.net/images/anime/10/81155t.jpg + large_image_url: https://myanimelist.net/images/anime/10/81155l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/81155.webp + small_image_url: https://myanimelist.net/images/anime/10/81155t.webp + large_image_url: https://myanimelist.net/images/anime/10/81155l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/d2Di5swwzxg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hibike! Euphonium 2 + - type: Synonym + title: Hibike! Euphonium Second Season + - type: Japanese + title: 響け!ユーフォニアム2 + - type: English + title: Sound! Euphonium 2 + - type: German + title: Sound! Euphonium 2 + - type: Spanish + title: Sound! Euphonium 2 + - type: French + title: Sound! Euphonium 2 + title: Hibike! Euphonium 2 + title_english: Sound! Euphonium 2 + title_japanese: 響け!ユーフォニアム2 + title_synonyms: + - Hibike! Euphonium Second Season + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-10-06T00:00:00+00:00' + to: '2016-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2016 + to: + day: 29 + month: 12 + year: 2016 + string: Oct 6, 2016 to Dec 29, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.35 + scored_by: 136752 + rank: 278 + popularity: 1093 + members: 257612 + favorites: 3846 + synopsis: |- + Following their success in the qualifying round for the Kansai regional competition, the members of the Kitauji High School concert band set their sights on the next upcoming performance. Utilizing their summer break to the utmost, the band participates in a camp where they are instructed by their band advisor Noboru Taki and his friends who make their living as professional musicians. + + Kumiko Oumae and her friends remain determined to attain gold at the Kansai competition, but trouble arises when a student who once quit the band shows interest in rejoining and sparks unpleasant memories for the second-year members. Kumiko also learns about her teacher's surprising past and the motivation behind his desire to lead the band to victory. Reaching nationals will require hard work, and the adamant conviction in each student's commitment to the band will be put to the test. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 34321 + url: https://myanimelist.net/anime/34321/Fate_Grand_Order__First_Order + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/82651.jpg + small_image_url: https://myanimelist.net/images/anime/6/82651t.jpg + large_image_url: https://myanimelist.net/images/anime/6/82651l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/82651.webp + small_image_url: https://myanimelist.net/images/anime/6/82651t.webp + large_image_url: https://myanimelist.net/images/anime/6/82651l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OUx-VN-DDmk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/Grand Order: First Order' + - type: Japanese + title: Fate/Grand Order -First Order- + - type: English + title: Fate/Grand Order -First Order- + - type: German + title: Fate/Grand Order -First Order- + - type: Spanish + title: Fate/Grand Order -First Order- + - type: French + title: Fate/Grand Order -First Order- + title: 'Fate/Grand Order: First Order' + title_english: Fate/Grand Order -First Order- + title_japanese: Fate/Grand Order -First Order- + title_synonyms: [] + type: TV Special + source: Game + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-12-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 12 + year: 2016 + to: + day: null + month: null + year: null + string: Dec 31, 2016 + duration: 1 hr 12 min + rating: PG-13 - Teens 13 or older + score: 6.74 + scored_by: 140461 + rank: 6652 + popularity: 1170 + members: 243490 + favorites: 369 + synopsis: |- + In 2015, the Chaldea Security Organization draws on experts of both the magical and mundane fields to observe the future of mankind for possible extinction events. Humanity's survival seems assured for the next century—until the verdict suddenly changes, and now eradication of the species awaits at the end of 2016. The cause is unknown, but appears to be linked with the Japanese town of Fuyuki and the events of 2004 during the Fifth Holy Grail War. + + In response, Chaldea harnesses an experimental means of time travel, the Rayshift technology. With it, Ritsuka Fujimaru, a young man newly recruited to the organization, and the mysterious girl Mash Kyrielight, can travel back to 2004 and discover how to save humanity. A grand order to fight fate has been declared—an order to change the past and restore the future. + + [Written by MAL Rewrite] + background: 'Fate/Grand Order: First Order is adapted from the prologue chapter of the mobile game Fate/Grand Order.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 15227 + url: https://myanimelist.net/anime/15227/Kono_Sekai_no_Katasumi_ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/87704.jpg + small_image_url: https://myanimelist.net/images/anime/2/87704t.jpg + large_image_url: https://myanimelist.net/images/anime/2/87704l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/87704.webp + small_image_url: https://myanimelist.net/images/anime/2/87704t.webp + large_image_url: https://myanimelist.net/images/anime/2/87704l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gaRqwKfMlKU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Sekai no Katasumi ni + - type: Synonym + title: To All the Corners of the World + - type: Japanese + title: この世界の片隅に + - type: English + title: In This Corner of the World + - type: German + title: In this Corner of the World + - type: Spanish + title: En este Rincón del Mundo + - type: French + title: Dans Un Recoin de Ce Monde + title: Kono Sekai no Katasumi ni + title_english: In This Corner of the World + title_japanese: この世界の片隅に + title_synonyms: + - To All the Corners of the World + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-11-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 11 + year: 2016 + to: + day: null + month: null + year: null + string: Nov 12, 2016 + duration: 2 hr 48 min + rating: PG-13 - Teens 13 or older + score: 8.24 + scored_by: 84930 + rank: 395 + popularity: 1337 + members: 209309 + favorites: 1717 + synopsis: |- + Suzu Urano is a pure and kindhearted girl who loves to draw and keep her head in the clouds. Growing up in the outskirts of Hiroshima with her family, she is more than happy to help with her grandmother's nori business. + + However, when she becomes of age, Suzu leaves her beloved home to marry Shuusaku Houjou, a man she barely knows. As she integrates into her new husband's household, the homesick bride struggles to adjust to the unfamiliar environment as the war effort extends far beyond its point of no return. When the war reaches Suzu's own backyard and peace gives way to brutality, how will she support herself and those she comes to love along the way? + + Kono Sekai no Katasumi ni paints a colorful yet haunting depiction of everyday life in the years before and after World War II, showcasing the perseverance and fortitude of ordinary Japanese during one of the darkest periods of modern history. + + [Written by MAL Rewrite] + background: Winner of the 40th Japan Academy Award for Best Animation Award, the 90th Kinema Junpo Best Ten Japan Film + Best 1 and Director Award, 71st Mainichi Film Concurs Japanese Movie Excellence Award and Ofuji Nobushiro Prize, 59th + Blue Ribbon Award Director Award, Hiroshima Peace Film Award during the 3rd Hiroshima International Film Festival, + and the Best Film during the 38th Yokohama Film Festival. It also won the Grand Prize Award on the 21st Japan Media + Arts Festival. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 1528 + type: anime + name: Animatsu Entertainment + url: https://myanimelist.net/anime/producer/1528/Animatsu_Entertainment + licensors: + - mal_id: 1737 + type: anime + name: Shout! Factory + url: https://myanimelist.net/anime/producer/1737/Shout_Factory + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 33286 + url: https://myanimelist.net/anime/33286/Strike_the_Blood_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1600/111675.jpg + small_image_url: https://myanimelist.net/images/anime/1600/111675t.jpg + large_image_url: https://myanimelist.net/images/anime/1600/111675l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1600/111675.webp + small_image_url: https://myanimelist.net/images/anime/1600/111675t.webp + large_image_url: https://myanimelist.net/images/anime/1600/111675l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nkgKoBuUdW0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Strike the Blood II + - type: Japanese + title: ストライク・ザ・ブラッドⅡ + - type: English + title: Strike the Blood Second + - type: Spanish + title: Strike The Blood Second + - type: French + title: Strike the Blood Second + title: Strike the Blood II + title_english: Strike the Blood Second + title_japanese: ストライク・ザ・ブラッドⅡ + title_synonyms: [] + type: OVA + source: Light novel + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2016-11-23T00:00:00+00:00' + to: '2017-05-24T00:00:00+00:00' + prop: + from: + day: 23 + month: 11 + year: 2016 + to: + day: 24 + month: 5 + year: 2017 + string: Nov 23, 2016 to May 24, 2017 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 6.95 + scored_by: 94105 + rank: 5429 + popularity: 1344 + members: 208922 + favorites: 229 + synopsis: The second season of Strike the Blood which adapts three arcs from the 9th, 11th, and 12th light novel volumes. + background: Strike the Blood II adapts three arcs from the ninth, 11th, and 12th volumes of the light novel series. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 32983 + url: https://myanimelist.net/anime/32983/Natsume_Yuujinchou_Go + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/81755.jpg + small_image_url: https://myanimelist.net/images/anime/11/81755t.jpg + large_image_url: https://myanimelist.net/images/anime/11/81755l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/81755.webp + small_image_url: https://myanimelist.net/images/anime/11/81755t.webp + large_image_url: https://myanimelist.net/images/anime/11/81755l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Natsume Yuujinchou Go + - type: Synonym + title: Natsume Yuujinchou Season 5 + - type: Synonym + title: Natsume's Book of Friends Five + - type: Japanese + title: 夏目友人帳 伍 + - type: English + title: Natsume's Book of Friends Season 5 + - type: German + title: Natsume Yujin-cho 5 + - type: Spanish + title: Natsume Yujin-cho 5 + - type: French + title: Natsume Yujin-cho 5 + title: Natsume Yuujinchou Go + title_english: Natsume's Book of Friends Season 5 + title_japanese: 夏目友人帳 伍 + title_synonyms: + - Natsume Yuujinchou Season 5 + - Natsume's Book of Friends Five + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2016-10-05T00:00:00+00:00' + to: '2016-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2016 + to: + day: 21 + month: 12 + year: 2016 + string: Oct 5, 2016 to Dec 21, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.56 + scored_by: 84045 + rank: 131 + popularity: 1356 + members: 206286 + favorites: 907 + synopsis: |- + Blessed with eyes that are able to perceive the otherwise invisible youkai, Takashi Natsume hides his ability from his newfound family and friends to protect everyone's peaceful daily life. Nonetheless, Natsume never fails to show the same kindness to the benevolent youkai and happily returns their names by using the infamous Book of Friends he inherited from his late grandmother, Reiko. + + Meanwhile, the exorcist clan Matoba still wishes for Natsume to join their ranks due to his overwhelming gift. However, Natsume firmly rejects the clan's invitation since not all exorcists are as reasonable as his friend Shuuichi Natori, and many improperly and indiscriminately seal away every youkai in their way. Unsatisfied with Natsume's answer, Seiji Matoba blackmails Natsume into attending a grand gathering of powerful exorcist families. Natsume soon finds himself in the company of dangerous people and youkai alike. But even then, he continues to defy the exorcists' hard-handed methods and believes that peace between both worlds is possible. + + [Written by MAL Rewrite] + background: Natsume Yuujinchou Go was released on Blu-ray and DVD in five volumes from December 21, 2016 to April 26, + 2017. + season: fall + year: 2016 + broadcast: + day: Wednesdays + time: 01:35 + timezone: Asia/Tokyo + string: Wednesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + licensors: [] + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 32962 + url: https://myanimelist.net/anime/32962/Occultic_Nine + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/81186.jpg + small_image_url: https://myanimelist.net/images/anime/8/81186t.jpg + large_image_url: https://myanimelist.net/images/anime/8/81186l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/81186.webp + small_image_url: https://myanimelist.net/images/anime/8/81186t.webp + large_image_url: https://myanimelist.net/images/anime/8/81186l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/e9Ie5wXlELo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Occultic;Nine + - type: Synonym + title: Occultic9 + - type: Synonym + title: Occultic Nine + - type: Japanese + title: Occultic;Nine -オカルティック・ナイン- + - type: English + title: Occultic;Nine + title: Occultic;Nine + title_english: Occultic;Nine + title_japanese: Occultic;Nine -オカルティック・ナイン- + title_synonyms: + - Occultic9 + - Occultic Nine + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-09T00:00:00+00:00' + to: '2016-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2016 + to: + day: 25 + month: 12 + year: 2016 + string: Oct 9, 2016 to Dec 25, 2016 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.9 + scored_by: 73745 + rank: 5701 + popularity: 1365 + members: 204933 + favorites: 474 + synopsis: |- + A blog disproving the supernatural, co-run by NEET teenager Yuuta Gamon and his enthusiastic best friend Ryouka Narusawa, becomes the catalyst that would bring together a group of people who supposedly have nothing to do with each other. + + These individuals include high school fortune teller Miyuu Aikawa, who joins Yuuta to work on the blog; realist Sarai Hashigami, who is stunned when tragedy strikes his family; doujin artist Ririka Nishizono, who has an uncanny ability to predict the future with her art; black magic practitioner and local curse expert Aria Kurenaino and her ghostly friend; Shun Moritsuka, a seemingly childish otaku detective; and reporter Touko Sumikaze. + + As this unlikely group, bound only by the strings of fate, find their way to each other, they are confronted with murder and other events that are shrouded by the presence of the supernatural. They must band together to solve the mysteries interlacing the city and their lives. + + [Written by MAL Rewrite] + background: Occultic;Nine is the fifth mainline entry in the Science Adventure series. The anime covers the events of + the first three volumes of the light novel and adds an original ending. + season: fall + year: 2016 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 2223 + type: anime + name: Christmas Holly + url: https://myanimelist.net/anime/producer/2223/Christmas_Holly + - mal_id: 2225 + type: anime + name: C-one + url: https://myanimelist.net/anime/producer/2225/C-one + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32979 + url: https://myanimelist.net/anime/32979/Flip_Flappers + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/82292.jpg + small_image_url: https://myanimelist.net/images/anime/4/82292t.jpg + large_image_url: https://myanimelist.net/images/anime/4/82292l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/82292.webp + small_image_url: https://myanimelist.net/images/anime/4/82292t.webp + large_image_url: https://myanimelist.net/images/anime/4/82292l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Cz65Vy7Wp18?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Flip Flappers + - type: Japanese + title: フリップフラッパーズ + - type: English + title: Flip Flappers + title: Flip Flappers + title_english: Flip Flappers + title_japanese: フリップフラッパーズ + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-10-06T00:00:00+00:00' + to: '2016-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2016 + to: + day: 29 + month: 12 + year: 2016 + string: Oct 6, 2016 to Dec 29, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 76072 + rank: 1694 + popularity: 1366 + members: 204684 + favorites: 2219 + synopsis: |- + Cocona is an average middle schooler living with her grandmother. And she who has yet to decide a goal to strive for, soon met a strange girl named Papika who invites her to an organization called Flip Flap. + + Dragged along by the energetic stranger, Cocona finds herself in the world of Pure Illusion—a bizarre alternate dimension—helping Papika look for crystal shards. Upon completing their mission, Papika and Cocona are sent to yet another world in Pure Illusion. As a dangerous creature besets them, the girls use their crystals to transform into magical girls: Cocona into Pure Blade, and Papika into Pure Barrier. But as they try to defeat the creature before them, three others with powers from a rival organization enter the fray and slay the creature, taking with them a fragment left behind from its body. Afterward, the girls realize that to stand a chance against their rivals and the creatures in Pure Illusion, they must learn to work together and synchronize their feelings in order to transform more effectively. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 470 + type: anime + name: GAGA + url: https://myanimelist.net/anime/producer/470/GAGA + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: [] + - mal_id: 33433 + url: https://myanimelist.net/anime/33433/Shuumatsu_no_Izetta + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/82119.jpg + small_image_url: https://myanimelist.net/images/anime/7/82119t.jpg + large_image_url: https://myanimelist.net/images/anime/7/82119l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/82119.webp + small_image_url: https://myanimelist.net/images/anime/7/82119t.webp + large_image_url: https://myanimelist.net/images/anime/7/82119l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/piEEGQdBho8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shuumatsu no Izetta + - type: Synonym + title: Izetta + - type: Synonym + title: Die Letzte Hexe + - type: Japanese + title: 終末のイゼッタ + - type: English + title: 'Izetta: The Last Witch' + - type: German + title: 'Izetta: The Last Witch' + - type: Spanish + title: 'Izetta: The Last Witch' + - type: French + title: 'Izetta: The Last Witch' + title: Shuumatsu no Izetta + title_english: 'Izetta: The Last Witch' + title_japanese: 終末のイゼッタ + title_synonyms: + - Izetta + - Die Letzte Hexe + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-01T00:00:00+00:00' + to: '2016-12-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2016 + to: + day: 17 + month: 12 + year: 2016 + string: Oct 1, 2016 to Dec 17, 2016 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 6.78 + scored_by: 73317 + rank: 6430 + popularity: 1461 + members: 190029 + favorites: 381 + synopsis: "After Germania invaded a neighboring country in 1939, Europe spiraled into a devastating war. During the\ + \ war, Germania set its sights on the weak alpine country of Elystadt. Boasting a far superior military and having\ + \ achieved profuse success earlier in the war, it was expected that Germania would conquer Elystadt with ease.\n\n\ + Matters are only made worse for the small country when Germanian soldiers capture their princess, Ortfiné \"Finé\"\ + \ Fredericka von Eylstadt, as she is heading to a crucial meeting with Britannia. Yet, when a concurrent Germanian\ + \ transport mission goes awry, Izetta, the last witch alive, escapes. When she recognizes Princess Finé from her childhood,\ + \ Izetta rescues her from the Germanian soldiers by making use of her magical abilities. Now reunited with the princess,\ + \ Izetta pledges to protect Elystadt from Germania, and with the last surviving witch on their arsenal, Elystadt hopes\ + \ to turn the tides against the imperialist war giant. \n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2016 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 1537 + type: anime + name: Wargaming Japan + url: https://myanimelist.net/anime/producer/1537/Wargaming_Japan + - mal_id: 1538 + type: anime + name: JTB Entertainment + url: https://myanimelist.net/anime/producer/1538/JTB_Entertainment + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 32801 + url: https://myanimelist.net/anime/32801/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/81432.jpg + small_image_url: https://myanimelist.net/images/anime/9/81432t.jpg + large_image_url: https://myanimelist.net/images/anime/9/81432l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/81432.webp + small_image_url: https://myanimelist.net/images/anime/9/81432t.webp + large_image_url: https://myanimelist.net/images/anime/9/81432l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/izN3zA1NjbQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA + - type: Synonym + title: DanMachi OVA + - type: Synonym + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA + - type: Synonym + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru + Darou ka' + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」 + - type: English + title: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?' + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka OVA + title_english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Is It Wrong to Expect a Hot Spring in a Dungeon?' + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうか OVA「ダンジョンに温泉を求めるのは 間違っているだろうか」 + title_synonyms: + - DanMachi OVA + - Is It Wrong to Try to Pick Up Girls in a Dungeon? OVA + - 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka: Dungeon ni Onsen wo Motomeru no wa Machigatteiru Darou + ka' + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2016-12-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 12 + year: 2016 + to: + day: null + month: null + year: null + string: Dec 7, 2016 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.04 + scored_by: 100631 + rank: 4894 + popularity: 1463 + members: 189944 + favorites: 148 + synopsis: |- + Following the crisis on the dungeon's 18th floor, Bell Cranel and his allies head back to the surface. However, their journey is delayed midway when the group stumbles across uncharted territory that hides a pleasant surprise—a hot spring! The group takes a respite from all the hardships they have endured. Unfortunately, as everyone relaxes in the bath, they discover that the hot spring may hide an evil secret. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32603 + url: https://myanimelist.net/anime/32603/Okusama_ga_Seitokaichou_ + images: + jpg: + image_url: https://myanimelist.net/images/anime/1669/154023.jpg + small_image_url: https://myanimelist.net/images/anime/1669/154023t.jpg + large_image_url: https://myanimelist.net/images/anime/1669/154023l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1669/154023.webp + small_image_url: https://myanimelist.net/images/anime/1669/154023t.webp + large_image_url: https://myanimelist.net/images/anime/1669/154023l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/slxnDYn0dPY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Okusama ga Seitokaichou!+! + - type: Synonym + title: My Wife is the Student Council President 2nd Season + - type: Synonym + title: Oku-sama ga Seito Kaichou! 2nd Season + - type: Synonym + title: Okusama ga Seitokaichou! Plus + - type: Japanese + title: おくさまが生徒会長!+! + - type: English + title: My Wife is the Student Council President!+ + - type: German + title: My Wife is the Student Council President+! + - type: Spanish + title: Okusama ga Seitokaichou!+ + title: Okusama ga Seitokaichou!+! + title_english: My Wife is the Student Council President!+ + title_japanese: おくさまが生徒会長!+! + title_synonyms: + - My Wife is the Student Council President 2nd Season + - Oku-sama ga Seito Kaichou! 2nd Season + - Okusama ga Seitokaichou! Plus + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-02T00:00:00+00:00' + to: '2016-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2016 + to: + day: 18 + month: 12 + year: 2016 + string: Oct 2, 2016 to Dec 18, 2016 + duration: 8 min per ep + rating: R+ - Mild Nudity + score: 6.57 + scored_by: 96307 + rank: 7744 + popularity: 1516 + members: 183339 + favorites: 142 + synopsis: |- + Some time has passed since student council president Ui Wakana and vice president Hayato Izumi got married due to the agreement their parents made. While they still try to avoid unnecessary attention by keeping their unusual relationship a secret from the public, the two frequently misunderstand each other's desires. However, as Ui and Hayato continue working in the school's student council and spending time together at home, the peculiar couple gradually grows closer. + + [Written by MAL Rewrite] + background: Okusama ga Seitokaichou!+! was released on Blu-ray and DVD on December 23, 2016. + season: fall + year: 2016 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 615 + type: anime + name: Dream Creation + url: https://myanimelist.net/anime/producer/615/Dream_Creation + - mal_id: 1599 + type: anime + name: Studio CHANT + url: https://myanimelist.net/anime/producer/1599/Studio_CHANT + licensors: [] + studios: + - mal_id: 541 + type: anime + name: Seven + url: https://myanimelist.net/anime/producer/541/Seven + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33003 + url: https://myanimelist.net/anime/33003/Mahou_Shoujo_Ikusei_Keikaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/81087.jpg + small_image_url: https://myanimelist.net/images/anime/2/81087t.jpg + large_image_url: https://myanimelist.net/images/anime/2/81087l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/81087.webp + small_image_url: https://myanimelist.net/images/anime/2/81087t.webp + large_image_url: https://myanimelist.net/images/anime/2/81087l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VsqzoJ11TW4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahou Shoujo Ikusei Keikaku + - type: Synonym + title: MahouIku + - type: Japanese + title: 魔法少女育成計画 + - type: English + title: Magical Girl Raising Project + - type: German + title: Magical Girl Raising Project + - type: Spanish + title: Magical Girl Raising Project + - type: French + title: Magical Girl Raising Project + title: Mahou Shoujo Ikusei Keikaku + title_english: Magical Girl Raising Project + title_japanese: 魔法少女育成計画 + title_synonyms: + - MahouIku + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-02T00:00:00+00:00' + to: '2016-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2016 + to: + day: 18 + month: 12 + year: 2016 + string: Oct 2, 2016 to Dec 18, 2016 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.97 + scored_by: 72511 + rank: 5289 + popularity: 1576 + members: 175717 + favorites: 851 + synopsis: |- + For many girls in N-City, playing the popular social role-playing game Magical Girl Raising Project is as close as they could come to being a real magical girl. However, for some rare players, that dream can become a reality. One such girl is Koyuki Himekawa, who receives a notification one night that she has been selected to become a magical girl, her in-game avatar Snow White. + + As Koyuki and other chosen players in the city begin helping those in need, they all receive yet another notification: the admins have decided that they want to reduce the number of magical girls. Whoever collects the least amount of Magical Candies—which are awarded for their magical girl activities—in their competition each week will lose their powers. But when a real-world tragedy happens to the first player that drops out, they are shown the repercussions of losing their abilities. As more participants inevitably lose the competition and more twisted rules are added, the girls soon realize that their "contest" is actually a desperate fight for survival. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2016 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1539 + type: anime + name: Highlights Entertainment + url: https://myanimelist.net/anime/producer/1539/Highlights_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 34213 + url: https://myanimelist.net/anime/34213/Getsuyoubi_no_Tawawa + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/83576.jpg + small_image_url: https://myanimelist.net/images/anime/13/83576t.jpg + large_image_url: https://myanimelist.net/images/anime/13/83576l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/83576.webp + small_image_url: https://myanimelist.net/images/anime/13/83576t.webp + large_image_url: https://myanimelist.net/images/anime/13/83576l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Getsuyoubi no Tawawa + - type: Synonym + title: Tawawa on Monday + - type: Japanese + title: 月曜日のたわわ + - type: English + title: Tawawa on Monday + title: Getsuyoubi no Tawawa + title_english: Tawawa on Monday + title_japanese: 月曜日のたわわ + title_synonyms: + - Tawawa on Monday + type: ONA + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2016-10-10T00:00:00+00:00' + to: '2016-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2016 + to: + day: 26 + month: 12 + year: 2016 + string: Oct 10, 2016 to Dec 26, 2016 + duration: 4 min per ep + rating: PG-13 - Teens 13 or older + score: 6.4 + scored_by: 62137 + rank: 8752 + popularity: 1614 + members: 170778 + favorites: 357 + synopsis: |- + Oniisan, a typical salaryman, has the weekly duty of protecting high school student Ai-chan from gropers by escorting her during their Monday morning train commutes. Despite the short time Oniisan and Ai-chan spend together, they manage to bond and learn more about each other's lives. To help Oniisan get through his Monday blues, Ai-chan gives him small presents as motivation. + + Ai-chan and many other girls—who all share a certain attractive trait—lighten up the Mondays of their male friends and colleagues for the long week ahead. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + licensors: [] + studios: + - mal_id: 1295 + type: anime + name: PINE JAM + url: https://myanimelist.net/anime/producer/1295/PINE_JAM + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 33094 + url: https://myanimelist.net/anime/33094/WWWWorking + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/82287.jpg + small_image_url: https://myanimelist.net/images/anime/11/82287t.jpg + large_image_url: https://myanimelist.net/images/anime/11/82287l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/82287.webp + small_image_url: https://myanimelist.net/images/anime/11/82287t.webp + large_image_url: https://myanimelist.net/images/anime/11/82287l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bYp1SFD6SsQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: WWW.Working!! + - type: Japanese + title: WWW.WORKING!! + - type: English + title: WWW.WAGNARIA!! + - type: German + title: WWW.Wagnaria!! + - type: Spanish + title: WWW.Wagnaria!! + - type: French + title: WWW.Wagnaria!! + title: WWW.Working!! + title_english: WWW.WAGNARIA!! + title_japanese: WWW.WORKING!! + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2016-10-01T00:00:00+00:00' + to: '2016-12-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2016 + to: + day: 24 + month: 12 + year: 2016 + string: Oct 1, 2016 to Dec 24, 2016 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.4 + scored_by: 79625 + rank: 2758 + popularity: 1641 + members: 166562 + favorites: 295 + synopsis: Daisuke Higashida is a serious first-year student at Higashizaka High School. He lives a peaceful everyday + life even though he is not satisfied with the family who doesn't laugh at all and makes him tired. However, his father's + company goes bankrupt one day, and he can no longer afford allowances, cellphone bills, and commuter tickets. When + his father orders him to take up a part-time job, Daisuke decides to work at a nearby family restaurant in order to + avoid traveling 15 kilometers to school by bicycle. + background: '' + season: fall + year: 2016 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 33051 + url: https://myanimelist.net/anime/33051/Kidou_Senshi_Gundam__Tekketsu_no_Orphans_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/80899.jpg + small_image_url: https://myanimelist.net/images/anime/6/80899t.jpg + large_image_url: https://myanimelist.net/images/anime/6/80899l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/80899.webp + small_image_url: https://myanimelist.net/images/anime/6/80899t.webp + large_image_url: https://myanimelist.net/images/anime/6/80899l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season' + - type: Synonym + title: G-Tekketsu 2nd Season + - type: Japanese + title: 機動戦士ガンダム 鉄血のオルフェンズ 第2期 + - type: English + title: 'Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season' + - type: German + title: 'Mobile Suit Gundam: Iron-Blooded Orphans Staffel 2' + - type: Spanish + title: 'Mobile Suit Gundam: Iron-Blooded Orphans Temporada 2' + - type: French + title: 'Mobile Suit Gundam: Iron-Blooded Orphans Saison 2' + title: 'Kidou Senshi Gundam: Tekketsu no Orphans 2nd Season' + title_english: 'Mobile Suit Gundam: Iron-Blooded Orphans 2nd Season' + title_japanese: 機動戦士ガンダム 鉄血のオルフェンズ 第2期 + title_synonyms: + - G-Tekketsu 2nd Season + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2016-10-02T00:00:00+00:00' + to: '2017-04-02T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2016 + to: + day: 2 + month: 4 + year: 2017 + string: Oct 2, 2016 to Apr 2, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.24 + scored_by: 90419 + rank: 394 + popularity: 1677 + members: 161392 + favorites: 1756 + synopsis: "Tekkadan has now become a direct affiliate of Teiwaz after procuring a new trade agreement with Arbrau. With\ + \ its newfound funds and prestige, Tekkadan finds both its list of allies and enemies growing. Meanwhile, the flames\ + \ of the Gjallarhorn power struggle continue to rage in full force. As a part of her efforts to make Mars financially\ + \ independent from Earth, Kudelia Aina Bernstein founds the Admoss Company and enlists Tekkadan as her business partner.\ + \ \n\nThe stakes are getting higher as the Tekkadan family continues to grow. Will Orga, Mikazuki, and the rest of\ + \ the Tekkadan faction be able to keep up, or will Kudelia's dream of Martian independence die out?\n\n[Written by\ + \ MAL Rewrite]" + background: '' + season: fall + year: 2016 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/29-2017-winter.yaml b/test/fixtures/jikan/season_matrix/29-2017-winter.yaml new file mode 100644 index 0000000..5e565b4 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/29-2017-winter.yaml @@ -0,0 +1,3399 @@ +metadata: + captured_at: '2026-05-11T11:33:37Z' + label: 2017-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2017/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:37 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:656668d0248e84de5fb2df059d366dc5b806cc6a + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 320 + per_page: 25 + data: + - mal_id: 32937 + url: https://myanimelist.net/anime/32937/Kono_Subarashii_Sekai_ni_Shukufuku_wo_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/83188.jpg + small_image_url: https://myanimelist.net/images/anime/2/83188t.jpg + large_image_url: https://myanimelist.net/images/anime/2/83188l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/83188.webp + small_image_url: https://myanimelist.net/images/anime/2/83188t.webp + large_image_url: https://myanimelist.net/images/anime/2/83188l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9jVxMt845AY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Subarashii Sekai ni Shukufuku wo! 2 + - type: Synonym + title: Give Blessings to This Wonderful World! 2 + - type: Japanese + title: この素晴らしい世界に祝福を! 2 + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! 2' + - type: German + title: 'KonoSuba: God''s blessing on this wonderful world! 2' + - type: Spanish + title: 'KonoSuba: God''s blessing on this wonderful world! 2' + - type: French + title: 'KonoSuba: God''s blessing on this wonderful world! 2' + title: Kono Subarashii Sekai ni Shukufuku wo! 2 + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! 2' + title_japanese: この素晴らしい世界に祝福を! 2 + title_synonyms: + - Give Blessings to This Wonderful World! 2 + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2017-01-12T00:00:00+00:00' + to: '2017-03-16T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2017 + to: + day: 16 + month: 3 + year: 2017 + string: Jan 12, 2017 to Mar 16, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.24 + scored_by: 1093523 + rank: 396 + popularity: 76 + members: 1654550 + favorites: 11983 + synopsis: |- + When Kazuma Satou died, he was given two choices: pass on to heaven or be revived in a fantasy world. After choosing the new world, the goddess Aqua tasked him with defeating the Demon King, and let him choose any weapon to aid him. Unfortunately, Kazuma chose to bring Aqua herself and has regretted the decision ever since then. + + Not only is he stuck with a useless deity turned party archpriest, the pair also has to make enough money for living expenses. To add to their problems, their group continued to grow as more problematic adventurers joined their ranks. Their token spellcaster, Megumin, is an explosion magic specialist who can only cast one spell once per day and refuses to learn anything else. There is also their stalwart crusader, Lalatina Ford "Darkness" Dustiness, a helpless masochist who makes Kazuma look pure in comparison. + + Kono Subarashii Sekai ni Shukufuku wo! 2 continues to follow Kazuma and the rest of his party through countless more adventures as they struggle to earn money and have to deal with one another's problematic personalities. However, things rarely go as planned, and they are often sidetracked by their own idiotic tendencies. + + [Written by MAL Rewrite] + background: Kono Subarashii Sekai ni Shukufuku wo! 2 adapts volumes 3 and 4 of Natsume Akatsuki's light novel series + of the same name. + season: winter + year: 2017 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 33206 + url: https://myanimelist.net/anime/33206/Kobayashi-san_Chi_no_Maid_Dragon + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/85434.jpg + small_image_url: https://myanimelist.net/images/anime/5/85434t.jpg + large_image_url: https://myanimelist.net/images/anime/5/85434l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/85434.webp + small_image_url: https://myanimelist.net/images/anime/5/85434t.webp + large_image_url: https://myanimelist.net/images/anime/5/85434l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/okBHQWnYImg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kobayashi-san Chi no Maid Dragon + - type: Synonym + title: The maid dragon of Kobayashi-san + - type: Japanese + title: 小林さんちのメイドラゴン + - type: English + title: Miss Kobayashi's Dragon Maid + - type: German + title: Miss Kobayashi's Dragon Maid + - type: Spanish + title: Miss Kobayashi's Dragon Maid + - type: French + title: Miss kobayashi's Dragon Maid + title: Kobayashi-san Chi no Maid Dragon + title_english: Miss Kobayashi's Dragon Maid + title_japanese: 小林さんちのメイドラゴン + title_synonyms: + - The maid dragon of Kobayashi-san + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-01-12T00:00:00+00:00' + to: '2017-04-06T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2017 + to: + day: 6 + month: 4 + year: 2017 + string: Jan 12, 2017 to Apr 6, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 795351 + rank: 943 + popularity: 114 + members: 1329741 + favorites: 17121 + synopsis: |- + As Kobayashi sets off for another day at work, she opens her apartment door only to be met by an unusually frightening sight—the head of a dragon, staring at her from across the balcony. The dragon immediately transforms into a cute, busty, and energetic young girl dressed in a maid outfit, introducing herself as Tooru. + + It turns out that the stoic programmer had come across the dragon the previous night on a drunken excursion to the mountains, and since the mythical beast had nowhere else to go, she had offered the creature a place to stay in her home. Thus, Tooru had arrived to cash in on the offer, ready to repay her savior's kindness by working as her personal maidservant. Though deeply regretful of her words and hesitant to follow through on her promise, a mix of guilt and Tooru's incredible dragon abilities convinces Kobayashi to take the girl in. + + Despite being extremely efficient at her job, the maid's unorthodox methods of housekeeping often end up horrifying Kobayashi and at times bring more trouble than help. Furthermore, the circumstances behind the dragon's arrival on Earth seem to be much more complicated than at first glance, as Tooru bears some heavy emotions and painful memories. To top it all off, Tooru's presence ends up attracting several other mythical beings to her new home, bringing in a host of eccentric personalities. Although Kobayashi makes her best effort to handle the crazy situation that she has found herself in, nothing has prepared her for this new life with a dragon maid. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 32615 + url: https://myanimelist.net/anime/32615/Youjo_Senki + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/82890.jpg + small_image_url: https://myanimelist.net/images/anime/5/82890t.jpg + large_image_url: https://myanimelist.net/images/anime/5/82890l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/82890.webp + small_image_url: https://myanimelist.net/images/anime/5/82890t.webp + large_image_url: https://myanimelist.net/images/anime/5/82890l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hc8fErNQNHc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Youjo Senki + - type: Synonym + title: The Military Chronicles of a Little Girl + - type: Japanese + title: 幼女戦記 + - type: English + title: Saga of Tanya the Evil + - type: German + title: Saga of Tanya the Evil + - type: Spanish + title: Saga of Tanya the Evil (Youjo Senki) + - type: French + title: Saga of Tanya the Evil + title: Youjo Senki + title_english: Saga of Tanya the Evil + title_japanese: 幼女戦記 + title_synonyms: + - The Military Chronicles of a Little Girl + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-06T00:00:00+00:00' + to: '2017-03-31T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2017 + to: + day: 31 + month: 3 + year: 2017 + string: Jan 6, 2017 to Mar 31, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.96 + scored_by: 562443 + rank: 826 + popularity: 177 + members: 1043564 + favorites: 13765 + synopsis: |- + Tanya Degurechaff is a young soldier infamous for predatorial-like ruthlessness and an uncanny, tactical aptitude, earning her the nickname of the "Devil of the Rhine." Underneath her innocuous appearance, however, lies the soul of a man who challenged Being X, the self-proclaimed God, to a battle of wits—which resulted in him being reincarnated as a little girl into a world of magical warfare. Hellbent on defiance, Tanya resolves to ascend the ranks of her country's military as it slowly plunges into world war, with only Being X proving to be the strongest obstacle in recreating the peaceful life she once knew. But her perceptive actions and combat initiative have an unintended side effect: propelling the mighty Empire into becoming one of the most powerful nations in mankind's history. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1567 + type: anime + name: Nut + url: https://myanimelist.net/anime/producer/1567/Nut + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 33487 + url: https://myanimelist.net/anime/33487/Masamune-kun_no_Revenge + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/83709.jpg + small_image_url: https://myanimelist.net/images/anime/12/83709t.jpg + large_image_url: https://myanimelist.net/images/anime/12/83709l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/83709.webp + small_image_url: https://myanimelist.net/images/anime/12/83709t.webp + large_image_url: https://myanimelist.net/images/anime/12/83709l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XmfXcVLA1d8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Masamune-kun no Revenge + - type: Japanese + title: 政宗くんのリベンジ + - type: English + title: Masamune-kun's Revenge + - type: German + title: Masamune-kun's Revenge + - type: Spanish + title: Masamune-kun's Revenge + - type: French + title: Masamune-kun's Revenge + title: Masamune-kun no Revenge + title_english: Masamune-kun's Revenge + title_japanese: 政宗くんのリベンジ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-05T00:00:00+00:00' + to: '2017-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2017 + to: + day: 23 + month: 3 + year: 2017 + string: Jan 5, 2017 to Mar 23, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.75 + scored_by: 567321 + rank: 6607 + popularity: 199 + members: 975686 + favorites: 3506 + synopsis: |- + When Masamune Makabe was a child, he was rejected by a rich, beautiful girl named Aki Adagaki, who gave him the nickname ''Piggy'' for being overweight. Devastated, Masamune put great effort into working out to improve his appearance. Now a handsome yet narcissistic high school student, Masamune is determined to exact revenge—he will have Aki fall madly in love with him and ultimately reject her the next time they meet. + + To his surprise, Masamune discovers he has transferred into Aki's school. Setting his plan into motion, Masamune first begins to form a relationship with the ''Brutal Princess'' but, despite his efforts, fails miserably at his initial attempts. Shockingly, when Masamune finally progresses towards his vengeance, he receives a mysterious letter addressing him by his old nickname. Unless Masamune discovers the sender's identity, his plan is doomed before it even starts! + + [Written by MAL Rewrite] + background: The anime adapts the first 29 chapters of the manga. + season: winter + year: 2017 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33506 + url: https://myanimelist.net/anime/33506/Ao_no_Exorcist__Kyoto_Fujouou-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/85201.jpg + small_image_url: https://myanimelist.net/images/anime/5/85201t.jpg + large_image_url: https://myanimelist.net/images/anime/5/85201l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/85201.webp + small_image_url: https://myanimelist.net/images/anime/5/85201t.webp + large_image_url: https://myanimelist.net/images/anime/5/85201l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IV6BY5w9b9o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ao no Exorcist: Kyoto Fujouou-hen' + - type: Synonym + title: 'Blue Exorcist: Kyoto Impure King Arc' + - type: Japanese + title: 青の祓魔師 京都不浄王篇 + - type: English + title: 'Blue Exorcist: Kyoto Saga' + - type: German + title: 'Blue Exorcist: Kyoto Saga' + - type: Spanish + title: 'Blue Exorcist: Kyoto Saga' + - type: French + title: 'Blue Exorcist: Kyoto Saga' + title: 'Ao no Exorcist: Kyoto Fujouou-hen' + title_english: 'Blue Exorcist: Kyoto Saga' + title_japanese: 青の祓魔師 京都不浄王篇 + title_synonyms: + - 'Blue Exorcist: Kyoto Impure King Arc' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-07T00:00:00+00:00' + to: '2017-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2017 + to: + day: 25 + month: 3 + year: 2017 + string: Jan 7, 2017 to Mar 25, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 442730 + rank: 3026 + popularity: 272 + members: 822685 + favorites: 1652 + synopsis: |- + The ExWire of True Cross Academy are beset with shock and fear in the aftermath of discovering that one of their own classmates, Rin Okumura, is the son of Satan. But for the moment, they have more pressing concerns than that of Rin's parentage: the left eye of the Impure King, a powerful demon, has been stolen from the academy's Deep Keep. After an attempt is made to steal the right eye in Kyoto as well, Rin and the other ExWires are sent to investigate the mystery behind the Impure King and the ultimate goal of the thief. + + While this mission has them cooperating for the time being, Rin has never felt more distant from his fellow exorcists. In his attempt to reconcile with them, he undergoes specialized training to control his dark power. However, when the right eye is stolen not long after their arrival, the unthinkable threat of a traitor amongst them leaves them in need of all the power they can get. + + [Written by MAL Rewrite] + background: The adaptation starts at volume 5 and ends at volume 9, chapter 34 of the manga. + season: winter + year: 2017 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31765 + url: https://myanimelist.net/anime/31765/Sword_Art_Online_Movie__Ordinal_Scale + images: + jpg: + image_url: https://myanimelist.net/images/anime/1557/123313.jpg + small_image_url: https://myanimelist.net/images/anime/1557/123313t.jpg + large_image_url: https://myanimelist.net/images/anime/1557/123313l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1557/123313.webp + small_image_url: https://myanimelist.net/images/anime/1557/123313t.webp + large_image_url: https://myanimelist.net/images/anime/1557/123313l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/32FLqOWjUfI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online Movie: Ordinal Scale' + - type: Synonym + title: Gekijouban Sword Art Online + - type: Japanese + title: 劇場版 ソードアート・オンライン -オーディナル・スケール- + - type: English + title: 'Sword Art Online the Movie: Ordinal Scale' + - type: German + title: 'Sword Art Online: Ordinal Scale The Movie' + - type: Spanish + title: 'Sword Art Online, la Película: Ordinal Scale' + - type: French + title: 'Sword Art Online The Movie: Ordinal Scale' + title: 'Sword Art Online Movie: Ordinal Scale' + title_english: 'Sword Art Online the Movie: Ordinal Scale' + title_japanese: 劇場版 ソードアート・オンライン -オーディナル・スケール- + title_synonyms: + - Gekijouban Sword Art Online + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-02-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 2 + year: 2017 + to: + day: null + month: null + year: null + string: Feb 18, 2017 + duration: 1 hr 59 min + rating: R+ - Mild Nudity + score: 7.56 + scored_by: 482854 + rank: 1989 + popularity: 295 + members: 781950 + favorites: 3510 + synopsis: |- + In 2026, four years after the infamous Sword Art Online incident, a revolutionary new form of technology has emerged: the Augma, a device that utilizes an Augmented Reality system. Unlike the Virtual Reality of the NerveGear and the Amusphere, it is perfectly safe and allows players to use it while they are conscious, creating an instant hit on the market. The most popular application for the Augma is the game Ordinal Scale, which immerses players in a fantasy role-playing game with player rankings and rewards. + + Following the new craze, Kirito's friends dive into the game, and despite his reservations about the system, Kirito eventually joins them. While at first it appears to be just fun and games, they soon find out that the game is not all that it seems... + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 32949 + url: https://myanimelist.net/anime/32949/Kuzu_no_Honkai + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/83937.jpg + small_image_url: https://myanimelist.net/images/anime/5/83937t.jpg + large_image_url: https://myanimelist.net/images/anime/5/83937l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/83937.webp + small_image_url: https://myanimelist.net/images/anime/5/83937t.webp + large_image_url: https://myanimelist.net/images/anime/5/83937l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QqpIWaVThEM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuzu no Honkai + - type: Japanese + title: クズの本懐 + - type: English + title: Scum's Wish + - type: German + title: Scum's Wish + - type: Spanish + title: El Deseo de la Escoria + - type: French + title: Kuzu No Honkai + title: Kuzu no Honkai + title_english: Scum's Wish + title_japanese: クズの本懐 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-13T00:00:00+00:00' + to: '2017-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2017 + to: + day: 31 + month: 3 + year: 2017 + string: Jan 13, 2017 to Mar 31, 2017 + duration: 22 min per ep + rating: R+ - Mild Nudity + score: 7.07 + scored_by: 355143 + rank: 4758 + popularity: 315 + members: 736077 + favorites: 6552 + synopsis: "To the outside world, Hanabi Yasuraoka and Mugi Awaya are the perfect couple. But in reality, they just share\ + \ the same secret pain: they are both in love with other people they cannot be with. \n\nHanabi has loved her childhood\ + \ friend and neighbor Narumi Kanai for as long as she can remember, so she is elated to discover that he is her new\ + \ homeroom teacher. However, Narumi is soon noticed by the music teacher, Akane Minagawa, and a relationship begins\ + \ to blossom between them, much to Hanabi's dismay. \n\nMugi was tutored by Akane in middle school, and has been in\ + \ love with her since then. Through a chance meeting in the hallway, he encounters Hanabi. As these two lonely souls\ + \ spend more time together, they decide to use each other as a substitute for the one they truly love, sharing physical\ + \ intimacy with one another in order to stave off their loneliness. \n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2017 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 33489 + url: https://myanimelist.net/anime/33489/Little_Witch_Academia_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1520/147248.jpg + small_image_url: https://myanimelist.net/images/anime/1520/147248t.jpg + large_image_url: https://myanimelist.net/images/anime/1520/147248l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1520/147248.webp + small_image_url: https://myanimelist.net/images/anime/1520/147248t.webp + large_image_url: https://myanimelist.net/images/anime/1520/147248l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S3jFdqs4jUQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Little Witch Academia (TV) + - type: Japanese + title: リトルウィッチアカデミア + - type: English + title: Little Witch Academia + - type: German + title: Little Witch Academia + - type: Spanish + title: Little Witch Academia + - type: French + title: L'école des petites sorcières + title: Little Witch Academia (TV) + title_english: Little Witch Academia + title_japanese: リトルウィッチアカデミア + title_synonyms: [] + type: TV + source: Original + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2017-01-09T00:00:00+00:00' + to: '2017-06-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2017 + to: + day: 26 + month: 6 + year: 2017 + string: Jan 9, 2017 to Jun 26, 2017 + duration: 24 min per ep + rating: G - All Ages + score: 7.81 + scored_by: 355198 + rank: 1154 + popularity: 333 + members: 710951 + favorites: 8152 + synopsis: |- + "A believing heart is your magic!"—these were the words that Atsuko "Akko" Kagari's idol, the renowned witch Shiny Chariot, said to her during a magic performance years ago. Since then, Akko has lived by these words and aspired to be a witch just like Shiny Chariot, one that can make people smile. Hence, even her non-magical background does not stop her from enrolling in Luna Nova Magical Academy. + + However, when an excited Akko finally sets off to her new school, the trip there is anything but smooth. After her perilous journey, she befriends the shy Lotte Yansson and the sarcastic Sucy Manbavaran. To her utmost delight, she also discovers Chariot's wand, the Shiny Rod, which she takes as her own. Unfortunately, her time at Luna Nova will prove to be more challenging than Akko could ever believe. She absolutely refuses to stay inferior to the rest of her peers, especially to her self-proclaimed rival, the beautiful and gifted Diana Cavendish, so she relies on her determination to compensate for her reckless behavior and ineptitude in magic. + + In a time when wizardry is on the decline, Little Witch Academia follows the magical escapades of Akko and her friends as they learn the true meaning of being a witch. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31758 + url: https://myanimelist.net/anime/31758/Kizumonogatari_III__Reiketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1084/112813.jpg + small_image_url: https://myanimelist.net/images/anime/1084/112813t.jpg + large_image_url: https://myanimelist.net/images/anime/1084/112813l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1084/112813.webp + small_image_url: https://myanimelist.net/images/anime/1084/112813t.webp + large_image_url: https://myanimelist.net/images/anime/1084/112813l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4nTLr6Uf9Ug?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kizumonogatari III: Reiketsu-hen' + - type: Synonym + title: Koyomi Vamp + - type: Japanese + title: 傷物語〈Ⅲ冷血篇〉 + - type: English + title: 'Kizumonogatari Part 3: Cold-Blooded' + - type: German + title: 'Kizumonogatari III: Reiketsuhen' + - type: French + title: 'Kizumonogatari Partie 3: Sang Glacial' + title: 'Kizumonogatari III: Reiketsu-hen' + title_english: 'Kizumonogatari Part 3: Cold-Blooded' + title_japanese: 傷物語〈Ⅲ冷血篇〉 + title_synonyms: + - Koyomi Vamp + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-01-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 1 + year: 2017 + to: + day: null + month: null + year: null + string: Jan 6, 2017 + duration: 1 hr 22 min + rating: R - 17+ (violence & profanity) + score: 8.78 + scored_by: 299141 + rank: 41 + popularity: 501 + members: 513656 + favorites: 8235 + synopsis: "After helping revive the legendary vampire Kiss-shot Acerola-orion Heart-under-blade, Koyomi Araragi has\ + \ become a vampire himself and her servant. Kiss-shot is certain she can turn him back into a human, but only once\ + \ regaining her full power. \n\nAraragi has hunted down the three vampire hunters that defeated Kiss-shot and retrieved\ + \ her limbs to return her to full strength. However, now that Araragi has almost accomplished what he’s been fighting\ + \ for this whole time, he has to consider if this is what he really wants. Once he revives this powerful immortal\ + \ vampire, there is no telling what she might do, and there would be no way of stopping her.\n\nBut there is more\ + \ to the story that Araragi doesn’t understand. If a newborn vampire like him could defeat the hunters, how did they\ + \ overpower Kiss-shot? Can he trust her to turn him back to a human? And how is that even possible in the first place?\n\ + \nAraragi is at his limit but he must come to a decision, and it may not be possible to resolve this situation without\ + \ doing something he’ll regret…\n\n[Written by MAL Rewrite]" + background: 'The Kizumonogatari movie trilogy adapts the third volume of NisiOisiN''s Monogatari Series: First Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 33731 + url: https://myanimelist.net/anime/33731/Gabriel_DropOut + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/82590.jpg + small_image_url: https://myanimelist.net/images/anime/9/82590t.jpg + large_image_url: https://myanimelist.net/images/anime/9/82590l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/82590.webp + small_image_url: https://myanimelist.net/images/anime/9/82590t.webp + large_image_url: https://myanimelist.net/images/anime/9/82590l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4eADGP3b9j0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gabriel DropOut + - type: Japanese + title: ガヴリールドロップアウト + - type: English + title: Gabriel DropOut + title: Gabriel DropOut + title_english: Gabriel DropOut + title_japanese: ガヴリールドロップアウト + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-09T00:00:00+00:00' + to: '2017-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2017 + to: + day: 27 + month: 3 + year: 2017 + string: Jan 9, 2017 to Mar 27, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 249206 + rank: 2563 + popularity: 539 + members: 484601 + favorites: 3144 + synopsis: |- + For centuries, Heaven has required its young angels to live and study among humans in order to become full-fledged angels. This is no different for top-of-her-class Gabriel White Tenma, who believes it is her mission to be a great angel who will bring happiness to mankind. However, Gabriel grows addicted to video games on Earth and eventually becomes a hikikomori. Proclaiming herself a "Fallen Angel," she is apathetic to everything else—much to the annoyance of Vignette April Tsukinose, a demon whom Gabriel befriended in her angelic early days on Earth. + + Vignette's attempts to revert Gabriel back to her previous self are in vain, as Gabriel shoots down any attempt to change her precious lifestyle. As they spend their time on Earth, they meet two eccentric personalities: the angel Raphiel Ainsworth Shiraha, Gabriel's classmate with a penchant for sadism, and the demon Satanichia McDowell Kurumizawa, a clumsy self-proclaimed future ruler of the Underworld. + + Gabriel DropOut follows these four friends' comedic lives as they utterly fail to understand what it truly means to be a demon or an angel. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33988 + url: https://myanimelist.net/anime/33988/Demi-chan_wa_Kataritai + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/83417.jpg + small_image_url: https://myanimelist.net/images/anime/8/83417t.jpg + large_image_url: https://myanimelist.net/images/anime/8/83417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/83417.webp + small_image_url: https://myanimelist.net/images/anime/8/83417t.webp + large_image_url: https://myanimelist.net/images/anime/8/83417l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XaoWL6Lvyjo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Demi-chan wa Kataritai + - type: Synonym + title: Ajin-chan wa Kataritai + - type: Japanese + title: 亜人ちゃんは語りたい + - type: English + title: Interviews With Monster Girls + - type: German + title: Interviews with Monster Girls + - type: Spanish + title: Interviews with Monster Girls + - type: French + title: Interviews With Monster Girls + title: Demi-chan wa Kataritai + title_english: Interviews With Monster Girls + title_japanese: 亜人ちゃんは語りたい + title_synonyms: + - Ajin-chan wa Kataritai + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-08T00:00:00+00:00' + to: '2017-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2017 + to: + day: 26 + month: 3 + year: 2017 + string: Jan 8, 2017 to Mar 26, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 226731 + rank: 2185 + popularity: 604 + members: 442390 + favorites: 1507 + synopsis: |- + High school biology teacher Tetsuo Takahashi may look like your average everyday instructor, but beneath his gentle appearance lies something less ordinary: his fascination for the "Ajin," more commonly known as "Demi." Although these half-human, half-monster beings have integrated into human society, Takahashi believes that much about them will remain unknown unless he interacts with them firsthand. + + Demi-chan wa Kataritai follows Takahashi's daily life in Shibasaki High School together with his three Demi students—Hikari Takanashi, an energetic vampire; Kyouko Machi, a gentle dullahan; and Yuki Kusakabe, the shy snow woman. Along the way, Takahashi also meets fellow teacher Sakie Satou, a succubus with an aversion towards men. To fulfill his goal of learning more about the Demi, Takahashi decides to conduct casual interviews with the girls to learn more about their abilities, psyche, and interaction with human society. As Takahashi strengthens his bond with his students, he soon discovers that the Demi are not as unusual as he initially believed. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 2223 + type: anime + name: Christmas Holly + url: https://myanimelist.net/anime/producer/2223/Christmas_Holly + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 34096 + url: https://myanimelist.net/anime/34096/Gintama + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/83528.jpg + small_image_url: https://myanimelist.net/images/anime/3/83528t.jpg + large_image_url: https://myanimelist.net/images/anime/3/83528l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/83528.webp + small_image_url: https://myanimelist.net/images/anime/3/83528t.webp + large_image_url: https://myanimelist.net/images/anime/3/83528l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LOdAAEJiebM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama. + - type: Synonym + title: Gintama (2017) + - type: Japanese + title: 銀魂。 + - type: English + title: Gintama Season 5 + title: Gintama. + title_english: Gintama Season 5 + title_japanese: 銀魂。 + title_synonyms: + - Gintama (2017) + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-09T00:00:00+00:00' + to: '2017-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2017 + to: + day: 27 + month: 3 + year: 2017 + string: Jan 9, 2017 to Mar 27, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.98 + scored_by: 160471 + rank: 15 + popularity: 789 + members: 349198 + favorites: 2843 + synopsis: |- + After joining the resistance against the bakufu, Gintoki and the gang are in hiding, along with Katsura and his Joui rebels. The Yorozuya is soon approached by Nobume Imai and two members of the Kiheitai, who explain that the Harusame pirates have turned against 7th Division Captain Kamui and their former ally Takasugi. The Kiheitai present Gintoki with a job: find Takasugi, who has been missing since his ship was ambushed in a Harusame raid. Nobume also makes a stunning revelation regarding the Tendoushuu, a secret organization pulling the strings of numerous factions, and their leader Utsuro, the shadowy figure with an uncanny resemblance to Gintoki's former teacher. + + Hitching a ride on Sakamoto's space ship, the Yorozuya and Katsura set out for Rakuyou, Kagura's home planet, where the various factions have gathered and tensions are brewing. Long-held grudges, political infighting, and the Tendoushuu's sinister overarching plan finally culminate into a massive, decisive battle on Rakuyou. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 31658 + url: https://myanimelist.net/anime/31658/Kuroko_no_Basket_Movie_4__Last_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/83106.jpg + small_image_url: https://myanimelist.net/images/anime/2/83106t.jpg + large_image_url: https://myanimelist.net/images/anime/2/83106l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/83106.webp + small_image_url: https://myanimelist.net/images/anime/2/83106t.webp + large_image_url: https://myanimelist.net/images/anime/2/83106l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0PFFkFhdnks?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kuroko no Basket Movie 4: Last Game' + - type: Synonym + title: 'Gekijouban Kuroko no Basuke: Last Game' + - type: Synonym + title: The Basketball Which Kuroko Plays + - type: Japanese + title: 劇場版 黒子のバスケ LAST GAME + - type: English + title: 'Kuroko''s Basketball the Movie: Last Game' + - type: German + title: 'Kuroko''s Basketball The Movie: Last Game' + - type: Spanish + title: 'Kuroko no Basket The Movie: Last Game' + - type: French + title: Kuroko's Basket Last Game + title: 'Kuroko no Basket Movie 4: Last Game' + title_english: 'Kuroko''s Basketball the Movie: Last Game' + title_japanese: 劇場版 黒子のバスケ LAST GAME + title_synonyms: + - 'Gekijouban Kuroko no Basuke: Last Game' + - The Basketball Which Kuroko Plays + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-03-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 3 + year: 2017 + to: + day: null + month: null + year: null + string: Mar 18, 2017 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.08 + scored_by: 210393 + rank: 631 + popularity: 790 + members: 349138 + favorites: 1132 + synopsis: "Hailing from America, Jabberwock—a street basketball team with skills comparable to those of the NBA—has\ + \ come to Japan to play an exhibition match against Strky, a team of former third-year students who once played in\ + \ the Interhigh and Winter Cup. However, due to the vast difference in skill, Jabberwock easily wins. Their captain,\ + \ Nash Gold Jr., mocks the basketball style of all players in Japan by comparing them to monkeys.\n \nInfuriated by\ + \ the nasty comment, Kagetora Aida challenges them to a revenge match. Because of pride and the belief that the results\ + \ will be no different, Nash accepts the challenge. Kagetora then assembles Vorpal Swords, a team composed of the\ + \ Generation of Miracles, including Kuroko Tetsuya and Kagami Taiga, for they are the only ones who stand a chance\ + \ against a foe that seems unbeatable from every angle.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33743 + url: https://myanimelist.net/anime/33743/Fuuka + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/83735.jpg + small_image_url: https://myanimelist.net/images/anime/8/83735t.jpg + large_image_url: https://myanimelist.net/images/anime/8/83735l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/83735.webp + small_image_url: https://myanimelist.net/images/anime/8/83735t.webp + large_image_url: https://myanimelist.net/images/anime/8/83735l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ar-6TjHRfB4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fuuka + - type: Japanese + title: 風夏 + - type: English + title: Fuuka + title: Fuuka + title_english: Fuuka + title_japanese: 風夏 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-06T00:00:00+00:00' + to: '2017-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2017 + to: + day: 24 + month: 3 + year: 2017 + string: Jan 6, 2017 to Mar 24, 2017 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.52 + scored_by: 156281 + rank: 8034 + popularity: 893 + members: 317896 + favorites: 933 + synopsis: |- + The story follows the life of Yuu Haruna, who recently moved into Tokyo with his sisters after their father is forced to transfer overseas on work. + + On his way to buy dinner while looking at his Twitter account, a high school girl suddenly crashes into him. Thinking he was taking upskirt pictures of her, the girl takes Yuu's phone, breaks it, and slaps him before leaving Yuu lying on the ground. As it turns out, this girl—Fuuka Akitsuki—also goes to the school Yuu is transferring to. + + Unlike most people, Fuuka doesn't own a cellphone; she even listens to music using a CD player. Eventually these two become closer, and decide to form a band with their friends and enter the professional world of music. With Fuuka around, what will now become of Yuu's new life in Tokyo? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 210 + type: anime + name: Studio Tulip + url: https://myanimelist.net/anime/producer/210/Studio_Tulip + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33836 + url: https://myanimelist.net/anime/33836/Seiren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1465/121561.jpg + small_image_url: https://myanimelist.net/images/anime/1465/121561t.jpg + large_image_url: https://myanimelist.net/images/anime/1465/121561l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1465/121561.webp + small_image_url: https://myanimelist.net/images/anime/1465/121561t.webp + large_image_url: https://myanimelist.net/images/anime/1465/121561l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/o9SwzMgwRns?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seiren + - type: Japanese + title: セイレン + - type: English + title: Seiren + title: Seiren + title_english: Seiren + title_japanese: セイレン + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-06T00:00:00+00:00' + to: '2017-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2017 + to: + day: 24 + month: 3 + year: 2017 + string: Jan 6, 2017 to Mar 24, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.29 + scored_by: 94962 + rank: 9440 + popularity: 1091 + members: 257667 + favorites: 485 + synopsis: |- + For high school students like Shouichi Kamita, university entrance exams and the future are common concerns. It is also during this time in life that a mysterious emotion that vexes people of all ages may begin to weigh upon one's mind—love. + + At this point in his teenage years, Shouichi finds three girls he could see himself having a future with: the ever-cheerful Hikari Tsuneki, who teases Shouichi without mercy, but actually has a softer side; the competitive gamer, Tooru Miyamae, who has difficulty communicating with others; and Shouichi's childhood friend, Kyouko Touno, the sometimes immature shoujo manga enthusiast. Seiren follows Shouichi's relationships with these three girls across three separate arcs, as their feelings grow from mutual interest and blossom into something more beautiful. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Fridays + time: 02:28 + timezone: Asia/Tokyo + string: Fridays at 02:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + - mal_id: 1601 + type: anime + name: Stardust Promotion + url: https://myanimelist.net/anime/producer/1601/Stardust_Promotion + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + - mal_id: 1299 + type: anime + name: AXsiZ + url: https://myanimelist.net/anime/producer/1299/AXsiZ + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31812 + url: https://myanimelist.net/anime/31812/Kuroshitsuji_Movie__Book_of_the_Atlantic + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/85792.jpg + small_image_url: https://myanimelist.net/images/anime/9/85792t.jpg + large_image_url: https://myanimelist.net/images/anime/9/85792l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/85792.webp + small_image_url: https://myanimelist.net/images/anime/9/85792t.webp + large_image_url: https://myanimelist.net/images/anime/9/85792l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GCif3HyWuM0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kuroshitsuji Movie: Book of the Atlantic' + - type: Japanese + title: 劇場版 黒執事 Book of the Atlantic + - type: English + title: 'Black Butler: Book of the Atlantic' + - type: German + title: 'Black Butler: Book of the Atlantic' + - type: French + title: 'Black Butler: Book of the Atlantic' + title: 'Kuroshitsuji Movie: Book of the Atlantic' + title_english: 'Black Butler: Book of the Atlantic' + title_japanese: 劇場版 黒執事 Book of the Atlantic + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-01-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 1 + year: 2017 + to: + day: null + month: null + year: null + string: Jan 21, 2017 + duration: 1 hr 40 min + rating: R - 17+ (violence & profanity) + score: 8.25 + scored_by: 105484 + rank: 381 + popularity: 1243 + members: 226681 + favorites: 1668 + synopsis: |- + The young Earl Ciel Phantomhive—the Queen's Guard Dog—is once again called to investigate seemingly supernatural phenomena when news of miraculous resurrections begins to surface in Victorian London. Along with Sebastian Michaelis, his demon butler, they board the luxury cruise liner Campania to investigate rumors of the Aurora Society—a medical organization suspected of experimenting on the dead. + + Grim reapers begin to appear on the ship, and it becomes apparent that the ship is about to be overrun with the undead as a devious plan is put into motion. Ciel and Sebastian must now uncover the secrets that lie behind the Aurora Society's phoenix symbol, and with the help of some old acquaintances, return the undead to their coffins or share a watery grave. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1653 + type: anime + name: Kinoshita Group Holdings + url: https://myanimelist.net/anime/producer/1653/Kinoshita_Group_Holdings + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33095 + url: https://myanimelist.net/anime/33095/Shouwa_Genroku_Rakugo_Shinjuu__Sukeroku_Futatabi-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1493/124765.jpg + small_image_url: https://myanimelist.net/images/anime/1493/124765t.jpg + large_image_url: https://myanimelist.net/images/anime/1493/124765l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1493/124765.webp + small_image_url: https://myanimelist.net/images/anime/1493/124765t.webp + large_image_url: https://myanimelist.net/images/anime/1493/124765l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wxFCi-ybQ5k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen' + - type: Synonym + title: Shouwa Genroku Rakugo Shinjuu 2nd Season + - type: Synonym + title: Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season + - type: Japanese + title: 昭和元禄落語心中~助六再び篇~ + - type: English + title: 'Descending Stories: Showa Genroku Rakugo Shinju' + - type: French + title: Le Rakugo ou la Vie 2 + title: 'Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen' + title_english: 'Descending Stories: Showa Genroku Rakugo Shinju' + title_japanese: 昭和元禄落語心中~助六再び篇~ + title_synonyms: + - Shouwa Genroku Rakugo Shinjuu 2nd Season + - Showa and Genroku Era Lover's Suicide Through Rakugo 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-07T00:00:00+00:00' + to: '2017-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2017 + to: + day: 25 + month: 3 + year: 2017 + string: Jan 7, 2017 to Mar 25, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.7 + scored_by: 70251 + rank: 69 + popularity: 1383 + members: 202548 + favorites: 3240 + synopsis: |- + Even after having risen to the utmost rank of shin'uchi, Yotarou struggles to find his own identity in the world of rakugo. Caught between his master's teachings and the late Sukeroku's unique style, his performance lacks an important ingredient—ego. And while his popularity packs the theaters, he is but one of the few; rakugo is under threat of being eclipsed. + + Meanwhile Yakumo, regarded by many as the last bastion of preserving the popularity of rakugo, struggles to cope with his elderly state. Even though his performances are still stellar, he fears that he is nearing his limits. His doubts grow stronger as an old friend creeps ever closer. Konatsu, for her part, attempts to raise her son as a single mother, which Yotarou is heavily opposed to. Instead, he seeks to persuade her to marry him and in turn raise her son as his own. + + In Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen, the curtains fall on Yotarou and Yakumo's story, tasked with restoring the near-obsolete art form as well as overcoming their internal conflicts. + + [Written by MAL Rewrite] + background: 'Shouwa Genroku Rakugo Shinjuu: Sukeroku Futatabi-hen covers volumes 6 through 10 of the manga.' + season: winter + year: 2017 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 35262 + url: https://myanimelist.net/anime/35262/Boku_no_Hero_Academia__Hero_Note + images: + jpg: + image_url: https://myanimelist.net/images/anime/1089/121748.jpg + small_image_url: https://myanimelist.net/images/anime/1089/121748t.jpg + large_image_url: https://myanimelist.net/images/anime/1089/121748l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1089/121748.webp + small_image_url: https://myanimelist.net/images/anime/1089/121748t.webp + large_image_url: https://myanimelist.net/images/anime/1089/121748l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia: Hero Note' + - type: Synonym + title: Boku no Hero Academia Recap + - type: Synonym + title: Boku no Hero Academia 13.5 + - type: Japanese + title: 僕のヒーローアカデミア ヒーローノート + - type: English + title: 'My Hero Academia: Hero Notebook' + title: 'Boku no Hero Academia: Hero Note' + title_english: 'My Hero Academia: Hero Notebook' + title_japanese: 僕のヒーローアカデミア ヒーローノート + title_synonyms: + - Boku no Hero Academia Recap + - Boku no Hero Academia 13.5 + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-03-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 3 + year: 2017 + to: + day: null + month: null + year: null + string: Mar 25, 2017 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 96585 + rank: 3605 + popularity: 1423 + members: 196028 + favorites: 597 + synopsis: Recap of Boku no Hero Academia that aired a week before the second season. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33581 + url: https://myanimelist.net/anime/33581/Trinity_Seven_Movie_1__Eternity_Library_to_Alchemic_Girl + images: + jpg: + image_url: https://myanimelist.net/images/anime/1031/112821.jpg + small_image_url: https://myanimelist.net/images/anime/1031/112821t.jpg + large_image_url: https://myanimelist.net/images/anime/1031/112821l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1031/112821.webp + small_image_url: https://myanimelist.net/images/anime/1031/112821t.webp + large_image_url: https://myanimelist.net/images/anime/1031/112821l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/izr7UaEgPhQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Trinity Seven Movie 1: Eternity Library to Alchemic Girl' + - type: Synonym + title: Gekijouban Trinity Seven + - type: Synonym + title: 'Trinity Seven Movie: Yuukyuu Toshokan to Rekinjutsu Shoujo' + - type: Japanese + title: 劇場版 トリニティセブン -悠久図書館〈エターニティライブラリー〉と錬金術少女〈アルケミックガール〉- + - type: English + title: 'Trinity Seven: Eternity Library & Alchemic Girl' + - type: German + title: 'Trinity Seven Film: Eternity Library & Alchemic Girl' + - type: Spanish + title: 'Trinity Seven: Eternity Library & Alchemic Girl' + - type: French + title: 'Trinity Seven Film: Eternity Library & Alchemic Girl' + title: 'Trinity Seven Movie 1: Eternity Library to Alchemic Girl' + title_english: 'Trinity Seven: Eternity Library & Alchemic Girl' + title_japanese: 劇場版 トリニティセブン -悠久図書館〈エターニティライブラリー〉と錬金術少女〈アルケミックガール〉- + title_synonyms: + - Gekijouban Trinity Seven + - 'Trinity Seven Movie: Yuukyuu Toshokan to Rekinjutsu Shoujo' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-02-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 2 + year: 2017 + to: + day: null + month: null + year: null + string: Feb 25, 2017 + duration: 55 min + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 98027 + rank: 3789 + popularity: 1449 + members: 191445 + favorites: 272 + synopsis: |- + The film's story begins when Arata inadvertently touches "Hermes Apocrypha," Lilith's Grimoire. Suddenly, he is enveloped by a bright white light, and a girl appears before him. She calls herself Lilim, and treats both Arata and Lilith as her parents. At the same time she appears, something changes in the world. The forbidden Eternal Library awakens. In the Library is sealed the ultimate culmination of Alchemy, the White Demon Lord. The White Demon Lord plots to eliminate Arata and the Trinity Seven to usurp the position of Demon Lord. Bristling with untold power, the White Demon Lord attacks Arata, and triggers a desperate crisis where Arata and the Trinity Seven must save the world in this last battle. + + (Source: ANN) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: [] + studios: + - mal_id: 1569 + type: anime + name: Seven Arcs Pictures + url: https://myanimelist.net/anime/producer/1569/Seven_Arcs_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33337 + url: https://myanimelist.net/anime/33337/ACCA__13-ku_Kansatsu-ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/83776.jpg + small_image_url: https://myanimelist.net/images/anime/3/83776t.jpg + large_image_url: https://myanimelist.net/images/anime/3/83776l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/83776.webp + small_image_url: https://myanimelist.net/images/anime/3/83776t.webp + large_image_url: https://myanimelist.net/images/anime/3/83776l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9KLcXHQZyls?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'ACCA: 13-ku Kansatsu-ka' + - type: Synonym + title: 'ACCA: 13th Territory Inspection Department' + - type: Synonym + title: 'ACCA: 13th Ward Observation Department' + - type: Synonym + title: ACCA Jusanku Kansatsuka + - type: Japanese + title: ACCA 13区監察課 + - type: English + title: 'ACCA: 13-Territory Inspection Dept.' + - type: German + title: 'ACCA: 13-Territory Inspection Dept.' + - type: Spanish + title: 'ACCA: 13- Territory Inspection Dept.' + - type: French + title: 'ACCA: 13-Territory Inspection Dept.' + title: 'ACCA: 13-ku Kansatsu-ka' + title_english: 'ACCA: 13-Territory Inspection Dept.' + title_japanese: ACCA 13区監察課 + title_synonyms: + - 'ACCA: 13th Territory Inspection Department' + - 'ACCA: 13th Ward Observation Department' + - ACCA Jusanku Kansatsuka + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-10T00:00:00+00:00' + to: '2017-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2017 + to: + day: 28 + month: 3 + year: 2017 + string: Jan 10, 2017 to Mar 28, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.67 + scored_by: 75078 + rank: 1542 + popularity: 1542 + members: 179560 + favorites: 1686 + synopsis: |- + ACCA—a national body of the kingdom of Dowa that provides public services to the citizens of the country—was established as part of the peace settlement between the king of Dowa and the 13 states of the country during a revolt. One hundred years later, Dowa is in a period of unprecedented peace, due in part to the ACCA system. However, rumors of a coup d'état start to surface. Jean Otus, the second-in-command of the inspection department of ACCA, is charged with inspecting all 13 state branches. What will he discover as he performs his audit? + + Intriguing and mysterious, ACCA: 13-ku Kansatsu-ka is a politically-themed mystery that reveals a world of diverse cultures and lifestyles, with intricate connections between its characters, as the truth of the coup d'état slowly unfolds. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 34086 + url: https://myanimelist.net/anime/34086/Tales_of_Zestiria_the_Cross_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1788/108410.jpg + small_image_url: https://myanimelist.net/images/anime/1788/108410t.jpg + large_image_url: https://myanimelist.net/images/anime/1788/108410l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1788/108410.webp + small_image_url: https://myanimelist.net/images/anime/1788/108410t.webp + large_image_url: https://myanimelist.net/images/anime/1788/108410l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tales of Zestiria the Cross 2nd Season + - type: Synonym + title: Tales of Zestiria The X Second Season + - type: Japanese + title: テイルズ オブ ゼスティリア ザ クロス 第2期 + - type: English + title: Tales of Zestiria the X Season 2 + - type: German + title: Tales of Zestiria the X Staffel 2 + - type: Spanish + title: Tales of Zestiria the X Temporada 2 + - type: French + title: Tales of Zestiria the X Saison 2 + title: Tales of Zestiria the Cross 2nd Season + title_english: Tales of Zestiria the X Season 2 + title_japanese: テイルズ オブ ゼスティリア ザ クロス 第2期 + title_synonyms: + - Tales of Zestiria The X Second Season + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-01-08T00:00:00+00:00' + to: '2017-04-29T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2017 + to: + day: 29 + month: 4 + year: 2017 + string: Jan 8, 2017 to Apr 29, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 81094 + rank: 3254 + popularity: 1615 + members: 170794 + favorites: 213 + synopsis: The second season of Tales of Zestiria the Cross. + background: '' + season: winter + year: 2017 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1510 + type: anime + name: Anime Consortium Japan + url: https://myanimelist.net/anime/producer/1510/Anime_Consortium_Japan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 34051 + url: https://myanimelist.net/anime/34051/Akibas_Trip_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/83185.jpg + small_image_url: https://myanimelist.net/images/anime/9/83185t.jpg + large_image_url: https://myanimelist.net/images/anime/9/83185l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/83185.webp + small_image_url: https://myanimelist.net/images/anime/9/83185t.webp + large_image_url: https://myanimelist.net/images/anime/9/83185l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Oov26OFUjFE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akiba's Trip The Animation + - type: Japanese + title: AKIBA'S TRIP THE ANIMATION + - type: English + title: Akiba's Trip The Animation + - type: Spanish + title: Akiba's Trip the Animation + title: Akiba's Trip The Animation + title_english: Akiba's Trip The Animation + title_japanese: AKIBA'S TRIP THE ANIMATION + title_synonyms: [] + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-01-04T00:00:00+00:00' + to: '2017-03-29T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2017 + to: + day: 29 + month: 3 + year: 2017 + string: Jan 4, 2017 to Mar 29, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.5 + scored_by: 65099 + rank: 8138 + popularity: 1678 + members: 161227 + favorites: 321 + synopsis: "Otaku siblings Tamotsu and Niwaka Denkigai are shopping in Akihabara when it is overrun by vampiric cosplaying\ + \ monsters! These creatures, known as \"Bugged Ones,\" can possess anyone they bite and soon they begin causing mayhem\ + \ across the city. As Tamotsu finds himself at the mercy of one of these creatures, he is rescued by the mysterious\ + \ baseball bat-wielding Matome Mayonaka. Together, they fight through several more encounters with the Bugged Ones,\ + \ but before long, Tamotsu is fatally wounded protecting Matome. With no other choice, she revives him as a high level\ + \ Bugged One—just like her! \n\nTamotsu and Matome, along with excitable otaku cosplayer Arisa Ahokainen, make up\ + \ the group \"The Electric Mayonnaise\" and they begin dispatching the Bugged Ones in the only way they know how:\ + \ by ripping off their clothes and exposing them to sunlight!\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2017 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 276 + type: anime + name: DLE + url: https://myanimelist.net/anime/producer/276/DLE + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1241 + type: anime + name: Evil Line Records + url: https://myanimelist.net/anime/producer/1241/Evil_Line_Records + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1597 + type: anime + name: Sotsu Music Publishing + url: https://myanimelist.net/anime/producer/1597/Sotsu_Music_Publishing + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 34414 + url: https://myanimelist.net/anime/34414/Nanbaka_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1294/127370.jpg + small_image_url: https://myanimelist.net/images/anime/1294/127370t.jpg + large_image_url: https://myanimelist.net/images/anime/1294/127370l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1294/127370.webp + small_image_url: https://myanimelist.net/images/anime/1294/127370t.webp + large_image_url: https://myanimelist.net/images/anime/1294/127370l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sN_pg69cLAI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nanbaka 2 + - type: Japanese + title: ナンバカ 2期 + - type: English + title: Nanbaka Season 2 + - type: German + title: Nanbaka Staffel 2 + - type: Spanish + title: Nanbaka Temporada 2 + - type: French + title: Nanbaka Saison 2 + title: Nanbaka 2 + title_english: Nanbaka Season 2 + title_japanese: ナンバカ 2期 + title_synonyms: [] + type: ONA + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-04T00:00:00+00:00' + to: '2017-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2017 + to: + day: 22 + month: 3 + year: 2017 + string: Jan 4, 2017 to Mar 22, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 70556 + rank: 2257 + popularity: 1837 + members: 143939 + favorites: 407 + synopsis: 'The second part of Nanbaka. The prisoners and their guards continue their comfortable lives at Nanba Prison. + However, from the shadows emerges a new threat: Enki Gokuu, a person from Samon''s past, who has mysterious goals + of his own.' + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1481 + type: anime + name: comico + url: https://myanimelist.net/anime/producer/1481/comico + - mal_id: 1493 + type: anime + name: Tokuma Japan Communications + url: https://myanimelist.net/anime/producer/1493/Tokuma_Japan_Communications + - mal_id: 1555 + type: anime + name: Nelke Planning + url: https://myanimelist.net/anime/producer/1555/Nelke_Planning + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 30485 + url: https://myanimelist.net/anime/30485/ChäoS_Child + images: + jpg: + image_url: https://myanimelist.net/images/anime/1310/90137.jpg + small_image_url: https://myanimelist.net/images/anime/1310/90137t.jpg + large_image_url: https://myanimelist.net/images/anime/1310/90137l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1310/90137.webp + small_image_url: https://myanimelist.net/images/anime/1310/90137t.webp + large_image_url: https://myanimelist.net/images/anime/1310/90137l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: ChäoS;Child + - type: Synonym + title: Chaos Child + - type: Japanese + title: CHAOS;CHILD + - type: English + title: ChäoS;Child + title: ChäoS;Child + title_english: ChäoS;Child + title_japanese: CHAOS;CHILD + title_synonyms: + - Chaos Child + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-11T00:00:00+00:00' + to: '2017-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2017 + to: + day: 29 + month: 3 + year: 2017 + string: Jan 11, 2017 to Mar 29, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.33 + scored_by: 45974 + rank: 9156 + popularity: 1859 + members: 141423 + favorites: 224 + synopsis: |- + A series of gruesome murders dubbed "New Generation Madness" once induced mass hysteria in Shibuya. At its peak during a frenzied riot, a sudden earthquake reduced the district into nothing but rubble, while leaving surrounding wards strangely intact. + + Six years later, in a newly rebuilt Shibuya, mysterious deaths begin to crop up again. It is not long before third-year student Takuru Miyashiro realizes a connection: the dates of the recent murders match those of the New Generation Madness incidents. He, along with several members of his school's newspaper club, decide to delve deeper into the mystery, only to find themselves stranded in the middle of a new crime scene themselves... + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1425 + type: anime + name: 5pb. + url: https://myanimelist.net/anime/producer/1425/5pb + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 32924 + url: https://myanimelist.net/anime/32924/Urara_Meirochou + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/84119.jpg + small_image_url: https://myanimelist.net/images/anime/6/84119t.jpg + large_image_url: https://myanimelist.net/images/anime/6/84119l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/84119.webp + small_image_url: https://myanimelist.net/images/anime/6/84119t.webp + large_image_url: https://myanimelist.net/images/anime/6/84119l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pigjvmkklyk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Urara Meirochou + - type: Japanese + title: うらら迷路帖 + - type: English + title: Urara Meirocho + title: Urara Meirochou + title_english: Urara Meirocho + title_japanese: うらら迷路帖 + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-01-06T00:00:00+00:00' + to: '2017-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2017 + to: + day: 24 + month: 3 + year: 2017 + string: Jan 6, 2017 to Mar 24, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.14 + scored_by: 44153 + rank: 4367 + popularity: 1905 + members: 138056 + favorites: 431 + synopsis: |- + Labyrinth Town is a legendary city composed of ten districts, home to witches and diviners alike. In the outermost district of this maze, many young girls begin training to join the ranks of the "Urara," a group of women known far and wide for their ability to divine the answers to the world's most difficult questions. Chiya, a wild girl raised amongst the animals in the mountains, is invited to take her rightful place as a first rank urara. By joining them, she hopes to divine the location of her long-lost mother. + + Chiya quickly makes three friends: studious Kon Tatsumi, aspiring witch Koume Yukimi, and reticent Nono Natsume. Armed with only their own ingenuity and a vague connection to the gods, they begin their journey in the way of the urara. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2017 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/30-2017-spring.yaml b/test/fixtures/jikan/season_matrix/30-2017-spring.yaml new file mode 100644 index 0000000..0f543d3 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/30-2017-spring.yaml @@ -0,0 +1,3394 @@ +metadata: + captured_at: '2026-05-11T11:33:40Z' + label: 2017-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2017/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:39 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:63b89ae8b5784c6dbb0c46884ee30faec262d094 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 290 + per_page: 25 + data: + - mal_id: 25777 + url: https://myanimelist.net/anime/25777/Shingeki_no_Kyojin_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/84177.jpg + small_image_url: https://myanimelist.net/images/anime/4/84177t.jpg + large_image_url: https://myanimelist.net/images/anime/4/84177l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/84177.webp + small_image_url: https://myanimelist.net/images/anime/4/84177t.webp + large_image_url: https://myanimelist.net/images/anime/4/84177l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zLaVP8IhIuc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki no Kyojin Season 2 + - type: Japanese + title: 進撃の巨人 Season2 + - type: English + title: Attack on Titan Season 2 + - type: German + title: Attack on Titan – 2. Staffel + - type: Spanish + title: Ataque a los Titanes Temporada 2 + - type: French + title: L'Attaque des Titans Saison 2 + title: Shingeki no Kyojin Season 2 + title_english: Attack on Titan Season 2 + title_japanese: 進撃の巨人 Season2 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-01T00:00:00+00:00' + to: '2017-06-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2017 + to: + day: 17 + month: 6 + year: 2017 + string: Apr 1, 2017 to Jun 17, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.54 + scored_by: 2065392 + rank: 145 + popularity: 13 + members: 3019635 + favorites: 23098 + synopsis: |- + For centuries, humanity has been hunted by giant, mysterious predators known as the Titans. Three mighty walls—Wall Maria, Rose, and Sheena—provided peace and protection for humanity for over a hundred years. That peace, however, was shattered when the Colossal Titan and Armored Titan appeared and destroyed the outermost wall, Wall Maria. Forced to retreat behind Wall Rose, humanity waited with bated breath for the Titans to reappear and destroy their safe haven once more. + + In Shingeki no Kyojin Season 2, Eren Yeager and others of the 104th Training Corps have just begun to become full members of the Survey Corps. As they ready themselves to face the Titans once again, their preparations are interrupted by the invasion of Wall Rose—but all is not as it seems as more mysteries are unraveled. As the Survey Corps races to save the wall, they uncover more about the invading Titans and the dark secrets of their own members. + + [Written by MAL Rewrite] + background: Shingeki no Kyojin Season 2 adapts content from volumes 9-12 of Hajime Isayama's award-winning manga. + season: spring + year: 2017 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33486 + url: https://myanimelist.net/anime/33486/Boku_no_Hero_Academia_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/85221.jpg + small_image_url: https://myanimelist.net/images/anime/12/85221t.jpg + large_image_url: https://myanimelist.net/images/anime/12/85221l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/85221.webp + small_image_url: https://myanimelist.net/images/anime/12/85221t.webp + large_image_url: https://myanimelist.net/images/anime/12/85221l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HoIOW6no_Ew?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 2nd Season + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia Season 2 + - type: German + title: My Hero Academia – 2. Staffel + - type: Spanish + title: My Hero Academia Temporada 2 + - type: French + title: My Hero Academia Saison 2 + title: Boku no Hero Academia 2nd Season + title_english: My Hero Academia Season 2 + title_japanese: 僕のヒーローアカデミア + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2017-04-01T00:00:00+00:00' + to: '2017-09-30T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2017 + to: + day: 30 + month: 9 + year: 2017 + string: Apr 1, 2017 to Sep 30, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 1854244 + rank: 666 + popularity: 16 + members: 2733155 + favorites: 16884 + synopsis: |- + At UA Academy, not even a violent attack can disrupt their most prestigious event: the school sports festival. Renowned across Japan, this festival is an opportunity for aspiring heroes to showcase their abilities, both to the public and potential recruiters. + + However, the path to glory is never easy, especially for Izuku Midoriya—whose quirk possesses great raw power but is also cripplingly inefficient. Pitted against his talented classmates, such as the fire and ice wielding Shouto Todoroki, Izuku must utilize his sharp wits and master his surroundings to achieve victory and prove to the world his worth. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34566 + url: https://myanimelist.net/anime/34566/Boruto__Naruto_Next_Generations + images: + jpg: + image_url: https://myanimelist.net/images/anime/1091/99847.jpg + small_image_url: https://myanimelist.net/images/anime/1091/99847t.jpg + large_image_url: https://myanimelist.net/images/anime/1091/99847l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1091/99847.webp + small_image_url: https://myanimelist.net/images/anime/1091/99847t.webp + large_image_url: https://myanimelist.net/images/anime/1091/99847l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boruto: Naruto Next Generations' + - type: Japanese + title: BORUTO -NARUTO NEXT GENERATIONS- + - type: English + title: 'Boruto: Naruto Next Generations' + title: 'Boruto: Naruto Next Generations' + title_english: 'Boruto: Naruto Next Generations' + title_japanese: BORUTO -NARUTO NEXT GENERATIONS- + title_synonyms: [] + type: TV + source: Manga + episodes: 293 + status: Finished Airing + airing: false + aired: + from: '2017-04-05T00:00:00+00:00' + to: '2023-03-26T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2017 + to: + day: 26 + month: 3 + year: 2023 + string: Apr 5, 2017 to Mar 26, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.98 + scored_by: 478353 + rank: 11079 + popularity: 217 + members: 931793 + favorites: 7446 + synopsis: |- + Following the successful end of the Fourth Shinobi World War, Konohagakure has been enjoying a period of peace, prosperity, and extraordinary technological advancement. This is all due to the efforts of the Allied Shinobi Forces and the village's Seventh Hokage, Naruto Uzumaki. Now resembling a modern metropolis, Konohagakure has changed, particularly the life of a shinobi. Under the watchful eye of Naruto and his old comrades, a new generation of shinobi has stepped up to learn the ways of the ninja. + + Boruto Uzumaki is often the center of attention as the son of the Seventh Hokage. Despite having inherited Naruto's boisterous and stubborn demeanor, Boruto is considered a prodigy and is able to unleash his potential with the help of supportive friends and family. Unfortunately, this has only worsened his arrogance and his desire to surpass Naruto which, along with his father's busy lifestyle, has strained their relationship. However, a sinister force brewing within the village may threaten Boruto's carefree life. + + New friends and familiar faces join Boruto as a new story begins. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Sundays + time: '17:30' + timezone: Asia/Tokyo + string: Sundays at 17:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 32951 + url: https://myanimelist.net/anime/32951/Rokudenashi_Majutsu_Koushi_to_Akashic_Records + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/85593.jpg + small_image_url: https://myanimelist.net/images/anime/8/85593t.jpg + large_image_url: https://myanimelist.net/images/anime/8/85593l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/85593.webp + small_image_url: https://myanimelist.net/images/anime/8/85593t.webp + large_image_url: https://myanimelist.net/images/anime/8/85593l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nzlblisGahI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rokudenashi Majutsu Koushi to Akashic Records + - type: Synonym + title: RokuAka + - type: Japanese + title: ロクでなし魔術講師と禁忌教典 + - type: English + title: Akashic Records of Bastard Magic Instructor + - type: German + title: Akashic Records of Bastard Magic Instructor + - type: Spanish + title: Akashic Records of Bastard Magical Instructor + - type: French + title: Akashic Records of Bastard Magic Instructor + title: Rokudenashi Majutsu Koushi to Akashic Records + title_english: Akashic Records of Bastard Magic Instructor + title_japanese: ロクでなし魔術講師と禁忌教典 + title_synonyms: + - RokuAka + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-04T00:00:00+00:00' + to: '2017-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2017 + to: + day: 20 + month: 6 + year: 2017 + string: Apr 4, 2017 to Jun 20, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.11 + scored_by: 458095 + rank: 4538 + popularity: 280 + members: 813241 + favorites: 3499 + synopsis: |- + The Alzano Empire is home to one of the most distinguished magic schools in the world: the Alzano Imperial Magic Academy. Here, ambitious young students undergo training to become competent magicians. Sistine Fibel—a stern noble girl—and her bright-eyed best friend Rumia Tingel attend the Academy, determined to cultivate their magical skills. + + However, their world is thrown for a loop when their favorite teacher suddenly retires and the enigmatic Glenn Radars replaces him. His lazy and indifferent attitude toward life and magic quickly puts him at odds with his class. What's more, nefarious forces hidden within the empire's walls start to become active, and Sistine, Rumia, and Glenn find themselves caught up in their schemes. + + Rokudenashi Majutsu Koushi to Akashic Records follows Sistine, who is captivated by a mysterious floating Sky Castle; Rumia, who is haunted by a troubled past; and Glenn, who may be more than meets the eye. Though completely different on the surface, they are inexplicably bound together by a thread of fate. + + [Written by MAL Rewrite] + background: Rokudenashi Majutsu Koushi to Akashic Records adapts the first 5 volumes of Tarou Hitsuji's light novel + series of the same title. + season: spring + year: 2017 + broadcast: + day: Tuesdays + time: '20:30' + timezone: Asia/Tokyo + string: Tuesdays at 20:30 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32901 + url: https://myanimelist.net/anime/32901/Eromanga-sensei + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/86468.jpg + small_image_url: https://myanimelist.net/images/anime/2/86468t.jpg + large_image_url: https://myanimelist.net/images/anime/2/86468l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/86468.webp + small_image_url: https://myanimelist.net/images/anime/2/86468t.webp + large_image_url: https://myanimelist.net/images/anime/2/86468l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TzBk9alIqPI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Eromanga-sensei + - type: Japanese + title: エロマンガ先生 + - type: English + title: Eromanga Sensei + - type: German + title: Eromanga Sensei + - type: Spanish + title: Eromanga Sensei + - type: French + title: Eromanga Sensei + title: Eromanga-sensei + title_english: Eromanga Sensei + title_japanese: エロマンガ先生 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-09T00:00:00+00:00' + to: '2017-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2017 + to: + day: 25 + month: 6 + year: 2017 + string: Apr 9, 2017 to Jun 25, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.31 + scored_by: 449132 + rank: 9294 + popularity: 303 + members: 767483 + favorites: 2756 + synopsis: |- + One year ago, Sagiri Izumi became step-siblings with Masamune Izumi. But the sudden death of their parents tears their new family apart, resulting in Sagiri becoming a shut-in which cut her off from her brother and society. + + While caring for what's left of his family, Masamune earns a living as a published light novel author with one small problem: he's never actually met his acclaimed illustrator, Eromanga-sensei, infamous for drawing the most lewd erotica. Through an embarrassing chain of events, he learns that his very own little sister was his partner the whole time! + + As new characters and challenges appear, Masamune and Sagiri must now face the light novel industry together. Eromanga-Sensei follows the development of their relationship and their struggle to become successful; and as Sagiri slowly grows out of her shell, just how long will she be able to hide her true persona from the rest of the world? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1653 + type: anime + name: Kinoshita Group Holdings + url: https://myanimelist.net/anime/producer/1653/Kinoshita_Group_Holdings + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 34822 + url: https://myanimelist.net/anime/34822/Tsuki_ga_Kirei + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/85592.jpg + small_image_url: https://myanimelist.net/images/anime/2/85592t.jpg + large_image_url: https://myanimelist.net/images/anime/2/85592l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/85592.webp + small_image_url: https://myanimelist.net/images/anime/2/85592t.webp + large_image_url: https://myanimelist.net/images/anime/2/85592l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HoEFpyDHZzw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuki ga Kirei + - type: Synonym + title: The Moon is Beautiful + - type: Synonym + title: As the Moon + - type: Synonym + title: So Beautiful + - type: Japanese + title: 月がきれい + - type: English + title: Tsukigakirei + - type: German + title: Tsukigakirei + - type: Spanish + title: Tsukigakirei + - type: French + title: Tsukigakirei + title: Tsuki ga Kirei + title_english: Tsukigakirei + title_japanese: 月がきれい + title_synonyms: + - The Moon is Beautiful + - As the Moon + - So Beautiful + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-07T00:00:00+00:00' + to: '2017-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2017 + to: + day: 30 + month: 6 + year: 2017 + string: Apr 7, 2017 to Jun 30, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.02 + scored_by: 277548 + rank: 728 + popularity: 419 + members: 597521 + favorites: 8182 + synopsis: |- + With a new school year comes a new crowd of classmates, and for their final year of junior high, aspiring writer Kotarou Azumi and track team member Akane Mizuno end up in the same class. Though initially complete strangers, a few chance encounters stir an innocent desire within their hearts. A yearning gaze, a fluttering heart—the hallmarks of young love slip into their lives as fate brings their paths to a cross. + + However, though love is patient and love is kind, Kotarou and Akane discover it is not always straightforward. Despite the comfort they find in each other's company, heartache and anxiety come hand in hand with pursuing the feelings in their hearts. With the uncertainty of how the other truly feels as well as the competing affections of those around them, the road ahead is unclear. Even so, under the shining light of a beautiful full moon, Kotarou gathers his courage to ask Akane a single question, one that forever changes their quiet relationship. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 34561 + url: https://myanimelist.net/anime/34561/Re_Creators + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/85469.jpg + small_image_url: https://myanimelist.net/images/anime/11/85469t.jpg + large_image_url: https://myanimelist.net/images/anime/11/85469l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/85469.webp + small_image_url: https://myanimelist.net/images/anime/11/85469t.webp + large_image_url: https://myanimelist.net/images/anime/11/85469l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5pWvM4JAM8M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Creators + - type: Japanese + title: Re:CREATORS 〈レクリエイターズ〉 + - type: English + title: Re:CREATORS + - type: Spanish + title: 'Re: Creadores' + title: Re:Creators + title_english: Re:CREATORS + title_japanese: Re:CREATORS 〈レクリエイターズ〉 + title_synonyms: [] + type: TV + source: Original + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2017-04-08T00:00:00+00:00' + to: '2017-09-16T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2017 + to: + day: 16 + month: 9 + year: 2017 + string: Apr 8, 2017 to Sep 16, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.55 + scored_by: 210814 + rank: 2030 + popularity: 463 + members: 543216 + favorites: 3769 + synopsis: |- + Humans have designed countless worlds—each one born from the unique imagination of its creator. Souta Mizushino is a high school student who aspires to be such a creator by writing and illustrating his own light novel. One day, while watching anime for inspiration, he is briefly transported into a fierce fight scene. When he returns to the real world, he realizes something is amiss: the anime's headstrong heroine, Selesia Yupitilia, has somehow returned with him. + + Before long, other fictional characters appear in the world, carrying the hopes and scars of their home. A princely knight, a magical girl, a ruthless brawler, and many others now crowd the streets of Japan. However, the most mysterious one is a woman in full military regalia, dubbed "Gunpuku no Himegimi," who knows far more than she should about the creators' world. Despite this, no one knows her true name or the world she is from. + + Meanwhile, Souta and Selesia work together with Meteora Österreich, a calm and composed librarian NPC, to uncover the meaning behind these unnatural events. With powerful forces at play, the once clear line between reality and imagination continues to blur, leading to a fateful meeting between creators and those they created. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: [] + studios: + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 32887 + url: https://myanimelist.net/anime/32887/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_Gaiden__Sword_Oratoria + images: + jpg: + image_url: https://myanimelist.net/images/anime/1181/123312.jpg + small_image_url: https://myanimelist.net/images/anime/1181/123312t.jpg + large_image_url: https://myanimelist.net/images/anime/1181/123312l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1181/123312.webp + small_image_url: https://myanimelist.net/images/anime/1181/123312t.webp + large_image_url: https://myanimelist.net/images/anime/1181/123312l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_25Ar-rS-C4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria' + - type: Synonym + title: Danmachi Sword Oratoria + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア + - type: English + title: 'Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side' + - type: German + title: 'DanMachi: Sword Oratoria' + - type: Spanish + title: '¿Qué tiene de Malo intentar ligar en una Mazmorra? Familia Myth: Sword Oratoria' + - type: French + title: 'DanMachi: Sword Oratoria' + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria' + title_english: 'Sword Oratoria: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side' + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうか外伝 ソード・オラトリア + title_synonyms: + - Danmachi Sword Oratoria + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-15T00:00:00+00:00' + to: '2017-07-01T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2017 + to: + day: 1 + month: 7 + year: 2017 + string: Apr 15, 2017 to Jul 1, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 244272 + rank: 4645 + popularity: 534 + members: 489850 + favorites: 771 + synopsis: "After having descended upon this world, the gods have created guilds where adventurers can test their mettle.\ + \ These guilds, known as \"familia,\" grant adventurers the chance to explore, gather, hunt, or simply enjoy themselves.\n\ + \ \nDungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria begins in Orario, the lively city\ + \ of adventures. The Sword Princess, Ais Wallenstein, and the novice mage, Lefiya Viridis, are members of the Loki\ + \ Familia, who are experts at monster hunting. With the rest of their group, they journey to the tower of Babel in\ + \ hopes of exploring the dungeon underneath. Home to powerful monsters, the dungeon will fulfill Ais's desire to master\ + \ her sword skills, while bringing Lefiya closer to her dream of succeeding Riveria Ljos Alf, vice-captain of the\ + \ Loki Familia, as the most powerful mage in the land.\n \n[Written by MAL Rewrite]" + background: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Gaiden: Sword Oratoria adapts the first 4 volumes + of Fujino Omori''s light novel series of the same title.' + season: spring + year: 2017 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2135 + type: anime + name: Imagine + url: https://myanimelist.net/anime/producer/2135/Imagine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 33502 + url: https://myanimelist.net/anime/33502/Shuumatsu_Nani_Shitemasu_ka_Isogashii_desu_ka_Sukutte_Moratte_Ii_desu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/85260.jpg + small_image_url: https://myanimelist.net/images/anime/4/85260t.jpg + large_image_url: https://myanimelist.net/images/anime/4/85260l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/85260.webp + small_image_url: https://myanimelist.net/images/anime/4/85260t.webp + large_image_url: https://myanimelist.net/images/anime/4/85260l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZGfC2boki-I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka? + - type: Synonym + title: SukaSuka + - type: Synonym + title: What are you doing at the end? Are you busy? Can you save me? + - type: Japanese + title: 終末なにしてますか?忙しいですか?救ってもらっていいですか? + - type: English + title: 'WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?' + - type: German + title: 'WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?' + - type: Spanish + title: 'WorldEnd: What Do You Do at The End of The World? Are You Busy? Will You Save Us?' + - type: French + title: 'WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?' + title: Shuumatsu Nani Shitemasu ka? Isogashii desu ka? Sukutte Moratte Ii desu ka? + title_english: 'WorldEnd: What do you do at the end of the world? Are you busy? Will you save us?' + title_japanese: 終末なにしてますか?忙しいですか?救ってもらっていいですか? + title_synonyms: + - SukaSuka + - What are you doing at the end? Are you busy? Can you save me? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-11T00:00:00+00:00' + to: '2017-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2017 + to: + day: 27 + month: 6 + year: 2017 + string: Apr 11, 2017 to Jun 27, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.67 + scored_by: 208552 + rank: 1569 + popularity: 597 + members: 446314 + favorites: 4940 + synopsis: "Putting his life on the line, Willem Kmetsch leaves his loved ones behind and sets out to battle a mysterious\ + \ monster, and even though he is victorious, he is rendered frozen in ice. It is during his icy slumber that terrifying\ + \ creatures known as \"Beasts\" emerge on the Earth's surface and threaten humanity's existence. Willem awakens 500\ + \ years later, only to find himself the sole survivor of his race as mankind is wiped out.\n \nTogether with the other\ + \ surviving races, Willem takes refuge on the floating islands in the sky, living in fear of the Beasts below. He\ + \ lives a life of loneliness and only does odd jobs to get by. One day, he is tasked with being a weapon storehouse\ + \ caretaker. Thinking nothing of it, Willem accepts, but he soon realizes that these weapons are actually a group\ + \ of young Leprechauns. Though they bear every resemblance to humans, they have no regard for their own lives, identifying\ + \ themselves as mere weapons of war. Among them is Chtholly Nota Seniorious, who is more than willing to sacrifice\ + \ herself if it means defeating the Beasts and ensuring peace.\n \nWillem becomes something of a father figure for\ + \ the young Leprechauns, watching over them fondly and supporting them in any way he can. He, who once fought so bravely\ + \ on the frontlines, can now only hope that the ones being sent to battle return safely from the monsters that destroyed\ + \ his kind.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1651 + type: anime + name: Production Ace + url: https://myanimelist.net/anime/producer/1651/Production_Ace + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 33475 + url: https://myanimelist.net/anime/33475/Busou_Shoujo_Machiavellianism + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/83995.jpg + small_image_url: https://myanimelist.net/images/anime/3/83995t.jpg + large_image_url: https://myanimelist.net/images/anime/3/83995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/83995.webp + small_image_url: https://myanimelist.net/images/anime/3/83995t.webp + large_image_url: https://myanimelist.net/images/anime/3/83995l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ghi2R6-HcMA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Busou Shoujo Machiavellianism + - type: Japanese + title: 武装少女マキャヴェリズム + - type: English + title: Armed Girl's Machiavellism + - type: German + title: Armed Girl's Machiavellism + - type: Spanish + title: Armed Girl's Machiavellism + - type: French + title: Armed Girl's Machiavellism + title: Busou Shoujo Machiavellianism + title_english: Armed Girl's Machiavellism + title_japanese: 武装少女マキャヴェリズム + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-05T00:00:00+00:00' + to: '2017-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2017 + to: + day: 21 + month: 6 + year: 2017 + string: Apr 5, 2017 to Jun 21, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 222278 + rank: 5845 + popularity: 643 + members: 419976 + favorites: 1072 + synopsis: |- + After getting expelled from his previous school, Fudou Nomura decides to enroll in Aichi Coexistence Private Academy. However, the academy is far from ordinary: all female students are armed with weapons! Led by five girls dubbed the Supreme Five Swords, they aim to correct male students' behavior by making them crossdress and integrate into the female student body, or else leave the institution entirely. + + On his first day, Fudou encounters one of the Swords, Rin Onigawara, who tells him to obey the dress code or quit the school. To everyone's surprise, he defies the orders and ends up in a fierce battle with her. With his fighting skills attracting the attention of the rest of the Swords, Fudou must stay vigilant and try his best to survive the girls' antics at his new school. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 108 + type: anime + name: Media Factory + url: https://myanimelist.net/anime/producer/108/Media_Factory + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1685 + type: anime + name: Toshiba Digital Frontiers + url: https://myanimelist.net/anime/producer/1685/Toshiba_Digital_Frontiers + - mal_id: 1686 + type: anime + name: Tsukuru no Mori + url: https://myanimelist.net/anime/producer/1686/Tsukuru_no_Mori + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 30727 + url: https://myanimelist.net/anime/30727/Saenai_Heroine_no_Sodatekata_♭ + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/84797.jpg + small_image_url: https://myanimelist.net/images/anime/2/84797t.jpg + large_image_url: https://myanimelist.net/images/anime/2/84797l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/84797.webp + small_image_url: https://myanimelist.net/images/anime/2/84797t.webp + large_image_url: https://myanimelist.net/images/anime/2/84797l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JCcvmRduwiE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saenai Heroine no Sodatekata ♭ + - type: Synonym + title: Saenai Heroine no Sodatekata Flat + - type: Japanese + title: 冴えない彼女〈ヒロイン〉の育てかた♭ + - type: English + title: 'Saekano: How to Raise a Boring Girlfriend .flat' + - type: German + title: Saekano♭ How to Raise a Boring Girlfriend.flat + - type: French + title: Saekano♭ How to Raise a Boring Girlfriend.flat + title: Saenai Heroine no Sodatekata ♭ + title_english: 'Saekano: How to Raise a Boring Girlfriend .flat' + title_japanese: 冴えない彼女〈ヒロイン〉の育てかた♭ + title_synonyms: + - Saenai Heroine no Sodatekata Flat + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2017-04-14T00:00:00+00:00' + to: '2017-06-23T00:00:00+00:00' + prop: + from: + day: 14 + month: 4 + year: 2017 + to: + day: 23 + month: 6 + year: 2017 + string: Apr 14, 2017 to Jun 23, 2017 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.76 + scored_by: 204359 + rank: 1290 + popularity: 676 + members: 399641 + favorites: 1791 + synopsis: "After finally completing the first route of his visual novel, Blessing Software's producer Tomoya Aki is\ + \ optimistic about the future of his team and achieving their goal of creating the best game of the season.\n\nHowever,\ + \ they still have a long way to go. For one, Megumi Katou still has an incredibly flat personality and is unable to\ + \ fit the role of Tomoya's ideal heroine. The other members of Blessing Software, Eriri Spencer Sawamura, Utaha Kasumigaoka,\ + \ and Michiru Hyoudou, often forget she is even there due to her lack of presence and character. \n\nThroughout the\ + \ development of their game, Blessing Software learns the struggles of working in an industry where deadlines must\ + \ be met and edits are made constantly, and the hardships of working in a group setting.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1664 + type: anime + name: Fujimi Shobo + url: https://myanimelist.net/anime/producer/1664/Fujimi_Shobo + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 32262 + url: https://myanimelist.net/anime/32262/Renai_Boukun + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/84266.jpg + small_image_url: https://myanimelist.net/images/anime/9/84266t.jpg + large_image_url: https://myanimelist.net/images/anime/9/84266l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/84266.webp + small_image_url: https://myanimelist.net/images/anime/9/84266t.webp + large_image_url: https://myanimelist.net/images/anime/9/84266l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ixAK3zJpbwE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Renai Boukun + - type: Japanese + title: 恋愛暴君 + - type: English + title: Love Tyrant + - type: German + title: Love Tyrant + - type: Spanish + title: Love Tyrant (Renai Bokun) + - type: French + title: Love Tyrant + title: Renai Boukun + title_english: Love Tyrant + title_japanese: 恋愛暴君 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-07T00:00:00+00:00' + to: '2017-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2017 + to: + day: 23 + month: 6 + year: 2017 + string: Apr 7, 2017 to Jun 23, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.6 + scored_by: 195310 + rank: 7552 + popularity: 683 + members: 396942 + favorites: 692 + synopsis: |- + When a strange girl named Guri comes knocking at Seiji Aino's door, he quickly finds himself thrust into a world of romantic troubles. Claiming that she will die if he does not kiss someone within 24 hours, Guri's pleas of desperation are misunderstood as pleas for love, leading Seiji to kiss the cute stranger that came barging into his house. In actuality, it turns out that this cosplaying cupid is the wielder of a Kiss Note, in which any pairing of names she writes will kiss and become a couple. Guri explains that she misspelt and accidentally wrote Seiji's name while indulging in her yaoi fantasies, but because she had yet to pair him with anyone, their kiss was meaningless. Even worse, Guri reveals that if Seiji is not coupled with anyone soon, not only will she die, but Seiji will remain a virgin for eternity! + + Eager to escape his fate, Seiji sets his sights on the beautiful and popular Akane Hiyama. But after Akane hears that he kissed Guri, she reveals the obsessive and psychopathic feelings that she holds for the unfortunate boy and proceeds to viciously attack them. In the ensuing confusion, Guri is able to pair Seiji with Akane in the Kiss Note, temporarily saving Seiji from any further bodily harm. But to complicate matters, Guri's newfound feelings lead her to also pair the two of them with herself. Just when the situation could not get any more convoluted, this new coupling with Guri has turned Seiji and Akane into temporary angels, forcing them into assisting the cupid with her work of pairing humans, lest they be cast into hell. With all semblance of normality snatched from his life, Seiji gets to work at matchmaking with these eccentric girls by his side. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Fridays + time: 02:35 + timezone: Asia/Tokyo + string: Fridays at 02:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 33926 + url: https://myanimelist.net/anime/33926/Quanzhi_Gaoshou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1534/104725.jpg + small_image_url: https://myanimelist.net/images/anime/1534/104725t.jpg + large_image_url: https://myanimelist.net/images/anime/1534/104725l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1534/104725.webp + small_image_url: https://myanimelist.net/images/anime/1534/104725t.webp + large_image_url: https://myanimelist.net/images/anime/1534/104725l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ef7GCI4Cdxg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Quanzhi Gaoshou + - type: Synonym + title: Quan Zhi Gao Shou + - type: Synonym + title: Full-Time Expert + - type: Synonym + title: Expert of All Classes + - type: Synonym + title: マスターオブスキル + - type: Japanese + title: 全职高手 + - type: English + title: The King's Avatar + title: Quanzhi Gaoshou + title_english: The King's Avatar + title_japanese: 全职高手 + title_synonyms: + - Quan Zhi Gao Shou + - Full-Time Expert + - Expert of All Classes + - マスターオブスキル + type: ONA + source: Web novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-07T00:00:00+00:00' + to: '2017-06-16T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2017 + to: + day: 16 + month: 6 + year: 2017 + string: Apr 7, 2017 to Jun 16, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 184623 + rank: 1063 + popularity: 691 + members: 393956 + favorites: 4032 + synopsis: |- + Widely regarded as a trailblazer and top-tier professional player in the online multiplayer game Glory, Ye Xiu is dubbed the "Battle God" for his skills and contributions to the game over the years. However, when forced to retire from the team and to leave his gaming career behind, he finds work at a nearby internet café. There, when Glory launches its tenth server, he throws himself into the game once more using a new character named "Lord Grim." + + Ye Xiu's early achievements on the new server immediately catch the attention of many players, as well as the big guilds, leaving them to wonder about the identity of this exceptional player. However, while he possesses ten years of experience and in-depth knowledge, starting afresh with neither sponsors nor a team in a game that has changed over the years presents numerous challenges. Along with talented new comrades, Ye Xiu once again dedicates himself to traversing the path to Glory's summit! + + [Written by MAL Rewrite] + background: Quanzhi Gaoshou is based on a Chinese serial web novel of the same title written by Butterfly Blue. It received + the title for Best Work in 2013 and is the first and only 1000 Pledged Work on Qidian. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1727 + type: anime + name: Tencent Video + url: https://myanimelist.net/anime/producer/1727/Tencent_Video + - mal_id: 1728 + type: anime + name: China Literature Limited + url: https://myanimelist.net/anime/producer/1728/China_Literature_Limited + licensors: [] + studios: + - mal_id: 1350 + type: anime + name: B.CMAY PICTURES + url: https://myanimelist.net/anime/producer/1350/BCMAY_PICTURES + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 34176 + url: https://myanimelist.net/anime/34176/Zero_kara_Hajimeru_Mahou_no_Sho + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/85224.jpg + small_image_url: https://myanimelist.net/images/anime/5/85224t.jpg + large_image_url: https://myanimelist.net/images/anime/5/85224l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/85224.webp + small_image_url: https://myanimelist.net/images/anime/5/85224t.webp + large_image_url: https://myanimelist.net/images/anime/5/85224l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-6QDVRnxf9g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zero kara Hajimeru Mahou no Sho + - type: Japanese + title: ゼロから始める魔法の書 + - type: English + title: Grimoire of Zero + - type: German + title: Grimoire of Zero + - type: Spanish + title: El Libro Mágico de Zero + - type: French + title: Grimoire of Zero + title: Zero kara Hajimeru Mahou no Sho + title_english: Grimoire of Zero + title_japanese: ゼロから始める魔法の書 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-10T00:00:00+00:00' + to: '2017-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2017 + to: + day: 26 + month: 6 + year: 2017 + string: Apr 10, 2017 to Jun 26, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 135670 + rank: 4780 + popularity: 970 + members: 290159 + favorites: 638 + synopsis: "In a world of constant war between humans and witches, there exist the \"beastfallen\"—cursed humans born\ + \ with the appearance and strength of an animal. Their physical prowess and bestial nature cause them to be feared\ + \ and shunned by both humans and witches. As a result, many beastfallen become sellswords, making their living through\ + \ hunting witches.\n \nDespite the enmity between the races, a lighthearted witch named Zero enlists a beastfallen\ + \ whom she refers to as \"Mercenary\" to act as her protector. He travels with Zero and Albus, a young magician, on\ + \ their search for the Grimoire of Zero: a powerful spell book that could be extremely dangerous in the wrong hands.\ + \ During their journey, his inner kindness is revealed as he starts to show compassion and sympathy towards humans\ + \ and witches alike, and the unlikely companions grow together.\n \n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: [] + - mal_id: 30736 + url: https://myanimelist.net/anime/30736/Shingeki_no_Bahamut__Virgin_Soul + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/85564.jpg + small_image_url: https://myanimelist.net/images/anime/13/85564t.jpg + large_image_url: https://myanimelist.net/images/anime/13/85564l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/85564.webp + small_image_url: https://myanimelist.net/images/anime/13/85564t.webp + large_image_url: https://myanimelist.net/images/anime/13/85564l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XSczPBZeNRc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Bahamut: Virgin Soul' + - type: Japanese + title: 神撃のバハムート VIRGIN SOUL + - type: English + title: 'Rage of Bahamut: Virgin Soul' + - type: German + title: 'Rage of Bahamut: Virgin Soul' + - type: French + title: 'Rage of Bahamut: Virgin Soul' + title: 'Shingeki no Bahamut: Virgin Soul' + title_english: 'Rage of Bahamut: Virgin Soul' + title_japanese: 神撃のバハムート VIRGIN SOUL + title_synonyms: [] + type: TV + source: Card game + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2017-04-08T00:00:00+00:00' + to: '2017-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2017 + to: + day: 30 + month: 9 + year: 2017 + string: Apr 8, 2017 to Sep 30, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.44 + scored_by: 95351 + rank: 2546 + popularity: 1084 + members: 259807 + favorites: 1077 + synopsis: |- + A decade ago, humans, gods, and demons joined forces to stand against the threat of the colossal dragon, Bahamut. + + Now, in the present, humans living in the capital city of Anatae have been enjoying lavish and prosperous lives. Their progress is largely due to the administration of the newly appointed king, Charioce XVII, who has stolen a power from the gods and allowed for the abuse and slavery of the demon race in the capital. As humans continue to immorally exploit demons, a sense of hostility against humans begins to build up within demon communities, threatening a revolt. Meanwhile, an atmosphere of uneasiness is spreading among the gods, as they scramble to regain their lost power. + + Amidst it all, Nina Drango, a cheerful young bounty hunter, has arrived at the Royal Capital with hopes of settling down and earning a living. However, her peaceful life in the capital is quickly thrown into chaos when she crosses paths with the ominous Rag Demon who is determined to seek revenge against humans, and Kaisar Lidfard, a noble knight battling an internal moral conflict. + + Shingeki no Bahamut: Virgin Soul continues the tale of the social and moral conflict between humans, gods, and demons, and their struggle for survival and dominance. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2017 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 34019 + url: https://myanimelist.net/anime/34019/Tsugumomo + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/84461.jpg + small_image_url: https://myanimelist.net/images/anime/13/84461t.jpg + large_image_url: https://myanimelist.net/images/anime/13/84461l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/84461.webp + small_image_url: https://myanimelist.net/images/anime/13/84461t.webp + large_image_url: https://myanimelist.net/images/anime/13/84461l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ptCRrKccB0E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsugumomo + - type: Japanese + title: つぐもも + - type: English + title: Tsugumomo + title: Tsugumomo + title_english: Tsugumomo + title_japanese: つぐもも + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-02T00:00:00+00:00' + to: '2017-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2017 + to: + day: 18 + month: 6 + year: 2017 + string: Apr 2, 2017 to Jun 18, 2017 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.04 + scored_by: 86861 + rank: 4935 + popularity: 1283 + members: 219521 + favorites: 525 + synopsis: "In Japanese folklore, a \"tsukumogami\" is an object that has gained a soul, becoming alive and self-aware.\ + \ There are two types of tsukumogami: the mature \"tsugumomo,\" who have developed through long years of harmony with\ + \ their owners, and the aberrant \"amasogi,\" premature spirits that are only born to grant the destructive wishes\ + \ of certain people.\n\nKazuya Kagami has never gone without his mother's obi after her death. Be it at home or school,\ + \ he keeps it safe with him at all times. One day, he nearly loses his life when a wig amasogi attacks him. When all\ + \ seems to be over, his treasured obi defends him, transforming into a beautiful girl. She introduces herself as Kiriha,\ + \ a tsugumomo owned by Kazuya's mother. \n\nWith Kiriha's arrival, Kazuya enters a reality he has never seen before,\ + \ a world with gods and tsukumogami.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 781 + type: anime + name: Studio NOIX + url: https://myanimelist.net/anime/producer/781/Studio_NOIX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1563 + type: anime + name: Hakuhodo + url: https://myanimelist.net/anime/producer/1563/Hakuhodo + - mal_id: 1649 + type: anime + name: Kakao Japan + url: https://myanimelist.net/anime/producer/1649/Kakao_Japan + - mal_id: 1744 + type: anime + name: My Theater D.D. + url: https://myanimelist.net/anime/producer/1744/My_Theater_DD + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 31629 + url: https://myanimelist.net/anime/31629/Granblue_Fantasy_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/81630.jpg + small_image_url: https://myanimelist.net/images/anime/2/81630t.jpg + large_image_url: https://myanimelist.net/images/anime/2/81630l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/81630.webp + small_image_url: https://myanimelist.net/images/anime/2/81630t.webp + large_image_url: https://myanimelist.net/images/anime/2/81630l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yGZoqzMWRuU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Granblue Fantasy The Animation + - type: Japanese + title: GRANBLUE FANTASY The Animation + - type: English + title: 'Granblue Fantasy: The Animation' + - type: German + title: GRANBLUE FANTASY The Animation + - type: Spanish + title: GRANBLUE FANTASY The Animation + - type: French + title: 'GRANBLUE FANTASY: The Animation' + title: Granblue Fantasy The Animation + title_english: 'Granblue Fantasy: The Animation' + title_japanese: GRANBLUE FANTASY The Animation + title_synonyms: [] + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-04-02T00:00:00+00:00' + to: '2017-06-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2017 + to: + day: 25 + month: 6 + year: 2017 + string: Apr 2, 2017 to Jun 25, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.64 + scored_by: 79374 + rank: 7298 + popularity: 1301 + members: 215861 + favorites: 370 + synopsis: |- + This is a world of the skies, where many islands drift in the sky. A boy named Gran and a talking winged lizard named Vyrn lived in Zinkenstill, an island which yields mysteries. One day, they come across a girl named Lyria. Lyria had escaped from the Erste Empire, a military government that is trying to rule over this world using powerful military prowess. In order to escape from the Empire, Gran and Lyria head out into the vast skies, holding the letter Gran's father left behind—which said, "I will be waiting at Estalucia, Island of Stars." + + (Source: Aniplex of America) + background: '' + season: spring + year: 2017 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35459 + url: https://myanimelist.net/anime/35459/Boku_no_Hero_Academia__Training_of_the_Dead + images: + jpg: + image_url: https://myanimelist.net/images/anime/1624/111683.jpg + small_image_url: https://myanimelist.net/images/anime/1624/111683t.jpg + large_image_url: https://myanimelist.net/images/anime/1624/111683l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1624/111683.webp + small_image_url: https://myanimelist.net/images/anime/1624/111683t.webp + large_image_url: https://myanimelist.net/images/anime/1624/111683l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qDKb6Rqwi0k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia: Training of the Dead' + - type: Japanese + title: 僕のヒーローアカデミア トレーニング・オブ・ザ・デッド + - type: English + title: 'My Hero Academia: Training of the Dead' + title: 'Boku no Hero Academia: Training of the Dead' + title_english: 'My Hero Academia: Training of the Dead' + title_japanese: 僕のヒーローアカデミア トレーニング・オブ・ザ・デッド + title_synonyms: [] + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-06-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 6 + year: 2017 + to: + day: null + month: null + year: null + string: Jun 2, 2017 + duration: 25 min + rating: PG-13 - Teens 13 or older + score: 7.21 + scored_by: 109925 + rank: 3861 + popularity: 1312 + members: 213131 + favorites: 210 + synopsis: "Returning from their internships, the students of Class 1-A are immediately thrown into more training by\ + \ their homeroom teacher, Shouta Aizawa. For this exercise, the class will be joining four students from Isamu Academy\ + \ High School to compete in a survival game. Split up into groups of four, students must either eliminate each other\ + \ or stay hidden until time runs out to win. \n\nThe training also acts as a reunion between Tsuyu Asui and her friend\ + \ from middle school, Habuko Mongoose. However, not all the students from Isamu are friendly—Katsuki Bakugou almost\ + \ instantly picks a fight with Romero Fujimi. The conflict between the two leads Romero to angrily release his Quirk,\ + \ a gas which zombifies anyone it comes in contact with. How will the remaining students deal with the situation after\ + \ most of the people around them turn into zombies?\n\n[Written by MAL Rewrite]" + background: 'Boku no Hero Academia: Training of the Dead was bundled with the 14th volume of the Boku no Hero Academia + manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34055 + url: https://myanimelist.net/anime/34055/Berserk_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/85296.jpg + small_image_url: https://myanimelist.net/images/anime/12/85296t.jpg + large_image_url: https://myanimelist.net/images/anime/12/85296l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/85296.webp + small_image_url: https://myanimelist.net/images/anime/12/85296t.webp + large_image_url: https://myanimelist.net/images/anime/12/85296l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tbx0PAsWiKw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Berserk 2nd Season + - type: Japanese + title: ベルセルク + - type: English + title: 'Berserk: Season II' + - type: German + title: Berserk Staffel 2 + - type: Spanish + title: Berserk Temporada 2 + - type: French + title: Berserk Saison 2 + title: Berserk 2nd Season + title_english: 'Berserk: Season II' + title_japanese: ベルセルク + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-07T00:00:00+00:00' + to: '2017-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2017 + to: + day: 23 + month: 6 + year: 2017 + string: Apr 7, 2017 to Jun 23, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.59 + scored_by: 112322 + rank: 7588 + popularity: 1331 + members: 210215 + favorites: 556 + synopsis: "Demons have now become commonplace around the kingdom of Midland, which has fallen into chaos. The swordsman\ + \ Guts still cannot stay in one place for long due to his demonic brand. He could always manage to protect himself\ + \ when he was alone, but now he has the added challenge of protecting former Commander Casca, a shell of her former\ + \ self who neither remembers nor trusts him. They never have a moment's rest with the constant threat of demons, and\ + \ they need a place where Casca will be safe till they find a way to heal her. Their elf ally, Puck, tells of the\ + \ mystical land of Elfhelm, which is supposed to be a safe haven from the demons that ravage the lands. Tired and\ + \ with only a vague hope, they struggle on to find a place to live—and they still need to find those responsible for\ + \ the madness they are forced to endure. \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1498 + type: anime + name: Koei Tecmo Games + url: https://myanimelist.net/anime/producer/1498/Koei_Tecmo_Games + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1237 + type: anime + name: Millepensee + url: https://myanimelist.net/anime/producer/1237/Millepensee + - mal_id: 1381 + type: anime + name: GEMBA + url: https://myanimelist.net/anime/producer/1381/GEMBA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 30778 + url: https://myanimelist.net/anime/30778/Fairy_Tail_Movie_2__Dragon_Cry + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/85391.jpg + small_image_url: https://myanimelist.net/images/anime/13/85391t.jpg + large_image_url: https://myanimelist.net/images/anime/13/85391l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/85391.webp + small_image_url: https://myanimelist.net/images/anime/13/85391t.webp + large_image_url: https://myanimelist.net/images/anime/13/85391l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9Yk5cBOTcZ8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fairy Tail Movie 2: Dragon Cry' + - type: Synonym + title: 'Gekijouban Fairy Tail: Dragon Cry' + - type: Japanese + title: 劇場版 FAIRY TAIL 『DRAGON CRY』 + - type: English + title: 'Fairy Tail the Movie 2: Dragon Cry' + - type: German + title: 'Fairy Tale: Dragon Cry Movie 2' + - type: Spanish + title: 'Fairy Tail: Dragon Cry' + - type: French + title: 'Fairy Tail Le Film: Dragon Cry' + title: 'Fairy Tail Movie 2: Dragon Cry' + title_english: 'Fairy Tail the Movie 2: Dragon Cry' + title_japanese: 劇場版 FAIRY TAIL 『DRAGON CRY』 + title_synonyms: + - 'Gekijouban Fairy Tail: Dragon Cry' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-05-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 5 + year: 2017 + to: + day: null + month: null + year: null + string: May 6, 2017 + duration: 1 hr 24 min + rating: PG-13 - Teens 13 or older + score: 7.56 + scored_by: 105832 + rank: 1961 + popularity: 1353 + members: 207026 + favorites: 792 + synopsis: "Dragon Cry is a magical artifact of deadly power, formed into a staff by the fury and despair of dragons\ + \ long gone. Now, this power has been stolen from the hands of the Fiore kingdom by the nefarious traitor Zash Caine,\ + \ who flees with it to the small island nation of Stella. Frightened that the power has fallen into the wrong hands,\ + \ the King of Fiore hastily sends Fairy Tail to retrieve the staff. But this task proves frightening as a shadowy\ + \ secret lies in the heart of the kingdom of Stella. Dragon Cry follows their story as they muster up all their strength\ + \ to recover the stolen staff and save both kingdoms.\n \n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34591 + url: https://myanimelist.net/anime/34591/Natsume_Yuujinchou_Roku + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/84416.jpg + small_image_url: https://myanimelist.net/images/anime/6/84416t.jpg + large_image_url: https://myanimelist.net/images/anime/6/84416l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/84416.webp + small_image_url: https://myanimelist.net/images/anime/6/84416t.webp + large_image_url: https://myanimelist.net/images/anime/6/84416l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Natsume Yuujinchou Roku + - type: Synonym + title: Natsume Yuujinchou Season 6 + - type: Synonym + title: Natsume's Book of Friends Six + - type: Japanese + title: 夏目友人帳 陸 + - type: English + title: Natsume's Book of Friends Season 6 + - type: German + title: Natsume Yujin-cho 6 + - type: Spanish + title: Natsume Yujin-cho 6 + - type: French + title: Natsume Yujin-cho 6 + title: Natsume Yuujinchou Roku + title_english: Natsume's Book of Friends Season 6 + title_japanese: 夏目友人帳 陸 + title_synonyms: + - Natsume Yuujinchou Season 6 + - Natsume's Book of Friends Six + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2017-04-12T00:00:00+00:00' + to: '2017-06-21T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2017 + to: + day: 21 + month: 6 + year: 2017 + string: Apr 12, 2017 to Jun 21, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.61 + scored_by: 76804 + rank: 111 + popularity: 1359 + members: 206293 + favorites: 1160 + synopsis: "Takashi Natsume has grown accustomed to his encounters with youkai through the Book of Friends, which contains\ + \ the names of youkai whom his grandmother, Reiko Natsume, has sealed in contracts. These encounters allow Natsume\ + \ to better understand the youkai, Reiko, and himself. \n\nThe Book of Friends is a powerful tool that can be used\ + \ to control youkai; it is sought after by both youkai and exorcists alike. Natsume just wants to live out his daily\ + \ life in peace but is constantly disrupted by these experiences. If he is to end this torment, Natsume must explore\ + \ more about the book and the world of exorcism, as well as begin to open his heart to those who can help him.\n\n\ + [Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Wednesdays + time: 01:35 + timezone: Asia/Tokyo + string: Wednesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + licensors: [] + studios: + - mal_id: 1119 + type: anime + name: Shuka + url: https://myanimelist.net/anime/producer/1119/Shuka + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 32900 + url: https://myanimelist.net/anime/32900/Mahouka_Koukou_no_Rettousei_Movie__Hoshi_wo_Yobu_Shoujo + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/85524.jpg + small_image_url: https://myanimelist.net/images/anime/8/85524t.jpg + large_image_url: https://myanimelist.net/images/anime/8/85524l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/85524.webp + small_image_url: https://myanimelist.net/images/anime/8/85524t.webp + large_image_url: https://myanimelist.net/images/anime/8/85524l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FbdcdsmoSfg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo' + - type: Synonym + title: Gekijouban Mahouka Koukou no Rettousei + - type: Japanese + title: 劇場版 魔法科高校の劣等生 星を呼ぶ少女 + - type: English + title: The Irregular at Magic High School The Movie - The Girl Who Summons The Stars + - type: German + title: 'The Irregular at Magic High School: The Girl who summons the Stars, The Movie' + title: 'Mahouka Koukou no Rettousei Movie: Hoshi wo Yobu Shoujo' + title_english: The Irregular at Magic High School The Movie - The Girl Who Summons The Stars + title_japanese: 劇場版 魔法科高校の劣等生 星を呼ぶ少女 + title_synonyms: + - Gekijouban Mahouka Koukou no Rettousei + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-06-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 6 + year: 2017 + to: + day: null + month: null + year: null + string: Jun 17, 2017 + duration: 1 hr 30 min + rating: R - 17+ (violence & profanity) + score: 7.45 + scored_by: 98679 + rank: 2484 + popularity: 1369 + members: 204260 + favorites: 449 + synopsis: |- + In the story, the seasons have changed and it will soon be the second spring. Tatsuya and Miyuki have finished their first year at First Magic High School and are on their spring break. The two go to their villa on the Ogasawara Island archipelago. After only a small moment of peace a lone young woman named Kokoa appears before them. She has abandoned the Naval base and she tells Tatsuya her one wish. + + (Source: ANN) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 33929 + url: https://myanimelist.net/anime/33929/Boku_no_Hero_Academia__Sukue_Kyuujo_Kunren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1812/111684.jpg + small_image_url: https://myanimelist.net/images/anime/1812/111684t.jpg + large_image_url: https://myanimelist.net/images/anime/1812/111684l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1812/111684.webp + small_image_url: https://myanimelist.net/images/anime/1812/111684t.webp + large_image_url: https://myanimelist.net/images/anime/1812/111684l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-vBvKpRSers?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia: Sukue! Kyuujo Kunren!' + - type: Synonym + title: Boku no Hero Academia Jump Festa 2016 Special + - type: Japanese + title: 僕のヒーローアカデミア救え!救助訓練! + - type: English + title: 'My Hero Academia: Rescue! Rescue Training' + title: 'Boku no Hero Academia: Sukue! Kyuujo Kunren!' + title_english: 'My Hero Academia: Rescue! Rescue Training' + title_japanese: 僕のヒーローアカデミア救え!救助訓練! + title_synonyms: + - Boku no Hero Academia Jump Festa 2016 Special + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-04-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 4 + year: 2017 + to: + day: null + month: null + year: null + string: Apr 4, 2017 + duration: 26 min + rating: PG-13 - Teens 13 or older + score: 7.21 + scored_by: 97488 + rank: 3863 + popularity: 1430 + members: 194936 + favorites: 162 + synopsis: "UA High School must regain the public's confidence after the surprise villain attack during class 1-A's training\ + \ session. Although some of the teachers were gravely injured in the attack, Izuku \"Deku\" Midoriya and his classmates\ + \ must continue to learn and train, and utilize their quirks in varying environments and circumstances. \n\nBoku no\ + \ Hero Academia: Sukue! Kyuujo Kunren! follows class 1-A as they attempt to finally complete their training. However,\ + \ there's a masked figure roaming around the training center. Have the villains responsible for the previous incident\ + \ returned to finish the job? If so, are the students ready to fight back?\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34480 + url: https://myanimelist.net/anime/34480/Shokugeki_no_Souma__Ni_no_Sara_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1032/96640.jpg + small_image_url: https://myanimelist.net/images/anime/1032/96640t.jpg + large_image_url: https://myanimelist.net/images/anime/1032/96640l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1032/96640.webp + small_image_url: https://myanimelist.net/images/anime/1032/96640t.webp + large_image_url: https://myanimelist.net/images/anime/1032/96640l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Asx0p5uCn4U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: Ni no Sara OVA' + - type: Synonym + title: 'Shokugeki no Souma: Ni no Sara - Jump Festa 2016 Special' + - type: Synonym + title: 'Shokugeki no Soma: Ni no Sara OVA' + - type: Synonym + title: Shokugeki no Souma 2nd Season OVA + - type: Japanese + title: 食戟のソーマ 弍ノ皿 + - type: English + title: Food Wars! The Second Plate OVA + title: 'Shokugeki no Souma: Ni no Sara OVA' + title_english: Food Wars! The Second Plate OVA + title_japanese: 食戟のソーマ 弍ノ皿 + title_synonyms: + - 'Shokugeki no Souma: Ni no Sara - Jump Festa 2016 Special' + - 'Shokugeki no Soma: Ni no Sara OVA' + - Shokugeki no Souma 2nd Season OVA + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2017-05-01T00:00:00+00:00' + to: '2017-07-04T00:00:00+00:00' + prop: + from: + day: 1 + month: 5 + year: 2017 + to: + day: 4 + month: 7 + year: 2017 + string: May 1, 2017 to Jul 4, 2017 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 89320 + rank: 2492 + popularity: 1568 + members: 176826 + favorites: 112 + synopsis: "Having completed their Stagiaire assignments, the residents of Polar Star Dormitory and their friends visit\ + \ a hot springs inn. Though they planned on relaxing, these young chefs step up to the plate when the inn's entire\ + \ kitchen staff suffer accidents. Unbeknownst to them, they will not be cooking for any ordinary patrons.\n\nSometime\ + \ after this trip, Souma Yukihira's desire for worthy opponents is stoked when he, Megumi Tadokoro, and the other\ + \ Autumn Election quarter-finalists are invited to the annual Autumn Leaves Viewing event. The eight Tootsuki freshmen\ + \ have a special opportunity to enjoy tea with the Elite Ten Council—including the Tenth Seat Erina Nakiri, who participates\ + \ alongside her first-year classmates. Though it is framed as a friendly introduction between nine promising underclassmen\ + \ and nine prestigious upperclassmen, Director Senzaemon Nakiri sees this meeting for what it is: a first encounter\ + \ between the current reigning elite and their eventual usurpers. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33834 + url: https://myanimelist.net/anime/33834/Sin__Nanatsu_no_Taizai + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/86621.jpg + small_image_url: https://myanimelist.net/images/anime/7/86621t.jpg + large_image_url: https://myanimelist.net/images/anime/7/86621l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/86621.webp + small_image_url: https://myanimelist.net/images/anime/7/86621t.webp + large_image_url: https://myanimelist.net/images/anime/7/86621l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KQH6l2UPhao?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sin: Nanatsu no Taizai' + - type: Japanese + title: sin 七つの大罪 + - type: English + title: Seven Mortal Sins + - type: German + title: Seven Mortal Sins + - type: Spanish + title: Seven Mortal Sins + - type: French + title: Sin Nanatsu no Taizai + title: 'Sin: Nanatsu no Taizai' + title_english: Seven Mortal Sins + title_japanese: sin 七つの大罪 + title_synonyms: [] + type: TV + source: Other + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-04-15T00:00:00+00:00' + to: '2017-07-29T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2017 + to: + day: 29 + month: 7 + year: 2017 + string: Apr 15, 2017 to Jul 29, 2017 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 5.76 + scored_by: 56284 + rank: null + popularity: 1610 + members: 171302 + favorites: 369 + synopsis: "Lucifer, an Archangel and former head of the Seven Heavenly Virtues, is banished from Heaven after revolting\ + \ against the Lord's will. While plummeting from the skies, she is halted halfway between Heaven and Hell after crashing\ + \ through the roof of a high school church. Though she is witnessed by Maria Totsuka, a soft-spoken student at the\ + \ academy, Lucifer swiftly continues her descent into the depths of Hell.\n\nSoon after her arrival, Lucifer is found\ + \ by aspiring Demon Lord and fangirl Leviathan. The two decide to overthrow the Seven Sins, the authorities of Hell\ + \ under the leadership of Belial. But with their combined powers, the Seven Sins are able to repel Lucifer and contain\ + \ her divine powers by placing a Garb of Punishment over her body, transforming Lucifer into a Demon Lord. \n\nLonging\ + \ for revenge and accompanied by Leviathan, Lucifer makes her way back to Earth, where she forces Maria to become\ + \ her immortal slave. Together with her new accomplices, Lucifer sets out on a mission to subdue the Seven Sins so\ + \ she may be free of the curse brought upon by her Garb.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2017 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1654 + type: anime + name: Orchid Seed + url: https://myanimelist.net/anime/producer/1654/Orchid_Seed + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 8 + type: anime + name: Artland + url: https://myanimelist.net/anime/producer/8/Artland + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/31-2017-summer.yaml b/test/fixtures/jikan/season_matrix/31-2017-summer.yaml new file mode 100644 index 0000000..a4d38ca --- /dev/null +++ b/test/fixtures/jikan/season_matrix/31-2017-summer.yaml @@ -0,0 +1,3534 @@ +metadata: + captured_at: '2026-05-11T11:33:43Z' + label: 2017-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2017/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:42 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:b0c478c4dc3841477862aa8adb584144e0e34ddd + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 306 + per_page: 25 + data: + - mal_id: 34933 + url: https://myanimelist.net/anime/34933/Kakegurui + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/86578.jpg + small_image_url: https://myanimelist.net/images/anime/3/86578t.jpg + large_image_url: https://myanimelist.net/images/anime/3/86578l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/86578.webp + small_image_url: https://myanimelist.net/images/anime/3/86578t.webp + large_image_url: https://myanimelist.net/images/anime/3/86578l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v2xJDuM9ZDM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakegurui + - type: Synonym + title: 'Kakegurui: Compulsive Gambler' + - type: Synonym + title: Gambling School + - type: Japanese + title: 賭ケグルイ + - type: English + title: Kakegurui + - type: German + title: 'Kakegurui: Das Leben ist ein Spiel' + - type: French + title: Gambling School + title: Kakegurui + title_english: Kakegurui + title_japanese: 賭ケグルイ + title_synonyms: + - 'Kakegurui: Compulsive Gambler' + - Gambling School + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-01T00:00:00+00:00' + to: '2017-09-23T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2017 + to: + day: 23 + month: 9 + year: 2017 + string: Jul 1, 2017 to Sep 23, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.21 + scored_by: 998223 + rank: 3890 + popularity: 80 + members: 1626793 + favorites: 11475 + synopsis: |- + Unlike many schools, attending Hyakkaou Private Academy prepares students for their time in the real world. Since many of the students are the children of the richest people in the world, the academy has its quirks that separate it from all the others. By day, it is a normal school, educating its pupils in history, languages, and the like. But at night, it turns into a gambling den, educating them in the art of dealing with money and manipulating people. Money is power; those who come out on top in the games stand at the top of the school. + + Yumeko Jabami, a seemingly naive and beautiful transfer student, is ready to try her hand at Hyakkaou's special curriculum. Unlike the rest, she doesn't play to win, but for the thrill of the gamble, and her borderline insane way of gambling might just bring too many new cards to the table. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34599 + url: https://myanimelist.net/anime/34599/Made_in_Abyss + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/86733.jpg + small_image_url: https://myanimelist.net/images/anime/6/86733t.jpg + large_image_url: https://myanimelist.net/images/anime/6/86733l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/86733.webp + small_image_url: https://myanimelist.net/images/anime/6/86733t.webp + large_image_url: https://myanimelist.net/images/anime/6/86733l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AQbaZeby2zA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Made in Abyss + - type: Japanese + title: メイドインアビス + - type: English + title: Made in Abyss + title: Made in Abyss + title_english: Made in Abyss + title_japanese: メイドインアビス + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-07-07T00:00:00+00:00' + to: '2017-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2017 + to: + day: 29 + month: 9 + year: 2017 + string: Jul 7, 2017 to Sep 29, 2017 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.62 + scored_by: 837744 + rank: 102 + popularity: 92 + members: 1552279 + favorites: 47845 + synopsis: |- + The Abyss—a gaping chasm stretching down into the depths of the earth, filled with mysterious creatures and relics from a time long past. How did it come to be? What lies at the bottom? Countless brave individuals, known as Divers, have sought to solve these mysteries of the Abyss, fearlessly descending into its darkest realms. The best and bravest of the Divers, the White Whistles, are hailed as legends by those who remain on the surface. + + Riko, daughter of the missing White Whistle Lyza the Annihilator, aspires to become like her mother and explore the furthest reaches of the Abyss. However, just a novice Red Whistle herself, she is only permitted to roam its most upper layer. Even so, Riko has a chance encounter with a mysterious robot with the appearance of an ordinary young boy. She comes to name him Reg, and he has no recollection of the events preceding his discovery. Certain that the technology to create Reg must come from deep within the Abyss, the two decide to venture forth into the chasm to recover his memories and see the bottom of the great pit with their own eyes. However, they know not of the harsh reality that is the true existence of the Abyss. + + [Written by MAL Rewrite] + background: The first season adapts the first three manga volumes in their entirety, and it concludes with the first + chapter of the manga's fourth volume. + season: summer + year: 2017 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 35507 + url: https://myanimelist.net/anime/35507/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/86830.jpg + small_image_url: https://myanimelist.net/images/anime/5/86830t.jpg + large_image_url: https://myanimelist.net/images/anime/5/86830l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/86830.webp + small_image_url: https://myanimelist.net/images/anime/5/86830t.webp + large_image_url: https://myanimelist.net/images/anime/5/86830l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iYsx6w5PNno?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e + - type: Synonym + title: Welcome to the Classroom of the Elite + - type: Synonym + title: You-jitsu + - type: Synonym + title: You-zitsu + - type: Japanese + title: ようこそ実力至上主義の教室へ + - type: English + title: Classroom of the Elite + - type: German + title: Classroom of the Elite + - type: Spanish + title: Classroom of the Elite + - type: French + title: Classroom of the Elite + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e + title_english: Classroom of the Elite + title_japanese: ようこそ実力至上主義の教室へ + title_synonyms: + - Welcome to the Classroom of the Elite + - You-jitsu + - You-zitsu + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-12T00:00:00+00:00' + to: '2017-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2017 + to: + day: 27 + month: 9 + year: 2017 + string: Jul 12, 2017 to Sep 27, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.83 + scored_by: 920043 + rank: 1116 + popularity: 101 + members: 1466774 + favorites: 20058 + synopsis: |- + On the surface, Koudo Ikusei Senior High School is a utopia. The students enjoy an unparalleled amount of freedom, and it is ranked highly in Japan. However, the reality is less than ideal. Four classes, A through D, are ranked in order of merit, and only the top classes receive favorable treatment. + + Kiyotaka Ayanokouji is a student of Class D, where the school dumps its worst. There he meets the unsociable Suzune Horikita, who believes she was placed in Class D by mistake and desires to climb all the way to Class A, and the seemingly amicable class idol Kikyou Kushida, whose aim is to make as many friends as possible. + + While class membership is permanent, class rankings are not; students in lower ranked classes can rise in rankings if they score better than those in the top ones. Additionally, in Class D, there are no bars on what methods can be used to get ahead. In this cutthroat school, can they prevail against the odds and reach the top? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1707 + type: anime + name: AKABEiSOFT2 + url: https://myanimelist.net/anime/producer/1707/AKABEiSOFT2 + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 33674 + url: https://myanimelist.net/anime/33674/No_Game_No_Life__Zero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1085/90759.jpg + small_image_url: https://myanimelist.net/images/anime/1085/90759t.jpg + large_image_url: https://myanimelist.net/images/anime/1085/90759l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1085/90759.webp + small_image_url: https://myanimelist.net/images/anime/1085/90759t.webp + large_image_url: https://myanimelist.net/images/anime/1085/90759l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Raag8InWBVY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'No Game No Life: Zero' + - type: Synonym + title: NGNL Zero + - type: Synonym + title: NGNL the Movie + - type: Japanese + title: ノーゲーム・ノーライフ ゼロ + - type: English + title: 'No Game, No Life: Zero' + - type: Spanish + title: No Game no Life Zero + title: 'No Game No Life: Zero' + title_english: 'No Game, No Life: Zero' + title_japanese: ノーゲーム・ノーライフ ゼロ + title_synonyms: + - NGNL Zero + - NGNL the Movie + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-07-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 7 + year: 2017 + to: + day: null + month: null + year: null + string: Jul 15, 2017 + duration: 1 hr 46 min + rating: PG-13 - Teens 13 or older + score: 8.16 + scored_by: 510185 + rank: 509 + popularity: 212 + members: 950118 + favorites: 7988 + synopsis: "In ancient Disboard, Riku is an angry, young warrior intent on saving humanity from the warring Exceed, the\ + \ 16 sentient species, fighting to establish the One True God among the Old Deus. In a lawless land, humanity's lack\ + \ of magic and weak bodies have made them easy targets for the other Exceed, leaving the humans on the brink of extinction.\ + \ \n\nOne day, however, hope returns to humanity when Riku finds a powerful female Ex-Machina, whom he names Schwi,\ + \ in an abandoned elf city. Exiled from her Cluster because of her research into human emotions, Schwi is convinced\ + \ that humanity has only survived due to the power of these feelings and is determined to understand the human heart.\ + \ Forming an unlikely partnership in the midst of the overwhelming chaos, Riku and Schwi must now find the answers\ + \ to their individual shortcomings in each other, and discover for themselves what it truly means to be human as they\ + \ fight for their lives together against all odds. Each with a powerful new ally in tow, it is now up to them to prevent\ + \ the extinction of the human race and establish peace throughout Disboard.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 34902 + url: https://myanimelist.net/anime/34902/Tsurezure_Children + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/86676.jpg + small_image_url: https://myanimelist.net/images/anime/12/86676t.jpg + large_image_url: https://myanimelist.net/images/anime/12/86676l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/86676.webp + small_image_url: https://myanimelist.net/images/anime/12/86676t.webp + large_image_url: https://myanimelist.net/images/anime/12/86676l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/u0NoaDvrJcE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsurezure Children + - type: Japanese + title: 徒然チルドレン + - type: English + title: Tsuredure Children + - type: German + title: Tsuredure Children + - type: Spanish + title: Tsuredure Children + - type: French + title: Tsuredure Children + title: Tsurezure Children + title_english: Tsuredure Children + title_japanese: 徒然チルドレン + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-04T00:00:00+00:00' + to: '2017-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2017 + to: + day: 19 + month: 9 + year: 2017 + string: Jul 4, 2017 to Sep 19, 2017 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 418269 + rank: 2134 + popularity: 293 + members: 783838 + favorites: 2785 + synopsis: |- + Young love—it takes many unique and fascinating forms that flourish as children begin to mature into adults. From being unable to confess to not knowing what real love actually feels like, various obstacles can arise when learning about romantic attraction for the first time. But underneath all that, young love is something truly beautiful to behold, leading to brand new experiences for those young and in love. + + Tsurezure Children depicts various scenarios of young love coming to fruition, along with the struggles and joys that it entails. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: '23:15' + timezone: Asia/Tokyo + string: Tuesdays at 23:15 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34280 + url: https://myanimelist.net/anime/34280/Gamers + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/86828.jpg + small_image_url: https://myanimelist.net/images/anime/4/86828t.jpg + large_image_url: https://myanimelist.net/images/anime/4/86828l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/86828.webp + small_image_url: https://myanimelist.net/images/anime/4/86828t.webp + large_image_url: https://myanimelist.net/images/anime/4/86828l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UBq2wniqUOo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gamers! + - type: Japanese + title: ゲーマーズ! + - type: English + title: Gamers! + title: Gamers! + title_english: Gamers! + title_japanese: ゲーマーズ! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-13T00:00:00+00:00' + to: '2017-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2017 + to: + day: 28 + month: 9 + year: 2017 + string: Jul 13, 2017 to Sep 28, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 398033 + rank: 6785 + popularity: 342 + members: 701502 + favorites: 2263 + synopsis: "Keita Amano is a typical high school gamer living out an average student's life. One day, however, he has\ + \ an unexpected meeting with the cutest girl in school that makes him want to disappear without a trace! \n\nThis\ + \ girl, Karen Tendou, is an exemplary student who is proclaimed to be the school's idol. She discovers that Amano\ + \ is a gamer, and this newfound knowledge incites a passionate desire within her to recruit him into the game club.\ + \ Upon visiting the club, Amano is forcefully made aware of a side to gaming wildly different than the one he loves\ + \ so dearly. \n\nTendou's interest in Amano begins shaking up what was once an uneventful life, filling it with spontaneity,\ + \ awkwardness, and a little bit of mayhem. As a result, every day becomes a comical battle for Amano's sanity as he\ + \ tries to adapt to these wild, unexpected changes.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2017 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 113 + type: anime + name: Kadokawa Shoten + url: https://myanimelist.net/anime/producer/113/Kadokawa_Shoten + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 1336 + type: anime + name: Chugai Mining + url: https://myanimelist.net/anime/producer/1336/Chugai_Mining + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1295 + type: anime + name: PINE JAM + url: https://myanimelist.net/anime/producer/1295/PINE_JAM + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 35203 + url: https://myanimelist.net/anime/35203/Isekai_wa_Smartphone_to_Tomo_ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/86794.jpg + small_image_url: https://myanimelist.net/images/anime/7/86794t.jpg + large_image_url: https://myanimelist.net/images/anime/7/86794l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/86794.webp + small_image_url: https://myanimelist.net/images/anime/7/86794t.webp + large_image_url: https://myanimelist.net/images/anime/7/86794l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Tpl6mSXo8po?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai wa Smartphone to Tomo ni. + - type: Synonym + title: In a Different World with a Smartphone. + - type: Japanese + title: 異世界はスマートフォンとともに。 + - type: English + title: In Another World With My Smartphone + - type: German + title: In Another World With My Smartphone + - type: Spanish + title: In Another World With My Smartphone + - type: French + title: In Another World With My Smartphone + title: Isekai wa Smartphone to Tomo ni. + title_english: In Another World With My Smartphone + title_japanese: 異世界はスマートフォンとともに。 + title_synonyms: + - In a Different World with a Smartphone. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-11T00:00:00+00:00' + to: '2017-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2017 + to: + day: 26 + month: 9 + year: 2017 + string: Jul 11, 2017 to Sep 26, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.1 + scored_by: 373975 + rank: 10468 + popularity: 397 + members: 629265 + favorites: 3027 + synopsis: |- + In a thoughtless blunder, God accidentally strikes down Touya Mochizuki with a stray bolt of lightning! As an apology, God offers him one wish and the chance to live again in a magical fantasy world. Touya happily accepts the offer and, for his one wish, asks only to keep his smartphone with him as he begins his journey into this mysterious world. + + Starting over in this new world, Touya finds it is filled with magic—which he has an affinity for—and cute girls vying for his attention. These girls—the twins Linze and Elze Silhoueska, Yumina Urnea Belfast, Leen, and Yae Kokonoe—provide Touya with no end of romantic frustrations, but also companionship as he discovers the secrets of this new world. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: '20:30' + timezone: Asia/Tokyo + string: Tuesdays at 20:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1594 + type: anime + name: Exit Tunes + url: https://myanimelist.net/anime/producer/1594/Exit_Tunes + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 196 + type: anime + name: Production Reed + url: https://myanimelist.net/anime/producer/196/Production_Reed + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 34403 + url: https://myanimelist.net/anime/34403/Hajimete_no_Gal + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/86826.jpg + small_image_url: https://myanimelist.net/images/anime/9/86826t.jpg + large_image_url: https://myanimelist.net/images/anime/9/86826l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/86826.webp + small_image_url: https://myanimelist.net/images/anime/9/86826t.webp + large_image_url: https://myanimelist.net/images/anime/9/86826l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7M5hNL1SsuI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hajimete no Gal + - type: Synonym + title: Hajimete no Gyaru + - type: Japanese + title: はじめてのギャル + - type: English + title: My First Girlfriend is a Gal + - type: German + title: My First Girlfriend is a Gal + - type: Spanish + title: My First Girlfriend is a Gal (Hajimete no Gal) + - type: French + title: My First Girlfriend is a Gal + title: Hajimete no Gal + title_english: My First Girlfriend is a Gal + title_japanese: はじめてのギャル + title_synonyms: + - Hajimete no Gyaru + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2017-07-12T00:00:00+00:00' + to: '2017-09-13T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2017 + to: + day: 13 + month: 9 + year: 2017 + string: Jul 12, 2017 to Sep 13, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.27 + scored_by: 329975 + rank: 9524 + popularity: 418 + members: 599427 + favorites: 1766 + synopsis: |- + Following a prank pulled by his perverse friends, Junichi Hashiba asks a gal out in an attempt to change the fact that he's a hopeless virgin. Yukana Yame, the girl in question, is disgusted by Junichi's groveling. However, through a series of teasing remarks, she soon finds herself bonding with him and ultimately accepting Junichi's confession, much to his surprise. + + Hajimete no Gal follows Junichi as he overcomes his lack of self-confidence and suppresses his sexual urges, all while thrust into a whole new school life full of lively girls and unpredictable mayhem. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34881 + url: https://myanimelist.net/anime/34881/Aho_Girl + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/86665.jpg + small_image_url: https://myanimelist.net/images/anime/7/86665t.jpg + large_image_url: https://myanimelist.net/images/anime/7/86665l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/86665.webp + small_image_url: https://myanimelist.net/images/anime/7/86665t.webp + large_image_url: https://myanimelist.net/images/anime/7/86665l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Auh5pgYXa5c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aho Girl + - type: Synonym + title: 'Ahogaru: Clueless Girl' + - type: Synonym + title: Dummy Girl + - type: Japanese + title: アホガール + - type: English + title: AHO-GIRL + - type: Spanish + title: Aho-Girl + title: Aho Girl + title_english: AHO-GIRL + title_japanese: アホガール + title_synonyms: + - 'Ahogaru: Clueless Girl' + - Dummy Girl + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-04T00:00:00+00:00' + to: '2017-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2017 + to: + day: 19 + month: 9 + year: 2017 + string: Jul 4, 2017 to Sep 19, 2017 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 6.71 + scored_by: 291880 + rank: 6842 + popularity: 475 + members: 532267 + favorites: 1197 + synopsis: "Yoshiko Hanabatake is an idiot beyond all belief. Somehow managing to consistently score zeroes on all of\ + \ her tests and consumed by an absurd obsession with bananas, her senseless acts have caused even her own mother to\ + \ lose all hope. Only one person is up to the task of keeping her insanity in check: childhood friend Akuru \"A-kun\"\ + \ Akutsu.\n \nThough he bemoans the ridiculous behavior he has to endure, the studious but terrifying A-kun is always\ + \ ready to put an end to any stupidity Yoshiko gets up to, with no qualms about using physical force. Unfortunately,\ + \ no matter how many times he attempts to knock some sense into her, the girl bounces right back to her usual shenanigans,\ + \ even dragging in some other eccentrics along for the ride. Try as he might to rein in her nonsense, every moment\ + \ is unpredictable with Yoshiko and her profound idiocy on the loose.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34662 + url: https://myanimelist.net/anime/34662/Fate_Apocrypha + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/86573.jpg + small_image_url: https://myanimelist.net/images/anime/9/86573t.jpg + large_image_url: https://myanimelist.net/images/anime/9/86573l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/86573.webp + small_image_url: https://myanimelist.net/images/anime/9/86573t.webp + large_image_url: https://myanimelist.net/images/anime/9/86573l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/c2r3sF9vAGs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fate/Apocrypha + - type: Japanese + title: Fate/Apocrypha + title: Fate/Apocrypha + title_english: null + title_japanese: Fate/Apocrypha + title_synonyms: [] + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2017-07-02T00:00:00+00:00' + to: '2017-12-31T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2017 + to: + day: 31 + month: 12 + year: 2017 + string: Jul 2, 2017 to Dec 31, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.21 + scored_by: 273055 + rank: 3878 + popularity: 499 + members: 514032 + favorites: 2689 + synopsis: |- + The Holy Grail is a powerful, ancient relic capable of granting any wish the beholder desires. In order to obtain this power, various magi known as "masters" summon legendary Heroic Spirits called "servants" to fight for them in a destructive battle royale—the Holy Grail War. Only the last master-servant pair standing may claim the Grail for themselves. Yet, the third war ended inconclusively, as the Grail mysteriously disappeared following the conflict. + + Many years later, the magi clan Yggdmillennia announces its possession of the Holy Grail, and intends to leave the Mage's Association. In response, the Association sends 50 elite magi to retrieve the Grail; however, all but one are killed by an unknown servant. The lone survivor is used as a messenger to convey Yggdmillennia's declaration of war on the Association. + + As there are only two parties involved in the conflict, the Holy Grail War takes on an unusual form. Yggdmillennia and the Mage's Association will each deploy seven master-servant pairs, and the side that loses all its combatants first will forfeit the artifact. As the 14 masters summon their servants and assemble on the battlefield, the magical world shivers in anticipation with the rise of the Great Holy Grail War. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 34934 + url: https://myanimelist.net/anime/34934/Koi_to_Uso + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/86663.jpg + small_image_url: https://myanimelist.net/images/anime/5/86663t.jpg + large_image_url: https://myanimelist.net/images/anime/5/86663l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/86663.webp + small_image_url: https://myanimelist.net/images/anime/5/86663t.webp + large_image_url: https://myanimelist.net/images/anime/5/86663l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_fZyv_ESidk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koi to Uso + - type: Japanese + title: 恋と嘘 + - type: English + title: Love and Lies + - type: German + title: Love & Lies + title: Koi to Uso + title_english: Love and Lies + title_japanese: 恋と嘘 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-04T00:00:00+00:00' + to: '2017-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2017 + to: + day: 19 + month: 9 + year: 2017 + string: Jul 4, 2017 to Sep 19, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.47 + scored_by: 211932 + rank: 8343 + popularity: 590 + members: 451332 + favorites: 1365 + synopsis: |- + In a futuristic society, Japan has implemented a complex system referred to as "The Red Threads of Science" to encourage successful marriages and combat increasingly low birthrates. Based on a compatibility calculation, young people at the age of 16 are assigned marriage partners by the government, with severe repercussions awaiting those who disobey the arrangement. For Yukari Nejima, a teen that considers himself average in every way, this system might be his best shot at living a fulfilling life. + + However, spurred by his infatuation for his classmate and long-time crush, Misaki Takasaki, Yukari defies the system and confesses his love. After some initial reluctance, Misaki reciprocates his feelings in a moment of passion. Unfortunately, before the two can further their relationship, Yukari receives his marriage notice. He is then thrown into a confusing web of love and lies when his less-than-thrilled assigned partner, Ririna Sanada, becomes fascinated with his illicit romance. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1313 + type: anime + name: Amuse + url: https://myanimelist.net/anime/producer/1313/Amuse + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 35247 + url: https://myanimelist.net/anime/35247/Owarimonogatari_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/87322.jpg + small_image_url: https://myanimelist.net/images/anime/6/87322t.jpg + large_image_url: https://myanimelist.net/images/anime/6/87322l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/87322.webp + small_image_url: https://myanimelist.net/images/anime/6/87322t.webp + large_image_url: https://myanimelist.net/images/anime/6/87322l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7WdyIcDlK2o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Owarimonogatari 2nd Season + - type: Synonym + title: End Story 2nd Season + - type: Japanese + title: 終物語 + - type: English + title: Owarimonogatari Second Season + - type: French + title: Owarimonogatari Saison 2 + title: Owarimonogatari 2nd Season + title_english: Owarimonogatari Second Season + title_japanese: 終物語 + title_synonyms: + - End Story 2nd Season + type: TV Special + source: Light novel + episodes: 7 + status: Finished Airing + airing: false + aired: + from: '2017-08-12T00:00:00+00:00' + to: '2017-08-13T00:00:00+00:00' + prop: + from: + day: 12 + month: 8 + year: 2017 + to: + day: 13 + month: 8 + year: 2017 + string: Aug 12, 2017 to Aug 13, 2017 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.86 + scored_by: 210804 + rank: 29 + popularity: 615 + members: 437843 + favorites: 9168 + synopsis: "Following an encounter with oddity specialist Izuko Gaen, third-year high school student Koyomi Araragi wakes\ + \ up in a strange, deserted void only to be greeted by a joyfully familiar face in an alarmingly unfamiliar place.\ + \ \n\nAraragi, with the help of his girlfriend Hitagi Senjougahara, maneuvers through the webs of his past and the\ + \ perplexities of the present in search of answers. However, fate once again delivers him to the eccentric transfer\ + \ student Ougi Oshino, who brings forth an unexpected proposal that may unearth the very foundation to which he is\ + \ anchored. As Araragi peels back the layers of mystery surrounding an apparition, he discovers a truth not meant\ + \ to be revealed.\n\n[Written by MAL Rewrite]" + background: 'Owarimonogatari 2nd Season adapts the fifth volume of NisiOisiN''s Monogatari Series: Final Season.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 34626 + url: https://myanimelist.net/anime/34626/Kono_Subarashii_Sekai_ni_Shukufuku_wo_2__Kono_Subarashii_Geijutsu_ni_Shukufuku_wo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1115/98517.jpg + small_image_url: https://myanimelist.net/images/anime/1115/98517t.jpg + large_image_url: https://myanimelist.net/images/anime/1115/98517l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1115/98517.webp + small_image_url: https://myanimelist.net/images/anime/1115/98517t.webp + large_image_url: https://myanimelist.net/images/anime/1115/98517l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!' + - type: Synonym + title: 'KonoSuba: God''s Blessing on This Wonderful World! Second Season OVA' + - type: Synonym + title: Kono Subarashii Sekai ni Shukufuku wo! 2 OVA + - type: Japanese + title: この素晴らしい世界に祝福を!2 この素晴らしい芸術に祝福を! + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! 2 - God''s Blessing on This Wonderful Art!' + title: 'Kono Subarashii Sekai ni Shukufuku wo! 2: Kono Subarashii Geijutsu ni Shukufuku wo!' + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! 2 - God''s Blessing on This Wonderful Art!' + title_japanese: この素晴らしい世界に祝福を!2 この素晴らしい芸術に祝福を! + title_synonyms: + - 'KonoSuba: God''s Blessing on This Wonderful World! Second Season OVA' + - Kono Subarashii Sekai ni Shukufuku wo! 2 OVA + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-07-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 7 + year: 2017 + to: + day: null + month: null + year: null + string: Jul 24, 2017 + duration: 28 min + rating: PG-13 - Teens 13 or older + score: 8.01 + scored_by: 246572 + rank: 735 + popularity: 668 + members: 408254 + favorites: 764 + synopsis: |- + On one noteworthy day in the Adventurer's Guild, Kazuma Satou encounters someone unexpected—a fan of his named Ran. Surprised that he even has a fan, Kazuma attempts to play it cool to impress her. Unfortunately for him, the guild's receptionist arrives with a request to defeat a giant golem guarding some ancient ruins, and Kazuma accepts only to keep Ran's admiration. + + Upon Kazuma and his party's successful return from the ruins, Kazuma continues to shamelessly brag to Ran. Capitalizing on his desperation, the receptionist approaches him with another quest that requires him to return to the same ruins. Hoping to find valuable treasures, Kazuma once again convinces his party to join him—but this time, he may be biting off more than he can chew. + + [Written by MAL Rewrite] + background: Bundled with the 12th volume of the light novel. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 467 + type: anime + name: Discotek Media + url: https://myanimelist.net/anime/producer/467/Discotek_Media + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 34636 + url: https://myanimelist.net/anime/34636/Ballroom_e_Youkoso + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/86739.jpg + small_image_url: https://myanimelist.net/images/anime/5/86739t.jpg + large_image_url: https://myanimelist.net/images/anime/5/86739l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/86739.webp + small_image_url: https://myanimelist.net/images/anime/5/86739t.webp + large_image_url: https://myanimelist.net/images/anime/5/86739l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9K3XP1Fcpcg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ballroom e Youkoso + - type: Japanese + title: ボールルームへようこそ + - type: English + title: Welcome to the Ballroom + - type: German + title: Welcome to the Ballroom + - type: Spanish + title: Welcome to the Ballroom + - type: French + title: Welcome to the Ballroom + title: Ballroom e Youkoso + title_english: Welcome to the Ballroom + title_japanese: ボールルームへようこそ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2017-07-09T00:00:00+00:00' + to: '2017-12-17T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2017 + to: + day: 17 + month: 12 + year: 2017 + string: Jul 9, 2017 to Dec 17, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 160706 + rank: 477 + popularity: 756 + members: 363333 + favorites: 3787 + synopsis: |- + Tatara Fujita is a shy middle schooler who has no particular plan for the future. He has gotten through life by avoiding any kind of confrontation and blending in with the crowd. But blending in isn't enough to get out of trouble, as some bullies harass him for money. Luckily, he is saved by a man named Kaname Sengoku. + + Kaname invites Tatara to his dance studio. Although he would normally never set foot in such a place, Tatara is captivated by Sengoku's commanding presence. Granted an opportunity to dance with fellow classmate Shizuku Hanaoka—who often practices at the studio—Tatara realizes there's something about the idea of being put in the limelight and dancing where people will see him that keeps him coming back. With an earnest, passionate drive to improve, Tatara begins his journey into the world of competitive dance. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: 02:08 + timezone: Asia/Tokyo + string: Sundays at 02:08 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1097 + type: anime + name: Bandai Namco Games + url: https://myanimelist.net/anime/producer/1097/Bandai_Namco_Games + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34104 + url: https://myanimelist.net/anime/34104/Knights___Magic + images: + jpg: + image_url: https://myanimelist.net/images/anime/1472/93813.jpg + small_image_url: https://myanimelist.net/images/anime/1472/93813t.jpg + large_image_url: https://myanimelist.net/images/anime/1472/93813l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1472/93813.webp + small_image_url: https://myanimelist.net/images/anime/1472/93813t.webp + large_image_url: https://myanimelist.net/images/anime/1472/93813l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/p4gSzsfTsFA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Knight's & Magic + - type: Japanese + title: ナイツ&マジック + - type: English + title: Knight's & Magic + title: Knight's & Magic + title_english: Knight's & Magic + title_japanese: ナイツ&マジック + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-07-02T00:00:00+00:00' + to: '2017-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2017 + to: + day: 24 + month: 9 + year: 2017 + string: Jul 2, 2017 to Sep 24, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 145043 + rank: 4751 + popularity: 959 + members: 292665 + favorites: 1123 + synopsis: |- + Having died in a car accident, Tsubasa Kurata—an otaku from modern Japan—is reborn in the Fremmevilla Kingdom, a medieval world where powerful mechs called Silhouette Knights are used to fight horrific demonic beasts. + + Born into a noble family under the name of Ernesti Echevarria and bestowed with prodigious magical abilities, he enrolls into Royal Laihaila Academy. This school of magic trains young men and women on how to pilot the Silhouette Knights, prepping them to protect the kingdom from threats, both demonic and human. Ernesti teams up with the twins named Adeltrud and Archid Olter with the goal to create his own Silhouette Knight one day, a feat unheard of for several centuries. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: '21:00' + timezone: Asia/Tokyo + string: Sundays at 21:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 34012 + url: https://myanimelist.net/anime/34012/Isekai_Shokudou + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/86666.jpg + small_image_url: https://myanimelist.net/images/anime/3/86666t.jpg + large_image_url: https://myanimelist.net/images/anime/3/86666l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/86666.webp + small_image_url: https://myanimelist.net/images/anime/3/86666t.webp + large_image_url: https://myanimelist.net/images/anime/3/86666l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/auIcebhIzMc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Shokudou + - type: Japanese + title: 異世界食堂 + - type: English + title: Restaurant to Another World + - type: German + title: Restaurant to Another World + - type: Spanish + title: Restaurant to Another World (Isekai Shokudou) + - type: French + title: Restaurant to Another World + title: Isekai Shokudou + title_english: Restaurant to Another World + title_japanese: 異世界食堂 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-04T00:00:00+00:00' + to: '2017-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2017 + to: + day: 19 + month: 9 + year: 2017 + string: Jul 4, 2017 to Sep 19, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 126536 + rank: 2616 + popularity: 968 + members: 290512 + favorites: 1163 + synopsis: "Western Restaurant Nekoya is a popular eatery located on a street corner in a Tokyo shopping district. Serving\ + \ both traditional Japanese fare as well as Western dishes, this eating establishment is popular among Tokyo's residents.\ + \ But this seemingly ordinary restaurant is also popular with another type of clientele...\n\nWhile the restaurant\ + \ is thought to be closed on Saturdays, the truth is that on this special day each week, its doors are instead opened\ + \ to the inhabitants of other worlds. From dragons and elves to fairies and mages, this restaurant has no shortage\ + \ of strange customers. Nevertheless, the enigmatic chef known only as \"Master\" will be waiting to serve up their\ + \ favorite dishes with a kind smile and keep them coming back for many more Saturdays to come. \n\n[Written by MAL\ + \ Rewrite]" + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: 01:35 + timezone: Asia/Tokyo + string: Tuesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1549 + type: anime + name: Dai Nippon Printing + url: https://myanimelist.net/anime/producer/1549/Dai_Nippon_Printing + - mal_id: 1708 + type: anime + name: Shufunotomo + url: https://myanimelist.net/anime/producer/1708/Shufunotomo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 34914 + url: https://myanimelist.net/anime/34914/New_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/86790.jpg + small_image_url: https://myanimelist.net/images/anime/4/86790t.jpg + large_image_url: https://myanimelist.net/images/anime/4/86790l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/86790.webp + small_image_url: https://myanimelist.net/images/anime/4/86790t.webp + large_image_url: https://myanimelist.net/images/anime/4/86790l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Jl4nGITlXyw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: New Game!! + - type: Synonym + title: New Game! Second Season + - type: Japanese + title: NEW GAME!! + - type: English + title: New Game!! + title: New Game!! + title_english: New Game!! + title_japanese: NEW GAME!! + title_synonyms: + - New Game! Second Season + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-11T00:00:00+00:00' + to: '2017-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2017 + to: + day: 26 + month: 9 + year: 2017 + string: Jul 11, 2017 to Sep 26, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 139771 + rank: 1464 + popularity: 1039 + members: 271973 + favorites: 895 + synopsis: |- + ​It has been a year since Aoba Suzukaze started working at the Eagle Jump game company. In that time, she and her eccentric coworkers in the character design department have worked hard to release the company's newest game: Fairies Story 3. With their latest title now complete, a new project must begin—starting with a contest to decide the character designs for the upcoming game. Through hard work, dedication, and some guidance from the previous character designer, Kou Yagami, Aoba wins the contest and begins her new role as lead character designer. + + However, her new job is not an easy one. In addition to having extra work and longer hours, Aoba questions whether she is the right fit for the job. As she overcomes her inexperience with the help of her friends and coworkers, Aoba is willing to face any challenge to make Eagle Jump's newest creation, a cutesy game called Peco. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Tuesdays + time: '21:30' + timezone: Asia/Tokyo + string: Tuesdays at 21:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 35363 + url: https://myanimelist.net/anime/35363/Kobayashi-san_Chi_no_Maid_Dragon__Valentine_Soshite_Onsen_-_Amari_Kitai_Shinaide_Kudasai + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/88486.jpg + small_image_url: https://myanimelist.net/images/anime/5/88486t.jpg + large_image_url: https://myanimelist.net/images/anime/5/88486l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/88486.webp + small_image_url: https://myanimelist.net/images/anime/5/88486t.webp + large_image_url: https://myanimelist.net/images/anime/5/88486l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai' + - type: Synonym + title: Kobayashi-san Chi no Maid Dragon Episode 14 + - type: Japanese + title: 小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください) + - type: English + title: 'Miss Kobayashi''s Dragon Maid: Valentine''s, and Then Hot Springs! (Please Don''t Get Your Hopes Up)' + - type: German + title: 'Miss Kobayashi''s Dragon Maid Folge 14: Valentinstag und Onsen (Erwartet nicht zu viel!)' + - type: Spanish + title: Miss Kobayashi's Dragon Maid Episodio 14 – ¡San Valentín y las Aguas Termales! (Por favor, no se hagan muchas + Ilusiones) + - type: French + title: 'Miss Kobayashi''s Dragon Maid Épisode 14: Valentines and Hot Springs!' + title: 'Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai' + title_english: 'Miss Kobayashi''s Dragon Maid: Valentine''s, and Then Hot Springs! (Please Don''t Get Your Hopes Up)' + title_japanese: 小林さんちのメイドラゴン バレンタイン, そして温泉! (あまり期待しないでください) + title_synonyms: + - Kobayashi-san Chi no Maid Dragon Episode 14 + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-09-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 9 + year: 2017 + to: + day: null + month: null + year: null + string: Sep 20, 2017 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 137294 + rank: 1458 + popularity: 1203 + members: 235552 + favorites: 284 + synopsis: "Wanting to take her affection for Kobayashi a step further, dragon maid Tooru is confident in her latest\ + \ creation: a love potion! With Valentine's Day just around the corner, Tooru decides there is no better way to use\ + \ the potion than in homemade chocolates. However, on the special holiday, Tooru's plan is quickly foiled after Kobayashi\ + \ sees through her heartfelt yet deceptive gift. \n\nDespite the unsuccessful attempt, many opportunities still await.\ + \ Between the lively atmosphere and a trip to the hot springs, Kobayashi and the dragons indulge themselves in the\ + \ sweet festivities.\n\n[Written by MAL Rewrite]" + background: 'Kobayashi-san Chi no Maid Dragon: Valentine, Soshite Onsen! - Amari Kitai Shinaide Kudasai is an unaired + episode included with the seventh Blu-ray/DVD volume of Kobayashi-san Chi no Maid Dragon.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 34498 + url: https://myanimelist.net/anime/34498/Uchiage_Hanabi_Shita_kara_Miru_ka_Yoko_kara_Miru_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/86521.jpg + small_image_url: https://myanimelist.net/images/anime/10/86521t.jpg + large_image_url: https://myanimelist.net/images/anime/10/86521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/86521.webp + small_image_url: https://myanimelist.net/images/anime/10/86521t.webp + large_image_url: https://myanimelist.net/images/anime/10/86521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KG770hOuT2k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka? + - type: Synonym + title: Fireworks + - type: Synonym + title: Should We See It from the Side or the Bottom? + - type: Japanese + title: 打ち上げ花火、下から見るか?横から見るか? + - type: English + title: Fireworks + - type: German + title: 'Fireworks: Alles eine Frage der Zeit' + - type: Spanish + title: Fireworks + - type: French + title: Fireworks + title: Uchiage Hanabi, Shita kara Miru ka? Yoko kara Miru ka? + title_english: Fireworks + title_japanese: 打ち上げ花火、下から見るか?横から見るか? + title_synonyms: + - Fireworks + - Should We See It from the Side or the Bottom? + type: Movie + source: Other + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-08-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 8 + year: 2017 + to: + day: null + month: null + year: null + string: Aug 18, 2017 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 6.11 + scored_by: 116448 + rank: 10450 + popularity: 1232 + members: 230105 + favorites: 562 + synopsis: |- + One summer, Norimichi Shimada and his friends want to know if fireworks look round or flat from the side. They forge a plan to find the answer at Moshimo Festival's fireworks display. However, Norimichi finds himself conflicted when his classmate, Nazuna Oikawa, plans to run away from home and wants Norimichi to join her. When things go awry in their attempt to escape, a strange orb in Nazuna's possession gives them another chance at staying together. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1777 + type: anime + name: LINE Corporation + url: https://myanimelist.net/anime/producer/1777/LINE_Corporation + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35240 + url: https://myanimelist.net/anime/35240/Princess_Principal + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/86768.jpg + small_image_url: https://myanimelist.net/images/anime/7/86768t.jpg + large_image_url: https://myanimelist.net/images/anime/7/86768l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/86768.webp + small_image_url: https://myanimelist.net/images/anime/7/86768t.webp + large_image_url: https://myanimelist.net/images/anime/7/86768l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pp70baXff_Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Princess Principal + - type: Japanese + title: プリンセス・プリンシパル + - type: English + title: Princess Principal + title: Princess Principal + title_english: Princess Principal + title_japanese: プリンセス・プリンシパル + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-09T00:00:00+00:00' + to: '2017-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2017 + to: + day: 24 + month: 9 + year: 2017 + string: Jul 9, 2017 to Sep 24, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.68 + scored_by: 82367 + rank: 1531 + popularity: 1250 + members: 225644 + favorites: 2494 + synopsis: "In the early 20th century, the discovery of the substance Cavorite allowed the production of advanced military\ + \ technology and steered the country toward conflict. London is now divided by a wall, and the Kingdom and the Commonwealth\ + \ of Albion battle a silent war where espionage is the only weapon that can destabilize the enemy. A group of girls\ + \ from the prestigious Queen's Mayfaire school work as undercover spies for the Commonwealth. \n\nLed by Dorothy,\ + \ an experienced driver with a striking personality, their group includes the talents of Ange le Carré, a cold-blooded\ + \ liar and expert sharpshooter; Chise, a proficient samurai; and Beatrice, a voice-mimicking specialist. They use\ + \ their unique individual skills for the Commonwealth to survive in a dark world filled with conspiracy, mystery,\ + \ and infiltration. In the shadow of the war, they have only one goal in mind: completing their mission.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 60 + type: anime + name: Actas + url: https://myanimelist.net/anime/producer/60/Actas + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 34825 + url: https://myanimelist.net/anime/34825/Keppeki_Danshi_Aoyama-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/86644.jpg + small_image_url: https://myanimelist.net/images/anime/9/86644t.jpg + large_image_url: https://myanimelist.net/images/anime/9/86644l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/86644.webp + small_image_url: https://myanimelist.net/images/anime/9/86644t.webp + large_image_url: https://myanimelist.net/images/anime/9/86644l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/V3kxzqJI0yk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Keppeki Danshi! Aoyama-kun + - type: Synonym + title: Cleanliness Boy! Aoyama-kun + - type: Japanese + title: 潔癖男子!青山くん + - type: English + title: Clean Freak! Aoyama-kun + - type: German + title: Clean Freak! Aoyama-kun + - type: Spanish + title: Clean Freak! Aoyama-kun + - type: French + title: Clean Freak! Aoyama-kun + title: Keppeki Danshi! Aoyama-kun + title_english: Clean Freak! Aoyama-kun + title_japanese: 潔癖男子!青山くん + title_synonyms: + - Cleanliness Boy! Aoyama-kun + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-03T00:00:00+00:00' + to: '2017-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2017 + to: + day: 18 + month: 9 + year: 2017 + string: Jul 3, 2017 to Sep 18, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.95 + scored_by: 88139 + rank: 5405 + popularity: 1316 + members: 212544 + favorites: 381 + synopsis: |- + He is charming, cool, athletic, a good cook, but more importantly, he's a clean freak. Aoyama is idolized and respected by everyone, but they can only admire him from afar due to his mysophobia. Despite that, he plays soccer—a rather dirty sport! + + As the playmaker for Fujimi High School's soccer club, Aoyama avoids physical contact at all cost and cleanly dribbles toward victory. However, the path to Nationals will not be easy for Fujimi's underdog team. But alongside striker Kaoru Zaizen, Aoyama will show everyone that even as a clean freak, there are things he's willing to get dirty for. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 33071 + url: https://myanimelist.net/anime/33071/Bungou_Stray_Dogs__Hitori_Ayumu + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/87340.jpg + small_image_url: https://myanimelist.net/images/anime/9/87340t.jpg + large_image_url: https://myanimelist.net/images/anime/9/87340l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/87340.webp + small_image_url: https://myanimelist.net/images/anime/9/87340t.webp + large_image_url: https://myanimelist.net/images/anime/9/87340l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PkRN-PPBdi4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bungou Stray Dogs: Hitori Ayumu' + - type: Synonym + title: Bungou Stray Dogs OVA + - type: Synonym + title: Bungou Stray Dogs 2nd Season Episode 13 + - type: Synonym + title: Bungou Stray Dogs Episode 25 + - type: Japanese + title: 文豪ストレイドッグス『独り歩む』 + - type: English + title: Bungo Stray Dogs 2 - Walking Alone + - type: German + title: 'Bungo Stray Dogs 2 - Episodio 25: Der Einzelgänger' + - type: Spanish + title: 'Bungo Stray Dogs 2. Episodio 25: Caminando Solo' + - type: French + title: 'Bungo Stray Dogs 2 - Episodio 25: Le marcheur solitaire' + title: 'Bungou Stray Dogs: Hitori Ayumu' + title_english: Bungo Stray Dogs 2 - Walking Alone + title_japanese: 文豪ストレイドッグス『独り歩む』 + title_synonyms: + - Bungou Stray Dogs OVA + - Bungou Stray Dogs 2nd Season Episode 13 + - Bungou Stray Dogs Episode 25 + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-08-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 8 + year: 2017 + to: + day: null + month: null + year: null + string: Aug 4, 2017 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.66 + scored_by: 99729 + rank: 1580 + popularity: 1485 + members: 187056 + favorites: 373 + synopsis: |- + Armed Detective Agency members discuss the most suitable candidate for the second-in-command. Doppo Kunikida is carrying out official errands as planned in his diary as usual. Unexpectedly, a bomb-related incident occurs, challenging the ideals he has always upheld. When weighing one life over hundreds, how will he proceed? + + [Written by MAL Rewrite] + background: This entry adapts chapter 40 of the manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 33654 + url: https://myanimelist.net/anime/33654/Hitorijime_My_Hero + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/86825.jpg + small_image_url: https://myanimelist.net/images/anime/12/86825t.jpg + large_image_url: https://myanimelist.net/images/anime/12/86825l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/86825.webp + small_image_url: https://myanimelist.net/images/anime/12/86825t.webp + large_image_url: https://myanimelist.net/images/anime/12/86825l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/925gdwq9Jzo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hitorijime My Hero + - type: Synonym + title: My Very Own Hero + - type: Japanese + title: ひとりじめマイヒーロー + - type: English + title: Hitorijime My Hero + title: Hitorijime My Hero + title_english: Hitorijime My Hero + title_japanese: ひとりじめマイヒーロー + title_synonyms: + - My Very Own Hero + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-08T00:00:00+00:00' + to: '2017-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2017 + to: + day: 23 + month: 9 + year: 2017 + string: Jul 8, 2017 to Sep 23, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 89287 + rank: 3625 + popularity: 1511 + members: 183824 + favorites: 1436 + synopsis: |- + Masahiro Setagawa is a hopeless teenager who is often used by the neighborhood bullies as an errand boy. Defenseless, Masahiro knows that nobody will ever save him. However, his life drastically changes when he meets Kousuke Ooshiba, a man known as the "Bear Killer," who takes down neighborhood gangs. + + A year later, Masahiro and his former friend, Kensuke Ooshiba, attend high school, only to find that Kousuke is their math teacher. While the three grow closer, Masahiro starts to view Kousuke as his "hero," and Kousuke develops an urging desire to protect Masahiro. However, their normal lives take a turn when Kensuke's childhood friend, Asaya Hasekura, returns, seeing Kensuke as more than just a friend, much to his surprise. Will the three boys be able to live a regular high school life? Or will forbidden love keep them apart forever? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2017 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1363 + type: anime + name: Marine Entertainment + url: https://myanimelist.net/anime/producer/1363/Marine_Entertainment + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 354 + type: anime + name: Encourage Films + url: https://myanimelist.net/anime/producer/354/Encourage_Films + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 34383 + url: https://myanimelist.net/anime/34383/Netsuzou_TRap + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/86667.jpg + small_image_url: https://myanimelist.net/images/anime/10/86667t.jpg + large_image_url: https://myanimelist.net/images/anime/10/86667l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/86667.webp + small_image_url: https://myanimelist.net/images/anime/10/86667t.webp + large_image_url: https://myanimelist.net/images/anime/10/86667l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Tq0UywAsaFE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Netsuzou TRap + - type: Japanese + title: 捏造トラップ―NTR― + - type: English + title: Netsuzou Trap -NTR- + - type: German + title: Netsuzou Trap -NTR- + - type: Spanish + title: Netsuzou Trap -NTR- + - type: French + title: Netsuzô Trap -NTR- + title: Netsuzou TRap + title_english: Netsuzou Trap -NTR- + title_japanese: 捏造トラップ―NTR― + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-07-05T00:00:00+00:00' + to: '2017-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2017 + to: + day: 20 + month: 9 + year: 2017 + string: Jul 5, 2017 to Sep 20, 2017 + duration: 9 min per ep + rating: R+ - Mild Nudity + score: 5.3 + scored_by: 78435 + rank: 13812 + popularity: 1581 + members: 174580 + favorites: 348 + synopsis: "High school students Yuma Okazaki and Hotaru Mizushina are childhood friends. With their respective boyfriends,\ + \ Takeda and Fujiwara, their lives couldn't be more perfect. From playing in school to going on group dates, it seems\ + \ nothing can break their bond. \n\nHowever, during one such group date, Hotaru makes an unexpected move. While Takeda\ + \ and Fujiwara are distracted, she begins stroking Yuma's thighs. Taken aback by this peculiar action, Yuma awkwardly\ + \ retreats to the toilets, followed shortly by her aggressor. Now in private, Hotaru forces the innocent Yuma into\ + \ a locked cubicle and whispers into her ear: \"You'll be more nervous with a boy; I'll help you practice.\"\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: summer + year: 2017 + broadcast: + day: Wednesdays + time: '20:00' + timezone: Asia/Tokyo + string: Wednesdays at 20:00 (JST) + producers: + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 2088 + type: anime + name: Cloud22 + url: https://myanimelist.net/anime/producer/2088/Cloud22 + licensors: [] + studios: + - mal_id: 1195 + type: anime + name: Creators in Pack + url: https://myanimelist.net/anime/producer/1195/Creators_in_Pack + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 33191 + url: https://myanimelist.net/anime/33191/Kishibe_Rohan_wa_Ugokanai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1716/103072.jpg + small_image_url: https://myanimelist.net/images/anime/1716/103072t.jpg + large_image_url: https://myanimelist.net/images/anime/1716/103072l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1716/103072.webp + small_image_url: https://myanimelist.net/images/anime/1716/103072t.webp + large_image_url: https://myanimelist.net/images/anime/1716/103072l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YjbwPpXWbfM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kishibe Rohan wa Ugokanai + - type: Synonym + title: Rohan Kishibe Does Not Move + - type: Japanese + title: 岸辺露伴は動かない + - type: English + title: Thus Spoke Kishibe Rohan + title: Kishibe Rohan wa Ugokanai + title_english: Thus Spoke Kishibe Rohan + title_japanese: 岸辺露伴は動かない + title_synonyms: + - Rohan Kishibe Does Not Move + type: OVA + source: Manga + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2017-09-20T00:00:00+00:00' + to: '2020-03-25T00:00:00+00:00' + prop: + from: + day: 20 + month: 9 + year: 2017 + to: + day: 25 + month: 3 + year: 2020 + string: Sep 20, 2017 to Mar 25, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.61 + scored_by: 105118 + rank: 1778 + popularity: 1651 + members: 165732 + favorites: 433 + synopsis: |- + Kishibe Rohan wa Ugokanai adapts a handful of one-shots based on the manga series JoJo no Kimyou na Bouken, and follows the bizarre adventures that Rohan Kishibe goes through as he searches for inspiration for his manga. + + Fugou Mura + + Rohan accompanies manga editor Kyouka Izumi to a secretive village where she plans on buying a house. Izumi informs Rohan that inhabitants of the village suddenly become rich at the age of 25 after purchasing their homes. Being 25 years old herself, Izumi has high hopes for moving into the village and invites Rohan to gather ideas for his manga. As they enter one of the houses for an interview with the seller, they are greeted by a servant named Ikkyuu, who puts them through a test of etiquette with deadly consequences. + + Mutsukabezaka + + Rohan meets with his editor, Minoru Kagamari, to discuss both his manga and the six mountains that the manga author recently bought. He explains that he purchased the mountains in order to search for a legendary spirit known as the Mutsukabezaka. To give his search context, he tells the tale of Naoko Osato, a wealthy heiress who murdered her boyfriend and became cursed by the spirit. + + Zangenshitsu + + Rohan decides to vacation in Venice after putting his manga on hiatus. While there, he explores the interior of a church and examines the structure of its confessional. After stepping into the priest's compartment, Rohan hears a man enter the confessional and begin to confess his sins. The man recounts his confrontation with a starving beggar and the haunting events that followed. + + The Run + + Youma Hashimoto is a young male model who has quickly risen to success. As his popularity grows, so does his obsession with his appearance and body. One day, he meets Rohan at the gym, and the two quickly form a rivalry which pushes Youma to intensify his training. Soon. Youma's fixation on his physique takes a dark turn as his training takes precedence over his life, and he challenges Rohan to a fatal competition on the treadmills. + + [Written by MAL Rewrite] + background: 'Kishibe Rohan wa Ugokanai: Fugou Mura''s first episode is an OVA that was distributed to customers who + bought all 13 Blu-ray/DVD volumes of the anime JoJo no Kimyou na Bouken: Diamond wa Kudakenai. The 2nd episode was + bundled with the limited edition 2nd volume of the manga. The 3rd and 4th episode were released via a roadshow in + only six cities starting on December 8, 2019. All four episodes were then bundled on March 25, 2020 for home-media + release.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/32-2017-fall.yaml b/test/fixtures/jikan/season_matrix/32-2017-fall.yaml new file mode 100644 index 0000000..31569a4 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/32-2017-fall.yaml @@ -0,0 +1,3523 @@ +metadata: + captured_at: '2026-05-11T11:33:45Z' + label: 2017-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2017/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:45 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:a1a159ec8062f8e607e8570c2669e30a5cb4619c + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 301 + per_page: 25 + data: + - mal_id: 34572 + url: https://myanimelist.net/anime/34572/Black_Clover + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/88336.jpg + small_image_url: https://myanimelist.net/images/anime/2/88336t.jpg + large_image_url: https://myanimelist.net/images/anime/2/88336l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/88336.webp + small_image_url: https://myanimelist.net/images/anime/2/88336t.webp + large_image_url: https://myanimelist.net/images/anime/2/88336l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vUjAxk1qYzQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Black Clover + - type: Japanese + title: ブラッククローバー + - type: English + title: Black Clover + title: Black Clover + title_english: Black Clover + title_japanese: ブラッククローバー + title_synonyms: [] + type: TV + source: Manga + episodes: 170 + status: Finished Airing + airing: false + aired: + from: '2017-10-03T00:00:00+00:00' + to: '2021-03-30T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2017 + to: + day: 30 + month: 3 + year: 2021 + string: Oct 3, 2017 to Mar 30, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 984970 + rank: 527 + popularity: 54 + members: 1902106 + favorites: 51063 + synopsis: |- + Asta and Yuno were abandoned at the same church on the same day. Raised together as children, they came to know of the "Wizard King"—a title given to the strongest mage in the kingdom—and promised that they would compete against each other for the position of the next Wizard King. However, as they grew up, the stark difference between them became evident. While Yuno is able to wield magic with amazing power and control, Asta cannot use magic at all and desperately tries to awaken his powers by training physically. + + When they reach the age of 15, Yuno is bestowed a spectacular Grimoire with a four-leaf clover, while Asta receives nothing. However, soon after, Yuno is attacked by a person named Lebuty, whose main purpose is to obtain Yuno's Grimoire. Asta tries to fight Lebuty, but he is outmatched. Though without hope and on the brink of defeat, he finds the strength to continue when he hears Yuno's voice. Unleashing his inner emotions in a rage, Asta receives a five-leaf clover Grimoire, a "Black Clover" giving him enough power to defeat Lebuty. A few days later, the two friends head out into the world, both seeking the same goal—to become the Wizard King! + + [Written by MAL Rewrite] + background: Black Clover adapts the first 27 volumes of the original manga. + season: fall + year: 2017 + broadcast: + day: Tuesdays + time: '18:25' + timezone: Asia/Tokyo + string: Tuesdays at 18:25 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35788 + url: https://myanimelist.net/anime/35788/Shokugeki_no_Souma__San_no_Sara + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88434.jpg + small_image_url: https://myanimelist.net/images/anime/3/88434t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88434l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88434.webp + small_image_url: https://myanimelist.net/images/anime/3/88434t.webp + large_image_url: https://myanimelist.net/images/anime/3/88434l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Q7WK89iPkCo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: San no Sara' + - type: Synonym + title: Shokugeki no Soma 3rd Season + - type: Synonym + title: Shokugeki no Soma 3 + - type: Japanese + title: 食戟のソーマ 餐ノ皿 + - type: English + title: Food Wars! The Third Plate + - type: German + title: Food Wars! The Third Plate + - type: Spanish + title: 'Food Wars (Shokugeki no Soma): The Third Plate' + - type: French + title: Food Wars! The Third Plate + title: 'Shokugeki no Souma: San no Sara' + title_english: Food Wars! The Third Plate + title_japanese: 食戟のソーマ 餐ノ皿 + title_synonyms: + - Shokugeki no Soma 3rd Season + - Shokugeki no Soma 3 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-04T00:00:00+00:00' + to: '2017-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2017 + to: + day: 20 + month: 12 + year: 2017 + string: Oct 4, 2017 to Dec 20, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.97 + scored_by: 631385 + rank: 816 + popularity: 179 + members: 1042018 + favorites: 2652 + synopsis: "The Moon Festival is Tootsuki Academy's annual gourmet gala, where students compete against each other to\ + \ earn the most profit through selling their cuisine of choice. But for Souma Yukihira, it is also his first opportunity\ + \ to challenge the Elite Ten, the supreme council that rules over the academy. \n\nHowever, this is only the beginning\ + \ of Souma's war against the Elite Ten; a nefarious plot is underway that will provide Souma with the challenge he\ + \ desires but will also shake the very foundations of Tootsuki Academy itself.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35062 + url: https://myanimelist.net/anime/35062/Mahoutsukai_no_Yome + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88476.jpg + small_image_url: https://myanimelist.net/images/anime/3/88476t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88476l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88476.webp + small_image_url: https://myanimelist.net/images/anime/3/88476t.webp + large_image_url: https://myanimelist.net/images/anime/3/88476l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3UsftPxFPwA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahoutsukai no Yome + - type: Synonym + title: The Magician's Bride + - type: Synonym + title: Mahoyome + - type: Japanese + title: 魔法使いの嫁 + - type: English + title: The Ancient Magus' Bride + - type: German + title: The Ancient Magus' Bride + - type: Spanish + title: The Ancient Magus Bride + - type: French + title: The Ancient Magus' Bride + title: Mahoutsukai no Yome + title_english: The Ancient Magus' Bride + title_japanese: 魔法使いの嫁 + title_synonyms: + - The Magician's Bride + - Mahoyome + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2018-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 25 + month: 3 + year: 2018 + string: Oct 8, 2017 to Mar 25, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 425887 + rank: 673 + popularity: 183 + members: 1018307 + favorites: 13386 + synopsis: |- + Chise Hatori, a 15-year-old Japanese girl, was sold for five million pounds at an auction to a tall masked gentleman. Abandoned at a young age and ridiculed by her peers for her unconventional behavior, she was ready to give herself to any buyer if it meant having a place to go home to. In chains and on her way to an unknown fate, she hears whispers from robed men along her path, gossiping and complaining that such a buyer got his hands on a rare Sleigh Beggy. + + Ignoring the murmurs, the mysterious man leads the girl to a study, where he reveals himself to be Elias Ainsworth—a magus. After a brief confrontation and a bit of teleportation magic, the two open their eyes to Elias' picturesque cottage in rural England. Greeted by fairies and surrounded by weird and wonderful beings upon her arrival, these events mark the beginning of Chise's story as the apprentice and supposed bride of the ancient magus. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1452 + type: anime + name: Mag Garden + url: https://myanimelist.net/anime/producer/1452/Mag_Garden + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34542 + url: https://myanimelist.net/anime/34542/Inuyashiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/88471.jpg + small_image_url: https://myanimelist.net/images/anime/7/88471t.jpg + large_image_url: https://myanimelist.net/images/anime/7/88471l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/88471.webp + small_image_url: https://myanimelist.net/images/anime/7/88471t.webp + large_image_url: https://myanimelist.net/images/anime/7/88471l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BEQe5xvsv8w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Inuyashiki + - type: Japanese + title: いぬやしき + - type: English + title: 'Inuyashiki: Last Hero' + - type: German + title: Inuyashiki Last Hero + - type: Spanish + title: 'Inuyashiki: Last Hero' + - type: French + title: Inuyashiki le Dernier Héros + title: Inuyashiki + title_english: 'Inuyashiki: Last Hero' + title_japanese: いぬやしき + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2017-10-13T00:00:00+00:00' + to: '2017-12-22T00:00:00+00:00' + prop: + from: + day: 13 + month: 10 + year: 2017 + to: + day: 22 + month: 12 + year: 2017 + string: Oct 13, 2017 to Dec 22, 2017 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.63 + scored_by: 339189 + rank: 1693 + popularity: 338 + members: 704585 + favorites: 4078 + synopsis: |- + Ichirou Inuyashiki is a 58-year-old family man who is going through a difficult time in his life. Though his frequent back problems are painful, nothing hurts quite as much as the indifference and distaste that his wife and children have for him. Despite this, Ichirou still manages to find solace in Hanako, an abandoned Shiba Inu that he adopts into his home. However, his life takes a turn for the worse when a follow-up physical examination reveals that Ichirou has stomach cancer and only three months to live; though he tries to be strong, his family's disinterest causes an emotional breakdown. Running off into a nearby field, Ichirou embraces his dog and weeps—until he notices a strange figure standing before him. + + Suddenly, a bright light appears and Ichirou is enveloped by smoke and dust. When he comes to, he discovers something is amiss—he has been reborn as a mechanized weapon wearing the skin of his former self. Though initially shocked, the compassionate Ichirou immediately uses his newfound powers to save a life, an act of kindness that fills him with happiness and newfound hope. + + However, the origins of these strange powers remain unclear. Who was the mysterious figure at the site of the explosion, and are they as kind as Ichirou when it comes to using this dangerous gift? + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 34618 + url: https://myanimelist.net/anime/34618/Blend_S + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/88286.jpg + small_image_url: https://myanimelist.net/images/anime/6/88286t.jpg + large_image_url: https://myanimelist.net/images/anime/6/88286l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/88286.webp + small_image_url: https://myanimelist.net/images/anime/6/88286t.webp + large_image_url: https://myanimelist.net/images/anime/6/88286l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GwD3Ihd4j9w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blend S + - type: Japanese + title: ブレンド・S + - type: English + title: BLEND-S + - type: German + title: BLEND-S + - type: Spanish + title: BLEND-S + - type: French + title: BLEND-S + title: Blend S + title_english: BLEND-S + title_japanese: ブレンド・S + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2017-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 24 + month: 12 + year: 2017 + string: Oct 8, 2017 to Dec 24, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 393627 + rank: 3670 + popularity: 339 + members: 704267 + favorites: 3005 + synopsis: |- + Wishing to be independent, 16-year-old Maika Sakuranomiya is desperate to nail down a part-time job so that she can afford to study abroad. Unfortunately, her applications are constantly rejected due to the menacing look she unintentionally makes whenever she smiles, despite her otherwise cheerful disposition. + + After yet another failed interview, she chances upon Café Stile, a coffee shop where the servers interact with the customers while roleplaying distinctive characteristics. The Italian store manager, Dino, becomes infatuated with Maika's cuteness at first sight, and offers her a job as a waitress with a sadistic nature. Coupled with her inherent clumsiness, she successfully manages to serve a pair of masochistic customers in accordance with her new, ruthless persona. Alongside Kaho Hinata as the tsundere and Mafuyu Hoshikawa as the younger sister, Maika decides to make the most out of her unique quirk and cements her position in the cafe with merciless cruelty! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1653 + type: anime + name: Kinoshita Group Holdings + url: https://myanimelist.net/anime/producer/1653/Kinoshita_Group_Holdings + - mal_id: 1799 + type: anime + name: Drecom + url: https://myanimelist.net/anime/producer/1799/Drecom + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 35557 + url: https://myanimelist.net/anime/35557/Houseki_no_Kuni + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88293.jpg + small_image_url: https://myanimelist.net/images/anime/3/88293t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88293l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88293.webp + small_image_url: https://myanimelist.net/images/anime/3/88293t.webp + large_image_url: https://myanimelist.net/images/anime/3/88293l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jL3vytC1140?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Houseki no Kuni + - type: Synonym + title: Country of Jewels + - type: Japanese + title: 宝石の国 + - type: English + title: Land of the Lustrous + title: Houseki no Kuni + title_english: Land of the Lustrous + title_japanese: 宝石の国 + title_synonyms: + - Country of Jewels + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-07T00:00:00+00:00' + to: '2017-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2017 + to: + day: 23 + month: 12 + year: 2017 + string: Oct 7, 2017 to Dec 23, 2017 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.4 + scored_by: 220376 + rank: 229 + popularity: 493 + members: 519038 + favorites: 15036 + synopsis: "In the mysterious future, crystalline organisms called Gems inhabit a world that has been destroyed by six\ + \ meteors. Each Gem is assigned a role in order to fight against the Lunarians, a species who attacks them in order\ + \ to shatter their bodies and use them as decorations. \n\nPhosphophyllite, also known as Phos, is a young and fragile\ + \ Gem who dreams of helping their friends in the war effort. Instead, they are told to compile an encyclopedia because\ + \ of their delicate condition. After begrudgingly embarking on this task, Phos meets Cinnabar, an intelligent gem\ + \ who has been relegated to patrolling the isolated island at night because of the corrosive poison their body creates.\ + \ After seeing how unhappy Cinnabar is, Phos decides to find a role that both of the rejected Gems can enjoy. Houseki\ + \ no Kuni follows Phos' efforts to be useful and protect their fellow Gems.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Saturdays + time: '21:30' + timezone: Asia/Tokyo + string: Saturdays at 21:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1411 + type: anime + name: Kyoraku Industrial Holdings + url: https://myanimelist.net/anime/producer/1411/Kyoraku_Industrial_Holdings + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 25537 + url: https://myanimelist.net/anime/25537/Fate_stay_night_Movie__Heavens_Feel_-_I_Presage_Flower + images: + jpg: + image_url: https://myanimelist.net/images/anime/1274/102213.jpg + small_image_url: https://myanimelist.net/images/anime/1274/102213t.jpg + large_image_url: https://myanimelist.net/images/anime/1274/102213l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1274/102213.webp + small_image_url: https://myanimelist.net/images/anime/1274/102213t.webp + large_image_url: https://myanimelist.net/images/anime/1274/102213l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AMr5pXzpvP0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night Movie: Heaven''s Feel - I. Presage Flower' + - type: Japanese + title: 劇場版「Fate/stay night [Heaven's Feel] Ⅰ.presage flower」 + - type: English + title: 'Fate/stay night: Heaven''s Feel - I. Presage Flower' + - type: German + title: 'Fate/stay night der Film: Heaven''s Feel I. - Presage Flower' + title: 'Fate/stay night Movie: Heaven''s Feel - I. Presage Flower' + title_english: 'Fate/stay night: Heaven''s Feel - I. Presage Flower' + title_japanese: 劇場版「Fate/stay night [Heaven's Feel] Ⅰ.presage flower」 + title_synonyms: [] + type: Movie + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2017-10-14T00:00:00+00:00' + to: null + prop: + from: + day: 14 + month: 10 + year: 2017 + to: + day: null + month: null + year: null + string: Oct 14, 2017 + duration: 2 hr + rating: R - 17+ (violence & profanity) + score: 8.14 + scored_by: 286371 + rank: 529 + popularity: 495 + members: 517727 + favorites: 2689 + synopsis: "The Holy Grail War: a violent battle between mages in which seven masters and their summoned servants fight\ + \ for the Holy Grail, a magical artifact that can grant the victor any wish. Nearly 10 years ago, the final battle\ + \ of the Fourth Holy Grail War wreaked havoc on Fuyuki City and took over 500 lives, leaving the city devastated.\ + \ \n\nShirou Emiya, a survivor of this tragedy, aspires to become a hero of justice like his rescuer and adoptive\ + \ father, Kiritsugu Emiya. Despite only being a student, Shirou is thrown into the Fifth Holy Grail War when he accidentally\ + \ sees a battle between servants at school and summons his own servant, Saber. \n\nWhen a mysterious shadow begins\ + \ a murderous spree in Fuyuki City, Shirou aligns himself with Rin Toosaka, a fellow participant in the Holy Grail\ + \ War, in order to stop the deaths of countless people. However, Shirou's feelings for his close friend Sakura Matou\ + \ lead him deeper into the dark secrets surrounding the war and the feuding families involved.\n\n[Written by MAL\ + \ Rewrite]" + background: 'Fate/Stay Night: Heaven''s Feel - I. Presage Flower adapts part of the third route of Type-Moon''s visual + novel, Fate/stay night. Originally released in 2004 for Microsoft Windows, Fate/stay night later received an enhanced + port featuring full voice acting, new soundtracks and bonus content―titled Fate/stay night: Réalta Nua―which was released + for the PS2 and PS Vita consoles, as well as the iOS and Android storefronts.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 36038 + url: https://myanimelist.net/anime/36038/Net-juu_no_Susume + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/87463.jpg + small_image_url: https://myanimelist.net/images/anime/3/87463t.jpg + large_image_url: https://myanimelist.net/images/anime/3/87463l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/87463.webp + small_image_url: https://myanimelist.net/images/anime/3/87463t.webp + large_image_url: https://myanimelist.net/images/anime/3/87463l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6B8Ie4bxabo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Net-juu no Susume + - type: Synonym + title: Netojuu no Susume + - type: Synonym + title: Recommendation of the Wonderful Virtual Life + - type: Japanese + title: ネト充のススメ + - type: English + title: Recovery of an MMO Junkie + - type: German + title: Recovery of an MMO Junkie + - type: Spanish + title: Recovery of An MMO Junkie + - type: French + title: Recovery of an MMO Junkie + title: Net-juu no Susume + title_english: Recovery of an MMO Junkie + title_japanese: ネト充のススメ + title_synonyms: + - Netojuu no Susume + - Recommendation of the Wonderful Virtual Life + type: TV + source: Web manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2017-10-10T00:00:00+00:00' + to: '2017-12-12T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2017 + to: + day: 12 + month: 12 + year: 2017 + string: Oct 10, 2017 to Dec 12, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 267311 + rank: 2204 + popularity: 503 + members: 511718 + favorites: 2564 + synopsis: |- + For the first time since graduating high school, 30-year-old Moriko Morioka is unemployed—and she couldn't be happier. Having quit her long-standing job of over 11 years, Moriko quickly turns to online games to pass her now-plentiful free time, reinventing herself as the handsome and dashing male hero "Hayashi" in the MMO Fruits de Mer. With the pesky societal obligations of the real world out of the way, she blissfully dives headfirst into the realm of the game, where she promptly meets the kind and adorable healer Lily. Befriending each other almost instantly, the two become inseparable just as Moriko herself becomes more and more engrossed in her new "life" as Hayashi. Eventually, Moriko adopts the reclusive lifestyle in its entirety, venturing out from the safety of her apartment only when absolutely necessary. + + Meanwhile, unbeknownst to Moriko, a timid 28-year-old corporate worker named Yuuta Sakurai has also logged onto Fruits de Mer from the other side of town. Coincidentally bumping into each other at the convenience store one night, both write off their meeting as no more than just another awkward encounter with a stranger—however, fate has more in store for them than they think. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Tuesdays + time: 01:40 + timezone: Asia/Tokyo + string: Tuesdays at 01:40 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1481 + type: anime + name: comico + url: https://myanimelist.net/anime/producer/1481/comico + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1278 + type: anime + name: Signal.MD + url: https://myanimelist.net/anime/producer/1278/SignalMD + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 34451 + url: https://myanimelist.net/anime/34451/Kekkai_Sensen___Beyond + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88282.jpg + small_image_url: https://myanimelist.net/images/anime/3/88282t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88282l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88282.webp + small_image_url: https://myanimelist.net/images/anime/3/88282t.webp + large_image_url: https://myanimelist.net/images/anime/3/88282l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H3hjyjdHWf4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kekkai Sensen & Beyond + - type: Synonym + title: Bloodline Battlefront & Beyond + - type: Japanese + title: 血界戦線 & BEYOND + - type: English + title: Blood Blockade Battlefront & Beyond + - type: German + title: Blood Blockade Battlefront & Beyond + - type: Spanish + title: Blood Blockade Battlefront & Beyond + - type: French + title: Blood Blockade Battlefront & Beyond + title: Kekkai Sensen & Beyond + title_english: Blood Blockade Battlefront & Beyond + title_japanese: 血界戦線 & BEYOND + title_synonyms: + - Bloodline Battlefront & Beyond + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2017-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 24 + month: 12 + year: 2017 + string: Oct 8, 2017 to Dec 24, 2017 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.77 + scored_by: 214073 + rank: 1261 + popularity: 548 + members: 476621 + favorites: 1810 + synopsis: "Three years ago, a gateway between Earth and the Beyond opened in New York City, trapping extradimensional\ + \ creatures and humans alike in an impermeable bubble. After the city's restoration, monsters, magic, and madness\ + \ are common findings in the area now known as Hellsalem's Lot. Leonardo Watch, a young photographer who unwillingly\ + \ obtained the \"All-seeing Eyes of the Gods\" in exchange for his sister's eyesight, came to this paranormal city\ + \ to find answers to the mysterious power that he possesses. He later finds his life drastically changed when he joins\ + \ Libra, a secret organization of people with supernatural abilities dedicated to maintaining order in the everyday\ + \ chaos of Hellsalem's Lot. \n\nHowever, this is only the beginning of Leonardo's unexpected journey ahead. Regardless\ + \ of the constant threat of otherworldly enemies, he is determined to uncover the secrets of his power and find a\ + \ way to restore his sister's eyesight. Kekkai Sensen & Beyond follows Leonardo as he sets off on more crazy adventures\ + \ with his comrades, fighting to ensure peace and order.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: 03:08 + timezone: Asia/Tokyo + string: Sundays at 03:08 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35180 + url: https://myanimelist.net/anime/35180/3-gatsu_no_Lion_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88469.jpg + small_image_url: https://myanimelist.net/images/anime/3/88469t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88469l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88469.webp + small_image_url: https://myanimelist.net/images/anime/3/88469t.webp + large_image_url: https://myanimelist.net/images/anime/3/88469l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OfSaJb5OOPA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 3-gatsu no Lion 2nd Season + - type: Synonym + title: Sangatsu no Lion Second Season + - type: Japanese + title: 3月のライオン 第2シリーズ + - type: English + title: March Comes In Like a Lion 2nd Season + - type: German + title: March Come in Like a Lion Staffel 2 + - type: Spanish + title: March Comes in like a Lion Temporada 2 + - type: French + title: March Comes in like a Lion Saison 2 + title: 3-gatsu no Lion 2nd Season + title_english: March Comes In Like a Lion 2nd Season + title_japanese: 3月のライオン 第2シリーズ + title_synonyms: + - Sangatsu no Lion Second Season + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2017-10-14T00:00:00+00:00' + to: '2018-03-31T00:00:00+00:00' + prop: + from: + day: 14 + month: 10 + year: 2017 + to: + day: 31 + month: 3 + year: 2018 + string: Oct 14, 2017 to Mar 31, 2018 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.9 + scored_by: 215760 + rank: 24 + popularity: 612 + members: 439126 + favorites: 15424 + synopsis: "Now in his second year of high school, Rei Kiriyama continues pushing through his struggles in the professional\ + \ shogi world as well as his personal life. Surrounded by vibrant personalities at the shogi hall, the school club,\ + \ and in the local community, his solitary shell slowly begins to crack. Among them are the three Kawamoto sisters—Akari,\ + \ Hinata, and Momo—who forge an affectionate and familial bond with Rei. Through these ties, he realizes that everyone\ + \ is burdened by their own emotional hardships and begins learning how to rely on others while supporting them in\ + \ return. \n\nNonetheless, the life of a professional is not easy. Between tournaments, championships, and title matches,\ + \ the pressure mounts as Rei advances through the ranks and encounters incredibly skilled opponents. As he manages\ + \ his relationships with those who have grown close to him, the shogi player continues to search for the reason he\ + \ plays the game that defines his career.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 35838 + url: https://myanimelist.net/anime/35838/Shoujo_Shuumatsu_Ryokou + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/88321.jpg + small_image_url: https://myanimelist.net/images/anime/12/88321t.jpg + large_image_url: https://myanimelist.net/images/anime/12/88321l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/88321.webp + small_image_url: https://myanimelist.net/images/anime/12/88321t.webp + large_image_url: https://myanimelist.net/images/anime/12/88321l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Zb_AKZfO7BE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shoujo Shuumatsu Ryokou + - type: Synonym + title: The End Girl Trip + - type: Japanese + title: 少女終末旅行 + - type: English + title: Girls' Last Tour + - type: German + title: Girls' Last Tour + title: Shoujo Shuumatsu Ryokou + title_english: Girls' Last Tour + title_japanese: 少女終末旅行 + title_synonyms: + - The End Girl Trip + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-06T00:00:00+00:00' + to: '2017-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2017 + to: + day: 22 + month: 12 + year: 2017 + string: Oct 6, 2017 to Dec 22, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.25 + scored_by: 152262 + rank: 388 + popularity: 674 + members: 403423 + favorites: 8675 + synopsis: "Amid the desolate remains of a once-thriving city, only the rumbling of a motorbike breaks the cold winter\ + \ silence. Its riders, Chito and Yuuri, are the last survivors in the war-torn city. Scavenging old military sites\ + \ for food and parts, the two girls explore the wastelands and speculate about the old world to pass the time. Chito\ + \ and Yuuri each occasionally struggle with the looming solitude, but when they have each other, sharing the weight\ + \ of being two of the last humans becomes a bit more bearable. Between Yuuri's clumsy excitement and Chito's calm\ + \ composure, their dark days get a little brighter with shooting practice, new books, and snowball fights on the frozen\ + \ battlefield. \n\nAmong a scenery of barren landscapes and deserted buildings, Shoujo Shuumatsu Ryokou tells the\ + \ uplifting tale of two girls and their quest to find hope in a bleak and dying world.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1550 + type: anime + name: Shinchosha + url: https://myanimelist.net/anime/producer/1550/Shinchosha + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + - mal_id: 35413 + url: https://myanimelist.net/anime/35413/Imouto_sae_Ireba_Ii + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/88472.jpg + small_image_url: https://myanimelist.net/images/anime/10/88472t.jpg + large_image_url: https://myanimelist.net/images/anime/10/88472l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/88472.webp + small_image_url: https://myanimelist.net/images/anime/10/88472t.webp + large_image_url: https://myanimelist.net/images/anime/10/88472l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MDqaP-DQclc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Imouto sae Ireba Ii. + - type: Synonym + title: It'd be Good if Only Little Sister Was Here + - type: Japanese + title: 妹さえいればいい。 + - type: English + title: A Sister's All You Need + - type: German + title: A Sister's All You Need + - type: Spanish + title: A Sister's All You Need. + - type: French + title: Imôto sae ireba ii + title: Imouto sae Ireba Ii. + title_english: A Sister's All You Need + title_japanese: 妹さえいればいい。 + title_synonyms: + - It'd be Good if Only Little Sister Was Here + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2017-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 24 + month: 12 + year: 2017 + string: Oct 8, 2017 to Dec 24, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 166262 + rank: 3686 + popularity: 748 + members: 369156 + favorites: 1879 + synopsis: "Itsuki Hashima is a light novelist obsessed with little sisters, strictly focusing on them when he writes\ + \ his stories. Despite his personality, he is surrounded by a tight circle of friends: Nayuta Kani, a genius yet perverted\ + \ novelist who is in love with him; Haruto Fuwa, a fellow male author whose work has seen considerable success; Miyako\ + \ Shirakawa, a good friend that he met in college; and Chihiro, his perfect younger step-brother who takes care of\ + \ the housework and cooking.\n \nTogether, they play strange games, go on spontaneous journeys, crack silly jokes,\ + \ and celebrate each other's successes. However, each individual must also deal with their own issues, whether it\ + \ is struggling to meet a deadline or coming to terms with traumatic events buried in their past.\n\n[Written by MAL\ + \ Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 35639 + url: https://myanimelist.net/anime/35639/Just_Because + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/88234.jpg + small_image_url: https://myanimelist.net/images/anime/10/88234t.jpg + large_image_url: https://myanimelist.net/images/anime/10/88234l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/88234.webp + small_image_url: https://myanimelist.net/images/anime/10/88234t.webp + large_image_url: https://myanimelist.net/images/anime/10/88234l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/l5ladXDtjdU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Just Because! + - type: Japanese + title: Just Because! + - type: English + title: Just Because! + title: Just Because! + title_english: Just Because! + title_japanese: Just Because! + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-05T00:00:00+00:00' + to: '2017-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2017 + to: + day: 28 + month: 12 + year: 2017 + string: Oct 5, 2017 to Dec 28, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 137557 + rank: 3761 + popularity: 819 + members: 340733 + favorites: 1652 + synopsis: |- + As another school year begins drawing to a close, the third-year high school students move steadily toward the next milestone of their lives: graduation. Among them are Mio Natsume, a girl burdened with lingering feelings; Hazuki Morikawa, a member of the concert band but distant from the others; and Haruto Souma, an athlete obsessed with baseball. Meanwhile, second-year student Ena Komiya seeks to revive the photography club to its former glory, refusing to let the organization be disbanded. Though this group lacks a strong connection with one another, their lives suddenly cross paths with the arrival of a third-year transfer student. + + While a transfer so close to graduation is unusual for most, it is business as usual for Eita Izumi. Due to his father's work, he has never been able to stay in one place for very long. But as luck would have it, their most recent relocation has returned Eita to his hometown for his final semester of high school. For better or worse, it also sparks the rekindling of old relationships left behind in the past. + + With graduation already causing its own share of anxieties, Eita's sudden arrival brings these students' carefree days to an abrupt end. Long-forgotten memories, deeply buried emotions, and inspiring new passions—everything is brought to light in their bittersweet final semester. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1730 + type: anime + name: Moonbell + url: https://myanimelist.net/anime/producer/1730/Moonbell + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1295 + type: anime + name: PINE JAM + url: https://myanimelist.net/anime/producer/1295/PINE_JAM + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 36106 + url: https://myanimelist.net/anime/36106/Shingeki_no_Kyojin__Lost_Girls + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/89417.jpg + small_image_url: https://myanimelist.net/images/anime/3/89417t.jpg + large_image_url: https://myanimelist.net/images/anime/3/89417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/89417.webp + small_image_url: https://myanimelist.net/images/anime/3/89417t.webp + large_image_url: https://myanimelist.net/images/anime/3/89417l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/teowljRFReo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: Lost Girls' + - type: Japanese + title: 進撃の巨人 LOST GIRLS + - type: English + title: 'Attack on Titan: Lost Girls' + title: 'Shingeki no Kyojin: Lost Girls' + title_english: 'Attack on Titan: Lost Girls' + title_japanese: 進撃の巨人 LOST GIRLS + title_synonyms: [] + type: OVA + source: Novel + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2017-12-08T00:00:00+00:00' + to: '2018-08-09T00:00:00+00:00' + prop: + from: + day: 8 + month: 12 + year: 2017 + to: + day: 9 + month: 8 + year: 2018 + string: Dec 8, 2017 to Aug 9, 2018 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.83 + scored_by: 176386 + rank: 1112 + popularity: 830 + members: 338313 + favorites: 592 + synopsis: |- + Wall Sina, Goodbye + Annie Leonhart has a job to do—and a resulting absence that must stay off her record at all costs. With no one else to turn to, she asks her comrade Hitch Dreyse to cover for her. She agrees but puts forward a single condition: Annie must solve the fruitless missing person case Hitch was assigned. The case revolves around Carly Stratmann, a university graduate and the daughter of wealthy businessman Elliot Stratmann. With only a single day to solve the case and the underground of the Stohess District crawling with thugs, Annie must put her all into finding this girl. Yet, every answer she uncovers only leads to further questions—how has the illegal drug coderoin found its way to Stohess, what is Elliot hiding, and where has Carly disappeared to? + + Lost in the Cruel World + With worry for Eren Yeager gripping her heart, Mikasa Ackerman begins to remember. She remembers her conversations with Armin Arlert, her concern for her friends, and most painfully, the time she had almost lost everything. As fear takes control, she begins to experience an alternate version of her past—some things can be changed, but are there events so inescapable that she cannot even prevent them in her dreams? + + [Written by MAL Rewrite] + background: 'Shingeki no Kyojin: Lost Girls is an original anime DVD adaptation of Hiroshi Seko''s spinoff novel of + the same name. The novel is based on Hajime Isayama''s manga series Shingeki no Kyojin. The DVDs were bundled with + the 24th, 25th, and 26th limited edition volumes of the manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35076 + url: https://myanimelist.net/anime/35076/Juuni_Taisen + images: + jpg: + image_url: https://myanimelist.net/images/anime/5/87684.jpg + small_image_url: https://myanimelist.net/images/anime/5/87684t.jpg + large_image_url: https://myanimelist.net/images/anime/5/87684l.jpg + webp: + image_url: https://myanimelist.net/images/anime/5/87684.webp + small_image_url: https://myanimelist.net/images/anime/5/87684t.webp + large_image_url: https://myanimelist.net/images/anime/5/87684l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gsOes0IA4EE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Juuni Taisen + - type: Synonym + title: 12 Taisen + - type: Synonym + title: 12 Wars + - type: Japanese + title: 十二大戦 + - type: English + title: 'Juni Taisen: Zodiac War' + - type: German + title: 'Juni Taisen: Zodiac War' + - type: Spanish + title: 'Juni Taisen: Zodiac War' + - type: French + title: 'Juni Taisen: Zodiac War' + title: Juuni Taisen + title_english: 'Juni Taisen: Zodiac War' + title_japanese: 十二大戦 + title_synonyms: + - 12 Taisen + - 12 Wars + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-03T00:00:00+00:00' + to: '2017-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2017 + to: + day: 19 + month: 12 + year: 2017 + string: Oct 3, 2017 to Dec 19, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.54 + scored_by: 149563 + rank: 7918 + popularity: 909 + members: 310437 + favorites: 740 + synopsis: |- + Every 12 years, mercenaries who possess the highest caliber of brute strength, cunning wit, and deadly precision gather to participate in the Zodiac Tournament. Each warrior bears the name and attributes of one of the 12 animals of the Chinese zodiac. With their pride and lives on the line, they engage in vicious combat until only the victor remains. + + The 12th Zodiac Tournament begins in a desolate city, devoid of any evidence of the half million people who recently lived there. To raise the stakes, each warrior ingests a poisonous gem, thus setting a time limit on the tournament—and on their life. With one wish for the victor up for grabs, the Zodiac Warriors start their cutthroat battle for survival. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + demographics: [] + - mal_id: 35712 + url: https://myanimelist.net/anime/35712/Boku_no_Kanojo_ga_Majimesugiru_Sho-bitch_na_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/87623.jpg + small_image_url: https://myanimelist.net/images/anime/12/87623t.jpg + large_image_url: https://myanimelist.net/images/anime/12/87623l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/87623.webp + small_image_url: https://myanimelist.net/images/anime/12/87623t.webp + large_image_url: https://myanimelist.net/images/anime/12/87623l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dCjSHpwTDk0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Kanojo ga Majimesugiru Sho-bitch na Ken + - type: Synonym + title: My Girlfriend is a Faithful Virgin Bitch + - type: Synonym + title: Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken + - type: Japanese + title: 僕の彼女がマジメ過ぎるしょびっちな件 + - type: English + title: My Girlfriend is Shobitch + title: Boku no Kanojo ga Majimesugiru Sho-bitch na Ken + title_english: My Girlfriend is Shobitch + title_japanese: 僕の彼女がマジメ過ぎるしょびっちな件 + title_synonyms: + - My Girlfriend is a Faithful Virgin Bitch + - Boku no Kanojo ga Majimesugiru Shojo Bitch na Ken + type: TV + source: Web manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2017-10-12T00:00:00+00:00' + to: '2017-12-14T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2017 + to: + day: 14 + month: 12 + year: 2017 + string: Oct 12, 2017 to Dec 14, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.2 + scored_by: 134586 + rank: 9905 + popularity: 931 + members: 300420 + favorites: 472 + synopsis: |- + Haruka Shinozaki has been interested in the class representative, Akiho Kousaka, since his first year in high school. She is attractive, good at sports, and is an all-around model student. Since they are in the same class this year, Shinozaki decides to confess his feelings—and, to his shock, Kousaka agrees to be his girlfriend! + + However, he finds that Kousaka is a bit stranger than he first thought: this seemingly perfect girl has never been in a relationship. But even though she is inexperienced, she vows to please Shinozaki in every way she can... such as learning multiple sex positions or his fetishes. Shinozaki tries to assure her that her studies into such subjects aren't necessary, but Kousaka devotes herself to making him happy in more ways than one. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1651 + type: anime + name: Production Ace + url: https://myanimelist.net/anime/producer/1651/Production_Ace + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + - mal_id: 478 + type: anime + name: Studio Blanc. + url: https://myanimelist.net/anime/producer/478/Studio_Blanc + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 35376 + url: https://myanimelist.net/anime/35376/Himouto_Umaru-chan_R + images: + jpg: + image_url: https://myanimelist.net/images/anime/10/89671.jpg + small_image_url: https://myanimelist.net/images/anime/10/89671t.jpg + large_image_url: https://myanimelist.net/images/anime/10/89671l.jpg + webp: + image_url: https://myanimelist.net/images/anime/10/89671.webp + small_image_url: https://myanimelist.net/images/anime/10/89671t.webp + large_image_url: https://myanimelist.net/images/anime/10/89671l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WGfzGo0SeRI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Himouto! Umaru-chan R + - type: Synonym + title: Himouto! Umaru-chan 2nd Season + - type: Synonym + title: My Two-Faced Little Sister R + - type: Japanese + title: 干物妹!うまるちゃんR + title: Himouto! Umaru-chan R + title_english: null + title_japanese: 干物妹!うまるちゃんR + title_synonyms: + - Himouto! Umaru-chan 2nd Season + - My Two-Faced Little Sister R + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2017-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 24 + month: 12 + year: 2017 + string: Oct 8, 2017 to Dec 24, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 141821 + rank: 3159 + popularity: 1019 + members: 276573 + favorites: 549 + synopsis: |- + Umaru Doma is a model student who has a hidden side: when she gets home each day, she puts on her hamster hoodie and turns into a sluggish otaku fond of junk food. As Umaru continues these daily antics, the friendship between her and her classmates—Nana Ebina, Kirie Motoba, and Sylphinford Tachibana—deepens, and more and more interesting events begin to unfold. + + Of course, these events give rise to numerous questions. What did Nana ask of Umaru's brother Taihei? Who is the mysterious girl with the diamond hairpin? And most important of all: why does this girl seem to know Umaru? These questions and more will be answered in Himouto! Umaru-chan R! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 874 + type: anime + name: Flex Comix + url: https://myanimelist.net/anime/producer/874/Flex_Comix + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36027 + url: https://myanimelist.net/anime/36027/Ousama_Game_The_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88190.jpg + small_image_url: https://myanimelist.net/images/anime/3/88190t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88190l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88190.webp + small_image_url: https://myanimelist.net/images/anime/3/88190t.webp + large_image_url: https://myanimelist.net/images/anime/3/88190l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JgFQC9Avfhk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ousama Game The Animation + - type: Synonym + title: Ou-sama Game + - type: Japanese + title: 王様ゲーム The Animation + - type: English + title: King's Game + - type: German + title: King's Game The Animation + - type: Spanish + title: King's Game The Animation + - type: French + title: King's Game + title: Ousama Game The Animation + title_english: King's Game + title_japanese: 王様ゲーム The Animation + title_synonyms: + - Ou-sama Game + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-05T00:00:00+00:00' + to: '2017-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2017 + to: + day: 21 + month: 12 + year: 2017 + string: Oct 5, 2017 to Dec 21, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 5.08 + scored_by: 136114 + rank: 14235 + popularity: 1052 + members: 267743 + favorites: 519 + synopsis: |- + It can be rough transferring to a new school—even more so if you do not want to make any friends, like Nobuaki Kanazawa. But the reason for his antisocial behavior soon becomes clear when his class receives a text from someone called "The King." Included are instructions for the "King's Game," and all class members must participate. Those who refuse to play, quit halfway, or do not follow an order in the allotted time of 24 hours will receive a deadly punishment. + + Having played the game before and watched as those around him died, Nobuaki tries to warn his clueless classmates. Unfortunately, they only believe him after the King's Game claims its first casualties. Stuck in a horrific situation with no chance of escape, Nobuaki has a choice: put his own survival above those around him, or do what he could not before and save his classmates. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1011 + type: anime + name: Warner Music Japan + url: https://myanimelist.net/anime/producer/1011/Warner_Music_Japan + - mal_id: 1313 + type: anime + name: Amuse + url: https://myanimelist.net/anime/producer/1313/Amuse + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1649 + type: anime + name: Kakao Japan + url: https://myanimelist.net/anime/producer/1649/Kakao_Japan + - mal_id: 1732 + type: anime + name: Spacey Music Entertainment + url: https://myanimelist.net/anime/producer/1732/Spacey_Music_Entertainment + - mal_id: 1733 + type: anime + name: A-Craft + url: https://myanimelist.net/anime/producer/1733/A-Craft + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 541 + type: anime + name: Seven + url: https://myanimelist.net/anime/producer/541/Seven + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 36220 + url: https://myanimelist.net/anime/36220/Itsudatte_Bokura_no_Koi_wa_10_cm_Datta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1015/123541.jpg + small_image_url: https://myanimelist.net/images/anime/1015/123541t.jpg + large_image_url: https://myanimelist.net/images/anime/1015/123541l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1015/123541.webp + small_image_url: https://myanimelist.net/images/anime/1015/123541t.webp + large_image_url: https://myanimelist.net/images/anime/1015/123541l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZGoG763vXMA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Itsudatte Bokura no Koi wa 10 cm Datta. + - type: Japanese + title: いつだって僕らの恋は10センチだった。 + - type: English + title: Our love has always been 10 centimeters apart. + - type: German + title: Our love has always been 10 centimeters apart + - type: Spanish + title: Our love has always been 10 centimeters apart. + - type: French + title: Our Love Has Always been 10 Centimeters Apart + title: Itsudatte Bokura no Koi wa 10 cm Datta. + title_english: Our love has always been 10 centimeters apart. + title_japanese: いつだって僕らの恋は10センチだった。 + title_synonyms: [] + type: TV + source: Music + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2017-11-25T00:00:00+00:00' + to: '2017-12-30T00:00:00+00:00' + prop: + from: + day: 25 + month: 11 + year: 2017 + to: + day: 30 + month: 12 + year: 2017 + string: Nov 25, 2017 to Dec 30, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 101114 + rank: 2480 + popularity: 1120 + members: 252719 + favorites: 812 + synopsis: |- + Miou Aida and Haruki Serizawa might seem like polar opposites to those around them, but as the two third-years prepare to end their high school experience, they couldn't have been closer. While Miou is a shy and reserved member of the school art club that prefers to stay out of the limelight, Haruki is the boisterous and confident ace of the movie club, already winning awards for his directing prowess. However, after a previous chance encounter during their school entrance ceremony, they quickly become friends despite their stark differences in personality. But although their closeness might be growing, they've never become anything more than just that, much to the bewilderment of their friends. + + As their time in high school draws to a close, Miou and Haruki, along with their friends in the art and movie clubs, have just one year left to face their hidden feelings and the daunting task of deciding their future careers. The two might always be only an arm's reach away, but as Haruki chases his dream of becoming a professional movie director and Miou struggles with choosing a path for herself, they'll learn just how hard it is to get past those last 10 centimeters. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1682 + type: anime + name: MusicRay’n + url: https://myanimelist.net/anime/producer/1682/MusicRay%E2%80%99n + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + - mal_id: 1820 + type: anime + name: Yoshimoto Creative Agency + url: https://myanimelist.net/anime/producer/1820/Yoshimoto_Creative_Agency + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 34712 + url: https://myanimelist.net/anime/34712/Kujira_no_Kora_wa_Sajou_ni_Utau + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/86661.jpg + small_image_url: https://myanimelist.net/images/anime/4/86661t.jpg + large_image_url: https://myanimelist.net/images/anime/4/86661l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/86661.webp + small_image_url: https://myanimelist.net/images/anime/4/86661t.webp + large_image_url: https://myanimelist.net/images/anime/4/86661l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aKgYiCjRg_w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kujira no Kora wa Sajou ni Utau + - type: Synonym + title: Whale Calves Sing on the Sand + - type: Synonym + title: Tales of the Wales Calves + - type: Japanese + title: クジラの子らは砂上に歌う + - type: English + title: Children of the Whales + - type: Spanish + title: Hijos de las Ballenas + title: Kujira no Kora wa Sajou ni Utau + title_english: Children of the Whales + title_japanese: クジラの子らは砂上に歌う + title_synonyms: + - Whale Calves Sing on the Sand + - Tales of the Wales Calves + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-08T00:00:00+00:00' + to: '2017-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2017 + to: + day: 24 + month: 12 + year: 2017 + string: Oct 8, 2017 to Dec 24, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 111542 + rank: 4153 + popularity: 1141 + members: 248343 + favorites: 1071 + synopsis: "In a world covered by an endless sea of sand, there sails an island known as the Mud Whale. In its interior\ + \ lies an ancient town, where the majority of its inhabitants are said to be \"Marked,\" a double-edged trait that\ + \ grants them supernatural abilities at the cost of an untimely death. Chakuro is the village archivist; young and\ + \ curious, he spends his time documenting the discovery of newfound islands. But each one is like the rest—abandoned\ + \ save for the remnants of those who lived there long ago. \n\nFor the first time in six months, another island crosses\ + \ the horizon, so Chakuro and his friends join the scouting group. During the expedition, they find vestiges of an\ + \ archaic civilization. And inside one of its crumbling remains, Chakuro discovers a girl who will change his destiny\ + \ and the world inside the Mud Whale as he knows it.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2017 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 1516 + type: anime + name: Sony PCL + url: https://myanimelist.net/anime/producer/1516/Sony_PCL + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 35484 + url: https://myanimelist.net/anime/35484/Osake_wa_Fuufu_ni_Natte_kara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1684/108627.jpg + small_image_url: https://myanimelist.net/images/anime/1684/108627t.jpg + large_image_url: https://myanimelist.net/images/anime/1684/108627l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1684/108627.webp + small_image_url: https://myanimelist.net/images/anime/1684/108627t.webp + large_image_url: https://myanimelist.net/images/anime/1684/108627l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iJV0dZ56uLs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Osake wa Fuufu ni Natte kara + - type: Japanese + title: お酒は夫婦になってから + - type: English + title: Love is Like a Cocktail + - type: German + title: ÖLove is Like a Cocktail + - type: Spanish + title: Love is Like a Cocktail + - type: French + title: Love is Like a Cocktail + title: Osake wa Fuufu ni Natte kara + title_english: Love is Like a Cocktail + title_japanese: お酒は夫婦になってから + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-10-04T00:00:00+00:00' + to: '2017-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2017 + to: + day: 27 + month: 12 + year: 2017 + string: Oct 4, 2017 to Dec 27, 2017 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 6.96 + scored_by: 112650 + rank: 5362 + popularity: 1195 + members: 237366 + favorites: 444 + synopsis: |- + Chisato Mizusawa is a calm and collected assistant office manager who apparently dislikes drinking alcohol. But she actually likes it and has a secret side to her that emerges only when drunk: her cute persona, which she only reveals to her husband, the bartender Sora. Each day when Chisato comes home, Sora takes care of his beloved wife, providing her with a good meal and a fresh drink. These drinks include Plum Splet, Irish Coffee, Orange Breeze, and many more tasty concoctions that she eagerly gulps down. But as much as she likes alcohol, she loves her kindhearted husband more. Together, they share a life that is filled with happiness—and the more-than-occasional cocktail. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Wednesdays + time: 01:00 + timezone: Asia/Tokyo + string: Wednesdays at 01:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 2088 + type: anime + name: Cloud22 + url: https://myanimelist.net/anime/producer/2088/Cloud22 + licensors: [] + studios: + - mal_id: 1195 + type: anime + name: Creators in Pack + url: https://myanimelist.net/anime/producer/1195/Creators_in_Pack + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 33478 + url: https://myanimelist.net/anime/33478/UQ_Holder_Mahou_Sensei_Negima_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/88354.jpg + small_image_url: https://myanimelist.net/images/anime/6/88354t.jpg + large_image_url: https://myanimelist.net/images/anime/6/88354l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/88354.webp + small_image_url: https://myanimelist.net/images/anime/6/88354t.webp + large_image_url: https://myanimelist.net/images/anime/6/88354l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XtPWh1KeAmA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: UQ Holder! Mahou Sensei Negima! 2 + - type: Synonym + title: Yuukyuu Holder + - type: Synonym + title: Eternal Holder + - type: Japanese + title: UQ HOLDER! ~魔法先生ネギま!2~ + - type: English + title: UQ Holder! + title: UQ Holder! Mahou Sensei Negima! 2 + title_english: UQ Holder! + title_japanese: UQ HOLDER! ~魔法先生ネギま!2~ + title_synonyms: + - Yuukyuu Holder + - Eternal Holder + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-03T00:00:00+00:00' + to: '2017-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2017 + to: + day: 19 + month: 12 + year: 2017 + string: Oct 3, 2017 to Dec 19, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 90843 + rank: 5665 + popularity: 1217 + members: 232633 + favorites: 417 + synopsis: |- + Touta Konoe is an ordinary boy raised in a small rural town. His mundane life suddenly changes when his mentor, Yukihime, reveals herself to be a vampire; after saving Touta from a mortal wound, she causes him to become immortal as well. + + Already yearning to explore the world, young Touta finally puts his dream to ascend to the top of Amanomihashira—a tower that leads to outer space—into realization. Along the way, he finds a secret society filled with immortals just like him called "UQ Holders." Gaining new comrades and mentorship along the way, Touta embarks on his own unique, magical adventure. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1309 + type: anime + name: Lawson HMV Entertainment + url: https://myanimelist.net/anime/producer/1309/Lawson_HMV_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35079 + url: https://myanimelist.net/anime/35079/Kino_no_Tabi__The_Beautiful_World_-_The_Animated_Series + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/87235.jpg + small_image_url: https://myanimelist.net/images/anime/13/87235t.jpg + large_image_url: https://myanimelist.net/images/anime/13/87235l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/87235.webp + small_image_url: https://myanimelist.net/images/anime/13/87235t.webp + large_image_url: https://myanimelist.net/images/anime/13/87235l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ij21njEpveg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kino no Tabi: The Beautiful World - The Animated Series' + - type: Japanese + title: キノの旅 -the Beautiful World- the Animated Series + - type: English + title: Kino's Journey -the Beautiful World- the Animated Series + - type: German + title: Kino's Journey -the Beautiful World- the Animated Series + - type: Spanish + title: 'Kino''s Journey: the Beautiful World. the Animated Series' + - type: French + title: Kino's Journey -the Beautiful World- the Animated Series + title: 'Kino no Tabi: The Beautiful World - The Animated Series' + title_english: Kino's Journey -the Beautiful World- the Animated Series + title_japanese: キノの旅 -the Beautiful World- the Animated Series + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-06T00:00:00+00:00' + to: '2017-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2017 + to: + day: 22 + month: 12 + year: 2017 + string: Oct 6, 2017 to Dec 22, 2017 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.61 + scored_by: 89690 + rank: 1776 + popularity: 1222 + members: 231273 + favorites: 1237 + synopsis: |- + When 15-year-old Kino is feeling weighed down by heavy thoughts, one thing always manages to cheer her up: traveling. Nothing fills her heart with joy like exploring the beautiful, wonderful world around her and the fascinating ways people find to live. However, Kino is not as helpless as her cute appearance and courteous demeanor suggest. Armed with "Cannon" and "Woodsman," her trusted handguns, Kino is not afraid to kill anyone who would dare to get in her way. Always by her side is her best friend and loyal companion Hermes, a sentient motorcycle, who supports Kino through the sorrows and hardships of their journey. Together, they travel the vast countryside with the shared goal of always moving forward, and a single rule: never stay in one country for more than three days. + + As Kino and Hermes encounter new people and learn the rules of their civilizations, they grow and find out more about their own values and virtues. But as Kino slowly discovers the world around her, she also finds herself facing dangers that linger within the vast unknown. + + [Written by MAL Rewrite] + background: At a stage event at the Dengeki Bunko Festival 2017, it was announced that this new adaptation will prioritize + the fan favorite stories. These were selected from a "favorite country" poll carried out among light novel readers + in 2015. + season: fall + year: 2017 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35843 + url: https://myanimelist.net/anime/35843/Gintama_Porori-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/88325.jpg + small_image_url: https://myanimelist.net/images/anime/11/88325t.jpg + large_image_url: https://myanimelist.net/images/anime/11/88325l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/88325.webp + small_image_url: https://myanimelist.net/images/anime/11/88325t.webp + large_image_url: https://myanimelist.net/images/anime/11/88325l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sznFcl1O3GI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama. Porori-hen + - type: Japanese + title: 銀魂。ポロリ編 + - type: English + title: Gintama. Slip Arc + - type: German + title: Gintama Staffel 6 + - type: Spanish + title: Gintama Temporada 6 + - type: French + title: Gintama Saison 6 + title: Gintama. Porori-hen + title_english: Gintama. Slip Arc + title_japanese: 銀魂。ポロリ編 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2017-10-02T00:00:00+00:00' + to: '2017-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2017 + to: + day: 25 + month: 12 + year: 2017 + string: Oct 2, 2017 to Dec 25, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.51 + scored_by: 113031 + rank: 157 + popularity: 1267 + members: 222763 + favorites: 967 + synopsis: |- + Following the grim events of Iga, Kokujou Island, Rakuyou, and multiple fruitless confrontations with the Tenshouin Naraku and Tendoshuu, Gintama. Porori-hen takes its viewers on a trip down memory lane to when Yorozuya were mostly doing what they did best—odd jobs. The great space hunter Umibouzu has returned to Edo and is livid when he finds out that his daughter Kagura has a boyfriend. He blames Gintoki for being an incompetent guardian, but has the time finally come for him to let go of his daughter? + + Back with shameless parodies, risqué humor, and lively camaraderie, Gintoki, Kagura, and Shinpachi are faced with unforeseen situations that manage to be both hilarious and emotionally stirring. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35241 + url: https://myanimelist.net/anime/35241/Konohana_Kitan + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88431.jpg + small_image_url: https://myanimelist.net/images/anime/3/88431t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88431l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88431.webp + small_image_url: https://myanimelist.net/images/anime/3/88431t.webp + large_image_url: https://myanimelist.net/images/anime/3/88431l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XnOWZOwoRow?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Konohana Kitan + - type: Japanese + title: このはな綺譚 + - type: English + title: Konohana Kitan + title: Konohana Kitan + title_english: Konohana Kitan + title_japanese: このはな綺譚 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2017-10-04T00:00:00+00:00' + to: '2017-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2017 + to: + day: 20 + month: 12 + year: 2017 + string: Oct 4, 2017 to Dec 20, 2017 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 55248 + rank: 2287 + popularity: 1633 + members: 167682 + favorites: 676 + synopsis: |- + In a bustling village of spirits, Yuzu, a cheerful fox girl, starts her first job as an attendant at the traditional hot springs inn Konohanatei. Though Yuzu has no experience working at such a high-class establishment, Kiri, the affable and reliable head attendant, immediately puts her to work learning the basics. + + While Yuzu's eagerness initially proves to be more of a hindrance than a blessing, her playful nature brings a unique charm to the inn, as both customers and her fellow workers quickly warm up to her clumsy yet well-meaning mistakes. Under the guidance of the other foxes—the rigid Satsuki, the carefree Natsume, the critical Ren, and the quiet Sakura—Yuzu steadily learns the trade of an inn attendant while learning to love the magical world surrounding her. + + Konohana Kitan presents the heartwarming tale of a simple fox girl forging bonds with others and finding a home amidst the mysterious, beautiful world of spirits. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2017 + broadcast: + day: Wednesdays + time: '20:00' + timezone: Asia/Tokyo + string: Wednesdays at 20:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 470 + type: anime + name: GAGA + url: https://myanimelist.net/anime/producer/470/GAGA + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1821 + type: anime + name: Melonbooks + url: https://myanimelist.net/anime/producer/1821/Melonbooks + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/33-2018-winter.yaml b/test/fixtures/jikan/season_matrix/33-2018-winter.yaml new file mode 100644 index 0000000..ef330f0 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/33-2018-winter.yaml @@ -0,0 +1,3467 @@ +metadata: + captured_at: '2026-05-11T11:33:48Z' + label: 2018-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2018/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:47 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:4785d758d32dc96db2a8968360ba5080f098b069 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 318 + per_page: 25 + data: + - mal_id: 33352 + url: https://myanimelist.net/anime/33352/Violet_Evergarden + images: + jpg: + image_url: https://myanimelist.net/images/anime/1795/95088.jpg + small_image_url: https://myanimelist.net/images/anime/1795/95088t.jpg + large_image_url: https://myanimelist.net/images/anime/1795/95088l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1795/95088.webp + small_image_url: https://myanimelist.net/images/anime/1795/95088t.webp + large_image_url: https://myanimelist.net/images/anime/1795/95088l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g5xWqjFglsk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Violet Evergarden + - type: Japanese + title: ヴァイオレット・エヴァーガーデン + - type: English + title: Violet Evergarden + title: Violet Evergarden + title_english: Violet Evergarden + title_japanese: ヴァイオレット・エヴァーガーデン + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-01-11T00:00:00+00:00' + to: '2018-04-05T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2018 + to: + day: 5 + month: 4 + year: 2018 + string: Jan 11, 2018 to Apr 5, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.69 + scored_by: 1091447 + rank: 75 + popularity: 46 + members: 1997542 + favorites: 69232 + synopsis: |- + The Great War finally came to an end after four long years of conflict; fractured in two, the continent of Telesis slowly began to flourish once again. Caught up in the bloodshed was Violet Evergarden, a young girl raised for the sole purpose of decimating enemy lines. Hospitalized and maimed in a bloody skirmish during the War's final leg, she was left with only words from the person she held dearest, but with no understanding of their meaning. + + Recovering from her wounds, Violet starts a new life working at CH Postal Services after a falling out with her new intended guardian family. There, she witnesses by pure chance the work of an "Auto Memory Doll," amanuenses that transcribe people's thoughts and feelings into words on paper. Moved by the notion, Violet begins work as an Auto Memory Doll, a trade that will take her on an adventure, one that will reshape the lives of her clients and hopefully lead to self-discovery. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35849 + url: https://myanimelist.net/anime/35849/Darling_in_the_FranXX + images: + jpg: + image_url: https://myanimelist.net/images/anime/1614/90408.jpg + small_image_url: https://myanimelist.net/images/anime/1614/90408t.jpg + large_image_url: https://myanimelist.net/images/anime/1614/90408l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1614/90408.webp + small_image_url: https://myanimelist.net/images/anime/1614/90408t.webp + large_image_url: https://myanimelist.net/images/anime/1614/90408l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cJ6g_6Ud0s8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Darling in the FranXX + - type: Japanese + title: ダーリン・イン・ザ・フランキス + - type: English + title: DARLING in the FRANXX + - type: German + title: Darling in the Franxx + - type: Spanish + title: Darling in The FranXX + title: Darling in the FranXX + title_english: DARLING in the FRANXX + title_japanese: ダーリン・イン・ザ・フランキス + title_synonyms: [] + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-01-13T00:00:00+00:00' + to: '2018-07-07T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2018 + to: + day: 7 + month: 7 + year: 2018 + string: Jan 13, 2018 to Jul 7, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 1117447 + rank: 3929 + popularity: 62 + members: 1815306 + favorites: 34430 + synopsis: "In the distant future, humanity has been driven to near-extinction by giant beasts known as Klaxosaurs, forcing\ + \ the surviving humans to take refuge in massive fortress cities called Plantations. Children raised here are trained\ + \ to pilot giant mechas known as FranXX—the only weapons known to be effective against the Klaxosaurs—in boy-girl\ + \ pairs. Bred for the sole purpose of piloting these machines, these children know nothing of the outside world and\ + \ are only able to prove their existence by defending their race. \n\nHiro, an aspiring FranXX pilot, has lost his\ + \ motivation and self-confidence after failing an aptitude test. Skipping out on his class' graduation ceremony, Hiro\ + \ retreats to a forest lake, where he encounters a mysterious girl with two horns growing out of her head. She introduces\ + \ herself by her codename Zero Two, which is known to belong to an infamous FranXX pilot known as the \"Partner Killer.\"\ + \ Before Hiro can digest the encounter, the Plantation is rocked by a sudden Klaxosaur attack. Zero Two engages the\ + \ creature in her FranXX, but it is heavily damaged in the skirmish and crashes near Hiro. Finding her partner dead,\ + \ Zero Two invites Hiro to pilot the mecha with her, and the duo easily defeats the Klaxosaur in the ensuing fight.\ + \ With a new partner by his side, Hiro has been given a chance at redemption for his past failures, but at what cost?\n\ + \n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2018 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 47 + type: anime + name: Khara + url: https://myanimelist.net/anime/producer/47/Khara + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1415 + type: anime + name: Asahi Broadcasting + url: https://myanimelist.net/anime/producer/1415/Asahi_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1496 + type: anime + name: Lawson + url: https://myanimelist.net/anime/producer/1496/Lawson + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 2018 + type: anime + name: Rialto Entertainment + url: https://myanimelist.net/anime/producer/2018/Rialto_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 35120 + url: https://myanimelist.net/anime/35120/Devilman__Crybaby + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/89973.jpg + small_image_url: https://myanimelist.net/images/anime/2/89973t.jpg + large_image_url: https://myanimelist.net/images/anime/2/89973l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/89973.webp + small_image_url: https://myanimelist.net/images/anime/2/89973t.webp + large_image_url: https://myanimelist.net/images/anime/2/89973l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ww06yGPM7Kc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Devilman: Crybaby' + - type: Japanese + title: DEVILMAN crybaby + - type: English + title: 'Devilman: Crybaby' + - type: German + title: 'DEVILMAN: Crybaby' + - type: Spanish + title: 'DEVILMAN: Crybaby' + - type: French + title: 'DEVILMAN: Crybaby' + title: 'Devilman: Crybaby' + title_english: 'Devilman: Crybaby' + title_japanese: DEVILMAN crybaby + title_synonyms: [] + type: ONA + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-01-05T00:00:00+00:00' + to: null + prop: + from: + day: 5 + month: 1 + year: 2018 + to: + day: null + month: null + year: null + string: Jan 5, 2018 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.74 + scored_by: 766230 + rank: 1329 + popularity: 127 + members: 1277497 + favorites: 26035 + synopsis: |- + Devils cannot take form without a living host. However, if the will of an individual is strong enough, they can overcome the demon and make its power their own, becoming a Devilman. + + Weak and unassuming, Akira Fudou has always had a bleeding heart. So when his childhood friend Ryou Asuka asks for his help in uncovering devils, Akira accepts without hesitation. However, to Akira's surprise, the place they go to is Sabbath: an immoral party of debauchery and degeneracy. Amidst bloodshed and death, demons possess the partiers, turning their bodies into grotesque monsters, and begin wreaking havoc. In a reckless attempt to save his best friend, Akira unwittingly merges with the devil Amon and becomes a Devilman, gaining the power to defeat the remaining demons. + + Though it grants him great power, this new partnership awakens an insatiable and primeval part of Akira. Having the body of a devil but the same crybaby heart, Akira works alongside Ryou, destroying those that harm humanity and his loved ones. + + [Written by MAL Rewrite] + background: 'Devilman: Crybaby adapts the entire original manga while modernizing the setting.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 921 + type: anime + name: Dynamic Planning + url: https://myanimelist.net/anime/producer/921/Dynamic_Planning + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34577 + url: https://myanimelist.net/anime/34577/Nanatsu_no_Taizai__Imashime_no_Fukkatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/90089.jpg + small_image_url: https://myanimelist.net/images/anime/11/90089t.jpg + large_image_url: https://myanimelist.net/images/anime/11/90089l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/90089.webp + small_image_url: https://myanimelist.net/images/anime/11/90089t.webp + large_image_url: https://myanimelist.net/images/anime/11/90089l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lgkv0Lqr-Iw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nanatsu no Taizai: Imashime no Fukkatsu' + - type: Synonym + title: Seven Deadly Sins Season 2 + - type: Japanese + title: 七つの大罪 戒めの復活 + - type: English + title: 'The Seven Deadly Sins: Revival of the Commandments' + - type: German + title: The Seven Deadly Sins + - type: Spanish + title: 'The Seven Deadly Sins: La Resurrección de los Diez Mandamientos' + - type: French + title: The Seven Deadly Sins + title: 'Nanatsu no Taizai: Imashime no Fukkatsu' + title_english: 'The Seven Deadly Sins: Revival of the Commandments' + title_japanese: 七つの大罪 戒めの復活 + title_synonyms: + - Seven Deadly Sins Season 2 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-01-13T00:00:00+00:00' + to: '2018-06-30T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2018 + to: + day: 30 + month: 6 + year: 2018 + string: Jan 13, 2018 to Jun 30, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 751693 + rank: 2120 + popularity: 137 + members: 1209890 + favorites: 3692 + synopsis: |- + The fierce battle between Meliodas, the captain of the Seven Deadly Sins, and the Great Holy Knight Hendrickson has devastating consequences. Armed with the fragments necessary for the revival of the Demon Clan, Hendrickson breaks the seal, allowing the Commandments to escape, all of whom are mighty warriors working directly under the Demon King himself. Through a mysterious connection, Meliodas instantly identifies them; likewise, the 10 Commandments, too, seem to sense his presence. + + As the demons leave a path of destruction in their wake, the Seven Deadly Sins must find a way to stop them before the Demon Clan drowns Britannia in blood and terror. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Saturdays + time: 06:30 + timezone: Asia/Tokyo + string: Saturdays at 06:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35073 + url: https://myanimelist.net/anime/35073/Overlord_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1212/113415.jpg + small_image_url: https://myanimelist.net/images/anime/1212/113415t.jpg + large_image_url: https://myanimelist.net/images/anime/1212/113415l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1212/113415.webp + small_image_url: https://myanimelist.net/images/anime/1212/113415t.webp + large_image_url: https://myanimelist.net/images/anime/1212/113415l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/p2ksX48PBQY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Overlord II + - type: Japanese + title: オーバーロードⅡ + - type: English + title: Overlord II + title: Overlord II + title_english: Overlord II + title_japanese: オーバーロードⅡ + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-01-09T00:00:00+00:00' + to: '2018-04-03T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2018 + to: + day: 3 + month: 4 + year: 2018 + string: Jan 9, 2018 to Apr 3, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.75 + scored_by: 698719 + rank: 1316 + popularity: 155 + members: 1131509 + favorites: 4677 + synopsis: |- + Ainz Ooal Gown, the undead sorcerer formerly known as Momonga, has accepted his place in this new world. Though it bears similarities to his beloved virtual reality game Yggdrasil, it still holds many mysteries which he intends to uncover, by utilizing his power as ruler of the Great Tomb of Nazarick. However, ever since the disastrous brainwashing of one of his subordinates, Ainz has become wary of the impending dangers of the Slane Theocracy, as well as the possible existence of other former Yggdrasil players. Meanwhile, Albedo, Demiurge and the rest of Ainz's loyal guardians set out to prepare for the next step in their campaign: Nazarick's first war… + + Overlord II picks up immediately after its prequel, continuing the story of Ainz Ooal Gown, his eclectic army of human-hating guardians, and the many hapless humans affected by the Overlord's arrival. + + [Written by MAL Rewrite] + background: Overlord adapts novels 4 to 6 of Kugane Maruyama's light novel series of the same name. + season: winter + year: 2018 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 1254 + type: anime + name: Grooove + url: https://myanimelist.net/anime/producer/1254/Grooove + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 34612 + url: https://myanimelist.net/anime/34612/Saiki_Kusuo_no_Ψ-nan_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1961/91383.jpg + small_image_url: https://myanimelist.net/images/anime/1961/91383t.jpg + large_image_url: https://myanimelist.net/images/anime/1961/91383l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1961/91383.webp + small_image_url: https://myanimelist.net/images/anime/1961/91383t.webp + large_image_url: https://myanimelist.net/images/anime/1961/91383l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Aha1TjvvEUs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saiki Kusuo no Ψ-nan 2 + - type: Synonym + title: Saiki Kusuo no Psi Nan 2 + - type: Japanese + title: 斉木楠雄のΨ難 2 + - type: English + title: The Disastrous Life of Saiki K. 2 + - type: Spanish + title: The Disastrous Life of Saiki K. Temporada 2 + title: Saiki Kusuo no Ψ-nan 2 + title_english: The Disastrous Life of Saiki K. 2 + title_japanese: 斉木楠雄のΨ難 2 + title_synonyms: + - Saiki Kusuo no Psi Nan 2 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-01-17T00:00:00+00:00' + to: '2018-06-27T00:00:00+00:00' + prop: + from: + day: 17 + month: 1 + year: 2018 + to: + day: 27 + month: 6 + year: 2018 + string: Jan 17, 2018 to Jun 27, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.41 + scored_by: 432058 + rank: 225 + popularity: 326 + members: 722514 + favorites: 4480 + synopsis: |- + The disastrous life of the gifted psychic Kusuo Saiki continues, despite his utmost effort to live an ordinary life. Although he has certainly grown accustomed to dealing with his troublesome friends—who are his biggest hurdle to achieving a peaceful life—he still has a long way to go. Also joining the usual oddballs are a few new faces whose shenanigans add to Saiki's misery, making his dreams of a hassle-free life a distant fantasy. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Wednesdays + time: 01:35 + timezone: Asia/Tokyo + string: Wednesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1803 + type: anime + name: Dear Stage inc. + url: https://myanimelist.net/anime/producer/1803/Dear_Stage_inc + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35860 + url: https://myanimelist.net/anime/35860/Karakai_Jouzu_no_Takagi-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1591/95091.jpg + small_image_url: https://myanimelist.net/images/anime/1591/95091t.jpg + large_image_url: https://myanimelist.net/images/anime/1591/95091l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1591/95091.webp + small_image_url: https://myanimelist.net/images/anime/1591/95091t.webp + large_image_url: https://myanimelist.net/images/anime/1591/95091l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g4VJra3sLMg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karakai Jouzu no Takagi-san + - type: Synonym + title: Skilled Teaser Takagi-san + - type: Japanese + title: からかい上手の高木さん + - type: English + title: Teasing Master Takagi-san + - type: German + title: Karakai Jozu No Takagi-san + - type: Spanish + title: 'Takagi-san: Experta en Bromas pesadas' + title: Karakai Jouzu no Takagi-san + title_english: Teasing Master Takagi-san + title_japanese: からかい上手の高木さん + title_synonyms: + - Skilled Teaser Takagi-san + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-08T00:00:00+00:00' + to: '2018-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2018 + to: + day: 26 + month: 3 + year: 2018 + string: Jan 8, 2018 to Mar 26, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.67 + scored_by: 317980 + rank: 1554 + popularity: 386 + members: 639753 + favorites: 5427 + synopsis: |- + Having a friend that knows you inside out should be a good thing, but in Nishikata's case, the opposite is true. + + His classmate Takagi loves to tease him on a daily basis, and she uses her extensive knowledge of his behavior to predict exactly how he will react to her teasing, making it nearly impossible for Nishikata to ever make a successful comeback. Despite this, Nishikata vows to someday give Takagi a taste of her own medicine by making her blush out of embarrassment from his teasing. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34497 + url: https://myanimelist.net/anime/34497/Death_March_kara_Hajimaru_Isekai_Kyousoukyoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/88911.jpg + small_image_url: https://myanimelist.net/images/anime/4/88911t.jpg + large_image_url: https://myanimelist.net/images/anime/4/88911l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/88911.webp + small_image_url: https://myanimelist.net/images/anime/4/88911t.webp + large_image_url: https://myanimelist.net/images/anime/4/88911l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0NzZvYIyb0c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Death March kara Hajimaru Isekai Kyousoukyoku + - type: Japanese + title: デスマーチからはじまる異世界狂想曲 + - type: English + title: Death March to the Parallel World Rhapsody + - type: German + title: Death March to the Parallel World Rhapsody + - type: Spanish + title: Death March to the Parallel World Rhapsody + - type: French + title: Death March to the Parallel World Rhapsody + title: Death March kara Hajimaru Isekai Kyousoukyoku + title_english: Death March to the Parallel World Rhapsody + title_japanese: デスマーチからはじまる異世界狂想曲 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-11T00:00:00+00:00' + to: '2018-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2018 + to: + day: 29 + month: 3 + year: 2018 + string: Jan 11, 2018 to Mar 29, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.43 + scored_by: 314330 + rank: 8569 + popularity: 448 + members: 559107 + favorites: 1898 + synopsis: "Ichirou Suzuki, a programmer nearing his thirties, is drowning in work. Worn out, he eventually has a chance\ + \ to catch up on sleep, only to wake up and discover himself in a fantasy RPG world, which is mashed together from\ + \ the games he was debugging in reality. In this new place, he realizes that not only has his appearance changed to\ + \ a younger version of himself, but his name has also changed to Satou, a nickname he used while running beta tests\ + \ on games. \n\nHowever, before Satou can fully grasp his situation, an army of lizardmen launch an assault on him.\ + \ Forced to cast a powerful spell in retaliation, Satou wipes them out completely and his level is boosted to 310,\ + \ effectively maximizing his stats. Now, as a high-leveled adventurer armed with a plethora of skills and no way to\ + \ return to reality, Satou sets out to explore this magical new world.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2018 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1787 + type: anime + name: KLab + url: https://myanimelist.net/anime/producer/1787/KLab + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 34382 + url: https://myanimelist.net/anime/34382/Citrus + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/89985.jpg + small_image_url: https://myanimelist.net/images/anime/11/89985t.jpg + large_image_url: https://myanimelist.net/images/anime/11/89985l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/89985.webp + small_image_url: https://myanimelist.net/images/anime/11/89985t.webp + large_image_url: https://myanimelist.net/images/anime/11/89985l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/33WrHNSoxdY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Citrus + - type: Japanese + title: シトラス + - type: English + title: Citrus + title: Citrus + title_english: Citrus + title_japanese: シトラス + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-06T00:00:00+00:00' + to: '2018-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2018 + to: + day: 24 + month: 3 + year: 2018 + string: Jan 6, 2018 to Mar 24, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.43 + scored_by: 297138 + rank: 8566 + popularity: 449 + members: 558544 + favorites: 4112 + synopsis: |- + During the summer of her freshman year of high school, Yuzu Aihara's mother remarried, forcing her to transfer to a new school. To a fashionable socialite like Yuzu, this inconvenient event is just another opportunity to make new friends, fall in love, and finally experience a first kiss. Unfortunately, Yuzu's dreams and style do not conform with her new ultrastrict, all-girls school, filled with obedient shut-ins and overachieving grade-skippers. Her gaudy appearance manages to grab the attention of Mei Aihara, the beautiful and imposing student council president, who immediately proceeds to sensually caress Yuzu's body in an effort to confiscate her cellphone. + + Thoroughly exhausted from her first day, Yuzu arrives home and discovers a shocking truth—Mei is actually her new step-sister! Though Yuzu initially tries to be friendly with her, Mei's cold shoulder routine forces Yuzu to begin teasing her. But before Yuzu can finish her sentence, Mei forces her to the ground and kisses her, with Yuzu desperately trying to break free. Once done, Mei storms out of the room, leaving Yuzu to ponder the true nature of her first kiss, and the secrets behind the tortured expression in the eyes of her new sister. + + [Written by MAL Rewrite] + background: Citrus adapts the first 4 volumes of Saburota's manga series by the same title. + season: winter + year: 2018 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 787 + type: anime + name: Happinet Pictures + url: https://myanimelist.net/anime/producer/787/Happinet_Pictures + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1407 + type: anime + name: Children's Playground Entertainment + url: https://myanimelist.net/anime/producer/1407/Childrens_Playground_Entertainment + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 35839 + url: https://myanimelist.net/anime/35839/Sora_yori_mo_Tooi_Basho + images: + jpg: + image_url: https://myanimelist.net/images/anime/6/89879.jpg + small_image_url: https://myanimelist.net/images/anime/6/89879t.jpg + large_image_url: https://myanimelist.net/images/anime/6/89879l.jpg + webp: + image_url: https://myanimelist.net/images/anime/6/89879.webp + small_image_url: https://myanimelist.net/images/anime/6/89879t.webp + large_image_url: https://myanimelist.net/images/anime/6/89879l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jFgvK5BzGck?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sora yori mo Tooi Basho + - type: Synonym + title: Uchuu yori mo Tooi Basho + - type: Synonym + title: A Story That Leads to the Antarctica + - type: Synonym + title: Yorimoi + - type: Japanese + title: 宇宙よりも遠い場所 + - type: English + title: A Place Further Than The Universe + - type: German + title: A Place Further Than the Universe + - type: Spanish + title: A Place Further than the Universe + - type: French + title: A Place Further Than The Universe + title: Sora yori mo Tooi Basho + title_english: A Place Further Than The Universe + title_japanese: 宇宙よりも遠い場所 + title_synonyms: + - Uchuu yori mo Tooi Basho + - A Story That Leads to the Antarctica + - Yorimoi + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-01-02T00:00:00+00:00' + to: '2018-03-27T00:00:00+00:00' + prop: + from: + day: 2 + month: 1 + year: 2018 + to: + day: 27 + month: 3 + year: 2018 + string: Jan 2, 2018 to Mar 27, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.5 + scored_by: 236605 + rank: 166 + popularity: 455 + members: 554164 + favorites: 14843 + synopsis: |- + Filled with an overwhelming sense of wonder for the world around her, Mari Tamaki has always dreamt of what lies beyond the reaches of the universe. However, despite harboring such large aspirations on the inside, her fear of the unknown and anxiety over her own possible limitations have always held her back from chasing them. But now, in her second year of high school, Mari is more determined than ever to not let any more of her youth go to waste. Still, her fear continues to prevent her from taking that ambitious step forward—that is, until she has a chance encounter with a girl who has grand dreams of her own. + + Spurred by her mother's disappearance, Shirase Kobuchizawa has been working hard to fund her trip to Antarctica. Despite facing doubt and ridicule from virtually everyone, Shirase is determined to embark on this expedition to search for her mother in a place further than the universe itself. Inspired by Shirase's resolve, Mari jumps at the chance to join her. Soon, their efforts attract the attention of the bubbly Hinata Miyake, who is eager to stand out, and Yuzuki Shiraishi, a polite girl from a high class background. Together, the four spirited girls set sail toward the frozen south, all in search of something great. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Tuesdays + time: '20:30' + timezone: Asia/Tokyo + string: Tuesdays at 20:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + demographics: [] + - mal_id: 34798 + url: https://myanimelist.net/anime/34798/Yuru_Camp△ + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/89877.jpg + small_image_url: https://myanimelist.net/images/anime/4/89877t.jpg + large_image_url: https://myanimelist.net/images/anime/4/89877l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/89877.webp + small_image_url: https://myanimelist.net/images/anime/4/89877t.webp + large_image_url: https://myanimelist.net/images/anime/4/89877l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vpH42sJ8t9c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuru Camp△ + - type: Synonym + title: Yurukyan + - type: Japanese + title: ゆるキャン△ + - type: English + title: Laid-Back Camp + - type: German + title: Laid-Back Camp + - type: Spanish + title: Laid-Back Camp + - type: French + title: Laid-Back Camp - Au Grand Air + title: Yuru Camp△ + title_english: Laid-Back Camp + title_japanese: ゆるキャン△ + title_synonyms: + - Yurukyan + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-04T00:00:00+00:00' + to: '2018-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2018 + to: + day: 22 + month: 3 + year: 2018 + string: Jan 4, 2018 to Mar 22, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 240023 + rank: 362 + popularity: 464 + members: 542663 + favorites: 12010 + synopsis: |- + While the perfect getaway for most girls her age might be a fancy vacation with their loved ones, Rin Shima's ideal way of spending her days off is camping alone at the base of Mount Fuji. From pitching her tent to gathering firewood, she has always done everything by herself, and has no plans of leaving her little solitary world. + + However, what starts off as one of Rin's usual camping sessions somehow ends up as a surprise get-together for two when the lost Nadeshiko Kagamihara is forced to take refuge at her campsite. Originally intending to see the picturesque view of Mount Fuji for herself, Nadeshiko's plans are disrupted when she ends up falling asleep partway to her destination. Alone and with no other choice, she seeks help from the only other person nearby. Despite their hasty introductions, the two girls nevertheless enjoy the chilly night together, eating ramen and conversing while the campfire keeps them warm. And even after Nadeshiko's sister finally picks her up later that night, both girls silently ponder the possibility of another camping trip together. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: [] + studios: + - mal_id: 1075 + type: anime + name: C-Station + url: https://myanimelist.net/anime/producer/1075/C-Station + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + - mal_id: 35851 + url: https://myanimelist.net/anime/35851/Sayonara_no_Asa_ni_Yakusoku_no_Hana_wo_Kazarou + images: + jpg: + image_url: https://myanimelist.net/images/anime/11/89556.jpg + small_image_url: https://myanimelist.net/images/anime/11/89556t.jpg + large_image_url: https://myanimelist.net/images/anime/11/89556l.jpg + webp: + image_url: https://myanimelist.net/images/anime/11/89556.webp + small_image_url: https://myanimelist.net/images/anime/11/89556t.webp + large_image_url: https://myanimelist.net/images/anime/11/89556l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fi1gmq0CwcA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sayonara no Asa ni Yakusoku no Hana wo Kazarou + - type: Synonym + title: Let's Decorate the Promised Flowers in the Morning of Farewells + - type: Synonym + title: SayoAsa + - type: Japanese + title: さよならの朝に約束の花をかざろう + - type: English + title: 'Maquia: When the Promised Flower Blooms' + - type: German + title: 'Maquia: Eine Unsterbliche Liebesgeschichte' + - type: Spanish + title: 'Maquia: Una Historia de Amor Inmortal' + - type: French + title: 'Maquia: When the Promised Flower Blooms' + title: Sayonara no Asa ni Yakusoku no Hana wo Kazarou + title_english: 'Maquia: When the Promised Flower Blooms' + title_japanese: さよならの朝に約束の花をかざろう + title_synonyms: + - Let's Decorate the Promised Flowers in the Morning of Farewells + - SayoAsa + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-02-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 2 + year: 2018 + to: + day: null + month: null + year: null + string: Feb 24, 2018 + duration: 1 hr 54 min + rating: PG-13 - Teens 13 or older + score: 8.4 + scored_by: 217840 + rank: 234 + popularity: 526 + members: 495090 + favorites: 8559 + synopsis: |- + Maquia is a member of a special race called the Iorph—mystical beings who can live for hundreds of years and remain separate from the lives and daily troubles of mankind. However, Maquia has always felt lonely despite being surrounded by her people, as she was orphaned from a young age. She daydreams about the outside world, but dares not travel from her home due to the warnings of the clan's chief. + + One day however, the outside world finds her, as the power-hungry kingdom of Mezarte invades her homeland. They already have what is left of the giant dragons, the Renato, under their control, and now their king wishes to add the immortality of the Iorph to his bloodline. + + The humans and their Renato ravage the Iorph homeland and kill most of its inhabitants. Caught in the midst of the attack, Maquia is carried off by one of the Renato that has gone berserk. It soon dies, and she is left deserted in a forest far from home, now truly alone save for the cries of a single baby off in the distance. Maquia finds the baby in a destroyed village and decides to raise him as her own, naming him Ariel. Although she knows nothing of the human world, how to raise a child that ages much faster than her, or how to live with the smoldering loneliness inside, she is determined to make it all work somehow. + + [Written by MAL Rewrite] + background: Sayonara no Asa ni Yakusoku no Hana wo Kazarou, abbreviated as SayoAsa, is the directorial debut of screenwriter + Mari Okada. Outside of Japan, the film made its international premiere at the 2018 Glasgow Film Festival. It went + on to receive the Golden Goblet Award for Best Animation Film at the 21st Shanghai International Film Festival, and + was named Best Feature Length Film in the Fantastic Discovery section at the 51st Sitges Film Festival. The film has + earned more than 350 million yen in domestic box office revenues. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: + - mal_id: 531 + type: anime + name: Eleven Arts + url: https://myanimelist.net/anime/producer/531/Eleven_Arts + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35466 + url: https://myanimelist.net/anime/35466/ReLIFE__Kanketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1566/91061.jpg + small_image_url: https://myanimelist.net/images/anime/1566/91061t.jpg + large_image_url: https://myanimelist.net/images/anime/1566/91061l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1566/91061.webp + small_image_url: https://myanimelist.net/images/anime/1566/91061t.webp + large_image_url: https://myanimelist.net/images/anime/1566/91061l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fM3xoYACtGE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'ReLIFE: Kanketsu-hen' + - type: Japanese + title: ReLIFE 完結編 + - type: English + title: 'ReLIFE: Final Arc' + - type: German + title: ReLIFE OVAs + - type: Spanish + title: ReLIFE OVAS + - type: French + title: ReLIFE OVAs + title: 'ReLIFE: Kanketsu-hen' + title_english: 'ReLIFE: Final Arc' + title_japanese: ReLIFE 完結編 + title_synonyms: [] + type: Special + source: Web manga + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2018-03-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 3 + year: 2018 + to: + day: null + month: null + year: null + string: Mar 21, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 266885 + rank: 436 + popularity: 593 + members: 448149 + favorites: 2134 + synopsis: |- + After reliving the life of a high school student through the ReLIFE experiment, 27-year-old Arata Kaizaki cannot believe how quickly it has changed him. He has begun to see the world through a different perspective that he had completely forgotten as an adult. He has made friends and formed deep relationships with each one of them. However his support, Ryou Yoake, reminds him that the experiment is all an illusion; after his experiment ends, he will be forgotten by all of them. + + The experiment of another ReLIFE subject is also coming to an end. After spending two years with ReLIFE, Chizuru Hishiro has developed into a more open, more thoughtful person than she could have ever imagined. She has met people who have changed her life, her perspective, and ultimately her. However, now that their ReLIFE is coming to an end, will they be able to let go of the memories they have made? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1481 + type: anime + name: comico + url: https://myanimelist.net/anime/producer/1481/comico + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 35222 + url: https://myanimelist.net/anime/35222/Gakuen_Babysitters + images: + jpg: + image_url: https://myanimelist.net/images/anime/8/89978.jpg + small_image_url: https://myanimelist.net/images/anime/8/89978t.jpg + large_image_url: https://myanimelist.net/images/anime/8/89978l.jpg + webp: + image_url: https://myanimelist.net/images/anime/8/89978.webp + small_image_url: https://myanimelist.net/images/anime/8/89978t.webp + large_image_url: https://myanimelist.net/images/anime/8/89978l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5boy-B9STZA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gakuen Babysitters + - type: Japanese + title: 学園ベビーシッターズ + - type: English + title: School Babysitters + - type: German + title: School Babysitters + - type: Spanish + title: School Babysitters (Gakuen Babysitters) + - type: French + title: School Babysitters + title: Gakuen Babysitters + title_english: School Babysitters + title_japanese: 学園ベビーシッターズ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-07T00:00:00+00:00' + to: '2018-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2018 + to: + day: 25 + month: 3 + year: 2018 + string: Jan 7, 2018 to Mar 25, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 191128 + rank: 938 + popularity: 723 + members: 379591 + favorites: 3473 + synopsis: "After losing both parents in a fatal plane crash, teenager Ryuuichi Kashima must adjust to his new life as\ + \ the guardian of his younger brother Kotarou. Although Ryuuichi is able to maintain a friendly and kindhearted demeanor,\ + \ Kotarou is a reserved toddler still too young to understand the reality of the situation. At their parents' funeral,\ + \ they are approached by Youko Morinomiya, the stern chairman of an elite academy, who decides to take them under\ + \ her care.\n \nHowever, there is one condition Ryuuichi must fulfill in exchange for a roof over their heads and\ + \ enrolment in the school—he must become the school's babysitter. In an effort to support the female teachers at the\ + \ academy, a babysitter's club was established to look after their infant children; unfortunately, the club is severely\ + \ short-staffed, so now not only is Ryuuichi responsible for his little brother, but also a handful of toddlers who\ + \ possess dynamic personalities.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2018 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 23 + type: anime + name: Bandai Visual + url: https://myanimelist.net/anime/producer/23/Bandai_Visual + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1121 + type: anime + name: Banpresto + url: https://myanimelist.net/anime/producer/1121/Banpresto + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: [] + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 32827 + url: https://myanimelist.net/anime/32827/B__The_Beginning + images: + jpg: + image_url: https://myanimelist.net/images/anime/1564/90469.jpg + small_image_url: https://myanimelist.net/images/anime/1564/90469t.jpg + large_image_url: https://myanimelist.net/images/anime/1564/90469l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1564/90469.webp + small_image_url: https://myanimelist.net/images/anime/1564/90469t.webp + large_image_url: https://myanimelist.net/images/anime/1564/90469l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WUKrj0lPIrk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'B: The Beginning' + - type: Japanese + title: 'B: The Beginning' + - type: English + title: 'B: The Beginning' + title: 'B: The Beginning' + title_english: 'B: The Beginning' + title_japanese: 'B: The Beginning' + title_synonyms: [] + type: ONA + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-03-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 3 + year: 2018 + to: + day: null + month: null + year: null + string: Mar 2, 2018 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.14 + scored_by: 185990 + rank: 4314 + popularity: 744 + members: 370769 + favorites: 1426 + synopsis: "On the islands of Cremona, a vigilante runs amok. Celebrated by some and hunted by others, the notorious\ + \ \"Killer B\" takes justice into his own hands, armed with a sharp blade and superhuman abilities. Unable to apprehend\ + \ this renegade, the Royal Investigation Service (RIS) calls upon the expertise of Keith Flick, a seasoned, yet eccentric\ + \ detective who was relegated to the Archives Department following a personal loss. As crimes in Cremona begin to\ + \ escalate, from stealthy executions of wrongdoers to sophisticated strikes on public figures, it soon becomes clear\ + \ that there is more than one person responsible.\n\nWith the help of his impulsive sidekick Lily Hoshina, and unexpected\ + \ aid from the elusive Killer B himself, Keith begins to unravel plots involving secret organizations, domestic terrorism,\ + \ and human experiments. When the involvement of the RIS extends beyond the scope of justice, the extent of the government's\ + \ corruption—as well as the trustworthiness of close allies—are thrown into question. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 34279 + url: https://myanimelist.net/anime/34279/Grancrest_Senki + images: + jpg: + image_url: https://myanimelist.net/images/anime/4/89883.jpg + small_image_url: https://myanimelist.net/images/anime/4/89883t.jpg + large_image_url: https://myanimelist.net/images/anime/4/89883l.jpg + webp: + image_url: https://myanimelist.net/images/anime/4/89883.webp + small_image_url: https://myanimelist.net/images/anime/4/89883t.webp + large_image_url: https://myanimelist.net/images/anime/4/89883l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S-HBLiUdH1k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Grancrest Senki + - type: Japanese + title: グランクレスト戦記 + - type: English + title: Record of Grancrest War + - type: German + title: Record of Grancrest War + - type: Spanish + title: Record of Grancrest War + - type: French + title: Record of Grancrest War + title: Grancrest Senki + title_english: Record of Grancrest War + title_japanese: グランクレスト戦記 + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-01-06T00:00:00+00:00' + to: '2018-06-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2018 + to: + day: 23 + month: 6 + year: 2018 + string: Jan 6, 2018 to Jun 23, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.23 + scored_by: 144897 + rank: 3754 + popularity: 794 + members: 347869 + favorites: 1456 + synopsis: "The continent of Atlatan once again finds itself devoured by the flames of war after a horrific event known\ + \ as the Great Hall Tragedy. What was supposed to be a joyful occasion that would establish peace between the Fantasia\ + \ Union and the Factory Alliance, the marriage of Sir Alexis Douse and Lady Marrine Kreische, was instead a tragedy.\ + \ As the bride and groom walked down the aisle, the ceremony was suddenly interrupted by a powerful convergence of\ + \ \"Chaos,\" a dark energy from another dimension that corrupts the land and brings forth monsters and demons into\ + \ the world. From within that energy appeared the Demon Lord of Diabolos, an evil being who instantly murdered the\ + \ archdukes of both factions, shattering any hope for peace between them.\n \nHaving failed to prevent this disaster,\ + \ Siluca Meletes, an Alliance mage, is traveling through the Chaos-infested countryside to study under a master magician.\ + \ When she is intercepted by a group of soldiers working with the Federation, Siluca is rescued by Theo Cornaro, a\ + \ young warrior carrying a mysterious \"Crest,\" a magical symbol that gives its wielder the ability to banish Chaos.\ + \ Bearing no allegiance to a specific domain, Theo hopes to attain the rank of Lord so that he can liberate his home\ + \ town of Sistina from its tyrannical ruler and the Chaos spreading within it. Impressed by his noble goal, Siluca\ + \ enters into a magical contract with Theo, and the two embark on a journey to restore balance to their war-torn land.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2018 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1653 + type: anime + name: Kinoshita Group Holdings + url: https://myanimelist.net/anime/producer/1653/Kinoshita_Group_Holdings + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1788 + type: anime + name: Cromea + url: https://myanimelist.net/anime/producer/1788/Cromea + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 34984 + url: https://myanimelist.net/anime/34984/Koi_wa_Ameagari_no_You_ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/1271/90136.jpg + small_image_url: https://myanimelist.net/images/anime/1271/90136t.jpg + large_image_url: https://myanimelist.net/images/anime/1271/90136l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1271/90136.webp + small_image_url: https://myanimelist.net/images/anime/1271/90136t.webp + large_image_url: https://myanimelist.net/images/anime/1271/90136l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EHLYugCBtjs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koi wa Ameagari no You ni + - type: Synonym + title: Koi wa Amaagari no You ni + - type: Synonym + title: Love is Like after the Rain + - type: Synonym + title: KoiAme + - type: Japanese + title: 恋は雨上がりのように + - type: English + title: After the Rain + - type: German + title: After the Rain + - type: Spanish + title: Después de la Lluvia + - type: French + title: Après la Pluie + title: Koi wa Ameagari no You ni + title_english: After the Rain + title_japanese: 恋は雨上がりのように + title_synonyms: + - Koi wa Amaagari no You ni + - Love is Like after the Rain + - KoiAme + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-12T00:00:00+00:00' + to: '2018-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2018 + to: + day: 30 + month: 3 + year: 2018 + string: Jan 12, 2018 to Mar 30, 2018 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 136517 + rank: 2377 + popularity: 828 + members: 338206 + favorites: 1739 + synopsis: |- + Akira Tachibana, a reserved high school student and former track runner, has not been able to race the same as she used to since she experienced a severe foot injury. And although she is regarded as attractive by her classmates, she is not interested in the boys around school. + + While working part-time at the Garden Cafe, Akira begins to develop feelings for the manager—a 45-year-old man named Masami Kondou—despite the large age gap. Kondou shows genuine concern and kindness toward the customers of his restaurant, which, while viewed by others as soft or weak, draws Akira to him. Spending time together at the restaurant, they grow closer, which only strengthens her feelings. Weighed down by these uncertain emotions, Akira finally resolves to confess, but what will be the result? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 34944 + url: https://myanimelist.net/anime/34944/Bungou_Stray_Dogs__Dead_Apple + images: + jpg: + image_url: https://myanimelist.net/images/anime/1127/93981.jpg + small_image_url: https://myanimelist.net/images/anime/1127/93981t.jpg + large_image_url: https://myanimelist.net/images/anime/1127/93981l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1127/93981.webp + small_image_url: https://myanimelist.net/images/anime/1127/93981t.webp + large_image_url: https://myanimelist.net/images/anime/1127/93981l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6ySfGSAbNc0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bungou Stray Dogs: Dead Apple' + - type: Japanese + title: 文豪ストレイドッグス DEAD APPLE + - type: English + title: 'Bungo Stray Dogs: Dead Apple' + - type: German + title: 'Bungo Stray Dogs: Dead Apple' + title: 'Bungou Stray Dogs: Dead Apple' + title_english: 'Bungo Stray Dogs: Dead Apple' + title_japanese: 文豪ストレイドッグス DEAD APPLE + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-03-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 3 + year: 2018 + to: + day: null + month: null + year: null + string: Mar 3, 2018 + duration: 1 hr 30 min + rating: R - 17+ (violence & profanity) + score: 7.91 + scored_by: 178778 + rank: 904 + popularity: 896 + members: 315103 + favorites: 1972 + synopsis: "A large-scale catastrophe is occurring across the planet. Ability users are discovered after the appearance\ + \ of a mysterious fog, apparently having committed suicide, so the Armed Detective Agency sets out to investigate\ + \ these mysterious deaths. The case seems to involve an unknown ability user referred to as \"Collector,\" a man who\ + \ could be the mastermind behind the incident.\n\nTrust and courage are put to the test in order to save the city\ + \ of Yokohama and ability users across the world from the grip of Collector where the Armed Detective Agency forms\ + \ an unlikely partnership with the dangerous Port Mafia. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 35608 + url: https://myanimelist.net/anime/35608/Chuunibyou_demo_Koi_ga_Shitai_Movie__Take_On_Me + images: + jpg: + image_url: https://myanimelist.net/images/anime/2/89974.jpg + small_image_url: https://myanimelist.net/images/anime/2/89974t.jpg + large_image_url: https://myanimelist.net/images/anime/2/89974l.jpg + webp: + image_url: https://myanimelist.net/images/anime/2/89974.webp + small_image_url: https://myanimelist.net/images/anime/2/89974t.webp + large_image_url: https://myanimelist.net/images/anime/2/89974l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HEe7QMGGrMw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Chuunibyou demo Koi ga Shitai! Movie: Take On Me' + - type: Synonym + title: Eiga Chuunibyou demo Koi ga Shitai! Take On Me + - type: Japanese + title: 映画 中二病でも恋がしたい!-Take On Me- + - type: English + title: 'Love, Chunibyo & Other Delusions!: Take On Me' + - type: German + title: Love, Chunibyo & Other Delusions! Take On Me + title: 'Chuunibyou demo Koi ga Shitai! Movie: Take On Me' + title_english: 'Love, Chunibyo & Other Delusions!: Take On Me' + title_japanese: 映画 中二病でも恋がしたい!-Take On Me- + title_synonyms: + - Eiga Chuunibyou demo Koi ga Shitai! Take On Me + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-01-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 1 + year: 2018 + to: + day: null + month: null + year: null + string: Jan 6, 2018 + duration: 1 hr 33 min + rating: PG-13 - Teens 13 or older + score: 8.1 + scored_by: 164086 + rank: 593 + popularity: 927 + members: 303433 + favorites: 1732 + synopsis: |- + Although already a third-year high school student, Rikka Takanashi remains a chuunibyou—a "disease" that causes people to fantasize about themselves and their surroundings. Her relationship with Yuuta Togashi has also gone unchanged for the past six months, and with entrance exams right around the corner, both of them strive to enroll at the same college. However, Tooka—Rikka's elder sister—decides to take Rikka to Italy as she has found a stable job there. This unforeseen turn of events causes a commotion between the couple as neither of them want to be separated from each other. Desperate for ideas, they seek assistance from their friends, and after a brief conversation, they come up with a plan—to elope. + + Chuunibyou demo Koi ga Shitai! Movie: Take On Me is a sensational drama featuring the couple—Yuuta and Rikka—as they journey across Japan. The two attempt to prevent Rikka from being taken to Italy, but will they be able to succeed in doing so? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 36838 + url: https://myanimelist.net/anime/36838/Gintama_Shirogane_no_Tamashii-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/89603.jpg + small_image_url: https://myanimelist.net/images/anime/12/89603t.jpg + large_image_url: https://myanimelist.net/images/anime/12/89603l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/89603.webp + small_image_url: https://myanimelist.net/images/anime/12/89603t.webp + large_image_url: https://myanimelist.net/images/anime/12/89603l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vcb-D3FlaCg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama. Shirogane no Tamashii-hen + - type: Japanese + title: 銀魂. 銀ノ魂篇 + - type: English + title: Gintama. Silver Soul Arc + title: Gintama. Shirogane no Tamashii-hen + title_english: Gintama. Silver Soul Arc + title_japanese: 銀魂. 銀ノ魂篇 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-08T00:00:00+00:00' + to: '2018-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2018 + to: + day: 26 + month: 3 + year: 2018 + string: Jan 8, 2018 to Mar 26, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.81 + scored_by: 116421 + rank: 38 + popularity: 1190 + members: 238369 + favorites: 1235 + synopsis: "After the fierce battle on Rakuyou, the untold past and true goal of the immortal Naraku leader, Utsuro,\ + \ are finally revealed. By corrupting the Altana reserves of several planets, Utsuro has successfully triggered the\ + \ intervention of the Tendoshuu’s greatest enemy: the Altana Liberation Army. With Earth as the main battleground\ + \ in this interplanetary war, Utsuro's master plan to destroy the planet—and himself—is nearly complete. \n\nAn attack\ + \ on the O-Edo Central Terminal marks the beginning of the final battle to take back the land of the samurai. With\ + \ the Yorozuya nowhere in sight, the bakufu all but collapsed, and the Shogun missing, the people are left completely\ + \ helpless as the Liberation Army begins pillaging Edo in the name of freeing them from the Tendoshuu's rule. \n\n\ + Caught in the crossfire between two equally imposing forces, can Gintoki, Kagura, Shinpachi, and the former students\ + \ of Shouyou Yoshida put aside their differences and unite their allies to protect what they hold dear?\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: winter + year: 2018 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33047 + url: https://myanimelist.net/anime/33047/Fate_Extra__Last_Encore + images: + jpg: + image_url: https://myanimelist.net/images/anime/1122/90836.jpg + small_image_url: https://myanimelist.net/images/anime/1122/90836t.jpg + large_image_url: https://myanimelist.net/images/anime/1122/90836l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1122/90836.webp + small_image_url: https://myanimelist.net/images/anime/1122/90836t.webp + large_image_url: https://myanimelist.net/images/anime/1122/90836l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PdXv5a5YMi4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/Extra: Last Encore' + - type: Japanese + title: Fate/EXTRA Last Encore + - type: English + title: 'Fate/Extra: Last Encore' + title: 'Fate/Extra: Last Encore' + title_english: 'Fate/Extra: Last Encore' + title_japanese: Fate/EXTRA Last Encore + title_synonyms: [] + type: TV + source: Game + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-01-28T00:00:00+00:00' + to: '2018-04-01T00:00:00+00:00' + prop: + from: + day: 28 + month: 1 + year: 2018 + to: + day: 1 + month: 4 + year: 2018 + string: Jan 28, 2018 to Apr 1, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.31 + scored_by: 107287 + rank: 9295 + popularity: 1197 + members: 237043 + favorites: 501 + synopsis: |- + A technological hell masquerading as paradise, Tsukimihara Academy is an artificial high school that serves as the setting for the next Holy Grail War. Created by the Moon Cell computer, the school is inhabited by Earth-projected souls who have even the slightest aptitude for being a "Master." Of these 256 souls, 128 will be chosen for the main tournament and granted a Servant. With all of the Masters selected, the Academy activates a purge, targeting the remaining lifeforms for elimination. + + Awakening in a pool of his own blood, Hakuno Kishinami refuses to die. Fueled by unknown feelings of hatred, he vows to fight for survival. As he struggles to escape from a relentless pursuer, he finds a crimson blade plunged into the ground; and by pulling it out, Hakuno summons his own Servant, Saber, who instantly destroys his pursuer in a flurry of rose petals. With his newfound power, Hakuno must now begin his journey to Moon Cell's core, the Angelica Cage. There, he will unveil the reason for this artificial world and the secrets of his own blood-soaked past. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + licensors: [] + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35330 + url: https://myanimelist.net/anime/35330/Poputepipikku + images: + jpg: + image_url: https://myanimelist.net/images/anime/3/88816.jpg + small_image_url: https://myanimelist.net/images/anime/3/88816t.jpg + large_image_url: https://myanimelist.net/images/anime/3/88816l.jpg + webp: + image_url: https://myanimelist.net/images/anime/3/88816.webp + small_image_url: https://myanimelist.net/images/anime/3/88816t.webp + large_image_url: https://myanimelist.net/images/anime/3/88816l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/otfYAvJzoRE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Poputepipikku + - type: Synonym + title: PPTP + - type: Synonym + title: Poptepipic + - type: Japanese + title: ポプテピピック + - type: English + title: Pop Team Epic + - type: German + title: Pop Team Epic + - type: Spanish + title: Pop Team Epic + - type: French + title: Pop Team Epic + title: Poputepipikku + title_english: Pop Team Epic + title_japanese: ポプテピピック + title_synonyms: + - PPTP + - Poptepipic + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-07T00:00:00+00:00' + to: '2018-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2018 + to: + day: 25 + month: 3 + year: 2018 + string: Jan 7, 2018 to Mar 25, 2018 + duration: 11 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 114873 + rank: 3296 + popularity: 1202 + members: 235788 + favorites: 1452 + synopsis: |- + Poputepipikku turns absurdist comedy up to eleven with its pop culture references and surreal hilarity. With two bonafide high school girl protagonists—the short and exceptionally quick to anger Popuko, and the tall and unshakably calm Pipimi—they throw genres against the wall and don't wait to see what sticks. Parody is interlaced with drama, action, crudeness, and the show's overarching goal—to become a real anime. + + [Written by MAL Rewrite] + background: Poputepipikku is based on bkub Ookawa's 4-koma manga series of the same title. Each episode consists of + a 12-minute segment repeated twice. The repeated segment contains a different voiceover by another voice actor with + variations on the skits. A remixed rerun titled Pop Team Epic Repeat, which mixes up the voice actors from the original + run, began airing from October 9, 2021 and is being simulcast by Crunchyroll. It also features re-recorded versions + of the AC-BU segments and Japanese dubs of the Japon Mignon segments. There are also visual differences in the Repeat + version. + season: winter + year: 2018 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 2272 + type: anime + name: AC-Bu + url: https://myanimelist.net/anime/producer/2272/AC-Bu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 437 + type: anime + name: Kamikaze Douga + url: https://myanimelist.net/anime/producer/437/Kamikaze_Douga + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 35905 + url: https://myanimelist.net/anime/35905/Ryuuou_no_Oshigoto + images: + jpg: + image_url: https://myanimelist.net/images/anime/12/89979.jpg + small_image_url: https://myanimelist.net/images/anime/12/89979t.jpg + large_image_url: https://myanimelist.net/images/anime/12/89979l.jpg + webp: + image_url: https://myanimelist.net/images/anime/12/89979.webp + small_image_url: https://myanimelist.net/images/anime/12/89979t.webp + large_image_url: https://myanimelist.net/images/anime/12/89979l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jrqE_yU4FKI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ryuuou no Oshigoto! + - type: Japanese + title: りゅうおうのおしごと! + - type: English + title: The Ryuo's Work is Never Done! + - type: German + title: The Ryuo's Work is Never Done! + - type: Spanish + title: The Ryuo's Work Is Never Done! + - type: French + title: The Ryuo's Work is Never Done! + title: Ryuuou no Oshigoto! + title_english: The Ryuo's Work is Never Done! + title_japanese: りゅうおうのおしごと! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-08T00:00:00+00:00' + to: '2018-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2018 + to: + day: 26 + month: 3 + year: 2018 + string: Jan 8, 2018 to Mar 26, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.83 + scored_by: 89630 + rank: 6115 + popularity: 1339 + members: 209245 + favorites: 360 + synopsis: |- + Shogi, a Japanese game similar to chess, is one of the most popular board games in the country, played by everyone from children to the elderly. Some players are talented enough to take the game to a professional level. The title of Ryuuou, meaning "the dragon king," is only awarded to the person who reaches the pinnacle of competitive shogi. + + Yaichi Kuzuryuu has just become the youngest Ryuuou after winning the grand championship. However, the shogi community is unwelcoming to his victory, some even calling him the worst Ryuuou in history. Moreover, he forgets about the agreement he made with Ai Hinatsuru, a little girl he promised to coach if he won. After she shows up at his doorstep, he reluctantly agrees to uphold his promise and makes Ai his disciple. + + Together, they aim to improve and exceed the limits of their shogi prowess: Ai, to unlock her hidden talents; Yaichi, to prove to the world that he deserves his accomplishments. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1631 + type: anime + name: Radio Osaka + url: https://myanimelist.net/anime/producer/1631/Radio_Osaka + - mal_id: 1801 + type: anime + name: Aquamarine + url: https://myanimelist.net/anime/producer/1801/Aquamarine + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: [] + - mal_id: 34964 + url: https://myanimelist.net/anime/34964/Killing_Bites + images: + jpg: + image_url: https://myanimelist.net/images/anime/13/90087.jpg + small_image_url: https://myanimelist.net/images/anime/13/90087t.jpg + large_image_url: https://myanimelist.net/images/anime/13/90087l.jpg + webp: + image_url: https://myanimelist.net/images/anime/13/90087.webp + small_image_url: https://myanimelist.net/images/anime/13/90087t.webp + large_image_url: https://myanimelist.net/images/anime/13/90087l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gykjd18qxAI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Killing Bites + - type: Japanese + title: キリングバイツ + - type: English + title: Killing Bites + - type: Spanish + title: Bocados Mortales + title: Killing Bites + title_english: Killing Bites + title_japanese: キリングバイツ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-13T00:00:00+00:00' + to: '2018-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2018 + to: + day: 31 + month: 3 + year: 2018 + string: Jan 13, 2018 to Mar 31, 2018 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.56 + scored_by: 87632 + rank: 7785 + popularity: 1349 + members: 207728 + favorites: 487 + synopsis: |- + After unknowingly participating in a kidnapping, college student Yuuya Nomoto finds his friends brutally murdered by Hitomi Uzaki, the high school girl they attempted to abduct. Forced to drive her to an undisclosed location, he finds himself being wagered as the prize for a death match between two Therianthropes, superpowered human-animal hybrids created through advanced gene therapy. As one of these hybrids, Hitomi uses the speed and fearlessness she gained from her ratel genes to viciously dispatch her foe and save Yuuya from certain death. + + Waking up hours later hoping the whole event was only a nightmare, Yuuya realizes that he has become embroiled in a secret proxy war between four large Japanese business conglomerates, with the winner taking control of the economy. As her sole albeit unwilling investor, his life is now directly linked to Hitomi's ability to participate in underground bloodsport matches known only as Killing Bites. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2018 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1787 + type: anime + name: KLab + url: https://myanimelist.net/anime/producer/1787/KLab + - mal_id: 2223 + type: anime + name: Christmas Holly + url: https://myanimelist.net/anime/producer/2223/Christmas_Holly + - mal_id: 2225 + type: anime + name: C-one + url: https://myanimelist.net/anime/producer/2225/C-one + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36124 + url: https://myanimelist.net/anime/36124/Itou_Junji__Collection + images: + jpg: + image_url: https://myanimelist.net/images/anime/7/88366.jpg + small_image_url: https://myanimelist.net/images/anime/7/88366t.jpg + large_image_url: https://myanimelist.net/images/anime/7/88366l.jpg + webp: + image_url: https://myanimelist.net/images/anime/7/88366.webp + small_image_url: https://myanimelist.net/images/anime/7/88366t.webp + large_image_url: https://myanimelist.net/images/anime/7/88366l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UMNcx1Z2BPo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Itou Junji: Collection' + - type: Japanese + title: 伊藤潤二「コレクション」 + - type: English + title: Junji Ito Collection + - type: German + title: Junji Ito Collection + - type: Spanish + title: Junji Ito Collection + - type: French + title: Junji Ito Collection + title: 'Itou Junji: Collection' + title_english: Junji Ito Collection + title_japanese: 伊藤潤二「コレクション」 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-01-05T00:00:00+00:00' + to: '2018-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2018 + to: + day: 23 + month: 3 + year: 2018 + string: Jan 5, 2018 to Mar 23, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.59 + scored_by: 92562 + rank: 7598 + popularity: 1376 + members: 203684 + favorites: 1250 + synopsis: |- + In the light of day and in the dead of night, mysterious horrors await in the darkest shadows of every corner. They are unexplainable, inescapable, and undefeatable. Be prepared, or you may become their next victim. + + Sit back in terror as traumatizing tales of unparalleled terror unfold. Tales, such as that of a cursed jade carving that opens holes all over its victims' bodies; deep nightmares that span decades; an attractive spirit at a misty crossroad that grants cursed advice; and a slug that grows inside a girl's mouth. Tread carefully, for the horrifying supernatural tales of the Itou Junji: Collection are not for the faint of heart. + + [Written by MAL Rewrite] + background: 'Itou Junji: Collection is collection of animated based on the works of Japanese artist Junji Itou.' + season: winter + year: 2018 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1318 + type: anime + name: Asahi Shimbun + url: https://myanimelist.net/anime/producer/1318/Asahi_Shimbun + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + - mal_id: 1647 + type: anime + name: SMIRAL Animation + url: https://myanimelist.net/anime/producer/1647/SMIRAL_Animation + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 2699 + type: anime + name: Asahi Shinbun Shuppan + url: https://myanimelist.net/anime/producer/2699/Asahi_Shinbun_Shuppan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/34-2018-spring.yaml b/test/fixtures/jikan/season_matrix/34-2018-spring.yaml new file mode 100644 index 0000000..5e2a3ec --- /dev/null +++ b/test/fixtures/jikan/season_matrix/34-2018-spring.yaml @@ -0,0 +1,3337 @@ +metadata: + captured_at: '2026-05-11T11:33:52Z' + label: 2018-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2018/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:51 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:a4d7c59a49ec76d815ee7eb73b91489d8ca15a38 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 265 + per_page: 25 + data: + - mal_id: 36456 + url: https://myanimelist.net/anime/36456/Boku_no_Hero_Academia_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1319/92084.jpg + small_image_url: https://myanimelist.net/images/anime/1319/92084t.jpg + large_image_url: https://myanimelist.net/images/anime/1319/92084l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1319/92084.webp + small_image_url: https://myanimelist.net/images/anime/1319/92084t.webp + large_image_url: https://myanimelist.net/images/anime/1319/92084l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wMCeFIPwrHE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 3rd Season + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia Season 3 + - type: German + title: My Hero Academia 3. Staffel + - type: Spanish + title: My Hero Academia Temporada 3 + - type: French + title: My Hero Academia Saison 3 + title: Boku no Hero Academia 3rd Season + title_english: My Hero Academia Season 3 + title_japanese: 僕のヒーローアカデミア + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2018-04-07T00:00:00+00:00' + to: '2018-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2018 + to: + day: 29 + month: 9 + year: 2018 + string: Apr 7, 2018 to Sep 29, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 1560418 + rank: 776 + popularity: 25 + members: 2382533 + favorites: 12463 + synopsis: "As summer arrives for the students at UA Academy, each of these superheroes-in-training puts in their best\ + \ efforts to become renowned heroes. They head off to a forest training camp run by UA's pro heroes, where the students\ + \ face one another in battle and go through dangerous tests, improving their abilities and pushing past their limits.\ + \ However, their school trip is suddenly turned upside down when the League of Villains arrives, invading the camp\ + \ with a mission to capture one of the students. \n\nBoku no Hero Academia 3rd Season follows Izuku \"Deku\" Midoriya,\ + \ an ambitious student training to achieve his dream of becoming a hero similar to his role model—All Might. Being\ + \ one of the students caught up amidst the chaos of the villain attack, Deku must take a stand with his classmates\ + \ and fight for their survival.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36511 + url: https://myanimelist.net/anime/36511/Tokyo_Ghoul_re + images: + jpg: + image_url: https://myanimelist.net/images/anime/1063/95086.jpg + small_image_url: https://myanimelist.net/images/anime/1063/95086t.jpg + large_image_url: https://myanimelist.net/images/anime/1063/95086l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1063/95086.webp + small_image_url: https://myanimelist.net/images/anime/1063/95086t.webp + large_image_url: https://myanimelist.net/images/anime/1063/95086l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dZ36ToJLHtA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Ghoul:re + - type: Synonym + title: Tokyo Kushu:re + - type: Synonym + title: Toukyou Kuushu:re + - type: Japanese + title: 東京喰種トーキョーグール:re + - type: English + title: Tokyo Ghoul:re + - type: German + title: 'Tokyo Ghoul: re' + - type: Spanish + title: 'Tokyo Ghoul: re' + title: Tokyo Ghoul:re + title_english: Tokyo Ghoul:re + title_japanese: 東京喰種トーキョーグール:re + title_synonyms: + - Tokyo Kushu:re + - Toukyou Kuushu:re + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-03T00:00:00+00:00' + to: '2018-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2018 + to: + day: 19 + month: 6 + year: 2018 + string: Apr 3, 2018 to Jun 19, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.37 + scored_by: 774088 + rank: 8975 + popularity: 122 + members: 1305331 + favorites: 4135 + synopsis: |- + Two years have passed since the CCG's raid on Anteiku. Although the atmosphere in Tokyo has changed drastically due to the increased influence of the CCG, ghouls continue to pose a problem as they have begun taking caution, especially the terrorist organization Aogiri Tree, who acknowledge the CCG's growing threat to their existence. + + The creation of a special team, known as the Quinx Squad, may provide the CCG with the push they need to exterminate Tokyo's unwanted residents. As humans who have undergone surgery in order to make use of the special abilities of ghouls, they participate in operations to eradicate the dangerous creatures. The leader of this group, Haise Sasaki, is a half-ghoul, half-human who has been trained by famed special class investigator, Kishou Arima. However, there's more to this young man than meets the eye, as unknown memories claw at his mind, slowly reminding him of the person he used to be. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 1129 + type: anime + name: Pierrot Plus + url: https://myanimelist.net/anime/producer/1129/Pierrot_Plus + - mal_id: 1283 + type: anime + name: TC Entertainment + url: https://myanimelist.net/anime/producer/1283/TC_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 35968 + url: https://myanimelist.net/anime/35968/Wotaku_ni_Koi_wa_Muzukashii + images: + jpg: + image_url: https://myanimelist.net/images/anime/1864/93518.jpg + small_image_url: https://myanimelist.net/images/anime/1864/93518t.jpg + large_image_url: https://myanimelist.net/images/anime/1864/93518l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1864/93518.webp + small_image_url: https://myanimelist.net/images/anime/1864/93518t.webp + large_image_url: https://myanimelist.net/images/anime/1864/93518l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Tcdi6w_I0cE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Wotaku ni Koi wa Muzukashii + - type: Synonym + title: It's Difficult to Love an Otaku + - type: Japanese + title: ヲタクに恋は難しい + - type: English + title: 'Wotakoi: Love is Hard for Otaku' + title: Wotaku ni Koi wa Muzukashii + title_english: 'Wotakoi: Love is Hard for Otaku' + title_japanese: ヲタクに恋は難しい + title_synonyms: + - It's Difficult to Love an Otaku + type: TV + source: Web manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2018-04-13T00:00:00+00:00' + to: '2018-06-22T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2018 + to: + day: 22 + month: 6 + year: 2018 + string: Apr 13, 2018 to Jun 22, 2018 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.92 + scored_by: 583617 + rank: 900 + popularity: 166 + members: 1102159 + favorites: 12485 + synopsis: "Having slept through all four of her alarms, the energetic Narumi Momose finds herself running late for her\ + \ first day of work at a new office. As she races to catch her train, she makes a promise to herself that none of\ + \ her coworkers will find out about her dark secret: that she is an otaku and a fujoshi. Her plan goes instantly awry,\ + \ though, when she runs into Hirotaka Nifuji, an old friend from middle school. Although she tries to keep her secret\ + \ by inviting him out for drinks after work, her cover is blown when he casually asks her whether or not she will\ + \ be attending the upcoming Summer Comiket. Luckily for her, the only witnesses—Hanako Koyanagi and Tarou Kabakura—are\ + \ otaku as well.\n \nLater that night, the pair go out for drinks so that they can catch up after all the\ + \ years apart. After Narumi complains about her previous boyfriend breaking up with her because he refused to date\ + \ a fujoshi, Hirotaka suggests that she try dating a fellow otaku, specifically himself. He makes a solemn promise\ + \ to always be there for her, to support her, and to help her farm for rare drops in Monster Hunter. Blown away by\ + \ the proposal, Narumi agrees immediately. Thus the two otaku start dating, and their adorably awkward romance begins.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 2223 + type: anime + name: Christmas Holly + url: https://myanimelist.net/anime/producer/2223/Christmas_Holly + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 30484 + url: https://myanimelist.net/anime/30484/Steins_Gate_0 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1375/93521.jpg + small_image_url: https://myanimelist.net/images/anime/1375/93521t.jpg + large_image_url: https://myanimelist.net/images/anime/1375/93521l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1375/93521.webp + small_image_url: https://myanimelist.net/images/anime/1375/93521t.webp + large_image_url: https://myanimelist.net/images/anime/1375/93521l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NhExBlBnmQI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Steins;Gate 0 + - type: Synonym + title: Steins,Gate Zero + - type: Japanese + title: シュタインズ・ゲート ゼロ + - type: English + title: Steins;Gate 0 + title: Steins;Gate 0 + title_english: Steins;Gate 0 + title_japanese: シュタインズ・ゲート ゼロ + title_synonyms: + - Steins,Gate Zero + type: TV + source: Visual novel + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2018-04-12T00:00:00+00:00' + to: '2018-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2018 + to: + day: 27 + month: 9 + year: 2018 + string: Apr 12, 2018 to Sep 27, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.55 + scored_by: 474817 + rank: 137 + popularity: 207 + members: 956013 + favorites: 12847 + synopsis: "The eccentric, self-proclaimed mad scientist Rintarou Okabe has become a shell of his former self. Depressed\ + \ and traumatized after failing to rescue his friend Makise Kurisu, he has decided to forsake his mad scientist alter\ + \ ego and live as an ordinary college student. Surrounded by friends who know little of his time travel experiences,\ + \ Okabe spends his days trying to forget the horrors of his adventures alone. \n\nWhile working as a receptionist\ + \ at a college technology forum, Okabe meets the short, spunky Maho Hiyajo, who \nlater turns out to be the interpreter\ + \ at the forum's presentation, conducted by Professor Alexis Leskinen. In front of a stunned crowd, Alexis and Maho\ + \ unveil Amadeus—a revolutionary AI capable of storing a person's memories and creating a perfect simulation of that\ + \ person complete with their personality and quirks. Meeting with Maho and Alexis after the presentation, Okabe learns\ + \ that the two were Kurisu's colleagues in university, and that they have simulated her in Amadeus. Hired by Alexis\ + \ to research the simulation's behavior, Okabe is given the chance to interact with the shadow of a long-lost dear\ + \ friend. Dangerously tangled in the past, Okabe must face the harsh reality and carefully maneuver around the disastrous\ + \ consequences that come with disturbing the natural flow of time.\n\n[Written by MAL Rewrite]" + background: The Steins;Gate 0 anime partially adapts and continues the story of the visual novel of the same name. The + anime is considered to be the final iteration of the Steins;Gate 0 story. + season: spring + year: 2018 + broadcast: + day: Thursdays + time: 01:35 + timezone: Asia/Tokyo + string: Thursdays at 01:35 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 36949 + url: https://myanimelist.net/anime/36949/Shokugeki_no_Souma__San_no_Sara_-_Tootsuki_Ressha-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1604/93531.jpg + small_image_url: https://myanimelist.net/images/anime/1604/93531t.jpg + large_image_url: https://myanimelist.net/images/anime/1604/93531l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1604/93531.webp + small_image_url: https://myanimelist.net/images/anime/1604/93531t.webp + large_image_url: https://myanimelist.net/images/anime/1604/93531l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8uEl3f8On1U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen' + - type: Synonym + title: Shokugeki no Soma 4th Season + - type: Synonym + title: Food Wars! The Third Plate 2nd cour + - type: Synonym + title: 'Shokugeki no Souma: San no Sara (2018)' + - type: Japanese + title: 食戟のソーマ 餐ノ皿 遠月列車篇 + - type: English + title: 'Food Wars! The Third Plate: Totsuki Train Arc' + - type: German + title: Food Wars! The Third Plate Teil 2 + - type: Spanish + title: 'Food Wars (Shokugeki no Soma): The Third Plate Parte 2' + - type: French + title: Food Wars! The Third Plate Partie 2 + title: 'Shokugeki no Souma: San no Sara - Tootsuki Ressha-hen' + title_english: 'Food Wars! The Third Plate: Totsuki Train Arc' + title_japanese: 食戟のソーマ 餐ノ皿 遠月列車篇 + title_synonyms: + - Shokugeki no Soma 4th Season + - Food Wars! The Third Plate 2nd cour + - 'Shokugeki no Souma: San no Sara (2018)' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-09T00:00:00+00:00' + to: '2018-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2018 + to: + day: 25 + month: 6 + year: 2018 + string: Apr 9, 2018 to Jun 25, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 460108 + rank: 881 + popularity: 300 + members: 774834 + favorites: 1415 + synopsis: |- + A dark age of cooking befalls Tootsuki Culinary Academy. With the Elite Ten's devastating coup d'état, Azami Nakiri is now the director of the prestigious school. Students must now conform to Azami's ideology of "true gourmet food" and are forbidden to express creativity, or else face expulsion. + + However, Souma Yukihira and the members of the Polar Star Dormitory refuse to accept these changes. Aided by other rebellious first-years, including the tenth seat, Erina Nakiri, Souma and his allies band together to fight off supporters of Azami's regime. But corrupt instructors and the menacing Central organization stand in their way, and so they must work together, harder than ever before, to survive every underhanded plot designed to banish them from the school. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36475 + url: https://myanimelist.net/anime/36475/Sword_Art_Online_Alternative__Gun_Gale_Online + images: + jpg: + image_url: https://myanimelist.net/images/anime/1141/93288.jpg + small_image_url: https://myanimelist.net/images/anime/1141/93288t.jpg + large_image_url: https://myanimelist.net/images/anime/1141/93288l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1141/93288.webp + small_image_url: https://myanimelist.net/images/anime/1141/93288t.webp + large_image_url: https://myanimelist.net/images/anime/1141/93288l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZoEtBn_6KOI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online Alternative: Gun Gale Online' + - type: Synonym + title: SAO Alternative Gun Gale Online + - type: Japanese + title: ソードアート・オンライン オルタナティブ ガンゲイル・オンライン + title: 'Sword Art Online Alternative: Gun Gale Online' + title_english: null + title_japanese: ソードアート・オンライン オルタナティブ ガンゲイル・オンライン + title_synonyms: + - SAO Alternative Gun Gale Online + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-08T00:00:00+00:00' + to: '2018-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2018 + to: + day: 1 + month: 7 + year: 2018 + string: Apr 8, 2018 to Jul 1, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 376860 + rank: 5112 + popularity: 361 + members: 675046 + favorites: 1645 + synopsis: "Clad in desert pink and the size of a mere child, the infamous \"Pink Devil\" mercilessly hunts down other\ + \ players in the firearm-centered world of the virtual reality game Gun Gale Online. But in real life, this feared\ + \ player killer is not quite who anyone would expect.\n \nA shy university student in Tokyo, Karen Kohiruimaki stands\ + \ in stark contrast to her in-game avatar—in fact, she happens to stand above everyone else too, much to her dismay.\ + \ Towering above all the people around her, Karen's insecurities over her height reach the point where she turns to\ + \ the virtual world for an escape. Starting game after game in hopes of manifesting as a cute, short character, she\ + \ finally obtains her ideal self in the world of Gun Gale Online. Overjoyed by her new persona, she pours her time\ + \ into the game as LLENN, garnering her reputation as the legendary player killer.\n \nHowever, when one of LLENN's\ + \ targets gets the best of her, she ends up meeting Pitohui, a skilled yet eccentric woman. Quickly becoming friends\ + \ with Karen, Pitohui insists that LLENN participates in Squad Jam, a battle royale that pits teams against one another,\ + \ fighting until only one remains. Thrust into the heated competition, LLENN must fight with all her wit and will\ + \ if she hopes to shoot her way to the top.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 34281 + url: https://myanimelist.net/anime/34281/High_School_DxD_Hero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1189/93528.jpg + small_image_url: https://myanimelist.net/images/anime/1189/93528t.jpg + large_image_url: https://myanimelist.net/images/anime/1189/93528l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1189/93528.webp + small_image_url: https://myanimelist.net/images/anime/1189/93528t.webp + large_image_url: https://myanimelist.net/images/anime/1189/93528l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qshTs9nTaxw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High School DxD Hero + - type: Synonym + title: High School DxD Season 4 + - type: Japanese + title: ハイスクールDxD HERO + - type: English + title: High School DxD Hero + - type: German + title: 'High School DXD: Hero' + title: High School DxD Hero + title_english: High School DxD Hero + title_japanese: ハイスクールDxD HERO + title_synonyms: + - High School DxD Season 4 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-17T00:00:00+00:00' + to: '2018-07-03T00:00:00+00:00' + prop: + from: + day: 17 + month: 4 + year: 2018 + to: + day: 3 + month: 7 + year: 2018 + string: Apr 17, 2018 to Jul 3, 2018 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.23 + scored_by: 305251 + rank: 3754 + popularity: 450 + members: 558427 + favorites: 2741 + synopsis: "After rescuing his master, Rias Gremory, from the Dimensional Gap, Red Dragon Emperor and aspiring Harem\ + \ King Issei Hyoudou can finally return to his high school activities alongside fellow members of the Occult Research\ + \ Club: Yuuto Kiba, Asia Argento, Xenovia Quarta, and Irina Shidou. The group soon embarks on a school trip to Kyoto.\ + \ \n\nWhile peacefully visiting a temple thanks to Rias' spell, an attacking group of local youkai breaks the calm\ + \ atmosphere. Once the altercation ends, the club learns that the mythical nine-tailed fox that protected the city\ + \ was abducted and that someone has framed them for the act. Issei and his friends will now have to fight to protect\ + \ the city and save their school trip from a planned disaster!\n\nIn the meantime, Rias, who had to stay in Tokyo\ + \ with Akeno Himejima and Koneko Toujou, grows increasingly restless to have left the perverted Issei alone with the\ + \ other girls of the Occult Research Club. Beyond this vague anxiety, what is the exact nature of the feelings Rias\ + \ has been struggling with for the past few months?\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 36296 + url: https://myanimelist.net/anime/36296/Hinamatsuri + images: + jpg: + image_url: https://myanimelist.net/images/anime/1580/93526.jpg + small_image_url: https://myanimelist.net/images/anime/1580/93526t.jpg + large_image_url: https://myanimelist.net/images/anime/1580/93526l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1580/93526.webp + small_image_url: https://myanimelist.net/images/anime/1580/93526t.webp + large_image_url: https://myanimelist.net/images/anime/1580/93526l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1oTxGJcx04Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hinamatsuri + - type: Synonym + title: Hina Festival + - type: Japanese + title: ヒナまつり + - type: English + title: Hinamatsuri + - type: German + title: Hinamatsuri + - type: Spanish + title: Hinamatsuri + - type: French + title: Hinamatsuri + title: Hinamatsuri + title_english: Hinamatsuri + title_japanese: ヒナまつり + title_synonyms: + - Hina Festival + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-06T00:00:00+00:00' + to: '2018-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2018 + to: + day: 22 + month: 6 + year: 2018 + string: Apr 6, 2018 to Jun 22, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 269732 + rank: 580 + popularity: 454 + members: 555756 + favorites: 4699 + synopsis: "While reveling in the successful clinching of a prized vase for his collection, Yoshifumi Nitta, a yakuza\ + \ member, is rudely interrupted when a large, peculiar capsule suddenly materializes and falls on his head. He opens\ + \ the capsule to reveal a young, blue-haired girl, who doesn't divulge anything about herself but her name—Hina—and\ + \ the fact that she possesses immense powers. As if things couldn't get any worse, she loses control and unleashes\ + \ an explosion if her powers remain unused. Faced with no other choice, Nitta finds himself becoming her caregiver.\ + \ \n\nTo let her use her powers freely, Nitta asks Hina to help out with a construction deal, which goes smoothly.\ + \ But while this is happening, a rival yakuza group covertly attacks his boss. To Nitta's shock, his colleagues later\ + \ pin the blame on him! Tasked with attacking the rival group in retaliation, Nitta steels himself and arrives at\ + \ their hideout. But suddenly, Hina unexpectedly steps in and helps him wipe out the entire group. As it turns out,\ + \ Hina might just become a valuable asset to Nitta and his yakuza business, provided she does not use her powers on\ + \ him first! And so the strange life of this unusual duo begins.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2034 + type: anime + name: Akatsuki + url: https://myanimelist.net/anime/producer/2034/Akatsuki + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36563 + url: https://myanimelist.net/anime/36563/Megalo_Box + images: + jpg: + image_url: https://myanimelist.net/images/anime/1958/93533.jpg + small_image_url: https://myanimelist.net/images/anime/1958/93533t.jpg + large_image_url: https://myanimelist.net/images/anime/1958/93533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1958/93533.webp + small_image_url: https://myanimelist.net/images/anime/1958/93533t.webp + large_image_url: https://myanimelist.net/images/anime/1958/93533l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Trs1rCoLKLc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Megalo Box + - type: Japanese + title: メガロボクス + - type: English + title: Megalobox + - type: German + title: Megalobox + - type: Spanish + title: Megalobox + title: Megalo Box + title_english: Megalobox + title_japanese: メガロボクス + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-04-06T00:00:00+00:00' + to: '2018-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2018 + to: + day: 29 + month: 6 + year: 2018 + string: Apr 6, 2018 to Jun 29, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.88 + scored_by: 288225 + rank: 995 + popularity: 461 + members: 547109 + favorites: 3783 + synopsis: |- + "To be quiet and do as you're told, that's the cowardly choice." These are the words of Junk Dog, an underground fighter of Megalo Box, an evolution of boxing that utilizes mechanical limbs known as Gear to enhance the speed and power of its users. Despite the young man's brimming potential as a boxer, the illegal nature of his participation forces him to make a living off of throwing matches as dictated by his boss Gansaku Nanbu. However, this all changes when the Megalo Box champion Yuuri enters his shabby ring under the guise of just another challenger. Taken out in a single round, Junk Dog is left with a challenge: "If you're serious about fighting me again, then fight your way up to me and my ring." + + Filled with overwhelming excitement and backed by the criminal syndicate responsible for his thrown matches, Junk Dog enters Megalonia: a world-spanning tournament that will decide the strongest Megalo Boxer of them all. Having no name of his own, he takes on the moniker of "Joe" as he begins his climb from the very bottom of the ranked list of fighters. With only three months left to qualify, Joe must face off against opponents the likes of which he has never fought in order to meet the challenge of his rival. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + demographics: [] + - mal_id: 34443 + url: https://myanimelist.net/anime/34443/Baki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1979/93135.jpg + small_image_url: https://myanimelist.net/images/anime/1979/93135t.jpg + large_image_url: https://myanimelist.net/images/anime/1979/93135l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1979/93135.webp + small_image_url: https://myanimelist.net/images/anime/1979/93135t.webp + large_image_url: https://myanimelist.net/images/anime/1979/93135l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/00nwsWLCDv4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Baki + - type: Japanese + title: バキ + title: Baki + title_english: null + title_japanese: バキ + title_synonyms: [] + type: ONA + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2018-06-25T00:00:00+00:00' + to: '2018-12-17T00:00:00+00:00' + prop: + from: + day: 25 + month: 6 + year: 2018 + to: + day: 17 + month: 12 + year: 2018 + string: Jun 25, 2018 to Dec 17, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.31 + scored_by: 269657 + rank: 3211 + popularity: 544 + members: 480398 + favorites: 2863 + synopsis: |- + After emerging victorious from a brutal underground tournament, Baki Hanma continues on his path to defeat his father, Yuujirou, the strongest man in the world. However, he gets no time to rest when the tournament runner, Tokugawa Mitsunari, visits him at school. He reveals to Baki that five incredibly dangerous death row inmates from around the world—all skilled in martial arts—have simultaneously escaped confinement and are heading to Tokyo, each wishing to finally know the taste of defeat. Tokugawa warns that, due to his well-known strength, Baki is bound to encounter them sooner or later, and he will not be their only target. + + Adapting the first saga of the second manga series, Baki centers on the all-out war between the esteemed martial artists of Japan and those of the dark underground world. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36028 + url: https://myanimelist.net/anime/36028/Golden_Kamuy + images: + jpg: + image_url: https://myanimelist.net/images/anime/1145/90880.jpg + small_image_url: https://myanimelist.net/images/anime/1145/90880t.jpg + large_image_url: https://myanimelist.net/images/anime/1145/90880l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1145/90880.webp + small_image_url: https://myanimelist.net/images/anime/1145/90880t.webp + large_image_url: https://myanimelist.net/images/anime/1145/90880l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5olutLS6mdo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Golden Kamuy + - type: Japanese + title: ゴールデンカムイ + - type: English + title: Golden Kamuy + - type: French + title: Golden Kamui + title: Golden Kamuy + title_english: Golden Kamuy + title_japanese: ゴールデンカムイ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-09T00:00:00+00:00' + to: '2018-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2018 + to: + day: 25 + month: 6 + year: 2018 + string: Apr 9, 2018 to Jun 25, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.89 + scored_by: 188079 + rank: 959 + popularity: 576 + members: 458181 + favorites: 5295 + synopsis: |- + In early 1900s Hokkaido after the Russo-Japanese war, Saichi Sugimoto tirelessly pans for gold. Nicknamed "Sugimoto the Immortal" for his death-defying acts in battle, the ex-soldier seeks fortune in order to fulfill a promise made to his best friend before he was killed in action: to support his family, especially his widow who needs treatment overseas for her deteriorating eyesight. One day, a drunken companion tells Sugimoto the tale of a man who murdered a group of Ainu and stole a fortune in gold. Before his arrest by the police, he hid the gold somewhere in Hokkaido. The only clue to its location is the coded map he tattooed on the bodies of his cellmates in exchange for a share of the treasure, should they manage to escape and find it. + + Sugimoto does not think much of the tale until he discovers the drunken man's corpse bearing the same tattoos described in the story. But before he can collect his thoughts, a grizzly bear—the cause of the man's demise—approaches Sugimoto, intent on finishing her meal. He is saved by a young Ainu girl named Asirpa, whose father happened to be one of the murdered Ainu. With Asirpa's hunting skills and Sugimoto's survival instincts, the pair agree to join forces and find the hidden treasure—one to get back what was rightfully her people's, and the other to fulfill his friend's dying wish. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1393 + type: anime + name: Geno Studio + url: https://myanimelist.net/anime/producer/1393/Geno_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36793 + url: https://myanimelist.net/anime/36793/3D_Kanojo__Real_Girl + images: + jpg: + image_url: https://myanimelist.net/images/anime/1327/93616.jpg + small_image_url: https://myanimelist.net/images/anime/1327/93616t.jpg + large_image_url: https://myanimelist.net/images/anime/1327/93616l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1327/93616.webp + small_image_url: https://myanimelist.net/images/anime/1327/93616t.webp + large_image_url: https://myanimelist.net/images/anime/1327/93616l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NIHvbYdxdfo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '3D Kanojo: Real Girl' + - type: Synonym + title: 3D Girlfriend + - type: Japanese + title: 3D彼女 リアルガール + - type: English + title: Real Girl + title: '3D Kanojo: Real Girl' + title_english: Real Girl + title_japanese: 3D彼女 リアルガール + title_synonyms: + - 3D Girlfriend + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-04T00:00:00+00:00' + to: '2018-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2018 + to: + day: 20 + month: 6 + year: 2018 + string: Apr 4, 2018 to Jun 20, 2018 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 183924 + rank: 5843 + popularity: 735 + members: 374058 + favorites: 1668 + synopsis: "For Hikari Tsutsui, life within the two-dimensional realm is much simpler. Socially inept and awkward, he\ + \ immerses himself in video games and anime, only to be relentlessly ridiculed and ostracized by his classmates. Sharing\ + \ his misery is Yuuto Itou, his only friend, who wears cat ears and is equally obsessed with the world of games. \n\ + \nAfter being forced to clean the pool as punishment for arriving late, Tsutsui meets Iroha Igarashi, but he attempts\ + \ to steer clear of her, as her notoriety precedes her. Brazenly blunt, loathed by female classmates, and infamous\ + \ for messing around with boys, Tsutsui believes that getting involved with her would cause nothing but problems.\ + \ \n\n3D Kanojo: Real Girl is a story revolving around these two outcasts—a boy full of emotions he has never experienced\ + \ before, struggling to lay them bare, and a girl who strives to break him out of his shell.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Wednesdays + time: 01:59 + timezone: Asia/Tokyo + string: Wednesdays at 01:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 36470 + url: https://myanimelist.net/anime/36470/Tada-kun_wa_Koi_wo_Shinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1446/91841.jpg + small_image_url: https://myanimelist.net/images/anime/1446/91841t.jpg + large_image_url: https://myanimelist.net/images/anime/1446/91841l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1446/91841.webp + small_image_url: https://myanimelist.net/images/anime/1446/91841t.webp + large_image_url: https://myanimelist.net/images/anime/1446/91841l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4LCOgIeRCh0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tada-kun wa Koi wo Shinai + - type: Synonym + title: Tada Doesn't Fall in Love + - type: Synonym + title: TadaKoi + - type: Japanese + title: 多田くんは恋をしない + - type: English + title: Tada Never Falls in Love + title: Tada-kun wa Koi wo Shinai + title_english: Tada Never Falls in Love + title_japanese: 多田くんは恋をしない + title_synonyms: + - Tada Doesn't Fall in Love + - TadaKoi + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-04-05T00:00:00+00:00' + to: '2018-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2018 + to: + day: 28 + month: 6 + year: 2018 + string: Apr 5, 2018 to Jun 28, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.57 + scored_by: 141252 + rank: 1943 + popularity: 864 + members: 326381 + favorites: 1442 + synopsis: |- + Love has never really been a concern for Mitsuyoshi Tada, and as the aspiring photographer enters his second year of high school, it truthfully could not be further from his mind. However, things just might change after he meets a bright and bubbly foreigner named Teresa Wagner while he was taking pictures of a cherry blossom tree. Nevertheless, after she asks him to photograph her, the two soon separate, only to meet each other again twice more that same day. Finding Teresa just as she is caught in a sudden downpour, Tada invites her to his family's coffee shop to dry off. There, she explains that she was separated from her traveling companion, a no-nonsense redhead named Alexandra "Alec" Magritte. When Alec reunites with Teresa shortly after, they say their goodbyes, expecting to part ways for good—but the two unexpectedly show up as transfer students in his class the next day. + + Teresa and Alec quickly get used to their lives at Koinohoshi High School and decide to join Tada in the photography club, along with his narcissistic friend Kaoru Ijuuin, the idol-obsessed Hajime Sugimoto, the serious class rep Hinako Hasegawa, and the dog-like Kentarou Yamashita. With these two peculiar additions to his equally eccentric group of friends, Tada's second year of high school is about to get even livelier, and he might need to start rethinking his approach to love. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 35928 + url: https://myanimelist.net/anime/35928/Devils_Line + images: + jpg: + image_url: https://myanimelist.net/images/anime/1053/98838.jpg + small_image_url: https://myanimelist.net/images/anime/1053/98838t.jpg + large_image_url: https://myanimelist.net/images/anime/1053/98838l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1053/98838.webp + small_image_url: https://myanimelist.net/images/anime/1053/98838t.webp + large_image_url: https://myanimelist.net/images/anime/1053/98838l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FQoP6Mvad-k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Devils Line + - type: Japanese + title: デビルズライン + - type: English + title: Devils' Line + - type: German + title: Devils' Line + - type: French + title: Devils' Line + title: Devils Line + title_english: Devils' Line + title_japanese: デビルズライン + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-07T00:00:00+00:00' + to: '2018-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2018 + to: + day: 23 + month: 6 + year: 2018 + string: Apr 7, 2018 to Jun 23, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.83 + scored_by: 124079 + rank: 6083 + popularity: 945 + members: 296351 + favorites: 1816 + synopsis: |- + Vampires walk among society, existing as part of its underbelly. They do not require blood to survive, but extreme emotions can immensely increase their bloodlust, turning them into uncontrollable monsters. Tsukasa Taira, a 22-year-old university student, learns of the existence of vampires when her longtime friend reveals himself to be one of them after a tense confrontation with Yuuki Anzai—a human and vampire hybrid. + + Her friend is arrested, and Tsukasa soon finds herself drawn to Anzai, who reluctantly reciprocates her feelings. However, this unconventional romance may prove too difficult to maintain, as Anzai struggles to contain the part of him that wishes to devour Tsukasa. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36023 + url: https://myanimelist.net/anime/36023/Persona_5_the_Animation + images: + jpg: + image_url: https://myanimelist.net/images/anime/1829/92056.jpg + small_image_url: https://myanimelist.net/images/anime/1829/92056t.jpg + large_image_url: https://myanimelist.net/images/anime/1829/92056l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1829/92056.webp + small_image_url: https://myanimelist.net/images/anime/1829/92056t.webp + large_image_url: https://myanimelist.net/images/anime/1829/92056l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tkICzNUA0jw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Persona 5 the Animation + - type: Synonym + title: P5A + - type: Synonym + title: Persona 5 the Anime + - type: Japanese + title: TVアニメ「ペルソナ5」 + - type: English + title: Persona 5 the Animation + - type: German + title: Persona 5 The Animation + - type: Spanish + title: Persona 5 The Animation + - type: French + title: Persona 5 The Animation + title: Persona 5 the Animation + title_english: Persona 5 the Animation + title_japanese: TVアニメ「ペルソナ5」 + title_synonyms: + - P5A + - Persona 5 the Anime + type: TV + source: Game + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2018-04-08T00:00:00+00:00' + to: '2018-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2018 + to: + day: 30 + month: 9 + year: 2018 + string: Apr 8, 2018 to Sep 30, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.46 + scored_by: 108078 + rank: 8411 + popularity: 1008 + members: 279254 + favorites: 1004 + synopsis: "Ren Amamiya, a new transfer student at Shujin Academy, is sent to Tokyo to live with his family friend Sojiro\ + \ Sakura after wrongly being put on probation for defending a woman from sexual assault. While on the way to attend\ + \ his first day at his new school, Ren notices a strange app has appeared on his phone, transferring him to a world\ + \ known as the Metaverse, which contains people's \"shadows\": distorted depictions of their true selves. In the Metaverse,\ + \ he awakens his Persona, a power from deep within that gives him the strength to fight the shadows. With the help\ + \ of similarly troubled students, he forms the Phantom Thieves of Hearts, attempting to save people from their sinful\ + \ desires by \"taking their heart,\" making evildoers regret their actions and turn over a new leaf. The group's reputation\ + \ continues to grow explosively, bringing along fame both positive and negative.\n\nHowever, during the peak of their\ + \ popularity, Ren gets captured and taken into custody. Here, he wakes up to a harsh interrogation, but this is cut\ + \ short by the arrival of Sae Niijima—a prosecutor seeking answers. Just how will she react to his story, and what\ + \ will become of the Phantom Thieves? \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 344 + type: anime + name: Atlus + url: https://myanimelist.net/anime/producer/344/Atlus + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 36266 + url: https://myanimelist.net/anime/36266/Mahou_Shoujo_Site + images: + jpg: + image_url: https://myanimelist.net/images/anime/1720/95064.jpg + small_image_url: https://myanimelist.net/images/anime/1720/95064t.jpg + large_image_url: https://myanimelist.net/images/anime/1720/95064l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1720/95064.webp + small_image_url: https://myanimelist.net/images/anime/1720/95064t.webp + large_image_url: https://myanimelist.net/images/anime/1720/95064l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ywv_moZemPk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahou Shoujo Site + - type: Japanese + title: 魔法少女サイト + - type: English + title: Magical Girl Site + - type: German + title: Magical Girl Site + - type: Spanish + title: Magical Girl Site + - type: French + title: Magical Girl Site + title: Mahou Shoujo Site + title_english: Magical Girl Site + title_japanese: 魔法少女サイト + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-07T00:00:00+00:00' + to: '2018-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2018 + to: + day: 23 + month: 6 + year: 2018 + string: Apr 7, 2018 to Jun 23, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.54 + scored_by: 107834 + rank: 7930 + popularity: 1067 + members: 264905 + favorites: 1430 + synopsis: "Every day, Aya Asagiri thinks about killing herself. She is bullied relentlessly at school, and at home,\ + \ her older brother Kaname physically abuses her to relieve the academic stress put on him by their father.\n\nOne\ + \ night, as she lies awake wishing for death, a mysterious website called Magical Girl Site appears on her laptop,\ + \ promising to give her magical powers. At first, she dismisses it as a creepy prank, but when she finds a magical\ + \ gun in her shoe locker the next day, she doesn't know what to believe. Deciding to take it with her, she soon runs\ + \ into her bullies once again. But this time, desperate for anything to save her, she uses the gun—and her assailants\ + \ are transported to a nearby railroad crossing, where they are run over. \n\nAya's conscience is unable to handle\ + \ the fact that she murdered two of her classmates with magic, and she desperately tries to understand the situation.\ + \ However, when she finds herself in trouble again, she is saved by Tsuyuno Yatsumura, a classmate who can use magic\ + \ to stop time. This duo has a lot to do: not only do they have to fight alongside and against other magical girls,\ + \ but they also need to uncover the truth behind the website and the apocalyptic event known as \"The Tempest\" that\ + \ is soon to occur.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1669 + type: anime + name: production doA + url: https://myanimelist.net/anime/producer/1669/production_doA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 35249 + url: https://myanimelist.net/anime/35249/Uma_Musume__Pretty_Derby + images: + jpg: + image_url: https://myanimelist.net/images/anime/1478/91837.jpg + small_image_url: https://myanimelist.net/images/anime/1478/91837t.jpg + large_image_url: https://myanimelist.net/images/anime/1478/91837l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1478/91837.webp + small_image_url: https://myanimelist.net/images/anime/1478/91837t.webp + large_image_url: https://myanimelist.net/images/anime/1478/91837l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WlDbeKNVtBo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Uma Musume: Pretty Derby' + - type: Japanese + title: ウマ娘 プリティーダービー + - type: English + title: 'Umamusume: Pretty Derby' + - type: German + title: 'Umamusume: Pretty Derby' + - type: Spanish + title: 'Umamusume: Pretty Derby' + - type: French + title: 'Umamusume: Pretty Derby' + title: 'Uma Musume: Pretty Derby' + title_english: 'Umamusume: Pretty Derby' + title_japanese: ウマ娘 プリティーダービー + title_synonyms: [] + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-04-02T00:00:00+00:00' + to: '2018-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2018 + to: + day: 18 + month: 6 + year: 2018 + string: Apr 2, 2018 to Jun 18, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 102349 + rank: 2893 + popularity: 1225 + members: 230827 + favorites: 1257 + synopsis: |- + Famous racehorses that have left behind worthy legacies, unique as they can be, are reincarnated as horse girls in a parallel world. In this life, they start their journey anew as they continue to race and perhaps relive the success they once lived through. + + Aspiring to become the best racehorse in Japan, a horse girl named Special Week moves to Tokyo to enroll in the Tracen Academy—an institution that nurtures horse girls like her to become better racers. There, Special Week witnesses the sophisticated running style of Silence Suzuka and is inspired to become a racer like her. Shortly after, Special Week finds herself recruited into Silence Suzuka's team, Spica. From there, she begins her path to the top—one lap at a time. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: [] + - mal_id: 36754 + url: https://myanimelist.net/anime/36754/Kakuriyo_no_Yadomeshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1035/95056.jpg + small_image_url: https://myanimelist.net/images/anime/1035/95056t.jpg + large_image_url: https://myanimelist.net/images/anime/1035/95056l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1035/95056.webp + small_image_url: https://myanimelist.net/images/anime/1035/95056t.webp + large_image_url: https://myanimelist.net/images/anime/1035/95056l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/x3_hXoQQM_E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakuriyo no Yadomeshi + - type: Japanese + title: かくりよの宿飯 + - type: English + title: Kakuriyo -Bed & Breakfast for Spirits- + - type: German + title: 'Kakuriyo: Bed & Breakfast for Spirits' + - type: Spanish + title: 'Kakuriyo: Bed and Breakfast for Spirits' + - type: French + title: 'Kakuriyo: Bed and Breakfast for Spirits' + title: Kakuriyo no Yadomeshi + title_english: Kakuriyo -Bed & Breakfast for Spirits- + title_japanese: かくりよの宿飯 + title_synonyms: [] + type: TV + source: Light novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2018-04-02T00:00:00+00:00' + to: '2018-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2018 + to: + day: 24 + month: 9 + year: 2018 + string: Apr 2, 2018 to Sep 24, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 73143 + rank: 2014 + popularity: 1404 + members: 199639 + favorites: 1603 + synopsis: |- + Abandoned as a child by her mother, Aoi Tsubaki has always had the ability to see "ayakashi"—spirits from the Hidden Realm. Shirou Tsubaki, her grandfather who shared the same ability, took her under his wing and taught her how to live with the ayakashi in peace. When her grandfather abruptly passes away, the independent Aoi must continue her college career, armed with only her knowledge in cooking as a means of protection against the human-eating spirits. In hopes that the ayakashi will not turn to her or other unknowing humans as a tasty meal, she takes it upon herself to feed the hungry creatures that cross her path. + + After giving a mysterious ayakashi her lunch, Aoi is transported to the Hidden Realm, where the ayakashi reveals himself to be an ogre-god known as Oodanna, the "Master Innkeeper." There, she learns that she was used as collateral for her grandfather's debt of one hundred million yen, and that she must pay the price for her grandfather's careless decision by marrying Oodanna. Aoi valiantly refuses and decides to settle things on her own terms: she will pay off the debt herself by opening an eatery at Oodanna's inn. + + Kakuriyo no Yadomeshi follows the journey of Aoi as she proceeds to change and touch the lives of the ayakashi through the one weapon she has against them—her delicious cooking. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 276 + type: anime + name: DLE + url: https://myanimelist.net/anime/producer/276/DLE + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1612 + type: anime + name: NADA Holdings + url: https://myanimelist.net/anime/producer/1612/NADA_Holdings + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 36864 + url: https://myanimelist.net/anime/36864/Akkun_to_Kanojo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1404/90601.jpg + small_image_url: https://myanimelist.net/images/anime/1404/90601t.jpg + large_image_url: https://myanimelist.net/images/anime/1404/90601l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1404/90601.webp + small_image_url: https://myanimelist.net/images/anime/1404/90601t.webp + large_image_url: https://myanimelist.net/images/anime/1404/90601l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LfmTO1p3LFU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akkun to Kanojo + - type: Synonym + title: Akkun and His Girlfriend + - type: Japanese + title: あっくんとカノジョ + - type: English + title: My Sweet Tyrant + - type: German + title: My Sweet Tyrant + - type: Spanish + title: My Sweet Tyrant + - type: French + title: My Sweet Tyrant + title: Akkun to Kanojo + title_english: My Sweet Tyrant + title_japanese: あっくんとカノジョ + title_synonyms: + - Akkun and His Girlfriend + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2018-04-06T00:00:00+00:00' + to: '2018-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2018 + to: + day: 21 + month: 9 + year: 2018 + string: Apr 6, 2018 to Sep 21, 2018 + duration: 3 min per ep + rating: PG-13 - Teens 13 or older + score: 6.82 + scored_by: 85216 + rank: 6135 + popularity: 1409 + members: 198318 + favorites: 324 + synopsis: "Despite his incredible bashfulness, Atsuhiro \"Akkun\" Kagari has landed the girl of his dreams: the sweet\ + \ and loveable Non Katagiri. However, his embarrassment for affectionate acts—from giving compliments to exchanging\ + \ a kiss—causes him to act harsh and downright mean to Katagiri in their day-to-day lives. But Akkun is still very\ + \ much a boy in love; he shows his admiration for Katagiri in his own way. From tailing her in order to take her picture\ + \ to eavesdropping in on her conversations, he ends up stalking his own girlfriend. \n\nLuckily enough, Katagiri finds\ + \ Akkun's actions cute and endearing, and knows he doesn't really mean any of his insults. Even if their close friend,\ + \ Masago Matsuo, finds their dynamic a little odd, Katagiri loves her sweet tyrant just the way he is.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: spring + year: 2018 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 96 + type: anime + name: Yumeta Company + url: https://myanimelist.net/anime/producer/96/Yumeta_Company + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 36904 + url: https://myanimelist.net/anime/36904/Aggressive_Retsuko_ONA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1566/129181.jpg + small_image_url: https://myanimelist.net/images/anime/1566/129181t.jpg + large_image_url: https://myanimelist.net/images/anime/1566/129181l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1566/129181.webp + small_image_url: https://myanimelist.net/images/anime/1566/129181t.webp + large_image_url: https://myanimelist.net/images/anime/1566/129181l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pvkriLuyFdw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aggressive Retsuko (ONA) + - type: Japanese + title: アグレッシブ烈子 + - type: English + title: Aggretsuko (ONA) + - type: German + title: Aggretsuko + - type: Spanish + title: Aggretsuko + - type: French + title: Aggretsuko + title: Aggressive Retsuko (ONA) + title_english: Aggretsuko (ONA) + title_japanese: アグレッシブ烈子 + title_synonyms: [] + type: ONA + source: Other + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-04-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 4 + year: 2018 + to: + day: null + month: null + year: null + string: Apr 20, 2018 + duration: 15 min per ep + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 125570 + rank: 1679 + popularity: 1422 + members: 196015 + favorites: 1402 + synopsis: |- + Some offices have stereotypical dynamics: the chauvinistic pig of a boss who never does any real work; the employees whose goal is to suck up to the boss; the ones whose lives seem perfect; and the individuals who have all the actual work pushed onto them. Retsuko the red panda is in the last group, as she stays late most nights to make up the work her coworkers are too lazy to do themselves. + + Her relief from the stress of her everyday life comes in the form of singing death metal at a local karaoke club. Night after night, Retsuko channels her grief into a microphone and considers the place to be her own personal sanctuary. But as she moves further away from her comfort zone and the ideas people have of her, she discovers that letting others into her world of death metal may not be such a bad thing. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 150 + type: anime + name: Sanrio + url: https://myanimelist.net/anime/producer/150/Sanrio + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: [] + studios: + - mal_id: 866 + type: anime + name: Fanworks + url: https://myanimelist.net/anime/producer/866/Fanworks + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 35677 + url: https://myanimelist.net/anime/35677/Liz_to_Aoi_Tori + images: + jpg: + image_url: https://myanimelist.net/images/anime/1638/93032.jpg + small_image_url: https://myanimelist.net/images/anime/1638/93032t.jpg + large_image_url: https://myanimelist.net/images/anime/1638/93032l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1638/93032.webp + small_image_url: https://myanimelist.net/images/anime/1638/93032t.webp + large_image_url: https://myanimelist.net/images/anime/1638/93032l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yyysLf1FkvE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Liz to Aoi Tori + - type: Synonym + title: 'Gekijouban Hibike! Euphonium: Mizore to Nozomi no Monogatari' + - type: Synonym + title: 'Hibike! Euphonium: The Story of Mizore and Nozomi' + - type: Synonym + title: 'Hibike! Euphonium Movie: Mizore to Nozomi no Monogatari' + - type: Japanese + title: リズと青い鳥 + - type: English + title: Liz and the Blue Bird + - type: German + title: Liz und der Blaue Vogel + - type: French + title: Liz et L'Oiseau Bleu + title: Liz to Aoi Tori + title_english: Liz and the Blue Bird + title_japanese: リズと青い鳥 + title_synonyms: + - 'Gekijouban Hibike! Euphonium: Mizore to Nozomi no Monogatari' + - 'Hibike! Euphonium: The Story of Mizore and Nozomi' + - 'Hibike! Euphonium Movie: Mizore to Nozomi no Monogatari' + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-04-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 4 + year: 2018 + to: + day: null + month: null + year: null + string: Apr 21, 2018 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.24 + scored_by: 67292 + rank: 397 + popularity: 1665 + members: 163704 + favorites: 3176 + synopsis: |- + Liz's days of solitude come to an end when she meets a blue bird in the form of a young girl. Although their relationship blossoms, Liz must make a heart-wrenching decision in order to truly realize her love for Blue Bird. + + High school seniors and close friends Mizore Yoroizuka and Nozomi Kasaki are tasked to play the lead instruments in the third movement of Liz and the Blue Bird, a concert band piece inspired by this fairy tale. The introverted and reserved Mizore plays the oboe, representing the kind and gentle Liz. Meanwhile, the radiant and popular Nozomi plays the flute, portraying the cheerful and energetic Blue Bird. + + However, as they rehearse, the distance between Mizore and Nozomi seems to grow. Their disjointed duet disappoints the band, and with graduation on the horizon, uncertainty about the future spurs complicated emotions. With little time to improve as their performance draws near, they desperately attempt to connect with their respective characters. But when Mizore and Nozomi consider the story from a brand-new perspective, will the girls find the strength to face harsh realities? + + A spin-off film adaptation of the Hibike Euphonium! series, Liz to Aoi Tori dances between the parallels of a charming fairy tale, a moving musical piece, and a delicate high school friendship. + + [Written by MAL Rewrite] + background: The film won the Noburou Oofuji award for creative expression at the 73rd Mainichi Film Awards. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 531 + type: anime + name: Eleven Arts + url: https://myanimelist.net/anime/producer/531/Eleven_Arts + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 35756 + url: https://myanimelist.net/anime/35756/Comic_Girls + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/140760.jpg + small_image_url: https://myanimelist.net/images/anime/1444/140760t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/140760l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/140760.webp + small_image_url: https://myanimelist.net/images/anime/1444/140760t.webp + large_image_url: https://myanimelist.net/images/anime/1444/140760l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iWIpU_htE0Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Comic Girls + - type: Japanese + title: こみっくがーるず + title: Comic Girls + title_english: null + title_japanese: こみっくがーるず + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-05T00:00:00+00:00' + to: '2018-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2018 + to: + day: 21 + month: 6 + year: 2018 + string: Apr 5, 2018 to Jun 21, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 63297 + rank: 2819 + popularity: 1763 + members: 151745 + favorites: 718 + synopsis: |- + Kaoruko "Chaos" Moeta is a young manga artist who is down on her luck. She wants to draw manga about high school girls, but her storyboards are bland, her art uninspired, and her premises weak. Her concerned, exasperated editor comes up with an idea: push Chaos to be more social. So, by her recommendation, Chaos moves into a dormitory for female manga artists. She soon meets the other residents: Tsubasa Katsuki, a shounen manga artist; Ruki Irokawa, who draws erotic manga popular with women; and Koyume Koizuka, a shoujo artist who, like Chaos, has yet to be serialized. Quickly striking up a friendship with these girls, Chaos finds new inspiration for her manga and continues to grow her creativity. + + Comic Girls is a showcase of the daily lives of these manga artists. Will Chaos finally be able to make her debut and become serialized? None of the girls know, but they will all do their best to help each other become the best artists they can be. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2018 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1336 + type: anime + name: Chugai Mining + url: https://myanimelist.net/anime/producer/1336/Chugai_Mining + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1744 + type: anime + name: My Theater D.D. + url: https://myanimelist.net/anime/producer/1744/My_Theater_DD + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + licensors: [] + studios: + - mal_id: 852 + type: anime + name: Nexus + url: https://myanimelist.net/anime/producer/852/Nexus + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 38409 + url: https://myanimelist.net/anime/38409/Cike_Wu_Liuqi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1620/94968.jpg + small_image_url: https://myanimelist.net/images/anime/1620/94968t.jpg + large_image_url: https://myanimelist.net/images/anime/1620/94968l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1620/94968.webp + small_image_url: https://myanimelist.net/images/anime/1620/94968t.webp + large_image_url: https://myanimelist.net/images/anime/1620/94968l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t3kDaWEaUjY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Cike Wu Liuqi + - type: Synonym + title: 伍六七 + - type: Synonym + title: Wu Liuqi + - type: Synonym + title: Cike Wuliuqi + - type: Synonym + title: Ci Ke Wu Liu Qi + - type: Synonym + title: Assassin Seven + - type: Synonym + title: Killer Seven + - type: Japanese + title: 刺客伍六七 + - type: English + title: Scissor Seven + - type: German + title: Scissor Seven + - type: Spanish + title: Scissor Seven + - type: French + title: Scissor Seven + title: Cike Wu Liuqi + title_english: Scissor Seven + title_japanese: 刺客伍六七 + title_synonyms: + - 伍六七 + - Wu Liuqi + - Cike Wuliuqi + - Ci Ke Wu Liu Qi + - Assassin Seven + - Killer Seven + type: ONA + source: Original + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-04-25T00:00:00+00:00' + to: '2018-06-20T00:00:00+00:00' + prop: + from: + day: 25 + month: 4 + year: 2018 + to: + day: 20 + month: 6 + year: 2018 + string: Apr 25, 2018 to Jun 20, 2018 + duration: 15 min per ep + rating: PG-13 - Teens 13 or older + score: 7.88 + scored_by: 66840 + rank: 987 + popularity: 1875 + members: 140145 + favorites: 1761 + synopsis: |- + To the casual eye, the amnesiac bounty hunter Wu Liuqi looks quite intimidating. With his deadly telekinetic scissor techniques and his ability to seamlessly transform into anything, one would not expect his modest demeanor. In fact, Wu is quite terrible at his job. Often times the freelancer can be found botching an assassination or targeting the wrong person. While his failures could be due to his subpar skills, it usually boils down to him being a normal kid, with a heart unsuited for his line of work. + + Accompanied by his feathered friend Dai Bo, Wu is on a simple quest to regain his memories. Although his inconspicuous day job as a hairdresser and his after-hours occupation are simply a means for him to repay debt, his various ventures seem to intertwine with his pursuit to recover his lost past. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 2294 + type: anime + name: AHAVERSE + url: https://myanimelist.net/anime/producer/2294/AHAVERSE + licensors: [] + studios: + - mal_id: 2258 + type: anime + name: Sharefun Studio + url: https://myanimelist.net/anime/producer/2258/Sharefun_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 36652 + url: https://myanimelist.net/anime/36652/Piano_no_Mori_TV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1501/91916.jpg + small_image_url: https://myanimelist.net/images/anime/1501/91916t.jpg + large_image_url: https://myanimelist.net/images/anime/1501/91916l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1501/91916.webp + small_image_url: https://myanimelist.net/images/anime/1501/91916t.webp + large_image_url: https://myanimelist.net/images/anime/1501/91916l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fRVj2zFlpyM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Piano no Mori (TV) + - type: Synonym + title: Piano Forest + - type: Synonym + title: The Perfect World of Kai + - type: Japanese + title: ピアノの森 + - type: English + title: Forest of Piano + - type: German + title: The Piano Forest + - type: Spanish + title: El Bosque del Piano + - type: French + title: Piano Forest + title: Piano no Mori (TV) + title_english: Forest of Piano + title_japanese: ピアノの森 + title_synonyms: + - Piano Forest + - The Perfect World of Kai + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-04-09T00:00:00+00:00' + to: '2018-07-02T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2018 + to: + day: 2 + month: 7 + year: 2018 + string: Apr 9, 2018 to Jul 2, 2018 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.33 + scored_by: 59814 + rank: 3117 + popularity: 1893 + members: 138954 + favorites: 493 + synopsis: "A tranquil tale about two boys from very different upbringings. On one hand you have Kai, born as the son\ + \ of a prostitute, who's been playing the abandoned piano in the forest near his home ever since he was young. And\ + \ on the other you have Syuhei, practically breast-fed by the piano as the son of a family of prestigious pianists.\ + \ Yet it is their common bond with the piano that eventually intertwines their paths in life.\n \n(Source: KEFI)" + background: '' + season: spring + year: 2018 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + licensors: [] + studios: + - mal_id: 1314 + type: anime + name: Gaina + url: https://myanimelist.net/anime/producer/1314/Gaina + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36214 + url: https://myanimelist.net/anime/36214/Asagao_to_Kase-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1578/94205.jpg + small_image_url: https://myanimelist.net/images/anime/1578/94205t.jpg + large_image_url: https://myanimelist.net/images/anime/1578/94205l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1578/94205.webp + small_image_url: https://myanimelist.net/images/anime/1578/94205t.webp + large_image_url: https://myanimelist.net/images/anime/1578/94205l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k94x6pAb_k0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Asagao to Kase-san. + - type: Synonym + title: Morning Glory and Kase-san + - type: Japanese + title: あさがおと加瀬さん。 + - type: English + title: Kase-san and Morning Glories + - type: German + title: Kase-san and Morning Glories + - type: Spanish + title: Kase-san and Morning Glories + - type: French + title: Kase-san and Morning Glories + title: Asagao to Kase-san. + title_english: Kase-san and Morning Glories + title_japanese: あさがおと加瀬さん。 + title_synonyms: + - Morning Glory and Kase-san + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-06-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 6 + year: 2018 + to: + day: null + month: null + year: null + string: Jun 9, 2018 + duration: 58 min + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 56672 + rank: 1447 + popularity: 1948 + members: 134218 + favorites: 1300 + synopsis: |- + Yui Yamada, a high school girl with a fondness for plants and gardening, starts dating Tomoka Kase, the ace of her school's track team. Yui is shy, girly, and has never been in a relationship. On the other hand, Tomoka is vivacious, tomboyish, and popular among her friends. Despite being different in so many ways, they try to understand and support each other while experiencing the rush of exhilaration that accompanies the magic of first love. + + Asagao to Kase-san is a heartwarming tale of two girls dealing with their ever-increasing feelings for each other along with other concerns that plague the hearts of maidens in love. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + genres: + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/35-2018-summer.yaml b/test/fixtures/jikan/season_matrix/35-2018-summer.yaml new file mode 100644 index 0000000..4eec353 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/35-2018-summer.yaml @@ -0,0 +1,3389 @@ +metadata: + captured_at: '2026-05-11T11:33:56Z' + label: 2018-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2018/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:56 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:ef102a4963b9698c553fa5aff5970db707c000ae + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 290 + per_page: 25 + data: + - mal_id: 35760 + url: https://myanimelist.net/anime/35760/Shingeki_no_Kyojin_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1173/92110.jpg + small_image_url: https://myanimelist.net/images/anime/1173/92110t.jpg + large_image_url: https://myanimelist.net/images/anime/1173/92110l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1173/92110.webp + small_image_url: https://myanimelist.net/images/anime/1173/92110t.webp + large_image_url: https://myanimelist.net/images/anime/1173/92110l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EHzBhrncmac?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki no Kyojin Season 3 + - type: Japanese + title: 進撃の巨人 Season3 + - type: English + title: Attack on Titan Season 3 + - type: German + title: Attack on Titan 3. Staffel + - type: Spanish + title: Ataque a los Titanes Temporada 3 + - type: French + title: L'Attaque des Titans Saison 3 + title: Shingeki no Kyojin Season 3 + title_english: Attack on Titan Season 3 + title_japanese: 進撃の巨人 Season3 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-23T00:00:00+00:00' + to: '2018-10-15T00:00:00+00:00' + prop: + from: + day: 23 + month: 7 + year: 2018 + to: + day: 15 + month: 10 + year: 2018 + string: Jul 23, 2018 to Oct 15, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.64 + scored_by: 1811323 + rank: 90 + popularity: 18 + members: 2665559 + favorites: 22448 + synopsis: |- + Still threatened by the "Titans" that rob them of their freedom, mankind remains caged inside the two remaining walls. Efforts to eradicate these monsters continue; however, threats arise not only from the Titans beyond the walls, but from the humans within them as well. + + After being rescued from the Colossal and Armored Titans, Eren Yaeger devotes himself to improving his Titan form. Krista Lenz struggles to accept the loss of her friend, Captain Levi chooses Eren and his friends to form his new personal squad, and Commander Erwin Smith recovers from his injuries. All seems well for the soldiers, until the government suddenly demands custody of Eren and Krista. The Survey Corps' recent successes have drawn attention, and a familiar face from Levi's past is sent to collect the wanted soldiers. Sought after by the government, Levi and his new squad must evade their adversaries in hopes of keeping Eren and Krista safe. + + Eren and his fellow soldiers are not only fighting for their survival against the terrifying Titans, but also against the terror of a far more conniving foe: their fellow humans. + + [Written by MAL Rewrite] + background: Shingeki no Kyojin Season 3 adapts content from manga volumes 13-17. + season: summer + year: 2018 + broadcast: + day: Mondays + time: 00:35 + timezone: Asia/Tokyo + string: Mondays at 00:35 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36098 + url: https://myanimelist.net/anime/36098/Kimi_no_Suizou_wo_Tabetai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1768/93291.jpg + small_image_url: https://myanimelist.net/images/anime/1768/93291t.jpg + large_image_url: https://myanimelist.net/images/anime/1768/93291l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1768/93291.webp + small_image_url: https://myanimelist.net/images/anime/1768/93291t.webp + large_image_url: https://myanimelist.net/images/anime/1768/93291l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MONVPR1dnRQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi no Suizou wo Tabetai + - type: Synonym + title: KimiSui + - type: Synonym + title: Let Me Eat Your Pancreas + - type: Japanese + title: 君の膵臓をたべたい + - type: English + title: I Want To Eat Your Pancreas + - type: German + title: I Want To Eat Your Pancreas + - type: Spanish + title: Quiero comerme tu Páncreas + - type: French + title: Je Veux Manger Ton Pancréas + title: Kimi no Suizou wo Tabetai + title_english: I Want To Eat Your Pancreas + title_japanese: 君の膵臓をたべたい + title_synonyms: + - KimiSui + - Let Me Eat Your Pancreas + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-09-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 9 + year: 2018 + to: + day: null + month: null + year: null + string: Sep 1, 2018 + duration: 1 hr 48 min + rating: PG-13 - Teens 13 or older + score: 8.56 + scored_by: 668953 + rank: 129 + popularity: 160 + members: 1118252 + favorites: 23332 + synopsis: |- + The aloof protagonist: a bookworm who is deeply detached from the world he resides in. He has no interest in others and is firmly convinced that nobody has any interest in him either. His story begins when he stumbles across a handwritten book, titled Living with Dying. He soon identifies it as a secret diary belonging to his popular, bubbly classmate Sakura Yamauchi. She then confides in him about the pancreatic disease she is suffering from and that her time left is finite. Only her family knows about her terminal illness; not even her best friends are aware. Despite this revelation, he shows zero sympathy for her plight, but caught in the waves of Sakura's persistent buoyancy, he eventually concedes to accompanying her for her remaining days. + + As the pair of polar opposites interact, their connection strengthens, interweaving through their choices made with each passing day. Her apparent nonchalance and unpredictability disrupts the protagonist's impassive flow of life, gradually opening his heart as he discovers and embraces the true meaning of living. + + [Written by MAL Rewrite] + background: Kimi no Suizou wo Tabetai is an anime adaption of Yoru Sumino's novel of the same title. Originally a web + novel published on the user-generated content site Shousetsuka ni Narou in 2014, it was subsequently re-published + in 2015 by Futabasha. The English licensor, Seven Seas Entertainment released the novel in English on November 20, + 2018. A Japanese live-action film based on the novel, which also shares the same title, premiered in Japan on July + 28, 2017. (Source Wikipedia) + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1318 + type: anime + name: Asahi Shimbun + url: https://myanimelist.net/anime/producer/1318/Asahi_Shimbun + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37675 + url: https://myanimelist.net/anime/37675/Overlord_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1511/93473.jpg + small_image_url: https://myanimelist.net/images/anime/1511/93473t.jpg + large_image_url: https://myanimelist.net/images/anime/1511/93473l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1511/93473.webp + small_image_url: https://myanimelist.net/images/anime/1511/93473t.webp + large_image_url: https://myanimelist.net/images/anime/1511/93473l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/awYU-9jVZxE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Overlord III + - type: Japanese + title: オーバーロードⅢ + - type: English + title: Overlord III + title: Overlord III + title_english: Overlord III + title_japanese: オーバーロードⅢ + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-07-10T00:00:00+00:00' + to: '2018-10-02T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2018 + to: + day: 2 + month: 10 + year: 2018 + string: Jul 10, 2018 to Oct 2, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.91 + scored_by: 623654 + rank: 917 + popularity: 187 + members: 1011828 + favorites: 5595 + synopsis: |- + Following the horrific assault on the Re-Estize capital city, the Guardians of the Great Tomb of Nazarick return home to their master Ainz Ooal Gown. After months of laying the groundwork, they are finally ready to set their plans of world domination into action. + + As Ainz's war machine gathers strength, the rest of the world keeps moving. The remote Carne Village, which Ainz once saved from certain doom, continues to prosper despite the many threats on its doorstep. And in the northeastern Baharuth Empire, a certain Bloody Emperor sets his sights on the rising power of Nazarick. + + Blood is shed, heroes fall, and nations rise. Can anyone, or anything, challenge the supreme power of Ainz Ooal Gown? + + [Written by MAL Rewrite] + background: Overlord III adapts novels 7 to 9. + season: summer + year: 2018 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 36649 + url: https://myanimelist.net/anime/36649/Banana_Fish + images: + jpg: + image_url: https://myanimelist.net/images/anime/1190/93472.jpg + small_image_url: https://myanimelist.net/images/anime/1190/93472t.jpg + large_image_url: https://myanimelist.net/images/anime/1190/93472l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1190/93472.webp + small_image_url: https://myanimelist.net/images/anime/1190/93472t.webp + large_image_url: https://myanimelist.net/images/anime/1190/93472l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YUGS9j6pcV4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Banana Fish + - type: Japanese + title: BANANA FISH + - type: English + title: Banana Fish + title: Banana Fish + title_english: Banana Fish + title_japanese: BANANA FISH + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-07-06T00:00:00+00:00' + to: '2018-12-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2018 + to: + day: 21 + month: 12 + year: 2018 + string: Jul 6, 2018 to Dec 21, 2018 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.45 + scored_by: 414610 + rank: 189 + popularity: 204 + members: 963308 + favorites: 32083 + synopsis: |- + Aslan Jade Callenreese, known as Ash Lynx, was a runaway picked off the streets of New York City and raised by the infamous godfather of the mafia, Dino Golzine. Now 17 years old and the boss of his own gang, Ash begins investigating the mysterious "Banana Fish"—the same two words his older brother, Griffin, has muttered since his return from the Iraq War. However, his inquiries are hindered when Dino sends his men after Ash at an underground bar he uses as a hideout. + + At the bar, Skip, Ash's friend, introduces him to Shunichi Ibe and his assistant, Eiji Okumura, who are Japanese photographers reporting on American street gangs. However, their conversation is interrupted when Shorter Wong, one of Ash's allies, calls to warn him about Dino. Soon, Dino's men storm the bar, and in the ensuing chaos kidnap Skip and Eiji. Now, Ash must find a way to rescue them and continue his investigation into Banana Fish, but will his history with the mafia prevent him from succeeding? + + [Written by MAL Rewrite] + background: The anime was announced as part of Akimi Yoshida's 40th anniversary commemoration project in October 2017. + season: summer + year: 2018 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 37105 + url: https://myanimelist.net/anime/37105/Grand_Blue + images: + jpg: + image_url: https://myanimelist.net/images/anime/1302/94882.jpg + small_image_url: https://myanimelist.net/images/anime/1302/94882t.jpg + large_image_url: https://myanimelist.net/images/anime/1302/94882l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1302/94882.webp + small_image_url: https://myanimelist.net/images/anime/1302/94882t.webp + large_image_url: https://myanimelist.net/images/anime/1302/94882l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m-nN3SlHwZk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Grand Blue + - type: Japanese + title: ぐらんぶる + - type: English + title: Grand Blue Dreaming + - type: German + title: Grand Blue Dreaming + - type: Spanish + title: Grand Blue Dreaming + - type: French + title: Grand Blue Dreaming + title: Grand Blue + title_english: Grand Blue Dreaming + title_japanese: ぐらんぶる + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-14T00:00:00+00:00' + to: '2018-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2018 + to: + day: 29 + month: 9 + year: 2018 + string: Jul 14, 2018 to Sep 29, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.45 + scored_by: 483947 + rank: 190 + popularity: 227 + members: 906477 + favorites: 22616 + synopsis: |- + Iori Kitahara moves to the coastal town of Izu for his freshman year at its university, taking residence above Grand Blue, his uncle's scuba diving shop. Iori has high hopes and dreams about having the ideal college experience, but when he enters the shop he is sucked into the alcoholic activities of the carefree members of the Diving Club who frequent the place. Persuaded by upperclassmen Shinji Tokita and Ryuujirou Kotobuki, Iori reluctantly joins their bizarre party. His cousin Chisa Kotegawa later walks in and catches him in the act, earning Iori her utter disdain. + + Based on Kenji Inoue and Kimitake Yoshioka's popular comedy manga, Grand Blue follows Iori's misadventures with his eccentric new friends as he strives to realize his ideal college dream, while also learning how to scuba dive. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Saturdays + time: 02:55 + timezone: Asia/Tokyo + string: Saturdays at 02:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36896 + url: https://myanimelist.net/anime/36896/Boku_no_Hero_Academia_the_Movie_1__Futari_no_Hero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1736/93138.jpg + small_image_url: https://myanimelist.net/images/anime/1736/93138t.jpg + large_image_url: https://myanimelist.net/images/anime/1736/93138l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1736/93138.webp + small_image_url: https://myanimelist.net/images/anime/1736/93138t.webp + large_image_url: https://myanimelist.net/images/anime/1736/93138l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DqL1EsorFy4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia the Movie 1: Futari no Hero' + - type: Synonym + title: 'My Hero Academia the Movie: The Two Heroes' + - type: Japanese + title: 僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ + - type: English + title: 'My Hero Academia: Two Heroes' + - type: German + title: 'My Hero Academia: Two Heroes' + - type: Spanish + title: 'My Hero Academia la Película: Dos Héroes.' + - type: French + title: 'My Hero Academia: Two Heroes' + title: 'Boku no Hero Academia the Movie 1: Futari no Hero' + title_english: 'My Hero Academia: Two Heroes' + title_japanese: 僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ + title_synonyms: + - 'My Hero Academia the Movie: The Two Heroes' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-08-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 8 + year: 2018 + to: + day: null + month: null + year: null + string: Aug 3, 2018 + duration: 1 hr 36 min + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 499936 + rank: 2144 + popularity: 279 + members: 814787 + favorites: 1458 + synopsis: |- + U.A. High School's students of Class 1-A have made it to summer break. Izuku Midoriya accompanies his mentor All Might to a celebratory superhero festival on I-Island, an isolated patch of land dedicated to researching Quirks and everything else associated with the hero business. Midoriya is granted the opportunity to meet All Might's friend Dave and Dave's daughter Melissa, two talented hero equipment engineers. He also encounters his classmates, most of whom have been given the opportunity to spend part of their summer break at the festival. + + However, a mysterious squad of villains infiltrates I-Island, and it is up to Midoriya and his friends to confront them, using their developing Quirks to fight off the new enemy and uncover a treacherous plot. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37210 + url: https://myanimelist.net/anime/37210/Isekai_Maou_to_Shoukan_Shoujo_no_Dorei_Majutsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1649/93412.jpg + small_image_url: https://myanimelist.net/images/anime/1649/93412t.jpg + large_image_url: https://myanimelist.net/images/anime/1649/93412l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1649/93412.webp + small_image_url: https://myanimelist.net/images/anime/1649/93412t.webp + large_image_url: https://myanimelist.net/images/anime/1649/93412l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8a0gn8mmnaY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu + - type: Synonym + title: The Otherworldly Demon King and the Summoner Girls' Slave Magic + - type: Japanese + title: 異世界魔王と召喚少女の奴隷魔術 + - type: English + title: How Not to Summon a Demon Lord + - type: German + title: How Not To Summon A Demon Lord + - type: Spanish + title: How not to Summon a Demon Lord + - type: French + title: How Not to Summon a Demon Lord + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu + title_english: How Not to Summon a Demon Lord + title_japanese: 異世界魔王と召喚少女の奴隷魔術 + title_synonyms: + - The Otherworldly Demon King and the Summoner Girls' Slave Magic + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-05T00:00:00+00:00' + to: '2018-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2018 + to: + day: 20 + month: 9 + year: 2018 + string: Jul 5, 2018 to Sep 20, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.81 + scored_by: 460123 + rank: 6231 + popularity: 287 + members: 798355 + favorites: 2566 + synopsis: "When it comes to the fantasy MMORPG Cross Reverie, none can match the power of the Demon King Diablo. Possessing\ + \ the game's rarest artifacts and an unrivaled player level, he overpowers all foolish enough to confront him. But\ + \ despite his fearsome reputation, Diablo's true identity is Takuma Sakamoto, a shut-in gamer devoid of any social\ + \ skills. Defeating hopeless challengers day by day, Takuma cares about nothing else but his virtual life—that is,\ + \ until a summoning spell suddenly transports him to another world where he has Diablo's appearance! \n\nIn this new\ + \ world resembling his favorite game, Takuma is greeted by the two girls who summoned him: Rem Galeu, a petite Pantherian\ + \ adventurer, and Shera L. Greenwood, a busty Elf summoner. They perform an Enslavement Ritual in an attempt to subjugate\ + \ him, but the spell backfires and causes them to become his slaves instead. With the situation now becoming more\ + \ awkward than ever, Takuma decides to accompany the girls in finding a way to unbind their contract while learning\ + \ to adapt to his new existence as the menacing Demon King.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2018 + broadcast: + day: Thursdays + time: '21:30' + timezone: Asia/Tokyo + string: Thursdays at 21:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1039 + type: anime + name: DIVE II Entertainment + url: https://myanimelist.net/anime/producer/1039/DIVE_II_Entertainment + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1449 + type: anime + name: Animatic + url: https://myanimelist.net/anime/producer/1449/Animatic + - mal_id: 2038 + type: anime + name: S-Wood + url: https://myanimelist.net/anime/producer/2038/S-Wood + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 35994 + url: https://myanimelist.net/anime/35994/Satsuriku_no_Tenshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1862/95624.jpg + small_image_url: https://myanimelist.net/images/anime/1862/95624t.jpg + large_image_url: https://myanimelist.net/images/anime/1862/95624l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1862/95624.webp + small_image_url: https://myanimelist.net/images/anime/1862/95624t.webp + large_image_url: https://myanimelist.net/images/anime/1862/95624l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NHj2_6D-2Oc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Satsuriku no Tenshi + - type: Synonym + title: Angel of Massacre + - type: Synonym + title: Angel of Slaughter + - type: Japanese + title: 殺戮の天使 + - type: English + title: Angels of Death + - type: German + title: Angel of Death + - type: Spanish + title: Angels of Death + - type: French + title: Angels of Death + title: Satsuriku no Tenshi + title_english: Angels of Death + title_japanese: 殺戮の天使 + title_synonyms: + - Angel of Massacre + - Angel of Slaughter + type: TV + source: Game + episodes: 16 + status: Finished Airing + airing: false + aired: + from: '2018-07-06T00:00:00+00:00' + to: '2018-10-26T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2018 + to: + day: 26 + month: 10 + year: 2018 + string: Jul 6, 2018 to Oct 26, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.97 + scored_by: 349248 + rank: 5300 + popularity: 314 + members: 739319 + favorites: 6288 + synopsis: |- + With dead and lifeless eyes, Rachel Gardner wishes only to die. Waking up in the basement of a building, she has no idea how or why she's there. She stumbles across a bandaged murderer named Zack, who is trying to escape. After promising to kill her as soon as he is free, Rachel and Zack set out to ascend through the building floor by floor until they escape. + + However, as they progress upward, they meet more twisted people, and all of them seem familiar with Rachel. What is her connection to the building, and why was she placed in it? Facing a new boss on each floor, can Rachel and Zack both achieve their wishes? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Fridays + time: '20:30' + timezone: Asia/Tokyo + string: Fridays at 20:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 37141 + url: https://myanimelist.net/anime/37141/Hataraku_Saibou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1141/117446.jpg + small_image_url: https://myanimelist.net/images/anime/1141/117446t.jpg + large_image_url: https://myanimelist.net/images/anime/1141/117446l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1141/117446.webp + small_image_url: https://myanimelist.net/images/anime/1141/117446t.webp + large_image_url: https://myanimelist.net/images/anime/1141/117446l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HMXWvvjAJek?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Saibou + - type: Japanese + title: はたらく細胞 + - type: English + title: Cells at Work! + - type: German + title: Cells at Work!! + - type: Spanish + title: Cells at Work! + - type: French + title: Cells at Work! + title: Hataraku Saibou + title_english: Cells at Work! + title_japanese: はたらく細胞 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-07-08T00:00:00+00:00' + to: '2018-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2018 + to: + day: 30 + month: 9 + year: 2018 + string: Jul 8, 2018 to Sep 30, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 341518 + rank: 2008 + popularity: 343 + members: 698227 + favorites: 2424 + synopsis: "Inside the human body, roughly 37.2 trillion cells work energetically 24 hours a day and 365 days a year.\ + \ Fresh out of training, the cheerful and somewhat airheaded Sekkekkyuu AE3803 is ready to take on the ever-so-important\ + \ task of transporting oxygen. As usual, Hakkekkyuu U-1146 is hard at work patrolling and eliminating foreign bacteria\ + \ seeking to make the body their new lair. Elsewhere, little platelets are lining up for a new construction project.\ + \ \n\nDealing with wounds and allergies, getting lost on the way to the lungs, and bickering with similar cell types,\ + \ the daily lives of cells are always hectic as they work together to keep the body healthy!\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2018 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 56 + type: anime + name: Educational + url: https://myanimelist.net/anime/genre/56/Educational + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37171 + url: https://myanimelist.net/anime/37171/Asobi_Asobase + images: + jpg: + image_url: https://myanimelist.net/images/anime/1139/95077.jpg + small_image_url: https://myanimelist.net/images/anime/1139/95077t.jpg + large_image_url: https://myanimelist.net/images/anime/1139/95077l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1139/95077.webp + small_image_url: https://myanimelist.net/images/anime/1139/95077t.webp + large_image_url: https://myanimelist.net/images/anime/1139/95077l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DYDZAvNJQkM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Asobi Asobase + - type: Japanese + title: あそびあそばせ + - type: English + title: 'Asobi Asobase: Workshop of Fun' + - type: German + title: 'Asobi Asobase: workshop of Fun' + - type: Spanish + title: 'Asobi Asobase: Workshop of Fun' + - type: French + title: 'Asobi Asobase: Workshop of Fun' + title: Asobi Asobase + title_english: 'Asobi Asobase: Workshop of Fun' + title_japanese: あそびあそばせ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-08T00:00:00+00:00' + to: '2018-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2018 + to: + day: 23 + month: 9 + year: 2018 + string: Jul 8, 2018 to Sep 23, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.19 + scored_by: 252024 + rank: 458 + popularity: 472 + members: 535277 + favorites: 7345 + synopsis: "During recess, Olivia, a foreign transfer student who doesn't know English, plays a game of \"look-the-other-way\"\ + \ with Hanako Honda, a loud-mouthed airhead. Their rowdy behavior spurs the ire of Kasumi Nomura, a deadpan loner\ + \ constantly teased by her older sister for her tendency to lose games. Not willing to compete, Kasumi declines Olivia's\ + \ offer to join the fun, but eventually gets involved anyway and dispenses her own brand of mischief. Soon, a strange\ + \ friendship blossoms between the peculiar trio, and they decide to form the \"Pastime Club,\" where they are free\ + \ to resume their daily hijinks. \n\nWhether it be failing to learn English, trying desperately to become popular,\ + \ or getting caught by teachers at the wrong time, school life will never be boring when the girls of Asobi Asobase\ + \ are up to their hilarious antics.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2018 + broadcast: + day: Sundays + time: '21:00' + timezone: Asia/Tokyo + string: Sundays at 21:00 (JST) + producers: + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 37095 + url: https://myanimelist.net/anime/37095/Violet_Evergarden__Kitto_Ai_wo_Shiru_Hi_ga_Kuru_no_Darou + images: + jpg: + image_url: https://myanimelist.net/images/anime/9/89993.jpg + small_image_url: https://myanimelist.net/images/anime/9/89993t.jpg + large_image_url: https://myanimelist.net/images/anime/9/89993l.jpg + webp: + image_url: https://myanimelist.net/images/anime/9/89993.webp + small_image_url: https://myanimelist.net/images/anime/9/89993t.webp + large_image_url: https://myanimelist.net/images/anime/9/89993l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/T6TqdAkREJk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Violet Evergarden: Kitto "Ai" wo Shiru Hi ga Kuru no Darou' + - type: Synonym + title: Violet Evergarden Extra Episode + - type: Synonym + title: Violet Evergarden Episode 14 + - type: Synonym + title: Violet Evergarden Special + - type: Synonym + title: The day you understand "I love you" will surely come + - type: Japanese + title: ヴァイオレット・エヴァーガーデンきっと"愛"を知る日が来るのだろう + - type: English + title: 'Violet Evergarden: The Day You Understand "I Love You" Will Surely Come' + - type: French + title: 'Violet Evergarden OAV: Épisode 14' + title: 'Violet Evergarden: Kitto "Ai" wo Shiru Hi ga Kuru no Darou' + title_english: 'Violet Evergarden: The Day You Understand "I Love You" Will Surely Come' + title_japanese: ヴァイオレット・エヴァーガーデンきっと"愛"を知る日が来るのだろう + title_synonyms: + - Violet Evergarden Extra Episode + - Violet Evergarden Episode 14 + - Violet Evergarden Special + - The day you understand "I love you" will surely come + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-07-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 7 + year: 2018 + to: + day: null + month: null + year: null + string: Jul 4, 2018 + duration: 34 min + rating: PG-13 - Teens 13 or older + score: 8.36 + scored_by: 222656 + rank: 273 + popularity: 742 + members: 372053 + favorites: 987 + synopsis: |- + The CH Postal Company has just received a request to transcribe a love letter from Irma Felice, a famous opera singer. Accepting the task, Violet Evergarden visits Irma to write her letter. However, not only does Irma provide little information, she asks Violet to write based on her own feelings. Despite Violet's numerous attempts, Irma finds every version of the letter inadequate. + + Violet consults her colleagues, and they help her out by writing love letters of their own. Yet even those are rejected by the opera singer. As a last resort, Violet asks Irma for her true thoughts and feelings, hoping to find the missing puzzle piece. Will the Auto Memory Doll be able to translate Irma's emotions into words? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: [] + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37517 + url: https://myanimelist.net/anime/37517/Happy_Sugar_Life + images: + jpg: + image_url: https://myanimelist.net/images/anime/1386/103920.jpg + small_image_url: https://myanimelist.net/images/anime/1386/103920t.jpg + large_image_url: https://myanimelist.net/images/anime/1386/103920l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1386/103920.webp + small_image_url: https://myanimelist.net/images/anime/1386/103920t.webp + large_image_url: https://myanimelist.net/images/anime/1386/103920l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lxjHUh5I5P4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Happy Sugar Life + - type: Synonym + title: White Sugar Garden + - type: Synonym + title: Black Salt Cage + - type: Japanese + title: ハッピーシュガーライフ + - type: English + title: Happy Sugar Life + title: Happy Sugar Life + title_english: Happy Sugar Life + title_japanese: ハッピーシュガーライフ + title_synonyms: + - White Sugar Garden + - Black Salt Cage + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-14T00:00:00+00:00' + to: '2018-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2018 + to: + day: 29 + month: 9 + year: 2018 + string: Jul 14, 2018 to Sep 29, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.75 + scored_by: 153057 + rank: 6596 + popularity: 832 + members: 336272 + favorites: 3016 + synopsis: |- + Satou Matsuzaka is a beautiful high schooler who has a reputation for being permissive with men. However, a chance encounter with a young girl named Shio Koube makes Satou realize that this is her first and only true feeling of love. + + Telling others that she lives with her aunt, Satou secretly shares an apartment with Shio. Despite her innocent appearance, Satou is willing to do anything to protect her beloved, resorting to desperate measures to ensure that their "happy sugar life" remains intact. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1869 + type: anime + name: Bit Promotion + url: https://myanimelist.net/anime/producer/1869/Bit_Promotion + licensors: [] + studios: + - mal_id: 1864 + type: anime + name: Ezόla + url: https://myanimelist.net/anime/producer/1864/Ez%CF%8Cla + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36726 + url: https://myanimelist.net/anime/36726/Yuragi-sou_no_Yuuna-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1462/98802.jpg + small_image_url: https://myanimelist.net/images/anime/1462/98802t.jpg + large_image_url: https://myanimelist.net/images/anime/1462/98802l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1462/98802.webp + small_image_url: https://myanimelist.net/images/anime/1462/98802t.webp + large_image_url: https://myanimelist.net/images/anime/1462/98802l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OfzdwmG3Vks?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuragi-sou no Yuuna-san + - type: Synonym + title: Yuuna of Yuragi Manor + - type: Japanese + title: ゆらぎ荘の幽奈さん + - type: English + title: Yuuna and the Haunted Hot Springs + - type: German + title: Yuuna and the Haunted Hot Springs + - type: Spanish + title: Yuuna and the Haunted Hot Springs + - type: French + title: Yuuna and the Haunted Hot Springs + title: Yuragi-sou no Yuuna-san + title_english: Yuuna and the Haunted Hot Springs + title_japanese: ゆらぎ荘の幽奈さん + title_synonyms: + - Yuuna of Yuragi Manor + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-14T00:00:00+00:00' + to: '2018-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2018 + to: + day: 29 + month: 9 + year: 2018 + string: Jul 14, 2018 to Sep 29, 2018 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.98 + scored_by: 137249 + rank: 5260 + popularity: 857 + members: 328067 + favorites: 841 + synopsis: |- + Once a hot springs inn, now a boarding house with extraordinarily cheap rent, Yuragi-sou is virtually uninhabited save for a few peculiar residents. As rumor has it, it is haunted by a vile ghost which scares away all potential tenants. Therefore, it is the perfect refuge for Fuyuzora Kogarashi—a broke, homeless psychic seeking an affordable roof to stay under and ghosts to exorcise. + + Kogarashi prepares for a face-off against the ghost, only to find out it is not as malicious as the rumors made it out to be. Instead, it is the ghost of a beautiful, silver-haired girl whose only recollection of her life before death is her name: Yuuna. Even more baffling is that the other tenants of Yuragi-sou not only are able to see Yuuna as well, but each has their own supernatural ability. + + Amidst the chaos caused by his quirky fellow residents, Kogarashi attempts to uncover the regret that keeps Yuuna anchored to the world of the living, lest she become an evil spirit sentenced to spend her afterlife in hell. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 27 + type: anime + name: Xebec + url: https://myanimelist.net/anime/producer/27/Xebec + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35946 + url: https://myanimelist.net/anime/35946/Nanatsu_no_Taizai_Movie_1__Tenkuu_no_Torawarebito + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/91899.jpg + small_image_url: https://myanimelist.net/images/anime/1444/91899t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/91899l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/91899.webp + small_image_url: https://myanimelist.net/images/anime/1444/91899t.webp + large_image_url: https://myanimelist.net/images/anime/1444/91899l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rebPG4utg80?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito' + - type: Synonym + title: 'The Seven Deadly Sins: Prisoners of the Sky' + - type: Japanese + title: 劇場版 七つの大罪 天空の囚われ人 + - type: English + title: 'The Seven Deadly Sins the Movie: Prisoners of the Sky' + - type: German + title: 'The Seven Deadly Sins der Film: Prisoners of the Sky' + - type: Spanish + title: 'The Seven Deadly Sins la Película: Prisoners of the Sky' + - type: French + title: 'The Seven Deadly Sins le Film: Prisoners of the Sky' + title: 'Nanatsu no Taizai Movie 1: Tenkuu no Torawarebito' + title_english: 'The Seven Deadly Sins the Movie: Prisoners of the Sky' + title_japanese: 劇場版 七つの大罪 天空の囚われ人 + title_synonyms: + - 'The Seven Deadly Sins: Prisoners of the Sky' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-08-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 8 + year: 2018 + to: + day: null + month: null + year: null + string: Aug 18, 2018 + duration: 1 hr 39 min + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 185376 + rank: 4661 + popularity: 888 + members: 318812 + favorites: 343 + synopsis: "In search of a mystical ingredient known as Sky Fish, Meliodas and Hawk stumble upon a spring that suddenly\ + \ transports them to the Sky Temple: a breathtaking land above the clouds, inhabited by beings called Celestials.\ + \ Meliodas, however, looks strikingly similar to a local criminal called Solaad, and is imprisoned and shunned as\ + \ a result. Meanwhile, the kingdom of the Sky Temple prepares to defend the Great Oshiro's seal—said to harbour a\ + \ three thousand-year-old evil—from the malevolent Six Knights of Black, a group of demons who seek to destroy the\ + \ seal. However, the Demon Clan is successfully unleashed and terrorizes the land, prompting the remaining Seven Deadly\ + \ Sins and the Celestials to fight against their wicked foes. \n\nThe battle progresses well, until one of the Six\ + \ Knights awakens an \"Indura of Retribution,\" an uncontrollable beast from the Demon Realm. With its overwhelming\ + \ strength and sinister power, the Seven Deadly Sins and Celestial beings must now work together to defeat the creature\ + \ that threatens their very existence.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 21877 + url: https://myanimelist.net/anime/21877/High_Score_Girl + images: + jpg: + image_url: https://myanimelist.net/images/anime/1668/91345.jpg + small_image_url: https://myanimelist.net/images/anime/1668/91345t.jpg + large_image_url: https://myanimelist.net/images/anime/1668/91345l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1668/91345.webp + small_image_url: https://myanimelist.net/images/anime/1668/91345t.webp + large_image_url: https://myanimelist.net/images/anime/1668/91345l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/w0uPwT7nLQ4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: High Score Girl + - type: Japanese + title: ハイスコアガール + - type: English + title: Hi Score Girl + title: High Score Girl + title_english: Hi Score Girl + title_japanese: ハイスコアガール + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-14T00:00:00+00:00' + to: '2018-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2018 + to: + day: 29 + month: 9 + year: 2018 + string: Jul 14, 2018 to Sep 29, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.75 + scored_by: 147780 + rank: 1310 + popularity: 995 + members: 282801 + favorites: 3088 + synopsis: |- + The year is 1991, and arcade video games are the latest craze. Becoming a professional gamer is a far-fetched dream in an industry that has yet to spread its influence. Yet, that is the path sixth-grader Haruo Yaguchi wants to pursue. His aptitude for video games has earned him respect in local arcades and bestowed him with confidence and pride, both of which are shattered when fellow classmate Akira Oono easily defeats him in Street Fighter 2. + + Akira is rich, pretty, and smart—as close as can be to a perfect girl. But Haruo had never cared about these things as, despite his multiple shortcomings as a person, his supremacy in video games was, in his mind, undisputed. So, now that someone has appeared who can rival him, part of Haruo cannot help but loathe her. Another part, however, itches for somebody who can compete with him on equal terms, and Akira is more than capable. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 37569 + url: https://myanimelist.net/anime/37569/Sirius + images: + jpg: + image_url: https://myanimelist.net/images/anime/1456/94897.jpg + small_image_url: https://myanimelist.net/images/anime/1456/94897t.jpg + large_image_url: https://myanimelist.net/images/anime/1456/94897l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1456/94897.webp + small_image_url: https://myanimelist.net/images/anime/1456/94897t.webp + large_image_url: https://myanimelist.net/images/anime/1456/94897l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/K1zgQyxJDio?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sirius + - type: Synonym + title: Tenrou + - type: Japanese + title: 天狼〈シリウス〉 Sirius the Jaeger + - type: English + title: Sirius the Jaeger + title: Sirius + title_english: Sirius the Jaeger + title_japanese: 天狼〈シリウス〉 Sirius the Jaeger + title_synonyms: + - Tenrou + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-12T00:00:00+00:00' + to: '2018-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2018 + to: + day: 27 + month: 9 + year: 2018 + string: Jul 12, 2018 to Sep 27, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.96 + scored_by: 120102 + rank: 5367 + popularity: 1051 + members: 267778 + favorites: 702 + synopsis: |- + In the year 1930, vampires have infiltrated Tokyo to feast upon its unsuspecting citizens. As the number of victims continues to rise, the city's authorities decide to hire the Jaegers—a strange, diverse group of individuals tasked by the V Shipping Company to hunt down vampires around the world. Carrying musical instrument cases to disguise their identity, the Jaegers battle the vampires with the same mercilessness demonstrated by their foes. + + Yuliy, the Jaeger's most skilled warrior, is the sole survivor of a vampire raid on his home village. Using the strength granted by his werewolf blood, he works with his team to assist Tokyo's law enforcement with the city's vampire problem. Though under the pretense of helping the police, the Jaegers are actually fighting the vampires over the mystical Ark of Sirius. With its power to change the fate of the world, Yuliy and his friends must locate the artifact before the vampires can use it to achieve their destructive goals. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 37208 + url: https://myanimelist.net/anime/37208/Mo_Dao_Zu_Shi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1908/153734.jpg + small_image_url: https://myanimelist.net/images/anime/1908/153734t.jpg + large_image_url: https://myanimelist.net/images/anime/1908/153734l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1908/153734.webp + small_image_url: https://myanimelist.net/images/anime/1908/153734t.webp + large_image_url: https://myanimelist.net/images/anime/1908/153734l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1OQuhyIL6Fo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mo Dao Zu Shi + - type: Synonym + title: Modao Zushi + - type: Synonym + title: Grandmaster of Demonic Cultivation + - type: Synonym + title: The Founder of Diabolism + - type: Synonym + title: 'Mo Dao Zu Shi: Qianchen Pian' + - type: Synonym + title: 魔道祖师 前尘篇 + - type: Synonym + title: Madou Soshi + - type: Synonym + title: MDZS + - type: Japanese + title: 魔道祖师 + - type: English + title: The Master of Diabolism + title: Mo Dao Zu Shi + title_english: The Master of Diabolism + title_japanese: 魔道祖师 + title_synonyms: + - Modao Zushi + - Grandmaster of Demonic Cultivation + - The Founder of Diabolism + - 'Mo Dao Zu Shi: Qianchen Pian' + - 魔道祖师 前尘篇 + - Madou Soshi + - MDZS + type: ONA + source: Web novel + episodes: 15 + status: Finished Airing + airing: false + aired: + from: '2018-07-09T00:00:00+00:00' + to: '2018-10-06T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2018 + to: + day: 6 + month: 10 + year: 2018 + string: Jul 9, 2018 to Oct 6, 2018 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.43 + scored_by: 89154 + rank: 203 + popularity: 1099 + members: 256109 + favorites: 7207 + synopsis: |- + Xian: the state of immortality that all cultivators strive to achieve. However, there is a dark energy that lies underneath—the forbidden Mo Dao, or demonic path. Through an unfortunate series of tragedies, this is the path that cultivator Wei Wuxian experiments with during his teachings. His rise in power is accompanied by chaos and destruction, but his reign of terror comes to an abrupt end when the cultivation clans overpower him and he is killed by his closest ally. + + Thirteen years later, Wei Wuxian is reincarnated in the body of a lunatic and reunited with Lan Wangji, a former classmate of his. This marks the beginning of a supernatural mystery that plagues the clans and threatens to disrupt their everyday life. + + Mo Dao Zu Shi follows these two men on their mission to unravel the mysteries of the spiritual world. Fighting demons, ghosts, and even other cultivators, the two end up forming a bond that neither of them had ever expected. + + [Written by MAL Rewrite] + background: Mo Dao Zu Shi is an adaptation of the Chinese web novel of the same title, written by Mo Xiang Tong Xiu + (墨香铜臭). It won the Gold Award for "The Best Serial Animation Award" at the 15th China Animation Golden Dragon Awards + (第十五届中国动漫金龙奖). It also won "Best New Animation" at Xinguang Award (新光奖); the 7th China Xi'an International Original + Animation Competition. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1727 + type: anime + name: Tencent Video + url: https://myanimelist.net/anime/producer/1727/Tencent_Video + licensors: [] + studios: + - mal_id: 1350 + type: anime + name: B.CMAY PICTURES + url: https://myanimelist.net/anime/producer/1350/BCMAY_PICTURES + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 37491 + url: https://myanimelist.net/anime/37491/Gintama_Shirogane_no_Tamashii-hen_-_Kouhan-sen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1776/96566.jpg + small_image_url: https://myanimelist.net/images/anime/1776/96566t.jpg + large_image_url: https://myanimelist.net/images/anime/1776/96566l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1776/96566.webp + small_image_url: https://myanimelist.net/images/anime/1776/96566t.webp + large_image_url: https://myanimelist.net/images/anime/1776/96566l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E2rzD37MCSg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gintama. Shirogane no Tamashii-hen - Kouhan-sen + - type: Synonym + title: Gintama. Silver Soul Arc 2 + - type: Japanese + title: 銀魂. 銀ノ魂篇 後半戦 + - type: English + title: Gintama. Silver Soul Arc - Second Half War + title: Gintama. Shirogane no Tamashii-hen - Kouhan-sen + title_english: Gintama. Silver Soul Arc - Second Half War + title_japanese: 銀魂. 銀ノ魂篇 後半戦 + title_synonyms: + - Gintama. Silver Soul Arc 2 + type: TV + source: Manga + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2018-07-09T00:00:00+00:00' + to: '2018-10-08T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2018 + to: + day: 8 + month: 10 + year: 2018 + string: Jul 9, 2018 to Oct 8, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.88 + scored_by: 107556 + rank: 28 + popularity: 1245 + members: 226641 + favorites: 1101 + synopsis: |- + Following the temporary retreat of the Altana Liberation Army from the Kabuki District, the state of the war has seemingly improved. However, as the Oniwaban, Shinsengumi, and residents of the district combat the army's remnants, Edo's greatest inventor Gengai Hiraga is abducted. Responsible for causing the enemy's withdrawal by rendering their weapons useless, Gengai's nanomachine virus is now at risk of being shut down. + + Meanwhile, a laser capable of obliterating a planet is activated in Earth's orbit on the Liberation Army's mother ship. Another battle ensues when Shinsuke Takasugi and the rest of the Kiheitai arrive on the vessel to stop the weapon from firing. Forced to fight a war on two fronts, the Yorozuya and their allies must prevail on both sides to save Edo and the rest of the world. + + [Written by MAL Rewrite] + background: Gintama. Shirogane no Tamashii-hen - Kouhan-sen was released on Blu-ray and DVD from October 24, 2018, to + February 27, 2019. + season: summer + year: 2018 + broadcast: + day: Mondays + time: 01:35 + timezone: Asia/Tokyo + string: Mondays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37446 + url: https://myanimelist.net/anime/37446/Hyakuren_no_Haou_to_Seiyaku_no_Valkyria + images: + jpg: + image_url: https://myanimelist.net/images/anime/1585/95225.jpg + small_image_url: https://myanimelist.net/images/anime/1585/95225t.jpg + large_image_url: https://myanimelist.net/images/anime/1585/95225l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1585/95225.webp + small_image_url: https://myanimelist.net/images/anime/1585/95225t.webp + large_image_url: https://myanimelist.net/images/anime/1585/95225l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ol0Z3J2cx2Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hyakuren no Haou to Seiyaku no Valkyria + - type: Synonym + title: Hyakuren no Haou to Seiyaku no Ikusa Otome + - type: Japanese + title: 百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉 + - type: English + title: The Master of Ragnarok & Blesser of Einherjar + - type: German + title: The Master of Ragnarok & Blesser of Einherjar + - type: Spanish + title: The Master of Ragnarok & Blesser of Einherjar + - type: French + title: The Master of Ragnarok & Blesser of Einherjar + title: Hyakuren no Haou to Seiyaku no Valkyria + title_english: The Master of Ragnarok & Blesser of Einherjar + title_japanese: 百錬の覇王と聖約の戦乙女〈ヴァルキュリア〉 + title_synonyms: + - Hyakuren no Haou to Seiyaku no Ikusa Otome + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-08T00:00:00+00:00' + to: '2018-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2018 + to: + day: 23 + month: 9 + year: 2018 + string: Jul 8, 2018 to Sep 23, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.68 + scored_by: 98456 + rank: 12563 + popularity: 1311 + members: 213876 + favorites: 326 + synopsis: |- + Some urban legends are best left untested! Yuuto Suou gets more than he bargained for when he joins his childhood friend Mitsuki Shimoya in testing out an urban legend. When he uses his phone to take a picture of himself with the local shrine's divine mirror, he is whisked off into another world—one heavily steeped in the lore of the old Norse myths. + + Using his knowledge gained from school and from his solar-powered smartphone, he has the chance to bring the Wolf Clan, the same people who cared for him, to prominence, all while earning the adoration of a group of magic-wielding warrior maidens known as the Einherjar. + + (Source: J-Novel Club) + background: '' + season: summer + year: 2018 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1784 + type: anime + name: Crunchyroll SC Anime Fund + url: https://myanimelist.net/anime/producer/1784/Crunchyroll_SC_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 37396 + url: https://myanimelist.net/anime/37396/Shikioriori + images: + jpg: + image_url: https://myanimelist.net/images/anime/1529/93093.jpg + small_image_url: https://myanimelist.net/images/anime/1529/93093t.jpg + large_image_url: https://myanimelist.net/images/anime/1529/93093l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1529/93093.webp + small_image_url: https://myanimelist.net/images/anime/1529/93093t.webp + large_image_url: https://myanimelist.net/images/anime/1529/93093l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GHo2Tt6wLMU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shikioriori + - type: Synonym + title: 肆式青春 + - type: Synonym + title: Si Shi Qing Chun + - type: Japanese + title: 詩季織々(しきおりおり) + - type: English + title: Flavors of Youth + - type: German + title: 'Flavors of Youth: International Version' + - type: Spanish + title: 'Flavors of Youth: International Version' + - type: French + title: 'Flavors of Youth: International Version' + title: Shikioriori + title_english: Flavors of Youth + title_japanese: 詩季織々(しきおりおり) + title_synonyms: + - 肆式青春 + - Si Shi Qing Chun + type: Movie + source: Original + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2018-08-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 8 + year: 2018 + to: + day: null + month: null + year: null + string: Aug 4, 2018 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 104587 + rank: 4483 + popularity: 1417 + members: 196813 + favorites: 453 + synopsis: "The rigorous city life of China, while bustling and unforgiving, contains the everlasting memories of days\ + \ past. Three stories told in three different cities, Shikioriori follows the loss of youth and the daunting realization\ + \ of adulthood. \n\nThough reality may seem ever changing, unchangeable are the short-lived moments of one's childhood\ + \ days. A plentiful bowl of noodles, the beauty of family and the trials of first love endure the inevitable flow\ + \ of time, as three different characters explore the strength of bonds and the warmth of cherished memories. Within\ + \ the disorder of the present world, witness these quaint stories recognize the comfort of the past, and attempt to\ + \ revive the neglected flavors of youth. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 229 + type: anime + name: The Answer Studio + url: https://myanimelist.net/anime/producer/229/The_Answer_Studio + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1319 + type: anime + name: Tokyo Theatres + url: https://myanimelist.net/anime/producer/1319/Tokyo_Theatres + - mal_id: 1325 + type: anime + name: Haoliners Animation + url: https://myanimelist.net/anime/producer/1325/Haoliners_Animation + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: [] + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 36704 + url: https://myanimelist.net/anime/36704/Free_Dive_to_the_Future + images: + jpg: + image_url: https://myanimelist.net/images/anime/1243/95025.jpg + small_image_url: https://myanimelist.net/images/anime/1243/95025t.jpg + large_image_url: https://myanimelist.net/images/anime/1243/95025l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1243/95025.webp + small_image_url: https://myanimelist.net/images/anime/1243/95025t.webp + large_image_url: https://myanimelist.net/images/anime/1243/95025l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fCXaIXrIHWU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Free! Dive to the Future + - type: Synonym + title: Free! 3rd Season + - type: Japanese + title: Free!-Dive to the Future- + title: Free! Dive to the Future + title_english: null + title_japanese: Free!-Dive to the Future- + title_synonyms: + - Free! 3rd Season + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-12T00:00:00+00:00' + to: '2018-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2018 + to: + day: 27 + month: 9 + year: 2018 + string: Jul 12, 2018 to Sep 27, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 89277 + rank: 1758 + popularity: 1433 + members: 194687 + favorites: 620 + synopsis: "With the seniors having graduated from high school, the determined swimmers eagerly take on their futures\ + \ with a dream to fulfill. \n\nNow attending Hidaka University in Tokyo, Haruka Nanase unexpectedly runs into Shiina\ + \ Asahi, an old teammate and friend from his middle school days. Consequently, the troubling memories regarding his\ + \ middle school swim team resurface, as it was a time when Haruka's views on swimming became negative and led him\ + \ to quit the team. Haruka later reconnects with his other middle school classmates; all except for Ikuya Kirishima,\ + \ who still resents Haruka for quitting the team, resulting in its disbandment. Aware of the issues between them,\ + \ Haruka resolves to improve his friendship with Ikuya. However, he quickly realizes that making amends with an old\ + \ friend isn't his only obstacle. \n\nFacing the reality and challenges of encountering higher calibre swimmers, Haruka\ + \ must work hard to establish himself if he dreams of competing on an international level.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2018 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2147 + type: anime + name: Heart Company + url: https://myanimelist.net/anime/producer/2147/Heart_Company + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + - mal_id: 929 + type: anime + name: Animation Do + url: https://myanimelist.net/anime/producer/929/Animation_Do + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 36873 + url: https://myanimelist.net/anime/36873/Back_Street_Girls__Gokudolls + images: + jpg: + image_url: https://myanimelist.net/images/anime/1484/93140.jpg + small_image_url: https://myanimelist.net/images/anime/1484/93140t.jpg + large_image_url: https://myanimelist.net/images/anime/1484/93140l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1484/93140.webp + small_image_url: https://myanimelist.net/images/anime/1484/93140t.webp + large_image_url: https://myanimelist.net/images/anime/1484/93140l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kkTtdrG8s7M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Back Street Girls: Gokudolls' + - type: Synonym + title: 'Back Street Girls: Washira Idol Hajimemashita.' + - type: Synonym + title: Gokudols + - type: Japanese + title: Back Street Girls -ゴクドルズ + - type: English + title: 'Back Street Girls: Gokudols' + - type: German + title: 'Back Street Girls: GOKUDOLS' + - type: French + title: 'Back Street Girls: GOKUDOLS' + title: 'Back Street Girls: Gokudolls' + title_english: 'Back Street Girls: Gokudols' + title_japanese: Back Street Girls -ゴクドルズ + title_synonyms: + - 'Back Street Girls: Washira Idol Hajimemashita.' + - Gokudols + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-07-04T00:00:00+00:00' + to: '2018-09-05T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2018 + to: + day: 5 + month: 9 + year: 2018 + string: Jul 4, 2018 to Sep 5, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.99 + scored_by: 88773 + rank: 5168 + popularity: 1606 + members: 172192 + favorites: 798 + synopsis: "After failing their boss for the last time, yakuza members Kentarou, Ryou, and Kazuhiko are faced with one\ + \ of two choices: have their organs harvested and sold or take a trip to Thailand for sex reassignment surgery and\ + \ become pop idols. Now, after a year of excruciating training, the three thugs have been reborn as Airi, Chika, and\ + \ Mari. Debuting as the amateur idol group The Goku Dolls, the three strive towards becoming top idols.\n\nHowever,\ + \ despite the hours of feminizing brainwashing they were forced to endure, the three idols have managed to keep the\ + \ yakuza spirit alive in their hearts. In order to fix this, their yakuza boss hires Mandarin Kinoshita, a legendary\ + \ manager who has never had an idol group fail under his management. With their lives now on the line, the reluctant\ + \ yakuza must work with their new manager to unleash their inner cuteness and become the successful idols that their\ + \ tyrannical boss can truly be proud of. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2018 + broadcast: + day: Wednesdays + time: 01:00 + timezone: Asia/Tokyo + string: Wednesdays at 01:00 (JST) + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 37259 + url: https://myanimelist.net/anime/37259/Hanebado + images: + jpg: + image_url: https://myanimelist.net/images/anime/1288/93432.jpg + small_image_url: https://myanimelist.net/images/anime/1288/93432t.jpg + large_image_url: https://myanimelist.net/images/anime/1288/93432l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1288/93432.webp + small_image_url: https://myanimelist.net/images/anime/1288/93432t.webp + large_image_url: https://myanimelist.net/images/anime/1288/93432l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/njaPemKHPus?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hanebado! + - type: Synonym + title: The Badminton play of Ayano Hanesaki! + - type: Japanese + title: はねバド! + - type: English + title: Hanebado! + title: Hanebado! + title_english: Hanebado! + title_japanese: はねバド! + title_synonyms: + - The Badminton play of Ayano Hanesaki! + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-07-02T00:00:00+00:00' + to: '2018-10-01T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2018 + to: + day: 1 + month: 10 + year: 2018 + string: Jul 2, 2018 to Oct 1, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.86 + scored_by: 78171 + rank: 5915 + popularity: 1645 + members: 166361 + favorites: 378 + synopsis: |- + After her crushing defeat of 21-0 at the National Junior Badminton Tournament, Nagisa Aragaki's love for her sport begins to distort. Unable to deal with the shame of loss, she starts to terrorize the members of her high school badminton club. Her grueling drills bring some to the verge of tears while others quit the club outright. With the team losing members and new prospects being too terrified to join, the future of the badminton club looks exceptionally grim. + + That is, until Kentarou Tachibana joins as the new head coach. Not only is he an Olympic-level player, but he also comes bearing a secret weapon: Ayano Hanesaki, the girl who defeated Nagisa six months ago. However, Ayano is not the rival Nagisa remembers, but a girl with conflicted feelings wanting to distance herself from badminton. With her future in sports now on the line, Nagisa must find a way to face her fears of inadequacy, heal her rival's troubled heart, and bring victory to Kitakomachi High School's badminton club. + + [Written by MAL Rewrite] + background: Based on the manga series written by Kosuke Hamada, published by Kodansha since 2013. + season: summer + year: 2018 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + - mal_id: 2279 + type: anime + name: MediaLink Entertainment Limited + url: https://myanimelist.net/anime/producer/2279/MediaLink_Entertainment_Limited + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36817 + url: https://myanimelist.net/anime/36817/Sunohara-sou_no_Kanrinin-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1539/124746.jpg + small_image_url: https://myanimelist.net/images/anime/1539/124746t.jpg + large_image_url: https://myanimelist.net/images/anime/1539/124746l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1539/124746.webp + small_image_url: https://myanimelist.net/images/anime/1539/124746t.webp + large_image_url: https://myanimelist.net/images/anime/1539/124746l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jCPj1qQYVls?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sunohara-sou no Kanrinin-san + - type: Japanese + title: すのはら荘の管理人さん + - type: English + title: Miss Caretaker of Sunohara-sou + title: Sunohara-sou no Kanrinin-san + title_english: Miss Caretaker of Sunohara-sou + title_japanese: すのはら荘の管理人さん + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-07-05T00:00:00+00:00' + to: '2018-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2018 + to: + day: 20 + month: 9 + year: 2018 + string: Jul 5, 2018 to Sep 20, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 62724 + rank: 6822 + popularity: 1659 + members: 164433 + favorites: 450 + synopsis: |- + Aki Shiina has always been perceived as a girl because of his feminine appearance. Wishing to change himself and forget his past, he moves to a dorm and enrolls in a middle school in Tokyo. + + Arriving at his new home, Aki is welcomed warmly by the dorm's caretaker, Ayaka Sunohara, who immediately takes a liking to him. But he soon finds out that all of his new roommates are girls from the student council! The girls often tease Aki, seeing him as very girlish. However, still determined to become more masculine, Aki tries his best to help the people around him. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2018 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 36936 + url: https://myanimelist.net/anime/36936/Mirai_no_Mirai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1042/95674.jpg + small_image_url: https://myanimelist.net/images/anime/1042/95674t.jpg + large_image_url: https://myanimelist.net/images/anime/1042/95674l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1042/95674.webp + small_image_url: https://myanimelist.net/images/anime/1042/95674t.webp + large_image_url: https://myanimelist.net/images/anime/1042/95674l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oA7fQRdcFgU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mirai no Mirai + - type: Synonym + title: Mirai of the Future + - type: Japanese + title: 未来のミライ + - type: English + title: Mirai + - type: German + title: 'Mirai: Das Mädchen aus der Zukunft' + - type: Spanish + title: 'MIRAI: Mi Hermana Pequeña' + - type: French + title: Miraï, ma petite sœur + title: Mirai no Mirai + title_english: Mirai + title_japanese: 未来のミライ + title_synonyms: + - Mirai of the Future + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-07-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 7 + year: 2018 + to: + day: null + month: null + year: null + string: Jul 20, 2018 + duration: 1 hr 38 min + rating: PG - Children + score: 7.29 + scored_by: 73784 + rank: 3353 + popularity: 1749 + members: 153187 + favorites: 382 + synopsis: |- + In a quiet corner of the city, four-year-old Kun Oota has lived a spoiled life as an only child with his parents and the family dog, Yukko. But when his new baby sister Mirai is brought home, his simple life is thrown upside-down; suddenly, it isn't all about him anymore. Despite his tantrums and nagging, Mirai is seemingly now the subject of all his parents' love. + + To help him adapt to this drastic change, Kun is taken on an extraordinary journey through time, meeting his family's past, present, and future selves, as he learns not only what it means to be a part of a family, but also what it means to be an older brother. + + [Written by MAL Rewrite] + background: 'The film was nominated for Best Animated Feature Film at the 76th Golden Globe Awards, Best Animated Feature + at the 24th Critics'' Choice Awards and Best Animated Feature at the 91st Academy Awards. It is the sixth anime film, + and the first non-Ghibli anime film, to receive an Academy Award nomination in the category. The film also won Best + Animated Feature — Independent at the 46th Annie Awards. (Source: Wikipedia)' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1791 + type: anime + name: D.N. Dream Partners + url: https://myanimelist.net/anime/producer/1791/DN_Dream_Partners + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 595 + type: anime + name: NYAV Post + url: https://myanimelist.net/anime/producer/595/NYAV_Post + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 555 + type: anime + name: Studio Chizu + url: https://myanimelist.net/anime/producer/555/Studio_Chizu + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/36-2018-fall.yaml b/test/fixtures/jikan/season_matrix/36-2018-fall.yaml new file mode 100644 index 0000000..44027db --- /dev/null +++ b/test/fixtures/jikan/season_matrix/36-2018-fall.yaml @@ -0,0 +1,3394 @@ +metadata: + captured_at: '2026-05-11T11:33:59Z' + label: 2018-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2018/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:33:59 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:25162c684b59228cfdf93b119f9d95e175799e66 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 298 + per_page: 25 + data: + - mal_id: 37450 + url: https://myanimelist.net/anime/37450/Seishun_Buta_Yarou_wa_Bunny_Girl_Senpai_no_Yume_wo_Minai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1301/93586.jpg + small_image_url: https://myanimelist.net/images/anime/1301/93586t.jpg + large_image_url: https://myanimelist.net/images/anime/1301/93586l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1301/93586.webp + small_image_url: https://myanimelist.net/images/anime/1301/93586t.webp + large_image_url: https://myanimelist.net/images/anime/1301/93586l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/o0TZj_d3Yfg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai + - type: Synonym + title: AoButa + - type: Japanese + title: 青春ブタ野郎はバニーガール先輩の夢を見ない + - type: English + title: Rascal Does Not Dream of Bunny Girl Senpai + - type: German + title: Rascal Dpes Not Dream Of Bunny Girl Senpai + - type: Spanish + title: Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai) + - type: French + title: Rascal does not Dream of Bunny Girl Senpai (Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai) + title: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai + title_english: Rascal Does Not Dream of Bunny Girl Senpai + title_japanese: 青春ブタ野郎はバニーガール先輩の夢を見ない + title_synonyms: + - AoButa + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-10-04T00:00:00+00:00' + to: '2018-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2018 + to: + day: 27 + month: 12 + year: 2018 + string: Oct 4, 2018 to Dec 27, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.23 + scored_by: 1240026 + rank: 413 + popularity: 48 + members: 1960221 + favorites: 51142 + synopsis: |- + The rare and inexplicable Puberty Syndrome is thought of as a myth. It is a rare disease which only affects teenagers, and its symptoms are so supernatural that hardly anyone recognizes it as a legitimate occurrence. However, high school student Sakuta Azusagawa knows from personal experience that it is very much real, and happens to be quite prevalent in his school. + + Mai Sakurajima is a third-year high school student who gained fame in her youth as a child actress, but recently halted her promising career for reasons unknown to the public. With an air of unapproachability, she is well known throughout the school, but none dare interact with her—that is until Sakuta sees her wandering the library in a bunny girl costume. Despite the getup, no one seems to notice her, and after confronting her, he realizes that she is another victim of Puberty Syndrome. As Sakuta tries to help Mai through her predicament, his actions bring him into contact with more girls afflicted with the elusive disease. + + [Written by MAL Rewrite] + background: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai adapts the first 5 volumes of Hajime Kamoshida's + Seishun Buta Yarou Series light novels. + season: fall + year: 2018 + broadcast: + day: Thursdays + time: 02:20 + timezone: Asia/Tokyo + string: Thursdays at 02:20 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37430 + url: https://myanimelist.net/anime/37430/Tensei_shitara_Slime_Datta_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/1069/123309.jpg + small_image_url: https://myanimelist.net/images/anime/1069/123309t.jpg + large_image_url: https://myanimelist.net/images/anime/1069/123309l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1069/123309.webp + small_image_url: https://myanimelist.net/images/anime/1069/123309t.webp + large_image_url: https://myanimelist.net/images/anime/1069/123309l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bkQkyzXEXKE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Slime Datta Ken + - type: Synonym + title: TenSura + - type: Japanese + title: 転生したらスライムだった件 + - type: English + title: That Time I Got Reincarnated as a Slime + - type: German + title: That Time I Got Reincamrnated as a Slime + - type: Spanish + title: That Time I Got Reincarnated as a Slime + - type: French + title: That Time I Got Reincarnated as a Slime + title: Tensei shitara Slime Datta Ken + title_english: That Time I Got Reincarnated as a Slime + title_japanese: 転生したらスライムだった件 + title_synonyms: + - TenSura + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-10-02T00:00:00+00:00' + to: '2019-03-19T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2018 + to: + day: 19 + month: 3 + year: 2019 + string: Oct 2, 2018 to Mar 19, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 994243 + rank: 558 + popularity: 78 + members: 1644749 + favorites: 32947 + synopsis: "Thirty-seven-year-old Satoru Mikami is a typical corporate worker, who is perfectly content with his monotonous\ + \ lifestyle in Tokyo, other than failing to nail down a girlfriend even once throughout his life. In the midst of\ + \ a casual encounter with his colleague, he falls victim to a random assailant on the streets and is stabbed. However,\ + \ while succumbing to his injuries, a peculiar voice echoes in his mind, and recites a bunch of commands which the\ + \ dying man cannot make sense of.\n\nWhen Satoru regains consciousness, he discovers that he has reincarnated as a\ + \ goop of slime in an unfamiliar realm. In doing so, he acquires newfound skills—notably, the power to devour anything\ + \ and mimic its appearance and abilities. He then stumbles upon the sealed Catastrophe-level monster \"Storm Dragon\"\ + \ Veldora who had been sealed away for the past 300 years for devastating a town to ashes. Sympathetic to his predicament,\ + \ Satoru befriends him, promising to assist in destroying the seal. In return, Veldora bestows upon him the name Rimuru\ + \ Tempest to grant him divine protection. \n\nNow, liberated from the mundanities of his past life, Rimuru embarks\ + \ on a fresh journey with a distinct goal in mind. As he grows accustomed to his new physique, his gooey antics ripple\ + \ throughout the world, gradually altering his fate.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2018 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37349 + url: https://myanimelist.net/anime/37349/Goblin_Slayer + images: + jpg: + image_url: https://myanimelist.net/images/anime/1719/95621.jpg + small_image_url: https://myanimelist.net/images/anime/1719/95621t.jpg + large_image_url: https://myanimelist.net/images/anime/1719/95621l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1719/95621.webp + small_image_url: https://myanimelist.net/images/anime/1719/95621t.webp + large_image_url: https://myanimelist.net/images/anime/1719/95621l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6sdxN30qNrw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Goblin Slayer + - type: Japanese + title: ゴブリンスレイヤー + - type: English + title: Goblin Slayer + title: Goblin Slayer + title_english: Goblin Slayer + title_japanese: ゴブリンスレイヤー + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-07T00:00:00+00:00' + to: '2018-12-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2018 + to: + day: 30 + month: 12 + year: 2018 + string: Oct 7, 2018 to Dec 30, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.42 + scored_by: 733366 + rank: 2609 + popularity: 135 + members: 1234789 + favorites: 7693 + synopsis: "Goblins are known for their ferocity, cunning, and rapid reproduction, but their reputation as the lowliest\ + \ of monsters causes their threat to be overlooked. Raiding rural civilizations to kidnap females of other species\ + \ for breeding, these vile creatures are free to continue their onslaught as adventurers turn a blind eye in favor\ + \ of more rewarding assignments with larger bounties.\n\nTo commemorate her first day as a Porcelain-ranked adventurer,\ + \ the 15-year-old Priestess joins a band of young, enthusiastic rookies to investigate a tribe of goblins responsible\ + \ for the disappearance of several village women. Unprepared and inexperienced, the group soon faces its inevitable\ + \ demise from an ambush while exploring a cave. With no one else left standing, the terrified Priestess accepts her\ + \ fate—until the Goblin Slayer unexpectedly appears to not only rescue her with little effort, but destroy the entire\ + \ goblin nest. \n\nAs a holder of the prestigious Silver rank, the Goblin Slayer allows her to accompany him as he\ + \ assists the Adventurer's Guild in all goblin-related matters. Together with the Priestess, High Elf, Dwarf, and\ + \ Lizardman, the armored warrior will not rest until every single goblin in the frontier lands has been eradicated\ + \ for good.\n\n[Written by MAL Rewrite]" + background: Goblin Slayer adapts the first two volumes of the original light novel series. + season: fall + year: 2018 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 1900 + type: anime + name: Artist Management Office + url: https://myanimelist.net/anime/producer/1900/Artist_Management_Office + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 37991 + url: https://myanimelist.net/anime/37991/JoJo_no_Kimyou_na_Bouken_Part_5__Ougon_no_Kaze + images: + jpg: + image_url: https://myanimelist.net/images/anime/1882/94989.jpg + small_image_url: https://myanimelist.net/images/anime/1882/94989t.jpg + large_image_url: https://myanimelist.net/images/anime/1882/94989l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1882/94989.webp + small_image_url: https://myanimelist.net/images/anime/1882/94989t.webp + large_image_url: https://myanimelist.net/images/anime/1882/94989l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/R92KmKcg07Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 5: Ougon no Kaze' + - type: Synonym + title: 'JoJo''s Bizarre Adventure Part 5: Golden Wind' + - type: Synonym + title: 'JoJo no Kimyou na Bouken Part 5: Ougon no Kaze' + - type: Synonym + title: 'Le Bizzarre Avventure Di GioGio Parte 5: Vento Aureo' + - type: Japanese + title: ジョジョの奇妙な冒険 黄金の風 + - type: English + title: 'JoJo''s Bizarre Adventure: Golden Wind' + - type: German + title: 'Jojo''s Bizarre Adventure: Golden Wind' + - type: Spanish + title: 'Jojo''s Bizarre Adventure: Golden Wind' + - type: French + title: 'JoJo''s Bizarre Adventure: Golden Wind' + title: 'JoJo no Kimyou na Bouken Part 5: Ougon no Kaze' + title_english: 'JoJo''s Bizarre Adventure: Golden Wind' + title_japanese: ジョジョの奇妙な冒険 黄金の風 + title_synonyms: + - 'JoJo''s Bizarre Adventure Part 5: Golden Wind' + - 'JoJo no Kimyou na Bouken Part 5: Ougon no Kaze' + - 'Le Bizzarre Avventure Di GioGio Parte 5: Vento Aureo' + type: TV + source: Manga + episodes: 39 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: '2019-07-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: 28 + month: 7 + year: 2019 + string: Oct 6, 2018 to Jul 28, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.58 + scored_by: 786978 + rank: 121 + popularity: 143 + members: 1172105 + favorites: 35129 + synopsis: |- + In the coastal city of Naples, corruption is teeming—the police blatantly conspire with outlaws, drugs run rampant around the youth, and the mafia governs the streets with an iron fist. However, various fateful encounters will soon occur. + + Enter Giorno Giovanna, a 15-year-old boy with an eccentric connection to the Joestar family, who makes a living out of part-time jobs and pickpocketing. Furthermore, he is gifted with the unexplained Stand ability to give and create life—growing plants from the ground and turning inanimate objects into live animals, an ability he has dubbed "Gold Experience." Fascinated by the might of local gangsters, Giorno has dreamed of rising up in their ranks and becoming a "Gang-Star," a feat made possible by his encounter with Bruno Bucciarati, a member of the Passione gang with his own sense of justice. + + JoJo no Kimyou na Bouken: Ougon no Kaze follows the endeavors of Giorno after joining Bruno's team while working under Passione, fending off other gangsters and secretly plotting to overthrow their mysterious boss. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken: Ougon no Kaze is a full adaptation of the fifth part of the JoJo no Kimyou na + Bouken manga series.' + season: fall + year: 2018 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36474 + url: https://myanimelist.net/anime/36474/Sword_Art_Online__Alicization + images: + jpg: + image_url: https://myanimelist.net/images/anime/1993/93837.jpg + small_image_url: https://myanimelist.net/images/anime/1993/93837t.jpg + large_image_url: https://myanimelist.net/images/anime/1993/93837l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1993/93837.webp + small_image_url: https://myanimelist.net/images/anime/1993/93837t.webp + large_image_url: https://myanimelist.net/images/anime/1993/93837l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/W_XoPy-VNt0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online: Alicization' + - type: Synonym + title: Sword Art Online III + - type: Synonym + title: SAO Alicization + - type: Synonym + title: Sword Art Online 3 + - type: Synonym + title: SAO 3 + - type: Japanese + title: ソードアート・オンライン アリシゼーション + - type: English + title: 'Sword Art Online: Alicization' + - type: German + title: Sword Art Online Alicization + - type: Spanish + title: Sword Art Online Alicization + title: 'Sword Art Online: Alicization' + title_english: 'Sword Art Online: Alicization' + title_japanese: ソードアート・オンライン アリシゼーション + title_synonyms: + - Sword Art Online III + - SAO Alicization + - Sword Art Online 3 + - SAO 3 + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2018-10-07T00:00:00+00:00' + to: '2019-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2018 + to: + day: 31 + month: 3 + year: 2019 + string: Oct 7, 2018 to Mar 31, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.58 + scored_by: 676511 + rank: 1898 + popularity: 149 + members: 1144124 + favorites: 7617 + synopsis: |- + The Soul Translator is a state-of-the-art full-dive interface which interacts with the user's Fluctlight—the technological equivalent of a human soul—and fundamentally differs from the orthodox method of sending signals to the brain. The private institute Rath aims to perfect their creation by enlisting the aid of Sword Art Online survivor Kazuto Kirigaya. He works there as a part-time employee to test the system's capabilities in the Underworld: the fantastical realm generated by the Soul Translator. As per the confidentiality contract, any memories created by the machine in the virtual world are wiped upon returning to the real world. Kazuto can only vaguely recall a single name, Alice, which provokes a sense of unease when mentioned in reality. + + When Kazuto escorts Asuna Yuuki home one evening, they chance upon a familiar foe. Kazuto is mortally wounded in the ensuing fight and loses consciousness. When he comes to, he discovers that he has made a full-dive into the Underworld with seemingly no way to escape. He sets off on a quest, seeking a way back to the physical world once again. + + [Written by MAL Rewrite] + background: 'Sword Art Online: Alicization is an adaptation of volumes 9 through 14 of Reki Kawahara''s Sword Art Online + light novel series.' + season: fall + year: 2018 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 37799 + url: https://myanimelist.net/anime/37799/Tokyo_Ghoul_re_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1545/121995.jpg + small_image_url: https://myanimelist.net/images/anime/1545/121995t.jpg + large_image_url: https://myanimelist.net/images/anime/1545/121995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1545/121995.webp + small_image_url: https://myanimelist.net/images/anime/1545/121995t.webp + large_image_url: https://myanimelist.net/images/anime/1545/121995l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FYIUVr7URFI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Ghoul:re 2nd Season + - type: Synonym + title: Tokyo Kushu:re + - type: Synonym + title: Toukyou Kuushu:re + - type: Japanese + title: 東京喰種トーキョーグール:re 第2期 + - type: English + title: Tokyo Ghoul:re 2nd Season + - type: German + title: Tokyo Ghoul:re Teil 2 + - type: Spanish + title: Tokyo Ghoul:re Parte 2 + - type: French + title: Tokyo Ghoul:re Partie 2 + title: Tokyo Ghoul:re 2nd Season + title_english: Tokyo Ghoul:re 2nd Season + title_japanese: 東京喰種トーキョーグール:re 第2期 + title_synonyms: + - Tokyo Kushu:re + - Toukyou Kuushu:re + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-09T00:00:00+00:00' + to: '2018-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2018 + to: + day: 25 + month: 12 + year: 2018 + string: Oct 9, 2018 to Dec 25, 2018 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.47 + scored_by: 586552 + rank: 8370 + popularity: 195 + members: 987792 + favorites: 2996 + synopsis: |- + After the conclusion of the Tsukiyama Family Extermination Operation, the members of the Commission of Counter Ghouls (CCG) have grown exponentially in power and continue to pursue their goal of exterminating every ghoul in Japan. Having resigned from Quinx Squad, the now seemingly emotionless Haise Sasaki begins taking on more and more tasks from the CCG with no regard to the difficulty. Despite his vacant expressions, Ken Kaneki's memories are resurfacing in Haise, leaving him in a state of internal conflict. Meanwhile, his new coldhearted behavior is affecting the people around him. Quinx Squad are left in shambles, having to cope with the death of one of their members without the support of their former mentor. + + Amidst this turmoil, both Quinx Squad and Haise must continue to fulfill their duties to the CCG, whether willingly or not. However, the presence of a mysterious group behind the CCG has been made known to Haise, and certain whispers of corruption have not gone unheard by the Quinx Squad as well. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 1129 + type: anime + name: Pierrot Plus + url: https://myanimelist.net/anime/producer/1129/Pierrot_Plus + - mal_id: 1283 + type: anime + name: TC Entertainment + url: https://myanimelist.net/anime/producer/1283/TC_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 35972 + url: https://myanimelist.net/anime/35972/Fairy_Tail__Final_Series + images: + jpg: + image_url: https://myanimelist.net/images/anime/1536/93863.jpg + small_image_url: https://myanimelist.net/images/anime/1536/93863t.jpg + large_image_url: https://myanimelist.net/images/anime/1536/93863l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1536/93863.webp + small_image_url: https://myanimelist.net/images/anime/1536/93863t.webp + large_image_url: https://myanimelist.net/images/anime/1536/93863l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PVrKCN3D_RY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fairy Tail: Final Series' + - type: Synonym + title: Fairy Tail Season 3 + - type: Synonym + title: Fairy Tail (2018) + - type: Japanese + title: FAIRY TAIL ファイナルシリーズ + - type: English + title: Fairy Tail Final Series + - type: German + title: 'Fairy Tail: Final Season' + - type: Spanish + title: 'Fairy Tail: Final Season' + - type: French + title: 'Fairy Tail: Saison Finale' + title: 'Fairy Tail: Final Series' + title_english: Fairy Tail Final Series + title_japanese: FAIRY TAIL ファイナルシリーズ + title_synonyms: + - Fairy Tail Season 3 + - Fairy Tail (2018) + type: TV + source: Manga + episodes: 51 + status: Finished Airing + airing: false + aired: + from: '2018-10-07T00:00:00+00:00' + to: '2019-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2018 + to: + day: 29 + month: 9 + year: 2019 + string: Oct 7, 2018 to Sep 29, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.62 + scored_by: 276926 + rank: 1725 + popularity: 444 + members: 560350 + favorites: 5442 + synopsis: |- + Although Fairy Tail has disbanded and its members are now spread far across Fiore, Natsu Dragneel has not given up on reuniting the guild he and others once called home. Along with his companions Happy and Lucy Heartfilia, he will stop at nothing to keep Fairy Tail and its fiery spirit alive even as they face their most difficult trial yet—the invasion of Fiore by the Alvarez Empire's immense army and their all-too-familiar ruler. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Sundays + time: 07:00 + timezone: Asia/Tokyo + string: Sundays at 07:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37976 + url: https://myanimelist.net/anime/37976/Zombieland_Saga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1084/128208.jpg + small_image_url: https://myanimelist.net/images/anime/1084/128208t.jpg + large_image_url: https://myanimelist.net/images/anime/1084/128208l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1084/128208.webp + small_image_url: https://myanimelist.net/images/anime/1084/128208t.webp + large_image_url: https://myanimelist.net/images/anime/1084/128208l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O3VO4zinUOI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zombieland Saga + - type: Japanese + title: ゾンビランドサガ + - type: English + title: Zombie Land Saga + - type: German + title: Zombie Land Saga + - type: French + title: Zombie Land Saga + title: Zombieland Saga + title_english: Zombie Land Saga + title_japanese: ゾンビランドサガ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-04T00:00:00+00:00' + to: '2018-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2018 + to: + day: 20 + month: 12 + year: 2018 + string: Oct 4, 2018 to Dec 20, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.51 + scored_by: 255229 + rank: 2228 + popularity: 473 + members: 534409 + favorites: 3353 + synopsis: |- + Sakura Minamoto dreams of becoming an idol. Unfortunately, reality hits her like a truck, and she dies in a sudden traffic accident. Ten years later, she wakes up in Saga Prefecture, only to find herself a zombie with no memory of her past. While still coming to terms with her demise, she meets a man named Koutarou Tatsumi, who explains that he has resurrected her and six other zombie girls from different eras for the purpose of economically revitalizing Saga by means of an idol group. Assuming the role of an abrasive manager, Koutarou begins scheduling events; the girls go along with it, eventually deciding to name their idol group Franchouchou. + + An absurdly comedic take on the idol genre, Zombieland Saga tells the story of Franchouchou's heartwarming struggle to save Saga Prefecture while hiding their zombie identities and rediscovering their past lives. + + [Written by MAL Rewrite] + background: Zombieland Saga is an original anime production announced by Cygames in collaboration with Avex Pictures + and dugout, who are respectively producing the music and sound. The animation is done by studio MAPPA. Crunchyroll + is simulcasting the episodes, while Funimation is simuldubbing them. Both the opening and ending theme songs ("Adabana + Necromancy" and "Hikari e" respectively) are performed by Franchouchou. On October 8, 2018, a manga adaptation was + launched on Cygames' Cycomi website, which is being drawn by Megumu Soramichi (Rakudai Kishi no Cavalry). Zombieland + Saga won the Animation of the Year award in the Television category at the Tokyo Anime Award Festival in 2019. + season: fall + year: 2018 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 36946 + url: https://myanimelist.net/anime/36946/Dragon_Ball_Super__Broly + images: + jpg: + image_url: https://myanimelist.net/images/anime/1575/93498.jpg + small_image_url: https://myanimelist.net/images/anime/1575/93498t.jpg + large_image_url: https://myanimelist.net/images/anime/1575/93498l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1575/93498.webp + small_image_url: https://myanimelist.net/images/anime/1575/93498t.webp + large_image_url: https://myanimelist.net/images/anime/1575/93498l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YtxrwoAzDuM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dragon Ball Super: Broly' + - type: Japanese + title: ドラゴンボール超(スーパー) ブロリー + - type: English + title: 'Dragon Ball Super: Broly' + - type: German + title: 'Dragon ball Super der Film: Broly' + - type: Spanish + title: 'Dragon Ball Super la Película: Broly' + - type: French + title: 'Dragon Ball Super le Film: Broly' + title: 'Dragon Ball Super: Broly' + title_english: 'Dragon Ball Super: Broly' + title_japanese: ドラゴンボール超(スーパー) ブロリー + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-12-14T00:00:00+00:00' + to: null + prop: + from: + day: 14 + month: 12 + year: 2018 + to: + day: null + month: null + year: null + string: Dec 14, 2018 + duration: 1 hr 40 min + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 325303 + rank: 427 + popularity: 560 + members: 470121 + favorites: 3587 + synopsis: |- + Forty-one years ago on Planet Vegeta, home of the infamous Saiyan warrior race, King Vegeta noticed a baby named Broly whose latent power exceeded that of his own son. Believing that Broly's power would one day surpass that of his child, Vegeta, the king sends Broly to the desolate planet Vampa. Broly's father Paragus follows after him, intent on rescuing his son. However, his ship gets damaged, causing the two to spend years trapped on the barren world, unaware of the salvation that would one day come from an unlikely ally. + + Years later on Earth, Gokuu Son and Prince Vegeta—believed to be the last survivors of the Saiyan race—are busy training on a remote island. But their sparring is interrupted when the appearance of their old enemy Frieza drives them to search for the last of the wish-granting Dragon Balls on a frozen continent. Once there, Frieza shows off his new allies: Paragus and the now extremely powerful Broly. A legendary battle that shakes the foundation of the world ensues as Gokuu and Vegeta face off against Broly, a warrior without equal whose rage is just waiting to be unleashed. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37475 + url: https://myanimelist.net/anime/37475/Kishuku_Gakkou_no_Juliet + images: + jpg: + image_url: https://myanimelist.net/images/anime/1908/93416.jpg + small_image_url: https://myanimelist.net/images/anime/1908/93416t.jpg + large_image_url: https://myanimelist.net/images/anime/1908/93416l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1908/93416.webp + small_image_url: https://myanimelist.net/images/anime/1908/93416t.webp + large_image_url: https://myanimelist.net/images/anime/1908/93416l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z9qlvLoZH8k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kishuku Gakkou no Juliet + - type: Synonym + title: Kishukugakkou no Juliet + - type: Japanese + title: 寄宿学校のジュリエット + - type: English + title: Boarding School Juliet + - type: German + title: Boarding School Juliet + - type: Spanish + title: Juliet en el Internado + - type: French + title: Juliet au pensionnat + title: Kishuku Gakkou no Juliet + title_english: Boarding School Juliet + title_japanese: 寄宿学校のジュリエット + title_synonyms: + - Kishukugakkou no Juliet + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: '2018-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: 22 + month: 12 + year: 2018 + string: Oct 6, 2018 to Dec 22, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.46 + scored_by: 196915 + rank: 2439 + popularity: 646 + members: 416300 + favorites: 2175 + synopsis: |- + We lay our scene in the fair Dahlia Academy, where two countries, both alike in dignity, come together; the "Black Doggies" of the Eastern Nation of Touwa and "White Cats" of the Principality of West have a longstanding feud. Romio Inuzuka and Juliet Persia, leaders of their respective dorms, seem to be bitter enemies. + + In reality, however, Romio and Juliet are hopelessly in love, but revealing their relationship would call upon the ire of all their comrades. They hide their love to maintain peace, but a clandestine relationship means they miss out on many of the activities couples get to do. As they grow closer together, Romio and Juliet must come to terms with the fact that keeping their relationship a secret may prove to be impossible. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37786 + url: https://myanimelist.net/anime/37786/Yagate_Kimi_ni_Naru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1783/96153.jpg + small_image_url: https://myanimelist.net/images/anime/1783/96153t.jpg + large_image_url: https://myanimelist.net/images/anime/1783/96153l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1783/96153.webp + small_image_url: https://myanimelist.net/images/anime/1783/96153t.webp + large_image_url: https://myanimelist.net/images/anime/1783/96153l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9Tua7jvQgUs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yagate Kimi ni Naru + - type: Synonym + title: YagaKimi + - type: Synonym + title: Eventually + - type: Synonym + title: I Will Become You + - type: Japanese + title: やがて君になる + - type: English + title: Bloom Into You + - type: German + title: Bloom Into You + - type: French + title: Bloom Into You + title: Yagate Kimi ni Naru + title_english: Bloom Into You + title_japanese: やがて君になる + title_synonyms: + - YagaKimi + - Eventually + - I Will Become You + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-10-05T00:00:00+00:00' + to: '2018-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2018 + to: + day: 28 + month: 12 + year: 2018 + string: Oct 5, 2018 to Dec 28, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 161793 + rank: 979 + popularity: 712 + members: 384196 + favorites: 7059 + synopsis: "Yuu Koito has always been entranced with romantic shoujo manga and the lyrics of love songs. She patiently\ + \ waits for the wings of love to sprout and send her heart aflutter on the day that she finally receives a confession.\ + \ Yet, when her classmate from junior high declares his love for her during their graduation, she feels unexpectedly\ + \ hollow. The realization hits her: she understands romance as a concept, but she is incapable of experiencing the\ + \ feeling first-hand.\n \nNow, having enrolled in high school, Yuu, disconcerted and dispirited, is still ruminating\ + \ over how to respond to her suitor. There, she happens upon the seemingly flawless student council president, Touko\ + \ Nanami, maturely rejecting a confession of her own. Stirred by Touko's elegant manner, Yuu approaches her for advice,\ + \ only to be bewildered when the president confesses to her! Yuu quickly finds herself in the palm of Touko's hand,\ + \ and unknowingly sets herself on a path to find the emotion which has long eluded her.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2018 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37497 + url: https://myanimelist.net/anime/37497/Irozuku_Sekai_no_Ashita_kara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1424/93855.jpg + small_image_url: https://myanimelist.net/images/anime/1424/93855t.jpg + large_image_url: https://myanimelist.net/images/anime/1424/93855l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1424/93855.webp + small_image_url: https://myanimelist.net/images/anime/1424/93855t.webp + large_image_url: https://myanimelist.net/images/anime/1424/93855l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uXBvcLemyG4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Irozuku Sekai no Ashita kara + - type: Japanese + title: 色づく世界の明日から + - type: English + title: 'Iroduku: The World in Colors' + - type: German + title: 'Iroduku: The World in Colors' + - type: Spanish + title: 'Iroduku: El Mundo en Colores' + - type: French + title: 'Iroduku: Le Monde en couleur' + title: Irozuku Sekai no Ashita kara + title_english: 'Iroduku: The World in Colors' + title_japanese: 色づく世界の明日から + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: '2018-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: 29 + month: 12 + year: 2018 + string: Oct 6, 2018 to Dec 29, 2018 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 141935 + rank: 2110 + popularity: 755 + members: 364521 + favorites: 2391 + synopsis: |- + Despite the kaleidoscopic magic ingrained in everyday life, Hitomi Tsukishiro's monochrome world is deprived of emotion and feeling. On a night as black and white as any other, amidst the fireworks spreading across the sky, Hitomi's grandmother Kohaku conjures a spell, for which she has been harnessing the moon's light for 60 years, to send Hitomi back in time to the year 2018 when Kohaku was in high school. + + Hitomi's mission seems unclear, but her grandmother assures her that she will know when she gets there. Following a trip through time aboard a train driven by a strange yellow creature, Hitomi finds herself in stoic artist Yuito Aoi's room, and his drawings flood her world with color. What is Hitomi's purpose there, and why do Yuito's drawings return such breathtaking color to her drab world? + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 37965 + url: https://myanimelist.net/anime/37965/Kaze_ga_Tsuyoku_Fuiteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1936/129119.jpg + small_image_url: https://myanimelist.net/images/anime/1936/129119t.jpg + large_image_url: https://myanimelist.net/images/anime/1936/129119l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1936/129119.webp + small_image_url: https://myanimelist.net/images/anime/1936/129119t.webp + large_image_url: https://myanimelist.net/images/anime/1936/129119l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ANzTSVvgXVI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaze ga Tsuyoku Fuiteiru + - type: Synonym + title: Kaze ga Tsuyoku Fuite Iru + - type: Synonym + title: Kazetsuyo + - type: Japanese + title: 風が強く吹いている + - type: English + title: Run with the Wind + - type: German + title: Run with the Wind + - type: Spanish + title: Run with the Wind + - type: French + title: Run with the Wind + title: Kaze ga Tsuyoku Fuiteiru + title_english: Run with the Wind + title_japanese: 風が強く吹いている + title_synonyms: + - Kaze ga Tsuyoku Fuite Iru + - Kazetsuyo + type: TV + source: Novel + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2018-10-03T00:00:00+00:00' + to: '2019-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2018 + to: + day: 27 + month: 3 + year: 2019 + string: Oct 3, 2018 to Mar 27, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.38 + scored_by: 151680 + rank: 244 + popularity: 834 + members: 335797 + favorites: 6536 + synopsis: |- + Former ace runner of Sendai Josei High School, Kakeru Kurahara is chased away from a convenience store for shoplifting. Shaking off his pursuer, he runs into Haiji Kiyose, another student from his university. Haiji is impressed by Kakeru's agility and persuades him to live in Chikusei-sou, the run-down apartment where Haiji resides along with eight other students. Having lost his entire apartment deposit at a mahjong parlor, Kakeru accepts the offer reluctantly. + + However, Haiji reveals a secret during Kakeru's welcoming party: the apartment is actually the dormitory of the Kansei University Track Club. He unveils his ultimate goal of participating in the Hakone Ekiden—one of the most prominent university marathon relay races in Japan. Unfortunately, all the residents apart from Haiji and Kakeru are complete running novices. Worse still, none of the inhabitants are even remotely interested in being involved with Haiji's ridiculous plan! With only months before the deadline, will the fourth-year student be able to convince them otherwise and realize his elusive dream of running in the Hakone Ekiden? + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Wednesdays + time: 01:29 + timezone: Asia/Tokyo + string: Wednesdays at 01:29 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1792 + type: anime + name: Yomiuri Shimbun + url: https://myanimelist.net/anime/producer/1792/Yomiuri_Shimbun + - mal_id: 2279 + type: anime + name: MediaLink Entertainment Limited + url: https://myanimelist.net/anime/producer/2279/MediaLink_Entertainment_Limited + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 36286 + url: https://myanimelist.net/anime/36286/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_-_Memory_Snow + images: + jpg: + image_url: https://myanimelist.net/images/anime/1081/95707.jpg + small_image_url: https://myanimelist.net/images/anime/1081/95707t.jpg + large_image_url: https://myanimelist.net/images/anime/1081/95707l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1081/95707.webp + small_image_url: https://myanimelist.net/images/anime/1081/95707t.webp + large_image_url: https://myanimelist.net/images/anime/1081/95707l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HI3JBI5pENg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow + - type: Synonym + title: 'Re: Life in a different world from zero' + - type: Synonym + title: ReZero + - type: Synonym + title: Re:Zero kara Hajimeru Isekai Seikatsu OVA + - type: Japanese + title: Re:ゼロから始める異世界生活 Memory Snow + - type: English + title: Re:ZERO -Starting Life in Another World- Memory Snow + title: Re:Zero kara Hajimeru Isekai Seikatsu - Memory Snow + title_english: Re:ZERO -Starting Life in Another World- Memory Snow + title_japanese: Re:ゼロから始める異世界生活 Memory Snow + title_synonyms: + - 'Re: Life in a different world from zero' + - ReZero + - Re:Zero kara Hajimeru Isekai Seikatsu OVA + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: null + month: null + year: null + string: Oct 6, 2018 + duration: 1 hr + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 176720 + rank: 1895 + popularity: 850 + members: 331332 + favorites: 697 + synopsis: |- + Subaru Natsuki finally gets to take a breather, but he does not waste any time as he prepares for a date with his beloved Emilia. He scouts the nearby village for the right dating spot, and with the help of the village children, he finds a wonderful location. With that, he is well prepared for his date! + + Unfortunately for Subaru, cold weather suddenly sweeps across Roswaal's mansion on his important day, leaving him with no choice but to postpone the date. Overnight, it becomes even colder and unbearable. Subaru must get to the bottom of this because, at this rate, his date will be the least of his worries. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 35847 + url: https://myanimelist.net/anime/35847/SSSSGridman + images: + jpg: + image_url: https://myanimelist.net/images/anime/1973/95616.jpg + small_image_url: https://myanimelist.net/images/anime/1973/95616t.jpg + large_image_url: https://myanimelist.net/images/anime/1973/95616l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1973/95616.webp + small_image_url: https://myanimelist.net/images/anime/1973/95616t.webp + large_image_url: https://myanimelist.net/images/anime/1973/95616l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kZdZmbvln4g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: SSSS.Gridman + - type: Japanese + title: SSSS.GRIDMAN + - type: English + title: SSSS.Gridman + title: SSSS.Gridman + title_english: SSSS.Gridman + title_japanese: SSSS.GRIDMAN + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-07T00:00:00+00:00' + to: '2018-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2018 + to: + day: 23 + month: 12 + year: 2018 + string: Oct 7, 2018 to Dec 23, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.14 + scored_by: 139166 + rank: 4355 + popularity: 869 + members: 325286 + favorites: 1445 + synopsis: |- + Yuuta Hibiki wakes up in the room of Rikka Takarada and notices two things: he has no memories, and he can hear a mysterious voice calling his name from a nearby room. On further inspection, he finds a robot—which introduces itself as Hyper Agent Gridman—behind the screen of an old computer. Much to Yuuta's surprise, Rikka cannot hear Gridman, nor can she see the ominous monsters looming over a thick fog as it envelopes the town outside. + + Another giant monster materializes in the city and proceeds to wreak havoc. Amidst the confusion, Yuuta is once again drawn to the old computer and merges with Gridman. Suddenly, he appears in the middle of the battle and is forced to fight the monster. Together with Rikka and fellow classmate Shou Utsumi, Yuuta forms the "Gridman Alliance" to defeat the monsters plaguing the city and find whoever is responsible for their emergence. + + [Written by MAL Rewrite] + background: SSSS.Gridman is an anime adaptation of the Tokusatsu show, Hyper-Agent Gridman, created by Tsuburaya Productions. + The original aired in 1993-1994, and much like other Tokusatsu shows featured live-action, costumed actors fighting + against giant monsters. The original Gridman was adapted into The Superhuman Samurai Syber-Squad. It was inspired + by Ultraman, another Tokusatsu franchise created by Tsuburaya Productions. The series won the 50th Seiun Award for + Best Dramatic Presentation in 2019. + season: fall + year: 2018 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 453 + type: anime + name: Tsuburaya Productions + url: https://myanimelist.net/anime/producer/453/Tsuburaya_Productions + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + demographics: [] + - mal_id: 36432 + url: https://myanimelist.net/anime/36432/Toaru_Majutsu_no_Index_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1583/93857.jpg + small_image_url: https://myanimelist.net/images/anime/1583/93857t.jpg + large_image_url: https://myanimelist.net/images/anime/1583/93857l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1583/93857.webp + small_image_url: https://myanimelist.net/images/anime/1583/93857t.webp + large_image_url: https://myanimelist.net/images/anime/1583/93857l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cigp3w-ZVKU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Majutsu no Index III + - type: Synonym + title: Toaru Majutsu no Index 3 + - type: Synonym + title: Toaru Majutsu no Kinsho Mokuroku 3 + - type: Japanese + title: とある魔術の禁書目録Ⅲ + - type: English + title: A Certain Magical Index III + - type: German + title: A Certain Magical Index III + - type: Spanish + title: A Certain Magical Index III + - type: French + title: A Certain Magical Index III + title: Toaru Majutsu no Index III + title_english: A Certain Magical Index III + title_japanese: とある魔術の禁書目録Ⅲ + title_synonyms: + - Toaru Majutsu no Index 3 + - Toaru Majutsu no Kinsho Mokuroku 3 + type: TV + source: Light novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2018-10-05T00:00:00+00:00' + to: '2019-04-05T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2018 + to: + day: 5 + month: 4 + year: 2019 + string: Oct 5, 2018 to Apr 5, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.84 + scored_by: 110463 + rank: 6061 + popularity: 1030 + members: 273689 + favorites: 842 + synopsis: |- + Touma Kamijou can't catch a break. After the invasion of Academy City, political tensions continue to rise as both the science and magic factions collide head on. It appears that Academy City intends to declare war against the Roman Catholic Church, consequently plunging the whole world into global warfare. Touma soon finds himself on the front lines once again, striving to protect his friends and allies. + + Toaru Majutsu no Index III serves as the last installment of the original franchise as Touma, Accelerator, and the true Level 0 Shiage Hamazura continue their separate journeys, leading up to the final act of the original light novel series. + + [Written by MAL Rewrite] + background: Toaru Majutsu no Index III adapts novels 14 to 22 of Kazuma Kamachi's light novel series of the same title. + season: fall + year: 2018 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 38249 + url: https://myanimelist.net/anime/38249/Saiki_Kusuo_no_Ψ-nan__Kanketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1159/95661.jpg + small_image_url: https://myanimelist.net/images/anime/1159/95661t.jpg + large_image_url: https://myanimelist.net/images/anime/1159/95661l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1159/95661.webp + small_image_url: https://myanimelist.net/images/anime/1159/95661t.webp + large_image_url: https://myanimelist.net/images/anime/1159/95661l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Saiki Kusuo no Ψ-nan: Kanketsu-hen' + - type: Synonym + title: Saiki Kusuo no Psi Nan 3 + - type: Japanese + title: 斉木楠雄のΨ難 完結編 + - type: English + title: The Disastrous Life of Saiki K. Final Arc + - type: Spanish + title: The Disastrous Life of Saiki K. Temporada 3 + title: 'Saiki Kusuo no Ψ-nan: Kanketsu-hen' + title_english: The Disastrous Life of Saiki K. Final Arc + title_japanese: 斉木楠雄のΨ難 完結編 + title_synonyms: + - Saiki Kusuo no Psi Nan 3 + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2018-12-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 12 + year: 2018 + to: + day: null + month: null + year: null + string: Dec 28, 2018 + duration: 47 min + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 147894 + rank: 437 + popularity: 1134 + members: 249622 + favorites: 437 + synopsis: |- + The ground shakes, a rumble follows, and before anyone in Japan can prepare themselves, a cataclysmic volcanic eruption engulfs the country in molten lava and suffocating ashes. Of course, high school student Kusou Saiki repeatedly uses his psychic powers to prevent this harrowing catastrophe. + + But between restoring the planet and watching his friends discuss their aspirations, Saiki finally resolves to stop the eruption and allow the world to continue spinning. However, this straightforward task is challenging even for the most powerful of psychics, let alone one who must deal with the usual shenanigans his ludicrous friends present. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37989 + url: https://myanimelist.net/anime/37989/Golden_Kamuy_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1180/95018.jpg + small_image_url: https://myanimelist.net/images/anime/1180/95018t.jpg + large_image_url: https://myanimelist.net/images/anime/1180/95018l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1180/95018.webp + small_image_url: https://myanimelist.net/images/anime/1180/95018t.webp + large_image_url: https://myanimelist.net/images/anime/1180/95018l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2PDY8LgeS-o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Golden Kamuy 2nd Season + - type: Synonym + title: Golden Kamuy Second Season + - type: Japanese + title: ゴールデンカムイ + - type: English + title: Golden Kamuy Season 2 + - type: German + title: Golden Kamui Staffel 2 + - type: Spanish + title: Golden Kamuy Temporada 2 + - type: French + title: Golden Kamui Saison 2 + title: Golden Kamuy 2nd Season + title_english: Golden Kamuy Season 2 + title_japanese: ゴールデンカムイ + title_synonyms: + - Golden Kamuy Second Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-08T00:00:00+00:00' + to: '2018-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2018 + to: + day: 24 + month: 12 + year: 2018 + string: Oct 8, 2018 to Dec 24, 2018 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.25 + scored_by: 130435 + rank: 377 + popularity: 1184 + members: 239372 + favorites: 1037 + synopsis: |- + In Hokkaido, it is rumored that there is a stash of hidden gold. This gold was supposedly stolen by a man who killed the original Ainu owners; and before being captured and imprisoned by the police, he hid it in a secret location. In order to relay the gold's location to his comrades on the outside, he tattooed the map on the bodies of his cellmates and promised them a share of the gold—provided they managed to escape and find it. + + First Lieutenant Tokushirou Tsurumi plans to give the 7th Division an advantage in the war for the tattoos by getting a taxidermist to create skins that only he can distinguish as fake. Meanwhile, Saichi Sugimoto, Asirpa, and their companions continue their hunt for the skins by following a strange rumor: a thief who broke into a home in Yubari found taxidermied human corpses, among which was a torso with strange tattoos. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1393 + type: anime + name: Geno Studio + url: https://myanimelist.net/anime/producer/1393/Geno_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 37202 + url: https://myanimelist.net/anime/37202/Radiant + images: + jpg: + image_url: https://myanimelist.net/images/anime/1318/95345.jpg + small_image_url: https://myanimelist.net/images/anime/1318/95345t.jpg + large_image_url: https://myanimelist.net/images/anime/1318/95345l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1318/95345.webp + small_image_url: https://myanimelist.net/images/anime/1318/95345t.webp + large_image_url: https://myanimelist.net/images/anime/1318/95345l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qZwtUu3p1zg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Radiant + - type: Japanese + title: ラディアン + - type: English + title: Radiant + title: Radiant + title_english: Radiant + title_japanese: ラディアン + title_synonyms: [] + type: TV + source: Other + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: '2019-02-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: 23 + month: 2 + year: 2019 + string: Oct 6, 2018 to Feb 23, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.88 + scored_by: 86211 + rank: 5815 + popularity: 1221 + members: 231846 + favorites: 470 + synopsis: |- + Nemeses—powerful and mysterious demonic entities that fall from the sky and vaporize anything they touch. The only ones who can combat these creatures are Sorcerers, those who have survived an encounter with a Nemesis but were infected in the process. + + Seth, a Sorcerer from Pompo Hills, sets out on an adventure to exterminate all these Nemeses. Accompanying him are Doc and Mélie, fellow Sorcerers who share his ideal. Their main objective is to bring about a world where Sorcerers are no longer persecuted for being infected, and to that end, desire to destroy the source of the Nemeses themselves: the mythical Radiant. + + [Written by MAL Rewrite] + background: Radiant is an adaptation of the French comic written by Tony Valente. + season: fall + year: 2018 + broadcast: + day: Saturdays + time: '17:35' + timezone: Asia/Tokyo + string: Saturdays at 17:35 (JST) + producers: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 919 + type: anime + name: Ankama + url: https://myanimelist.net/anime/producer/919/Ankama + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 36653 + url: https://myanimelist.net/anime/36653/Tsurune__Kazemai_Koukou_Kyuudou-bu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1360/93571.jpg + small_image_url: https://myanimelist.net/images/anime/1360/93571t.jpg + large_image_url: https://myanimelist.net/images/anime/1360/93571l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1360/93571.webp + small_image_url: https://myanimelist.net/images/anime/1360/93571t.webp + large_image_url: https://myanimelist.net/images/anime/1360/93571l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6w_GwGdk8_0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tsurune: Kazemai Koukou Kyuudou-bu' + - type: Japanese + title: ツルネ ―風舞高校弓道部― + - type: English + title: 'Tsurune: Kazemai High School Kyudo Club' + - type: German + title: Tsurune + - type: Spanish + title: Tsurune + - type: French + title: Tsurune + title: 'Tsurune: Kazemai Koukou Kyuudou-bu' + title_english: 'Tsurune: Kazemai High School Kyudo Club' + title_japanese: ツルネ ―風舞高校弓道部― + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-10-22T00:00:00+00:00' + to: '2019-01-21T00:00:00+00:00' + prop: + from: + day: 22 + month: 10 + year: 2018 + to: + day: 21 + month: 1 + year: 2019 + string: Oct 22, 2018 to Jan 21, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 70462 + rank: 1475 + popularity: 1532 + members: 180841 + favorites: 1326 + synopsis: |- + "Tsurune"—It's the sound made by the bowstring when an arrow is released, and the sound that inspired Minato Narumiya to learn kyudo, a modern Japanese martial art focusing on archery. However, an incident during his last middle school tournament caused him to quit the sport. + + But soon, many factors conspire to make Minato take up the bow once again: the start of a new kyudo club in his high school, a chance encounter with a mysterious archer, and the support of his childhood friends, Seiya Takehaya and Ryouhei Yamanouchi. Together with his childhood friends and his new teammates, Kaito Onogi and Nanao Kisaragi, Minato rekindles his love for kyudo and works with his team toward their aim of winning the prefectural tournament. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37597 + url: https://myanimelist.net/anime/37597/Dakaretai_Otoko_1-i_ni_Odosarete_Imasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1402/95620.jpg + small_image_url: https://myanimelist.net/images/anime/1402/95620t.jpg + large_image_url: https://myanimelist.net/images/anime/1402/95620l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1402/95620.webp + small_image_url: https://myanimelist.net/images/anime/1402/95620t.webp + large_image_url: https://myanimelist.net/images/anime/1402/95620l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/y5-vN3E7k5c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dakaretai Otoko 1-i ni Odosarete Imasu. + - type: Synonym + title: Dakaretai Otoko Ichii ni Odosarete Imasu. + - type: Synonym + title: Dakaretai Otoko No.1 ni Odosareteimasu. + - type: Japanese + title: 抱かれたい男1位に脅されています。 + - type: English + title: 'Dakaichi: I''m Being Harassed By the Sexiest Man of the Year' + - type: German + title: Dakaichi - I'm being harassed by the Sexiest Man of the Year. + - type: Spanish + title: Dakaichi - I'm being harassed by the Sexiest Man of the Year. + - type: French + title: Dakaichi - I'm being harassed by the Sexiest Man of the Year. + title: Dakaretai Otoko 1-i ni Odosarete Imasu. + title_english: 'Dakaichi: I''m Being Harassed By the Sexiest Man of the Year' + title_japanese: 抱かれたい男1位に脅されています。 + title_synonyms: + - Dakaretai Otoko Ichii ni Odosarete Imasu. + - Dakaretai Otoko No.1 ni Odosareteimasu. + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2018-10-06T00:00:00+00:00' + to: '2018-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2018 + to: + day: 29 + month: 12 + year: 2018 + string: Oct 6, 2018 to Dec 29, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 89041 + rank: 3031 + popularity: 1560 + members: 177471 + favorites: 1925 + synopsis: |- + Takato Saijou has held the title of "Sexiest Man of the Year" for five years running. He is an accomplished actor, with 20 years of experience under his belt, and is aware his good looks are well above average. Proud of his career, Takato regards the title as an appropriate indicator of his success. + + But when his reign is ended by acting newbie Junta Azumaya, who debuted only three years ago, Takato's initial shock gives way to jealous hostility. Even in the new drama that he has been cast in, Junta seems to have suddenly surpassed him; snatching Takato's usual spot of lead actor, Junta continually manages to get on his nerves. Most infuriating of all are the bright smile and kind words that accompany everything Junta does. + + All this animosity comes to a head, however, when Junta catches Takato in a rather vulnerable drunken state. Endangering his own public image, Takato confronts the junior actor with harsh words and angry comments—an opportunity Junta takes every advantage of. With the famous actor Takato Saijou now on video picking a fight with a co-star, Junta has the perfect means to blackmail him. + + Asking the price of his enemy's silence, Takato is shocked to find that his motivation lies far from advancing his career; instead, Junta's terms are those that can only be realized in the bedroom! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1905 + type: anime + name: Libre + url: https://myanimelist.net/anime/producer/1905/Libre + - mal_id: 1906 + type: anime + name: animate + url: https://myanimelist.net/anime/producer/1906/animate + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: [] + - mal_id: 36632 + url: https://myanimelist.net/anime/36632/Ore_ga_Suki_nano_wa_Imouto_dakedo_Imouto_ja_Nai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1359/96152.jpg + small_image_url: https://myanimelist.net/images/anime/1359/96152t.jpg + large_image_url: https://myanimelist.net/images/anime/1359/96152l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1359/96152.webp + small_image_url: https://myanimelist.net/images/anime/1359/96152t.webp + large_image_url: https://myanimelist.net/images/anime/1359/96152l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Yic4dPvO5Zg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore ga Suki nano wa Imouto dakedo Imouto ja Nai + - type: Synonym + title: The One I Love Is a Little Sister + - type: Synonym + title: but She's Not My Little Sister + - type: Japanese + title: 俺が好きなのは妹だけど妹じゃない + - type: English + title: My Sister, My Writer + - type: German + title: My Sister, My Writer + - type: Spanish + title: My Sister, My Writer + - type: French + title: My Sister, My Writer + title: Ore ga Suki nano wa Imouto dakedo Imouto ja Nai + title_english: My Sister, My Writer + title_japanese: 俺が好きなのは妹だけど妹じゃない + title_synonyms: + - The One I Love Is a Little Sister + - but She's Not My Little Sister + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-10-10T00:00:00+00:00' + to: '2018-12-19T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2018 + to: + day: 19 + month: 12 + year: 2018 + string: Oct 10, 2018 to Dec 19, 2018 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 4.9 + scored_by: 59672 + rank: 14455 + popularity: 1821 + members: 145827 + favorites: 264 + synopsis: |- + Aspiring light novel author Yuu Nagami regularly enters writing competitions but has yet to win a single one. Despite his recurring failures, he remains steadfast in his resolve to become a better writer. + + When he takes a look at the list of winning authors in the latest contest he joined, he notices that someone named Chikai Towano dominated the competition. He soon discovers that behind the pen name is his sister Suzuka—the last person he can imagine being an author. Suzuka cannot reveal to anyone that she is Chikai Towano and requests her brother to take her place. + + Yuu agrees with one condition: he will continue posing as Chikai Towano for his sister until he publishes his own book. Until that happens, Yuu uses his new identity as an opportunity to improve his writing skills and meet fellow authors and new acquaintances along the way. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + - mal_id: 1860 + type: anime + name: Magia Doraglier + url: https://myanimelist.net/anime/producer/1860/Magia_Doraglier + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37447 + url: https://myanimelist.net/anime/37447/Karakuri_Circus + images: + jpg: + image_url: https://myanimelist.net/images/anime/1518/110450.jpg + small_image_url: https://myanimelist.net/images/anime/1518/110450t.jpg + large_image_url: https://myanimelist.net/images/anime/1518/110450l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1518/110450.webp + small_image_url: https://myanimelist.net/images/anime/1518/110450t.webp + large_image_url: https://myanimelist.net/images/anime/1518/110450l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A3Sx5hwdZ8I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karakuri Circus + - type: Japanese + title: からくりサーカス + - type: English + title: Karakuri Circus + - type: German + title: Karakuri Circus + - type: Spanish + title: Karakuri Circus + - type: French + title: Karakuri Circus + title: Karakuri Circus + title_english: Karakuri Circus + title_japanese: からくりサーカス + title_synonyms: [] + type: TV + source: Manga + episodes: 36 + status: Finished Airing + airing: false + aired: + from: '2018-10-11T00:00:00+00:00' + to: '2019-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2018 + to: + day: 27 + month: 6 + year: 2019 + string: Oct 11, 2018 to Jun 27, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.19 + scored_by: 41254 + rank: 4017 + popularity: 1847 + members: 142504 + favorites: 661 + synopsis: |- + Narumi Katou is a middle-aged man who suffers from the bizarre ZONAPHA Syndrome: a rare and inexplicable disease that causes its victims to endure severe seizures at random, with the only cure being to watch someone laugh. One day, during Narumi's part time job, a young boy with a giant suitcase fleeing from three adults runs into him. The boy introduces himself as Masaru Saiga, the new owner of the famous Saiga Enterprises following his father's recent death. However, other members of his family are trying to assassinate him and claim the fortune for themselves. + + Determined to save the child, Narumi helps Masaru escape and ends up fighting the pursuers, only to discover that they are sentient humanoid puppets with superhuman strength. As Narumi is about to lose, a white-haired girl suddenly joins the fray and swiftly summons yet another puppet from the boy's suitcase, claiming herself to be Shirogane, Masaru's guardian. + + Karakuri Circus follows three people from different backgrounds whose fates intertwine and diverge as they unravel the mysteries of an ancient tale of love and betrayal, and the long, ancient battle between humans and puppets. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2018 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37823 + url: https://myanimelist.net/anime/37823/Conception + images: + jpg: + image_url: https://myanimelist.net/images/anime/1849/95019.jpg + small_image_url: https://myanimelist.net/images/anime/1849/95019t.jpg + large_image_url: https://myanimelist.net/images/anime/1849/95019l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1849/95019.webp + small_image_url: https://myanimelist.net/images/anime/1849/95019t.webp + large_image_url: https://myanimelist.net/images/anime/1849/95019l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WmTvoGjpY68?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Conception + - type: Japanese + title: CONCEPTION(コンセプション) + title: Conception + title_english: null + title_japanese: CONCEPTION(コンセプション) + title_synonyms: [] + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2018-10-10T00:00:00+00:00' + to: '2018-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2018 + to: + day: 26 + month: 12 + year: 2018 + string: Oct 10, 2018 to Dec 26, 2018 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 4.56 + scored_by: 56001 + rank: 14755 + popularity: 1898 + members: 138562 + favorites: 185 + synopsis: |- + On his high school graduation day, Itsuki's cousin, Mahiru, tells him that she's pregnant. Just then, a gate of light emerges and transports the two into the world of Granvania. In this land, "Impurities" have been causing a disturbance to the Stars, ultimately plunging Granvania into chaos and disorder. And Itsuki, now revealed to be one who is fated to meet with the "Star Maidens," is seen as Granvania's last hope and was thus given the task to produce "Star Children" and combat the "impurities." And unless the task is complete, Itsuki may never be able to return home. + + (Source: Wikipedia, edited) + background: '' + season: fall + year: 2018 + broadcast: + day: Wednesdays + time: 01:30 + timezone: Asia/Tokyo + string: Wednesdays at 01:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 37449 + url: https://myanimelist.net/anime/37449/Strike_the_Blood_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1768/111676.jpg + small_image_url: https://myanimelist.net/images/anime/1768/111676t.jpg + large_image_url: https://myanimelist.net/images/anime/1768/111676l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1768/111676.webp + small_image_url: https://myanimelist.net/images/anime/1768/111676t.webp + large_image_url: https://myanimelist.net/images/anime/1768/111676l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/X6R-wDClk0E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Strike the Blood III + - type: Synonym + title: Strike the Blood Third + - type: Japanese + title: ストライク・ザ・ブラッドⅢ + title: Strike the Blood III + title_english: null + title_japanese: ストライク・ザ・ブラッドⅢ + title_synonyms: + - Strike the Blood Third + type: OVA + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2018-12-19T00:00:00+00:00' + to: '2019-09-25T00:00:00+00:00' + prop: + from: + day: 19 + month: 12 + year: 2018 + to: + day: 25 + month: 9 + year: 2019 + string: Dec 19, 2018 to Sep 25, 2019 + duration: 26 min per ep + rating: R+ - Mild Nudity + score: 6.98 + scored_by: 52114 + rank: 5250 + popularity: 1967 + members: 132050 + favorites: 167 + synopsis: |- + It was announced at a Dengeki Game Festival stage event that the Strike the Blood light novel series will get a third OVA release. It will cover until the end of Seisen-hen. + + (Source: MAL news) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/37-2019-winter.yaml b/test/fixtures/jikan/season_matrix/37-2019-winter.yaml new file mode 100644 index 0000000..a0020c9 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/37-2019-winter.yaml @@ -0,0 +1,3396 @@ +metadata: + captured_at: '2026-05-11T11:34:03Z' + label: 2019-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2019/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:02 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:60e9ea61e92885e403fc05168ba4f2e2d41d7b97 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 15 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 356 + per_page: 25 + data: + - mal_id: 37779 + url: https://myanimelist.net/anime/37779/Yakusoku_no_Neverland + images: + jpg: + image_url: https://myanimelist.net/images/anime/1830/118780.jpg + small_image_url: https://myanimelist.net/images/anime/1830/118780t.jpg + large_image_url: https://myanimelist.net/images/anime/1830/118780l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1830/118780.webp + small_image_url: https://myanimelist.net/images/anime/1830/118780t.webp + large_image_url: https://myanimelist.net/images/anime/1830/118780l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JIcjo7XVlOY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yakusoku no Neverland + - type: Japanese + title: 約束のネバーランド + - type: English + title: The Promised Neverland + - type: German + title: The Promised Neverland + - type: Spanish + title: The Promised Neverland + - type: French + title: The Promised Neverland + title: Yakusoku no Neverland + title_english: The Promised Neverland + title_japanese: 約束のネバーランド + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-11T00:00:00+00:00' + to: '2019-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2019 + to: + day: 29 + month: 3 + year: 2019 + string: Jan 11, 2019 to Mar 29, 2019 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.47 + scored_by: 1398559 + rank: 183 + popularity: 37 + members: 2154701 + favorites: 32960 + synopsis: |- + Surrounded by a forest and a gated entrance, the Grace Field House is inhabited by orphans happily living together as one big family, looked after by their "Mama," Isabella. Although they are required to take tests daily, the children are free to spend their time as they see fit, usually playing outside, as long as they do not venture too far from the orphanage—a rule they are expected to follow no matter what. However, all good times must come to an end, as every few months, a child is adopted and sent to live with their new family, never to be heard from again. + + However, the three oldest siblings have their suspicions about what is actually happening at the orphanage, and they are about to discover the cruel fate that awaits the children living at Grace Field, including the twisted nature of their beloved Mama. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Fridays + time: 01:05 + timezone: Asia/Tokyo + string: Fridays at 01:05 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1901 + type: anime + name: CA-Cygames Anime Fund + url: https://myanimelist.net/anime/producer/1901/CA-Cygames_Anime_Fund + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37999 + url: https://myanimelist.net/anime/37999/Kaguya-sama_wa_Kokurasetai__Tensai-tachi_no_Renai_Zunousen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1295/106551.jpg + small_image_url: https://myanimelist.net/images/anime/1295/106551t.jpg + large_image_url: https://myanimelist.net/images/anime/1295/106551l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1295/106551.webp + small_image_url: https://myanimelist.net/images/anime/1295/106551t.webp + large_image_url: https://myanimelist.net/images/anime/1295/106551l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ti2kJ-GYO68?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen' + - type: Synonym + title: 'Kaguya Wants to be Confessed To: The Geniuses'' War of Love and Brains' + - type: Japanese + title: かぐや様は告らせたい~天才たちの恋愛頭脳戦~ + - type: English + title: 'Kaguya-sama: Love is War' + - type: German + title: 'Kauya-sama: Love Is War' + - type: Spanish + title: 'Kaguya-sama: Love is War' + - type: French + title: 'Kaguya-sama: Love is War' + title: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen' + title_english: 'Kaguya-sama: Love is War' + title_japanese: かぐや様は告らせたい~天才たちの恋愛頭脳戦~ + title_synonyms: + - 'Kaguya Wants to be Confessed To: The Geniuses'' War of Love and Brains' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-12T00:00:00+00:00' + to: '2019-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2019 + to: + day: 30 + month: 3 + year: 2019 + string: Jan 12, 2019 to Mar 30, 2019 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.4 + scored_by: 1213963 + rank: 230 + popularity: 51 + members: 1940588 + favorites: 42451 + synopsis: |- + At the renowned Shuchiin Academy, Miyuki Shirogane and Kaguya Shinomiya are the student body's top representatives. Ranked the top student in the nation and respected by peers and mentors alike, Miyuki serves as the student council president. Alongside him, the vice president Kaguya—eldest daughter of the wealthy Shinomiya family—excels in every field imaginable. They are the envy of the entire student body, regarded as the perfect couple. + + However, despite both having already developed feelings for the other, neither are willing to admit them. The first to confess loses, will be looked down upon, and will be considered the lesser. With their honor and pride at stake, Miyuki and Kaguya are both equally determined to be the one to emerge victorious on the battlefield of love! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 35790 + url: https://myanimelist.net/anime/35790/Tate_no_Yuusha_no_Nariagari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1490/101365.jpg + small_image_url: https://myanimelist.net/images/anime/1490/101365t.jpg + large_image_url: https://myanimelist.net/images/anime/1490/101365l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1490/101365.webp + small_image_url: https://myanimelist.net/images/anime/1490/101365t.webp + large_image_url: https://myanimelist.net/images/anime/1490/101365l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/h3n-chI028E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tate no Yuusha no Nariagari + - type: Japanese + title: 盾の勇者の成り上がり + - type: English + title: The Rising of the Shield Hero + - type: German + title: The Rising of the Shield Hero + - type: Spanish + title: The Rising of the Shield Hero + - type: French + title: The Rising of the Shield Hero + title: Tate no Yuusha no Nariagari + title_english: The Rising of the Shield Hero + title_japanese: 盾の勇者の成り上がり + title_synonyms: [] + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2019-01-09T00:00:00+00:00' + to: '2019-06-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2019 + to: + day: 26 + month: 6 + year: 2019 + string: Jan 9, 2019 to Jun 26, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 1092169 + rank: 953 + popularity: 67 + members: 1766760 + favorites: 25132 + synopsis: |- + The Four Cardinal Heroes are a group of ordinary men from modern-day Japan summoned to the kingdom of Melromarc to become its saviors. Melromarc is a country plagued by the Waves of Catastrophe that have repeatedly ravaged the land and brought disaster to its citizens for centuries. The four heroes are respectively bestowed a sword, spear, bow, and shield to vanquish these Waves. Naofumi Iwatani, an otaku, becomes cursed with the fate of being the "Shield Hero." Armed with only a measly shield, Naofumi is belittled and ridiculed by his fellow heroes and the kingdom's people due to his weak offensive capabilities and lackluster personality. + + When the heroes are provided with resources and comrades to train with, Naofumi sets out with the only person willing to train alongside him, Malty Melromarc. He is soon betrayed by her, however, and becomes falsely accused of taking advantage of her. Naofumi then becomes heavily discriminated against and hated by the people of Melromarc for something he didn't do. With a raging storm of hurt and mistrust in his heart, Naofumi begins his journey of strengthening himself and his reputation. Further along however, the difficulty of being on his own sets in, so Naofumi buys a demi-human slave on the verge of death named Raphtalia to accompany him on his travels. + + As the Waves approach the kingdom, Naofumi and Raphtalia must fight for the survival of the kingdom and protect the people of Melromarc from their ill-fated future. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 37510 + url: https://myanimelist.net/anime/37510/Mob_Psycho_100_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1918/96303.jpg + small_image_url: https://myanimelist.net/images/anime/1918/96303t.jpg + large_image_url: https://myanimelist.net/images/anime/1918/96303l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1918/96303.webp + small_image_url: https://myanimelist.net/images/anime/1918/96303t.webp + large_image_url: https://myanimelist.net/images/anime/1918/96303l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pr43Sayk37s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mob Psycho 100 II + - type: Synonym + title: Mob Psycho 100 2nd Season + - type: Synonym + title: Mob Psycho Hyaku + - type: Synonym + title: Mob Psycho One Hundred + - type: Japanese + title: モブサイコ100 II + - type: English + title: Mob Psycho 100 II + title: Mob Psycho 100 II + title_english: Mob Psycho 100 II + title_japanese: モブサイコ100 II + title_synonyms: + - Mob Psycho 100 2nd Season + - Mob Psycho Hyaku + - Mob Psycho One Hundred + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-01-07T00:00:00+00:00' + to: '2019-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2019 + to: + day: 1 + month: 4 + year: 2019 + string: Jan 7, 2019 to Apr 1, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.78 + scored_by: 1090344 + rank: 42 + popularity: 73 + members: 1727158 + favorites: 33831 + synopsis: |- + Shigeo "Mob" Kageyama is now maturing and understanding his role as a supernatural psychic that has the power to drastically affect the livelihood of others. He and his mentor Reigen Arataka continue to deal with supernatural requests from clients, whether it be exorcizing evil spirits or tackling urban legends that haunt the citizens. + + While the workflow remains the same, Mob isn't just blindly following Reigen around anymore. With all his experiences as a ridiculously strong psychic, Mob's supernatural adventures now have more weight to them. Things take on a serious and darker tone as the dangers Mob and Reigen face are much more tangible and unsettling than ever before. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37520 + url: https://myanimelist.net/anime/37520/Dororo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1879/100467.jpg + small_image_url: https://myanimelist.net/images/anime/1879/100467t.jpg + large_image_url: https://myanimelist.net/images/anime/1879/100467l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1879/100467.webp + small_image_url: https://myanimelist.net/images/anime/1879/100467t.webp + large_image_url: https://myanimelist.net/images/anime/1879/100467l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v3ApcTz1lwE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dororo + - type: Synonym + title: Dororo to Hyakkimaru + - type: Japanese + title: どろろ + - type: English + title: Dororo + - type: French + title: Dororo to Hyakkimaru + title: Dororo + title_english: Dororo + title_japanese: どろろ + title_synonyms: + - Dororo to Hyakkimaru + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-01-07T00:00:00+00:00' + to: '2019-06-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2019 + to: + day: 24 + month: 6 + year: 2019 + string: Jan 7, 2019 to Jun 24, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.26 + scored_by: 701356 + rank: 364 + popularity: 109 + members: 1377265 + favorites: 23110 + synopsis: |- + The greedy samurai lord Daigo Kagemitsu's land is dying, and he would do anything for power, even renounce Buddha and make a pact with demons. His prayers are answered by 12 demons who grant him the power he desires by aiding his prefecture's growth, but at a price. When Kagemitsu's first son is born, the boy has no limbs, no nose, no eyes, no ears, nor even skin—yet still, he lives. + + This child is disposed of in a river and forgotten. But as luck would have it, he is saved by a medicine man who provides him with prosthetics and weapons, allowing for him to survive and fend for himself. The boy lives and grows, and although he cannot see, hear, or feel anything, he must defeat the demons that took him as sacrifice. With the death of each one, he regains a part of himself that is rightfully his. For many years he wanders alone, until one day an orphan boy, Dororo, befriends him. The unlikely pair of castaways now fight for their survival and humanity in an unforgiving, demon-infested world. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38101 + url: https://myanimelist.net/anime/38101/5-toubun_no_Hanayome + images: + jpg: + image_url: https://myanimelist.net/images/anime/1819/97947.jpg + small_image_url: https://myanimelist.net/images/anime/1819/97947t.jpg + large_image_url: https://myanimelist.net/images/anime/1819/97947l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1819/97947.webp + small_image_url: https://myanimelist.net/images/anime/1819/97947t.webp + large_image_url: https://myanimelist.net/images/anime/1819/97947l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pCwfEB6PbFk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 5-toubun no Hanayome + - type: Synonym + title: Gotoubun no Hanayome + - type: Synonym + title: The Five Wedded Brides + - type: Japanese + title: 五等分の花嫁 + - type: English + title: The Quintessential Quintuplets + - type: German + title: The Quintessential Quintuplets + - type: Spanish + title: The Quintessential Quintuplets + - type: French + title: The Quintessential Quintuplets + title: 5-toubun no Hanayome + title_english: The Quintessential Quintuplets + title_japanese: 五等分の花嫁 + title_synonyms: + - Gotoubun no Hanayome + - The Five Wedded Brides + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-11T00:00:00+00:00' + to: '2019-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2019 + to: + day: 29 + month: 3 + year: 2019 + string: Jan 11, 2019 to Mar 29, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.62 + scored_by: 688657 + rank: 1716 + popularity: 172 + members: 1070226 + favorites: 14707 + synopsis: "Fuutarou Uesugi is an ace high school student, but leads an otherwise tough life. His standoffish personality\ + \ and reclusive nature have left him friendless, and his father is debt-ridden, forcing his family to scrape by.\n\ + \nOne day during his lunch break, Uesugi argues with a female transfer student who has claimed \"his seat,\" leading\ + \ both of them to dislike each other. That same day, he is presented with a golden opportunity to clear his family's\ + \ debt: a private tutoring gig for a wealthy family's daughter, with a wage of five times the market price. He accepts\ + \ the proposal, but is horrified to discover that the client, Itsuki Nakano, is the girl he confronted earlier! \n\ + \nAfter unsuccessfully trying to get back on Itsuki's good side, Uesugi finds out that his problems don't end there:\ + \ Itsuki is actually a quintuplet, so in addition to her, he must also tutor her sisters—Miku, Yotsuba, Nino, and\ + \ Ichika—who, despite the very real threat of flunking, want nothing to do with a tutor. However, his family's livelihood\ + \ is on the line so Uesugi pushes on, adamant in his resolve to rid the sisters of their detest for studying and successfully\ + \ lead them to graduation.\n\n[Written by MAL Rewrite]" + background: 5-toubun no Hanayome adapts content from the first 4 volumes of Negi Haruba's manga of the same name. + season: winter + year: 2019 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1081 + type: anime + name: ZERO-A + url: https://myanimelist.net/anime/producer/1081/ZERO-A + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 2946 + type: anime + name: eNa + url: https://myanimelist.net/anime/producer/2946/eNa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37086 + url: https://myanimelist.net/anime/37086/Kakegurui×× + images: + jpg: + image_url: https://myanimelist.net/images/anime/1496/96519.jpg + small_image_url: https://myanimelist.net/images/anime/1496/96519t.jpg + large_image_url: https://myanimelist.net/images/anime/1496/96519l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1496/96519.webp + small_image_url: https://myanimelist.net/images/anime/1496/96519t.webp + large_image_url: https://myanimelist.net/images/anime/1496/96519l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8fCIcho7N4k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakegurui×× + - type: Synonym + title: Kakegurui 2nd Season + - type: Synonym + title: 'Kakegurui: Compulsive Gambler 2nd Season' + - type: Synonym + title: Gambling School 2nd Season, + - type: Japanese + title: 賭ケグルイ×× + - type: German + title: 'Kakegurui: Das Leben ist ein Spiel Staffel 2' + - type: French + title: Gambling School Saison 2 + title: Kakegurui×× + title_english: null + title_japanese: 賭ケグルイ×× + title_synonyms: + - Kakegurui 2nd Season + - 'Kakegurui: Compulsive Gambler 2nd Season' + - Gambling School 2nd Season, + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-09T00:00:00+00:00' + to: '2019-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2019 + to: + day: 27 + month: 3 + year: 2019 + string: Jan 9, 2019 to Mar 27, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.18 + scored_by: 503688 + rank: 4083 + popularity: 261 + members: 840919 + favorites: 2036 + synopsis: |- + As Yumeko Jabami's fame grows and the reputation of the student council dwindles, Kirari Momobami decides to revolutionize the group. To this end, she announces an election for its next president. The rules are simple: each student in the school receives one chip. Whoever has the most chips by the end of thirty days becomes both the new president and the head of the Momobami clan. + + Upon receiving news of this development, the Momobami branch families spring into action. Eleven transfer students arrive at Hyakkao Private Academy, each aiming to lead both the school and the Momobami clan. Equipped with unique talents, they will compete to get as many chips as possible—but their chips are not the only things on the line. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Wednesdays + time: 02:30 + timezone: Asia/Tokyo + string: Wednesdays at 02:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37982 + url: https://myanimelist.net/anime/37982/Domestic_na_Kanojo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1021/95670.jpg + small_image_url: https://myanimelist.net/images/anime/1021/95670t.jpg + large_image_url: https://myanimelist.net/images/anime/1021/95670l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1021/95670.webp + small_image_url: https://myanimelist.net/images/anime/1021/95670t.webp + large_image_url: https://myanimelist.net/images/anime/1021/95670l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LLPv26YL4VU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Domestic na Kanojo + - type: Synonym + title: Dome x Kano + - type: Synonym + title: Domekano + - type: Japanese + title: ドメスティックな彼女 + - type: English + title: Domestic Girlfriend + - type: German + title: Domestic Girlfriend + - type: Spanish + title: Domestic Girlfriend + - type: French + title: Domestic Girlfriend + title: Domestic na Kanojo + title_english: Domestic Girlfriend + title_japanese: ドメスティックな彼女 + title_synonyms: + - Dome x Kano + - Domekano + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-12T00:00:00+00:00' + to: '2019-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2019 + to: + day: 30 + month: 3 + year: 2019 + string: Jan 12, 2019 to Mar 30, 2019 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 6.61 + scored_by: 497377 + rank: 7465 + popularity: 270 + members: 830176 + favorites: 6134 + synopsis: |- + In their teenage years, few things can hurt people more than the heartaches that come with unrequited love. Such is the case for Natsuo Fujii, who has found himself entranced by his school's ever-cheerful teacher Hina. Deflated by this unreachable desire, Natsuo humors his friends and attends a mixer. There he meets Rui, a girl whose lack of excitement rivals that of himself. After bonding over their mutual awkwardness, Rui takes Natsuo to her house and asks him to have sex with her, hoping that the experience will stop her friends from treating her like a clueless child. With his hopeless feelings towards Hina still on his mind, Natsuo hesitantly agrees. + + Equally unfulfilled by their "first times," the two decide to part ways as strangers. However, before he even has a chance to process this experience, Natsuo's father drops a major bombshell: he is getting remarried, and his new wife Tsukiko Tachibana is coming over now to meet Natsuo. As if that was not enough of a shock, her daughters—and, in turn, Natsuo's new sisters—are Hina and Rui Tachibana, the woman he's in love with and the girl with whom he shared his first night. Now, Natsuo must come to terms with the feelings he has for his step-siblings as his eyes open to a darker side of love. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1869 + type: anime + name: Bit Promotion + url: https://myanimelist.net/anime/producer/1869/Bit_Promotion + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 33049 + url: https://myanimelist.net/anime/33049/Fate_stay_night_Movie__Heavens_Feel_-_II_Lost_Butterfly + images: + jpg: + image_url: https://myanimelist.net/images/anime/1974/98158.jpg + small_image_url: https://myanimelist.net/images/anime/1974/98158t.jpg + large_image_url: https://myanimelist.net/images/anime/1974/98158l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1974/98158.webp + small_image_url: https://myanimelist.net/images/anime/1974/98158t.webp + large_image_url: https://myanimelist.net/images/anime/1974/98158l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NhJQDAIwQVc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night Movie: Heaven''s Feel - II. Lost Butterfly' + - type: Synonym + title: 'Fate/stay night Movie: Heaven''s Feel 2' + - type: Japanese + title: 劇場版「Fate/stay night [Heaven's Feel] II.lost butterfly」 + - type: English + title: 'Fate/stay night: Heaven''s Feel - II. Lost Butterfly' + title: 'Fate/stay night Movie: Heaven''s Feel - II. Lost Butterfly' + title_english: 'Fate/stay night: Heaven''s Feel - II. Lost Butterfly' + title_japanese: 劇場版「Fate/stay night [Heaven's Feel] II.lost butterfly」 + title_synonyms: + - 'Fate/stay night Movie: Heaven''s Feel 2' + type: Movie + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-01-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 1 + year: 2019 + to: + day: null + month: null + year: null + string: Jan 12, 2019 + duration: 1 hr 57 min + rating: R - 17+ (violence & profanity) + score: 8.46 + scored_by: 261073 + rank: 184 + popularity: 610 + members: 439362 + favorites: 3578 + synopsis: |- + The Fifth Holy Grail War continues, and the ensuing chaos results in higher stakes for all participants. Shirou Emiya continues to participate in the war, aspiring to be a hero of justice who saves everyone. He sets out in search of the truth behind a mysterious dark shadow and its murder spree, determined to defeat it. + + Meanwhile, Shinji Matou sets his own plans into motion, threatening Shirou through his sister Sakura Matou. Shirou and Rin Toosaka battle Shinji, hoping to relieve Sakura from the abuses of her brother. But the ugly truth of the Matou siblings begins to surface, and many dark secrets are exposed. + + Fate/stay night Movie: Heaven's Feel - II. Lost Butterfly continues to focus on the remaining Masters and Servants as they fight each other in the hopes of obtaining the Holy Grail. However, as darkness arises within Fuyuki City, even the state of their sacred war could be in danger. + + [Written by MAL Rewrite] + background: 'The Fate/Stay Night: Heaven''s Feel movie trilogy is based on the third route of Type-Moon''s . Originally + released in 2004 for Microsoft Windows, Fate/Stay Night later received an enhanced port featuring full voice acting, + new soundtracks and bonus content―titled Fate/Stay Night: Réalta Nua―which was released for the PS2, PS Vita as well + as iOS and Android systems.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 36633 + url: https://myanimelist.net/anime/36633/Date_A_Live_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1055/100468.jpg + small_image_url: https://myanimelist.net/images/anime/1055/100468t.jpg + large_image_url: https://myanimelist.net/images/anime/1055/100468l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1055/100468.webp + small_image_url: https://myanimelist.net/images/anime/1055/100468t.webp + large_image_url: https://myanimelist.net/images/anime/1055/100468l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iz_sAWpBNrI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Date A Live III + - type: Synonym + title: Date A Live 3 + - type: Synonym + title: Date A Live 3rd Season + - type: Synonym + title: DAL 3 + - type: Japanese + title: デート・ア・ライブⅢ + - type: English + title: Date A Live III + title: Date A Live III + title_english: Date A Live III + title_japanese: デート・ア・ライブⅢ + title_synonyms: + - Date A Live 3 + - Date A Live 3rd Season + - DAL 3 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-11T00:00:00+00:00' + to: '2019-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2019 + to: + day: 29 + month: 3 + year: 2019 + string: Jan 11, 2019 to Mar 29, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.2 + scored_by: 233644 + rank: 3932 + popularity: 614 + members: 438040 + favorites: 1749 + synopsis: |- + Shidou Itsuka carries on with his quest for Ratatoskr in finding Spirits and trying to seal their powers, all while maintaining his relationships with the ones he had already sealed. Moreover, as new Spirits appear, he must undergo more complicated trials—all to put a stop to further disasters as he discovers more about the Spirits' origin. + + [Written by MAL Rewrite] + background: Date A Live III adapts novels 8-12 of Koushi Tachibana's light novel series of the same name. + season: winter + year: 2019 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 34437 + url: https://myanimelist.net/anime/34437/Code_Geass__Fukkatsu_no_Lelouch + images: + jpg: + image_url: https://myanimelist.net/images/anime/1274/113436.jpg + small_image_url: https://myanimelist.net/images/anime/1274/113436t.jpg + large_image_url: https://myanimelist.net/images/anime/1274/113436l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1274/113436.webp + small_image_url: https://myanimelist.net/images/anime/1274/113436t.webp + large_image_url: https://myanimelist.net/images/anime/1274/113436l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Euj8XSLin0c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Code Geass: Fukkatsu no Lelouch' + - type: Synonym + title: 'Code Geass: Lelouch of the Resurrection' + - type: Japanese + title: コードギアス 復活のルルーシュ + - type: English + title: 'Code Geass: Lelouch of the Re;surrection' + - type: French + title: 'Code Geass: Lelouch of the Re;surrection' + title: 'Code Geass: Fukkatsu no Lelouch' + title_english: 'Code Geass: Lelouch of the Re;surrection' + title_japanese: コードギアス 復活のルルーシュ + title_synonyms: + - 'Code Geass: Lelouch of the Resurrection' + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-02-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 2 + year: 2019 + to: + day: null + month: null + year: null + string: Feb 9, 2019 + duration: 1 hr 52 min + rating: R - 17+ (violence & profanity) + score: 7.91 + scored_by: 160822 + rank: 905 + popularity: 808 + members: 345206 + favorites: 2176 + synopsis: |- + Since the demise of the man believed to be Britannia's most wicked emperor one year ago, the world has enjoyed an unprecedented peace under the guidance of the United Federation of Nations. However, this fragile calm is shattered when armed militants successfully kidnap former princess Nunnally vi Britannia and Suzaku Kururugi, the chief advisor of the Black Knights, sparking an international crisis. + + The powerful and untrustworthy Kingdom of Zilkhstan is accused of orchestrating their capture. To investigate, world authorities send Kallen Stadtfeld and her associates on a covert operation into the country. There, they encounter the immortal witch C.C., who is on a mission to complete the resurrection of the man responsible for the greatest revolution in history—a legend who will rise up, take command, and save the world from peril once again. + + [Written by MAL Rewrite] + background: 'Code Geass: Fukkatsu no Lelouch is considered an alternative ending to the Code Geass series. It is not + a sequel to Code Geass: Hangyaku no Lelouch R2. The film released across Japan in 120 theatres on February 9, 2019. + It saw two pre-screenings in Sydney, Australia at the Madman Anime Festival on March 17, and at Sakura-Con on April + 20. It also saw one pre-screening in the United States at the Boston Anime convention on April 20. The film screened + in North America on May 5 (subtitled) and on May 7–8 (dubbed).' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 777 + type: anime + name: Showgate + url: https://myanimelist.net/anime/producer/777/Showgate + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 37055 + url: https://myanimelist.net/anime/37055/Youjo_Senki_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1249/117182.jpg + small_image_url: https://myanimelist.net/images/anime/1249/117182t.jpg + large_image_url: https://myanimelist.net/images/anime/1249/117182l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1249/117182.webp + small_image_url: https://myanimelist.net/images/anime/1249/117182t.webp + large_image_url: https://myanimelist.net/images/anime/1249/117182l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VqVwV5VzJgE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Youjo Senki Movie + - type: Synonym + title: Gekijouban Youjo Senki + - type: Japanese + title: 劇場版 幼女戦記 + - type: English + title: 'Saga of Tanya the Evil: The Movie' + - type: German + title: 'Saga of Tanya The Evil: The Movie' + - type: Spanish + title: 'Saga of Tenya the Evil: The Movie' + - type: French + title: 'Saga of Tanya the Evil: The Movie' + title: Youjo Senki Movie + title_english: 'Saga of Tanya the Evil: The Movie' + title_japanese: 劇場版 幼女戦記 + title_synonyms: + - Gekijouban Youjo Senki + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-02-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 2 + year: 2019 + to: + day: null + month: null + year: null + string: Feb 8, 2019 + duration: 1 hr 38 min + rating: R - 17+ (violence & profanity) + score: 8.24 + scored_by: 175966 + rank: 404 + popularity: 853 + members: 330267 + favorites: 1264 + synopsis: |- + With its armies sweeping across the continent, the Empire seems unstoppable. After securing victory over the remnants of the Republic's army, the Empire's ultimate victory is finally within reach. However, dark clouds are gathering in the East. The communist-led Russy Federation is mustering troops on its western border, preparing to enter the war. Supported by a detachment of Allied volunteer magicians—among whom is Mary Sioux, the daughter of a soldier killed by Tanya von Degurechaff—the Federation is determined to spread the communist creed and bring the Empire to its knees. + + Meanwhile, Tanya and her battalion return to the imperial capital from the southern front. Upon their arrival, they are tasked with investigating troop movements on the border with the Federation. Any escalation of violence at this point may lead to new conflicts, plunging the world into a devastating global war. + + Will the Empire eventually emerge victorious from its struggle, or will it crumble in the face of superior enemies and radically different ideologies? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1916 + type: anime + name: Kadokawa Animation + url: https://myanimelist.net/anime/producer/1916/Kadokawa_Animation + licensors: [] + studios: + - mal_id: 1567 + type: anime + name: Nut + url: https://myanimelist.net/anime/producer/1567/Nut + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 37451 + url: https://myanimelist.net/anime/37451/Boogiepop_wa_Warawanai_2019 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1135/95454.jpg + small_image_url: https://myanimelist.net/images/anime/1135/95454t.jpg + large_image_url: https://myanimelist.net/images/anime/1135/95454l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1135/95454.webp + small_image_url: https://myanimelist.net/images/anime/1135/95454t.webp + large_image_url: https://myanimelist.net/images/anime/1135/95454l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/J9tu253SOas?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boogiepop wa Warawanai (2019) + - type: Synonym + title: Boogiepop Never Laughs + - type: Synonym + title: Boogiepop Doesn't Laugh + - type: Japanese + title: ブギーポップは笑わない + - type: English + title: Boogiepop and Others + - type: German + title: Boogiepop And Others + - type: Spanish + title: BoogiePop And Others + - type: French + title: BoogiePop And Others + title: Boogiepop wa Warawanai (2019) + title_english: Boogiepop and Others + title_japanese: ブギーポップは笑わない + title_synonyms: + - Boogiepop Never Laughs + - Boogiepop Doesn't Laugh + type: TV + source: Light novel + episodes: 18 + status: Finished Airing + airing: false + aired: + from: '2019-01-04T00:00:00+00:00' + to: '2019-03-29T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2019 + to: + day: 29 + month: 3 + year: 2019 + string: Jan 4, 2019 to Mar 29, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.08 + scored_by: 72732 + rank: 4687 + popularity: 1164 + members: 244972 + favorites: 939 + synopsis: |- + Hushed exchanges among the female student populace of Shinyo Academy center around an enigmatic supernatural entity. This entity is Boogiepop, a Shinigami who is rumored to murder people at the height of their beauty before their allure wanes. Few know of his true nature: a guardian who, between periods of dormancy, manifests as the alter ego of a high school girl named Touka Miyashita to fend off "the enemies of the world." Now, a string of mysterious disappearances—presumed by the school to be merely runaways—has caused Boogiepop to awaken. But somewhere in the academy, a menacing creature hides, waiting for its opportune moment to strike. + + Boogiepop wa Warawanai subtly explores the intrinsic associations between human beings and their perception of time, while delving into its characters' complex relationships, emotions, memories, and pasts. + + [Written by MAL Rewrite] + background: The series was first announced in 2018 to mark the 20th anniversary of the original light novel's publication. + The animation was handled by Madhouse, which also worked on the first adaptation in 2000. + season: winter + year: 2019 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 681 + type: anime + name: ASCII Media Works + url: https://myanimelist.net/anime/producer/681/ASCII_Media_Works + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 38349 + url: https://myanimelist.net/anime/38349/Wotaku_ni_Koi_wa_Muzukashii_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1892/111383.jpg + small_image_url: https://myanimelist.net/images/anime/1892/111383t.jpg + large_image_url: https://myanimelist.net/images/anime/1892/111383l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1892/111383.webp + small_image_url: https://myanimelist.net/images/anime/1892/111383t.webp + large_image_url: https://myanimelist.net/images/anime/1892/111383l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Osp69IiVzQI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Wotaku ni Koi wa Muzukashii OVA + - type: Synonym + title: 'Wotaku ni Koi wa Muzukashii: Youth' + - type: Synonym + title: It's Difficult to Love an Otaku OVA + - type: Synonym + title: 'Wotakoi: Love is Hard for Otaku OVA' + - type: Japanese + title: ヲタクに恋は難しい OAD + - type: English + title: 'Wotakoi: Love is Hard for Otaku OVA' + title: Wotaku ni Koi wa Muzukashii OVA + title_english: 'Wotakoi: Love is Hard for Otaku OVA' + title_japanese: ヲタクに恋は難しい OAD + title_synonyms: + - 'Wotaku ni Koi wa Muzukashii: Youth' + - It's Difficult to Love an Otaku OVA + - 'Wotakoi: Love is Hard for Otaku OVA' + type: OVA + source: Web manga + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2019-03-29T00:00:00+00:00' + to: '2021-10-14T00:00:00+00:00' + prop: + from: + day: 29 + month: 3 + year: 2019 + to: + day: 14 + month: 10 + year: 2021 + string: Mar 29, 2019 to Oct 14, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.94 + scored_by: 117625 + rank: 856 + popularity: 1210 + members: 234242 + favorites: 524 + synopsis: |- + Sore wa, Ikinari Otozureta = Koi + Tarou Kabakura, a third-year high school student and captain of the boys' volleyball team, is constantly being harassed by his underclassman Hanako Koyanagi, who is in charge of the girls' team. Koyanagi insists that since the girls have a match coming up, Kabakura should give up the courts to let them practice. When he refuses, she pulls out photographic evidence exposing his secret hobby. + + With the danger of his entire team finding out about his otaku interests looming over him, Kabakura agrees to hand over the volleyball courts to Koyanagi, giving her some private coaching as well. As the two grow closer, they begin to forge an everlasting bond. + + [Written by MAL Rewrite] + + Tomodachi no Kyori + Second OVA expanding on Naoya and Kou's relationship. + + Shain Ryokou to Negaigoto + Third OVA covering the employee retreat chapters. + + (Source: MAL News, edited) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + - mal_id: 1828 + type: anime + name: Lapin Track + url: https://myanimelist.net/anime/producer/1828/Lapin_Track + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 37348 + url: https://myanimelist.net/anime/37348/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_Movie__Orion_no_Ya + images: + jpg: + image_url: https://myanimelist.net/images/anime/1239/96949.jpg + small_image_url: https://myanimelist.net/images/anime/1239/96949t.jpg + large_image_url: https://myanimelist.net/images/anime/1239/96949l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1239/96949.webp + small_image_url: https://myanimelist.net/images/anime/1239/96949t.webp + large_image_url: https://myanimelist.net/images/anime/1239/96949l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GhInW-T33QI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya' + - type: Synonym + title: DanMachi Movie + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon Movie + - type: Japanese + title: 劇場版 ダンジョンに出会いを求めるのは間違っているだろうか -オリオンの矢- + - type: English + title: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion' + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka Movie: Orion no Ya' + title_english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon?: Arrow of the Orion' + title_japanese: 劇場版 ダンジョンに出会いを求めるのは間違っているだろうか -オリオンの矢- + title_synonyms: + - DanMachi Movie + - Is It Wrong That I Want to Meet You in a Dungeon Movie + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-02-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 2 + year: 2019 + to: + day: null + month: null + year: null + string: Feb 15, 2019 + duration: 1 hr 22 min + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 115838 + rank: 2472 + popularity: 1219 + members: 232514 + favorites: 463 + synopsis: |- + Continuing his adventure to get stronger in order to traverse deeper into the "Dungeon," Bell Cranel wanders the Orario city streets with his friends and the goddess Hestia. That evening, the city is filled with stalls and games as it celebrates the Holy Moon Festival. + + Hermes, a god, hosts one such activity where participants are asked to pull a spear embedded in a crystal boulder; those who succeed will receive a special gift: a trip around the world and a divine blessing from the gods! Bell and his merry group challenge one another to claim the prize. But behind the facade of an innocent party game lies a preface for a daring quest ahead. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37993 + url: https://myanimelist.net/anime/37993/Watashi_ni_Tenshi_ga_Maiorita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1778/100470.jpg + small_image_url: https://myanimelist.net/images/anime/1778/100470t.jpg + large_image_url: https://myanimelist.net/images/anime/1778/100470l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1778/100470.webp + small_image_url: https://myanimelist.net/images/anime/1778/100470t.webp + large_image_url: https://myanimelist.net/images/anime/1778/100470l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xDXorSZaCHU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi ni Tenshi ga Maiorita! + - type: Synonym + title: Wataten + - type: Japanese + title: 私に天使が舞い降りた! + - type: English + title: Wataten! an Angel Flew Down to Me + - type: German + title: 'Wataten!: An Angel Flew Down to Me' + - type: Spanish + title: 'Wataten!: An Angel Flew Down to Me' + - type: French + title: 'Wataten!: An Angel Flew Down to Me' + title: Watashi ni Tenshi ga Maiorita! + title_english: Wataten! an Angel Flew Down to Me + title_japanese: 私に天使が舞い降りた! + title_synonyms: + - Wataten + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-08T00:00:00+00:00' + to: '2019-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2019 + to: + day: 26 + month: 3 + year: 2019 + string: Jan 8, 2019 to Mar 26, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 89865 + rank: 3589 + popularity: 1290 + members: 218727 + favorites: 981 + synopsis: "College student Miyako Hoshino is quite shy around other people. She mostly spends her time in her room making\ + \ cosplay outfits. When her fifth-grade sister Hinata brings her classmate Hana Shirosaki home, Miyako instantly becomes\ + \ captivated with Hana's cuteness. \n\nMiyako tries to do various things, ranging from making Hana wear cosplay dresses\ + \ to giving her sweets. This gives Hana a bad impression of her at first, but Miyako will do anything to grow closer\ + \ to the angel who has descended before her.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2019 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: [] + - mal_id: 38145 + url: https://myanimelist.net/anime/38145/Doukyonin_wa_Hiza_Tokidoki_Atama_no_Ue + images: + jpg: + image_url: https://myanimelist.net/images/anime/1251/99191.jpg + small_image_url: https://myanimelist.net/images/anime/1251/99191t.jpg + large_image_url: https://myanimelist.net/images/anime/1251/99191l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1251/99191.webp + small_image_url: https://myanimelist.net/images/anime/1251/99191t.webp + large_image_url: https://myanimelist.net/images/anime/1251/99191l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fd5f7tFMI8I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Doukyonin wa Hiza, Tokidoki, Atama no Ue. + - type: Synonym + title: My roommate is sometimes on my knees + - type: Synonym + title: sometimes on my head + - type: Synonym + title: Hizaue + - type: Japanese + title: 同居人はひざ、時々、頭のうえ。 + - type: English + title: My Roommate is a Cat + - type: German + title: My Roommate is a Cat + - type: Spanish + title: My Roommate is a Cat + - type: French + title: My Roommate is a Cat + title: Doukyonin wa Hiza, Tokidoki, Atama no Ue. + title_english: My Roommate is a Cat + title_japanese: 同居人はひざ、時々、頭のうえ。 + title_synonyms: + - My roommate is sometimes on my knees + - sometimes on my head + - Hizaue + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-09T00:00:00+00:00' + to: '2019-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2019 + to: + day: 27 + month: 3 + year: 2019 + string: Jan 9, 2019 to Mar 27, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 97484 + rank: 1384 + popularity: 1316 + members: 212553 + favorites: 1330 + synopsis: "Subaru Mikazuki is a 23-year-old mystery novel author, major introvert, and an awkwardly shy person. He would\ + \ much rather stay home to read a book than go outside and interact with others. Further exacerbating this life of\ + \ solitude, his parents tragically died in an accident many years ago, leaving him alone in the world. \n\nOne day,\ + \ while giving offerings at his parents' grave, Subaru runs into a small grey and white cat named Haru, which he ends\ + \ up taking home with him. Subaru, however, has never taken care of anyone else in his life—can he even take care\ + \ of a cat? Haru is grateful toward Subaru, as he gives her all the food she wants—a luxury for a cat who is used\ + \ to a rough life on the streets. But she notices that Subaru can't even seem to take care of himself! Will she be\ + \ okay with this dunce? \n\nDoukyonin wa Hiza, Tokidoki, Atama no Ue. tells the story of an unlikely friendship between\ + \ a human and a cat who try to foster an understanding with each other.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2019 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 2092 + type: anime + name: BookLive + url: https://myanimelist.net/anime/producer/2092/BookLive + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 71 + type: anime + name: Pets + url: https://myanimelist.net/anime/genre/71/Pets + demographics: [] + - mal_id: 37956 + url: https://myanimelist.net/anime/37956/3D_Kanojo__Real_Girl_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1237/113435.jpg + small_image_url: https://myanimelist.net/images/anime/1237/113435t.jpg + large_image_url: https://myanimelist.net/images/anime/1237/113435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1237/113435.webp + small_image_url: https://myanimelist.net/images/anime/1237/113435t.webp + large_image_url: https://myanimelist.net/images/anime/1237/113435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HeZ4wJ8n4iU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '3D Kanojo: Real Girl 2nd Season' + - type: Synonym + title: 3D Girlfriend 2nd Season + - type: Japanese + title: 3D彼女 リアルガール(第2シーズン) + - type: English + title: Real Girl Season 2 + title: '3D Kanojo: Real Girl 2nd Season' + title_english: Real Girl Season 2 + title_japanese: 3D彼女 リアルガール(第2シーズン) + title_synonyms: + - 3D Girlfriend 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-09T00:00:00+00:00' + to: '2019-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2019 + to: + day: 27 + month: 3 + year: 2019 + string: Jan 9, 2019 to Mar 27, 2019 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.67 + scored_by: 111952 + rank: 1540 + popularity: 1336 + members: 209576 + favorites: 1243 + synopsis: |- + Teenage otaku Tsutsui is finally starting to feel comfortable in his relationship with his beautiful classmate Iroha, but the real world continues to make things tough for both of them. With the school cultural festival coming up, Tsutsui gets stuck working on the festival committee while Iroha's classmates pressure her to enter the beauty contest. Meanwhile, Tsutsui's best friend Itou finally works up the courage to confess his feelings to Ayado, but she turns him down. As Itou works to get over this rejection and Tsutsui struggles just to survive the festival, they both decide to do whatever they can to become better people. Will their good intentions pave the way to a happy outcome, or will more hearts be broken along the way? + + (Source: ANN) + background: '' + season: winter + year: 2019 + broadcast: + day: Wednesdays + time: 01:59 + timezone: Asia/Tokyo + string: Wednesdays at 01:59 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + - mal_id: 1791 + type: anime + name: D.N. Dream Partners + url: https://myanimelist.net/anime/producer/1791/DN_Dream_Partners + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 346 + type: anime + name: Hoods Entertainment + url: https://myanimelist.net/anime/producer/346/Hoods_Entertainment + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 37515 + url: https://myanimelist.net/anime/37515/Made_in_Abyss_Movie_2__Hourou_Suru_Tasogare + images: + jpg: + image_url: https://myanimelist.net/images/anime/1336/95168.jpg + small_image_url: https://myanimelist.net/images/anime/1336/95168t.jpg + large_image_url: https://myanimelist.net/images/anime/1336/95168l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1336/95168.webp + small_image_url: https://myanimelist.net/images/anime/1336/95168t.webp + large_image_url: https://myanimelist.net/images/anime/1336/95168l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t_X8zqhIiJ0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Made in Abyss Movie 2: Hourou Suru Tasogare' + - type: Synonym + title: 'Made in Abyss Movie 2: Wandering Twilight' + - type: Japanese + title: 劇場版総集編【後編】メイドインアビス 放浪する黄昏 + - type: English + title: 'Made in Abyss: Wandering Twilight' + - type: German + title: 'Made In Abyss: Die Gefährten der Dämmerung' + title: 'Made in Abyss Movie 2: Hourou Suru Tasogare' + title_english: 'Made in Abyss: Wandering Twilight' + title_japanese: 劇場版総集編【後編】メイドインアビス 放浪する黄昏 + title_synonyms: + - 'Made in Abyss Movie 2: Wandering Twilight' + type: Movie + source: Web manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-01-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 1 + year: 2019 + to: + day: null + month: null + year: null + string: Jan 18, 2019 + duration: 1 hr 45 min + rating: R - 17+ (violence & profanity) + score: 8.39 + scored_by: 69818 + rank: 235 + popularity: 1653 + members: 165352 + favorites: 294 + synopsis: |- + The movie is a compilation of episodes 9-13 of the 2017 television series. Riko and Reg descend to the third layer where Riko has her first experience of the Curse. They descend to the fourth layer where Riko's arm is injured by an Orbed Piercer and Reg tries to save her. Nanachi comes to their aid and saves Riko's poisoned arm. In return Nanachi asks Reg to kill her immortal companion Mitty. Nanachi then joins Riko and Reg in their quest to reach the bottom of the Abyss. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 37514 + url: https://myanimelist.net/anime/37514/Made_in_Abyss_Movie_1__Tabidachi_no_Yoake + images: + jpg: + image_url: https://myanimelist.net/images/anime/1173/95167.jpg + small_image_url: https://myanimelist.net/images/anime/1173/95167t.jpg + large_image_url: https://myanimelist.net/images/anime/1173/95167l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1173/95167.webp + small_image_url: https://myanimelist.net/images/anime/1173/95167t.webp + large_image_url: https://myanimelist.net/images/anime/1173/95167l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FqrFYzci_Ws?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Made in Abyss Movie 1: Tabidachi no Yoake' + - type: Synonym + title: 'Made in Abyss Movie 1: Journey''s Dawn' + - type: Japanese + title: 劇場版総集編【前編】メイドインアビス 旅立ちの夜明け + - type: English + title: 'Made in Abyss: Journey''s Dawn' + - type: German + title: 'Made In Abyss: Die Reise Beginnt' + title: 'Made in Abyss Movie 1: Tabidachi no Yoake' + title_english: 'Made in Abyss: Journey''s Dawn' + title_japanese: 劇場版総集編【前編】メイドインアビス 旅立ちの夜明け + title_synonyms: + - 'Made in Abyss Movie 1: Journey''s Dawn' + type: Movie + source: Web manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-01-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 1 + year: 2019 + to: + day: null + month: null + year: null + string: Jan 4, 2019 + duration: 1 hr 59 min + rating: R - 17+ (violence & profanity) + score: 8.19 + scored_by: 60997 + rank: 465 + popularity: 1668 + members: 163324 + favorites: 274 + synopsis: |- + The movie is a compilation of episodes 1-8 of the 2017 television series with new scenes added for the introduction. It covers the period from when Riko descends into the Abyss with her robot companion Reg, reaching the second layer where they meet the White Whistle Ozen who reveals information about Riko's mother. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 38699 + url: https://myanimelist.net/anime/38699/Boku_no_Hero_Academia_the_Movie_1__Futari_no_Hero_Specials + images: + jpg: + image_url: https://myanimelist.net/images/anime/1969/153817.jpg + small_image_url: https://myanimelist.net/images/anime/1969/153817t.jpg + large_image_url: https://myanimelist.net/images/anime/1969/153817l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1969/153817.webp + small_image_url: https://myanimelist.net/images/anime/1969/153817t.webp + large_image_url: https://myanimelist.net/images/anime/1969/153817l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rDiAzyQwavc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia the Movie 1: Futari no Hero Specials' + - type: Synonym + title: 'All Might: Rising - The Animation' + - type: Synonym + title: Boku no Hero Academia Picture Drama + - type: Synonym + title: 'My Hero Academia: All Might Rising' + - type: Japanese + title: 僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ 特典 + - type: English + title: 'My Hero Academia: Two Heroes Specials' + title: 'Boku no Hero Academia the Movie 1: Futari no Hero Specials' + title_english: 'My Hero Academia: Two Heroes Specials' + title_japanese: 僕のヒーローアカデミア THE MOVIE ~2人の英雄(ヒーロー)~ 特典 + title_synonyms: + - 'All Might: Rising - The Animation' + - Boku no Hero Academia Picture Drama + - 'My Hero Academia: All Might Rising' + type: Special + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2019-02-13T00:00:00+00:00' + to: null + prop: + from: + day: 13 + month: 2 + year: 2019 + to: + day: null + month: null + year: null + string: Feb 13, 2019 + duration: 4 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 64974 + rank: 3029 + popularity: 1846 + members: 142743 + favorites: 160 + synopsis: |- + Episode 1 is based on one-shot manga released in Vol. Origin, it explores the back-story of All Might's past and his journey into becoming the No.1 hero. + + Episode 2 is an epilogue picture drama for Boku no Hero Academia the Movie: Futari no Hero. + + Short specials included with the Blu-ray/DVD release of Boku no Hero Academia the Movie: Futari no Hero. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39607 + url: https://myanimelist.net/anime/39607/Tensei_shitara_Slime_Datta_Ken__Kanwa_-_Veldora_Nikki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1672/100144.jpg + small_image_url: https://myanimelist.net/images/anime/1672/100144t.jpg + large_image_url: https://myanimelist.net/images/anime/1672/100144l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1672/100144.webp + small_image_url: https://myanimelist.net/images/anime/1672/100144t.webp + large_image_url: https://myanimelist.net/images/anime/1672/100144l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tensei shitara Slime Datta Ken: Kanwa - Veldora Nikki' + - type: Synonym + title: Tensei shitara Slime Datta Ken Recap + - type: Synonym + title: That Time I got Reincarnated as a Slime Episode 24.5 + - type: Japanese + title: '転生したらスライムだった件 閑話: ヴェルドラ日記' + - type: English + title: 'That Time I Got Reincarnated as a Slime: Tales - Veldora''s Journal' + - type: German + title: Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2 Folge 36.5 – Veldoras Tagebuch 2 + - type: Spanish + title: 'That Time I Got Reincarnated as a Slime Temporada 2 Episodio 36.5 Digresión: Diario de Veldora' + - type: French + title: 'Moi, quand je me réincarne en Slime Saison 2 Épisode 36.5: Digression – Le journal de Veldra 2' + title: 'Tensei shitara Slime Datta Ken: Kanwa - Veldora Nikki' + title_english: 'That Time I Got Reincarnated as a Slime: Tales - Veldora''s Journal' + title_japanese: '転生したらスライムだった件 閑話: ヴェルドラ日記' + title_synonyms: + - Tensei shitara Slime Datta Ken Recap + - That Time I got Reincarnated as a Slime Episode 24.5 + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-03-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 3 + year: 2019 + to: + day: null + month: null + year: null + string: Mar 26, 2019 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 6.79 + scored_by: 77844 + rank: 6367 + popularity: 1852 + members: 142176 + favorites: 242 + synopsis: |- + Ifrit, who has been trapped in Rimuru due to the latter's Predator skill, recaps events of the season while in a discussion with Veldora as they play Shogi. + + (Source: Wikipedia) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 31537 + url: https://myanimelist.net/anime/31537/Manaria_Friends + images: + jpg: + image_url: https://myanimelist.net/images/anime/1287/111373.jpg + small_image_url: https://myanimelist.net/images/anime/1287/111373t.jpg + large_image_url: https://myanimelist.net/images/anime/1287/111373l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1287/111373.webp + small_image_url: https://myanimelist.net/images/anime/1287/111373t.webp + large_image_url: https://myanimelist.net/images/anime/1287/111373l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HbVaFnx-uAw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Manaria Friends + - type: Synonym + title: 'Rage of Bahamut: Manaria Friends' + - type: Synonym + title: 'Shingeki no Bahamut: Manaria Friends' + - type: Japanese + title: マナリアフレンズ + - type: English + title: Mysteria Friends + - type: German + title: Mysteria Friends + - type: Spanish + title: Mysteria Friends + - type: French + title: Mysteria Friends + title: Manaria Friends + title_english: Mysteria Friends + title_japanese: マナリアフレンズ + title_synonyms: + - 'Rage of Bahamut: Manaria Friends' + - 'Shingeki no Bahamut: Manaria Friends' + type: TV + source: Card game + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2019-01-21T00:00:00+00:00' + to: '2019-03-25T00:00:00+00:00' + prop: + from: + day: 21 + month: 1 + year: 2019 + to: + day: 25 + month: 3 + year: 2019 + string: Jan 21, 2019 to Mar 25, 2019 + duration: 14 min per ep + rating: PG-13 - Teens 13 or older + score: 6.71 + scored_by: 37977 + rank: 6869 + popularity: 1907 + members: 137703 + favorites: 344 + synopsis: |- + Mysteria Academy is a prestigious magic school that teaches magic without discrimination to the three factions (men, gods, demons), who usually are engaged in battle with each other. Two of the academy's students are Anne, a princess and honor student, and Grea, a princess born from a dragon and a human. + + (Source: ANN) + background: Manaria Friends was originally scheduled to premiere in April 2016, before being postponed and rescheduled + for January 21st, 2019. + season: winter + year: 2019 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37920 + url: https://myanimelist.net/anime/37920/Ueno-san_wa_Bukiyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1874/111374.jpg + small_image_url: https://myanimelist.net/images/anime/1874/111374t.jpg + large_image_url: https://myanimelist.net/images/anime/1874/111374l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1874/111374.webp + small_image_url: https://myanimelist.net/images/anime/1874/111374t.webp + large_image_url: https://myanimelist.net/images/anime/1874/111374l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RwcE1GIoHY0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ueno-san wa Bukiyou + - type: Japanese + title: 上野さんは不器用 + - type: English + title: How clumsy you are, Miss Ueno. + - type: German + title: How clumsy you are, Miss Ueno. + - type: Spanish + title: How Clumsy You Are, Miss Ueno. + - type: French + title: How Clumsy You Are, Miss Ueno. + title: Ueno-san wa Bukiyou + title_english: How clumsy you are, Miss Ueno. + title_japanese: 上野さんは不器用 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-01-07T00:00:00+00:00' + to: '2019-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2019 + to: + day: 25 + month: 3 + year: 2019 + string: Jan 7, 2019 to Mar 25, 2019 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 6.56 + scored_by: 58094 + rank: 7822 + popularity: 1958 + members: 132878 + favorites: 214 + synopsis: |- + As the head of her middle school's science club, it's only fitting that Ueno is also a brilliant inventor. With devices that can convert any liquid into drinkable water, deodorize the most foul smells, or even generate dark matter to be used as a means of concealment, it seems like nothing is beyond Ueno's capabilities. However, she doesn't invent these devices for the advancement of mankind. Rather, the one force that motivates her is love, the only phenomenon she can't quite figure out. + + Ueno is head over heels for Tanaka, her nonchalant fellow club member. Yet, because she is too nervous to confess her love and he is too oblivious to notice her affection, her love life is completely stagnant. In Ueno's mind, if she could just expose him to perverted situations, then surely he'd get flustered and fall for her, right? Assisted by her stone-faced classmate and dedicated wingwoman Yamashita, Ueno employs her many inventions on Tanaka in a lewd manner in hopes that he may one day understand how she feels. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2019 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1829 + type: anime + name: Lesprit + url: https://myanimelist.net/anime/producer/1829/Lesprit + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 37440 + url: https://myanimelist.net/anime/37440/Psycho-Pass__Sinners_of_the_System_Case1_-_Tsumi_to_Batsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1623/96878.jpg + small_image_url: https://myanimelist.net/images/anime/1623/96878t.jpg + large_image_url: https://myanimelist.net/images/anime/1623/96878l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1623/96878.webp + small_image_url: https://myanimelist.net/images/anime/1623/96878t.webp + large_image_url: https://myanimelist.net/images/anime/1623/96878l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9GVMoxhtrY8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Psycho-Pass: Sinners of the System Case.1 - Tsumi to Batsu' + - type: Synonym + title: 'Psycho-Pass SS Case 1: Tsumi to Batsu' + - type: Japanese + title: PSYCHO-PASS サイコパス|SS(Sinners of the System) Case.1「罪と罰」 + - type: English + title: 'Psycho-Pass: Sinners of the System Case.1 - Crime and Punishment' + - type: German + title: 'Psycho-Pass: Sinners of the System Case 1: Crime and Punishment' + - type: Spanish + title: 'Psycho-Pass: Sinners of the System Caso 1: Crimen y Castigo' + - type: French + title: 'Psycho-Pass : Crime et Châtiment (Case 1)' + title: 'Psycho-Pass: Sinners of the System Case.1 - Tsumi to Batsu' + title_english: 'Psycho-Pass: Sinners of the System Case.1 - Crime and Punishment' + title_japanese: PSYCHO-PASS サイコパス|SS(Sinners of the System) Case.1「罪と罰」 + title_synonyms: + - 'Psycho-Pass SS Case 1: Tsumi to Batsu' + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-01-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 1 + year: 2019 + to: + day: null + month: null + year: null + string: Jan 25, 2019 + duration: 1 hr + rating: R - 17+ (violence & profanity) + score: 7.17 + scored_by: 51133 + rank: 4167 + popularity: 2054 + members: 124924 + favorites: 102 + synopsis: "A runaway vehicle driven by Izumi Yasaka, en route to the Public Safety Bureau building, is reported shortly\ + \ before it crashes into the building. Izumi is a counselor who recently ran away while working at a latent criminal\ + \ isolation and rehabilitation facility known as Sanctuary.\n\nBefore Inspectors Mika Shimotsuki and Akane Tsunemori\ + \ get to interrogate the suspect, a sudden request is issued from the facility to promptly bring Izumi back. Interpreted\ + \ as a direct order from the Chief and the board at Sanctuary, the Inspectors obey, but insist that Izumi be escorted\ + \ back personally. Tsunemori intends to investigate further with the rest of the team at the Bureau. \n\nNow Inspector\ + \ Shimotsuki has finally been given the opportunity she had been waiting for—to be the primary investigator on an\ + \ important case. This case follows Shimotsuki and her team of Enforcers as they uncover the secrets of Sanctuary.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/38-2019-spring.yaml b/test/fixtures/jikan/season_matrix/38-2019-spring.yaml new file mode 100644 index 0000000..00220f1 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/38-2019-spring.yaml @@ -0,0 +1,3393 @@ +metadata: + captured_at: '2026-05-11T11:34:06Z' + label: 2019-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2019/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:05 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:ddef8fb2a3bc3f4d8a367a7aa5bea3acba6c8682 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 257 + per_page: 25 + data: + - mal_id: 38000 + url: https://myanimelist.net/anime/38000/Kimetsu_no_Yaiba + images: + jpg: + image_url: https://myanimelist.net/images/anime/1286/99889.jpg + small_image_url: https://myanimelist.net/images/anime/1286/99889t.jpg + large_image_url: https://myanimelist.net/images/anime/1286/99889l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1286/99889.webp + small_image_url: https://myanimelist.net/images/anime/1286/99889t.webp + large_image_url: https://myanimelist.net/images/anime/1286/99889l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6vMuWuWlW4I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimetsu no Yaiba + - type: Synonym + title: Blade of Demon Destruction + - type: Japanese + title: 鬼滅の刃 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba' + - type: German + title: Demon Slayer + - type: Spanish + title: 'Guardianes De La Noche: Kimetsu no Yaiba' + - type: French + title: Demon Slayer + title: Kimetsu no Yaiba + title_english: 'Demon Slayer: Kimetsu no Yaiba' + title_japanese: 鬼滅の刃 + title_synonyms: + - Blade of Demon Destruction + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2019-04-06T00:00:00+00:00' + to: '2019-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2019 + to: + day: 28 + month: 9 + year: 2019 + string: Apr 6, 2019 to Sep 28, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.4 + scored_by: 2364599 + rank: 231 + popularity: 5 + members: 3447943 + favorites: 95330 + synopsis: |- + Ever since the death of his father, the burden of supporting the family has fallen upon Tanjirou Kamado's shoulders. Though living impoverished on a remote mountain, the Kamado family are able to enjoy a relatively peaceful and happy life. One day, Tanjirou decides to go down to the local village to make a little money selling charcoal. On his way back, night falls, forcing Tanjirou to take shelter in the house of a strange man, who warns him of the existence of flesh-eating demons that lurk in the woods at night. + + When he finally arrives back home the next day, he is met with a horrifying sight—his whole family has been slaughtered. Worse still, the sole survivor is his sister Nezuko, who has been turned into a bloodthirsty demon. Consumed by rage and hatred, Tanjirou swears to avenge his family and stay by his only remaining sibling. Alongside the mysterious group calling themselves the Demon Slayer Corps, Tanjirou will do whatever it takes to slay the demons and protect the remnants of his beloved sister's humanity. + + [Written by MAL Rewrite] + background: The anime covers chapters 1 to 53 of the manga. Kimetsu no Yaiba won the Animation of the Year award in + the Television category at the Tokyo Anime Award Festival in 2020. + season: spring + year: 2019 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38524 + url: https://myanimelist.net/anime/38524/Shingeki_no_Kyojin_Season_3_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1517/100633.jpg + small_image_url: https://myanimelist.net/images/anime/1517/100633t.jpg + large_image_url: https://myanimelist.net/images/anime/1517/100633l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1517/100633.webp + small_image_url: https://myanimelist.net/images/anime/1517/100633t.webp + large_image_url: https://myanimelist.net/images/anime/1517/100633l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hKHepjfj5Tw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shingeki no Kyojin Season 3 Part 2 + - type: Japanese + title: 進撃の巨人 Season3 Part.2 + - type: English + title: Attack on Titan Season 3 Part 2 + - type: German + title: Attack on Titan Staffel 3 Teil 2 + - type: Spanish + title: Ataque a los Titanes Temporada 3 Parte 2 + - type: French + title: L'Attaque des Titans Saison 3 Partie 2 + title: Shingeki no Kyojin Season 3 Part 2 + title_english: Attack on Titan Season 3 Part 2 + title_japanese: 進撃の巨人 Season3 Part.2 + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2019-04-29T00:00:00+00:00' + to: '2019-07-01T00:00:00+00:00' + prop: + from: + day: 29 + month: 4 + year: 2019 + to: + day: 1 + month: 7 + year: 2019 + string: Apr 29, 2019 to Jul 1, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 9.05 + scored_by: 1793541 + rank: 8 + popularity: 20 + members: 2592246 + favorites: 63225 + synopsis: "Seeking to restore humanity's diminishing hope, the Survey Corps embark on a mission to retake Wall Maria,\ + \ where the battle against the merciless \"Titans\" takes the stage once again.\n\nReturning to the tattered Shiganshina\ + \ District that was once his home, Eren Yeager and the Corps find the town oddly unoccupied by Titans. Even after\ + \ the outer gate is plugged, they strangely encounter no opposition. The mission progresses smoothly until Armin Arlert,\ + \ highly suspicious of the enemy's absence, discovers distressing signs of a potential scheme against them. \n\nShingeki\ + \ no Kyojin Season 3 Part 2 follows Eren as he vows to take back everything that was once his. Alongside him, the\ + \ Survey Corps strive—through countless sacrifices—to carve a path towards victory and uncover the secrets locked\ + \ away in the Yeager family's basement.\n\n[Written by MAL Rewrite]" + background: Shingeki no Kyojin Season 3 Part 2 adapts content from volumes 18-22 of Hajime Isayama's award-winning manga + of the same name. + season: spring + year: 2019 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34134 + url: https://myanimelist.net/anime/34134/One_Punch_Man_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1247/122044.jpg + small_image_url: https://myanimelist.net/images/anime/1247/122044t.jpg + large_image_url: https://myanimelist.net/images/anime/1247/122044l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1247/122044.webp + small_image_url: https://myanimelist.net/images/anime/1247/122044t.webp + large_image_url: https://myanimelist.net/images/anime/1247/122044l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NezvLw2gRAY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: One Punch Man 2nd Season + - type: Synonym + title: One Punch-Man 2 + - type: Synonym + title: One-Punch Man 2 + - type: Synonym + title: OPM 2 + - type: Japanese + title: ワンパンマン 2期 + - type: English + title: One-Punch Man Season 2 + - type: German + title: One Punch Man Staffel 2 + - type: Spanish + title: One Punch Man Temporada 2 + - type: French + title: One Punch Man Saison 2 + title: One Punch Man 2nd Season + title_english: One-Punch Man Season 2 + title_japanese: ワンパンマン 2期 + title_synonyms: + - One Punch-Man 2 + - One-Punch Man 2 + - OPM 2 + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-10T00:00:00+00:00' + to: '2019-07-03T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2019 + to: + day: 3 + month: 7 + year: 2019 + string: Apr 10, 2019 to Jul 3, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.53 + scored_by: 1147441 + rank: 2123 + popularity: 57 + members: 1883814 + favorites: 6959 + synopsis: |- + In the wake of defeating Boros and his mighty army, Saitama has returned to his unremarkable everyday life in Z-City. However, unbeknownst to him, the number of monsters appearing is still continuously on the rise, putting a strain on the Hero Association's resources. Their top executives decide on the bold move of recruiting hoodlums in order to help in their battle. But during the first meeting with these potential newcomers, a mysterious man calling himself Garou makes his appearance. Claiming to be a monster, he starts mercilessly attacking the crowd. + + The mysterious Garou continues his rampage against the Hero Association, crushing every hero he encounters. He turns out to be the legendary martial artist Silverfang's best former disciple and seems driven by unknown motives. Regardless, this beast of a man seems unstoppable. Intrigued by this puzzling new foe and with an insatiable thirst for money, Saitama decides to seize the opportunity and joins the interesting martial arts competition. + + As the tournament commences and Garou continues his rampage, a new great menace reveals itself, threatening the entire human world. Could this finally be the earth-shattering catastrophe predicted by the great seer Madame Shibabawa? + + [Written by MAL Rewrite] + background: The anime season adapts chapters 38 through 84 of the manga. + season: spring + year: 2019 + broadcast: + day: Wednesdays + time: 01:35 + timezone: Asia/Tokyo + string: Wednesdays at 01:35 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38680 + url: https://myanimelist.net/anime/38680/Fruits_Basket_1st_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1447/99827.jpg + small_image_url: https://myanimelist.net/images/anime/1447/99827t.jpg + large_image_url: https://myanimelist.net/images/anime/1447/99827l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1447/99827.webp + small_image_url: https://myanimelist.net/images/anime/1447/99827t.webp + large_image_url: https://myanimelist.net/images/anime/1447/99827l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g5MDFMukmUI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fruits Basket 1st Season + - type: Synonym + title: Furuba + - type: Synonym + title: Fruits Basket (Zenpen) + - type: Japanese + title: フルーツバスケット + - type: English + title: Fruits Basket 1st Season + - type: German + title: Fruits Basket + - type: Spanish + title: Fruits Basket + - type: French + title: Fruits Basket + title: Fruits Basket 1st Season + title_english: Fruits Basket 1st Season + title_japanese: フルーツバスケット + title_synonyms: + - Furuba + - Fruits Basket (Zenpen) + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2019-04-06T00:00:00+00:00' + to: '2019-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2019 + to: + day: 21 + month: 9 + year: 2019 + string: Apr 6, 2019 to Sep 21, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 450557 + rank: 429 + popularity: 213 + members: 947425 + favorites: 18222 + synopsis: |- + Tooru Honda has always been fascinated by the story of the Chinese zodiac that her beloved mother told her as a child. However, a sudden family tragedy changes her life, and subsequent circumstances leave her all alone. Tooru is now forced to live in a tent, but little does she know that her temporary home resides on the private property of the esteemed Souma family. Stumbling upon their home one day, she encounters Shigure, an older Souma cousin, and Yuki, the "prince" of her school. Tooru explains that she lives nearby, but the Soumas eventually discover her well-kept secret of being homeless when they see her walking back to her tent one night. + + Things start to look up for Tooru as they kindly offer to take her in after hearing about her situation. But soon after, she is caught up in a fight between Yuki and his hot-tempered cousin, Kyou. While trying to stop them, she learns that the Souma family has a well-kept secret of their own: whenever they are hugged by a member of the opposite sex, they transform into the animals of the Chinese zodiac. + + With this new revelation, Tooru will find that living with the Soumas is an unexpected adventure filled with laughter and romance. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 100 + type: anime + name: TV Osaka + url: https://myanimelist.net/anime/producer/100/TV_Osaka + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 38329 + url: https://myanimelist.net/anime/38329/Seishun_Buta_Yarou_wa_Yumemiru_Shoujo_no_Yume_wo_Minai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1613/102179.jpg + small_image_url: https://myanimelist.net/images/anime/1613/102179t.jpg + large_image_url: https://myanimelist.net/images/anime/1613/102179l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1613/102179.webp + small_image_url: https://myanimelist.net/images/anime/1613/102179t.webp + large_image_url: https://myanimelist.net/images/anime/1613/102179l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QRJmlbgedkQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai + - type: Japanese + title: 青春ブタ野郎はゆめみる少女の夢を見ない + - type: English + title: Rascal Does Not Dream of a Dreaming Girl + - type: German + title: Rascal Does Not Dream of a Dreaming Girl + - type: French + title: Rascal Does Not Dream of a Dreaming Girl + title: Seishun Buta Yarou wa Yumemiru Shoujo no Yume wo Minai + title_english: Rascal Does Not Dream of a Dreaming Girl + title_japanese: 青春ブタ野郎はゆめみる少女の夢を見ない + title_synonyms: [] + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-06-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 6 + year: 2019 + to: + day: null + month: null + year: null + string: Jun 15, 2019 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.59 + scored_by: 520652 + rank: 119 + popularity: 275 + members: 822429 + favorites: 11258 + synopsis: |- + Six months ago, Sakuta Azusagawa had a chance encounter with a bunny girl in a library. Ever since then, he's been blissfully happy with his girlfriend: Mai Sakurajima, that same bunny girl. However, the reappearance of his mysterious first crush, the now-adult Shouko Makinohara, adds a new complication to his relationship with Mai. To make matters worse, he then encounters a middle school Shouko in the hospital, suffering from a grave illness. Mysteriously, his old scars begin throbbing whenever he's near her. + + With Shouko's bizarre situation somehow revolving around him, Sakuta will need to come to terms with his own conflicting feelings, for better or worse. With a girl's life in his hands, just what can he do? + + [Written by MAL Rewrite] + background: Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai adapts volumes 6 and 7 of Hajime Kamoshida's Seishun + Buta Series light novels. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 38003 + url: https://myanimelist.net/anime/38003/Bungou_Stray_Dogs_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1037/100463.jpg + small_image_url: https://myanimelist.net/images/anime/1037/100463t.jpg + large_image_url: https://myanimelist.net/images/anime/1037/100463l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1037/100463.webp + small_image_url: https://myanimelist.net/images/anime/1037/100463t.webp + large_image_url: https://myanimelist.net/images/anime/1037/100463l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bro64355Kws?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bungou Stray Dogs 3rd Season + - type: Japanese + title: 文豪ストレイドッグス 第3期 + - type: English + title: Bungo Stray Dogs 3 + - type: German + title: Bungo Stray Dogs Staffel 3 + - type: Spanish + title: Bungo Stray Dogs Temporada 3 + - type: French + title: Bungou Stray Dogs Saison 3 + title: Bungou Stray Dogs 3rd Season + title_english: Bungo Stray Dogs 3 + title_japanese: 文豪ストレイドッグス 第3期 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-12T00:00:00+00:00' + to: '2019-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2019 + to: + day: 28 + month: 6 + year: 2019 + string: Apr 12, 2019 to Jun 28, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.2 + scored_by: 378193 + rank: 443 + popularity: 334 + members: 709884 + favorites: 5085 + synopsis: |- + Following the conclusion of the three-way organizational war, government bureaucrat Ango Sakaguchi recalls an event that transpired years ago, after the death of the former Port Mafia boss. Osamu Dazai, still a new recruit at the time, was tasked with investigating rumors related to a mysterious explosion that decimated part of the city years ago—and its connection to the alleged reappearance of the former boss. + + Due to circumstances out of his control, he is partnered with Chuuya Nakahara, the gifted yet impulsive leader of a rival clan known as the Sheep, to uncover the truth behind the case and shine a light on the myth of Arahabaki—the god of fire who might just lead Dazai to the case's solution. + + Meanwhile, in the present day, it is business as usual once again for the Armed Detective Agency. Their peaceful break will not last for long, however, as enemies old and new gather their strength and prepare for another face-off. + + [Written by MAL Rewrite] + background: This season adapts chapters 38 through 53 of the manga. + season: spring + year: 2019 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36407 + url: https://myanimelist.net/anime/36407/Kenja_no_Mago + images: + jpg: + image_url: https://myanimelist.net/images/anime/1261/100452.jpg + small_image_url: https://myanimelist.net/images/anime/1261/100452t.jpg + large_image_url: https://myanimelist.net/images/anime/1261/100452l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1261/100452.webp + small_image_url: https://myanimelist.net/images/anime/1261/100452t.webp + large_image_url: https://myanimelist.net/images/anime/1261/100452l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QBp2oDxb4bc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kenja no Mago + - type: Synonym + title: Philosopher's Grandson + - type: Synonym + title: Magi's Grandson + - type: Japanese + title: 賢者の孫 + - type: English + title: Wise Man's Grandchild + - type: German + title: Wise Man's Grandchild + - type: Spanish + title: Wise Man's Grandchild + - type: French + title: Wise Man's Grandchild + title: Kenja no Mago + title_english: Wise Man's Grandchild + title_japanese: 賢者の孫 + title_synonyms: + - Philosopher's Grandson + - Magi's Grandson + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-10T00:00:00+00:00' + to: '2019-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2019 + to: + day: 26 + month: 6 + year: 2019 + string: Apr 10, 2019 to Jun 26, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.61 + scored_by: 375611 + rank: 7481 + popularity: 371 + members: 661343 + favorites: 3089 + synopsis: |- + In the kingdom of Earlshide, Merlin Wolford was once regarded as a national hero, hailed for both his power and achievements. Preferring a quiet life however, he secludes himself deep in the rural woods, dedicating his time to raising an orphan that he saved. This orphan is Shin, a normal salaryman in modern-day Japan who was reincarnated into Merlin's world while still retaining his past memories. As the years pass, Shin displays unparalleled talent in both magic casting and martial arts, much to Merlin's constant amazement. + + On his 15th birthday, however, it becomes apparent that Shin only developed his combat skills and nothing else, leaving him with blatant social awkwardness, a lack of common sense, and a middling sense of responsibility. As a result, Shin enrolls in the kingdom's Magic Academy to hone his skills and mature among other teenagers. However, living a normal life is impossible, as he is established as a local celebrity almost as soon as he arrives. + + As Shin Wolford adjusts to his high school life in the capital, he makes new friends, learns about the world, and fights off the various forces of evil surrounding him and his city. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 38186 + url: https://myanimelist.net/anime/38186/Bokutachi_wa_Benkyou_ga_Dekinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1602/100510.jpg + small_image_url: https://myanimelist.net/images/anime/1602/100510t.jpg + large_image_url: https://myanimelist.net/images/anime/1602/100510l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1602/100510.webp + small_image_url: https://myanimelist.net/images/anime/1602/100510t.webp + large_image_url: https://myanimelist.net/images/anime/1602/100510l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CXQdqp6JFxI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bokutachi wa Benkyou ga Dekinai + - type: Synonym + title: BokuBen + - type: Synonym + title: We Can't Study + - type: Japanese + title: ぼくたちは勉強ができない + - type: English + title: 'We Never Learn: BOKUBEN' + - type: German + title: 'We Never Learn: Bokuben' + - type: Spanish + title: 'We Never Learn: Bokuben' + - type: French + title: 'We Never Learn: Bokuben' + title: Bokutachi wa Benkyou ga Dekinai + title_english: 'We Never Learn: BOKUBEN' + title_japanese: ぼくたちは勉強ができない + title_synonyms: + - BokuBen + - We Can't Study + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-04-07T00:00:00+00:00' + to: '2019-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2019 + to: + day: 30 + month: 6 + year: 2019 + string: Apr 7, 2019 to Jun 30, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 246942 + rank: 3517 + popularity: 545 + members: 479615 + favorites: 1692 + synopsis: |- + Nariyuki Yuiga, an impoverished third-year high school student, works tirelessly to receive the VIP nomination, a scholarship that would cover all of his college tuition fees. In recognition of his hard work, the headmaster awards him the renowned scholarship. + + However, this scholarship is given under one condition: he must tutor the school's geniuses in their weakest subjects! Joining his new brigade of pupils are the math maestro Rizu Ogata, who wants to study humanities; the literature legend Fumino Furuhashi, who wants to study science; and Yuiga's sports-savvy childhood friend, Uruka Takemoto, who is hopeless at everything else. + + Bokutachi wa Benkyou ga Dekinai follows Yuiga as he tries to teach his three eccentric tutees in a series of strange and comedic antics. But as Ogata's and Furuhashi's ambitions conflict with their talents, will Yuiga be able to help his students achieve their dreams? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2101 + type: anime + name: ADK + url: https://myanimelist.net/anime/producer/2101/ADK + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1873 + type: anime + name: Silver + url: https://myanimelist.net/anime/producer/1873/Silver + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38472 + url: https://myanimelist.net/anime/38472/Isekai_Quartet + images: + jpg: + image_url: https://myanimelist.net/images/anime/1965/99667.jpg + small_image_url: https://myanimelist.net/images/anime/1965/99667t.jpg + large_image_url: https://myanimelist.net/images/anime/1965/99667l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1965/99667.webp + small_image_url: https://myanimelist.net/images/anime/1965/99667t.webp + large_image_url: https://myanimelist.net/images/anime/1965/99667l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S_FFeyW4yjw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Quartet + - type: Japanese + title: 異世界かるてっと + - type: English + title: Isekai Quartet + title: Isekai Quartet + title_english: Isekai Quartet + title_japanese: 異世界かるてっと + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-10T00:00:00+00:00' + to: '2019-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2019 + to: + day: 26 + month: 6 + year: 2019 + string: Apr 10, 2019 to Jun 26, 2019 + duration: 11 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 233645 + rank: 2873 + popularity: 647 + members: 416441 + favorites: 1053 + synopsis: |- + It is a normal day; everyone from deranged military girl Tanya Degurechaff and 16-year-old isekai protagonist Satou Kazuma to expansionist overlord Ainz Ooal Gown and demon sisters Rem and Ram go on with their daily lives. Suddenly, a conspicuous red button begging to be pressed appears before them. Overcome by curiosity, the otherworldly characters push the button, sending them to an unfamiliar world. + + With no way of escaping, the characters must lead a normal school life and make acquaintances with the others. One thing is certain: the classroom full of fan-favorite eccentric personalities never gets boring! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 443 + type: anime + name: Studio PuYUKAI + url: https://myanimelist.net/anime/producer/443/Studio_PuYUKAI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 38397 + url: https://myanimelist.net/anime/38397/Nande_Koko_ni_Sensei_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1765/99673.jpg + small_image_url: https://myanimelist.net/images/anime/1765/99673t.jpg + large_image_url: https://myanimelist.net/images/anime/1765/99673l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1765/99673.webp + small_image_url: https://myanimelist.net/images/anime/1765/99673t.webp + large_image_url: https://myanimelist.net/images/anime/1765/99673l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nande Koko ni Sensei ga!? + - type: Synonym + title: Nankoko + - type: Japanese + title: なんでここに先生が!? + - type: English + title: Why the Hell are You Here, Teacher!? + - type: German + title: Why the Hell Are You Here, Teacher? + - type: Spanish + title: Why the Hell Are You Here, Teacher!? + - type: French + title: Why the Hell Are You Here, Teacher!? + title: Nande Koko ni Sensei ga!? + title_english: Why the Hell are You Here, Teacher!? + title_japanese: なんでここに先生が!? + title_synonyms: + - Nankoko + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-08T00:00:00+00:00' + to: '2019-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2019 + to: + day: 24 + month: 6 + year: 2019 + string: Apr 8, 2019 to Jun 24, 2019 + duration: 11 min per ep + rating: R+ - Mild Nudity + score: 6.49 + scored_by: 194979 + rank: 8226 + popularity: 700 + members: 389589 + favorites: 1123 + synopsis: "Second year high school student Ichirou Satou has always been an average person—that is, until he runs into\ + \ some not-so-average situations with his teacher, Kana \"The Demon\" Kojima. Kojima is Satou's Japanese language\ + \ teacher with a reputation for being so ruthless that even school delinquents bow down to her. One fateful day, things\ + \ escalate when Satou runs into Kojima in the restroom, leading them to share an intimate encounter that makes his\ + \ imagination run wild for days after. \n\nNande Koko ni Sensei ga? follows the daily life of Satou and his teacher\ + \ as they continue to meet under similar conditions, growing ever closer with each encounter.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2019 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 2324 + type: anime + name: Scarlett + url: https://myanimelist.net/anime/producer/2324/Scarlett + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1890 + type: anime + name: Tear Studio + url: https://myanimelist.net/anime/producer/1890/Tear_Studio + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38759 + url: https://myanimelist.net/anime/38759/Sewayaki_Kitsune_no_Senko-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1814/99677.jpg + small_image_url: https://myanimelist.net/images/anime/1814/99677t.jpg + large_image_url: https://myanimelist.net/images/anime/1814/99677l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1814/99677.webp + small_image_url: https://myanimelist.net/images/anime/1814/99677t.webp + large_image_url: https://myanimelist.net/images/anime/1814/99677l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DUF5Ov7hmkM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sewayaki Kitsune no Senko-san + - type: Synonym + title: Meddlesome Kitsune Senko-san + - type: Japanese + title: 世話やきキツネの仙狐さん + - type: English + title: The Helpful Fox Senko-san + - type: German + title: The Helpful Fox Senko-san + - type: Spanish + title: The Helpful Fox Senko-san + - type: French + title: The Helpful Fox Senko-san + title: Sewayaki Kitsune no Senko-san + title_english: The Helpful Fox Senko-san + title_japanese: 世話やきキツネの仙狐さん + title_synonyms: + - Meddlesome Kitsune Senko-san + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-10T00:00:00+00:00' + to: '2019-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2019 + to: + day: 26 + month: 6 + year: 2019 + string: Apr 10, 2019 to Jun 26, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 191244 + rank: 3248 + popularity: 713 + members: 383904 + favorites: 2421 + synopsis: "Like many hardworking members of the workforce, Kuroto Nakano is perpetually stressed out by his job. Still,\ + \ since he lives alone, he must carry on to sustain himself. Little do humans like Kuroto know, this stress takes\ + \ the form of darkness residing within a person's body and will bring one's life to ruin. \n\nFox deities can see\ + \ this darkness and have the duty to save people before it is too late. To help rid Kuroto of his stress, Senko-san,\ + \ an eight hundred-year-old foxgirl, volunteers to take care of him, and will do everything she can to ease the tension\ + \ in his weary soul.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2019 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + - mal_id: 37435 + url: https://myanimelist.net/anime/37435/Carole___Tuesday + images: + jpg: + image_url: https://myanimelist.net/images/anime/1611/96157.jpg + small_image_url: https://myanimelist.net/images/anime/1611/96157t.jpg + large_image_url: https://myanimelist.net/images/anime/1611/96157l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1611/96157.webp + small_image_url: https://myanimelist.net/images/anime/1611/96157t.webp + large_image_url: https://myanimelist.net/images/anime/1611/96157l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CBak9m0bcB0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Carole & Tuesday + - type: Japanese + title: キャロル&チューズデイ + - type: English + title: Carole & Tuesday + - type: German + title: Carole und Tuesday + - type: Spanish + title: Carole y Tuesday + title: Carole & Tuesday + title_english: Carole & Tuesday + title_japanese: キャロル&チューズデイ + title_synonyms: [] + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-04-11T00:00:00+00:00' + to: '2019-10-03T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2019 + to: + day: 3 + month: 10 + year: 2019 + string: Apr 11, 2019 to Oct 3, 2019 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 153740 + rank: 1072 + popularity: 781 + members: 352158 + favorites: 3117 + synopsis: |- + It has been 50 years since mankind began its migration to the terraformed Mars, where they live in comfort due to advancements in AI. Carole lives in the metropolis of Alba City, working part-time by day and playing keyboard by night. Tuesday has run away from her home in Hershell City to escape the grip of her wealthy family, and instead hopes to pursue music with her acoustic guitar. + + After a fateful encounter, the two decide to perform music together. Up against the AI singers that dominate the music world, the two of them believe that together they can convey their feelings through their songs. Will hard work and luck be enough for the duo to create the biggest miracle that Mars has ever seen? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 38080 + url: https://myanimelist.net/anime/38080/Kono_Oto_Tomare + images: + jpg: + image_url: https://myanimelist.net/images/anime/1464/99881.jpg + small_image_url: https://myanimelist.net/images/anime/1464/99881t.jpg + large_image_url: https://myanimelist.net/images/anime/1464/99881l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1464/99881.webp + small_image_url: https://myanimelist.net/images/anime/1464/99881t.webp + large_image_url: https://myanimelist.net/images/anime/1464/99881l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TtE4mOHXNV0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Oto Tomare! + - type: Synonym + title: Stop This Sound! + - type: Japanese + title: この音とまれ! + - type: English + title: 'Kono Oto Tomare!: Sounds of Life' + - type: German + title: 'Kono Oto Tomare!: Sounds of Life' + - type: Spanish + title: 'Kono Oto Tomare!: Sounds of Life' + - type: French + title: 'Kono Oto Tomare!: Sounds of Life' + title: Kono Oto Tomare! + title_english: 'Kono Oto Tomare!: Sounds of Life' + title_japanese: この音とまれ! + title_synonyms: + - Stop This Sound! + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-04-07T00:00:00+00:00' + to: '2019-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2019 + to: + day: 30 + month: 6 + year: 2019 + string: Apr 7, 2019 to Jun 30, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.94 + scored_by: 138005 + rank: 849 + popularity: 782 + members: 351471 + favorites: 2813 + synopsis: "Gen Kudou, a koto maker, believes that his delinquent grandson Chika would never understand the profoundness\ + \ of the traditional musical instrument. In an attempt to make up for his naivety and understand the words of his\ + \ late grandfather, Chika tries to join the Tokise High School Koto Club. \n\nEven though the club is in dire need\ + \ of members, new club president Takezou Kurata is unwilling to easily accept Chika's application due to his bad reputation.\ + \ Nonetheless, after seeing Chika's seriousness and enthusiasm, Takezou allows the problem child to join, along with\ + \ koto prodigy Satowa Houzuki and three of Chika's energetic friends. Kono Oto Tomare! follows the merry band of musicians\ + \ as they aspire to play at the national competition.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2019 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38778 + url: https://myanimelist.net/anime/38778/Midara_na_Ao-chan_wa_Benkyou_ga_Dekinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1718/98214.jpg + small_image_url: https://myanimelist.net/images/anime/1718/98214t.jpg + large_image_url: https://myanimelist.net/images/anime/1718/98214l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1718/98214.webp + small_image_url: https://myanimelist.net/images/anime/1718/98214t.webp + large_image_url: https://myanimelist.net/images/anime/1718/98214l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IFJnE3XgeCs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Midara na Ao-chan wa Benkyou ga Dekinai + - type: Japanese + title: 淫らな青ちゃんは勉強ができない + - type: English + title: Ao-chan Can't Study! + - type: German + title: Ao-chan Can't Study! + - type: Spanish + title: Ao-chan Can't Study! + - type: French + title: Ao-chan Can't Study! + title: Midara na Ao-chan wa Benkyou ga Dekinai + title_english: Ao-chan Can't Study! + title_japanese: 淫らな青ちゃんは勉強ができない + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-06T00:00:00+00:00' + to: '2019-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2019 + to: + day: 22 + month: 6 + year: 2019 + string: Apr 6, 2019 to Jun 22, 2019 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 6.69 + scored_by: 147078 + rank: 7001 + popularity: 923 + members: 304563 + favorites: 618 + synopsis: |- + "Show them your A-O face!" As an innocent child, Ao Horie would unhesitantly proclaim the origins of her name. Now that she is in high school, she is determined to study hard in order to one day escape the influence of her lascivious father, a famous erotic author. However, when the amiable Takumi Kijima confesses to Horie, her mind runs wild with scandalous thoughts. + + Moans eager to escape, legs crossing, and a warmth spreading through her body, Horie cannot help but misconstrue Kijima's rather pure motivations. To make things worse, no matter how hard she tries to ward off Kijima, his advances do not stop. Now, if only she could just study! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Saturdays + time: 02:10 + timezone: Asia/Tokyo + string: Saturdays at 02:10 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 35848 + url: https://myanimelist.net/anime/35848/Promare + images: + jpg: + image_url: https://myanimelist.net/images/anime/1008/101845.jpg + small_image_url: https://myanimelist.net/images/anime/1008/101845t.jpg + large_image_url: https://myanimelist.net/images/anime/1008/101845l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1008/101845.webp + small_image_url: https://myanimelist.net/images/anime/1008/101845t.webp + large_image_url: https://myanimelist.net/images/anime/1008/101845l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2supSiC27XU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Promare + - type: Japanese + title: PROMARE(プロメア) + - type: English + title: Promare + title: Promare + title_english: Promare + title_japanese: PROMARE(プロメア) + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-05-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 5 + year: 2019 + to: + day: null + month: null + year: null + string: May 24, 2019 + duration: 1 hr 51 min + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 148992 + rank: 970 + popularity: 924 + members: 304177 + favorites: 3394 + synopsis: "Thirty years ago, a new race of flame-wielding mutants suddenly appeared, destroying a large portion of humanity.\ + \ These so-called “Burnish” have continued to appear at random, leaving a trail of death and destruction in their\ + \ wake.\n\nThe autonomous republic of Promepolis is a thriving nation thanks to the incredible efforts of their leader,\ + \ Kray Foresight, against the Burnish. A team of firefighters known as the Burning Rescue is tasked with stopping\ + \ these horrifying monsters, using the most performant technology available thanks to their incredible mechanic Lucia\ + \ Fex. Galo Thymos is an energetic young man, who considers Foresight his hero for saving his life and is the rescue\ + \ team's most recent recruit. \n\nA terrorist group calling themselves Mad Burnish has been causing havoc all over\ + \ the nation. After an encounter with Mad Burnish leader Lio Fotia, Galo sets out on his fated journey to find the\ + \ truth about these mutants, ultimately leading him to question everything he previously held to be true.\n\n[Written\ + \ by MAL Rewrite]" + background: Promare reunites the creative team of and , specifically director Hiroyuki Imaishi and screenwriter Kazuki + Nakashima. The film had been in development since 2013 and was first announced at Anime Expo in Los Angeles in 2017. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1572 + type: anime + name: XFLAG + url: https://myanimelist.net/anime/producer/1572/XFLAG + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 38594 + url: https://myanimelist.net/anime/38594/Kimi_to_Nami_ni_Noretara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1893/99701.jpg + small_image_url: https://myanimelist.net/images/anime/1893/99701t.jpg + large_image_url: https://myanimelist.net/images/anime/1893/99701l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1893/99701.webp + small_image_url: https://myanimelist.net/images/anime/1893/99701t.webp + large_image_url: https://myanimelist.net/images/anime/1893/99701l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/n7HtNsJdMDw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi to, Nami ni Noretara + - type: Japanese + title: きみと、波にのれたら + - type: English + title: Ride Your Wave + - type: German + title: Ride Your Wave + - type: Spanish + title: El Amor está en el Agua + - type: French + title: Ride Your Wave + title: Kimi to, Nami ni Noretara + title_english: Ride Your Wave + title_japanese: きみと、波にのれたら + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-06-21T00:00:00+00:00' + to: null + prop: + from: + day: 21 + month: 6 + year: 2019 + to: + day: null + month: null + year: null + string: Jun 21, 2019 + duration: 1 hr 35 min + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 105777 + rank: 1699 + popularity: 1083 + members: 259812 + favorites: 1536 + synopsis: |- + Entranced by surfing and the sea, Hinako Mukaimizu is a spirited girl who attends college in a coastal city with no consideration for her future career. Her life takes an unexpected turn when a fireworks mishap sets the apartment building she lives in ablaze, where she is saved by a talented firefighter named Minato Hinageshi. Upon meeting, the two quickly become acquainted with one another—Hinako is instantly enamored by Minato's reliable personality and passion for saving others, while Minato is intrigued by surfing and is eager to learn how. As Hinako begins to teach Minato about surfing, the pair eventually fall in love and begin a gentle and devoted relationship. + + However, while surfing may seem fun and carefree, it can still be a dangerous and unpredictable activity. This is what Hinako learns when a surfing incident completely changes her life, leaving her forced to contemplate her undecided future. In search of her own calling, Hinako begins her journey of self-discovery, keeping Minato by her side as she gradually attempts to find her purpose and ride her own wave. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 36999 + url: https://myanimelist.net/anime/36999/Zoku_Owarimonogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1022/96168.jpg + small_image_url: https://myanimelist.net/images/anime/1022/96168t.jpg + large_image_url: https://myanimelist.net/images/anime/1022/96168l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1022/96168.webp + small_image_url: https://myanimelist.net/images/anime/1022/96168t.webp + large_image_url: https://myanimelist.net/images/anime/1022/96168l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1MXkeC3IKDk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zoku Owarimonogatari + - type: Japanese + title: 続・終物語 + title: Zoku Owarimonogatari + title_english: null + title_japanese: 続・終物語 + title_synonyms: [] + type: TV + source: Light novel + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2019-05-19T00:00:00+00:00' + to: '2019-06-23T00:00:00+00:00' + prop: + from: + day: 19 + month: 5 + year: 2019 + to: + day: 23 + month: 6 + year: 2019 + string: May 19, 2019 to Jun 23, 2019 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 8.44 + scored_by: 122005 + rank: 197 + popularity: 1117 + members: 253139 + favorites: 1083 + synopsis: |- + Graduation day is finally here, marking the end of Koyomi Araragi's eccentric high school life full of peculiar relationships with otherworldly beings. + + However, Araragi is unexpectedly absorbed into his own bathroom mirror and trapped inside a bizarre world where everything he knows is completely reversed—the haughty Karen Araragi is shorter than usual, poker-faced Yotsugi Ononoki is brimming with emotion, and cute ghost girl Mayoi Hachikuji is a grown woman! But not everything is as it seems. + + Zoku Owarimonogatari details the story of Araragi's endeavors in this new world as he struggles to return to his home and understand the nature of this bizarre dimension. + + [Written by MAL Rewrite] + background: 'Zoku Owarimonogatari adapts the sixth and final volume of NisiOisiN''s Monogatari Series: Final Season.' + season: spring + year: 2019 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 37614 + url: https://myanimelist.net/anime/37614/Hitoribocchi_no_Marumaru_Seikatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1612/145601.jpg + small_image_url: https://myanimelist.net/images/anime/1612/145601t.jpg + large_image_url: https://myanimelist.net/images/anime/1612/145601l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1612/145601.webp + small_image_url: https://myanimelist.net/images/anime/1612/145601t.webp + large_image_url: https://myanimelist.net/images/anime/1612/145601l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6mbD6rjdqUM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hitoribocchi no Marumaru Seikatsu + - type: Synonym + title: Hitoribocchi no ○○ Seikatsu + - type: Synonym + title: Hitori Bocchi's ○○ Lifestyle + - type: Japanese + title: ひとりぼっちの○○生活 + title: Hitoribocchi no Marumaru Seikatsu + title_english: null + title_japanese: ひとりぼっちの○○生活 + title_synonyms: + - Hitoribocchi no ○○ Seikatsu + - Hitori Bocchi's ○○ Lifestyle + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-06T00:00:00+00:00' + to: '2019-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2019 + to: + day: 22 + month: 6 + year: 2019 + string: Apr 6, 2019 to Jun 22, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.48 + scored_by: 105245 + rank: 2321 + popularity: 1209 + members: 234551 + favorites: 1275 + synopsis: |- + Many of us know what it is like to transition to a new school with few to no friends in a new environment, going through the arduous process of getting to know people again. Bocchi Hitori knows this struggle all too well, having just graduated from elementary school and thrown into middle school. Unfortunately, she suffers from extreme social anxiety: she faints when overwhelmed, vomits when nervous, and draws up ridiculously convoluted plans to avoid social contact. It does not help that her only friend from elementary school, Kai Yawara, will not be attending the same middle school as Bocchi. However, wanting to help her, Kai severs ties with Bocchi and promises to reconcile with her when she befriends all of her classmates in her new middle school class. + + Even though Bocchi has no faith in herself, she is determined to be friends with Kai again. Summoning all of her courage, Bocchi takes on the daunting challenge of making friends with her entire class, starting with the delinquent-looking girl sitting in front of her... + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 923 + type: anime + name: CyberStep + url: https://myanimelist.net/anime/producer/923/CyberStep + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + licensors: [] + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38787 + url: https://myanimelist.net/anime/38787/Senryuu_Shoujo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1751/98216.jpg + small_image_url: https://myanimelist.net/images/anime/1751/98216t.jpg + large_image_url: https://myanimelist.net/images/anime/1751/98216l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1751/98216.webp + small_image_url: https://myanimelist.net/images/anime/1751/98216t.webp + large_image_url: https://myanimelist.net/images/anime/1751/98216l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wKWpnz8GiCg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Senryuu Shoujo + - type: Synonym + title: Senryuu Girl + - type: Japanese + title: 川柳少女 + - type: English + title: Senryu Girl + - type: German + title: Senryu Girl + - type: Spanish + title: Senryu Girl + - type: French + title: Senryu Girl + title: Senryuu Shoujo + title_english: Senryu Girl + title_japanese: 川柳少女 + title_synonyms: + - Senryuu Girl + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-06T00:00:00+00:00' + to: '2019-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2019 + to: + day: 22 + month: 6 + year: 2019 + string: Apr 6, 2019 to Jun 22, 2019 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 84796 + rank: 2886 + popularity: 1401 + members: 199980 + favorites: 451 + synopsis: "To the students of Karai High School, Nanako Yukishiro is a pretty, calm, and cute 16-year-old. However,\ + \ Nanako is no ordinary girl, as she cannot speak! Instead, Nanako communicates through senryuu—17-syllable-long poems.\ + \ \n\nSixteen-year-old Eiji Busujima used to be delinquent in his middle school years. However, he has since turned\ + \ over a new leaf due to his newfound love of senryuu. Despite his menacing looks, Eiji gets along well with Nanako\ + \ as a fellow member of the Literature Club.\n\nEven though Nanako is mute, the adorable pair have no problem communicating\ + \ with each other. Senryuu Shoujo is a light and relaxing story of two teenagers' daily lives.\n\n[Written by MAL\ + \ Rewrite]" + background: '' + season: spring + year: 2019 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34620 + url: https://myanimelist.net/anime/34620/Kono_Yo_no_Hate_de_Koi_wo_Utau_Shoujo_YU-NO + images: + jpg: + image_url: https://myanimelist.net/images/anime/1009/100450.jpg + small_image_url: https://myanimelist.net/images/anime/1009/100450t.jpg + large_image_url: https://myanimelist.net/images/anime/1009/100450l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1009/100450.webp + small_image_url: https://myanimelist.net/images/anime/1009/100450t.webp + large_image_url: https://myanimelist.net/images/anime/1009/100450l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O8ET_s6zyXg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Yo no Hate de Koi wo Utau Shoujo YU-NO + - type: Synonym + title: Yuno + - type: Japanese + title: この世の果てで恋を唄う少女YU-NO + - type: English + title: 'YU-NO: A Girl Who Chants Love at the Bound of This World' + - type: German + title: 'YU-NO: A Girl Who Chants Love at the Bound of This World' + - type: Spanish + title: 'YU-NO: A Girl Who Chants Love at the Bound of this World' + - type: French + title: 'YU-NO: A Girl Who Chants Love at the Bound of This World' + title: Kono Yo no Hate de Koi wo Utau Shoujo YU-NO + title_english: 'YU-NO: A Girl Who Chants Love at the Bound of This World' + title_japanese: この世の果てで恋を唄う少女YU-NO + title_synonyms: + - Yuno + type: TV + source: Visual novel + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2019-04-02T00:00:00+00:00' + to: '2019-10-01T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2019 + to: + day: 1 + month: 10 + year: 2019 + string: Apr 2, 2019 to Oct 1, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.62 + scored_by: 56500 + rank: 7419 + popularity: 1534 + members: 180300 + favorites: 562 + synopsis: |- + Takuya Arima is a young student whose father, a historian who has conducted various researches, disappeared recently. During a summer vacation Takuya receives a peculiar package from his missing father, along with a letter containing information about the existence of various parallel worlds. At first Takuya doesn't take it seriously, but soon he realizes that he possesses a device that allows him to travel to alternate dimensions. Is his father alive, after all? If so, where is he? + + (Source: VNDB) + background: '' + season: spring + year: 2019 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 39063 + url: https://myanimelist.net/anime/39063/Fairy_Gone + images: + jpg: + image_url: https://myanimelist.net/images/anime/1562/100460.jpg + small_image_url: https://myanimelist.net/images/anime/1562/100460t.jpg + large_image_url: https://myanimelist.net/images/anime/1562/100460l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1562/100460.webp + small_image_url: https://myanimelist.net/images/anime/1562/100460t.webp + large_image_url: https://myanimelist.net/images/anime/1562/100460l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1SSibhkeICk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fairy Gone + - type: Japanese + title: Fairy gone フェアリーゴーン + - type: English + title: Fairy Gone + title: Fairy Gone + title_english: Fairy Gone + title_japanese: Fairy gone フェアリーゴーン + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-04-08T00:00:00+00:00' + to: '2019-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2019 + to: + day: 24 + month: 6 + year: 2019 + string: Apr 8, 2019 to Jun 24, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.82 + scored_by: 56658 + rank: 11893 + popularity: 1570 + members: 176453 + favorites: 223 + synopsis: |- + "Once upon a time, fairies were tools of war." + + The story takes place in a world where fairies possess and dwell in animals, giving them mysterious abilities. By removing the organs of a possessed animal and transplanting them into humans, fairies can be summoned as an alter ego and be used as a weapon. Such individuals who used fairies as war tools were called "Fairy Soldiers." Once the war was over and they completed their roles, the soldiers lost their purpose. Some began working for the government, some joined the mafia, and some even became terrorists, as each chose their own way to live. + + Nine years have passed since the war. The protagonist Mariya is a new recruit of "Dorothea," an organization which investigates and suppresses fairy-related crimes. Amidst the unstable political situation, criminals with lingering wounds from the war and past conflicts emerge and engage in terrorism as an act of revenge. This is the story of Fairy Soldiers, fighting for their own justice in a chaotic postwar world. + + (Source: MAL News) + background: '' + season: spring + year: 2019 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1515 + type: anime + name: Sanyo + url: https://myanimelist.net/anime/producer/1515/Sanyo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 37806 + url: https://myanimelist.net/anime/37806/Gunjou_no_Magmell + images: + jpg: + image_url: https://myanimelist.net/images/anime/1063/98597.jpg + small_image_url: https://myanimelist.net/images/anime/1063/98597t.jpg + large_image_url: https://myanimelist.net/images/anime/1063/98597l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1063/98597.webp + small_image_url: https://myanimelist.net/images/anime/1063/98597t.webp + large_image_url: https://myanimelist.net/images/anime/1063/98597l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1ghnR7G2WHo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gunjou no Magmell + - type: Synonym + title: Magmel of the Sea Blue + - type: Japanese + title: 群青のマグメル + - type: English + title: Ultramarine Magmell + - type: Spanish + title: Ultramarine Magmell + title: Gunjou no Magmell + title_english: Ultramarine Magmell + title_japanese: 群青のマグメル + title_synonyms: + - Magmel of the Sea Blue + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-04-07T00:00:00+00:00' + to: '2019-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2019 + to: + day: 30 + month: 6 + year: 2019 + string: Apr 7, 2019 to Jun 30, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.12 + scored_by: 80301 + rank: 10364 + popularity: 1582 + members: 174201 + favorites: 201 + synopsis: |- + A new era of exploration begins with the sudden appearance of a new continent known as Magmell. Magmell's vast trove of never-before-seen natural resources spurs on the exploration of its vast landscape. However, the unknown is not always docile. In order to sustain the expeditions, people known as "anglers" specialize in dealing with Magmell's dangerous wildlife. One such angler is the highly-skilled and experienced Inyou, who performs search and rescue operations for clients with the help of his assistant, Zero. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 2153 + type: anime + name: FanFan Inc. + url: https://myanimelist.net/anime/producer/2153/FanFan_Inc + - mal_id: 2154 + type: anime + name: Shun Produce + url: https://myanimelist.net/anime/producer/2154/Shun_Produce + licensors: [] + studios: + - mal_id: 1129 + type: anime + name: Pierrot Plus + url: https://myanimelist.net/anime/producer/1129/Pierrot_Plus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 34544 + url: https://myanimelist.net/anime/34544/Koutetsujou_no_Kabaneri_Movie_3__Unato_Kessen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1749/99713.jpg + small_image_url: https://myanimelist.net/images/anime/1749/99713t.jpg + large_image_url: https://myanimelist.net/images/anime/1749/99713l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1749/99713.webp + small_image_url: https://myanimelist.net/images/anime/1749/99713t.webp + large_image_url: https://myanimelist.net/images/anime/1749/99713l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fY_vRm7xOzg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Koutetsujou no Kabaneri Movie 3: Unato Kessen' + - type: Japanese + title: 甲鉄城のカバネリ~海門決戦~ + - type: English + title: 'Kabaneri of the Iron Fortress: The Battle of Unato' + - type: German + title: 'Kabaneri of the Iron Fortress: The Battle of Unato' + - type: Spanish + title: 'Kabaneri de la Fortaleza de Hierro: La Batalla de Unato.' + - type: French + title: 'Kabaneri of the Iron Fortress: The Battle of Unato' + title: 'Koutetsujou no Kabaneri Movie 3: Unato Kessen' + title_english: 'Kabaneri of the Iron Fortress: The Battle of Unato' + title_japanese: 甲鉄城のカバネリ~海門決戦~ + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-05-10T00:00:00+00:00' + to: null + prop: + from: + day: 10 + month: 5 + year: 2019 + to: + day: null + month: null + year: null + string: May 10, 2019 + duration: 1 hr 7 min + rating: R - 17+ (violence & profanity) + score: 7.69 + scored_by: 73552 + rank: 1490 + popularity: 1770 + members: 150994 + favorites: 274 + synopsis: |- + Half a year has passed. Arriving in the Iron Fortress, Ikoma and Mumei set foot in Unato: another ravaged zone that fell into the grip of the deadly Kabane. + + In this war-torn zone, the group fends off more dangerous Kabane that are attacking with patterns they had never seen before. The Iron Fortress crew eventually meet up with a survival group which requests their aid in reclaiming the zone. The newly forged alliance ventures deeper into the area of the castle and investigates the peculiar case of these new Kabane. But their search for answers unearths truths that are far more horrifying than they imagined. Forced to confront the reality behind the Kabane, Ikoma, Mumei, and their allies come to realize the despair buried within Unato. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 38735 + url: https://myanimelist.net/anime/38735/7_Seeds + images: + jpg: + image_url: https://myanimelist.net/images/anime/1219/116954.jpg + small_image_url: https://myanimelist.net/images/anime/1219/116954t.jpg + large_image_url: https://myanimelist.net/images/anime/1219/116954l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1219/116954.webp + small_image_url: https://myanimelist.net/images/anime/1219/116954t.webp + large_image_url: https://myanimelist.net/images/anime/1219/116954l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XRZvxqPO9sE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 7 Seeds + - type: Synonym + title: Seven Seeds + - type: Japanese + title: 7SEEDS + - type: English + title: 7 Seeds + title: 7 Seeds + title_english: 7 Seeds + title_japanese: 7SEEDS + title_synonyms: + - Seven Seeds + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-06-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 6 + year: 2019 + to: + day: null + month: null + year: null + string: Jun 28, 2019 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 6.58 + scored_by: 72794 + rank: 7647 + popularity: 1797 + members: 148809 + favorites: 427 + synopsis: |- + Imagine this: you are living a normal day in your life. Maybe you are out with friends, eating your family's home-cooked meal or spending time with your girlfriend. When you next wake up, you are suddenly thrust into a strange, new world, surrounded by five strangers on a rapidly sinking boat in the middle of a storm. + + For Natsu Iwashimizu, this is her new reality. Humanity has perished, and all that remains of the Japanese population are five groups of men and women who were chosen to be sent to the future in hopes of continuing mankind's existence. While every other person chosen has a useful talent such as martial arts, knowledge, or architecture, Natsu is a shy high school girl who cannot even raise her voice to shout. The new world is dangerous beyond imagination, and although Natsu seems to lack helpful skills, she must go with the others making their way to the "Seven Fuji" in order to survive. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + licensors: [] + studios: + - mal_id: 3 + type: anime + name: Gonzo + url: https://myanimelist.net/anime/producer/3/Gonzo + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 37426 + url: https://myanimelist.net/anime/37426/Sarazanmai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1159/100455.jpg + small_image_url: https://myanimelist.net/images/anime/1159/100455t.jpg + large_image_url: https://myanimelist.net/images/anime/1159/100455l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1159/100455.webp + small_image_url: https://myanimelist.net/images/anime/1159/100455t.webp + large_image_url: https://myanimelist.net/images/anime/1159/100455l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_QPnvGdkbnc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sarazanmai + - type: Japanese + title: さらざんまい + - type: English + title: Sarazanmai + title: Sarazanmai + title_english: Sarazanmai + title_japanese: さらざんまい + title_synonyms: [] + type: TV + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2019-04-12T00:00:00+00:00' + to: '2019-06-21T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2019 + to: + day: 21 + month: 6 + year: 2019 + string: Apr 12, 2019 to Jun 21, 2019 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 51428 + rank: 2395 + popularity: 1839 + members: 143388 + favorites: 1413 + synopsis: |- + After the noble Kappa Kingdom falls to the Otter Empire, the Kappa prince Keppi loses much of his power and becomes helpless against the unseen Kapa-zombies. These zombies plague the world, and are the creations of the Otters and manifestations of people's deepest desires. With no other choice, Keppi must rely on three young boys: Kazuki Yasaka, who must carry a box with him wherever he goes; Enta Jinnai, Kazuki's childhood friend; and Tooi Kuji, a delinquent and a school truant. + + By having the mythical organ called a shirikodama removed from them, the boys are able to become Kappa themselves and fight the Kapa-zombies. However, to defeat them, the boys must connect with each other via their minds, bodies, and—most importantly—secrets. As the Kappa Kingdom relies on these boys, they must reveal themselves as they have never done before, all the while learning that connections are fragile and truly precious things. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2019 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 282 + type: anime + name: Gentosha Comics + url: https://myanimelist.net/anime/producer/282/Gentosha_Comics + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + - mal_id: 1828 + type: anime + name: Lapin Track + url: https://myanimelist.net/anime/producer/1828/Lapin_Track + genres: + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/39-2019-summer.yaml b/test/fixtures/jikan/season_matrix/39-2019-summer.yaml new file mode 100644 index 0000000..4c19051 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/39-2019-summer.yaml @@ -0,0 +1,3378 @@ +metadata: + captured_at: '2026-05-11T11:34:08Z' + label: 2019-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2019/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:08 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:0c1293d924ce140418f4e030c761f4bdc19053c3 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 273 + per_page: 25 + data: + - mal_id: 38691 + url: https://myanimelist.net/anime/38691/Dr_Stone + images: + jpg: + image_url: https://myanimelist.net/images/anime/1613/102576.jpg + small_image_url: https://myanimelist.net/images/anime/1613/102576t.jpg + large_image_url: https://myanimelist.net/images/anime/1613/102576l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1613/102576.webp + small_image_url: https://myanimelist.net/images/anime/1613/102576t.webp + large_image_url: https://myanimelist.net/images/anime/1613/102576l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2ei4KpfCOAI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dr. Stone + - type: Japanese + title: ドクターストーン + - type: English + title: Dr. Stone + title: Dr. Stone + title_english: Dr. Stone + title_japanese: ドクターストーン + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-07-05T00:00:00+00:00' + to: '2019-12-13T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2019 + to: + day: 13 + month: 12 + year: 2019 + string: Jul 5, 2019 to Dec 13, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.26 + scored_by: 1181047 + rank: 365 + popularity: 49 + members: 1956888 + favorites: 31361 + synopsis: |- + After five years of harboring unspoken feelings, high-schooler Taiju Ooki is finally ready to confess his love to Yuzuriha Ogawa. Just when Taiju begins his confession however, a blinding green light strikes the Earth and petrifies mankind around the world—turning every single human into stone. + + Several millennia later, Taiju awakens to find the modern world completely nonexistent, as nature has flourished in the years humanity stood still. Among a stone world of statues, Taiju encounters one other living human: his science-loving friend Senkuu, who has been active for a few months. Taiju learns that Senkuu has developed a grand scheme—to launch the complete revival of civilization with science. Taiju's brawn and Senkuu's brains combine to forge a formidable partnership, and they soon uncover a method to revive those petrified. + + However, Senkuu's master plan is threatened when his ideologies are challenged by those who awaken. All the while, the reason for mankind's petrification remains unknown. + + [Written by MAL Rewrite] + background: Dr. Stone adapts chapters 1-60 of the manga. + season: summer + year: 2019 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37521 + url: https://myanimelist.net/anime/37521/Vinland_Saga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1500/103005.jpg + small_image_url: https://myanimelist.net/images/anime/1500/103005t.jpg + large_image_url: https://myanimelist.net/images/anime/1500/103005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1500/103005.webp + small_image_url: https://myanimelist.net/images/anime/1500/103005t.webp + large_image_url: https://myanimelist.net/images/anime/1500/103005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f8JrZ7Q_p-8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Vinland Saga + - type: Japanese + title: ヴィンランド・サガ + title: Vinland Saga + title_english: null + title_japanese: ヴィンランド・サガ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-07-08T00:00:00+00:00' + to: '2019-12-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2019 + to: + day: 30 + month: 12 + year: 2019 + string: Jul 8, 2019 to Dec 30, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.78 + scored_by: 1063262 + rank: 43 + popularity: 61 + members: 1821596 + favorites: 57342 + synopsis: |- + Young Thorfinn grew up listening to the stories of old sailors that had traveled the ocean and reached the place of legend, Vinland. It's said to be warm and fertile, a place where there would be no need for fighting—not at all like the frozen village in Iceland where he was born, and certainly not like his current life as a mercenary. War is his home now. Though his father once told him, "You have no enemies, nobody does. There is nobody who it's okay to hurt," as he grew, Thorfinn knew that nothing was further from the truth. + + The war between England and the Danes grows worse with each passing year. Death has become commonplace, and the viking mercenaries are loving every moment of it. Allying with either side will cause a massive swing in the balance of power, and the vikings are happy to make names for themselves and take any spoils they earn along the way. Among the chaos, Thorfinn must take his revenge and kill Askeladd, the man who murdered his father. The only paradise for the vikings, it seems, is the era of war and death that rages on. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38671 + url: https://myanimelist.net/anime/38671/Enen_no_Shouboutai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1664/103275.jpg + small_image_url: https://myanimelist.net/images/anime/1664/103275t.jpg + large_image_url: https://myanimelist.net/images/anime/1664/103275l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1664/103275.webp + small_image_url: https://myanimelist.net/images/anime/1664/103275t.webp + large_image_url: https://myanimelist.net/images/anime/1664/103275l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9uT5Iw2d0q4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Enen no Shouboutai + - type: Synonym + title: Fire Brigade of Flames + - type: Japanese + title: 炎炎ノ消防隊 + - type: English + title: Fire Force + - type: German + title: Fire Force + - type: Spanish + title: Fire Force + - type: French + title: Fire Force + title: Enen no Shouboutai + title_english: Fire Force + title_japanese: 炎炎ノ消防隊 + title_synonyms: + - Fire Brigade of Flames + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-07-06T00:00:00+00:00' + to: '2019-12-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2019 + to: + day: 28 + month: 12 + year: 2019 + string: Jul 6, 2019 to Dec 28, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 833926 + rank: 1387 + popularity: 93 + members: 1544155 + favorites: 10614 + synopsis: |- + Spontaneous Human Combustion: a chaotic phenomenon that has plagued humanity for years, randomly transforming ordinary people into flaming, violent creatures known as Infernals. While Infernals make up the first-generation accounts of Human Combustion, the second and third generations became known as pyrokinetics—people gifted with the ability to manipulate and control their flames while remaining human. To combat the Infernal threat and discover the cause, the Tokyo Armed Forces, Fire Defense Agency, and Holy Church of Sol produced their answer: the Special Fire Force. + + Young and eager third-generation pyrokinetic Shinra Kusakabe, nicknamed Devil's Footprints for his explosive ability to ignite his feet at will, becomes a member of the lively Special Fire Force Company 8. Upholding the brigade's duty to extinguish the blazing Infernals and lay their souls to rest, Shinra is determined to become a hero who will save the lives of those threatened by the flame terror. + + However, this is not the hero's game Shinra imagined. The Fire Force is a fractured mess of feuding brigades, abnormal Infernal sightings are increasing all over Tokyo, and a shadowy group is claiming to have answers to the strange fire that caused the death of Shinra's family 12 years ago. Faced with many obstacles within and outside the Fire Force, Shinra fights to uncover the truth behind the burning mysteries that have kept him in the dark. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38826 + url: https://myanimelist.net/anime/38826/Tenki_no_Ko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1880/101146.jpg + small_image_url: https://myanimelist.net/images/anime/1880/101146t.jpg + large_image_url: https://myanimelist.net/images/anime/1880/101146l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1880/101146.webp + small_image_url: https://myanimelist.net/images/anime/1880/101146t.webp + large_image_url: https://myanimelist.net/images/anime/1880/101146l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Q6iK6DjV_iE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tenki no Ko + - type: Japanese + title: 天気の子 + - type: English + title: Weathering with You + - type: German + title: 'Weathering With You: Das Mädchen, das die Sonne berührte' + - type: Spanish + title: El Tiempo Contigo (Weathering With You) + - type: French + title: Les Enfants du Temps + title: Tenki no Ko + title_english: Weathering with You + title_japanese: 天気の子 + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-07-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 7 + year: 2019 + to: + day: null + month: null + year: null + string: Jul 19, 2019 + duration: 1 hr 52 min + rating: PG-13 - Teens 13 or older + score: 8.27 + scored_by: 679202 + rank: 359 + popularity: 156 + members: 1130530 + favorites: 13367 + synopsis: |- + Tokyo is currently experiencing rain showers that seem to disrupt the usual pace of everyone living there to no end. Amidst this seemingly eternal downpour arrives the runaway high school student Hodaka Morishima, who struggles to financially support himself—ending up with a job at a small-time publisher. At the same time, the orphaned Hina Amano also strives to find work to sustain herself and her younger brother. + + Both fates intertwine when Hodaka attempts to rescue Hina from shady men, deciding to run away together. Subsequently, Hodaka discovers that Hina has a strange yet astounding power: the ability to call out the sun whenever she prays for it. With Tokyo's unusual weather in mind, Hodaka sees the potential of this ability. He suggests that Hina should become a "sunshine girl"—someone who will clear the sky for people when they need it the most. + + Things begin looking up for them at first. However, it is common knowledge that power always comes with a hefty price... + + [Written by MAL Rewrite] + background: 'Tenki no Ko sold more than 1.1 million tickets, grossing 1.6 billion yen (about US$15.22 million) in its + first three days in more than 350 theaters. The film ranked #1 in its opening weekend and is currently the #7 highest-earning + domestic film of all time in Japan and the highest-grossing film in Japan in 2019. Tenki no Ko is also Japan''s submission + for the Best International Feature Film category at the 92nd Academy Awards—the first anime that Japan has submitted + in the category since Mononoke Hime in 1998. It won the prize for Animation of the Year award at the 43rd annual Japan + Academy Prize ceremony. It also won the Social Impact Award on the 23rd Japan Media Arts Festival.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1929 + type: anime + name: voque ting + url: https://myanimelist.net/anime/producer/1929/voque_ting + - mal_id: 1956 + type: anime + name: STORY + url: https://myanimelist.net/anime/producer/1956/STORY + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37347 + url: https://myanimelist.net/anime/37347/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1730/101329.jpg + small_image_url: https://myanimelist.net/images/anime/1730/101329t.jpg + large_image_url: https://myanimelist.net/images/anime/1730/101329l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1730/101329.webp + small_image_url: https://myanimelist.net/images/anime/1730/101329t.webp + large_image_url: https://myanimelist.net/images/anime/1730/101329l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SSgtBDgvIzc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II + - type: Synonym + title: DanMachi 2nd Season + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon 2nd Season + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうかII + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? II + - type: German + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? II + - type: French + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? II + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? II + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうかII + title_synonyms: + - DanMachi 2nd Season + - Is It Wrong That I Want to Meet You in a Dungeon 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-13T00:00:00+00:00' + to: '2019-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2019 + to: + day: 28 + month: 9 + year: 2019 + string: Jul 13, 2019 to Sep 28, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 519458 + rank: 3675 + popularity: 228 + members: 906118 + favorites: 2148 + synopsis: |- + It is business as usual in the massive city of Orario, where legions of adventurers gather to explore the monster-infested "Dungeon." Among them is the easily flustered yet brave Bell Cranel, the sole member of the Hestia Familia. With the help of his demi-human supporter Liliruca Arde and competent blacksmith Welf Crozzo, Bell has earned the title of Little Rookie by becoming Orario's fastest-growing adventurer thanks to his endeavors within the deeper levels of the Dungeon. + + Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II continues Bell's adventures as he tries to bring glory to his goddess and protect those he cares about. However, various familias and gods across the city begin to take notice of his achievements and attempt to add him to their ranks. + + [Written by MAL Rewrite] + background: The series adapts the volumes 6, 7 and 8 of the light novel of Fujino Omori's series of the same title. + season: summer + year: 2019 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 621 + type: anime + name: SoftBank Creative + url: https://myanimelist.net/anime/producer/621/SoftBank_Creative + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 38040 + url: https://myanimelist.net/anime/38040/Kono_Subarashii_Sekai_ni_Shukufuku_wo_Movie__Kurenai_Densetsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1638/119321.jpg + small_image_url: https://myanimelist.net/images/anime/1638/119321t.jpg + large_image_url: https://myanimelist.net/images/anime/1638/119321l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1638/119321.webp + small_image_url: https://myanimelist.net/images/anime/1638/119321t.webp + large_image_url: https://myanimelist.net/images/anime/1638/119321l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Q4FQUMcYqiQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu' + - type: Synonym + title: KonoSuba Movie + - type: Synonym + title: Eiga Kono Subarashii Sekai ni Shukufuku wo! + - type: Japanese + title: 映画 この素晴らしい世界に祝福を!紅伝説 + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! - Legend of Crimson' + - type: German + title: Konosuba -God's Blessing on This Wonderful World!- Legend of Crimson + - type: Spanish + title: 'KonoSuba: God''s Blessing on This Wonderful World!: Legend of Crimson' + - type: French + title: Konosuba -God's Blessing on This Wonderful World!- Legend of Crimson + title: 'Kono Subarashii Sekai ni Shukufuku wo! Movie: Kurenai Densetsu' + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! - Legend of Crimson' + title_japanese: 映画 この素晴らしい世界に祝福を!紅伝説 + title_synonyms: + - KonoSuba Movie + - Eiga Kono Subarashii Sekai ni Shukufuku wo! + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-08-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 8 + year: 2019 + to: + day: null + month: null + year: null + string: Aug 30, 2019 + duration: 1 hr 30 min + rating: PG-13 - Teens 13 or older + score: 8.4 + scored_by: 561416 + rank: 232 + popularity: 239 + members: 887300 + favorites: 5064 + synopsis: |- + It is not strange that the Demon Lord's forces fear the Crimson Demons, the clan from which Megumin and Yunyun originate. Even if the Demon Lord's generals attack their village, the Crimson Demons can just easily brush them off with their supreme mastery of advanced and overpowered magic. + + When Yunyun receives a seemingly serious letter regarding a potential disaster coming to her hometown, she immediately informs Kazuma Satou and the rest of his party. After a series of wacky misunderstandings, it turns out to be a mere prank by her fellow demon who wants to be an author. Even so, Megumin becomes worried about her family and sets out toward the Crimson Demons' village with the gang. + + There, Kazuma and the others decide to sightsee the wonders of Megumin's birthplace. However, they soon come to realize that the nonsense threat they received might have been more than just a joke. + + [Written by MAL Rewrite] + background: 'Kono Subarashii Sekai ni Shukufuku wo!: Kurenai Densetsu adapts volume 5 of Natsume Akatsuki''s light novel + series of the same name.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 36882 + url: https://myanimelist.net/anime/36882/Arifureta_Shokugyou_de_Sekai_Saikyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1776/97682.jpg + small_image_url: https://myanimelist.net/images/anime/1776/97682t.jpg + large_image_url: https://myanimelist.net/images/anime/1776/97682l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1776/97682.webp + small_image_url: https://myanimelist.net/images/anime/1776/97682t.webp + large_image_url: https://myanimelist.net/images/anime/1776/97682l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xoIaPNWLxy0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arifureta Shokugyou de Sekai Saikyou + - type: Synonym + title: From Common Job Class to the Strongest in the World + - type: Japanese + title: ありふれた職業で世界最強 + - type: English + title: 'Arifureta: From Commonplace to World''s Strongest' + - type: German + title: 'Arifureta: From Commonplace to World''s Strongest' + - type: French + title: 'Arifureta: From Commonplace to World''s Strongest' + title: Arifureta Shokugyou de Sekai Saikyou + title_english: 'Arifureta: From Commonplace to World''s Strongest' + title_japanese: ありふれた職業で世界最強 + title_synonyms: + - From Common Job Class to the Strongest in the World + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-07-08T00:00:00+00:00' + to: '2019-10-07T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2019 + to: + day: 7 + month: 10 + year: 2019 + string: Jul 8, 2019 to Oct 7, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 461155 + rank: 6769 + popularity: 277 + members: 817132 + favorites: 6902 + synopsis: "The ordinary life of 17-year-old otaku Hajime Nagumo is disrupted when he and his classmates are summoned\ + \ to a fantasy world and tasked with saving mankind. While his classmates are gifted with impressive abilities useful\ + \ in combat, Hajime is belittled for only gaining an inferior transmutation skill that lacks any real offensive power.\ + \ \n\nDuring an expedition in the Great Orcus Labyrinth, Hajime is betrayed by one of his classmates, plummeting him\ + \ to the bottom of an abyss. Though he survives the fall, Hajime is faced with menacing monsters and misfortunes that\ + \ send him spiraling into a grim nightmare. Desperate to live and return home one day, he resolves to fight for his\ + \ survival—only to meet an imprisoned vampire he names Yue, who is also seeking to escape the labyrinth. Taking an\ + \ interest in him, Yue and a few others along the way accompany Hajime on his journey to find a way back home, while\ + \ steadily transforming from commonplace to the world's strongest. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2019 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 737 + type: anime + name: Sony Music Communications + url: https://myanimelist.net/anime/producer/737/Sony_Music_Communications + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 39533 + url: https://myanimelist.net/anime/39533/Given + images: + jpg: + image_url: https://myanimelist.net/images/anime/1666/102238.jpg + small_image_url: https://myanimelist.net/images/anime/1666/102238t.jpg + large_image_url: https://myanimelist.net/images/anime/1666/102238l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1666/102238.webp + small_image_url: https://myanimelist.net/images/anime/1666/102238t.webp + large_image_url: https://myanimelist.net/images/anime/1666/102238l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Dwv4MiB08TY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Given + - type: Japanese + title: ギヴン + - type: English + title: given + title: Given + title_english: given + title_japanese: ギヴン + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2019-07-12T00:00:00+00:00' + to: '2019-09-20T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2019 + to: + day: 20 + month: 9 + year: 2019 + string: Jul 12, 2019 to Sep 20, 2019 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 347549 + rank: 330 + popularity: 388 + members: 637540 + favorites: 18146 + synopsis: "Tightly clutching his Gibson guitar, Mafuyu Satou steps out of his dark apartment to begin another day of\ + \ his high school life. While taking a nap in a quiet spot on the gymnasium staircase, he has a chance encounter with\ + \ fellow student Ritsuka Uenoyama, who berates him for letting his guitar's strings rust and break. Noticing Uenoyama's\ + \ knowledge of the instrument, Satou pleads for him to fix it and to teach him how to play. Uenoyama eventually agrees\ + \ and invites him to sit in on a jam session with his two band mates: bassist Haruki Nakayama and drummer Akihiko\ + \ Kaji.\n \nSatou's voice is strikingly beautiful, filling Uenoyama with the determination to make Satou the lead\ + \ singer of the band. Though reticent at first, Satou takes the offer after an emotional meeting with an old friend.\ + \ With the support of his new friends, Satou must not only learn how to play guitar, but also come to terms with the\ + \ mysterious circumstances that led him to be its owner.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2019 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1672 + type: anime + name: Shinshokan + url: https://myanimelist.net/anime/producer/1672/Shinshokan + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 39741 + url: https://myanimelist.net/anime/39741/Violet_Evergarden_Gaiden__Eien_to_Jidou_Shuki_Ningyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1667/112943.jpg + small_image_url: https://myanimelist.net/images/anime/1667/112943t.jpg + large_image_url: https://myanimelist.net/images/anime/1667/112943l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1667/112943.webp + small_image_url: https://myanimelist.net/images/anime/1667/112943t.webp + large_image_url: https://myanimelist.net/images/anime/1667/112943l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lWRXk7nOhsE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou' + - type: Synonym + title: 'Violet Evergarden Side Story: Eternity and the Auto Memory Doll' + - type: Japanese + title: ヴァイオレット・エヴァーガーデン 外伝 -永遠と自動手記人形- + - type: English + title: 'Violet Evergarden: Eternity and the Auto Memory Doll' + - type: German + title: Violet Evergarden und das Band der Freundschaft + - type: Spanish + title: 'Violet Evergarden Gaiden: La Eternidad y la Muñeca de Recuerdos Automáticos' + - type: French + title: 'Violet Evergarden: Eternité et la Poupée de Souvenirs Automatiques' + title: 'Violet Evergarden Gaiden: Eien to Jidou Shuki Ningyou' + title_english: 'Violet Evergarden: Eternity and the Auto Memory Doll' + title_japanese: ヴァイオレット・エヴァーガーデン 外伝 -永遠と自動手記人形- + title_synonyms: + - 'Violet Evergarden Side Story: Eternity and the Auto Memory Doll' + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-09-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 9 + year: 2019 + to: + day: null + month: null + year: null + string: Sep 6, 2019 + duration: 1 hr 31 min + rating: PG-13 - Teens 13 or older + score: 8.42 + scored_by: 284153 + rank: 218 + popularity: 541 + members: 483060 + favorites: 1749 + synopsis: "Isabella, the daughter of the noble York family, is enrolled in an all-girls academy to be groomed into a\ + \ dame worthy of nobility. However, she has given up on her future, seeing the prestigious school as nothing more\ + \ than a prison from the outside world. Her family notices her struggling in her lessons and decides to hire Violet\ + \ Evergarden to personally tutor her under the guise of a handmaiden. \n\nAt first, Isabella treats Violet coldly.\ + \ Violet seems to be able to do everything perfectly, leading Isabella to assume that she was born with a silver spoon.\ + \ After some time together, Isabella begins to realize that Violet has had her own struggles and starts to open up\ + \ to her. Isabella soon reveals that she has lost contact with her beloved younger sister, Taylor Bartlett, whom she\ + \ yearns to see again. \n\nHaving experienced the power of words through her past clientele, Violet asks if Isabella\ + \ wishes to write a letter to Taylor. Will Violet be able to help Isabella convey her feelings to her long-lost sister?\n\ + \n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 39026 + url: https://myanimelist.net/anime/39026/Dumbbell_Nan_Kilo_Moteru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1385/101060.jpg + small_image_url: https://myanimelist.net/images/anime/1385/101060t.jpg + large_image_url: https://myanimelist.net/images/anime/1385/101060l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1385/101060.webp + small_image_url: https://myanimelist.net/images/anime/1385/101060t.webp + large_image_url: https://myanimelist.net/images/anime/1385/101060l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2YPtn01c66M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dumbbell Nan Kilo Moteru? + - type: Synonym + title: How Many Kilograms are the Dumbbells You Lift? + - type: Japanese + title: ダンベル何キロ持てる? + - type: English + title: How Heavy Are the Dumbbells You Lift? + - type: German + title: How Heavy Are The Dumbbelss You Lift? + title: Dumbbell Nan Kilo Moteru? + title_english: How Heavy Are the Dumbbells You Lift? + title_japanese: ダンベル何キロ持てる? + title_synonyms: + - How Many Kilograms are the Dumbbells You Lift? + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-03T00:00:00+00:00' + to: '2019-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2019 + to: + day: 18 + month: 9 + year: 2019 + string: Jul 3, 2019 to Sep 18, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.22 + scored_by: 199503 + rank: 3811 + popularity: 621 + members: 431364 + favorites: 1336 + synopsis: |- + During a regular after-school grub crawl, gluttonous high schooler Hibiki Sakura is confronted about her ever-expanding waistline by her best friend, Ayaka Uehara. With her attempts at solitary exercise failing miserably, Hibiki decides to join the newly opened Silverman Gym. At her orientation, Hibiki runs into student council president and school idol Akemi Souryuuin. + + However, it soon turns out that Hibiki is in for a lot more than she bargained for. Not only is Silverman Gym full of world-renowned bodybuilders and athletes, but to make matters worse, Akemi turns out to be a total muscle fetishist! Grossed out by the scene unfolding before her eyes, Hibiki begins to leave, only to be stopped by trainer Naruzou Machio. Completely enthralled with her newfound Prince Charming, Hibiki signs up as a gym member. Now, as a result of her spur-of-the-moment decision, Hibiki must adapt to her new lifestyle. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + demographics: [] + - mal_id: 38753 + url: https://myanimelist.net/anime/38753/Araburu_Kisetsu_no_Otome-domo_yo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1622/111483.jpg + small_image_url: https://myanimelist.net/images/anime/1622/111483t.jpg + large_image_url: https://myanimelist.net/images/anime/1622/111483l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1622/111483.webp + small_image_url: https://myanimelist.net/images/anime/1622/111483t.webp + large_image_url: https://myanimelist.net/images/anime/1622/111483l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f-lS_fWGUZE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Araburu Kisetsu no Otome-domo yo. + - type: Synonym + title: Maidens of the Savage Season + - type: Japanese + title: 荒ぶる季節の乙女どもよ。 + - type: English + title: O Maidens in Your Savage Season + title: Araburu Kisetsu no Otome-domo yo. + title_english: O Maidens in Your Savage Season + title_japanese: 荒ぶる季節の乙女どもよ。 + title_synonyms: + - Maidens of the Savage Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-06T00:00:00+00:00' + to: '2019-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2019 + to: + day: 21 + month: 9 + year: 2019 + string: Jul 6, 2019 to Sep 21, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.29 + scored_by: 165044 + rank: 3320 + popularity: 727 + members: 375774 + favorites: 1673 + synopsis: "When they were little kids laughing and playing together, Izumi Norimoto and Kazusa Onodera were like siblings.\ + \ But as their bodies matured into middle school, Kazusa began seeing him as something different; unfortunately for\ + \ her, so did the other girls. Ostracized, Kazusa had no choice but to distance herself from him going into high school.\ + \ After joining the literature club, however, she finds friends that keep her mind occupied. Known throughout the\ + \ school for reading aloud sex scenes in literature novels, the club's reputation has kept all teachers from accepting\ + \ the task of being their adviser.\n \nDuring a discussion about what they would put on their bucket list, one\ + \ of the girls says one thing: sex. This single word sends ripples throughout the five girls, as the thought of sex\ + \ begins taking over their daily lives. And, after walking in on Izumi during a very private moment, Kazusa is sent\ + \ into a spiral of emotion that forces her to face her true feelings for him. Now, with their hearts racing and the\ + \ literature club facing immediate disbandment, the five girls must work hard to keep both their sanities and their\ + \ club alive.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2019 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37744 + url: https://myanimelist.net/anime/37744/Isekai_Cheat_Magician + images: + jpg: + image_url: https://myanimelist.net/images/anime/1282/102248.jpg + small_image_url: https://myanimelist.net/images/anime/1282/102248t.jpg + large_image_url: https://myanimelist.net/images/anime/1282/102248l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1282/102248.webp + small_image_url: https://myanimelist.net/images/anime/1282/102248t.webp + large_image_url: https://myanimelist.net/images/anime/1282/102248l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qMSJKQEAAtw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Cheat Magician + - type: Synonym + title: Isekai Cheat Majutsushi + - type: Japanese + title: 異世界チート魔術師〈マジシャン〉 + - type: English + title: Isekai Cheat Magician + title: Isekai Cheat Magician + title_english: Isekai Cheat Magician + title_japanese: 異世界チート魔術師〈マジシャン〉 + title_synonyms: + - Isekai Cheat Majutsushi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-10T00:00:00+00:00' + to: '2019-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2019 + to: + day: 25 + month: 9 + year: 2019 + string: Jul 10, 2019 to Sep 25, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.48 + scored_by: 189974 + rank: 13301 + popularity: 750 + members: 367571 + favorites: 576 + synopsis: |- + Regular high schooler Taichi Nishimura and his childhood friend, Rin Azuma, are on their way to school one ordinary morning. Suddenly, a glowing light envelops them, transporting them to a fantasy world full of magical creatures. + + Upon their arrival, Taichi and Rin are threatened by a beast. They are promptly saved by a group of adventurers, who advise the pair that traveling unarmed and inexperienced makes them vulnerable to the recently increasing monster attacks. Taichi and Rin are directed to the Guild, where they can determine their magical aptitude and register as adventurers. However, the test they take reveals an unprecedented result: Taichi and Rin possess extraordinary powers that far surpass the standard mage, instantly transforming them from typical high school students to the ultimate cheat magicians. + + Taichi and Rin learn to grasp the full extent of their powers and familiarize themselves with their new world. However, while the duo seeks to uncover the reason behind their transportation and a possible way back to their original world, unexpected trouble lurks in the shadows. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1708 + type: anime + name: Shufunotomo + url: https://myanimelist.net/anime/producer/1708/Shufunotomo + licensors: [] + studios: + - mal_id: 354 + type: anime + name: Encourage Films + url: https://myanimelist.net/anime/producer/354/Encourage_Films + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 38993 + url: https://myanimelist.net/anime/38993/Karakai_Jouzu_no_Takagi-san_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1393/107033.jpg + small_image_url: https://myanimelist.net/images/anime/1393/107033t.jpg + large_image_url: https://myanimelist.net/images/anime/1393/107033l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1393/107033.webp + small_image_url: https://myanimelist.net/images/anime/1393/107033t.webp + large_image_url: https://myanimelist.net/images/anime/1393/107033l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z_iXQH8Bxog?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karakai Jouzu no Takagi-san 2 + - type: Synonym + title: Skilled Teaser Takagi-san 2nd Season + - type: Synonym + title: Karakai Jouzu no Takagi-san Second Season + - type: Japanese + title: からかい上手の高木さん2 + - type: English + title: Teasing Master Takagi-san 2 + - type: German + title: Karakai Jozu No Takagi-san Staffel 2 + - type: Spanish + title: 'Takagi-san: Experta en Bromas Pesadas Temporada 2' + - type: French + title: Karakai Jozu No Takagi-san Saison 2 + title: Karakai Jouzu no Takagi-san 2 + title_english: Teasing Master Takagi-san 2 + title_japanese: からかい上手の高木さん2 + title_synonyms: + - Skilled Teaser Takagi-san 2nd Season + - Karakai Jouzu no Takagi-san Second Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-07T00:00:00+00:00' + to: '2019-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2019 + to: + day: 22 + month: 9 + year: 2019 + string: Jul 7, 2019 to Sep 22, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.02 + scored_by: 197340 + rank: 721 + popularity: 760 + members: 362224 + favorites: 2289 + synopsis: |- + Even after spending a considerable amount of time with Takagi, Nishikata is still struggling to find a perfect plan to defeat the expert teaser. A battle of wits, a contest of physical prowess, a test of courage—any strategy he employs to expose her weaknesses is to no avail. On the contrary, Nishikata's pitiful attempts only reveal more of his own flaws, which Takagi takes advantage of to become increasingly daring in her teasing attempts. To make things worse for Nishikata, rumors about him and Takagi may have spread in class due to the frequent interactions between them. + + However, the optimistic Nishikata believes that wisdom comes with age and that as the days go by, his experience with her constant teasing will eventually bear fruit, leading him to the awaited moment of victory. Thus, Nishikata continues to strive for the seemingly impossible—to outsmart Takagi and make her blush with embarrassment. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1507 + type: anime + name: Sumitomo + url: https://myanimelist.net/anime/producer/1507/Sumitomo + licensors: [] + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39326 + url: https://myanimelist.net/anime/39326/Kawaikereba_Hentai_demo_Suki_ni_Natte_Kuremasu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1430/102439.jpg + small_image_url: https://myanimelist.net/images/anime/1430/102439t.jpg + large_image_url: https://myanimelist.net/images/anime/1430/102439l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1430/102439.webp + small_image_url: https://myanimelist.net/images/anime/1430/102439t.webp + large_image_url: https://myanimelist.net/images/anime/1430/102439l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LHx7lkoQ8Cc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kawaikereba Hentai demo Suki ni Natte Kuremasu ka? + - type: Synonym + title: Would you love a pervert as long as she's cute? + - type: Japanese + title: 可愛ければ変態でも好きになってくれますか? + - type: English + title: 'Hensuki: Are you willing to Fall in Love with a Pervert, as long as she''s a Cutie?' + - type: German + title: 'Hensuki: Are You Willing to Fall in Love with a Pervert, as Long as She''s a Cutie?' + - type: Spanish + title: 'Hensuki: Are You Willing to Fall in Love with a Pervert, as long as She''s a Cutie?' + - type: French + title: 'Hensuki: Are You Willing to Fall in Love with a Pervert, as Long as She''s a Cutie?' + title: Kawaikereba Hentai demo Suki ni Natte Kuremasu ka? + title_english: 'Hensuki: Are you willing to Fall in Love with a Pervert, as long as she''s a Cutie?' + title_japanese: 可愛ければ変態でも好きになってくれますか? + title_synonyms: + - Would you love a pervert as long as she's cute? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-08T00:00:00+00:00' + to: '2019-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2019 + to: + day: 23 + month: 9 + year: 2019 + string: Jul 8, 2019 to Sep 23, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.46 + scored_by: 173556 + rank: 8400 + popularity: 761 + members: 360706 + favorites: 991 + synopsis: "As far as it goes, many boys, especially in their teenage years, want to have a girlfriend. Keiki Kiryuu\ + \ is no exception. One eventful afternoon, his days of yearning for a lover seem to come to an end when he receives\ + \ a love letter from an anonymous sender—along with a pair of white panties. \n\nTo determine the identity of his\ + \ secret admirer, referred to as Cinderella, he proceeds to investigate several possible candidates including his\ + \ senior Sayuki Tokihara, his underclassman Yuika Koga, and his classmate Mao Nanjou. However, as Keiki seeks to uncover\ + \ who this mystery girl might be, he comes to know about the perverted fetishes hidden behind each candidate's innocent\ + \ exteriors...\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2019 + broadcast: + day: Mondays + time: '20:00' + timezone: Asia/Tokyo + string: Mondays at 20:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 687 + type: anime + name: Bandai Namco Live Creative + url: https://myanimelist.net/anime/producer/687/Bandai_Namco_Live_Creative + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 39198 + url: https://myanimelist.net/anime/39198/Kanata_no_Astra + images: + jpg: + image_url: https://myanimelist.net/images/anime/1784/106428.jpg + small_image_url: https://myanimelist.net/images/anime/1784/106428t.jpg + large_image_url: https://myanimelist.net/images/anime/1784/106428l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1784/106428.webp + small_image_url: https://myanimelist.net/images/anime/1784/106428t.webp + large_image_url: https://myanimelist.net/images/anime/1784/106428l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wD9o_8UjOvg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanata no Astra + - type: Synonym + title: Astra Lost in Space + - type: Japanese + title: 彼方のアストラ + - type: English + title: Astra Lost in Space + title: Kanata no Astra + title_english: Astra Lost in Space + title_japanese: 彼方のアストラ + title_synonyms: + - Astra Lost in Space + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-03T00:00:00+00:00' + to: '2019-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2019 + to: + day: 18 + month: 9 + year: 2019 + string: Jul 3, 2019 to Sep 18, 2019 + duration: 28 min per ep + rating: PG-13 - Teens 13 or older + score: 8.07 + scored_by: 162559 + rank: 644 + popularity: 803 + members: 345890 + favorites: 3485 + synopsis: |- + In the year 2063, space travel is feasible and commercially available. As the cheerful Aries Spring arrives at the spaceport to attend a camp on the distant planet McPa, her purse is suddenly snatched by a reckless thief. Luckily, the athletic Kanata Hoshijima is able to retrieve it for her, and Aries soon discovers that he is among the group of teenagers who will be traveling with her on the excursion as team B-5. + + Upon arriving at their campsite, the group's trip takes a turn for the worse when a strange sphere of black light sucks them into the vast reaches of outer space. Stranded with seemingly no hope, they find an abandoned ship nearby that provides them with the means to return home. However, they soon discover that they are not as close to their campsite as they initially thought, but are in fact thousands of light-years away from home. + + With this realization, the nine members must cautiously manage their resources, maintain their strength, and unite as one to conquer the darkness of space together. While the reason behind their trip's sudden obstruction remains unknown, they nevertheless embark on the treacherous voyage back home aboard their new ship, the Astra. + + [Written by MAL Rewrite] + background: The series won the 51st Seiun Award for Best Dramatic Presentation in 2020. + season: summer + year: 2019 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38573 + url: https://myanimelist.net/anime/38573/Tsuujou_Kougeki_ga_Zentai_Kougeki_de_Ni-kai_Kougeki_no_Okaasan_wa_Suki_desu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1225/102250.jpg + small_image_url: https://myanimelist.net/images/anime/1225/102250t.jpg + large_image_url: https://myanimelist.net/images/anime/1225/102250l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1225/102250.webp + small_image_url: https://myanimelist.net/images/anime/1225/102250t.webp + large_image_url: https://myanimelist.net/images/anime/1225/102250l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3LY0_8QRhm0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka? + - type: Synonym + title: Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power + - type: Synonym + title: Okaa-san Online + - type: Japanese + title: 通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか? + - type: English + title: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + - type: German + title: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + - type: Spanish + title: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + - type: French + title: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + title: Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki desu ka? + title_english: Do You Love Your Mom and Her Two-Hit Multi-Target Attacks? + title_japanese: 通常攻撃が全体攻撃で二回攻撃のお母さんは好きですか? + title_synonyms: + - Do You Like Your Mom? Her Normal Attack is Two Attacks at Full Power + - Okaa-san Online + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-13T00:00:00+00:00' + to: '2019-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2019 + to: + day: 28 + month: 9 + year: 2019 + string: Jul 13, 2019 to Sep 28, 2019 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 5.55 + scored_by: 135364 + rank: 13084 + popularity: 908 + members: 310352 + favorites: 520 + synopsis: "Forming a party with one's mother in an online game seems not only unlikely but also uncomfortable to most\ + \ teenage gamers. \n\nUnfortunately, Masato Oosuki finds himself in that exact scenario. After completing a seemingly\ + \ meaningless survey, he is thrown into the world of a fantasy MMORPG—and his mother Mamako actually tagged along\ + \ with him! On top of all of that, Mamako turns out to be an overpowered swordswoman, possessing the power of two-hit\ + \ multi-target attacks! After minor tension between the two, they search for party members, meeting the merchant Porta\ + \ and the sage Wise, starting their journey to clear the game.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2019 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1787 + type: anime + name: KLab + url: https://myanimelist.net/anime/producer/1787/KLab + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 38610 + url: https://myanimelist.net/anime/38610/Tejina-senpai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1510/99891.jpg + small_image_url: https://myanimelist.net/images/anime/1510/99891t.jpg + large_image_url: https://myanimelist.net/images/anime/1510/99891l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1510/99891.webp + small_image_url: https://myanimelist.net/images/anime/1510/99891t.webp + large_image_url: https://myanimelist.net/images/anime/1510/99891l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kfKLC2Hdh1Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tejina-senpai + - type: Japanese + title: 手品先輩 + - type: English + title: Magical Sempai + - type: German + title: Magical Sempai + - type: Spanish + title: Magical Sempai + - type: French + title: Magical Sempai + title: Tejina-senpai + title_english: Magical Sempai + title_japanese: 手品先輩 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-02T00:00:00+00:00' + to: '2019-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2019 + to: + day: 17 + month: 9 + year: 2019 + string: Jul 2, 2019 to Sep 17, 2019 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 6.38 + scored_by: 137957 + rank: 8914 + popularity: 932 + members: 299606 + favorites: 483 + synopsis: |- + Starting his new term at Tanenashi High School, an unmotivated freshman searches for a club that requires minimal participation to suit his needs. He then comes across the magic clubroom, and inside is a cute upperclassman practicing her magic tricks. Suffering from stage fright that causes her to slip up in her acts, she has a tendency to end up in the most embarrassing situations. Despite having little interest in a club run by an incapable magician, the freshman finds himself involved as a new member, experiencing all sorts of awkward moments with his eccentric mentor. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38816 + url: https://myanimelist.net/anime/38816/Hello_World + images: + jpg: + image_url: https://myanimelist.net/images/anime/1147/112650.jpg + small_image_url: https://myanimelist.net/images/anime/1147/112650t.jpg + large_image_url: https://myanimelist.net/images/anime/1147/112650l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1147/112650.webp + small_image_url: https://myanimelist.net/images/anime/1147/112650t.webp + large_image_url: https://myanimelist.net/images/anime/1147/112650l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/shoWFRnNoWw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hello World + - type: Japanese + title: ハロー・ワールド + title: Hello World + title_english: null + title_japanese: ハロー・ワールド + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-09-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 9 + year: 2019 + to: + day: null + month: null + year: null + string: Sep 20, 2019 + duration: 1 hr 37 min + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 128916 + rank: 2283 + popularity: 958 + members: 292739 + favorites: 1565 + synopsis: |- + The year is 2027, and the city of Kyoto has undergone tremendous technological advancement. Within the city live two classmates: Naomi Katagaki, a socially awkward and introverted boy; and Ruri Ichigyou, a girl with a cold personality who is often blunt with people. Despite sharing Ruri's love of reading, Naomi is afraid to approach her due to her unfriendly nature. + + One day, while out on a walk, Naomi witnesses a crimson aurora pierce through the sky for a brief moment before vanishing. Shortly after, he encounters a three-legged crow and a mysterious hooded man, who reveals himself to be Naomi from 10 years in the future, explaining that he has come to change an imminent tragic event that happens to Ruri soon after they start dating. Initially taking his words with a grain of salt, present-day Naomi follows his future self's instructions and starts getting closer to Ruri, determined to save her. Will he be able to change the future? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 100 + type: anime + name: TV Osaka + url: https://myanimelist.net/anime/producer/100/TV_Osaka + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1777 + type: anime + name: LINE Corporation + url: https://myanimelist.net/anime/producer/1777/LINE_Corporation + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + - mal_id: 2138 + type: anime + name: Hikari TV + url: https://myanimelist.net/anime/producer/2138/Hikari_TV + licensors: [] + studios: + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 38297 + url: https://myanimelist.net/anime/38297/Maou-sama_Retry + images: + jpg: + image_url: https://myanimelist.net/images/anime/1754/113897.jpg + small_image_url: https://myanimelist.net/images/anime/1754/113897t.jpg + large_image_url: https://myanimelist.net/images/anime/1754/113897l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1754/113897.webp + small_image_url: https://myanimelist.net/images/anime/1754/113897t.webp + large_image_url: https://myanimelist.net/images/anime/1754/113897l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dfm4V4eHPRk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maou-sama, Retry! + - type: Japanese + title: 魔王様、リトライ! + - type: English + title: Demon Lord, Retry! + - type: German + title: Demon Lord, Retry! + title: Maou-sama, Retry! + title_english: Demon Lord, Retry! + title_japanese: 魔王様、リトライ! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-04T00:00:00+00:00' + to: '2019-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2019 + to: + day: 19 + month: 9 + year: 2019 + string: Jul 4, 2019 to Sep 19, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 148037 + rank: 7867 + popularity: 990 + members: 284009 + favorites: 668 + synopsis: |- + Akira Oono is an ordinary working adult who manages the MMORPG Infinity Game. Fifteen years after creating the game, Oono decides to shut the servers down once and for all. However, as the clock strikes midnight, he somehow finds himself in the body of middle-aged Hakuto Kunai, Infinity Game's Demon Lord! + + Soon after his mysterious transportation, he witnesses the demon Greole chasing after a little girl named Aku. Although he effortlessly dispatches the creature, Hakuto is still concerned; after all, he does not remember creating the girl or the demon! Doubting whether he truly is in the world of his creation, Hakuto decides to investigate. Bringing Aku along as his guide and companion, Hakuto sets out on a journey to find out exactly who or what summoned him to this fantasy world—all while leaving chaos and destruction in his wake. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1794 + type: anime + name: EKACHI EPILKA + url: https://myanimelist.net/anime/producer/1794/EKACHI_EPILKA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 38793 + url: https://myanimelist.net/anime/38793/Tensei_shitara_Slime_Datta_Ken_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1230/118297.jpg + small_image_url: https://myanimelist.net/images/anime/1230/118297t.jpg + large_image_url: https://myanimelist.net/images/anime/1230/118297l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1230/118297.webp + small_image_url: https://myanimelist.net/images/anime/1230/118297t.webp + large_image_url: https://myanimelist.net/images/anime/1230/118297l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Slime Datta Ken OVA + - type: Synonym + title: TenSura OVA + - type: Synonym + title: That Time I Got Reincarnated as a Slime OVA + - type: Synonym + title: Tensei shitara Slime Datta Ken Gaiden + - type: Synonym + title: That Time I Got Reincarnated as a Slime Extra + - type: Japanese + title: 転生したらスライムだった件 OVA + - type: English + title: That Time I Got Reincarnated as a Slime OAD + - type: German + title: That Time I Got Reincarnated As A Slim OAD + - type: Spanish + title: That Time I Got Reincarnated as a Slime OAD + - type: French + title: Moi, Quand Je Me Réincarne en Slime OAD + title: Tensei shitara Slime Datta Ken OVA + title_english: That Time I Got Reincarnated as a Slime OAD + title_japanese: 転生したらスライムだった件 OVA + title_synonyms: + - TenSura OVA + - That Time I Got Reincarnated as a Slime OVA + - Tensei shitara Slime Datta Ken Gaiden + - That Time I Got Reincarnated as a Slime Extra + type: OVA + source: Manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2019-07-09T00:00:00+00:00' + to: '2020-11-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2019 + to: + day: 27 + month: 11 + year: 2020 + string: Jul 9, 2019 to Nov 27, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 133742 + rank: 2405 + popularity: 1072 + members: 263932 + favorites: 560 + synopsis: |- + One day, Shuna and Shion are fighting over Rimuru's squishy slime body as usual. Rimuru figures that giving them each a body double of himself would solve the conflict, but when he imagines some of his other friends asking him to do the same for them, he quickly drops that plan. Then he comes up with the idea to make a cushion in the shape of his slime form. He travels around Tempest to see if his friends know of any good materials he can use, and he learns that a special type of sand found along a lake shore in the forest is exactly what he's looking for. So he sets out to collect some sand... but a monster is waiting for him by the lake! What's more, Milim hears about his plan for a picnic and comes racing down from the sky! + + (Source: Crunchyroll) + background: Each episode was bundled with special editions of manga volumes 12 through 16, respectively. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 38480 + url: https://myanimelist.net/anime/38480/Toaru_Kagaku_no_Accelerator + images: + jpg: + image_url: https://myanimelist.net/images/anime/1160/99995.jpg + small_image_url: https://myanimelist.net/images/anime/1160/99995t.jpg + large_image_url: https://myanimelist.net/images/anime/1160/99995l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1160/99995.webp + small_image_url: https://myanimelist.net/images/anime/1160/99995t.webp + large_image_url: https://myanimelist.net/images/anime/1160/99995l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1En9K5B1jNg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Kagaku no Accelerator + - type: Synonym + title: To Aru Majutsu no Index Gaiden + - type: Synonym + title: Toaru Kagaku no Ippou Tsuukou + - type: Japanese + title: とある科学の一方通行〈アクセラレータ〉 + - type: English + title: A Certain Scientific Accelerator + - type: German + title: A Certain Scientific Accelerator + - type: Spanish + title: A Certain Scientific Accelerator + - type: French + title: A Certain Scientific Accelerator + title: Toaru Kagaku no Accelerator + title_english: A Certain Scientific Accelerator + title_japanese: とある科学の一方通行〈アクセラレータ〉 + title_synonyms: + - To Aru Majutsu no Index Gaiden + - Toaru Kagaku no Ippou Tsuukou + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-12T00:00:00+00:00' + to: '2019-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2019 + to: + day: 27 + month: 9 + year: 2019 + string: Jul 12, 2019 to Sep 27, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.22 + scored_by: 108307 + rank: 3853 + popularity: 1089 + members: 258876 + favorites: 972 + synopsis: |- + Academy City stands at the forefront of scientific and technological progress, best known for their development of espers: those capable of wielding superhuman abilities that alter the rules of reality. The most powerful among them are the Level 5s, and the one known as Accelerator reigns supreme, even after being weakened by a severe brain injury. By his side is the young girl known as Last Order, whom despite his cold demeanor, he holds closely and vows to protect at all costs. + + Though Accelerator may be recovering from his injury, the dark side of Academy City never rests, and so he finds himself unwillingly caught up in the midst of a new conflict. When a mysterious young woman approaches Accelerator in pursuit of Last Order, the highest-ranked esper is confronted by a venomous organization that has taken root in Anti-Skill, Academy City's peacekeeping organization. With dangerous forces on the move that threaten to put Last Order and her sisters at risk, the self-proclaimed villain prepares to step into the darkness once again. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 39324 + url: https://myanimelist.net/anime/39324/Uchi_no_Ko_no_Tame_naraba_Ore_wa_Moshikashitara_Maou_mo_Taoseru_kamo_Shirenai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1568/101203.jpg + small_image_url: https://myanimelist.net/images/anime/1568/101203t.jpg + large_image_url: https://myanimelist.net/images/anime/1568/101203l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1568/101203.webp + small_image_url: https://myanimelist.net/images/anime/1568/101203t.webp + large_image_url: https://myanimelist.net/images/anime/1568/101203l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aJT6_qQBYs8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai. + - type: Synonym + title: Uchi no Musume no Tame naraba + - type: Synonym + title: Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai. + - type: Synonym + title: UchiMusume + - type: Japanese + title: うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。 + - type: English + title: If It's for My Daughter, I'd Even Defeat a Demon Lord + - type: German + title: If It'sFor My Daughter, I'd Even Defeat A Demon Lord + - type: Spanish + title: If it's for My Daughter, I'd Even Defeat a Demon Lord + - type: French + title: If it's for My Daughter, I'd Even Defeat a Demon Lord + title: Uchi no Ko no Tame naraba, Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai. + title_english: If It's for My Daughter, I'd Even Defeat a Demon Lord + title_japanese: うちの娘の為ならば、俺はもしかしたら魔王も倒せるかもしれない。 + title_synonyms: + - Uchi no Musume no Tame naraba + - Ore wa Moshikashitara Maou mo Taoseru kamo Shirenai. + - UchiMusume + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-04T00:00:00+00:00' + to: '2019-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2019 + to: + day: 19 + month: 9 + year: 2019 + string: Jul 4, 2019 to Sep 19, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.08 + scored_by: 115899 + rank: 4729 + popularity: 1177 + members: 241538 + favorites: 778 + synopsis: |- + Eighteen-year-old Dale Reki is a skilled, kind, and respected traveler, acknowledged as one of the leading adventurers in the city of Kreuz. One day while on the hunt for magical beasts, he comes across a sweet devil girl named Latina. She is alone, dressed in rags, and bears the devils' symbol of a criminal: a broken horn. Concerned for her wellbeing, Dale decides to ensure Latina's safety by bringing her to his home, eventually leading to him adopting her. + + Latina is sweet, innocent and compassionate, charming Dale beyond his expectations. He begins to enjoy the life of parenthood— experiencing the trials that come with raising a child and coping with the heartache he feels whenever his busy lifestyle as an adventurer parts him from her. + + Although work and life as a new parent become reassuring constants for Dale, the mysteries surrounding the girl remain. Why was Latina alone in the forest, and why does she harbor the symbol of a criminal? At the same time, Latina also begins to learn about the world and herself as she adjusts to her new life with Dale. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1081 + type: anime + name: ZERO-A + url: https://myanimelist.net/anime/producer/1081/ZERO-A + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: [] + - mal_id: 38234 + url: https://myanimelist.net/anime/38234/One_Piece_Movie_14__Stampede + images: + jpg: + image_url: https://myanimelist.net/images/anime/1221/100550.jpg + small_image_url: https://myanimelist.net/images/anime/1221/100550t.jpg + large_image_url: https://myanimelist.net/images/anime/1221/100550l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1221/100550.webp + small_image_url: https://myanimelist.net/images/anime/1221/100550t.webp + large_image_url: https://myanimelist.net/images/anime/1221/100550l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_VI_72j_ErI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece Movie 14: Stampede' + - type: Japanese + title: 劇場版『ONE PIECE STAMPEDE』(スタンピード) + - type: English + title: 'One Piece: Stampede' + - type: German + title: 'One Piece Film 14: Stampede' + - type: Spanish + title: 'One Piece Película 14: Estampida' + - type: French + title: 'One Piece Film 14: Stampede' + title: 'One Piece Movie 14: Stampede' + title_english: 'One Piece: Stampede' + title_japanese: 劇場版『ONE PIECE STAMPEDE』(スタンピード) + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-08-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 8 + year: 2019 + to: + day: null + month: null + year: null + string: Aug 9, 2019 + duration: 1 hr 41 min + rating: PG-13 - Teens 13 or older + score: 8.17 + scored_by: 136775 + rank: 498 + popularity: 1268 + members: 221950 + favorites: 687 + synopsis: |- + Monkey D. Luffy and the Straw Hats arrive aboard the Sunny to the Pirates Festival, the world's largest celebration created by and for pirates. Buena Festa, the festival organizer, invites the Straw Hats and all Worst Generation crews to partake in the festivities. Luring even Shichibukai and Marines to its shores, it seems that no pirate or sailor can resist the enticing secrets that the event hides behind its glamor. + + The festival's contest is simple: find one of the treasures Gol D. Roger left behind. As the competition progresses, the various pirate crews fight each other in a free-for-all battle royale—that is, until the sudden appearance of an unexpected pirate drastically changes the game. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 36903 + url: https://myanimelist.net/anime/36903/Kengan_Ashura + images: + jpg: + image_url: https://myanimelist.net/images/anime/1421/100770.jpg + small_image_url: https://myanimelist.net/images/anime/1421/100770t.jpg + large_image_url: https://myanimelist.net/images/anime/1421/100770l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1421/100770.webp + small_image_url: https://myanimelist.net/images/anime/1421/100770t.webp + large_image_url: https://myanimelist.net/images/anime/1421/100770l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/i21krzslpP0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kengan Ashura + - type: Japanese + title: ケンガンアシュラ + title: Kengan Ashura + title_english: null + title_japanese: ケンガンアシュラ + title_synonyms: [] + type: ONA + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 7 + year: 2019 + to: + day: null + month: null + year: null + string: Jul 31, 2019 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.45 + scored_by: 96722 + rank: 2481 + popularity: 1464 + members: 189892 + favorites: 1122 + synopsis: |- + Business deals are usually made through meetings and contracts; but in the world of Kengan Ashura, businesses resort to other means to make their decisions: by hiring gladiators. Yabako Sandrovich's Kengan Ashura depicts a world brimming with action, violence, and martial arts—one where powerful gladiators have fought in grand arenas since the Edo Period to settle the disputes of wealthy businesses and merchants. + + Ouma Tokita, who is nicknamed "The Ashura," is a fighter trying to prove himself as the strongest. Hideki Nogi, a member of the Nogi Group, hires Ouma to fight for him and makes Kazuo Yamashita, an average middle-aged man, his manager. The duo is thrown into fights facilitated by the Kengan Association. Their journey will be full of ruthless battles with other fighters aiming for the same goal. Do they have what it takes to be the best? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1787 + type: anime + name: KLab + url: https://myanimelist.net/anime/producer/1787/KLab + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: + - mal_id: 1201 + type: anime + name: Ponycan USA + url: https://myanimelist.net/anime/producer/1201/Ponycan_USA + studios: + - mal_id: 896 + type: anime + name: Larx Entertainment + url: https://myanimelist.net/anime/producer/896/Larx_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: [] + - mal_id: 39071 + url: https://myanimelist.net/anime/39071/Machikado_Mazoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1633/111518.jpg + small_image_url: https://myanimelist.net/images/anime/1633/111518t.jpg + large_image_url: https://myanimelist.net/images/anime/1633/111518l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1633/111518.webp + small_image_url: https://myanimelist.net/images/anime/1633/111518t.webp + large_image_url: https://myanimelist.net/images/anime/1633/111518l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ESNhhG3QQBQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Machikado Mazoku + - type: Synonym + title: Street Corner Demon + - type: Japanese + title: まちカドまぞく + - type: English + title: The Demon Girl Next Door + title: Machikado Mazoku + title_english: The Demon Girl Next Door + title_japanese: まちカドまぞく + title_synonyms: + - Street Corner Demon + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-07-12T00:00:00+00:00' + to: '2019-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2019 + to: + day: 27 + month: 9 + year: 2019 + string: Jul 12, 2019 to Sep 27, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.65 + scored_by: 69247 + rank: 1628 + popularity: 1525 + members: 181775 + favorites: 1266 + synopsis: |- + After a strange dream of a mysterious ancestor, high school student Yuuko Yoshida wakes to see that she has grown demonic horns and a tail. Dazed and confused, her mother reveals to her a dark family secret: her family is descended from a Dark Clan that was banished to live powerless and destitute by their mortal enemies, the magical girls of the Light Clan. The only way to lift their ancestry's curse is for Yuuko to find a magical girl, murder her, and splatter her blood all over her ancestor's Demon God statue. + + Fortunately for "Shadow Mistress Yuuko," a magical girl saves her from being run over by an oncoming truck. Unfortunately, Momo Chiyoda happens to be Yuuko's classmate at Sakuragaoka High and is much stronger than her in both strength and endurance. Taking pity on her wimpy assailant, the magical girl agrees to train Yuuko and help her unlock her dormant powers. Now, Yuuko must rise up and defeat her generous frenemy to save her family from the terrible grip of poverty. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2019 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/40-2019-fall.yaml b/test/fixtures/jikan/season_matrix/40-2019-fall.yaml new file mode 100644 index 0000000..483a201 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/40-2019-fall.yaml @@ -0,0 +1,3481 @@ +metadata: + captured_at: '2026-05-11T11:34:11Z' + label: 2019-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2019/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:10 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:87307bb91721fc1d2b9c23bc8e0c7535f7bbd602 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 287 + per_page: 25 + data: + - mal_id: 38408 + url: https://myanimelist.net/anime/38408/Boku_no_Hero_Academia_4th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1412/107914.jpg + small_image_url: https://myanimelist.net/images/anime/1412/107914t.jpg + large_image_url: https://myanimelist.net/images/anime/1412/107914l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1412/107914.webp + small_image_url: https://myanimelist.net/images/anime/1412/107914t.webp + large_image_url: https://myanimelist.net/images/anime/1412/107914l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5VQwDC5jqzQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 4th Season + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia Season 4 + - type: German + title: My Hero Academia Staffel 4 + - type: Spanish + title: My Hero Academia Temporada 4 + - type: French + title: My Hero Academia Saison 4 + title: Boku no Hero Academia 4th Season + title_english: My Hero Academia Season 4 + title_japanese: 僕のヒーローアカデミア + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2019-10-12T00:00:00+00:00' + to: '2020-04-04T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2019 + to: + day: 4 + month: 4 + year: 2020 + string: Oct 12, 2019 to Apr 4, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 1193074 + rank: 1030 + popularity: 53 + members: 1908574 + favorites: 8178 + synopsis: |- + After successfully passing his Provisional Hero License exam, Izuku "Deku" Midoriya seeks out an extracurricular internship with a professional hero agency. At the recommendation of his mentor All Might, Deku lands a position under All Might's former sidekick, Sir Nighteye, now a famous hero in his own right. + + As Deku's classmates further their own abilities through various internships, up-and-coming villain Kai Chisaki utilizes his terrifying powers to gather favor in the criminal underworld. Known by the moniker Overhaul, Chisaki's ambitions collide with the League of Villains and its leader, Tomura Shigaraki. + + Through his work with Sir Nighteye, Deku discovers Chisaki's crime syndicate and the villain's hostile relationship with a mysterious young girl named Eri. Fearing for the child's safety, Deku and his upperclassman Mirio Toogata must work together to put an end to Chisaki's reign of terror. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39195 + url: https://myanimelist.net/anime/39195/Beastars + images: + jpg: + image_url: https://myanimelist.net/images/anime/1713/145599.jpg + small_image_url: https://myanimelist.net/images/anime/1713/145599t.jpg + large_image_url: https://myanimelist.net/images/anime/1713/145599l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1713/145599.webp + small_image_url: https://myanimelist.net/images/anime/1713/145599t.webp + large_image_url: https://myanimelist.net/images/anime/1713/145599l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bDudMKQBgWc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Beastars + - type: Japanese + title: BEASTARS + title: Beastars + title_english: null + title_japanese: BEASTARS + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-10T00:00:00+00:00' + to: '2019-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2019 + to: + day: 26 + month: 12 + year: 2019 + string: Oct 10, 2019 to Dec 26, 2019 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.78 + scored_by: 596303 + rank: 1229 + popularity: 206 + members: 959144 + favorites: 10417 + synopsis: |- + In a civilized society of anthropomorphic animals, an uneasy tension exists between carnivores and herbivores. At Cherryton Academy, this mutual distrust peaks after a predation incident results in the death of Tem, an alpaca in the school's drama club. Tem's friend Legoshi, a grey wolf in the stage crew, has been an object of fear and suspicion for his whole life. In the immediate aftermath of the tragedy, he continues to lay low and hide his menacing traits, much to the disapproval of Louis, a red deer and the domineering star actor of the drama club. + + When Louis sneaks into the auditorium to train Tem's replacement for an upcoming play, he assigns Legoshi to lookout duty. That very night, Legoshi has a fateful encounter with Haru, a white dwarf rabbit scorned by her peers. His growing feelings for Haru, complicated by his predatory instincts, force him to confront his own true nature, the circumstances surrounding the death of his friend, and the undercurrent of violence plaguing the world around him. + + [Written by MAL Rewrite] + background: In 2020, the series was part of the Jury Selections at the 23rd Japan Media Arts Festival in the Animation + category. + season: fall + year: 2019 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39597 + url: https://myanimelist.net/anime/39597/Sword_Art_Online__Alicization_-_War_of_Underworld + images: + jpg: + image_url: https://myanimelist.net/images/anime/1630/103417.jpg + small_image_url: https://myanimelist.net/images/anime/1630/103417t.jpg + large_image_url: https://myanimelist.net/images/anime/1630/103417l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1630/103417.webp + small_image_url: https://myanimelist.net/images/anime/1630/103417t.webp + large_image_url: https://myanimelist.net/images/anime/1630/103417l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rUpEl-nQ360?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online: Alicization - War of Underworld' + - type: Synonym + title: 'Sword Art Online: Alicization 2nd Season' + - type: Synonym + title: Sword Art Online III 2nd Season + - type: Synonym + title: SAO Alicization 2nd Season + - type: Synonym + title: Sword Art Online 3 2nd Season + - type: Synonym + title: SAO 3 2nd Season + - type: Synonym + title: SAO III 2nd Season + - type: Japanese + title: ソードアート・オンライン アリシゼーション War of Underworld + - type: English + title: 'Sword Art Online: Alicization - War of Underworld' + - type: German + title: Sword Art Online Alicization War of Underworld + - type: Spanish + title: Sword Art Online Alicization War of Underworld + - type: French + title: Sword Art Online Alicization War of Underworld + title: 'Sword Art Online: Alicization - War of Underworld' + title_english: 'Sword Art Online: Alicization - War of Underworld' + title_japanese: ソードアート・オンライン アリシゼーション War of Underworld + title_synonyms: + - 'Sword Art Online: Alicization 2nd Season' + - Sword Art Online III 2nd Season + - SAO Alicization 2nd Season + - Sword Art Online 3 2nd Season + - SAO 3 2nd Season + - SAO III 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-13T00:00:00+00:00' + to: '2019-12-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 10 + year: 2019 + to: + day: 29 + month: 12 + year: 2019 + string: Oct 13, 2019 to Dec 29, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.59 + scored_by: 501452 + rank: 1859 + popularity: 259 + members: 846667 + favorites: 3808 + synopsis: |- + Despite the defeat of Quinella—the pontifex of the Axiom Church—things have not seemed to calm down yet. Upon contacting the real world, Kazuto "Kirito" Kirigaya finds out that the Ocean Turtle—a mega-float controlled by Rath—was raided. Due to a sudden short-circuit caused by the raiders, Kirito's fluctlight is damaged, leaving him comatose. Feeling insecure about the people at the Axiom Church, Alice brings the unconscious Kirito back to their hometown—Rulid Village, disregarding her banishment due to an unabsolved crime. Now, Alice is living an ordinary and peaceful life close by the village, wishing for Kirito to wake up. + + However, tragedy strikes when Alice notices that the Dark Territory has already started to invade the Human Empire. Reassuming her previous alias, Alice Synthesis Thirty, she promises to defeat the Dark Territory in order to defend the world that Kirito and Eugeo worked so hard to protect. + + [Written by MAL Rewrite] + background: 'Sword Art Online: Alicization - War of Underworld is an adaptation of volumes 15 through 18 of Reki Kawahara''s + Sword Art Online light novel series.' + season: fall + year: 2019 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 39701 + url: https://myanimelist.net/anime/39701/Nanatsu_no_Taizai__Kamigami_no_Gekirin + images: + jpg: + image_url: https://myanimelist.net/images/anime/1546/103418.jpg + small_image_url: https://myanimelist.net/images/anime/1546/103418t.jpg + large_image_url: https://myanimelist.net/images/anime/1546/103418l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1546/103418.webp + small_image_url: https://myanimelist.net/images/anime/1546/103418t.webp + large_image_url: https://myanimelist.net/images/anime/1546/103418l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gIAElO1gVJA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nanatsu no Taizai: Kamigami no Gekirin' + - type: Japanese + title: 七つの大罪 神々の逆鱗 + - type: English + title: 'The Seven Deadly Sins: Imperial Wrath of the Gods' + - type: German + title: 'The Seven Deadly Sins: Kaiserlicher Zorn der Götter' + - type: Spanish + title: 'The Seven Deadly Sins: Imperial Wrath of the Gods' + - type: French + title: 'The Seven Deadly Sins: La colère impériale des dieux' + title: 'Nanatsu no Taizai: Kamigami no Gekirin' + title_english: 'The Seven Deadly Sins: Imperial Wrath of the Gods' + title_japanese: 七つの大罪 神々の逆鱗 + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2019-10-09T00:00:00+00:00' + to: '2020-03-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2019 + to: + day: 25 + month: 3 + year: 2020 + string: Oct 9, 2019 to Mar 25, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.47 + scored_by: 455695 + rank: 8347 + popularity: 288 + members: 796727 + favorites: 1391 + synopsis: |- + After saving the Kingdom of Liones from the 10 Commandments, Meliodas and the Seven Deadly Sins are enjoying their time off. However, things aren't as peaceful as they seem, as the Sins are put through various trials to become strong enough to defeat the 10 Commandments and to overcome their past trauma. + + With help from past figures, the Sins are tasked with defeating the 10 Commandments and putting an end to their evil plans that began ten thousand years ago. The Sins begin to uncover the truth about each other, as well as those who stood before them. With this knowledge in hand, the battle against the 10 Commandments has only just begun. + + Nanatsu no Taizai: Kamigami no Gekirin continues to follow the Seven Deadly Sins and those that they meet on their journey. Through their adventures, they realize that their actions have had greater consequences on the present than they could have ever expected. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Wednesdays + time: '17:55' + timezone: Asia/Tokyo + string: Wednesdays at 17:55 (JST) + producers: [] + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38659 + url: https://myanimelist.net/anime/38659/Shinchou_Yuusha__Kono_Yuusha_ga_Ore_Tueee_Kuse_ni_Shinchou_Sugiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1715/103419.jpg + small_image_url: https://myanimelist.net/images/anime/1715/103419t.jpg + large_image_url: https://myanimelist.net/images/anime/1715/103419l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1715/103419.webp + small_image_url: https://myanimelist.net/images/anime/1715/103419t.webp + large_image_url: https://myanimelist.net/images/anime/1715/103419l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-K4TaXrKHRc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru' + - type: Synonym + title: 'Shinchou Yuusha: Kono Yuusha ga Ore Tsueee Kuse ni Shinchou Sugiru' + - type: Japanese + title: 慎重勇者 ~この勇者が俺TUEEEくせに慎重すぎる~ + - type: English + title: 'Cautious Hero: The Hero Is Overpowered but Overly Cautious' + - type: German + title: 'Cautious Hero: The Hero Is Overpowered But Overly Cautious' + - type: French + title: 'Cautious Hero: The Hero is Overpowered but Overly Cautious' + title: 'Shinchou Yuusha: Kono Yuusha ga Ore Tueee Kuse ni Shinchou Sugiru' + title_english: 'Cautious Hero: The Hero Is Overpowered but Overly Cautious' + title_japanese: 慎重勇者 ~この勇者が俺TUEEEくせに慎重すぎる~ + title_synonyms: + - 'Shinchou Yuusha: Kono Yuusha ga Ore Tsueee Kuse ni Shinchou Sugiru' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-02T00:00:00+00:00' + to: '2019-12-27T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2019 + to: + day: 27 + month: 12 + year: 2019 + string: Oct 2, 2019 to Dec 27, 2019 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.47 + scored_by: 399305 + rank: 2401 + popularity: 345 + members: 697249 + favorites: 2423 + synopsis: |- + There is a popular saying: "you can never be too careful." It is very important to prepare for every situation you may face, even if it seems like an unnecessary waste of time. Also, in games like RPGs, it is good to exceed the level of your enemies to achieve total victory. + + These words describe Seiya Ryuuguuin a little too perfectly. After being summoned by the goddess Ristarte to save the world of Gaeabrande from destruction, the hero prepares himself for his noble journey. While this might be normal, he spends a very long time training himself, despite having overpowered stats. He fights weak enemies using his strongest skills and buys excessive amounts of supplies and potions—all to stay safe. + + While his attitude may be a bit annoying, it might just be the saving grace of Gaeabrande, especially considering that it is a world where the forces of evil dominate each and every expectation. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1908 + type: anime + name: Legs + url: https://myanimelist.net/anime/producer/1908/Legs + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 39940 + url: https://myanimelist.net/anime/39940/Shokugeki_no_Souma__Shin_no_Sara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1072/110175.jpg + small_image_url: https://myanimelist.net/images/anime/1072/110175t.jpg + large_image_url: https://myanimelist.net/images/anime/1072/110175l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1072/110175.webp + small_image_url: https://myanimelist.net/images/anime/1072/110175t.webp + large_image_url: https://myanimelist.net/images/anime/1072/110175l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WcTl85qHc8Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: Shin no Sara' + - type: Synonym + title: Shokugeki no Soma 4th Season + - type: Japanese + title: 食戟のソーマ 神ノ皿 + - type: English + title: Food Wars! The Fourth Plate + - type: German + title: Food Wars! The Fourth Plate + - type: Spanish + title: 'Food Wars!: The Fourth Plate' + - type: French + title: Food Wars! The Fourth Plate + title: 'Shokugeki no Souma: Shin no Sara' + title_english: Food Wars! The Fourth Plate + title_japanese: 食戟のソーマ 神ノ皿 + title_synonyms: + - Shokugeki no Soma 4th Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-12T00:00:00+00:00' + to: '2019-12-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2019 + to: + day: 28 + month: 12 + year: 2019 + string: Oct 12, 2019 to Dec 28, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.73 + scored_by: 387597 + rank: 1374 + popularity: 364 + members: 672347 + favorites: 1387 + synopsis: |- + At Tootsuki Culinary Academy, a heated eight-on-eight Shokugeki known as the Régiment de Cuisine rages on between Central and the rebel forces led by Souma Yukihira and Erina Nakiri. Though they won a stunning perfect victory in the first bout, the rebels face an uphill battle ahead, as they must now face off against the rest of the Elite Ten Council. With the future of Tootsuki at stake, Souma and Erina must push far beyond the limits of their abilities, using everything they learned from their mentors and ultimately drawing from their experiences cooking together as friends. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39565 + url: https://myanimelist.net/anime/39565/Boku_no_Hero_Academia_the_Movie_2__Heroes_Rising + images: + jpg: + image_url: https://myanimelist.net/images/anime/1019/103292.jpg + small_image_url: https://myanimelist.net/images/anime/1019/103292t.jpg + large_image_url: https://myanimelist.net/images/anime/1019/103292l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1019/103292.webp + small_image_url: https://myanimelist.net/images/anime/1019/103292t.webp + large_image_url: https://myanimelist.net/images/anime/1019/103292l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vikPO-GgNBM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia the Movie 2: Heroes:Rising' + - type: Synonym + title: 'My Hero Academia the Movie 2: Heroes:Rising' + - type: Japanese + title: 僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング + - type: English + title: 'My Hero Academia: Heroes Rising' + - type: German + title: 'My Hero Academia: Heroes Rising' + - type: Spanish + title: 'My Hero Academia: El Despertar de los Héroes' + - type: French + title: 'My Hero Academia: Heroes Rising' + title: 'Boku no Hero Academia the Movie 2: Heroes:Rising' + title_english: 'My Hero Academia: Heroes Rising' + title_japanese: 僕のヒーローアカデミア THE MOVIE ヒーローズ:ライジング + title_synonyms: + - 'My Hero Academia the Movie 2: Heroes:Rising' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-12-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 12 + year: 2019 + to: + day: null + month: null + year: null + string: Dec 20, 2019 + duration: 1 hr 44 min + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 370282 + rank: 859 + popularity: 392 + members: 632561 + favorites: 1856 + synopsis: |- + Izuku "Deku'' Midoriya and his fellow students in Class 1-A of UA High's hero course have been chosen to participate in a safety program on Nabu Island. To further improve their skills and gain experience in more ordinary heroics, the students aid the kind citizens with small services and everyday chores. With the low crime rate in the quiet community, all seems well and good, but the rise of a new villain threatens to put the students' courage to the test and challenge their capabilities as heroes. + + A merciless villain by the name of Nine is in search of a certain "quirk" needed to fulfill his diabolical plan—creating a society where only those with the strongest quirks reign supreme. As his attack on Nabu Island endangers the lives of the residents, securing the citizens becomes the first priority for Class 1-A; defeating Nine along with his wicked accomplices is also imperative. A straightforward strategy is formulated until a young boy named Katsuma Shimano, whom Deku had befriended, suddenly requires particular protection. Concerned for the boy's wellbeing, Deku and his classmates must now devise a plan to ensure Katsuma's safety at all costs. + + With Nine wreaking havoc to find the catalyst for his ill-intended schemes and the heroes desperate to defend Katsuma from harm, will Deku and his friends be able to come out victorious, or will they find themselves unable to escape a hopeless situation? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39196 + url: https://myanimelist.net/anime/39196/Mairimashita_Iruma-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/1009/103187.jpg + small_image_url: https://myanimelist.net/images/anime/1009/103187t.jpg + large_image_url: https://myanimelist.net/images/anime/1009/103187l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1009/103187.webp + small_image_url: https://myanimelist.net/images/anime/1009/103187t.webp + large_image_url: https://myanimelist.net/images/anime/1009/103187l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kkeuJt0DE7g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mairimashita! Iruma-kun + - type: Japanese + title: 魔入りました!入間くん + - type: English + title: Welcome to Demon School! Iruma-kun + - type: German + title: Welcome to Demon School! Iruma-kun + - type: Spanish + title: Welcome to Demon School! Iruma-kun + - type: French + title: Welcome to Demon School! Iruma-kun + title: Mairimashita! Iruma-kun + title_english: Welcome to Demon School! Iruma-kun + title_japanese: 魔入りました!入間くん + title_synonyms: [] + type: TV + source: Manga + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2019-10-05T00:00:00+00:00' + to: '2020-03-07T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2019 + to: + day: 7 + month: 3 + year: 2020 + string: Oct 5, 2019 to Mar 7, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.74 + scored_by: 296893 + rank: 1337 + popularity: 440 + members: 566909 + favorites: 5036 + synopsis: "Fourteen-year-old Iruma Suzuki has been unfortunate all his life, having to work to earn money for his irresponsible\ + \ parents despite being underage. One day, he finds out that his parents sold him to the demon Sullivan. However,\ + \ Iruma's worries about what will become of him are soon relieved, for Sullivan merely wants a grandchild, pampering\ + \ him and making him attend the demon school Babyls. \n\nAt first, Iruma tries to keep a low profile in fear of his\ + \ peers discovering that he is human. Unfortunately, this ends up being more difficult than he expected. It turns\ + \ out that Sullivan himself is the chairman of the school, and everyone expects him to become the next Demon King!\n\ + \nIruma immediately finds himself in an outrageous situation when he has to chant a forbidden spell in front of the\ + \ entire school. With this, Iruma instantly earns a reputation he does not want. Even so, he is bound to be roped\ + \ into more bizarre circumstances.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2019 + broadcast: + day: Saturdays + time: '17:35' + timezone: Asia/Tokyo + string: Saturdays at 17:35 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38483 + url: https://myanimelist.net/anime/38483/Ore_wo_Suki_nano_wa_Omae_dake_ka_yo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1348/102797.jpg + small_image_url: https://myanimelist.net/images/anime/1348/102797t.jpg + large_image_url: https://myanimelist.net/images/anime/1348/102797l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1348/102797.webp + small_image_url: https://myanimelist.net/images/anime/1348/102797t.webp + large_image_url: https://myanimelist.net/images/anime/1348/102797l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pt3MqwiSyKY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore wo Suki nano wa Omae dake ka yo + - type: Japanese + title: 俺を好きなのはお前だけかよ + - type: English + title: ORESUKI Are you the only one who loves me? + - type: German + title: ORESUKI Are you the only one who loves me? + - type: Spanish + title: ORESUKI Are you the only one who loves me? + - type: French + title: ORESUKI Are you the only one who loves me? + title: Ore wo Suki nano wa Omae dake ka yo + title_english: ORESUKI Are you the only one who loves me? + title_japanese: 俺を好きなのはお前だけかよ + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-03T00:00:00+00:00' + to: '2019-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2019 + to: + day: 26 + month: 12 + year: 2019 + string: Oct 3, 2019 to Dec 26, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 265502 + rank: 3294 + popularity: 514 + members: 505537 + favorites: 2403 + synopsis: |- + Amatsuyu "Jouro" Kisaragi is a completely average second-year high school student who has two dates over one weekend⁠—with the student council president Sakura "Cosmos" Akino on Saturday, then with his childhood friend Aoi "Himawari" Hinata on Sunday. Sadly for Jouro, both girls proclaim their love for his best friend Taiyou "Sun-chan" Ooga, the ace of the baseball team. Accepting each of their requests for advice and guidance, he is now responsible for helping the two girls win the heart of the same guy. + + Unbeknownst to his friends, Jouro's friendly and obtuse image is all but a ruse designed to cast himself as the clueless protagonist of a textbook romantic comedy. A schemer under his cheery facade, he makes the best of this unexpected turn of events with a new plan: get Sun-chan to fall for either Cosmos or Himawari and take the other as his own prize. But Jouro's last-ditch effort is threatened by the gloomy, four-eyed Sumireko "Pansy" Sanshokuin, who surprises Jouro with not only her knowledge of his secret personality but also a confession to the true self he hid for all this time. + + Stuck in this hilariously messy situation, each of the five students must navigate countless lies, traps, and misunderstandings to come out on top. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 39468 + url: https://myanimelist.net/anime/39468/Honzuki_no_Gekokujou__Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1582/101697.jpg + small_image_url: https://myanimelist.net/images/anime/1582/101697t.jpg + large_image_url: https://myanimelist.net/images/anime/1582/101697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1582/101697.webp + small_image_url: https://myanimelist.net/images/anime/1582/101697t.webp + large_image_url: https://myanimelist.net/images/anime/1582/101697l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KfPyxG-ZbFM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen' + - type: Japanese + title: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ + - type: English + title: Ascendance of a Bookworm + - type: German + title: Ascendance of a Bookworm + - type: Spanish + title: Ascendance of a Bookworm + - type: French + title: Ascendance of a Bookworm + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen' + title_english: Ascendance of a Bookworm + title_japanese: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ + title_synonyms: [] + type: TV + source: Light novel + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2019-10-03T00:00:00+00:00' + to: '2019-12-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2019 + to: + day: 26 + month: 12 + year: 2019 + string: Oct 3, 2019 to Dec 26, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.97 + scored_by: 191323 + rank: 803 + popularity: 738 + members: 372735 + favorites: 3435 + synopsis: "Urano Motosu loves books and has an endless desire to read literature, no matter the subject. She almost\ + \ fulfills her dream job of becoming a librarian before her life is ended in an accident. As she draws her last breath,\ + \ she wishes to be able to read more books in her next life.\n\nAs if fate was listening to her prayer, she wakes\ + \ up reincarnated as Myne—a frail five-year-old girl living in a medieval era. What immediately comes to her mind\ + \ is her passion. She tries to find something to read, only to become frustrated by the lack of books at her disposal.\ + \ \n\nWithout the printing press, books have to be written and copied by hand, making them very expensive; as such,\ + \ only a few nobles can afford them—but this won't stop Myne. She will prove that her will to read is unbreakable,\ + \ and if there are no books around, she will make them herself! \n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2019 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + - mal_id: 1987 + type: anime + name: Tokyo Animator Gakuin + url: https://myanimelist.net/anime/producer/1987/Tokyo_Animator_Gakuin + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 1989 + type: anime + name: JTB Next Creation + url: https://myanimelist.net/anime/producer/1989/JTB_Next_Creation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 38572 + url: https://myanimelist.net/anime/38572/Assassins_Pride + images: + jpg: + image_url: https://myanimelist.net/images/anime/1267/103421.jpg + small_image_url: https://myanimelist.net/images/anime/1267/103421t.jpg + large_image_url: https://myanimelist.net/images/anime/1267/103421l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1267/103421.webp + small_image_url: https://myanimelist.net/images/anime/1267/103421t.webp + large_image_url: https://myanimelist.net/images/anime/1267/103421l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/j5paOgPW3h0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Assassins Pride + - type: Japanese + title: アサシンズプライド + title: Assassins Pride + title_english: null + title_japanese: アサシンズプライド + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-10T00:00:00+00:00' + to: '2019-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2019 + to: + day: 26 + month: 12 + year: 2019 + string: Oct 10, 2019 to Dec 26, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 5.92 + scored_by: 184464 + rank: 11368 + popularity: 743 + members: 370920 + favorites: 787 + synopsis: "On the brink of extinction, mankind has downsized and now solely resides in the city-state of Flandore, living\ + \ in cities encased by glass domes. Beyond the domes exist vicious lycanthropes who thrive in the darkness; among\ + \ the citizens inside, a clear distinction between the nobility and commoners is in place. The blood of nobles enables\ + \ them to utilize mana, granting them abilities that exceed human limits and greatly assist them in defeating lycanthropes.\n\ + \nAlready 13 years of age, noble Melida Angel has yet to manifest her mana, and attends an elite academy where she\ + \ is mistreated for her lack thereof. In order to help her, Kufa Vampir is ordered by the Angel family to become Melida's\ + \ tutor. While Kufa seems to be a mere mentor, an ulterior motive lurks behind his job—he is to assassinate her if\ + \ he confirms that she does not possess mana.\n\nKufa's investigation eventually leads him to determine he must eliminate\ + \ Melida. However, Kufa is struck by her unwavering determination, spirit, and belief in herself when he witnesses\ + \ her in a fight, choosing instead to offer a way she can manifest her magic. As Melida learns to use mana with the\ + \ help of Kufa's teachings, Kufa forsakes his mission and jeopardizes everything to keep his discovery of Melida unknown\ + \ to the Angel family and his own guild. However, both Kufa and Melida will soon realize that hiding their secret\ + \ will not be the only challenge they face, as unforeseen trouble is waiting just around the corner. \n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: fall + year: 2019 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1787 + type: anime + name: KLab + url: https://myanimelist.net/anime/producer/1787/KLab + - mal_id: 2107 + type: anime + name: entama + url: https://myanimelist.net/anime/producer/2107/entama + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40004 + url: https://myanimelist.net/anime/40004/Bokutachi_wa_Benkyou_ga_Dekinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1974/102960.jpg + small_image_url: https://myanimelist.net/images/anime/1974/102960t.jpg + large_image_url: https://myanimelist.net/images/anime/1974/102960l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1974/102960.webp + small_image_url: https://myanimelist.net/images/anime/1974/102960t.webp + large_image_url: https://myanimelist.net/images/anime/1974/102960l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OBSkPcp3ffI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bokutachi wa Benkyou ga Dekinai! + - type: Synonym + title: BokuBen 2 + - type: Synonym + title: We Never Learn! 2 + - type: Synonym + title: We Can't Study + - type: Synonym + title: Bokutachi wa Benkyou ga Dekinai! 2nd Season + - type: Japanese + title: ぼくたちは勉強ができない! + - type: English + title: 'We Never Learn: BOKUBEN Season 2' + - type: German + title: We Never Learn Staffel 2 + - type: Spanish + title: 'We Never Learn!: Bokuben Temporada 2' + - type: French + title: 'We Never Learn: Bokuben Saison 2' + title: Bokutachi wa Benkyou ga Dekinai! + title_english: 'We Never Learn: BOKUBEN Season 2' + title_japanese: ぼくたちは勉強ができない! + title_synonyms: + - BokuBen 2 + - We Never Learn! 2 + - We Can't Study + - Bokutachi wa Benkyou ga Dekinai! 2nd Season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-10-06T00:00:00+00:00' + to: '2019-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2019 + to: + day: 29 + month: 12 + year: 2019 + string: Oct 6, 2019 to Dec 29, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.33 + scored_by: 183621 + rank: 3085 + popularity: 867 + members: 326097 + favorites: 742 + synopsis: |- + Under Nariyuki Yuiga's devoted tutelage, his classmates Rizu Ogata, Fumino Furuhashi, and Uruka Takemoto are finally pulling average test scores on their worst subjects. But time is ticking, and there is still a long way to go before the three geniuses of Ichinose Academy are ready for their upcoming university exams. Meanwhile, the girls still struggle to balance the pursuit of their dreams with their growing affections for their unsuspecting tutor. + + Joining them are Mafuyu Kirisu, a teacher with strong views about education and talent because of her past as a rising figure skater, and Asumi Kominami, a graduate from their school aiming to attend a national medical university. With these two additions, the group of six is livelier than ever before. Completely caught up in hilarious antics with his new friends, Yuiga finds that his last year of high school now includes a lot more than just going to class and studying. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2101 + type: anime + name: ADK + url: https://myanimelist.net/anime/producer/2101/ADK + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1873 + type: anime + name: Silver + url: https://myanimelist.net/anime/producer/1873/Silver + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38414 + url: https://myanimelist.net/anime/38414/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_-_Hyouketsu_no_Kizuna + images: + jpg: + image_url: https://myanimelist.net/images/anime/1238/104023.jpg + small_image_url: https://myanimelist.net/images/anime/1238/104023t.jpg + large_image_url: https://myanimelist.net/images/anime/1238/104023l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1238/104023.webp + small_image_url: https://myanimelist.net/images/anime/1238/104023t.webp + large_image_url: https://myanimelist.net/images/anime/1238/104023l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CLFUEr2NV7I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna + - type: Synonym + title: Re:Zero kara Hajimeru Isekai Seikatsu OVA 2 + - type: Japanese + title: Re:ゼロから始める異世界生活『氷結の絆』 + - type: English + title: Re:ZERO -Starting Life in Another World- The Frozen Bond + - type: German + title: Re:ZERO -Starting Life in Another World- The Frozen Bond + - type: Spanish + title: Re:ZERO - Starting Life in Another World - The Frozen Bond + - type: French + title: Re:ZERO -Starting Life in Another World- The Frozen Bond + title: Re:Zero kara Hajimeru Isekai Seikatsu - Hyouketsu no Kizuna + title_english: Re:ZERO -Starting Life in Another World- The Frozen Bond + title_japanese: Re:ゼロから始める異世界生活『氷結の絆』 + title_synonyms: + - Re:Zero kara Hajimeru Isekai Seikatsu OVA 2 + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-11-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 11 + year: 2019 + to: + day: null + month: null + year: null + string: Nov 8, 2019 + duration: 1 hr 16 min + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 170850 + rank: 1890 + popularity: 874 + members: 323675 + favorites: 762 + synopsis: "Covered in ice and snow, Elior Forest is the home to dangerous magical beasts and 50 elves frozen in ice.\ + \ One day, the great spirit Puck helps a young girl break out of her ice prison. Her name is Emilia, a half-elf born\ + \ with silver hair, long ears, and amethyst eyes—features that resemble the evil Witch who destroyed half the world\ + \ long ago. \n\nShunned by society because of her appearance, Emilia dwells in the forest with Puck as her sole companion\ + \ and family. Burdened with a sin of destruction she does not remember committing, she spends her days trying to find\ + \ a way to help her frozen kin. But when the great spirit Melakuera, the Arbitrator of the world, finds Emilia, her\ + \ right to stay alive is brought into question. Will the bonds of ice she formed with Puck prove to be the warm thread\ + \ that defies fate?\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 38084 + url: https://myanimelist.net/anime/38084/Fate_Grand_Order__Zettai_Majuu_Sensen_Babylonia + images: + jpg: + image_url: https://myanimelist.net/images/anime/1194/103420.jpg + small_image_url: https://myanimelist.net/images/anime/1194/103420t.jpg + large_image_url: https://myanimelist.net/images/anime/1194/103420l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1194/103420.webp + small_image_url: https://myanimelist.net/images/anime/1194/103420t.webp + large_image_url: https://myanimelist.net/images/anime/1194/103420l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BIZN34WMi5E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/Grand Order: Zettai Majuu Sensen Babylonia' + - type: Japanese + title: Fate/Grand Order -絶対魔獣戦線バビロニア- + - type: English + title: 'Fate/Grand Order: Absolute Demonic Front - Babylonia' + - type: German + title: 'Fate/Grand Order: Absolute Demonic Front - Babylonia' + - type: Spanish + title: 'Fate/Grand Order: Absolute Demonic Front: Babylonia' + - type: French + title: 'Fate/Grand Order: Absolute Demonic Front - Babylonia' + title: 'Fate/Grand Order: Zettai Majuu Sensen Babylonia' + title_english: 'Fate/Grand Order: Absolute Demonic Front - Babylonia' + title_japanese: Fate/Grand Order -絶対魔獣戦線バビロニア- + title_synonyms: [] + type: TV + source: Game + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2019-10-05T00:00:00+00:00' + to: '2020-03-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2019 + to: + day: 21 + month: 3 + year: 2020 + string: Oct 5, 2019 to Mar 21, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.95 + scored_by: 148777 + rank: 830 + popularity: 901 + members: 313694 + favorites: 2659 + synopsis: "A.D. 2016, the foundations of humanity have been incinerated by the Mage King Solomon. Chaldea, a secret\ + \ mages organization with the mission to preserve humanity's future, foresaw mankind's extinction in 2015. Thus commenced\ + \ the operation to repair the Singularities in history caused by Holy Grails dispersed across time and space—Operation\ + \ Grand Order. \n\nUsing the Rayshift time travel technology, Chaldea's last master Ritsuka Fujimaru and his demi-servant\ + \ Mash Kyrielight have traveled to and resolved six Singularities. Now, they depart for their most dangerous destination\ + \ yet: a civilization in the Age of Gods, B.C. 2655 Mesopotamia. Ritsuka and Mash soon discover that Demonic Beasts\ + \ roam the land, attacking people and towns. Amidst chaos and terror lies humanity's last defense—Uruk, a fortress\ + \ city that acts as the frontline for the battle against the beasts. The battlefront is commanded by none other than\ + \ King Gilgamesh, the King of Heroes, who sought aid from Heroic Spirits and took on the role of a mage to protect\ + \ his city. \n\nAlong with Gilgamesh and the summoned servants, Ritsuka and Mash must protect Uruk against the magical\ + \ beasts' onslaught and defeat the Three Goddess Alliance who aims to eradicate humankind; all the while, a greater\ + \ threat looms over Uruk, preparing for its awakening.\n\n[Written by MAL Rewrite]" + background: 'Fate/Grand Order: Zettai Majuu Sensen Babylonia adapts the 7th chapter of the mobile game Fate/Grand Order.' + season: fall + year: 2019 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 2008 + type: anime + name: Delightworks + url: https://myanimelist.net/anime/producer/2008/Delightworks + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 39523 + url: https://myanimelist.net/anime/39523/Choujin_Koukousei-tachi_wa_Isekai_demo_Yoyuu_de_Ikinuku_you_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1132/111619.jpg + small_image_url: https://myanimelist.net/images/anime/1132/111619t.jpg + large_image_url: https://myanimelist.net/images/anime/1132/111619l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1132/111619.webp + small_image_url: https://myanimelist.net/images/anime/1132/111619t.webp + large_image_url: https://myanimelist.net/images/anime/1132/111619l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TZjmff4PFNA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu! + - type: Synonym + title: Super Human High Schoolers Are in Another World + - type: Synonym + title: But Seem to be Living in Comfort! + - type: Japanese + title: 超人高校生たちは異世界でも余裕で生き抜くようです! + - type: English + title: 'CHOYOYU!: High School Prodigies Have It Easy Even in Another World!' + - type: German + title: High School Prodigies Have It Easy Even in Another World! + - type: Spanish + title: High School Prodigies Have It Easy Even in Another World! + - type: French + title: High School Prodigies Have It Easy Even in Another World! + title: Choujin Koukousei-tachi wa Isekai demo Yoyuu de Ikinuku you desu! + title_english: 'CHOYOYU!: High School Prodigies Have It Easy Even in Another World!' + title_japanese: 超人高校生たちは異世界でも余裕で生き抜くようです! + title_synonyms: + - Super Human High Schoolers Are in Another World + - But Seem to be Living in Comfort! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-03T00:00:00+00:00' + to: '2019-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2019 + to: + day: 19 + month: 12 + year: 2019 + string: Oct 3, 2019 to Dec 19, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.37 + scored_by: 154396 + rank: 8932 + popularity: 926 + members: 303566 + favorites: 574 + synopsis: |- + Seven Japanese high school students enjoy international renown for their remarkable talents. One day, these friends survive a plane crash only to find themselves in the medieval fantasy world of Freyjagard, where two human races live side by side in a feudal society: the byuma, who have animal features and formidable strength, and the hyuma, who have a small chance of magical aptitude. After being rescued by the byuma Winona and her adopted elven daughter Lyrule, the group pledges to use their advanced skills and knowledge to pay back the people of Elm Village for their hospitality and find a way to return back home. + + Tsukasa Mikogami, the prime minister of Japan, acts as the leader of these young geniuses and organizes their efforts to intervene in Freyjagard and gather the information and resources necessary for achieving their goals. Believing that there is a connection between their current situation and an ancient legend about seven heroes from another world who defeated an evil dragon, Tsukasa directs the others to learn about the culture around them and search for any clues leading them back to Earth. But he also gives another instruction: to take it nice and easy, lest they ruin this world by giving it their all. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1869 + type: anime + name: Bit Promotion + url: https://myanimelist.net/anime/producer/1869/Bit_Promotion + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 39491 + url: https://myanimelist.net/anime/39491/Psycho-Pass_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1406/104344.jpg + small_image_url: https://myanimelist.net/images/anime/1406/104344t.jpg + large_image_url: https://myanimelist.net/images/anime/1406/104344l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1406/104344.webp + small_image_url: https://myanimelist.net/images/anime/1406/104344t.webp + large_image_url: https://myanimelist.net/images/anime/1406/104344l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2Cw2bKO81N4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Psycho-Pass 3 + - type: Japanese + title: PSYCHO-PASS サイコパス 3 + - type: English + title: Psycho-Pass 3 + - type: German + title: Psycho-Pass 3 First Inspector (Staffel 3) + - type: Spanish + title: Psycho Pass Temporada 3 + - type: French + title: Psycho-Pass 3 Premier Inspecteur (Saison 3) + title: Psycho-Pass 3 + title_english: Psycho-Pass 3 + title_japanese: PSYCHO-PASS サイコパス 3 + title_synonyms: [] + type: TV + source: Original + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2019-10-25T00:00:00+00:00' + to: '2019-12-13T00:00:00+00:00' + prop: + from: + day: 25 + month: 10 + year: 2019 + to: + day: 13 + month: 12 + year: 2019 + string: Oct 25, 2019 to Dec 13, 2019 + duration: 45 min per ep + rating: R - 17+ (violence & profanity) + score: 7.44 + scored_by: 97810 + rank: 2542 + popularity: 943 + members: 296490 + favorites: 542 + synopsis: "Thanks to the Sibyl System, the mental states of society can now be measured on a numerical scale. Using\ + \ these \"crime coefficients,\" a culprit can be apprehended before they ever commit a crime. But is it a perfect\ + \ system? For Inspectors Kei Mikhail Ignatov and Arata Shindou, that remains to be seen, as their career with the\ + \ Public Safety Bureau's Crime Investigation Department has only just begun. \n\nShindou and Ignatov are assigned\ + \ to investigate the crash of a ship carrying immigrants, but they begin to suspect that it was no mere accident.\ + \ Meanwhile, a mysterious group called Bifrost is observing them from the shadows, but they are not the only ones\ + \ who have taken an interest in the two new Inspectors.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2019 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 40542 + url: https://myanimelist.net/anime/40542/Saiki_Kusuo_no_Ψ-nan__Ψ-shidou-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1993/119022.jpg + small_image_url: https://myanimelist.net/images/anime/1993/119022t.jpg + large_image_url: https://myanimelist.net/images/anime/1993/119022l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1993/119022.webp + small_image_url: https://myanimelist.net/images/anime/1993/119022t.webp + large_image_url: https://myanimelist.net/images/anime/1993/119022l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sbw7QB6nrTc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Saiki Kusuo no Ψ-nan: Ψ-shidou-hen' + - type: Synonym + title: The Disastrous Life of Saiki K. Restart Arc + - type: Synonym + title: 'Saiki Kusuo no Ψ-nan: Saishidou-hen' + - type: Synonym + title: 'Saiki Kusuo no Sainan: Saishidou-hen' + - type: Japanese + title: 斉木楠雄のΨ難 Ψ始動編 + - type: English + title: 'The Disastrous Life of Saiki K.: Reawakened' + - type: German + title: 'The Disastrous Life of Saiki K.: Reawakened' + - type: Spanish + title: 'The Disastrous Life of Saiki K.: Reawakened' + - type: French + title: 'Saiki Kusuo no Ψ Nan: Le Retour' + title: 'Saiki Kusuo no Ψ-nan: Ψ-shidou-hen' + title_english: 'The Disastrous Life of Saiki K.: Reawakened' + title_japanese: 斉木楠雄のΨ難 Ψ始動編 + title_synonyms: + - The Disastrous Life of Saiki K. Restart Arc + - 'Saiki Kusuo no Ψ-nan: Saishidou-hen' + - 'Saiki Kusuo no Sainan: Saishidou-hen' + type: ONA + source: Manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2019-12-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 12 + year: 2019 + to: + day: null + month: null + year: null + string: Dec 30, 2019 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 152677 + rank: 585 + popularity: 1129 + members: 250027 + favorites: 489 + synopsis: |- + Kusuo Saiki is a high school student who possesses a wide range of psychic abilities. While many may believe these abilities to be a gift, to Kusuo, they are a curse as he must fight strange odds in order to try to live a normal life. Forced to use his psychic powers to protect his secret or to make up for his father's incompetence at work, will Saiki eventually come to realize how his powers can actually help his friends and family? + + [Written by MAL Rewrite] + background: Adapts the ending of the manga. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37972 + url: https://myanimelist.net/anime/37972/Hoshiai_no_Sora + images: + jpg: + image_url: https://myanimelist.net/images/anime/1807/103081.jpg + small_image_url: https://myanimelist.net/images/anime/1807/103081t.jpg + large_image_url: https://myanimelist.net/images/anime/1807/103081l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1807/103081.webp + small_image_url: https://myanimelist.net/images/anime/1807/103081t.webp + large_image_url: https://myanimelist.net/images/anime/1807/103081l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3HF5qamjeMA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hoshiai no Sora + - type: Japanese + title: 星合の空 + - type: English + title: Stars Align + title: Hoshiai no Sora + title_english: Stars Align + title_japanese: 星合の空 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-11T00:00:00+00:00' + to: '2019-12-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2019 + to: + day: 27 + month: 12 + year: 2019 + string: Oct 11, 2019 to Dec 27, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 91636 + rank: 1768 + popularity: 1279 + members: 220111 + favorites: 2440 + synopsis: "Constantly outperformed by the girls' club, the boys' soft tennis club faces disbandment due to their poor\ + \ skills and lack of positive results in matches. In desperate need of members, Touma Shinjou is looking to recruit\ + \ capable players, but he fails to scout anyone. Enter Maki Katsuragi, a new transfer student who demonstrates great\ + \ reflexes when he catches a stray cat in his classroom, instantly capturing Touma's attention. With his interest\ + \ piqued, Touma ambitiously asks Maki to join the boys' team but is quickly rejected, as Maki doesn't wish to join\ + \ any clubs. Touma refuses to back down and ends up persuading Maki—only under the condition that Touma will pay him\ + \ for his participation and cover other club expenses. \n\nMaki joins the team, and his incredible form and quick\ + \ learning allow him to immediately outshine the rest of the team. Although this gives rise to conflict among the\ + \ boys, Maki challenges and pushes his fellow team members to not only keep up with his seemingly natural talent,\ + \ but also drive them to devote themselves to the game they once neglected. \n\nAs the members of the boys' soft tennis\ + \ club discover their own capabilities, they endure personal hardships and deal with the darker side of growing up\ + \ in middle school.\n\n[Written by MAL Rewrite]" + background: Hoshiai no Sora was released on Blu-ray and DVD in two volumes from February 26, 2020, to April 22, 2020. + season: fall + year: 2019 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 39030 + url: https://myanimelist.net/anime/39030/Hataage_Kemono_Michi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1736/103512.jpg + small_image_url: https://myanimelist.net/images/anime/1736/103512t.jpg + large_image_url: https://myanimelist.net/images/anime/1736/103512l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1736/103512.webp + small_image_url: https://myanimelist.net/images/anime/1736/103512t.webp + large_image_url: https://myanimelist.net/images/anime/1736/103512l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Qv99fLExcVs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataage! Kemono Michi + - type: Japanese + title: 旗揚! けものみち + - type: English + title: 'Kemono Michi: Rise Up' + title: Hataage! Kemono Michi + title_english: 'Kemono Michi: Rise Up' + title_japanese: 旗揚! けものみち + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-02T00:00:00+00:00' + to: '2019-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2019 + to: + day: 18 + month: 12 + year: 2019 + string: Oct 2, 2019 to Dec 18, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.6 + scored_by: 104041 + rank: 7531 + popularity: 1296 + members: 217140 + favorites: 281 + synopsis: |- + Professional wrestler Genzou Shibata sports the body of a mountain, but beneath his hulking appearance is a man with an extreme affection for animals. Facing off his opponents in the ring as the legendary "Animal Mask," Genzou wins the hearts of crowds everywhere with his iconic tiger persona. + + During the bout for the title of World Champion against his greatest rival, the Macadamian Ogre, Genzou is suddenly summoned to a fantasy world by a princess. With her kingdom being threatened by a monster infestation, she pleads the wrestler for assistance—to which he answers by knocking her out with a German suplex! Escaping the castle and finding himself stranded in a mysterious land, Genzou decides to begin his career as a beast hunter to capture and befriend creatures far and wide. Joined by the wolf-girl Shigure, the dragon-girl Hanako, and the vampire Carmilla Vanstein, the professional wrestler pursues all kinds of dangerous requests for the sake of fulfilling his dream as a pet shop owner. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1901 + type: anime + name: CA-Cygames Anime Fund + url: https://myanimelist.net/anime/producer/1901/CA-Cygames_Anime_Fund + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 37393 + url: https://myanimelist.net/anime/37393/Watashi_Nouryoku_wa_Heikinchi_de_tte_Itta_yo_ne + images: + jpg: + image_url: https://myanimelist.net/images/anime/1205/111403.jpg + small_image_url: https://myanimelist.net/images/anime/1205/111403t.jpg + large_image_url: https://myanimelist.net/images/anime/1205/111403l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1205/111403.webp + small_image_url: https://myanimelist.net/images/anime/1205/111403t.webp + large_image_url: https://myanimelist.net/images/anime/1205/111403l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6ADTgH8qVCM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi, Nouryoku wa Heikinchi de tte Itta yo ne! + - type: Synonym + title: Noukin + - type: Japanese + title: 私、能力は平均値でって言ったよね! + - type: English + title: Didn't I Say to Make My Abilities Average in the Next Life?! + - type: German + title: Didn't I Say To Make My Abilities Average In The Next Life? + - type: Spanish + title: Didn't I Say to Make My Abilities Average in the Next Life?! + - type: French + title: Didn't I Say to Make My Abilities Average in the Next Life?! + title: Watashi, Nouryoku wa Heikinchi de tte Itta yo ne! + title_english: Didn't I Say to Make My Abilities Average in the Next Life?! + title_japanese: 私、能力は平均値でって言ったよね! + title_synonyms: + - Noukin + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-07T00:00:00+00:00' + to: '2019-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2019 + to: + day: 23 + month: 12 + year: 2019 + string: Oct 7, 2019 to Dec 23, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.74 + scored_by: 109516 + rank: 6701 + popularity: 1300 + members: 216197 + favorites: 487 + synopsis: |- + Having stood out from others most of her life due to her exceptional character, Misato Kurihara has lived without neither the joy of having close friends nor the experience of having a regular life. However, after a sudden death, she was transported to a divine realm to be reincarnated—and granted one wish to top it off. Thinking about the ordinary life that she had always wanted, she wished to be born as a normal person, with abilities that are average for the world she will resurrect in. + + Reborn as Adele von Ascham—the daughter of a noble—she possesses magic powers completely exceeding what one would label average. Still desiring to carry out the life she wanted, she leaves her home and enrolls at a hunter school in a faraway kingdom using "Mile" as an alias. However, try as she might to hide her overpowering potential, attaining her goal will be difficult—especially when facing against the crazy situations that ensue! + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 37403 + url: https://myanimelist.net/anime/37403/Ahiru_no_Sora + images: + jpg: + image_url: https://myanimelist.net/images/anime/1975/108030.jpg + small_image_url: https://myanimelist.net/images/anime/1975/108030t.jpg + large_image_url: https://myanimelist.net/images/anime/1975/108030l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1975/108030.webp + small_image_url: https://myanimelist.net/images/anime/1975/108030t.webp + large_image_url: https://myanimelist.net/images/anime/1975/108030l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Yt4N0UUEd90?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ahiru no Sora + - type: Japanese + title: あひるの空 + title: Ahiru no Sora + title_english: null + title_japanese: あひるの空 + title_synonyms: [] + type: TV + source: Manga + episodes: 50 + status: Finished Airing + airing: false + aired: + from: '2019-10-02T00:00:00+00:00' + to: '2020-09-30T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2019 + to: + day: 30 + month: 9 + year: 2020 + string: Oct 2, 2019 to Sep 30, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 94539 + rank: 3452 + popularity: 1305 + members: 214816 + favorites: 875 + synopsis: "Lacking what is considered the most important asset in basketball, Sora Kurumatani has struggled with his\ + \ short height since the inception of his love for the game. Despite missing this beneficial aspect, Sora's unwavering\ + \ drive never allowed his small stature to dictate his ability to play, believing strongly in trying his hardest and\ + \ persistently practicing to prove his capability.\n\nIn hopes of satisfying his mother's wishes, Sora enters Kuzuryuu\ + \ High School to become a member of the basketball club and compete wholeheartedly in tournaments. However, Sora is\ + \ disappointed to find out that the boy's basketball team is nothing but a retreat for punks who have no interest\ + \ in the sport. Sora also comes to learn that brothers Chiaki and Momoharu Hanazono—whom he becomes acquainted with—have\ + \ also lost their once spirited motivation to play. \n\nDetermined to revive the basketball team, Sora challenges\ + \ the boys to a match against him, where his quick feet and swift movements overwhelm the group. Gradually affected\ + \ by Sora's impressive skills, sheer effort, and tireless devotion to basketball, the boys unexpectedly find their\ + \ burnt-out passion for the game rekindling once again.\n\n[Written by MAL Rewrite]" + background: The airing time was Wednesdays 18:25 between October 2, 2019 - March 25, 2020. The airing time is changed + to 17:55 beginning April 1, 2020. + season: fall + year: 2019 + broadcast: + day: Wednesdays + time: '17:55' + timezone: Asia/Tokyo + string: Wednesdays at 17:55 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39539 + url: https://myanimelist.net/anime/39539/No_Guns_Life + images: + jpg: + image_url: https://myanimelist.net/images/anime/1531/102113.jpg + small_image_url: https://myanimelist.net/images/anime/1531/102113t.jpg + large_image_url: https://myanimelist.net/images/anime/1531/102113l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1531/102113.webp + small_image_url: https://myanimelist.net/images/anime/1531/102113t.webp + large_image_url: https://myanimelist.net/images/anime/1531/102113l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MCBjBrM1AOE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: No Guns Life + - type: Japanese + title: ノー・ガンズ・ライフ + - type: English + title: No Guns Life + title: No Guns Life + title_english: No Guns Life + title_japanese: ノー・ガンズ・ライフ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-11T00:00:00+00:00' + to: '2019-12-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2019 + to: + day: 27 + month: 12 + year: 2019 + string: Oct 11, 2019 to Dec 27, 2019 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.86 + scored_by: 79825 + rank: 5937 + popularity: 1342 + members: 208983 + favorites: 343 + synopsis: "The technology to create powerful cyborg soldiers has been released for public use by the Berühren Corporation.\ + \ Those outfitted with robotic parts are known as the Extended. Juuzou Inui, one such Extended, was created as a soldier\ + \ and has no memories of his former life. But now, after the war, he runs a business that takes care of Extended-related\ + \ incidents around the city. \n\nRumors of a renegade Extended that kidnapped a child reach his ears; lo and behold,\ + \ as Juuzo returns to his office, a giant robotic man with a boy on his back crashes in, asking for help. While Juuzou\ + \ could just turn the guy in and be done with it, something about this situation is too fishy to ignore. It seems\ + \ that everyone wants hold of this kid and, whether he likes it or not, Juuzou must find out why this Extended is\ + \ on the run, how it connects to the Berühren Corporation, and just how far the treachery runs in this city.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: fall + year: 2019 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 36885 + url: https://myanimelist.net/anime/36885/Saenai_Heroine_no_Sodatekata_Fine + images: + jpg: + image_url: https://myanimelist.net/images/anime/1671/111411.jpg + small_image_url: https://myanimelist.net/images/anime/1671/111411t.jpg + large_image_url: https://myanimelist.net/images/anime/1671/111411l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1671/111411.webp + small_image_url: https://myanimelist.net/images/anime/1671/111411t.webp + large_image_url: https://myanimelist.net/images/anime/1671/111411l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9LDEKv0l4j0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saenai Heroine no Sodatekata Fine + - type: Synonym + title: Saenai Heroine no Sodatekata Movie + - type: Synonym + title: 'Saekano: How to Raise a Boring Girlfriend Movie' + - type: Japanese + title: 冴えない彼女の育てかた Fine + - type: English + title: 'Saekano the Movie: Finale' + title: Saenai Heroine no Sodatekata Fine + title_english: 'Saekano the Movie: Finale' + title_japanese: 冴えない彼女の育てかた Fine + title_synonyms: + - Saenai Heroine no Sodatekata Movie + - 'Saekano: How to Raise a Boring Girlfriend Movie' + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2019-10-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 10 + year: 2019 + to: + day: null + month: null + year: null + string: Oct 26, 2019 + duration: 1 hr 54 min + rating: PG-13 - Teens 13 or older + score: 8.42 + scored_by: 95140 + rank: 214 + popularity: 1362 + members: 205472 + favorites: 2797 + synopsis: "With the second Winter Comiket just around the corner, Blessing Software has been vigorously producing its\ + \ new game, \"How to Raise a Boring Girlfriend.\" Despite Utaha Kasumigaoka and Eriri Spencer Sawamura leaving the\ + \ circle, Megumi Katou and Tomoya Aki are hopeful that, by sticking to Tomoya's original vision for the game, their\ + \ upcoming creation will exceed Blessing Software's previous installment.\n\nWith the addition of new members Iori\ + \ and Izumi Hashima, development ensues—but not without its share of setbacks. Things rarely go as planned in the\ + \ dating sim industry, with numerous obstacles forcing Tomoya to decide between helping his friends or completing\ + \ the game. \n\nSaenai Heroine no Sodatekata Fine draws the series to a close as Tomoya selects his final route, both\ + \ within his personal life and Blessing Software.\n\n[Written by MAL Rewrite]" + background: Released in October 2019, Saenai Heroine no Sodetakata Fine stayed in the top ten at the Japanese box office + for eight weeks and accumulated a total of US$6.46 million. The Blu-ray release of the movie coincided with Megumi + Kato's birthday on September 23, 2020. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 619 + type: anime + name: Cospa + url: https://myanimelist.net/anime/producer/619/Cospa + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 38889 + url: https://myanimelist.net/anime/38889/Kono_Oto_Tomare_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1422/111621.jpg + small_image_url: https://myanimelist.net/images/anime/1422/111621t.jpg + large_image_url: https://myanimelist.net/images/anime/1422/111621l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1422/111621.webp + small_image_url: https://myanimelist.net/images/anime/1422/111621t.webp + large_image_url: https://myanimelist.net/images/anime/1422/111621l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VdjmAF5dYjU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Oto Tomare! Part 2 + - type: Synonym + title: Kono Oto Tomare! 2nd Season + - type: Synonym + title: Stop This Sound! 2nd Season + - type: Japanese + title: この音とまれ! + - type: English + title: 'Kono Oto Tomare!: Sounds of Life Season 2' + - type: German + title: 'Kono Oto Tomare!: Sounds of Life Staffel 2' + - type: Spanish + title: 'Kono Oto Tomare!: Sounds of Life Temporada 2' + - type: French + title: 'Kono Oto Tomare!: Sounds of Life Saison 2' + title: Kono Oto Tomare! Part 2 + title_english: 'Kono Oto Tomare!: Sounds of Life Season 2' + title_japanese: この音とまれ! + title_synonyms: + - Kono Oto Tomare! 2nd Season + - Stop This Sound! 2nd Season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2019-10-06T00:00:00+00:00' + to: '2019-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2019 + to: + day: 29 + month: 12 + year: 2019 + string: Oct 6, 2019 to Dec 29, 2019 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.42 + scored_by: 107997 + rank: 210 + popularity: 1378 + members: 203461 + favorites: 1861 + synopsis: |- + The Tokise High School Koto Club has courageously pushed through their fractured and unsynchronized performance at the Kanto Region Traditional Japanese Music Festival. Club members Chika Kudou, Satowa Houzuki, Takezou Kurata, Hiro Kurusu, Kouta Mizuhara, Saneyasu Adachi, and Michitaka Sakai are devastated to learn the negative results of their performance, leaving them crushed. Nonetheless, the group recognizes their potential and enthusiastically agree to collectively sharpen their skills, improve their flaws, and develop higher caliber playing to succeed in the upcoming national qualifiers in winter. + + With the help of their now willing club advisor Suzuka Takinami, the group's goal gradually becomes achievable as they begin to grasp the foundations of good music and refine their koto-playing abilities, with the suggestion of performing more often to gain what they lack most—experience. + + However, as their journey to nationals is underway, the koto club members face challenges that obstruct their focus and progress. Not only does the threat of other powerhouse schools and musicians remain, but the high school issues of budding romance and soon-to-be-graduating seniors also begin to push the limits of the determined group of teenagers and the future of the koto club. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2019 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38328 + url: https://myanimelist.net/anime/38328/Azur_Lane + images: + jpg: + image_url: https://myanimelist.net/images/anime/1106/111620.jpg + small_image_url: https://myanimelist.net/images/anime/1106/111620t.jpg + large_image_url: https://myanimelist.net/images/anime/1106/111620l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1106/111620.webp + small_image_url: https://myanimelist.net/images/anime/1106/111620t.webp + large_image_url: https://myanimelist.net/images/anime/1106/111620l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0V-SwEtubII?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Azur Lane + - type: Synonym + title: Azur Lane + - type: Japanese + title: アズールレーン THE ANIMATION + - type: English + title: Azur Lane the Animation + title: Azur Lane + title_english: Azur Lane the Animation + title_japanese: アズールレーン THE ANIMATION + title_synonyms: + - Azur Lane + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2019-10-03T00:00:00+00:00' + to: '2020-03-20T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2019 + to: + day: 20 + month: 3 + year: 2020 + string: Oct 3, 2019 to Mar 20, 2020 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.29 + scored_by: 66831 + rank: 9395 + popularity: 1499 + members: 185055 + favorites: 1039 + synopsis: |- + When the "Sirens," an alien force with an arsenal far surpassing the limits of current technology, suddenly appeared, a divided humanity stood in complete solidarity for the first time. Four countries—Eagle Union, Royal Navy, Sakura Empire, and Iron Blood—formed Azur Lane, paving the way for the improvement of modern warfare, which led to an initial victory against the common threat. However, this tenuous union was threatened by opposing ideals, dividing the alliance into two. Sakura Empire and Iron Blood broke away and formed the Red Axis, and humanity became fragmented once again. + + As a seasoned and experienced fighter, the "Grey Ghost" Enterprise shoulders Azur Lane's hope for ending the war. But behind her stoic persona hides a frail girl, afraid of the ocean. Even so, she continues to fight as she believes that it's the only purpose for her existence. Meanwhile, Javelin, Laffey, and Unicorn—three ships from the union—stumble upon Ayanami, a spy from the Red Axis. Strange as it may seem, they try to befriend her, but as enemies, their efforts are for naught. Still, they persevere in hopes of succeeding one day. + + Amidst the neverending conflict within humankind, the keys that could unite a fragmented race might exist: a soldier coming to terms with her mysterious personality and camaraderie between those with different ideals. + + [Written by MAL Rewrite] + background: The final two episodes were originally scheduled to broadcast on December 19 and December 26, 2019, but + were delayed to March 13 and March 20, 2020, respectively. + season: fall + year: 2019 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1331 + type: anime + name: i0+ + url: https://myanimelist.net/anime/producer/1331/i0_ + - mal_id: 2009 + type: anime + name: Yostar Pictures + url: https://myanimelist.net/anime/producer/2009/Yostar_Pictures + - mal_id: 2062 + type: anime + name: Stray Cats + url: https://myanimelist.net/anime/producer/2062/Stray_Cats + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/41-2020-winter.yaml b/test/fixtures/jikan/season_matrix/41-2020-winter.yaml new file mode 100644 index 0000000..4a54ff7 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/41-2020-winter.yaml @@ -0,0 +1,3395 @@ +metadata: + captured_at: '2026-05-11T11:34:14Z' + label: 2020-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2020/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:13 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:9a3b6e223a2f397db4a1825c7e3007bab492e94b + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 322 + per_page: 25 + data: + - mal_id: 38883 + url: https://myanimelist.net/anime/38883/Haikyuu_To_the_Top + images: + jpg: + image_url: https://myanimelist.net/images/anime/1813/105367.jpg + small_image_url: https://myanimelist.net/images/anime/1813/105367t.jpg + large_image_url: https://myanimelist.net/images/anime/1813/105367l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1813/105367.webp + small_image_url: https://myanimelist.net/images/anime/1813/105367t.webp + large_image_url: https://myanimelist.net/images/anime/1813/105367l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gJv9fFJmnCA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! To the Top + - type: Synonym + title: Haikyuu!! (2020) + - type: Synonym + title: Haikyuu!! Fourth Season + - type: Synonym + title: Haikyuu!! 4th Season + - type: Japanese + title: ハイキュー!! TO THE TOP + - type: English + title: Haikyu!! To the Top + - type: Spanish + title: 'Haikyu!!: To The Top' + - type: French + title: Haikyu!! To The Top + title: Haikyuu!! To the Top + title_english: Haikyu!! To the Top + title_japanese: ハイキュー!! TO THE TOP + title_synonyms: + - Haikyuu!! (2020) + - Haikyuu!! Fourth Season + - Haikyuu!! 4th Season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-01-11T00:00:00+00:00' + to: '2020-04-04T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2020 + to: + day: 4 + month: 4 + year: 2020 + string: Jan 11, 2020 to Apr 4, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.37 + scored_by: 648361 + rank: 255 + popularity: 175 + members: 1052246 + favorites: 5544 + synopsis: |- + After their triumphant victory over Shiratorizawa Academy, the Karasuno High School volleyball team has earned their long-awaited ticket to nationals. As preparations begin, genius setter Tobio Kageyama is invited to the All-Japan Youth Training Camp to play alongside fellow nationally recognized players. Meanwhile, Kei Tsukishima is invited to a special rookie training camp for first-years within the Miyagi Prefecture. Not receiving any invitations himself, the enthusiastic Shouyou Hinata feels left behind. + + However, Hinata does not back down. Transforming his frustration into self-motivation, he boldly decides to sneak himself into the same rookie training camp as Tsukishima. Even though Hinata only lands himself a job as the ball boy, he comes to see this as a golden opportunity. He begins to not only reflect on his skills as a volleyball player but also analyze the plethora of information available on the court and how he can apply it. + + As the much-anticipated national tournament approaches, the members of Karasuno's volleyball team attempt to overcome their weak points and refine their skills, all while aiming for the top! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39534 + url: https://myanimelist.net/anime/39534/Jibaku_Shounen_Hanako-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/1050/111687.jpg + small_image_url: https://myanimelist.net/images/anime/1050/111687t.jpg + large_image_url: https://myanimelist.net/images/anime/1050/111687l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1050/111687.webp + small_image_url: https://myanimelist.net/images/anime/1050/111687t.webp + large_image_url: https://myanimelist.net/images/anime/1050/111687l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CKnXq1qaTG0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jibaku Shounen Hanako-kun + - type: Japanese + title: 地縛少年花子くん + - type: English + title: Toilet-Bound Hanako-kun + title: Jibaku Shounen Hanako-kun + title_english: Toilet-Bound Hanako-kun + title_japanese: 地縛少年花子くん + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-10T00:00:00+00:00' + to: '2020-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2020 + to: + day: 27 + month: 3 + year: 2020 + string: Jan 10, 2020 to Mar 27, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 342594 + rank: 1125 + popularity: 351 + members: 688081 + favorites: 12775 + synopsis: |- + The famous Seven Mysteries that every school seems to have are a staple of Japanese urban legends. One of the most well-known of these tales is that of Hanako-san: the ghost of a young girl who haunts the school's bathrooms. + + Kamome Academy has its own version of Hanako-san's legend. Rumors claim that if one successfully manages to summon Hanako-san, she will grant her summoner any wish. Lured by the gossip, many people have tried to call upon her, yet every attempt has failed. However, when Nene Yashiro, a girl hoping for romantic fortune, dares to summon Hanako-san, she discovers that the rumored "girl" is actually a boy! + + After a series of unfortunate events involving Yashiro's romantic desires, she is unwillingly entangled in the world of the supernatural, becoming Hanako-kun's assistant. Soon, she finds out about Hanako-kun's lesser-known duty: maintaining the fragile balance between mortals and apparitions. + + [Written by MAL Rewrite] + background: Jibaku Shounen Hanako-kun was released on Blu-ray and DVD in two volumes from June 24, 2020, to July 29, + 2020. + season: winter + year: 2020 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38668 + url: https://myanimelist.net/anime/38668/Dorohedoro + images: + jpg: + image_url: https://myanimelist.net/images/anime/1230/119278.jpg + small_image_url: https://myanimelist.net/images/anime/1230/119278t.jpg + large_image_url: https://myanimelist.net/images/anime/1230/119278l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1230/119278.webp + small_image_url: https://myanimelist.net/images/anime/1230/119278t.webp + large_image_url: https://myanimelist.net/images/anime/1230/119278l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IS6l1K19N1U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dorohedoro + - type: Japanese + title: ドロヘドロ + title: Dorohedoro + title_english: null + title_japanese: ドロヘドロ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-13T00:00:00+00:00' + to: '2020-03-30T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2020 + to: + day: 30 + month: 3 + year: 2020 + string: Jan 13, 2020 to Mar 30, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.04 + scored_by: 320177 + rank: 689 + popularity: 385 + members: 641609 + favorites: 10408 + synopsis: |- + Hole—a dark, decrepit, and disorderly district where the strong prey on the weak and death is an ordinary occurrence—is all but befitting of the name given to it. A realm separated from law and ethics, it is a testing ground to the magic users who dominate it. As a race occupying the highest rungs of their society, the magic users think of the denizens of Hole as no more than insects. Murdered, mutilated, and made experiments without a second thought, the powerless Hole dwellers litter the halls of Hole's hospital on a daily basis. + + Possessing free access to and from the cesspool, and with little challenge to their authority, the magic users appear indomitable to most—aside for a few. Caiman, more reptile than man, is one such individual. He hunts them on a heedless quest for answers with only a trusted pair of bayonets and his immunity to magic. Cursed by his appearance and tormented by nightmares, magic users are his only clue to restoring his life to normal. With his biggest obstacle being his stomach, his female companion Nikaidou, who runs the restaurant Hungry Bug, is his greatest ally. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1507 + type: anime + name: Sumitomo + url: https://myanimelist.net/anime/producer/1507/Sumitomo + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38656 + url: https://myanimelist.net/anime/38656/Darwins_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/1016/107222.jpg + small_image_url: https://myanimelist.net/images/anime/1016/107222t.jpg + large_image_url: https://myanimelist.net/images/anime/1016/107222l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1016/107222.webp + small_image_url: https://myanimelist.net/images/anime/1016/107222t.webp + large_image_url: https://myanimelist.net/images/anime/1016/107222l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_cLxzQoNVpo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Darwin's Game + - type: Japanese + title: ダーウィンズゲーム + - type: English + title: Darwin's Game + title: Darwin's Game + title_english: Darwin's Game + title_japanese: ダーウィンズゲーム + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2020-01-04T00:00:00+00:00' + to: '2020-03-21T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2020 + to: + day: 21 + month: 3 + year: 2020 + string: Jan 4, 2020 to Mar 21, 2020 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 7.2 + scored_by: 331222 + rank: 3935 + popularity: 406 + members: 615040 + favorites: 2719 + synopsis: |- + High school student Kaname Sudou receives an invitation from a classmate to play Darwin's Game, a mobile game he has never heard of. However, as soon as he opens the application, a green snake suddenly pops out from his phone screen and bites his neck, leaving him unconscious. Waking up in the infirmary without any signs of a snake bite, he is told by the school to take the rest of the day off. Although he is puzzled by what has happened, he dismisses the surreal experience as a hallucination and boards the train home. + + Unfortunately, his curiosity gets the better of him and he uses the application once again. As the application appears to be just like any other battle game, Kaname breathes out a sigh of relief and decides to start his first match. However, the pleasant surprise is short-lived, as his in-game opponent unexpectedly appears right in front of him and attempts to hunt him down with a knife. + + As he desperately runs for his life, Kaname puts two and two together and realizes that Darwin's Game is not an ordinary game, but rather, it's a brutal fight for survival. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1901 + type: anime + name: CA-Cygames Anime Fund + url: https://myanimelist.net/anime/producer/1901/CA-Cygames_Anime_Fund + - mal_id: 2100 + type: anime + name: Hochi Shimbun + url: https://myanimelist.net/anime/producer/2100/Hochi_Shimbun + - mal_id: 2101 + type: anime + name: ADK + url: https://myanimelist.net/anime/producer/2101/ADK + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 852 + type: anime + name: Nexus + url: https://myanimelist.net/anime/producer/852/Nexus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 38790 + url: https://myanimelist.net/anime/38790/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1579/113812.jpg + small_image_url: https://myanimelist.net/images/anime/1579/113812t.jpg + large_image_url: https://myanimelist.net/images/anime/1579/113812l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1579/113812.webp + small_image_url: https://myanimelist.net/images/anime/1579/113812t.webp + large_image_url: https://myanimelist.net/images/anime/1579/113812l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AODnWIirajU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. + - type: Synonym + title: I hate being in pain + - type: Synonym + title: so I think I'll make a full defense build. + - type: Synonym + title: I Hate Getting Hurt + - type: Synonym + title: So I Put All My Skill Points Into Defense + - type: Japanese + title: 痛いのは嫌なので防御力に極振りしたいと思います。 + - type: English + title: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense.' + - type: German + title: 'Bofuri: I Don''t Want to Get Hurt, so I''ll Max Out My Defense' + title: Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. + title_english: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense.' + title_japanese: 痛いのは嫌なので防御力に極振りしたいと思います。 + title_synonyms: + - I hate being in pain + - so I think I'll make a full defense build. + - I Hate Getting Hurt + - So I Put All My Skill Points Into Defense + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-08T00:00:00+00:00' + to: '2020-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2020 + to: + day: 25 + month: 3 + year: 2020 + string: Jan 8, 2020 to Mar 25, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 333762 + rank: 2282 + popularity: 414 + members: 603615 + favorites: 3939 + synopsis: |- + After an enthusiastic invitation from her friend, Kaede Honjou reluctantly agrees to try New World Online: a very popular VRMMO played by thousands of people across Japan. Naming her in-game character Maple, she sets out on her journey. As a complete novice to such games, she allocates all of her stat points into vitality, desiring to not get hurt. With not a single point in any other stat, Maple has extraordinarily high defense, but she can't move quickly or hit hard. + + This does not end badly for her, however. Due to her high defense, Maple acquires overpowered skills such as Total Defense, Poison Immunity, and Devour. These skills, along with the incredibly powerful items she obtains, allow her to obliterate most enemies in a single hit. After only a few days of playing the game, Maple claims third place in a server-wide event, gaining a reputation as a player who is both unkillable and absurdly powerful. + + Despite her overpowered character, Kaede has much to learn. As she progresses through the game, she meets new friends and acquaintances, helping her complete new levels and events. Through all of her adventures, she may even pick up some other crazy skills that exceed all expectations. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1819 + type: anime + name: D-techno + url: https://myanimelist.net/anime/producer/1819/D-techno + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 36862 + url: https://myanimelist.net/anime/36862/Made_in_Abyss_Movie_3__Fukaki_Tamashii_no_Reimei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1803/117183.jpg + small_image_url: https://myanimelist.net/images/anime/1803/117183t.jpg + large_image_url: https://myanimelist.net/images/anime/1803/117183l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1803/117183.webp + small_image_url: https://myanimelist.net/images/anime/1803/117183t.webp + large_image_url: https://myanimelist.net/images/anime/1803/117183l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NNwD_Hx1GHY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Made in Abyss Movie 3: Fukaki Tamashii no Reimei' + - type: Synonym + title: 'Gekijouban Made in Abyss: Fukaki Tamashii no Reimei' + - type: Japanese + title: 劇場版メイドインアビス 深き魂の黎明 + - type: English + title: 'Made in Abyss: Dawn of the Deep Soul' + - type: German + title: 'Made in Abyss: Seelen der Finsternis' + - type: French + title: 'Made in Abyss : L''Aurore de L’Âme des Profondeurs' + title: 'Made in Abyss Movie 3: Fukaki Tamashii no Reimei' + title_english: 'Made in Abyss: Dawn of the Deep Soul' + title_japanese: 劇場版メイドインアビス 深き魂の黎明 + title_synonyms: + - 'Gekijouban Made in Abyss: Fukaki Tamashii no Reimei' + type: Movie + source: Web manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-01-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 1 + year: 2020 + to: + day: null + month: null + year: null + string: Jan 17, 2020 + duration: 1 hr 45 min + rating: R - 17+ (violence & profanity) + score: 8.6 + scored_by: 305439 + rank: 113 + popularity: 468 + members: 538192 + favorites: 3984 + synopsis: |- + After bonding over a tragic loss, the long-suffering Nanachi joins Riko and Reg on their journey into the depths of the Abyss. Awaiting the children is the Sea of Corpses—the Abyss's fifth layer, and the deepest level from which a traveler can return without losing their human form. + + The masked sadist Bondrewd stands between the children and the rest of their adventure. Bondrewd's horrific laboratory serves as a final checkpoint for those wishing to traverse deeper into the Abyss, and the sociopathic scientist has no desire to allow Riko's party to pass through at no cost. Deeply scarred by Bondrewd's impact on their childhood, Nanachi is engulfed in turmoil over his resurgence in their life. + + Bondrewd's only apparent weakness is Prushka, a brash child who claims to be his daughter. Riko, Reg, and Nanachi befriend Prushka and work with the girl to overcome her father's machinations and breach the Abyss's sixth layer. + + [Written by MAL Rewrite] + background: The film was originally released on January 17, 2020 by Kadokawa in Japanese theaters, followed by an American + release by Sentai Filmworks on August 14, 2020. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 39017 + url: https://myanimelist.net/anime/39017/Kyokou_Suiri + images: + jpg: + image_url: https://myanimelist.net/images/anime/1310/117188.jpg + small_image_url: https://myanimelist.net/images/anime/1310/117188t.jpg + large_image_url: https://myanimelist.net/images/anime/1310/117188l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1310/117188.webp + small_image_url: https://myanimelist.net/images/anime/1310/117188t.webp + large_image_url: https://myanimelist.net/images/anime/1310/117188l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O47qukJbNHc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kyokou Suiri + - type: Japanese + title: 虚構推理 + - type: English + title: In/Spectre + - type: German + title: In/Spectre + - type: Spanish + title: In/Spectre + - type: French + title: In/Spectre + title: Kyokou Suiri + title_english: In/Spectre + title_japanese: 虚構推理 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-12T00:00:00+00:00' + to: '2020-03-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2020 + to: + day: 29 + month: 3 + year: 2020 + string: Jan 12, 2020 to Mar 29, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.93 + scored_by: 231573 + rank: 5532 + popularity: 470 + members: 535665 + favorites: 1458 + synopsis: |- + Hidden in plain sight, spirits known as youkai inhabit the world. While most are benign, a certain subset threatens the tenuous peace between youkai and humanity. Ever since she agreed to become their "God of Wisdom," Kotoko Iwanaga has served as a mediator between the two realms, resolving any supernatural problems that come her way. + + At a local hospital, Kotoko approaches Kurou Sakuragawa, a university student whose long-term relationship ended with an unfortunate breakup. Kotoko harbors feelings for him and suspects that something supernatural lurks within his harmless appearance, so she asks Kurou for his assistance in helping out youkai. + + Two years later, news of an idol who was accidentally crushed to death by steel beams flooded the press. However, months later, sightings begin to tell of a faceless woman who wields a steel beam. As is the case for any supernatural problem, Kotoko and her partner set out to stop this spirit from wreaking havoc—but this case may prove to be far more sinister and personal than they could have ever thought. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40010 + url: https://myanimelist.net/anime/40010/Ishuzoku_Reviewers + images: + jpg: + image_url: https://myanimelist.net/images/anime/1870/105970.jpg + small_image_url: https://myanimelist.net/images/anime/1870/105970t.jpg + large_image_url: https://myanimelist.net/images/anime/1870/105970l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1870/105970.webp + small_image_url: https://myanimelist.net/images/anime/1870/105970t.webp + large_image_url: https://myanimelist.net/images/anime/1870/105970l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FpveDH9E--g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ishuzoku Reviewers + - type: Japanese + title: 異種族レビュアーズ + - type: English + title: Interspecies Reviewers + - type: German + title: Interspecies Reviewers + title: Ishuzoku Reviewers + title_english: Interspecies Reviewers + title_japanese: 異種族レビュアーズ + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-11T00:00:00+00:00' + to: '2020-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2020 + to: + day: 28 + month: 3 + year: 2020 + string: Jan 11, 2020 to Mar 28, 2020 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.4 + scored_by: 297516 + rank: null + popularity: 513 + members: 505726 + favorites: 9621 + synopsis: |- + Countless diverse races, from perky fairies to oozing slimes, inhabit the world. Naturally, such a melting pot of creatures has a broad and alluring variety of brothels. With so many options to choose from, it is hard to decide with which succu-girl to have a meaningful, interpersonal experience. + + Fortunately, a tight group of brave warriors has come together to enlighten the public. These perverted adventurers take it upon themselves to assess the appeal of all types of succu-girls through hands-on research. Whether it be the scorchingly hot salamanders or the udderly hu-moo-ngous cow-girls, the Yoruno Gloss reviewers leave no species behind. + + Directed by the mastermind behind Miru Tights, Ishuzoku Reviewers seeks to answer one of the most pressing questions there is: which species is the sexiest? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1985 + type: anime + name: Toyo Recording + url: https://myanimelist.net/anime/producer/1985/Toyo_Recording + licensors: + - mal_id: 296 + type: anime + name: Critical Mass Video + url: https://myanimelist.net/anime/producer/296/Critical_Mass_Video + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 37345 + url: https://myanimelist.net/anime/37345/Plunderer + images: + jpg: + image_url: https://myanimelist.net/images/anime/1534/104784.jpg + small_image_url: https://myanimelist.net/images/anime/1534/104784t.jpg + large_image_url: https://myanimelist.net/images/anime/1534/104784l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1534/104784.webp + small_image_url: https://myanimelist.net/images/anime/1534/104784t.webp + large_image_url: https://myanimelist.net/images/anime/1534/104784l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_skxpc9VrfQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Plunderer + - type: Japanese + title: プランダラ + - type: English + title: Plunderer + title: Plunderer + title_english: Plunderer + title_japanese: プランダラ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2020-01-09T00:00:00+00:00' + to: '2020-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2020 + to: + day: 25 + month: 6 + year: 2020 + string: Jan 9, 2020 to Jun 25, 2020 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 6.65 + scored_by: 208943 + rank: 7261 + popularity: 529 + members: 493301 + favorites: 1645 + synopsis: |- + Alcia is a world governed by "Count": numbers engraved on a person's body, representing any number related to their life. These Counts determine a person's social status and power in Alcia. If a Count reaches zero, the person is sent to the Abyss, a place rumored to be worse than death. + + Hina, a traveler whose Count is based on the distance she traveled, witnessed her mother get dragged down into the Abyss. Determined to fulfill her mother's last wishes, she sets off on a journey in search of the legendary Aces—heroes of the war that happened three hundred years ago, bearing a white star next to their Count. + + While wandering around, Hina encounters Licht Bach, a mysterious masked man with negative Count, and Nana, the owner of a tavern. In the midst of having a good time, Hina is tricked into a battle with a military soldier. However, despite his negative count, Licht rescues Hina and reveals that he has another count, one with a white star, one of a legendary Ace. + + Plunderer follows the journey of Hina and other inhabitants of Alcia as they discover the truth about their world, the Abyss, and the legendary Aces. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40046 + url: https://myanimelist.net/anime/40046/Id_Invaded + images: + jpg: + image_url: https://myanimelist.net/images/anime/1889/105337.jpg + small_image_url: https://myanimelist.net/images/anime/1889/105337t.jpg + large_image_url: https://myanimelist.net/images/anime/1889/105337l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1889/105337.webp + small_image_url: https://myanimelist.net/images/anime/1889/105337t.webp + large_image_url: https://myanimelist.net/images/anime/1889/105337l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dnVZwj7ZBjs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Id:Invaded + - type: Japanese + title: ID:INVADED イド:インヴェイデッド + - type: English + title: 'ID: INVADED' + title: Id:Invaded + title_english: 'ID: INVADED' + title_japanese: ID:INVADED イド:インヴェイデッド + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-01-06T00:00:00+00:00' + to: '2020-03-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2020 + to: + day: 23 + month: 3 + year: 2020 + string: Jan 6, 2020 to Mar 23, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.81 + scored_by: 183242 + rank: 1150 + popularity: 629 + members: 427979 + favorites: 3118 + synopsis: |- + The Mizuhanome System is a highly advanced development that allows people to enter one of the most intriguing places in existence—the human mind. Through the use of so-called "cognition particles" left behind at a crime scene by the perpetrator, detectives from the specialized police squad Kura can manifest a criminal's unconscious mind as a bizarre stream of thoughts in a virtual world. Their task is to explore this psychological plane, called an "id well," to reveal the identity of the culprit. + + Not just anyone can enter the id wells; the prerequisite is that you must have killed someone yourself. Such is the case for former detective Akihito Narihisago, who is known as "Sakaido" inside the id wells. Once a respected member of the police, tragedy struck, and he soon found himself on the other side of the law. + + Nevertheless, Narihisago continues to assist Kura in confinement. While his prodigious detective skills still prove useful toward investigations, Narihisago discovers that not everything is as it seems, as behind the seemingly standalone series of murder cases lurks a much more sinister truth. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1983 + type: anime + name: Anima&Co. + url: https://myanimelist.net/anime/producer/1983/Anima_Co + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 41094 + url: https://myanimelist.net/anime/41094/Xian_Wang_de_Richang_Shenghuo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1931/157562.jpg + small_image_url: https://myanimelist.net/images/anime/1931/157562t.jpg + large_image_url: https://myanimelist.net/images/anime/1931/157562l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1931/157562.webp + small_image_url: https://myanimelist.net/images/anime/1931/157562t.webp + large_image_url: https://myanimelist.net/images/anime/1931/157562l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7ANfp-ibOs0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Xian Wang de Richang Shenghuo + - type: Synonym + title: Xian Wang de Ri Chang Sheng Huo + - type: Synonym + title: 不死身な僕の日常 + - type: Japanese + title: 仙王的日常生活 + - type: English + title: The Daily Life of the Immortal King + - type: Spanish + title: La Vida Diaria del Rey Inmortal + - type: French + title: Le Quotidien du Roi Immortel + title: Xian Wang de Richang Shenghuo + title_english: The Daily Life of the Immortal King + title_japanese: 仙王的日常生活 + title_synonyms: + - Xian Wang de Ri Chang Sheng Huo + - 不死身な僕の日常 + type: ONA + source: Web novel + episodes: 15 + status: Finished Airing + airing: false + aired: + from: '2020-01-18T00:00:00+00:00' + to: '2020-03-28T00:00:00+00:00' + prop: + from: + day: 18 + month: 1 + year: 2020 + to: + day: 28 + month: 3 + year: 2020 + string: Jan 18, 2020 to Mar 28, 2020 + duration: 19 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 182981 + rank: 3263 + popularity: 678 + members: 398380 + favorites: 2262 + synopsis: |- + Wang Ling is a high school student with a cool and carefree demeanor. Coming off as someone with a very low spiritual force, he actually possesses a power capable of destroying the world at a moment's notice. To mitigate the volatile force within him, his parents have resorted to using an amulet as a temporary solution. However, the amulet weakens over time and Wang Ling's emotions also accelerate its deterioration. Now with the amulet on the verge of breaking, Wang Ling and his father race against time in order to fix it. + + [Written by MAL Rewrite] + background: Adaptation of Kuxuan's (枯玄) web novel of the same title. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: [] + studios: + - mal_id: 1325 + type: anime + name: Haoliners Animation + url: https://myanimelist.net/anime/producer/1325/Haoliners_Animation + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 38992 + url: https://myanimelist.net/anime/38992/Rikei_ga_Koi_ni_Ochita_no_de_Shoumei_shitemita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1432/103533.jpg + small_image_url: https://myanimelist.net/images/anime/1432/103533t.jpg + large_image_url: https://myanimelist.net/images/anime/1432/103533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1432/103533.webp + small_image_url: https://myanimelist.net/images/anime/1432/103533t.webp + large_image_url: https://myanimelist.net/images/anime/1432/103533l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Wb2xA_Yl0ME?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rikei ga Koi ni Ochita no de Shoumei shitemita. + - type: Synonym + title: RikeKoi + - type: Japanese + title: 理系が恋に落ちたので証明してみた。 + - type: English + title: Science Fell in Love, So I Tried to Prove It + - type: German + title: Science Fell In Love, So I Tried To Prove it + - type: Spanish + title: Science Fell in Love, So I Tried to Prove It + - type: French + title: Science Fell in Love, So I Tried to Prove it + title: Rikei ga Koi ni Ochita no de Shoumei shitemita. + title_english: Science Fell in Love, So I Tried to Prove It + title_japanese: 理系が恋に落ちたので証明してみた。 + title_synonyms: + - RikeKoi + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-11T00:00:00+00:00' + to: '2020-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2020 + to: + day: 28 + month: 3 + year: 2020 + string: Jan 11, 2020 to Mar 28, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 163869 + rank: 3061 + popularity: 685 + members: 395286 + favorites: 1201 + synopsis: |- + It is widely believed that science can provide rational explanations for the countless phenomena of our universe. However, there are many aspects of our existence that science has not yet found a solution to and cannot decipher with numbers. The most notorious of these is the concept of love. While it may seem impossible to apply scientific theory to such an intricate and complex emotion, a daring pair of quick-witted Saitama University scientists aim to take on the challenge. + + One day the bold and beautiful Ayame Himuro outwardly declares that she is in love with Shinya Yukimura, her fellow logical and level-headed scientist. Acknowledging his own lack of experience with romance, Yukimura questions what factors constitute love in the first place and whether he is in love with Himuro or not. Both clueless in the dealings of love, the pair begin to conduct detailed experiments on one another to test the human characteristics that indicate love and discern whether they demonstrate these traits toward each other. + + As Himuro and Yukimura begin their intimate analysis, can the two scientists successfully apply scientific theory, with the help of their friends, to quantify the feelings they express for one another? + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 874 + type: anime + name: Flex Comix + url: https://myanimelist.net/anime/producer/874/Flex_Comix + - mal_id: 1221 + type: anime + name: Hokkaido Cultural Broadcasting + url: https://myanimelist.net/anime/producer/1221/Hokkaido_Cultural_Broadcasting + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1985 + type: anime + name: Toyo Recording + url: https://myanimelist.net/anime/producer/1985/Toyo_Recording + - mal_id: 2093 + type: anime + name: ibis Capital Partners + url: https://myanimelist.net/anime/producer/2093/ibis_Capital_Partners + - mal_id: 2096 + type: anime + name: Y&N Brothers + url: https://myanimelist.net/anime/producer/2096/Y_N_Brothers + - mal_id: 2108 + type: anime + name: SUPA LOVE + url: https://myanimelist.net/anime/producer/2108/SUPA_LOVE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 39792 + url: https://myanimelist.net/anime/39792/Eizouken_ni_wa_Te_wo_Dasu_na + images: + jpg: + image_url: https://myanimelist.net/images/anime/1680/110451.jpg + small_image_url: https://myanimelist.net/images/anime/1680/110451t.jpg + large_image_url: https://myanimelist.net/images/anime/1680/110451l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1680/110451.webp + small_image_url: https://myanimelist.net/images/anime/1680/110451t.webp + large_image_url: https://myanimelist.net/images/anime/1680/110451l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/acYbdQImkp4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Eizouken ni wa Te wo Dasu na! + - type: Synonym + title: Hands off the Motion Pictures Club! + - type: Japanese + title: 映像研には手を出すな! + - type: English + title: Keep Your Hands Off Eizouken! + - type: German + title: Keep Your Hands Off Eizouken! + - type: Spanish + title: Keep Your Hands Off Eizouken! + - type: French + title: Keep Your Hands Off Eizouken! + title: Eizouken ni wa Te wo Dasu na! + title_english: Keep Your Hands Off Eizouken! + title_japanese: 映像研には手を出すな! + title_synonyms: + - Hands off the Motion Pictures Club! + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-06T00:00:00+00:00' + to: '2020-03-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2020 + to: + day: 23 + month: 3 + year: 2020 + string: Jan 6, 2020 to Mar 23, 2020 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 149912 + rank: 545 + popularity: 745 + members: 370334 + favorites: 4559 + synopsis: "Midori Asakusa sees the world a bit differently. Always having her nose in a sketchbook, Asakusa draws detailed\ + \ landscapes and backgrounds of both the world around her and the one within her boundless imagination. Even the simple\ + \ act of doodling on a wall evolves into an emergency repair on the outer hull of her spaceship. She is only brought\ + \ back to reality by her best friend Sayaka Kanamori. The pair are stark opposites, with Asakusa's childlike wonder\ + \ contrasted by Kanamori's calculated approach to life. \n\nAfter a chance encounter where the two \"save\" the young\ + \ model Tsubame Misuzaki from her overprotective bodyguard, a connection instantly sparks between Asakusa and Misuzaki,\ + \ as both share an intense passion for art and animation. Whereas Asakusa is interested in backgrounds and settings,\ + \ Misuzaki loves drawing the human form. Sensing a money-making opportunity, Kanamori suggests that they start an\ + \ animation club, which they disguise as a motion picture club since the school already has an anime club. Thus begins\ + \ the trio's journey of producing animation that will awe the world. \n\nFrom the brilliant mind of Masaaki Yuasa,\ + \ Eizouken ni wa Te wo Dasu na! is a love letter to animation, wildly creative in its approach, and a testament to\ + \ the potential of the medium.\n\n[Written by MAL Rewrite]" + background: Winner of the Grand Prize at the 24th Japan Media Arts Festival. + season: winter + year: 2020 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1011 + type: anime + name: Warner Music Japan + url: https://myanimelist.net/anime/producer/1011/Warner_Music_Japan + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40262 + url: https://myanimelist.net/anime/40262/Haikyuu_Riku_vs_Kuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1527/102671.jpg + small_image_url: https://myanimelist.net/images/anime/1527/102671t.jpg + large_image_url: https://myanimelist.net/images/anime/1527/102671l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1527/102671.webp + small_image_url: https://myanimelist.net/images/anime/1527/102671t.webp + large_image_url: https://myanimelist.net/images/anime/1527/102671l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EAK3qhkL8d8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! Riku vs. Kuu + - type: Synonym + title: Haikyuu!! Jump Festa 2020 Special + - type: Synonym + title: Haikyuu!! OVA + - type: Synonym + title: 'Haikyuu!!: Land vs Sky' + - type: Synonym + title: 'Haikyuu!!: The Volleyball Way' + - type: Synonym + title: 'Haikyuu!!: Ball no Michi' + - type: Japanese + title: ハイキュー!! 陸VS空 + - type: English + title: Haikyu!! Land vs. Air + - type: German + title: Haikyu!! Land vs. Air + - type: Spanish + title: Haikyu!! Land vs. Air + - type: French + title: Haikyu!! Land vs. Air + title: Haikyuu!! Riku vs. Kuu + title_english: Haikyu!! Land vs. Air + title_japanese: ハイキュー!! 陸VS空 + title_synonyms: + - Haikyuu!! Jump Festa 2020 Special + - Haikyuu!! OVA + - 'Haikyuu!!: Land vs Sky' + - 'Haikyuu!!: The Volleyball Way' + - 'Haikyuu!!: Ball no Michi' + type: OVA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2020-01-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 1 + year: 2020 + to: + day: null + month: null + year: null + string: Jan 22, 2020 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 199645 + rank: 1076 + popularity: 800 + members: 347191 + favorites: 658 + synopsis: "An intense battle rages on at the Tokyo Qualifiers for the three remaining spots in the national volleyball\ + \ competition. Nekoma High School, Fukurodani High School, Nohebi Academy, and Itachiyama Academy all passionately\ + \ strive to participate in the tournament. Despite various issues on the court, Nekoma especially wishes to prove\ + \ they are worthy of moving on to the national level. \n\nAs the teams aim to secure their place by overcoming both\ + \ their opponents and their own weaknesses, the Tokyo Qualifiers determine which teams will reign victorious and join\ + \ the national competition.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39576 + url: https://myanimelist.net/anime/39576/Goblin_Slayer__Goblins_Crown + images: + jpg: + image_url: https://myanimelist.net/images/anime/1699/110724.jpg + small_image_url: https://myanimelist.net/images/anime/1699/110724t.jpg + large_image_url: https://myanimelist.net/images/anime/1699/110724l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1699/110724.webp + small_image_url: https://myanimelist.net/images/anime/1699/110724t.webp + large_image_url: https://myanimelist.net/images/anime/1699/110724l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GwQXCqud3g8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Goblin Slayer: Goblin''s Crown' + - type: Japanese + title: ゴブリンスレイヤー -GOBLIN'S CROWN- + - type: English + title: 'Goblin Slayer: Goblin''s Crown' + - type: German + title: 'Goblin Slayer The Movie: Goblin''s Crown' + - type: French + title: 'Goblin Slayer : Goblin''s Crown' + title: 'Goblin Slayer: Goblin''s Crown' + title_english: 'Goblin Slayer: Goblin''s Crown' + title_japanese: ゴブリンスレイヤー -GOBLIN'S CROWN- + title_synonyms: [] + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-02-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 2 + year: 2020 + to: + day: null + month: null + year: null + string: Feb 1, 2020 + duration: 1 hr 25 min + rating: R - 17+ (violence & profanity) + score: 7.26 + scored_by: 161907 + rank: 3540 + popularity: 865 + members: 326114 + favorites: 507 + synopsis: |- + Goblin Slayer and his party head up to the snowy mountains in the north after receiving a request from the Sword Maiden. A small village gets attacked, they encounter a mysterious chapel, and something about how these goblins are acting bothers the Goblin Slayer. + + (Source: Crunchyroll) + background: The first 25 minutes is a recap of the first season. The movie that follows is an adaptation of the fifth + light novel. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 39575 + url: https://myanimelist.net/anime/39575/Somali_to_Mori_no_Kamisama + images: + jpg: + image_url: https://myanimelist.net/images/anime/1938/102796.jpg + small_image_url: https://myanimelist.net/images/anime/1938/102796t.jpg + large_image_url: https://myanimelist.net/images/anime/1938/102796l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1938/102796.webp + small_image_url: https://myanimelist.net/images/anime/1938/102796t.webp + large_image_url: https://myanimelist.net/images/anime/1938/102796l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z4iTmgQ09nA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Somali to Mori no Kamisama + - type: Japanese + title: ソマリと森の神様 + - type: English + title: Somali and the Forest Spirit + - type: German + title: Somali and the Forest Spirit + - type: Spanish + title: Somali and the Forest Spirit + - type: French + title: Somali et L'esprit de la Forêt + title: Somali to Mori no Kamisama + title_english: Somali and the Forest Spirit + title_japanese: ソマリと森の神様 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-10T00:00:00+00:00' + to: '2020-03-27T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2020 + to: + day: 27 + month: 3 + year: 2020 + string: Jan 10, 2020 to Mar 27, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 127639 + rank: 1136 + popularity: 887 + members: 318913 + favorites: 1824 + synopsis: |- + In a world inhabited by demons, cyclopes, and other fantastic creatures, humans stand apart as the outcasts. Quick to anger, the human race engaged in a war that all but wiped them out. The few humans that remain are seen as a delicacy, serving no purpose but to be hunted down and eaten. + + One day, a golem—a wandering protector of nature—encounters a lone human child while patrolling. Inspired by her enthusiasm, he takes the girl, named Somali, under his wing. Together, the duo embarks on a journey to find Somali's parents and bring her home. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Fridays + time: 00:30 + timezone: Asia/Tokyo + string: Fridays at 00:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1534 + type: anime + name: North Stars Pictures + url: https://myanimelist.net/anime/producer/1534/North_Stars_Pictures + - mal_id: 1735 + type: anime + name: JY Animation + url: https://myanimelist.net/anime/producer/1735/JY_Animation + - mal_id: 1901 + type: anime + name: CA-Cygames Anime Fund + url: https://myanimelist.net/anime/producer/1901/CA-Cygames_Anime_Fund + - mal_id: 2098 + type: anime + name: Mixer + url: https://myanimelist.net/anime/producer/2098/Mixer + licensors: [] + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 2097 + type: anime + name: HORNETS + url: https://myanimelist.net/anime/producer/2097/HORNETS + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: [] + - mal_id: 38481 + url: https://myanimelist.net/anime/38481/Toaru_Kagaku_no_Railgun_T + images: + jpg: + image_url: https://myanimelist.net/images/anime/1819/103287.jpg + small_image_url: https://myanimelist.net/images/anime/1819/103287t.jpg + large_image_url: https://myanimelist.net/images/anime/1819/103287l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1819/103287.webp + small_image_url: https://myanimelist.net/images/anime/1819/103287t.webp + large_image_url: https://myanimelist.net/images/anime/1819/103287l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UtbOfkPz-G0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Toaru Kagaku no Railgun T + - type: Synonym + title: Toaru Kagaku no Railgun 3 + - type: Synonym + title: Toaru Kagaku no Choudenjihou 3 + - type: Synonym + title: A Certain Scientific Railgun 3 + - type: Japanese + title: とある科学の超電磁砲[レールガン]T + - type: English + title: A Certain Scientific Railgun T + - type: German + title: A Certain Scientific Railgun T + - type: Spanish + title: A Certain Scientific Railgun T + - type: French + title: A Certain Scientific Railgun T + title: Toaru Kagaku no Railgun T + title_english: A Certain Scientific Railgun T + title_japanese: とある科学の超電磁砲[レールガン]T + title_synonyms: + - Toaru Kagaku no Railgun 3 + - Toaru Kagaku no Choudenjihou 3 + - A Certain Scientific Railgun 3 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2020-01-10T00:00:00+00:00' + to: '2020-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2020 + to: + day: 25 + month: 9 + year: 2020 + string: Jan 10, 2020 to Sep 25, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.15 + scored_by: 103896 + rank: 526 + popularity: 1059 + members: 266781 + favorites: 3313 + synopsis: |- + The Daihasei Festival has begun, and that of course means that Tokiwadai Middle School—a prestigious all-girls' middle school—is competing too. Despite the participation of the "Ace of Tokiwadai," Mikoto Misaka, the other students who are participating are still putting their utmost effort into winning, no matter how impossible the feat may seem against her overwhelming might. + + However, not all is fun and games. Due to the festival, Academy City opens to the outside world, and various factions have begun plotting ways to infiltrate the city. Misaka appears to be on their radar, and as the festival proceeds, people lurking from the shadows begin to emerge... + + Toaru Kagaku no Railgun T brings back the Tokiwadai Ace and her friends as they dive deeper into the dark side of Academy City. From terrorist attacks to ruthless underground projects, anything is possible in this city. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 39988 + url: https://myanimelist.net/anime/39988/Isekai_Quartet_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1030/103383.jpg + small_image_url: https://myanimelist.net/images/anime/1030/103383t.jpg + large_image_url: https://myanimelist.net/images/anime/1030/103383l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1030/103383.webp + small_image_url: https://myanimelist.net/images/anime/1030/103383t.webp + large_image_url: https://myanimelist.net/images/anime/1030/103383l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DgAW7Nlcqlw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Quartet 2 + - type: Japanese + title: 異世界かるてっと2 + - type: English + title: Isekai Quartet 2 + title: Isekai Quartet 2 + title_english: Isekai Quartet 2 + title_japanese: 異世界かるてっと2 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-15T00:00:00+00:00' + to: '2020-04-01T00:00:00+00:00' + prop: + from: + day: 15 + month: 1 + year: 2020 + to: + day: 1 + month: 4 + year: 2020 + string: Jan 15, 2020 to Apr 1, 2020 + duration: 11 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 153488 + rank: 2926 + popularity: 1095 + members: 257145 + favorites: 263 + synopsis: |- + Despite completing all the tasks given to them, Ainz Ooal Gown, Tanya Degurechaff, Kazuma Satou, Subaru Natsuki, and the other members of Class 2 are surprised to find out that their role as students is far from over. With no means of returning home, the class of eccentric personalities is still mysteriously stuck in the unfamiliar world. Although, as they are becoming quite fond of each other, spending more time together does not sound that bad. + + With the unexpected arrival of new transfer students, the comedic antics of our beloved characters continue to grow. Thus, their bizarre yet nonchalant school life continues. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 443 + type: anime + name: Studio PuYUKAI + url: https://myanimelist.net/anime/producer/443/Studio_PuYUKAI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 40483 + url: https://myanimelist.net/anime/40483/Murenase_Seton_Gakuen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1558/104666.jpg + small_image_url: https://myanimelist.net/images/anime/1558/104666t.jpg + large_image_url: https://myanimelist.net/images/anime/1558/104666l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1558/104666.webp + small_image_url: https://myanimelist.net/images/anime/1558/104666t.webp + large_image_url: https://myanimelist.net/images/anime/1558/104666l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4HIgQWVcGoE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Murenase! Seton Gakuen + - type: Synonym + title: Come Together! to the Seton Academy + - type: Japanese + title: 群れなせ!シートン学園 + - type: English + title: 'Seton Academy: Join the Pack!' + - type: German + title: 'Seton Academy: Join the Pack!' + - type: Spanish + title: 'Seton Academy: Join the Pack!' + - type: French + title: 'Seton Academy: Join the Pack!' + title: Murenase! Seton Gakuen + title_english: 'Seton Academy: Join the Pack!' + title_japanese: 群れなせ!シートン学園 + title_synonyms: + - Come Together! to the Seton Academy + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-07T00:00:00+00:00' + to: '2020-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2020 + to: + day: 24 + month: 3 + year: 2020 + string: Jan 7, 2020 to Mar 24, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 109132 + rank: 5646 + popularity: 1288 + members: 219238 + favorites: 553 + synopsis: |- + Seton Academy is a place attended by a plethora of interesting and diverse animal species. Jin Mazama is one of the few humans there, who also happens to vehemently hate animals from the bottom of his heart! One day, he stumbles upon the rowdy and assertive girl Ranka Ookami, a small "lone wolf" without a pack, who has not a single friend. + + The desperate Ranka tries to invite Jin into joining her pack; Jin, who hates animals, naturally refuses. Amid this situation, Jin meets Hitomi Hino, a fellow human, and promptly becomes infatuated with her. After getting to know each other, the two decide to create a cooking club, and after a few bad-blooded misunderstandings, Ranka soon joins the club as well. + + Thus begins the howl-some and howl-arious story of two normal humans; an adorable wolf; a cheerful koala; a sluggish, blonde sloth; and a feline with cattitude in their newfound club—in a story that teaches that friendship can be forged by creatures of different kinds. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1908 + type: anime + name: Legs + url: https://myanimelist.net/anime/producer/1908/Legs + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 38909 + url: https://myanimelist.net/anime/38909/Infinite_Dendrogram + images: + jpg: + image_url: https://myanimelist.net/images/anime/1854/114772.jpg + small_image_url: https://myanimelist.net/images/anime/1854/114772t.jpg + large_image_url: https://myanimelist.net/images/anime/1854/114772l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1854/114772.webp + small_image_url: https://myanimelist.net/images/anime/1854/114772t.webp + large_image_url: https://myanimelist.net/images/anime/1854/114772l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ESwp36zs30g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Infinite Dendrogram + - type: Japanese + title: -インフィニット・デンドログラム- + - type: English + title: Infinite Dendrogram + title: Infinite Dendrogram + title_english: Infinite Dendrogram + title_japanese: -インフィニット・デンドログラム- + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-01-09T00:00:00+00:00' + to: '2020-04-16T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2020 + to: + day: 16 + month: 4 + year: 2020 + string: Jan 9, 2020 to Apr 16, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.21 + scored_by: 87969 + rank: 9863 + popularity: 1400 + members: 199928 + favorites: 309 + synopsis: "In the year 2043, <Infinite Dendrogram>, the world's first successful full-dive VRMMO was released.\ + \ In addition to its ability to perfectly simulate the five senses, along with its many other amazing features, the\ + \ game promised to offer players a world full of infinite possibilities. Nearly two years later, soon-to-be college\ + \ freshman, Reiji Mukudori, is finally able to buy a copy of the game and start playing. With some help from his experienced\ + \ older brother, Shuu, and his partner Embryo, Reiji embarks on an adventure into the world of <Infinite Dendrogram>.\ + \ Just what will he discover and encounter in this game world known for its incredible realism and infinite possibilities?\n\ + \ \n(Source: J-Novel Club)" + background: '' + season: winter + year: 2020 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1972 + type: anime + name: HOTZIPANG + url: https://myanimelist.net/anime/producer/1972/HOTZIPANG + - mal_id: 1983 + type: anime + name: Anima&Co. + url: https://myanimelist.net/anime/producer/1983/Anima_Co + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 951 + type: anime + name: NAZ + url: https://myanimelist.net/anime/producer/951/NAZ + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 38924 + url: https://myanimelist.net/anime/38924/Nekopara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1716/104880.jpg + small_image_url: https://myanimelist.net/images/anime/1716/104880t.jpg + large_image_url: https://myanimelist.net/images/anime/1716/104880l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1716/104880.webp + small_image_url: https://myanimelist.net/images/anime/1716/104880t.webp + large_image_url: https://myanimelist.net/images/anime/1716/104880l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wSDfoGrDNjk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nekopara + - type: Synonym + title: Neko Para + - type: Japanese + title: ネコぱら + - type: English + title: Nekopara + title: Nekopara + title_english: Nekopara + title_japanese: ネコぱら + title_synonyms: + - Neko Para + type: TV + source: Visual novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-09T00:00:00+00:00' + to: '2020-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2020 + to: + day: 26 + month: 3 + year: 2020 + string: Jan 9, 2020 to Mar 26, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.73 + scored_by: 72017 + rank: 6743 + popularity: 1459 + members: 190033 + favorites: 872 + synopsis: |- + The siblings Kashou and Shigure Minazuki enjoy the company of six catgirls. Chocola and Vanilla assist Kashou in his job as a baker at the patisserie La Soleil, while the others—Coconut, Azuki, Cinnamon, and Maple—accompany Shigure in her daily life back at their home. + + One afternoon, when Chocola goes out for an errand, she notices a green-haired kitten alone by herself at a park and decides to bring her back to the patisserie. Soon after, the Minazuki household adopts her and gives her a name: Cacao. With a new member in their family, the members of the Minazuki household continue their everyday lives—bound to become livelier than ever. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: [] + - mal_id: 38256 + url: https://myanimelist.net/anime/38256/Magia_Record__Mahou_Shoujo_Madoka☆Magica_Gaiden + images: + jpg: + image_url: https://myanimelist.net/images/anime/1786/104783.jpg + small_image_url: https://myanimelist.net/images/anime/1786/104783t.jpg + large_image_url: https://myanimelist.net/images/anime/1786/104783l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1786/104783.webp + small_image_url: https://myanimelist.net/images/anime/1786/104783t.webp + large_image_url: https://myanimelist.net/images/anime/1786/104783l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YiRywvGitzs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Magia Record: Mahou Shoujo Madoka☆Magica Gaiden' + - type: Synonym + title: 'Puella Magi Madoka Magica Side Story: Magia Record' + - type: Japanese + title: マギアレコード 魔法少女まどか☆マギカ外伝 (TV) + - type: English + title: 'Magia Record: Puella Magi Madoka Magica Side Story' + - type: German + title: 'Magia Record: Puella Magi Madoka✩Magica Side Story' + - type: Spanish + title: 'Magia Record: Puella Magi Madoka✩Magica Side Story' + - type: French + title: 'Magia Record: Puella Magi Madoka✩Magica Side Story' + title: 'Magia Record: Mahou Shoujo Madoka☆Magica Gaiden' + title_english: 'Magia Record: Puella Magi Madoka Magica Side Story' + title_japanese: マギアレコード 魔法少女まどか☆マギカ外伝 (TV) + title_synonyms: + - 'Puella Magi Madoka Magica Side Story: Magia Record' + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-01-05T00:00:00+00:00' + to: '2020-03-29T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2020 + to: + day: 29 + month: 3 + year: 2020 + string: Jan 5, 2020 to Mar 29, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.86 + scored_by: 63734 + rank: 5930 + popularity: 1547 + members: 178957 + favorites: 966 + synopsis: |- + Rumor has it that if a young girl strikes a bargain with a white fairy, it will grant any wish her heart desires. However, in exchange, she will become a magical girl and must put her life on the line to slay fearsome and ferocious witches. + + Iroha Tamaki, a kind-hearted middle schooler from Takarazaki City, is living proof that these rumors are true. Armed with a magical crossbow and the ability to heal injuries, Iroha seeks out the labyrinths where witches hide and defeats them before they can prey on humans. Yet Iroha has no memory of her wish, and even Kyuubey, the white fairy himself, seems to have no idea what Iroha requested of him. + + One day, Iroha hears rumors of a city where "magical girls can be saved," and finds herself on a sunset train to Kamihama City. Unfortunately, she discovers that the witches in Kamihama are far more powerful than usual. After veteran magical girl Yachiyo Nanami is forced to save her, Iroha vows to never return. But when a chance encounter with a tiny Kyuubey seems to trigger distant memories, Iroha is compelled to investigate the mysterious city despite the danger. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + - mal_id: 2102 + type: anime + name: f4samurai + url: https://myanimelist.net/anime/producer/2102/f4samurai + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 40746 + url: https://myanimelist.net/anime/40746/Overflow + images: + jpg: + image_url: https://myanimelist.net/images/anime/1781/104461.jpg + small_image_url: https://myanimelist.net/images/anime/1781/104461t.jpg + large_image_url: https://myanimelist.net/images/anime/1781/104461l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1781/104461.webp + small_image_url: https://myanimelist.net/images/anime/1781/104461t.webp + large_image_url: https://myanimelist.net/images/anime/1781/104461l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Overflow + - type: Japanese + title: おーばーふろぉ + - type: English + title: Overflow + title: Overflow + title_english: Overflow + title_japanese: おーばーふろぉ + title_synonyms: [] + type: ONA + source: Manga + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2020-01-06T00:00:00+00:00' + to: '2020-02-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2020 + to: + day: 24 + month: 2 + year: 2020 + string: Jan 6, 2020 to Feb 24, 2020 + duration: 7 min per ep + rating: Rx - Hentai + score: 7.24 + scored_by: 83799 + rank: null + popularity: 1661 + members: 163879 + favorites: 1623 + synopsis: |- + Kazushi Sudou is a university student who is visited by his two childhood friends, the sisters Ayane and Kotone Shirakawa. When Ayane discovers that Kazushi not only forgot to buy her pudding but is also using her special lotion in the bath, she decides to take revenge and join Kazushi in his bath along with Kotone. Will the perverted Kazushi be able to remain indifferent to them both? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1760 + type: anime + name: Suiseisha + url: https://myanimelist.net/anime/producer/1760/Suiseisha + licensors: [] + studios: + - mal_id: 1968 + type: anime + name: Studio Hokiboshi + url: https://myanimelist.net/anime/producer/1968/Studio_Hokiboshi + genres: + - mal_id: 12 + type: anime + name: Hentai + url: https://myanimelist.net/anime/genre/12/Hentai + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40392 + url: https://myanimelist.net/anime/40392/Runway_de_Waratte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1544/104540.jpg + small_image_url: https://myanimelist.net/images/anime/1544/104540t.jpg + large_image_url: https://myanimelist.net/images/anime/1544/104540l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1544/104540.webp + small_image_url: https://myanimelist.net/images/anime/1544/104540t.webp + large_image_url: https://myanimelist.net/images/anime/1544/104540l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6gKt-yNzhUI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Runway de Waratte + - type: Synonym + title: Smile at the Runway + - type: Japanese + title: ランウェイで笑って + - type: English + title: Smile Down the Runway + title: Runway de Waratte + title_english: Smile Down the Runway + title_japanese: ランウェイで笑って + title_synonyms: + - Smile at the Runway + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-01-11T00:00:00+00:00' + to: '2020-03-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2020 + to: + day: 28 + month: 3 + year: 2020 + string: Jan 11, 2020 to Mar 28, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 56633 + rank: 2029 + popularity: 1883 + members: 139528 + favorites: 443 + synopsis: |- + Being the daughter of a modeling agency owner, Chiyuki Fujito aspires to represent her father's agency in the prestigious Paris Fashion Week, shining under the spotlight as a runway model. However, although she is equipped with great looks and talent, she unfortunately lacks a key element in becoming a successful model—height. Stuck at 158 cm even after entering high school, her childhood dream seems out of reach. + + Meanwhile, Ikuto Tsumura is a high school student with a knack in designing clothes; however, without the resources to pursue the necessary education, his ambition of becoming a fashion designer remains a mere dream. But as fate brings Chiyuki and Ikuto together, the dim hopes within their hearts are ignited once again. Together, the two promise to rebel against convention and carve out their own paths in the fashion world. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2020 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 3155 + type: anime + name: Team-MAX + url: https://myanimelist.net/anime/producer/3155/Team-MAX + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1864 + type: anime + name: Ezόla + url: https://myanimelist.net/anime/producer/1864/Ez%CF%8Cla + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40453 + url: https://myanimelist.net/anime/40453/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_II_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1360/111696.jpg + small_image_url: https://myanimelist.net/images/anime/1360/111696t.jpg + large_image_url: https://myanimelist.net/images/anime/1360/111696l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1360/111696.webp + small_image_url: https://myanimelist.net/images/anime/1360/111696t.webp + large_image_url: https://myanimelist.net/images/anime/1360/111696l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/a1L7EtogTDg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA + - type: Synonym + title: DanMachi II OVA + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうか 2期 OVA + - type: English + title: 'Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to go Searching for Herbs on a Deserted + Island?' + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka II OVA + title_english: 'Is It Wrong to Try to Pick Up Girls in a Dungeon? II: Is It Wrong to go Searching for Herbs on a Deserted + Island?' + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうか 2期 OVA + title_synonyms: + - DanMachi II OVA + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-01-29T00:00:00+00:00' + to: null + prop: + from: + day: 29 + month: 1 + year: 2020 + to: + day: null + month: null + year: null + string: Jan 29, 2020 + duration: 26 min + rating: PG-13 - Teens 13 or older + score: 6.5 + scored_by: 61552 + rank: 8150 + popularity: 2135 + members: 119196 + favorites: 84 + synopsis: |- + When Bell Cranel and the rest of Hestia Familia receive a quest to retrieve rare medicinal herbs from a deserted island, they decide to use the opportunity as a vacation to recover from the recent events. Upon their arrival, the situation quickly escalates, as the girls start quarreling for Bell's attention. However, with the unexpected appearance of a familiar face and other strange occurrences beginning to happen on the island, the group must find a way to endure the abrupt hardships. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/42-2020-spring.yaml b/test/fixtures/jikan/season_matrix/42-2020-spring.yaml new file mode 100644 index 0000000..2a3247a --- /dev/null +++ b/test/fixtures/jikan/season_matrix/42-2020-spring.yaml @@ -0,0 +1,3441 @@ +metadata: + captured_at: '2026-05-11T11:34:16Z' + label: 2020-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2020/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:16 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:c50a330f3c8139d7736427e81e4191eb480af224 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 10 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 248 + per_page: 25 + data: + - mal_id: 40591 + url: https://myanimelist.net/anime/40591/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1764/106659.jpg + small_image_url: https://myanimelist.net/images/anime/1764/106659t.jpg + large_image_url: https://myanimelist.net/images/anime/1764/106659l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1764/106659.webp + small_image_url: https://myanimelist.net/images/anime/1764/106659t.webp + large_image_url: https://myanimelist.net/images/anime/1764/106659l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_NkxM_uLUpw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen + - type: Synonym + title: 'Kaguya Wants to be Confessed To: The Geniuses'' War of Love and Brains 2nd Season' + - type: Synonym + title: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season' + - type: Synonym + title: 'Kaguya-sama: Love is War 2nd Season' + - type: Japanese + title: かぐや様は告らせたい?~天才たちの恋愛頭脳戦~ + - type: English + title: 'Kaguya-sama: Love is War?' + - type: German + title: 'Kaguya-sama: Love Is War Staffel 2' + - type: Spanish + title: 'Kaguya-sama: Love Is War? Temporada 2' + - type: French + title: 'Kaguya-sama: Love is War Saison 2' + title: Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen + title_english: 'Kaguya-sama: Love is War?' + title_japanese: かぐや様は告らせたい?~天才たちの恋愛頭脳戦~ + title_synonyms: + - 'Kaguya Wants to be Confessed To: The Geniuses'' War of Love and Brains 2nd Season' + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 2nd Season' + - 'Kaguya-sama: Love is War 2nd Season' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-11T00:00:00+00:00' + to: '2020-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2020 + to: + day: 27 + month: 6 + year: 2020 + string: Apr 11, 2020 to Jun 27, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.61 + scored_by: 960553 + rank: 108 + popularity: 96 + members: 1500971 + favorites: 19066 + synopsis: |- + After a slow but eventful summer vacation, Shuchiin Academy's second term is now starting in full force. As August transitions into September, Miyuki Shirogane's birthday looms ever closer, leaving Kaguya Shinomiya in a serious predicament as to how to celebrate it. Furthermore, the tenure of the school's 67th student council is coming to an end. Due to the council members being in different classes, the only time Kaguya and Miyuki have to be together will soon disappear, putting all of their cunning plans at risk. + + A long and difficult election that will decide the fate of the new student council awaits, as multiple challengers fight for the coveted title of president. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40221 + url: https://myanimelist.net/anime/40221/Kami_no_Tou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1702/106229.jpg + small_image_url: https://myanimelist.net/images/anime/1702/106229t.jpg + large_image_url: https://myanimelist.net/images/anime/1702/106229l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1702/106229.webp + small_image_url: https://myanimelist.net/images/anime/1702/106229t.webp + large_image_url: https://myanimelist.net/images/anime/1702/106229l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RNyClma6awo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kami no Tou + - type: Synonym + title: Sin-ui Tap + - type: Synonym + title: 신의 탑 + - type: Japanese + title: 神之塔 -Tower of God- + - type: English + title: Tower of God + - type: German + title: Tower of God + - type: Spanish + title: Tower of God + - type: French + title: Tower of God + title: Kami no Tou + title_english: Tower of God + title_japanese: 神之塔 -Tower of God- + title_synonyms: + - Sin-ui Tap + - 신의 탑 + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-04-02T00:00:00+00:00' + to: '2020-06-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2020 + to: + day: 25 + month: 6 + year: 2020 + string: Apr 2, 2020 to Jun 25, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 617021 + rank: 2013 + popularity: 173 + members: 1069173 + favorites: 6925 + synopsis: |- + There is a tower that summons chosen people called "Regulars" with the promise of granting their deepest desires. Whether it be wealth, fame, authority, or something that surpasses them all—everything awaits those who reach the top. + + Twenty-Fifth Bam is a boy who had only known a dark cave, a dirty cloth, and an unreachable light his entire life. So when a girl named Rachel came to him through the light, his entire world changed. Becoming close friends with Rachel, he learned various things about the outside world from her. But when Rachel says she must leave him to climb the Tower, his world shatters around him. Vowing to follow after her no matter what it takes, he sets his sight on the tower, and a miracle occurs. + + Thus begins the journey of Bam, a young boy who was not chosen by the Tower but opened its gates by himself. They call his kind "Irregulars"—beings that have shaken the very foundation of the Tower each time they set foot inside it. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 167 + type: anime + name: Sega + url: https://myanimelist.net/anime/producer/167/Sega + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2018 + type: anime + name: Rialto Entertainment + url: https://myanimelist.net/anime/producer/2018/Rialto_Entertainment + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + - mal_id: 2044 + type: anime + name: Naver Webtoons + url: https://myanimelist.net/anime/producer/2044/Naver_Webtoons + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 94 + type: anime + name: Telecom Animation Film + url: https://myanimelist.net/anime/producer/94/Telecom_Animation_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40902 + url: https://myanimelist.net/anime/40902/Shokugeki_no_Souma__Gou_no_Sara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1756/108000.jpg + small_image_url: https://myanimelist.net/images/anime/1756/108000t.jpg + large_image_url: https://myanimelist.net/images/anime/1756/108000l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1756/108000.webp + small_image_url: https://myanimelist.net/images/anime/1756/108000t.webp + large_image_url: https://myanimelist.net/images/anime/1756/108000l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AS61_hprRVg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shokugeki no Souma: Gou no Sara' + - type: Synonym + title: Shokugeki no Soma 5th Season + - type: Japanese + title: 食戟のソーマ 豪ノ皿 + - type: English + title: Food Wars! The Fifth Plate + - type: German + title: Food Wars! The Fifth Plate + - type: Spanish + title: Food Wars! The Fifth Plate + - type: French + title: Food Wars! Fifth Plate + title: 'Shokugeki no Souma: Gou no Sara' + title_english: Food Wars! The Fifth Plate + title_japanese: 食戟のソーマ 豪ノ皿 + title_synonyms: + - Shokugeki no Soma 5th Season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-04-11T00:00:00+00:00' + to: '2020-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2020 + to: + day: 26 + month: 9 + year: 2020 + string: Apr 11, 2020 to Sep 26, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 298522 + rank: 3252 + popularity: 429 + members: 587582 + favorites: 1451 + synopsis: |- + Thanks to Souma Yukihira, Erina Nakiri, and the rebel forces overthrowing the regime of Azami Nakiri—the previous school director—and the former Elite Ten, Tootsuki Culinary Academy is back in order. However, its students have one more great battle ahead of them: the BLUE, a competition where young chefs seeking world-class fame compete. Faced with new trials and rivals, Souma and his friends will fight to conquer the BLUE and to defeat Asahi Saiba, the leader of an underworld organization of chefs known as Noir, who once defeated Souma and his father in a Shokugeki. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40417 + url: https://myanimelist.net/anime/40417/Fruits_Basket_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1972/111635.jpg + small_image_url: https://myanimelist.net/images/anime/1972/111635t.jpg + large_image_url: https://myanimelist.net/images/anime/1972/111635l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1972/111635.webp + small_image_url: https://myanimelist.net/images/anime/1972/111635t.webp + large_image_url: https://myanimelist.net/images/anime/1972/111635l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yBBePKQTWFE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fruits Basket 2nd Season + - type: Synonym + title: Fruits Basket (2019) 2nd Season + - type: Synonym + title: Furuba + - type: Synonym + title: Fruits Basket (Kouhen) + - type: Japanese + title: フルーツバスケット 2nd season + - type: English + title: Fruits Basket 2nd Season + - type: German + title: Fruits Basket Staffel 2 + - type: Spanish + title: Fruits Basket Temporada 2 + - type: French + title: Fruits Basket Sasion 2 + title: Fruits Basket 2nd Season + title_english: Fruits Basket 2nd Season + title_japanese: フルーツバスケット 2nd season + title_synonyms: + - Fruits Basket (2019) 2nd Season + - Furuba + - Fruits Basket (Kouhen) + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2020-04-07T00:00:00+00:00' + to: '2020-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2020 + to: + day: 22 + month: 9 + year: 2020 + string: Apr 7, 2020 to Sep 22, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.53 + scored_by: 303447 + rank: 146 + popularity: 431 + members: 585105 + favorites: 6482 + synopsis: |- + A year has passed since Tooru Honda began living in the Souma residence, and she has since created stronger relationships with its inhabitants Shigure, Kyou, and Yuki. She has also grown closer to the rest of the Souma family and has become familiar with their ancestral secret, having helped them with many of their personal issues. The closer Tooru gets, however, the more she begins to realize that their secret holds a darker truth than she first presumed. + + Summer is approaching and Tooru is invited to spend her days with the Soumas, mainly Kyou and Yuki. Tooru wishes for an easy-going vacation, but her close relationships with the two boys and the rest of the Soumas may prove to cause trouble. As they grow more intimate, their carefree time together is hindered by older hardships and feelings from the past that begin to resurface. The Eternal Banquet also dawns on the members of the zodiac, and they must tend to their duties alongside the unnerving head of the family, Akito Souma. + + With the banquet approaching and a plethora of feelings to be solved, will Tooru's life with the Soumas remain peaceful, or will she find herself in a situation from which she cannot escape? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 100 + type: anime + name: TV Osaka + url: https://myanimelist.net/anime/producer/100/TV_Osaka + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 39463 + url: https://myanimelist.net/anime/39463/Gleipnir + images: + jpg: + image_url: https://myanimelist.net/images/anime/1808/111697.jpg + small_image_url: https://myanimelist.net/images/anime/1808/111697t.jpg + large_image_url: https://myanimelist.net/images/anime/1808/111697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1808/111697.webp + small_image_url: https://myanimelist.net/images/anime/1808/111697t.webp + large_image_url: https://myanimelist.net/images/anime/1808/111697l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Lt8zDDCXHlo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gleipnir + - type: Japanese + title: グレイプニル + - type: English + title: Gleipnir + - type: German + title: Glepnir + title: Gleipnir + title_english: Gleipnir + title_japanese: グレイプニル + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-04-05T00:00:00+00:00' + to: '2020-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2020 + to: + day: 28 + month: 6 + year: 2020 + string: Apr 5, 2020 to Jun 28, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.95 + scored_by: 250538 + rank: 5402 + popularity: 465 + members: 542143 + favorites: 2047 + synopsis: |- + Shuuichi Kagaya is what one would consider an average high school student, but sometimes, he turns into a monster. He doesn't know how or why he got his abilities, only that he would prefer no one knows about them. One night, he finds a building ablaze with a girl trapped inside. Deciding to save her, he transforms and carries her to safety, but accidentally drops his phone. + + The next day, the girl he saved—Claire Aoki—finds him and confronts him about his monster identity. She even goes so far as to push him off the school roof to prove her theory after Shuuichi denies her allegations. Desperate to save himself, he transforms, and Claire snaps a picture in order to blackmail him into telling her everything he knows about monsters, which, ironically, isn't much. + + As it turns out, Claire has a secret of her own: she has been searching for her sister, who also became a monster. She enlists Shuuichi's help to track her down, but they aren't the only ones searching for answers. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1295 + type: anime + name: PINE JAM + url: https://myanimelist.net/anime/producer/1295/PINE_JAM + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 38555 + url: https://myanimelist.net/anime/38555/Otome_Game_no_Hametsu_Flag_shika_Nai_Akuyaku_Reijou_ni_Tensei_shiteshimatta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1483/107061.jpg + small_image_url: https://myanimelist.net/images/anime/1483/107061t.jpg + large_image_url: https://myanimelist.net/images/anime/1483/107061l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1483/107061.webp + small_image_url: https://myanimelist.net/images/anime/1483/107061t.webp + large_image_url: https://myanimelist.net/images/anime/1483/107061l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RyBy8uvaFAo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... + - type: Synonym + title: Hamefura + - type: Synonym + title: I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags… + - type: Synonym + title: Destruction Flag Otome + - type: Japanese + title: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった… + - type: English + title: 'My Next Life as a Villainess: All Routes Lead to Doom!' + - type: German + title: 'My Next Life as a Villainess: Wie überlebe ich in einem Dating-Game?' + - type: Spanish + title: 'My Next Life as a Villainess: All Routes Lead to Doom!' + - type: French + title: 'My Next Life as a Villainess: All Routes Lead to Doom!' + title: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... + title_english: 'My Next Life as a Villainess: All Routes Lead to Doom!' + title_japanese: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった… + title_synonyms: + - Hamefura + - I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags… + - Destruction Flag Otome + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-05T00:00:00+00:00' + to: '2020-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2020 + to: + day: 21 + month: 6 + year: 2020 + string: Apr 5, 2020 to Jun 21, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 274362 + rank: 2539 + popularity: 507 + members: 511018 + favorites: 3253 + synopsis: |- + Most people would prefer being the protagonist of a world full of adventure, be it in a game or in another world. But, unfortunately, a certain girl is not so lucky. Regaining the memories of her past life, she realizes that she was reborn in the world of Fortune Lover—one of the games she used to play. + + Unfortunately, the character she was reincarnated into—Catarina Claes—is the game's main antagonist, who faces utter doom in every ending. Using her extensive knowledge of the game, she takes it upon herself to escape from the chains of this accursed destiny. + + However, this will not be an easy feat, especially since she needs to be cautious as to not set off death flags that may speed up the impending doom she is trying to avoid. Even so, to make a change that will affect the lives of everyone around her, she strives—not as the heroine—but as the villainess. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 41168 + url: https://myanimelist.net/anime/41168/Nakitai_Watashi_wa_Neko_wo_Kaburu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1045/106389.jpg + small_image_url: https://myanimelist.net/images/anime/1045/106389t.jpg + large_image_url: https://myanimelist.net/images/anime/1045/106389l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1045/106389.webp + small_image_url: https://myanimelist.net/images/anime/1045/106389t.webp + large_image_url: https://myanimelist.net/images/anime/1045/106389l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/irZZkLW1Ygk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nakitai Watashi wa Neko wo Kaburu + - type: Synonym + title: Nakineko + - type: Japanese + title: 泣きたい私は猫をかぶる + - type: English + title: A Whisker Away + - type: German + title: Um ein Schnurrhaar + - type: Spanish + title: Amor de Gata + - type: French + title: Loin de Moi, Près de Toi + title: Nakitai Watashi wa Neko wo Kaburu + title_english: A Whisker Away + title_japanese: 泣きたい私は猫をかぶる + title_synonyms: + - Nakineko + type: ONA + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-06-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 6 + year: 2020 + to: + day: null + month: null + year: null + string: Jun 18, 2020 + duration: 1 hr 44 min + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 300770 + rank: 2947 + popularity: 522 + members: 497737 + favorites: 2096 + synopsis: |- + Miyo Sasaki is an energetic high school girl who comes from a broken family consisting of her unconfident father and an overly invested stepmother, whose attempts at connecting with Miyo come across as bothersome. Seeing Kento Hinode as a refuge from all her personal issues, she cannot help herself from forcing her unorthodox demonstrations of love onto her crush. + + While Miyo is unable to get Kento's attention as herself, she manages to succeed by interacting with him in the form of a white cat, affectionately nicknamed "Tarou" by Kento. But Miyo soon realizes that she cannot help Kento with the various problems she overhears in her cat form and is now caught between two tough choices. Will she continue her relationship with him as a cat, or will she reveal her identity and risk what they have in order to help him as her human self? + + [Written by MAL Rewrite] + background: Winner of the Excellence Award at the 24th Japan Media Arts Festival. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1397 + type: anime + name: Universal Music Japan + url: https://myanimelist.net/anime/producer/1397/Universal_Music_Japan + - mal_id: 1556 + type: anime + name: Fuji Creative + url: https://myanimelist.net/anime/producer/1556/Fuji_Creative + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1697 + type: anime + name: KDDI + url: https://myanimelist.net/anime/producer/1697/KDDI + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + - mal_id: 2131 + type: anime + name: Dentsu Meitetsu Communications + url: https://myanimelist.net/anime/producer/2131/Dentsu_Meitetsu_Communications + licensors: [] + studios: + - mal_id: 1033 + type: anime + name: Studio Colorido + url: https://myanimelist.net/anime/producer/1033/Studio_Colorido + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 41120 + url: https://myanimelist.net/anime/41120/Fugou_Keiji__Balance_Unlimited + images: + jpg: + image_url: https://myanimelist.net/images/anime/1066/106556.jpg + small_image_url: https://myanimelist.net/images/anime/1066/106556t.jpg + large_image_url: https://myanimelist.net/images/anime/1066/106556l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1066/106556.webp + small_image_url: https://myanimelist.net/images/anime/1066/106556t.webp + large_image_url: https://myanimelist.net/images/anime/1066/106556l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Z2GGJHXtOJ8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fugou Keiji: Balance:Unlimited' + - type: Japanese + title: 富豪刑事 Balance:UNLIMITED + - type: English + title: 'The Millionaire Detective – Balance: Unlimited' + title: 'Fugou Keiji: Balance:Unlimited' + title_english: 'The Millionaire Detective – Balance: Unlimited' + title_japanese: 富豪刑事 Balance:UNLIMITED + title_synonyms: [] + type: TV + source: Novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2020-04-10T00:00:00+00:00' + to: '2020-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2020 + to: + day: 25 + month: 9 + year: 2020 + string: Apr 10, 2020 to Sep 25, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 216190 + rank: 2187 + popularity: 554 + members: 472926 + favorites: 3013 + synopsis: |- + Daisuke Kanbe, a man of extraordinary wealth, is assigned to the Modern Crime Prevention Headquarters as a detective. It is there that he gets partnered with Haru Katou, a humane detective who values justice above all. The two are polar opposites, and their morals clash time and time again. Haru despises Daisuke for using monetary wealth to solve cases, as he believes that money is not everything. They will have to combine their efforts, however, to solve the mysteries that are coming their way. + + [Written by MAL Rewrite] + background: Based on Yasutaka Tsutsui's novel, Fugou Keiji. The live action TV drama by Kyouko Fukada aired in 2006 + with two seasons. + season: spring + year: 2020 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: [] + - mal_id: 40060 + url: https://myanimelist.net/anime/40060/BNA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1139/106986.jpg + small_image_url: https://myanimelist.net/images/anime/1139/106986t.jpg + large_image_url: https://myanimelist.net/images/anime/1139/106986l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1139/106986.webp + small_image_url: https://myanimelist.net/images/anime/1139/106986t.webp + large_image_url: https://myanimelist.net/images/anime/1139/106986l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QY2CbUsOgAM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: BNA + - type: Synonym + title: Brand New Animal + - type: Japanese + title: BNA ビー・エヌ・エー + - type: English + title: 'BNA: Brand New Animal' + title: BNA + title_english: 'BNA: Brand New Animal' + title_japanese: BNA ビー・エヌ・エー + title_synonyms: + - Brand New Animal + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-09T00:00:00+00:00' + to: '2020-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2020 + to: + day: 25 + month: 6 + year: 2020 + string: Apr 9, 2020 to Jun 25, 2020 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 222368 + rank: 3028 + popularity: 673 + members: 404281 + favorites: 2870 + synopsis: |- + Throughout history, humans have been at odds with Beastmen—a species capable of changing shape due to their genetic "Beast Factor." Because of this conflict, Beastmen have been forced into hiding. Anima City serves as a safe haven for these oppressed individuals to live free from human interference. + + During a festival celebrating the town's 10th anniversary, Michiru Kagemori, a human who suddenly turned into a tanuki, finds that Anima City is a far cry from paradise. After witnessing an explosion in the square, she is confronted by Shirou Ogami, a seemingly indestructible wolf and sworn protector of all Beastmen. As they pursue the criminals behind the bombing, the two discover that Michiru is anything but an ordinary Beastman, and look to investigate her mysterious past and uncanny abilities. Could she turn out to be the missing link between Humans and Beastmen? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 40716 + url: https://myanimelist.net/anime/40716/Kakushigoto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1048/128385.jpg + small_image_url: https://myanimelist.net/images/anime/1048/128385t.jpg + large_image_url: https://myanimelist.net/images/anime/1048/128385l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1048/128385.webp + small_image_url: https://myanimelist.net/images/anime/1048/128385t.webp + large_image_url: https://myanimelist.net/images/anime/1048/128385l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f8p9_r2w98g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakushigoto + - type: Synonym + title: Hidden Things + - type: Synonym + title: 'Kakushigoto: My Dad''s Secret Ambition' + - type: Japanese + title: かくしごと + - type: English + title: Kakushigoto + title: Kakushigoto + title_english: Kakushigoto + title_japanese: かくしごと + title_synonyms: + - Hidden Things + - 'Kakushigoto: My Dad''s Secret Ambition' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-02T00:00:00+00:00' + to: '2020-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2020 + to: + day: 18 + month: 6 + year: 2020 + string: Apr 2, 2020 to Jun 18, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.97 + scored_by: 149363 + rank: 807 + popularity: 778 + members: 354166 + favorites: 2154 + synopsis: "Kakushi Gotou is a somewhat popular manga artist whose works are known for inappropriate content. Because\ + \ of this raunchiness, when his daughter Hime was born, he vowed to keep his profession hidden from her, believing\ + \ that she will be disillusioned if she finds out. \n\nThis paranoia-induced belief leads Kakushi into hectic situations.\ + \ Despite being a single father, he does his best and often resorts to extreme ends just to protect his secret, such\ + \ as guising as a salaryman every day or holding emergency drills in case Hime somehow finds her way to his workplace.\n\ + \nKakushigoto tells the story of a father and daughter living side by side, maintaining their peaceful existence as\ + \ the father attempts to preserve the status quo. However, there is a saying: \"there are no secrets that time cannot\ + \ reveal.\" In time, Hime must learn the reality behind the things she took for granted as she grew up.\n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: spring + year: 2020 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39710 + url: https://myanimelist.net/anime/39710/Yesterday_wo_Utatte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1553/107721.jpg + small_image_url: https://myanimelist.net/images/anime/1553/107721t.jpg + large_image_url: https://myanimelist.net/images/anime/1553/107721l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1553/107721.webp + small_image_url: https://myanimelist.net/images/anime/1553/107721t.webp + large_image_url: https://myanimelist.net/images/anime/1553/107721l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Acwat8MO51A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yesterday wo Utatte + - type: Japanese + title: イエスタデイをうたって + - type: English + title: Sing "Yesterday" for Me + - type: German + title: Sing "Yesterday" for Me + - type: Spanish + title: Sing "Yesterday" for Me + - type: French + title: Sing "Yesterday" for Me + title: Yesterday wo Utatte + title_english: Sing "Yesterday" for Me + title_japanese: イエスタデイをうたって + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-05T00:00:00+00:00' + to: '2020-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2020 + to: + day: 21 + month: 6 + year: 2020 + string: Apr 5, 2020 to Jun 21, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 152444 + rank: 5895 + popularity: 841 + members: 334474 + favorites: 1392 + synopsis: |- + Rikuo Uozumi has all but resigned himself to a bleak future, aimlessly working at a convenience store in Tokyo after graduating from college. His monotonous life is interrupted when the peculiar Haru Nonaka makes a lively appearance, frequently dropping by his workplace to befriend him. When Rikuo learns that an old college friend and crush, Shinako Morinome, has moved back into town, he reaches out to further their relationship. Unbeknownst to Rikuo however, Shinako is carrying painful memories from her past that were holding her back from accepting his feelings. Meanwhile, as Haru continually opens up to Rikuo, he discovers that she, much like him, is living by herself and wants to step out of her comfort zone into an uncertain future. + + The past lingers long in the mind, and the future remains elusive. At a crossroads along their intertwined paths, these three experience what it means to let go of their feelings of yesterday and embrace the change that tomorrow brings. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1123 + type: anime + name: Lucent Pictures Entertainment + url: https://myanimelist.net/anime/producer/1123/Lucent_Pictures_Entertainment + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1659 + type: anime + name: AbemaTV + url: https://myanimelist.net/anime/producer/1659/AbemaTV + - mal_id: 1673 + type: anime + name: DMM.futureworks + url: https://myanimelist.net/anime/producer/1673/DMMfutureworks + licensors: + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 39292 + url: https://myanimelist.net/anime/39292/Princess_Connect_Re_Dive + images: + jpg: + image_url: https://myanimelist.net/images/anime/1810/106070.jpg + small_image_url: https://myanimelist.net/images/anime/1810/106070t.jpg + large_image_url: https://myanimelist.net/images/anime/1810/106070l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1810/106070.webp + small_image_url: https://myanimelist.net/images/anime/1810/106070t.webp + large_image_url: https://myanimelist.net/images/anime/1810/106070l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5NltMe8vX1o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Princess Connect! Re:Dive + - type: Synonym + title: Priconne + - type: Japanese + title: プリンセスコネクト!Re:Dive + - type: German + title: 'Princess Connect! Re: Dive' + - type: Spanish + title: 'Princess Connect! Re: Dive' + title: Princess Connect! Re:Dive + title_english: null + title_japanese: プリンセスコネクト!Re:Dive + title_synonyms: + - Priconne + type: TV + source: Game + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-04-07T00:00:00+00:00' + to: '2020-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2020 + to: + day: 30 + month: 6 + year: 2020 + string: Apr 7, 2020 to Jun 30, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.04 + scored_by: 133918 + rank: 4923 + popularity: 890 + members: 318115 + favorites: 1079 + synopsis: |- + In the continent of Astraea, a man falls from the sky, possessing no memories other than his name, Yuuki. An elf named Kokkoro finds him, introducing herself as his guide in the world they are about to traverse. With Kokkoro's guidance, Yuuki is able to learn how this world works, from battling monsters to handling currency. + + To earn money for their journey, Yuuki and Kokkoro decide to go to a nearby guild association to accept a simple quest. In their expedition, they meet Pecorine, a somewhat gluttonous but charming girl skilled in battle. The next day, they also meet Karyl, a cat girl specializing in magic. + + After some time, a bond of friendship and camaraderie forms between them, and the four decide to create a guild of their own. As they continue their adventures, they explore the world, meet new people, and will perhaps uncover the mysteries behind Yuuki's missing memories. + + [Written by MAL Rewrite] + background: Based on the main story of Cygames' RPG of the same title. + season: spring + year: 2020 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: [] + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 38830 + url: https://myanimelist.net/anime/38830/Hachi-nan_tte_Sore_wa_Nai_deshou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1834/110718.jpg + small_image_url: https://myanimelist.net/images/anime/1834/110718t.jpg + large_image_url: https://myanimelist.net/images/anime/1834/110718l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1834/110718.webp + small_image_url: https://myanimelist.net/images/anime/1834/110718t.webp + large_image_url: https://myanimelist.net/images/anime/1834/110718l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kgVuHgMMZKQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hachi-nan tte, Sore wa Nai deshou! + - type: Synonym + title: Hachinan tte + - type: Synonym + title: Sore wa Nai deshou! + - type: Japanese + title: 八男って、それはないでしょう! + - type: English + title: The 8th Son? Are You Kidding Me? + - type: German + title: The 8th Son? Are You Kidding Me? + - type: Spanish + title: The 8th Son? Are You Kidding Me? + - type: French + title: The 8th Son? Are You Kidding Me? + title: Hachi-nan tte, Sore wa Nai deshou! + title_english: The 8th Son? Are You Kidding Me? + title_japanese: 八男って、それはないでしょう! + title_synonyms: + - Hachinan tte + - Sore wa Nai deshou! + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-02T00:00:00+00:00' + to: '2020-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2020 + to: + day: 18 + month: 6 + year: 2020 + string: Apr 2, 2020 to Jun 18, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.28 + scored_by: 147041 + rank: 9465 + popularity: 1022 + members: 275883 + favorites: 541 + synopsis: |- + Waking up in a new world, 25-year-old Shingo Ichinomiya realizes that he is in the body of a six-year-old. Retaining memories of his stressful life working at a firm company, Shingo learns that the person he is occupying is Wendelin Von Benno Baumeister, the eighth son of a poor noble family living in the countryside. Awoken to his bizarre situation, Wendelin strives to change his financial and social status for the better. His newly discovered great magical aptitude may prove to be just what he needs to achieve that goal. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 40815 + url: https://myanimelist.net/anime/40815/Honzuki_no_Gekokujou__Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1464/107998.jpg + small_image_url: https://myanimelist.net/images/anime/1464/107998t.jpg + large_image_url: https://myanimelist.net/images/anime/1464/107998l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1464/107998.webp + small_image_url: https://myanimelist.net/images/anime/1464/107998t.webp + large_image_url: https://myanimelist.net/images/anime/1464/107998l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bD53ze25S_E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season' + - type: Synonym + title: Ascendance of a Bookworm 2nd Season + - type: Japanese + title: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期 + - type: English + title: Ascendance of a Bookworm Season 2 + - type: German + title: Ascendance of a Bookworm Staffel 2 + - type: Spanish + title: Ascendance of a Bookworm Temporada 2 + - type: French + title: Ascendance of a Bookworm Saison 2 + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 2nd Season' + title_english: Ascendance of a Bookworm Season 2 + title_japanese: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第2期 + title_synonyms: + - Ascendance of a Bookworm 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-05T00:00:00+00:00' + to: '2020-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2020 + to: + day: 21 + month: 6 + year: 2020 + string: Apr 5, 2020 to Jun 21, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.08 + scored_by: 150561 + rank: 626 + popularity: 1097 + members: 256706 + favorites: 883 + synopsis: |- + When Myne learns that the Holy Church is in need of mana for their relics, she sees it as her chance to be cured of her life-threatening mana disorder. After seeing their bountiful library, she throws herself headfirst into the Church's grasp and begs to join their order. In exchange for her service and her unusually bountiful supply of mana, Myne is given the blue robes of a noble-born apprentice priestess, despite being a commoner. To Myne, all this talk of mana and nobility is trivial, as she now has access to an unlimited supply of books! + + As Myne transitions into the next phase of her life in this new world, she soon learns that achieving her dream has come at a heavy cost. Noble society is severe, unforgiving, and fueled by politics and neglect. She must now deal with the class conflict between the noble-born blue robes and the common-born grey robes, the High Priest's attempts to oust her, and constant behavioral issues from her new retainers. With the help of her family, friends, and the enigmatic Head Priest whose loyalties and motives remain unknown, Myne seeks to overcome these obstacles and continue on the path to becoming her ideal self—the ultimate librarian! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Sundays + time: 02:10 + timezone: Asia/Tokyo + string: Sundays at 02:10 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1933 + type: anime + name: Happinet + url: https://myanimelist.net/anime/producer/1933/Happinet + - mal_id: 1987 + type: anime + name: Tokyo Animator Gakuin + url: https://myanimelist.net/anime/producer/1987/Tokyo_Animator_Gakuin + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 1989 + type: anime + name: JTB Next Creation + url: https://myanimelist.net/anime/producer/1989/JTB_Next_Creation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 39555 + url: https://myanimelist.net/anime/39555/Baki__Dai_Raitaisai-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1924/109353.jpg + small_image_url: https://myanimelist.net/images/anime/1924/109353t.jpg + large_image_url: https://myanimelist.net/images/anime/1924/109353l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1924/109353.webp + small_image_url: https://myanimelist.net/images/anime/1924/109353t.webp + large_image_url: https://myanimelist.net/images/anime/1924/109353l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SIZjS5cVkbs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Baki: Dai Raitaisai-hen' + - type: Synonym + title: Baki (2020) + - type: Japanese + title: バキ + - type: English + title: 'Baki: The Great Raitai Tournament Saga' + - type: German + title: 'Baki: Die Saga vom Raitai-Turnier' + - type: Spanish + title: 'Baki: Saga del Gran Torneo Raitai' + title: 'Baki: Dai Raitaisai-hen' + title_english: 'Baki: The Great Raitai Tournament Saga' + title_japanese: バキ + title_synonyms: + - Baki (2020) + type: ONA + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-06-04T00:00:00+00:00' + to: null + prop: + from: + day: 4 + month: 6 + year: 2020 + to: + day: null + month: null + year: null + string: Jun 4, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.53 + scored_by: 145575 + rank: 2091 + popularity: 1183 + members: 239804 + favorites: 557 + synopsis: "Weakened by the poison from his last battle, Baki Hanma finds himself on the verge of death with no salvation\ + \ in sight. However, after Baki's friend, Retsu Kaiou, brings him to China, he learns about the centurial Raitai Tournament,\ + \ where the fiercest warriors fight to be crowned as the strongest martial artist in all of China. \n\nAs it is now\ + \ allowing entry to foreigners, Baki is informed that he will have to compete in the tournament as it holds the cure\ + \ to his illness. Unfortunately, Baki's father, deemed the \"Strongest Creature on Earth,\" is participating too.\ + \ Baki 2nd Season details the events of the grand Chinese tournament, as well as Baki's encounter with the eccentric\ + \ yet powerful Mohammad Alai Jr.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40128 + url: https://myanimelist.net/anime/40128/Arte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1284/106945.jpg + small_image_url: https://myanimelist.net/images/anime/1284/106945t.jpg + large_image_url: https://myanimelist.net/images/anime/1284/106945l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1284/106945.webp + small_image_url: https://myanimelist.net/images/anime/1284/106945t.webp + large_image_url: https://myanimelist.net/images/anime/1284/106945l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t3Kcgkj2G_M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arte + - type: Japanese + title: アルテ + - type: English + title: Arte + title: Arte + title_english: Arte + title_japanese: アルテ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-04T00:00:00+00:00' + to: '2020-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2020 + to: + day: 20 + month: 6 + year: 2020 + string: Apr 4, 2020 to Jun 20, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.21 + scored_by: 62846 + rank: 3864 + popularity: 1829 + members: 145092 + favorites: 403 + synopsis: |- + In the 16th century, the city of Florence booms with cultural and creative revival in celebration of the Renaissance. Arte, a delightful young lady from an aristocratic family, dreams of being an artist and contributing to the renewal of civilization. However, with her father's death, she ends up losing the only person who believed in her passion for art. Now she is expected to marry a nobleman and live as a refined housewife without disgracing her family name. Reluctant to accept her fate, the headstrong Arte steps into the streets in search of a master artisan to take her on as an apprentice. + + In her quest for a mentor, Arte has to face harsh reality when she is completely shunned for being a female artist. No one believes that women are capable of fine craftsmanship, and therefore none are willing to accept her. Luckily, a renowned artisan by the name of Leo is persuaded to take her as his disciple since he has none anyway. And thus, Arte's new life begins, far from the comfort of her noble upbringing. As an apprentice, she must earn her keep while tackling various challenges along the difficult path to becoming a full-fledged, master artisan. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1534 + type: anime + name: North Stars Pictures + url: https://myanimelist.net/anime/producer/1534/North_Stars_Pictures + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40532 + url: https://myanimelist.net/anime/40532/Appare-Ranman + images: + jpg: + image_url: https://myanimelist.net/images/anime/1087/111636.jpg + small_image_url: https://myanimelist.net/images/anime/1087/111636t.jpg + large_image_url: https://myanimelist.net/images/anime/1087/111636l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1087/111636.webp + small_image_url: https://myanimelist.net/images/anime/1087/111636t.webp + large_image_url: https://myanimelist.net/images/anime/1087/111636l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vUAgKm8LBE4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Appare-Ranman! + - type: Synonym + title: Appare Ranman! + - type: Japanese + title: 天晴爛漫! + - type: English + title: Appare-Ranman! + title: Appare-Ranman! + title_english: Appare-Ranman! + title_japanese: 天晴爛漫! + title_synonyms: + - Appare Ranman! + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-04-10T00:00:00+00:00' + to: '2020-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2020 + to: + day: 25 + month: 9 + year: 2020 + string: Apr 10, 2020 to Sep 25, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 53911 + rank: 3601 + popularity: 1851 + members: 142448 + favorites: 529 + synopsis: |- + No dream is too big for Appare Sorrano, a socially-awkward inventor living in a small rural town in Japan in the late 19th century. Fascinated since childhood by the creation of steamships that can connect people across great distances, he's learned to make machines of all kinds from various scientific texts. His goal is to sail across the sea, beyond the sky, and ultimately, to the other side of the moon. + + Unfortunately, through a string of events, Appare finds himself stranded in the middle of the sea on his mini steamship. Floating alongside him is a skilled but cowardly samurai, Kosame Ishikki, who was tasked to keep his eccentric behavior in check. Just when all hope seems lost, a large steamship saves them and takes them to Los Angeles. With no money or plans, they decide to participate in the "Trans-America Wild Race," which gives Appare the chance to build his own automobile, and Kosame the opportunity to use the cash prize to return home. However, against rival racers and unknown challenges residing in the wilderness, just how far will this adventure take Appare and Kosame? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1869 + type: anime + name: Bit Promotion + url: https://myanimelist.net/anime/producer/1869/Bit_Promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: [] + - mal_id: 40682 + url: https://myanimelist.net/anime/40682/Kingdom_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1443/111830.jpg + small_image_url: https://myanimelist.net/images/anime/1443/111830t.jpg + large_image_url: https://myanimelist.net/images/anime/1443/111830l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1443/111830.webp + small_image_url: https://myanimelist.net/images/anime/1443/111830t.webp + large_image_url: https://myanimelist.net/images/anime/1443/111830l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CasaH4vvYEw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kingdom 3rd Season + - type: Japanese + title: キングダム 第3シリーズ + - type: English + title: Kingdom Season 3 + title: Kingdom 3rd Season + title_english: Kingdom Season 3 + title_japanese: キングダム 第3シリーズ + title_synonyms: [] + type: TV + source: Manga + episodes: 26 + status: Finished Airing + airing: false + aired: + from: '2020-04-06T00:00:00+00:00' + to: '2021-10-17T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2020 + to: + day: 17 + month: 10 + year: 2021 + string: Apr 6, 2020 to Oct 17, 2021 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.85 + scored_by: 55686 + rank: 31 + popularity: 1951 + members: 134151 + favorites: 2807 + synopsis: |- + Following the successful Sanyou campaign, the Qin army, including 1,000-Man Commander Xin, inches ever closer to fulfilling King Ying Zheng's dream of unifying China. With a major geographical foothold in the state of Wei now under its control, Qin sets its sights eastward toward the remaining warring states. + + Meanwhile Li Mu—an unparalleled strategist and the newly appointed prime minister of the state of Zhao—has taken advantage of Zhao's temporary truce with Qin to negotiate with the other states without interruption. Seemingly without warning, Ying Zheng receives news that armies from the states of Chu, Zhao, Wei, Han, Yan, and Qi have crossed into Qin territory. Realizing too late the purpose behind Li Mu's truce with Qin, Zheng quickly gathers his advisors to devise a plan to address the six-state coalition army on their doorstep. For the first time in history, the state of Qin faces complete destruction and must use every resource and strategy at their disposal to prevent themselves from being wiped off the map. + + [Written by MAL Rewrite] + background: Kingdom 3rd Season adapts chapters 261-364 of the original manga. + season: spring + year: 2020 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 1998 + type: anime + name: Studio Signpost + url: https://myanimelist.net/anime/producer/1998/Studio_Signpost + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 39469 + url: https://myanimelist.net/anime/39469/Tsugu_Tsugumomo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1997/106184.jpg + small_image_url: https://myanimelist.net/images/anime/1997/106184t.jpg + large_image_url: https://myanimelist.net/images/anime/1997/106184l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1997/106184.webp + small_image_url: https://myanimelist.net/images/anime/1997/106184t.webp + large_image_url: https://myanimelist.net/images/anime/1997/106184l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9fltzagl8CE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsugu Tsugumomo + - type: Japanese + title: 継つぐもも + - type: German + title: Tsugumomo 2 + - type: Spanish + title: Tsugumomo 2 + - type: French + title: Tsugumomo 2 + title: Tsugu Tsugumomo + title_english: null + title_japanese: 継つぐもも + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-05T00:00:00+00:00' + to: '2020-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2020 + to: + day: 21 + month: 6 + year: 2020 + string: Apr 5, 2020 to Jun 21, 2020 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 7.41 + scored_by: 45611 + rank: 2707 + popularity: 2041 + members: 125668 + favorites: 382 + synopsis: |- + When "ordinary boy" Kagami Kazuya meets the beautiful tsukumogami Kiriha, his life gets turned upside-down. As a "Taboo Child" who draws the supernatural towards him, he receives orders from the God of the Land, Kukuri, to become an exorcist and defeat these evil forces. And so, he and Kiriha do battle. + + To find out information on these supernatural beings, Kazuya and his friends set up a counselor's club at school. But behind the typical-seeming troubles he hears about, he uncovers a major plot to target Kukuri... + + In addition to the sadistic-yet-beautiful tsukumogami Kiriha, the situation draws other girls to Kazuya to join the fray! + + (Source: Crunchyroll) + background: '' + season: spring + year: 2020 + broadcast: + day: Sundays + time: '21:30' + timezone: Asia/Tokyo + string: Sundays at 21:30 (JST) + producers: + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 38843 + url: https://myanimelist.net/anime/38843/Shironeko_Project__Zero_Chronicle + images: + jpg: + image_url: https://myanimelist.net/images/anime/1072/111360.jpg + small_image_url: https://myanimelist.net/images/anime/1072/111360t.jpg + large_image_url: https://myanimelist.net/images/anime/1072/111360l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1072/111360.webp + small_image_url: https://myanimelist.net/images/anime/1072/111360t.webp + large_image_url: https://myanimelist.net/images/anime/1072/111360l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/16HJFVZVVDk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shironeko Project: Zero Chronicle' + - type: Synonym + title: White Cat Project + - type: Synonym + title: Rune Story + - type: Japanese + title: 白猫プロジェクトZERO CHRONICLE + - type: English + title: Shironeko Project ZERO CHRONICLE + title: 'Shironeko Project: Zero Chronicle' + title_english: Shironeko Project ZERO CHRONICLE + title_japanese: 白猫プロジェクトZERO CHRONICLE + title_synonyms: + - White Cat Project + - Rune Story + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-06T00:00:00+00:00' + to: '2020-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2020 + to: + day: 22 + month: 6 + year: 2020 + string: Apr 6, 2020 to Jun 22, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.42 + scored_by: 46019 + rank: 13484 + popularity: 2230 + members: 110829 + favorites: 215 + synopsis: |- + The world is divided into two kingdoms: the Kingdom of White, which floats in the heavens and is ruled by their queen Iris, and the Kingdom of Black, which stands upon desolate land below and houses the King of Darkness as its ruler. As of late, forces of evil have amassed great power, posing a threat to the entire world. Being the main representative of the Light, it is Iris' duty to maintain the balance of the world and fight off the darkness in her kingdom. + + Meanwhile in the Kingdom of Black, rampaging monsters annihilate a certain boy's village, leaving him the sole survivor. As he grieves in hopelessness, an armored man named Skeer notices the child and comforts him. Soon after, Skeer recognizes the boy's potential to change the kingdom's status quo and makes him his heir before passing away. The boy then vows to become the Prince of Darkness—the one who will replace the King—to bring the world back to its rightful path. + + As Iris and Prince of Darkness each challenge the impending doom the world faces in their own respective ways, their destinies will converge with each other, and perhaps, their bond will decide the fate of the world. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1613 + type: anime + name: COLOPL + url: https://myanimelist.net/anime/producer/1613/COLOPL + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40485 + url: https://myanimelist.net/anime/40485/Strike_the_Blood_IV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1692/116875.jpg + small_image_url: https://myanimelist.net/images/anime/1692/116875t.jpg + large_image_url: https://myanimelist.net/images/anime/1692/116875l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1692/116875.webp + small_image_url: https://myanimelist.net/images/anime/1692/116875t.webp + large_image_url: https://myanimelist.net/images/anime/1692/116875l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oGP74AGPlNQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Strike the Blood IV + - type: Synonym + title: Strike the Blood Fourth + - type: Japanese + title: ストライク・ザ・ブラッド IV + title: Strike the Blood IV + title_english: null + title_japanese: ストライク・ザ・ブラッド IV + title_synonyms: + - Strike the Blood Fourth + type: OVA + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-08T00:00:00+00:00' + to: '2021-06-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2020 + to: + day: 30 + month: 6 + year: 2021 + string: Apr 8, 2020 to Jun 30, 2021 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 6.97 + scored_by: 30174 + rank: 5304 + popularity: 2454 + members: 96115 + favorites: 183 + synopsis: Fourth season of Strike the Blood. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 40513 + url: https://myanimelist.net/anime/40513/Nami_yo_Kiitekure + images: + jpg: + image_url: https://myanimelist.net/images/anime/1913/112190.jpg + small_image_url: https://myanimelist.net/images/anime/1913/112190t.jpg + large_image_url: https://myanimelist.net/images/anime/1913/112190l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1913/112190.webp + small_image_url: https://myanimelist.net/images/anime/1913/112190t.webp + large_image_url: https://myanimelist.net/images/anime/1913/112190l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qV1Uyn9rDEA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nami yo Kiitekure + - type: Synonym + title: Nami yo Kiite Kure + - type: Japanese + title: 波よ聞いてくれ + - type: English + title: Wave, Listen to Me! + title: Nami yo Kiitekure + title_english: Wave, Listen to Me! + title_japanese: 波よ聞いてくれ + title_synonyms: + - Nami yo Kiite Kure + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-04T00:00:00+00:00' + to: '2020-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2020 + to: + day: 20 + month: 6 + year: 2020 + string: Apr 4, 2020 to Jun 20, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.35 + scored_by: 33060 + rank: 2998 + popularity: 2499 + members: 93681 + favorites: 215 + synopsis: |- + Restaurant worker Minare Koda has recently been through a bad breakup. Heartbroken and drunk after a night out, she rants about her misery to a complete stranger—Kanetsugu Matou, a radio station director local to Sapporo, Hokkaido. + + The next day at work, Minare is shocked to hear a recording of herself from the previous night playing over the radio. Flustered, she rushes to the radio station in a frenzy to stop the broadcast. As she confronts Matou, a chain of events leads to her giving an impromptu talk live on air, explaining her savage drunken speech. With her energetic voice, she delivers a smooth dialogue with no hesitation, which Matou recognizes as raw talent. + + Minare soon becomes a late-night talk show host under Matou's direction, covering amusing narratives set in Sapporo, all while balancing her day job and personal life to make ends meet. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2020 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 39730 + url: https://myanimelist.net/anime/39730/Houkago_Teibou_Nisshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1216/111637.jpg + small_image_url: https://myanimelist.net/images/anime/1216/111637t.jpg + large_image_url: https://myanimelist.net/images/anime/1216/111637l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1216/111637.webp + small_image_url: https://myanimelist.net/images/anime/1216/111637t.webp + large_image_url: https://myanimelist.net/images/anime/1216/111637l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PAvLwvItvts?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Houkago Teibou Nisshi + - type: Synonym + title: Hokago Teibo Nisshi + - type: Synonym + title: Afterschool Embankment Journal + - type: Japanese + title: 放課後ていぼう日誌 + - type: English + title: Diary of Our Days at the Breakwater + title: Houkago Teibou Nisshi + title_english: Diary of Our Days at the Breakwater + title_japanese: 放課後ていぼう日誌 + title_synonyms: + - Hokago Teibo Nisshi + - Afterschool Embankment Journal + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-07T00:00:00+00:00' + to: '2020-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2020 + to: + day: 22 + month: 9 + year: 2020 + string: Apr 7, 2020 to Sep 22, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.48 + scored_by: 30497 + rank: 2322 + popularity: 2910 + members: 73065 + favorites: 360 + synopsis: |- + Hina Tsurugi and her family have just moved to a quaint seaside town. Hoping to savor the sight of the peaceful ocean, Hina stumbles upon a girl named Yuuki Kuroiwa—an upperclassman at her new school—who invites Hina to join her in fishing. Hina reels in an octopus, which falls onto her; being afraid of bugs and big creatures, she panics and begs Yuuki to remove it from her. Yuuki sees this as an opportunity to force Hina to join the school's Breakwater Club—a club where members gather, catch, and eat various types of marine life as their main activity. + + Although her attempts to refuse to join fail, Hina slowly begins to discover the hidden joy in fishing. Her view on the sport changes, now looking forward to all the delightful experiences she can take part in alongside her fellow club members. + + [Written by MAL Rewrite] + background: The series went on a temporary hiatus following the broadcast of its third episode on April 21, 2020. The + series will resume broadcasting from its first episode on July 7, with the unaired fourth episode scheduled for July + 28. + season: spring + year: 2020 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1908 + type: anime + name: Legs + url: https://myanimelist.net/anime/producer/1908/Legs + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40165 + url: https://myanimelist.net/anime/40165/Listeners + images: + jpg: + image_url: https://myanimelist.net/images/anime/1589/106391.jpg + small_image_url: https://myanimelist.net/images/anime/1589/106391t.jpg + large_image_url: https://myanimelist.net/images/anime/1589/106391l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1589/106391.webp + small_image_url: https://myanimelist.net/images/anime/1589/106391t.webp + large_image_url: https://myanimelist.net/images/anime/1589/106391l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/M9dINy-ZDlQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Listeners + - type: Japanese + title: LISTENERS リスナーズ + - type: English + title: Listeners + title: Listeners + title_english: Listeners + title_japanese: LISTENERS リスナーズ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-04-04T00:00:00+00:00' + to: '2020-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2020 + to: + day: 20 + month: 6 + year: 2020 + string: Apr 4, 2020 to Jun 20, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 5.44 + scored_by: 22935 + rank: 13412 + popularity: 3055 + members: 67461 + favorites: 59 + synopsis: |- + Set in a world where the concept of music ceases to exist. The story begins when a boy encounters Myuu, a mysterious girl who possesses an audio input jack in her body. The two intermingle with the history of rock music and embark on an unforgettable journey. + + (Source: MAL News) + background: '' + season: spring + year: 2020 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 735 + type: anime + name: Slow Curve + url: https://myanimelist.net/anime/producer/735/Slow_Curve + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 41053 + url: https://myanimelist.net/anime/41053/Dorohedoro__Ma_no_Omake + images: + jpg: + image_url: https://myanimelist.net/images/anime/1611/105459.jpg + small_image_url: https://myanimelist.net/images/anime/1611/105459t.jpg + large_image_url: https://myanimelist.net/images/anime/1611/105459l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1611/105459.webp + small_image_url: https://myanimelist.net/images/anime/1611/105459t.webp + large_image_url: https://myanimelist.net/images/anime/1611/105459l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OHQvpEQoY_s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dorohedoro: Ma no Omake' + - type: Synonym + title: Dorohedoro OVA + - type: Japanese + title: ドロヘドロ 魔のおまけ + - type: English + title: 'Dorohedoro: Bonus Curse or Extra Evil' + title: 'Dorohedoro: Ma no Omake' + title_english: 'Dorohedoro: Bonus Curse or Extra Evil' + title_japanese: ドロヘドロ 魔のおまけ + title_synonyms: + - Dorohedoro OVA + type: Special + source: Manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2020-06-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 6 + year: 2020 + to: + day: null + month: null + year: null + string: Jun 17, 2020 + duration: 4 min per ep + rating: R+ - Mild Nudity + score: 7.11 + scored_by: 33041 + rank: 4505 + popularity: 3178 + members: 62987 + favorites: 100 + synopsis: "Dorohedoro: Ma no Omake further explores the world of sorcerers and the Hole, honing in on what the characters\ + \ do in their spare time when they are not seeking out their enemies. \n\nKamen Kakusa\nFujita attends a mask conjuring\ + \ ritual in hopes of a Devil bestowing him with an appropriate mask, like the ones his colleagues Noi and Shin possess.\ + \ Hopefully his offering entices the mask-maker! \n\nTenpo For You\nNikaidou, lacking money and forced to sell gyoza\ + \ on the streets of the Hole, stumbles upon a quaint shop selling tea and sweets. Its owner is the gentle and hospitable\ + \ Syueron, but it seems the denizens of the Hole bear a grudge against him.\n\nShitappa Seishun Graffiti\nIntrigued\ + \ by the photographs hanging around the mansion, Ebisu approaches En hoping for a portrait of her own. However, she\ + \ is disappointed to find that only members of the En Family can have their pictures taken. \n\nAnata no Shiranai\ + \ Gyoza no Kai\nThe Gyoza Fairy keeps the Hungry Bug in pristine condition, but his primary responsibility is ensuring\ + \ the gyoza tastes good. So he becomes rather agitated when Nikaidou's customers do not properly enjoy their meals.\n\ + \nOdoru Ma no Utage\nEn is enthusiastic about his masquerade ball and is adamant on his family's participation. Per\ + \ tradition, attendees must choose a partner and dance to appease the Devils. To their horror, they discover that\ + \ failing to do so may incur nasty consequences!\n\nYokaze ni Fukarete Ooba Kinenbi\nNikaidou gives detailed instructions\ + \ on preparing oba gyoza and Kaiman is eager to help!\n\n[Written by MAL Rewrite]" + background: 'Dorohedoro: Ma no Omake, also known as Dorohedoro: Bonus Curse or Extra Evil in English, is a special edition + OVA series consisting of six mini-episodes. It is bundled with the second Blu-ray Box release of Dorohedoro, along + with other limited edition merchandise.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/43-2020-summer.yaml b/test/fixtures/jikan/season_matrix/43-2020-summer.yaml new file mode 100644 index 0000000..be7d655 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/43-2020-summer.yaml @@ -0,0 +1,3320 @@ +metadata: + captured_at: '2026-05-11T11:34:19Z' + label: 2020-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2020/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:18 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:bb6c8c22c9e1515626c2ad2cf14899eced761a83 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 280 + per_page: 25 + data: + - mal_id: 39587 + url: https://myanimelist.net/anime/39587/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/108005.jpg + small_image_url: https://myanimelist.net/images/anime/1444/108005t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/108005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/108005.webp + small_image_url: https://myanimelist.net/images/anime/1444/108005t.webp + large_image_url: https://myanimelist.net/images/anime/1444/108005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/41Gj4Dri8wo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season + - type: Synonym + title: 'Re: Life in a different world from zero 2nd Season' + - type: Synonym + title: ReZero 2nd Season + - type: Synonym + title: Re:Zero - Starting Life in Another World 2 + - type: Japanese + title: Re:ゼロから始める異世界生活 2 + - type: English + title: Re:ZERO -Starting Life in Another World- Season 2 + title: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season + title_english: Re:ZERO -Starting Life in Another World- Season 2 + title_japanese: Re:ゼロから始める異世界生活 2 + title_synonyms: + - 'Re: Life in a different world from zero 2nd Season' + - ReZero 2nd Season + - Re:Zero - Starting Life in Another World 2 + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-07-08T00:00:00+00:00' + to: '2020-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2020 + to: + day: 30 + month: 9 + year: 2020 + string: Jul 8, 2020 to Sep 30, 2020 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.33 + scored_by: 758226 + rank: 298 + popularity: 124 + members: 1282375 + favorites: 12523 + synopsis: |- + A reunion that was supposed to spell the arrival of peaceful times is quickly shattered when Subaru Natsuki and Emilia return to Irlam village. Witnessing the devastation left behind by the calamities known as Sin Archbishops, Subaru sinks into the depths of despair as his ability to redo proves futile. + + As the group makes their way to the Sanctuary in search of answers, Subaru has an unexpected encounter with the Witch of Greed—Echidna. Subjected to her untamed rhythm, he is forced to dive into the spirals of the past and future. At the same time, several mysterious threats set their sights on the Sanctuary, heralding a horrific fate for the hapless people trapped within. + + Everlasting contracts, past sins, and unrequited love will clash and submerge into a river of blood in the second season of Re:Zero kara Hajimeru Isekai Seikatsu. Pushed to the brink of hopelessness, how long will Subaru's resolve to save his loved ones last? + + [Written by MAL Rewrite] + background: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season adapts the 9th to 12th volumes and the first chapter of + volume 13 of Tappei Nagatsuki's light novel series of the same title. + season: summer + year: 2020 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 40839 + url: https://myanimelist.net/anime/40839/Kanojo_Okarishimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1902/128382.jpg + small_image_url: https://myanimelist.net/images/anime/1902/128382t.jpg + large_image_url: https://myanimelist.net/images/anime/1902/128382l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1902/128382.webp + small_image_url: https://myanimelist.net/images/anime/1902/128382t.webp + large_image_url: https://myanimelist.net/images/anime/1902/128382l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uIfxrlJg0Jw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo, Okarishimasu + - type: Synonym + title: I'd like to Borrow a Girlfriend + - type: Synonym + title: Kanokari + - type: Japanese + title: 彼女、お借りします + - type: English + title: Rent-a-Girlfriend + - type: German + title: Rent-a-Girlfriend + - type: Spanish + title: Rent-a-Girlfriend + - type: French + title: Rent-a-Girlfriend + title: Kanojo, Okarishimasu + title_english: Rent-a-Girlfriend + title_japanese: 彼女、お借りします + title_synonyms: + - I'd like to Borrow a Girlfriend + - Kanokari + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-11T00:00:00+00:00' + to: '2020-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2020 + to: + day: 26 + month: 9 + year: 2020 + string: Jul 11, 2020 to Sep 26, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.84 + scored_by: 690858 + rank: 6033 + popularity: 168 + members: 1089635 + favorites: 8262 + synopsis: |- + Kazuya Kinoshita is a 20-year-old college student who has a wonderful girlfriend: the bright and sunny Mami Nanami. But suddenly, he does not. Without warning, Mami breaks up with him, leaving him utterly heartbroken and lonely. Seeking to soothe the pain, he hires a rental girlfriend through an online app. His partner is Chizuru Mizuhara, who through her unparalleled beauty and cute demeanor, manages to gain Kazuya's affection. + + But after reading similar experiences other customers had had with Chizuru, Kazuya believes her warm smile and caring personality were all just an act to toy with his heart, and he rates her poorly. Aggravated, Chizuru lambastes him for his shameless hypocrisy, revealing her true pert and hot-tempered self. This one-sided exchange is cut short, however, when Kazuya finds out that his grandmother has collapsed. + + They dash toward the hospital and find Kazuya's grandmother already in good condition. Baffled by Chizuru's presence, she asks who this girl might be. On impulse, Kazuya promptly declares that they are lovers, forcing Chizuru to play the part. But with Kazuya still hung up on his previous relationship with Mami, how long can this difficult client and reluctant rental girlfriend keep up their act? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41353 + url: https://myanimelist.net/anime/41353/The_God_of_High_School + images: + jpg: + image_url: https://myanimelist.net/images/anime/1722/107269.jpg + small_image_url: https://myanimelist.net/images/anime/1722/107269t.jpg + large_image_url: https://myanimelist.net/images/anime/1722/107269l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1722/107269.webp + small_image_url: https://myanimelist.net/images/anime/1722/107269t.webp + large_image_url: https://myanimelist.net/images/anime/1722/107269l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oqjwUfprNAk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: The God of High School + - type: Synonym + title: Gat Obeu Hai Seukul + - type: Synonym + title: 갓 오브 하이스쿨 + - type: Synonym + title: GOHS + - type: Japanese + title: THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール + - type: English + title: The God of High School + - type: German + title: The God Of High School + title: The God of High School + title_english: The God of High School + title_japanese: THE GOD OF HIGH SCHOOL ゴッド・オブ・ハイスクール + title_synonyms: + - Gat Obeu Hai Seukul + - 갓 오브 하이스쿨 + - GOHS + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-07-06T00:00:00+00:00' + to: '2020-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2020 + to: + day: 28 + month: 9 + year: 2020 + string: Jul 6, 2020 to Sep 28, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 564160 + rank: 4777 + popularity: 191 + members: 1002217 + favorites: 4280 + synopsis: |- + The "God of High School" tournament has begun, seeking out the greatest fighter among Korean high school students! All martial arts styles, weapons, means, and methods of attaining victory are permitted. The prize? One wish for anything desired by the winner. + + Taekwondo expert Jin Mo-Ri is invited to participate in the competition. There he befriends karate specialist Han Dae-Wi and swordswoman Yu Mi-Ra, who both have entered for their own personal reasons. Mo-Ri knows that no opponent will be the same and that the matches will be the most ruthless he has ever fought in his life. But instead of being worried, this prospect excites him beyond belief. + + A secret lies beneath the facade of a transparent test of combat prowess the tournament claims to be—one that has Korean political candidate Park Mu-Jin watching every fight with expectant, hungry eyes. Mo-Ri, Dae-Wi, and Mi-Ra are about to discover what it really means to become the God of High School. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + - mal_id: 2044 + type: anime + name: Naver Webtoons + url: https://myanimelist.net/anime/producer/2044/Naver_Webtoons + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 40956 + url: https://myanimelist.net/anime/40956/Enen_no_Shouboutai__Ni_no_Shou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1673/107657.jpg + small_image_url: https://myanimelist.net/images/anime/1673/107657t.jpg + large_image_url: https://myanimelist.net/images/anime/1673/107657l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1673/107657.webp + small_image_url: https://myanimelist.net/images/anime/1673/107657t.webp + large_image_url: https://myanimelist.net/images/anime/1673/107657l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NpDvoopi0AE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Enen no Shouboutai: Ni no Shou' + - type: Synonym + title: Enen no Shouboutai 2nd Season + - type: Synonym + title: Fire Force 2nd Season + - type: Japanese + title: 炎炎ノ消防隊 弐ノ章 + - type: English + title: Fire Force Season 2 + - type: German + title: Fire Force Staffel 2 + - type: Spanish + title: Fire Force Temporada 2 + - type: French + title: Fire Force Saison 2 + title: 'Enen no Shouboutai: Ni no Shou' + title_english: Fire Force Season 2 + title_japanese: 炎炎ノ消防隊 弐ノ章 + title_synonyms: + - Enen no Shouboutai 2nd Season + - Fire Force 2nd Season + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2020-07-04T00:00:00+00:00' + to: '2020-12-12T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2020 + to: + day: 12 + month: 12 + year: 2020 + string: Jul 4, 2020 to Dec 12, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 499241 + rank: 1123 + popularity: 222 + members: 919844 + favorites: 3112 + synopsis: "After his confrontation in the Nether with his younger brother Shou, Shinra Kusakabe's resolve to become\ + \ a hero that saves lives from the flame terror strengthens. Finding a way to turn the Infernals back into people,\ + \ unraveling the mystery of the Evangelist and Adolla Burst, and saving his mother and Shou—these are the goals Shinra\ + \ has in mind. However, he has come to realize that attaining these goals will not be easy, especially with the imminent\ + \ danger the Evangelist poses.\n\nThe Evangelist's plan is clear: to gather the eight pillars—the individuals who\ + \ possess Adolla Burst—and sacrifice them to recreate the Great Cataclysm from 250 years ago. Having been revealed\ + \ by the First Pillar that the birth of a new pillar is approaching, Shinra is determined to protect his fellow pillars\ + \ from the Evangelist. Thus, the fiery battle between the Special Fire Force and the Evangelist ignites. Together\ + \ with the Special Fire Force, Shinra's fight continues as he uncovers the truth about the Great Cataclysm and the\ + \ nature of Adolla Bursts, as well as the mysteries behind human combustion. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2020 + broadcast: + day: Saturdays + time: 01:55 + timezone: Asia/Tokyo + string: Saturdays at 01:55 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40496 + url: https://myanimelist.net/anime/40496/Maou_Gakuin_no_Futekigousha__Shijou_Saikyou_no_Maou_no_Shiso_Tensei_shite_Shison-tachi_no_Gakkou_e_Kayou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1126/108573.jpg + small_image_url: https://myanimelist.net/images/anime/1126/108573t.jpg + large_image_url: https://myanimelist.net/images/anime/1126/108573l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1126/108573.webp + small_image_url: https://myanimelist.net/images/anime/1126/108573t.webp + large_image_url: https://myanimelist.net/images/anime/1126/108573l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1xmzzF0XQEY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou' + - type: Synonym + title: 'The Misfit of Demon King Academy: History''s Strongest Demon King Reincarnates and Goes to School with His + Descendants' + - type: Japanese + title: 魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ + - type: English + title: The Misfit of Demon King Academy + - type: German + title: The Misfit of Demon King Academy + - type: Spanish + title: The Misfit of Demon King Academy + - type: French + title: The Misfit of Demon King Academy + title: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou' + title_english: The Misfit of Demon King Academy + title_japanese: 魔王学院の不適合者 ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ + title_synonyms: + - 'The Misfit of Demon King Academy: History''s Strongest Demon King Reincarnates and Goes to School with His Descendants' + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-07-04T00:00:00+00:00' + to: '2020-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2020 + to: + day: 26 + month: 9 + year: 2020 + string: Jul 4, 2020 to Sep 26, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.3 + scored_by: 526949 + rank: 3284 + popularity: 229 + members: 904875 + favorites: 5775 + synopsis: |- + In the distant past, a war between humans and demons brought about widespread chaos and bloodshed. To put an end to this seemingly endless conflict, Demon King Anos Voldigoad willingly sacrificed his life, hoping to be reborn in a peaceful future. + + In preparation for their king's return, the demon race created the Demon King Academy, an elite institution tasked with determining Anos' identity when he reawakens. He reincarnates two millennia later, but to his surprise, he soon learns that the level of magic in the world has drastically waned during his absence. Moreover, when he enrolls at the academy to reclaim his rightful title, he finds out that demonkind remembers him differently. His personality, his deeds, and even his legacy are all falsified—masked beneath the name of an impostor. This "lack" of common knowledge renders him the academy's outlier—a misfit never before seen in history. + + Despite these drawbacks, Anos remains unfazed. As he sets out to uncover those altering his glorious past, he takes it upon himself to make his descendants recognize that their ruler has finally returned. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 39547 + url: https://myanimelist.net/anime/39547/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_Kan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1958/107912.jpg + small_image_url: https://myanimelist.net/images/anime/1958/107912t.jpg + large_image_url: https://myanimelist.net/images/anime/1958/107912l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1958/107912.webp + small_image_url: https://myanimelist.net/images/anime/1958/107912t.webp + large_image_url: https://myanimelist.net/images/anime/1958/107912l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UsJUP98qr1M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan + - type: Synonym + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season + - type: Synonym + title: My Teen Romantic Comedy SNAFU 3 + - type: Synonym + title: Oregairu 3 + - type: Synonym + title: My youth romantic comedy is wrong as I expected 3 + - type: Japanese + title: やはり俺の青春ラブコメはまちがっている。完 + - type: English + title: My Teen Romantic Comedy SNAFU Climax! + - type: German + title: My Teen Romantic Comedy SNAFU Climax! + - type: Spanish + title: My Teen Romantic Comedy SNAFU Climax! + - type: French + title: My Teen Romantic Comedy SNAFU Climax! + title: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan + title_english: My Teen Romantic Comedy SNAFU Climax! + title_japanese: やはり俺の青春ラブコメはまちがっている。完 + title_synonyms: + - Yahari Ore no Seishun Love Comedy wa Machigatteiru. 3rd Season + - My Teen Romantic Comedy SNAFU 3 + - Oregairu 3 + - My youth romantic comedy is wrong as I expected 3 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-10T00:00:00+00:00' + to: '2020-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2020 + to: + day: 25 + month: 9 + year: 2020 + string: Jul 10, 2020 to Sep 25, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.35 + scored_by: 458019 + rank: 282 + popularity: 276 + members: 822050 + favorites: 15005 + synopsis: |- + Resolved to become a more independent person, Yukino Yukinoshita decides to smoothen things out with her parents, and the first step toward achieving that goal is to prove herself. + + As graduation draws closer for the third-year students, Iroha Isshiki—the president of the student council—requests a graduation prom in collaboration with the Volunteer Service Club. Yukino accepts this request of her own volition, hoping to use it as a chance to demonstrate her self-reliance, but what lies ahead of her may prove to be a hard hurdle to cross. + + Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan revolves around the graduation prom as emotions are poured into the preparations for the event. At the same time, a chance for the Volunteer Service Club members to better understand each other presents itself. And thus, Hachiman Hikigaya's hectic and bittersweet high school life begins to draw to a close. + + [Written by MAL Rewrite] + background: Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan adapts volumes 12 to 14 of Wataru Watari's light + novel series of the same title. + season: summer + year: 2020 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 40052 + url: https://myanimelist.net/anime/40052/Great_Pretender + images: + jpg: + image_url: https://myanimelist.net/images/anime/1418/107954.jpg + small_image_url: https://myanimelist.net/images/anime/1418/107954t.jpg + large_image_url: https://myanimelist.net/images/anime/1418/107954l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1418/107954.webp + small_image_url: https://myanimelist.net/images/anime/1418/107954t.webp + large_image_url: https://myanimelist.net/images/anime/1418/107954l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dr5yBBAR9Tg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Great Pretender + - type: Japanese + title: GREAT PRETENDER + - type: Spanish + title: El Timador Timado + title: Great Pretender + title_english: null + title_japanese: GREAT PRETENDER + title_synonyms: [] + type: TV + source: Original + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2020-07-09T00:00:00+00:00' + to: '2020-12-17T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2020 + to: + day: 17 + month: 12 + year: 2020 + string: Jul 9, 2020 to Dec 17, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.19 + scored_by: 357682 + rank: 461 + popularity: 309 + members: 748354 + favorites: 10499 + synopsis: "A series of unfortunate events has led Makoto Edamura to adopt the life of crime—pickpocketing and scamming\ + \ others for a living. However, after swindling a seemingly clueless tourist, Makoto discovers that he was the one\ + \ tricked and, to make matters worse, that the police are now after him. \n\nWhile making his escape, he runs into\ + \ the tourist once again, who turns out to be a fellow con man named Laurent Thierry, and ends up following him to\ + \ Los Angeles. In an attempt to defend his self-proclaimed title of \"Japan's Greatest Swindler,\" Makoto challenges\ + \ his rival to determine the better scammer. Accepting the competition, Laurent drops them off outside a huge mansion\ + \ and claims that their target will be the biggest mafia boss on the West Coast.\n\nAs Makoto becomes increasingly\ + \ involved with the cunning Laurent, his colorful associates, and the world of international high-stakes fraud, he\ + \ soon realizes that he got more than what he bargained for as his self-declared skills are continually put to the\ + \ test.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2020 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + licensors: + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 37987 + url: https://myanimelist.net/anime/37987/Violet_Evergarden_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1825/110716.jpg + small_image_url: https://myanimelist.net/images/anime/1825/110716t.jpg + large_image_url: https://myanimelist.net/images/anime/1825/110716l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1825/110716.webp + small_image_url: https://myanimelist.net/images/anime/1825/110716t.webp + large_image_url: https://myanimelist.net/images/anime/1825/110716l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NSIzsFOfd8M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Violet Evergarden Movie + - type: Synonym + title: Gekijouban Violet Evergarden + - type: Japanese + title: 劇場版 ヴァイオレット・エヴァーガーデン + - type: English + title: 'Violet Evergarden: The Movie' + - type: Spanish + title: 'Violet Evergarden: La película' + - type: French + title: 'Violet Evergarden: Le film' + title: Violet Evergarden Movie + title_english: 'Violet Evergarden: The Movie' + title_japanese: 劇場版 ヴァイオレット・エヴァーガーデン + title_synonyms: + - Gekijouban Violet Evergarden + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-09-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 9 + year: 2020 + to: + day: null + month: null + year: null + string: Sep 18, 2020 + duration: 2 hr 20 min + rating: PG-13 - Teens 13 or older + score: 8.83 + scored_by: 341528 + rank: 34 + popularity: 323 + members: 729035 + favorites: 9822 + synopsis: |- + Several years have passed since the end of The Great War. As the radio tower in Leidenschaftlich continues to be built, telephones will soon become more relevant, leading to a decline in demand for "Auto Memory Dolls." Even so, Violet Evergarden continues to rise in fame after her constant success with writing letters. However, sometimes the one thing you long for is the one thing that does not appear. + + Violet Evergarden Movie follows Violet as she continues to comprehend the concept of emotion and the meaning of love. At the same time, she pursues a glimmer of hope that the man who once told her, "I love you," may still be alive even after the many years that have passed. + + [Written by MAL Rewrite] + background: Winner of the Excellence Award at the 24th Japan Media Arts Festival. It also won the Animation of the Year + award in the Film category at the Tokyo Anime Award Festival in 2021. Also the winner of the Dolby Cinema Japan Award + at the 37th Tokyo International Film Festival in 2024. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40540 + url: https://myanimelist.net/anime/40540/Sword_Art_Online__Alicization_-_War_of_Underworld_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1438/105106.jpg + small_image_url: https://myanimelist.net/images/anime/1438/105106t.jpg + large_image_url: https://myanimelist.net/images/anime/1438/105106l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1438/105106.webp + small_image_url: https://myanimelist.net/images/anime/1438/105106t.webp + large_image_url: https://myanimelist.net/images/anime/1438/105106l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BJyjHqacEpY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online: Alicization - War of Underworld 2nd Season' + - type: Synonym + title: 'Sword Art Online: Alicization 3rd Season' + - type: Synonym + title: Sword Art Online III 3rd Season + - type: Synonym + title: SAO Alicization 3rd Season + - type: Synonym + title: Sword Art Online 3 3rd Season + - type: Synonym + title: SAO 3 3rd Season + - type: Synonym + title: SAO III 3rd Season + - type: Synonym + title: 'Sword Art Online: Alicization - War of Underworld - The Last Season' + - type: Japanese + title: ソードアート・オンライン アリシゼーション War of Underworld + - type: English + title: 'Sword Art Online: Alicization - War of Underworld Part 2' + - type: German + title: Sword Art Online Alicization War of Underworld Teil 2 + - type: French + title: Sword Art Online Alicization War of Underworld Partie 2 + title: 'Sword Art Online: Alicization - War of Underworld 2nd Season' + title_english: 'Sword Art Online: Alicization - War of Underworld Part 2' + title_japanese: ソードアート・オンライン アリシゼーション War of Underworld + title_synonyms: + - 'Sword Art Online: Alicization 3rd Season' + - Sword Art Online III 3rd Season + - SAO Alicization 3rd Season + - Sword Art Online 3 3rd Season + - SAO 3 3rd Season + - SAO III 3rd Season + - 'Sword Art Online: Alicization - War of Underworld - The Last Season' + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2020-07-12T00:00:00+00:00' + to: '2020-09-20T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2020 + to: + day: 20 + month: 9 + year: 2020 + string: Jul 12, 2020 to Sep 20, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.51 + scored_by: 396007 + rank: 2218 + popularity: 350 + members: 688216 + favorites: 3357 + synopsis: |- + The final battle against the Dark Territory drags on, as players from all over the world flood the Underworld's servers and plunge the Human Empire into utter chaos. Asuna Yuuki and her friends defend their new allies with everything they have, but their numbers are falling. Meanwhile, Alice Zuberg heads toward the World's End Altar while Gabriel "Vecta" Miller relentlessly pursues her. + + Meanwhile, members of Rath strategize a plan in an attempt to restore Kirito's damaged fluctlight. However, the intruders occupying the main control room have other plans. Surrounded by death and despair, when all hope seems to be lost, one voice reaches out to Kirito—a familiar one saying, "I will always be by your side." + + Sword Art Online: Alicization - War of Underworld 2nd Season is the epic conclusion to Akihiko Kayaba's dream of creating artificial human intelligence. Now it is up to Kirito and his friends to protect this collapsing world from the people that still think it is just a game. + + [Written by MAL Rewrite] + background: 'Sword Art Online: Alicization - War of Underworld is an adaptation of volumes 15 through 18 of Reki Kawahara''s + Sword Art Online light novel series.' + season: summer + year: 2020 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 41226 + url: https://myanimelist.net/anime/41226/Uzaki-chan_wa_Asobitai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1540/108292.jpg + small_image_url: https://myanimelist.net/images/anime/1540/108292t.jpg + large_image_url: https://myanimelist.net/images/anime/1540/108292l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1540/108292.webp + small_image_url: https://myanimelist.net/images/anime/1540/108292t.webp + large_image_url: https://myanimelist.net/images/anime/1540/108292l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PBvd29TjxYw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uzaki-chan wa Asobitai! + - type: Synonym + title: Uzaki-chan Wants to Play! + - type: Japanese + title: 宇崎ちゃんは遊びたい! + - type: English + title: Uzaki-chan Wants to Hang Out! + title: Uzaki-chan wa Asobitai! + title_english: Uzaki-chan Wants to Hang Out! + title_japanese: 宇崎ちゃんは遊びたい! + title_synonyms: + - Uzaki-chan Wants to Play! + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-10T00:00:00+00:00' + to: '2020-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2020 + to: + day: 25 + month: 9 + year: 2020 + string: Jul 10, 2020 to Sep 25, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.96 + scored_by: 286294 + rank: 5371 + popularity: 479 + members: 530433 + favorites: 1793 + synopsis: |- + At the start of her freshman year in college, Hana Uzaki reunites with Shinichi Sakurai, an upperclassman who was in the same club as her during her high school days. However, much to her surprise, the once active senior has ended up becoming a "lonesome" student, preferring to spend his free time in quiet peace. + + Uzaki does whatever she can to keep Sakurai from being "alone," from convincing him to go to the movies to going to his part-time workplace. While Sakurai finds her irritating and tiresome, he still goes along with Uzaki's hijinks and shenanigans, even if he knows that her perky personality will only lead the two of them into various comical situations. + + Even so, as the days pass by, their relationship only gets better, to the point where people around them misinterpret them to be a couple. At any rate, whenever Uzaki wants to hang out with her upperclassman, fun and adorable wackiness is sure to follow! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 392 + type: anime + name: Enterbrain + url: https://myanimelist.net/anime/producer/392/Enterbrain + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + - mal_id: 1903 + type: anime + name: IMAGICA Lab. + url: https://myanimelist.net/anime/producer/1903/IMAGICA_Lab + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + demographics: [] + - mal_id: 33050 + url: https://myanimelist.net/anime/33050/Fate_stay_night_Movie__Heavens_Feel_-_III_Spring_Song + images: + jpg: + image_url: https://myanimelist.net/images/anime/1142/112957.jpg + small_image_url: https://myanimelist.net/images/anime/1142/112957t.jpg + large_image_url: https://myanimelist.net/images/anime/1142/112957l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1142/112957.webp + small_image_url: https://myanimelist.net/images/anime/1142/112957t.webp + large_image_url: https://myanimelist.net/images/anime/1142/112957l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zfjbLLxdZOU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fate/stay night Movie: Heaven''s Feel - III. Spring Song' + - type: Synonym + title: 'Fate/stay night Movie: Heaven''s Feel 3' + - type: Japanese + title: 劇場版「Fate/stay night [Heaven's Feel] III.spring song」 + - type: English + title: 'Fate/stay night: Heaven''s Feel - III. Spring Song' + - type: French + title: 'Fate/stay night: Heaven''s Feel - III. Spring Song' + title: 'Fate/stay night Movie: Heaven''s Feel - III. Spring Song' + title_english: 'Fate/stay night: Heaven''s Feel - III. Spring Song' + title_japanese: 劇場版「Fate/stay night [Heaven's Feel] III.spring song」 + title_synonyms: + - 'Fate/stay night Movie: Heaven''s Feel 3' + type: Movie + source: Visual novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-08-15T00:00:00+00:00' + to: null + prop: + from: + day: 15 + month: 8 + year: 2020 + to: + day: null + month: null + year: null + string: Aug 15, 2020 + duration: 2 hr 2 min + rating: R - 17+ (violence & profanity) + score: 8.63 + scored_by: 223441 + rank: 93 + popularity: 666 + members: 408506 + favorites: 8511 + synopsis: |- + The Fifth Holy Grail War in Fuyuki City has reached a turning point in which the lives of all participants are threatened as the hidden enemy finally reveals itself. As Shirou Emiya, Rin Toosaka, and Illyasviel von Einzbern discover the true, corruptive nature of the shadow that has been rampaging throughout the city, they realize just how dire the situation is. In order to protect their beloved ones, the group must hold their own against the seemingly insurmountable enemy force—even if some of those foes were once their allies, or perhaps, something more intimate. + + As the final act of this chaotic war commences, the ideals Shirou believes will soon be challenged by an excruciating dilemma: is it really possible to save a world where everything seems to have gone wrong? + + [Written by MAL Rewrite] + background: 'Fate/stay night Movie: Heaven''s Feel - III. Spring Song was ranked the ninth highest grossing Japanese + film of 2020 for the Japanese box office, generating 1.95 billion yen (aprox. $19,252,497 million) during its box + office run. The opening weekend grossed 474 million yen, debuting at No. 1 at the Japanese box office.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 703 + type: anime + name: Notes + url: https://myanimelist.net/anime/producer/703/Notes + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 40056 + url: https://myanimelist.net/anime/40056/Deca-Dence + images: + jpg: + image_url: https://myanimelist.net/images/anime/1787/132772.jpg + small_image_url: https://myanimelist.net/images/anime/1787/132772t.jpg + large_image_url: https://myanimelist.net/images/anime/1787/132772l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1787/132772.webp + small_image_url: https://myanimelist.net/images/anime/1787/132772t.webp + large_image_url: https://myanimelist.net/images/anime/1787/132772l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OziblTliUbw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Deca-Dence + - type: Japanese + title: デカダンス + title: Deca-Dence + title_english: null + title_japanese: デカダンス + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-08T00:00:00+00:00' + to: '2020-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2020 + to: + day: 23 + month: 9 + year: 2020 + string: Jul 8, 2020 to Sep 23, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 145543 + rank: 2981 + popularity: 858 + members: 327758 + favorites: 983 + synopsis: "Far in the future, the lifeforms known as Gadoll suddenly arose as a threat to humanity. The last surviving\ + \ humans on Earth confine themselves to the Tank, a lower district in the giant mobile fortress Deca-Dence. While\ + \ the Gears who live on the upper floors are warriors who go out to fight as part of the Power, most Tankers are content\ + \ to provide support from the backlines, butchering Gadoll meat and reinforcing defenses. Natsume is among those who\ + \ would rather go to the front lines; undeterred by her prosthetic right arm, she seeks to join the small number of\ + \ Tanker soldiers who join the Gears in combat. \n\nBut despite her peers at the orphanage each receiving their work\ + \ assignments, Natsume’s enlistment to the Power remains unapproved. In the meantime, she begins a job as a cleaner\ + \ in an armor repair team led by the hard-nosed and apathetic Kaburagi, who seems to be more than he lets on. Though\ + \ initially cold to his idealistic subordinate, he soon recognizes in her the potential to upset the status quo of\ + \ the world. As Natsume’s new mentor, Kaburagi prepares her for the special and unique role as a game-changing bug\ + \ in the system.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2020 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1567 + type: anime + name: Nut + url: https://myanimelist.net/anime/producer/1567/Nut + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40421 + url: https://myanimelist.net/anime/40421/Given_Movie_1 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1648/111422.jpg + small_image_url: https://myanimelist.net/images/anime/1648/111422t.jpg + large_image_url: https://myanimelist.net/images/anime/1648/111422l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1648/111422.webp + small_image_url: https://myanimelist.net/images/anime/1648/111422t.webp + large_image_url: https://myanimelist.net/images/anime/1648/111422l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hDd2sAMXVco?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Given Movie 1 + - type: Synonym + title: Eiga Given + - type: Japanese + title: 映画 ギヴン + - type: English + title: given The Movie + - type: German + title: Given Ohne Titel + - type: French + title: Given le Film + title: Given Movie 1 + title_english: given The Movie + title_japanese: 映画 ギヴン + title_synonyms: + - Eiga Given + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-08-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 8 + year: 2020 + to: + day: null + month: null + year: null + string: Aug 22, 2020 + duration: 59 min + rating: PG-13 - Teens 13 or older + score: 8.12 + scored_by: 143785 + rank: 566 + popularity: 1069 + members: 264533 + favorites: 1710 + synopsis: |- + The band "given"—comprised of Ritsuka Uenoyama, Mafuyu Satou, Haruki Nakayama, and Akihiko Kaji—has advanced to the final screening of the Countdown-fes Amateur Contest, in which they will be judged on their live act. Although enthusiastic, they worry about having only one original song to perform. + + Mafuyu embraces the idea of learning more about music in order to create new, emotionally resonant songs. In this regard, he unexpectedly receives help from Ugetsu Murata, Akihiko's on-again, off-again lover. Ugetsu has unsuccessfully tried to let go of Akihiko, who himself is torn between lingering feelings for his past and an uncertain resolve for the future. + + As the competition draws near, Haruki uncharacteristically begins to doubt his place in the band and the trust he shares with Akihiko. It is a given that not all attachments last forever, but it remains to be seen what can be salvaged from the ruins of heartbreak—or if only regrets will endure. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1672 + type: anime + name: Shinshokan + url: https://myanimelist.net/anime/producer/1672/Shinshokan + - mal_id: 2511 + type: anime + name: Blue Lynx + url: https://myanimelist.net/anime/producer/2511/Blue_Lynx + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 40708 + url: https://myanimelist.net/anime/40708/Monster_Musume_no_Oishasan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1762/106598.jpg + small_image_url: https://myanimelist.net/images/anime/1762/106598t.jpg + large_image_url: https://myanimelist.net/images/anime/1762/106598l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1762/106598.webp + small_image_url: https://myanimelist.net/images/anime/1762/106598t.webp + large_image_url: https://myanimelist.net/images/anime/1762/106598l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3iCJ7zI3kh0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Monster Musume no Oishasan + - type: Synonym + title: The doctor for monster girls. + - type: Japanese + title: モンスター娘のお医者さん + - type: English + title: Monster Girl Doctor + - type: German + title: Monster Girl Doctor + - type: Spanish + title: Monster Girl Doctor + - type: French + title: Monster Girl Doctor + title: Monster Musume no Oishasan + title_english: Monster Girl Doctor + title_japanese: モンスター娘のお医者さん + title_synonyms: + - The doctor for monster girls. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-12T00:00:00+00:00' + to: '2020-09-27T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2020 + to: + day: 27 + month: 9 + year: 2020 + string: Jul 12, 2020 to Sep 27, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.53 + scored_by: 113250 + rank: 7993 + popularity: 1126 + members: 250973 + favorites: 467 + synopsis: |- + After years of conflict, humans and monsters have settled their differences and are now at peace. This post-war era led to the foundation of Lindworm—a town which has since become the focal point of racial harmony. + + As a human doctor specializing in monster biology, Glenn Litbeit runs a small clinic alongside his partner, Saphentite Neikes, who is a half-snake monster known as a lamia. He uses his knowledge to tend to any monsters who seek his aid. Whatever affliction, concern, or injury it may be, he will always be there, ready to help. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 40436 + url: https://myanimelist.net/anime/40436/Peter_Grill_to_Kenja_no_Jikan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1368/108441.jpg + small_image_url: https://myanimelist.net/images/anime/1368/108441t.jpg + large_image_url: https://myanimelist.net/images/anime/1368/108441l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1368/108441.webp + small_image_url: https://myanimelist.net/images/anime/1368/108441t.webp + large_image_url: https://myanimelist.net/images/anime/1368/108441l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/imcc0U7LoYI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Peter Grill to Kenja no Jikan + - type: Japanese + title: ピーター・グリルと賢者の時間 + - type: English + title: Peter Grill and the Philosopher's Time + - type: German + title: Peter Grill and the Philosopher's Time + - type: Spanish + title: Peter Grill and the Philosopher's Time + - type: French + title: Peter Grill and the Philosopher's Time + title: Peter Grill to Kenja no Jikan + title_english: Peter Grill and the Philosopher's Time + title_japanese: ピーター・グリルと賢者の時間 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-11T00:00:00+00:00' + to: '2020-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2020 + to: + day: 26 + month: 9 + year: 2020 + string: Jul 11, 2020 to Sep 26, 2020 + duration: 12 min per ep + rating: R+ - Mild Nudity + score: 5.54 + scored_by: 97922 + rank: null + popularity: 1265 + members: 222819 + favorites: 807 + synopsis: |- + After gaining the title of the strongest warrior in the world, Peter Grill has finally proven his worth and is ready to take the hand of his beloved senior, the beautiful and innocent Luvelia Sanctos. Peter expects to have a healthy relationship with her, despite some objections from her father. + + Unfortunately, this dream quickly breaks apart as news of his grand victory spreads among the womenfolk of other races—ogres, orcs, elves, and others—some of them even vying for his seed to produce offspring blessed with his might. To avoid betraying the trust of his cherished Luvelia and causing a scandal, Peter strives to avoid other women's salacious advances. However, accomplishing such a feat with so many alluring women on his trail is easier said than done. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2020 + broadcast: + day: Saturdays + time: 01:35 + timezone: Asia/Tokyo + string: Saturdays at 01:35 (JST) + producers: [] + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2052 + type: anime + name: Wolfsbane + url: https://myanimelist.net/anime/producer/2052/Wolfsbane + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 40615 + url: https://myanimelist.net/anime/40615/Umibe_no_Étranger + images: + jpg: + image_url: https://myanimelist.net/images/anime/1668/108792.jpg + small_image_url: https://myanimelist.net/images/anime/1668/108792t.jpg + large_image_url: https://myanimelist.net/images/anime/1668/108792l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1668/108792.webp + small_image_url: https://myanimelist.net/images/anime/1668/108792t.webp + large_image_url: https://myanimelist.net/images/anime/1668/108792l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6Dt3sEu1R9E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Umibe no Étranger + - type: Synonym + title: L'étranger du plage + - type: Synonym + title: L'étranger de la plage + - type: Synonym + title: The Stranger by the Beach + - type: Synonym + title: Umibe no Etranger + - type: Japanese + title: 海辺のエトランゼ + - type: English + title: The Stranger by the Shore + title: Umibe no Étranger + title_english: The Stranger by the Shore + title_japanese: 海辺のエトランゼ + title_synonyms: + - L'étranger du plage + - L'étranger de la plage + - The Stranger by the Beach + - Umibe no Etranger + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-09-11T00:00:00+00:00' + to: null + prop: + from: + day: 11 + month: 9 + year: 2020 + to: + day: null + month: null + year: null + string: Sep 11, 2020 + duration: 58 min + rating: R+ - Mild Nudity + score: 7.81 + scored_by: 116278 + rank: 1168 + popularity: 1276 + members: 220542 + favorites: 3088 + synopsis: |- + Shun Hashimoto is an openly gay aspiring novelist living in Okinawa who was abandoned by his parents after coming out to them. Mio Chibana is a reserved, orphaned high school student, often found spending his time by the sea. One day, the two meet on the beach, and Shun is instantly captivated by Mio. The days fly by as they slowly begin to grow closer until Mio suddenly announces that he has to leave for the mainland. + + Three years pass before a 20-year-old Mio returns to Okinawa to confess his love to Shun. However, in those three years, Shun's life has changed. Will he be able to accept Mio's feelings and make such a commitment? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 2511 + type: anime + name: Blue Lynx + url: https://myanimelist.net/anime/producer/2511/Blue_Lynx + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 42603 + url: https://myanimelist.net/anime/42603/Boku_no_Hero_Academia__Ikinokore_Kesshi_no_Survival_Kunren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1345/108741.jpg + small_image_url: https://myanimelist.net/images/anime/1345/108741t.jpg + large_image_url: https://myanimelist.net/images/anime/1345/108741l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1345/108741.webp + small_image_url: https://myanimelist.net/images/anime/1345/108741t.webp + large_image_url: https://myanimelist.net/images/anime/1345/108741l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren' + - type: Japanese + title: 僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練 + - type: English + title: 'My Hero Academia: Make It! Do-or-Die Survival Training' + - type: Spanish + title: 'My Hero Academia Temporada 4 Ovas: ¡Sobrevive! Entrenamiento de Supervivencia Mortal' + title: 'Boku no Hero Academia: Ikinokore! Kesshi no Survival Kunren' + title_english: 'My Hero Academia: Make It! Do-or-Die Survival Training' + title_japanese: 僕のヒーローアカデミア 生き残れ!決死のサバイバル訓練 + title_synonyms: [] + type: ONA + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2020-08-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 8 + year: 2020 + to: + day: null + month: null + year: null + string: Aug 16, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 103158 + rank: 4132 + popularity: 1395 + members: 200603 + favorites: 194 + synopsis: "The stage this time is a survival training course, taking place before the Provisional Hero License Exam\ + \ arc. \n\nClass 1-A students are sent to hone their survival skills at a training course. Having yet to receive their\ + \ provisional licenses, they're eager to cut loose and have a little fun.\n\nThey quickly discover that the danger\ + \ they face is no simulation! It's going to take their combined training, teamwork, and quick thinking if they're\ + \ going to pass this assignment! \n\n(Source: Funimation)" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40623 + url: https://myanimelist.net/anime/40623/Dokyuu_Hentai_HxEros + images: + jpg: + image_url: https://myanimelist.net/images/anime/1342/108321.jpg + small_image_url: https://myanimelist.net/images/anime/1342/108321t.jpg + large_image_url: https://myanimelist.net/images/anime/1342/108321l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1342/108321.webp + small_image_url: https://myanimelist.net/images/anime/1342/108321t.webp + large_image_url: https://myanimelist.net/images/anime/1342/108321l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E_aVxJ8lfFI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dokyuu Hentai HxEros + - type: Japanese + title: ド級編隊エグゼロス + - type: English + title: SUPER HXEROS + title: Dokyuu Hentai HxEros + title_english: SUPER HXEROS + title_japanese: ド級編隊エグゼロス + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-07-04T00:00:00+00:00' + to: '2020-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2020 + to: + day: 26 + month: 9 + year: 2020 + string: Jul 4, 2020 to Sep 26, 2020 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 5.78 + scored_by: 60479 + rank: 12092 + popularity: 1689 + members: 159427 + favorites: 284 + synopsis: "Five years ago, alien beings known as the \"Kiseichuu'' invaded the world. With the species endangered, the\ + \ Kiseichuu are determined to take over Earth through a deadly plan that would gradually wipe out the human race:\ + \ take away humanity's sexual drive using various methods, letting them die out. In response to the Kiseichuus' scheme,\ + \ the HxEros device was developed—a powerful weapon that only those with high levels of erotic energy can utilize\ + \ at its maximum capacity. \n\nRetto Enjou, a high schooler harboring an immense hatred toward the Kiseichuu, joins\ + \ a group of HxEros users to fight against them and protect humankind. With their gear reliant on erotic energy as\ + \ a source of power, the team must work together to maintain high levels of libido to ensure their readiness for combat\ + \ at any given time. Moreover, as he lives in a house full of lustful girls, Enjou should not expect a shortage of\ + \ power anytime soon.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2020 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40515 + url: https://myanimelist.net/anime/40515/Nihon_Chinbotsu_2020 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1989/107335.jpg + small_image_url: https://myanimelist.net/images/anime/1989/107335t.jpg + large_image_url: https://myanimelist.net/images/anime/1989/107335l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1989/107335.webp + small_image_url: https://myanimelist.net/images/anime/1989/107335t.webp + large_image_url: https://myanimelist.net/images/anime/1989/107335l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3kZe3vXf96Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nihon Chinbotsu 2020 + - type: Japanese + title: 日本沈没2020 + - type: English + title: 'Japan Sinks: 2020' + - type: German + title: 'Japan sinkt: 2020' + - type: Spanish + title: 'El Hundimiento de Japón: 2020' + - type: French + title: 'Japan Sinks: 2020' + title: Nihon Chinbotsu 2020 + title_english: 'Japan Sinks: 2020' + title_japanese: 日本沈没2020 + title_synonyms: [] + type: ONA + source: Novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2020-07-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 7 + year: 2020 + to: + day: null + month: null + year: null + string: Jul 9, 2020 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 6.46 + scored_by: 88723 + rank: 8409 + popularity: 1707 + members: 157644 + favorites: 431 + synopsis: |- + The Mutou family leads a peaceful life: Kouichirou works at a construction site and his wife Mari is returning from an overseas trip. Their daughter Ayumu has just finished her track practice while their son Gou is playing video games at home. However, life as they know it is flipped upside down when a calamitous earthquake strikes the entire Japanese archipelago—obliterating the face of the country in an instant. + + With society crumbling around them and their nation gradually sinking into the ocean, the Mutou family must band together to survive the catastrophe. Treading the near-apocalyptic setting, they struggle not only to stay alive, but also to learn the difficulty of coping with loss. + + [Written by MAL Rewrite] + background: Nihon Chinbotsu 2020 is an original net animation and one of many works based on Sakyo Komatsu's award-winning + 1973 disaster novel of the same name. The ten episodes were released exclusively on Netflix in July 2020. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40936 + url: https://myanimelist.net/anime/40936/Ore_wo_Suki_nano_wa_Omae_dake_ka_yo__Oretachi_no_Game_Set + images: + jpg: + image_url: https://myanimelist.net/images/anime/1155/106799.jpg + small_image_url: https://myanimelist.net/images/anime/1155/106799t.jpg + large_image_url: https://myanimelist.net/images/anime/1155/106799l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1155/106799.webp + small_image_url: https://myanimelist.net/images/anime/1155/106799t.webp + large_image_url: https://myanimelist.net/images/anime/1155/106799l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/htsu0pXwWl4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set' + - type: Synonym + title: Ore wo Suki nano wa Omae dake ka yo Kanketsu-hen + - type: Synonym + title: Ore wo Suki nano wa Omae dake ka yo Episode 13 + - type: Synonym + title: Oresuki OVA + - type: Japanese + title: 俺を好きなのはお前だけかよ ~俺たちのゲームセット~ + - type: English + title: ORESUKI Are you the only one who loves me? - Our Playball / Our End Run / Our Game + title: 'Ore wo Suki nano wa Omae dake ka yo: Oretachi no Game Set' + title_english: ORESUKI Are you the only one who loves me? - Our Playball / Our End Run / Our Game + title_japanese: 俺を好きなのはお前だけかよ ~俺たちのゲームセット~ + title_synonyms: + - Ore wo Suki nano wa Omae dake ka yo Kanketsu-hen + - Ore wo Suki nano wa Omae dake ka yo Episode 13 + - Oresuki OVA + type: OVA + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-09-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 9 + year: 2020 + to: + day: null + month: null + year: null + string: Sep 2, 2020 + duration: 1 hr 10 min + rating: PG-13 - Teens 13 or older + score: 7.56 + scored_by: 73203 + rank: 1981 + popularity: 1931 + members: 135790 + favorites: 324 + synopsis: |- + The original video anime episode will serve as the final chapter to the television series, focusing on the rivalry between the "the protagonist" Amatsuyu Kisaragi (Jouro) and Yasuo Hazuki (Hose), "the background character." + + (Source: MAL News) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 271 + type: anime + name: Barnum Studio + url: https://myanimelist.net/anime/producer/271/Barnum_Studio + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 37932 + url: https://myanimelist.net/anime/37932/Quanzhi_Gaoshou_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1836/155870.jpg + small_image_url: https://myanimelist.net/images/anime/1836/155870t.jpg + large_image_url: https://myanimelist.net/images/anime/1836/155870l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1836/155870.webp + small_image_url: https://myanimelist.net/images/anime/1836/155870t.webp + large_image_url: https://myanimelist.net/images/anime/1836/155870l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/p77_1BmuIOg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Quanzhi Gaoshou 2 + - type: Synonym + title: Quan Zhi Gao Shou 2nd Season + - type: Synonym + title: Full-Time Expert 2nd Season + - type: Synonym + title: Master of Skills 2nd Season + - type: Synonym + title: マスターオブスキル 2期 + - type: Japanese + title: 全职高手2 + - type: English + title: The King's Avatar 2 + title: Quanzhi Gaoshou 2 + title_english: The King's Avatar 2 + title_japanese: 全职高手2 + title_synonyms: + - Quan Zhi Gao Shou 2nd Season + - Full-Time Expert 2nd Season + - Master of Skills 2nd Season + - マスターオブスキル 2期 + type: ONA + source: Web novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-09-25T00:00:00+00:00' + to: '2020-12-04T00:00:00+00:00' + prop: + from: + day: 25 + month: 9 + year: 2020 + to: + day: 4 + month: 12 + year: 2020 + string: Sep 25, 2020 to Dec 4, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.87 + scored_by: 49256 + rank: 1022 + popularity: 1989 + members: 130110 + favorites: 558 + synopsis: "The \"Unspecialized\" character Lord Grim is infamous in the 10th server of the popular online game Glory.\ + \ His reputation alone is enough to draw many curious players to his newly formed Guild Happy. Other competing guilds\ + \ have enough to worry about with some of their own members abandoning them for Happy. However, they are also concerned\ + \ by rumors that the person behind Lord Grim is really the retired professional gamer and \"Glory Textbook\" Ye Qiu,\ + \ whom they have little chance of opposing. \n\nUnsure of the truth, the powerhouse guilds attempt to suppress Lord\ + \ Grim's growing influence, harboring differing motives for doing so. But regardless of what obstacles he faces, Lord\ + \ Grim is determined to break into the cross-server of Glory—the Heavenly Domain—where characters, including himself,\ + \ can reach even greater levels. There, he hopes to round out the team of rookies who will fight alongside him in\ + \ the Challenger League, which would be only their first step toward the coveted Glory Championship.\n\n[Written by\ + \ MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1727 + type: anime + name: Tencent Video + url: https://myanimelist.net/anime/producer/1727/Tencent_Video + - mal_id: 1728 + type: anime + name: China Literature Limited + url: https://myanimelist.net/anime/producer/1728/China_Literature_Limited + - mal_id: 1831 + type: anime + name: Colored Pencil Animation Japan + url: https://myanimelist.net/anime/producer/1831/Colored_Pencil_Animation_Japan + licensors: [] + studios: + - mal_id: 2509 + type: anime + name: Colored Pencil Animation + url: https://myanimelist.net/anime/producer/2509/Colored_Pencil_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 40416 + url: https://myanimelist.net/anime/40416/Date_A_Bullet__Dead_or_Bullet + images: + jpg: + image_url: https://myanimelist.net/images/anime/1984/108425.jpg + small_image_url: https://myanimelist.net/images/anime/1984/108425t.jpg + large_image_url: https://myanimelist.net/images/anime/1984/108425l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1984/108425.webp + small_image_url: https://myanimelist.net/images/anime/1984/108425t.webp + large_image_url: https://myanimelist.net/images/anime/1984/108425l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WdTagKn0cSM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Date A Bullet: Dead or Bullet' + - type: Synonym + title: 'Date A Live Fragment: Date A Bullet' + - type: Japanese + title: デート・ア・バレット デッド・オア・バレット + title: 'Date A Bullet: Dead or Bullet' + title_english: null + title_japanese: デート・ア・バレット デッド・オア・バレット + title_synonyms: + - 'Date A Live Fragment: Date A Bullet' + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-08-14T00:00:00+00:00' + to: null + prop: + from: + day: 14 + month: 8 + year: 2020 + to: + day: null + month: null + year: null + string: Aug 14, 2020 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 52471 + rank: 1752 + popularity: 2143 + members: 118652 + favorites: 618 + synopsis: |- + Soon after falling into another world, Kurumi Tokisaki takes interest in a particular white cat. Much to Kurumi's disappointment, the two part ways. + + Kurumi later meets Hibiki Higoromo, a white haired quasi-spirit. Hibiki explains that they are at the center of a killing game between quasi-spirits. Within the Neighboring World, the spirits compete for a single wish to be granted to the lone survivor of the death-match. + + Understanding the rules of the game, Kurumi and Hibiki reach a compromise—a temporary alliance. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: [] + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 42091 + url: https://myanimelist.net/anime/42091/Shingeki_no_Kyojin__Chronicle + images: + jpg: + image_url: https://myanimelist.net/images/anime/1786/110717.jpg + small_image_url: https://myanimelist.net/images/anime/1786/110717t.jpg + large_image_url: https://myanimelist.net/images/anime/1786/110717l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1786/110717.webp + small_image_url: https://myanimelist.net/images/anime/1786/110717t.webp + large_image_url: https://myanimelist.net/images/anime/1786/110717l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7wBiYV0oy1I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: Chronicle' + - type: Synonym + title: 'Attack on Titan: Chronicle' + - type: Japanese + title: 進撃の巨人 〜クロニクル〜 + - type: English + title: 'Attack on Titan: Chronicle' + title: 'Shingeki no Kyojin: Chronicle' + title_english: 'Attack on Titan: Chronicle' + title_japanese: 進撃の巨人 〜クロニクル〜 + title_synonyms: + - 'Attack on Titan: Chronicle' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-07-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 7 + year: 2020 + to: + day: null + month: null + year: null + string: Jul 17, 2020 + duration: 2 hr + rating: R - 17+ (violence & profanity) + score: 7.84 + scored_by: 33673 + rank: 1092 + popularity: 2407 + members: 99232 + favorites: 242 + synopsis: The compilation film recaps the anime's 59 episodes from seasons one to three. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40215 + url: https://myanimelist.net/anime/40215/Aggressive_Retsuko_ONA_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1049/108692.jpg + small_image_url: https://myanimelist.net/images/anime/1049/108692t.jpg + large_image_url: https://myanimelist.net/images/anime/1049/108692l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1049/108692.webp + small_image_url: https://myanimelist.net/images/anime/1049/108692t.webp + large_image_url: https://myanimelist.net/images/anime/1049/108692l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WCRmpAj4xFw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aggressive Retsuko (ONA) 3rd Season + - type: Synonym + title: Aggretsuko 3rd Season + - type: Japanese + title: アグレッシブ烈子第3期 + - type: English + title: Aggretsuko (ONA) 3rd Season + - type: German + title: Aggretsuko Staffel 3 + - type: Spanish + title: Aggretsuko Temporada 3 + - type: French + title: Aggretsuko Saison 3 + title: Aggressive Retsuko (ONA) 3rd Season + title_english: Aggretsuko (ONA) 3rd Season + title_japanese: アグレッシブ烈子第3期 + title_synonyms: + - Aggretsuko 3rd Season + type: ONA + source: Other + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2020-08-27T00:00:00+00:00' + to: null + prop: + from: + day: 27 + month: 8 + year: 2020 + to: + day: null + month: null + year: null + string: Aug 27, 2020 + duration: 16 min per ep + rating: PG-13 - Teens 13 or older + score: 7.78 + scored_by: 63729 + rank: 1224 + popularity: 2408 + members: 99212 + favorites: 272 + synopsis: |- + After an emotional breakup with her boyfriend, red panda Retsuko closes herself off to the thought of ever being in love again—well, with an actual person anyway. Retreating into the world of VR, her virtual boyfriend showers her with praise and shows up in cute outfits, albeit for a price. + + While scrambling to find other ways to earn money, Retsuko finds herself in yet another financial bind after accidentally ramming into a parked van with a rental vehicle. The owner of the van, a gruff cheetah named Hyoudou, recruits her as an accountant for an underground idol group which he manages. Retsuko soon begins to buckle under the pressure from the new job, leading to plenty of inspiration for her next death metal vent sessions. + + In the midst of it all, Retsuko begins to wonder if she truly desires a colorless and uninteresting life, or if there's something waiting beyond her office desk. Will Retsuko finally come out on top, both in love and in the workplace? Or will she once again be convinced that the dull and sterile life in her office environment is the one she must lead? + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 150 + type: anime + name: Sanrio + url: https://myanimelist.net/anime/producer/150/Sanrio + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: [] + studios: + - mal_id: 866 + type: anime + name: Fanworks + url: https://myanimelist.net/anime/producer/866/Fanworks + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 39753 + url: https://myanimelist.net/anime/39753/Omoi_Omoware_Furi_Furare + images: + jpg: + image_url: https://myanimelist.net/images/anime/1418/108748.jpg + small_image_url: https://myanimelist.net/images/anime/1418/108748t.jpg + large_image_url: https://myanimelist.net/images/anime/1418/108748l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1418/108748.webp + small_image_url: https://myanimelist.net/images/anime/1418/108748t.webp + large_image_url: https://myanimelist.net/images/anime/1418/108748l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SPZgsZ3_oqY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Omoi, Omoware, Furi, Furare + - type: Synonym + title: Love + - type: Synonym + title: Be Loved + - type: Synonym + title: Leave + - type: Synonym + title: Be Left + - type: Synonym + title: Furifura + - type: Japanese + title: 思い、思われ、ふり、ふられ + - type: English + title: Love Me, Love Me Not + title: Omoi, Omoware, Furi, Furare + title_english: Love Me, Love Me Not + title_japanese: 思い、思われ、ふり、ふられ + title_synonyms: + - Love + - Be Loved + - Leave + - Be Left + - Furifura + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-09-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 9 + year: 2020 + to: + day: null + month: null + year: null + string: Sep 18, 2020 + duration: 1 hr 42 min + rating: PG-13 - Teens 13 or older + score: 7.28 + scored_by: 26505 + rank: 3423 + popularity: 2587 + members: 88395 + favorites: 339 + synopsis: |- + Yuna Ichihara's spring break is far from pleasant, especially after she sends off her best friend Sacchan, who is moving away. But while heading home, the timid girl brightens up when she encounters a boy who looks exactly like her first love—a prince from a shoujo manga. Subsequently, she finds herself in a peculiar situation with the mature Akari Yamamoto, a new neighbor who immediately befriends her. + + Now attending the same high school together, Yuna shows interest in Akari's brother Rio—the same mysterious and handsome boy she met during spring break. Likewise, Akari is falling for Yuna's carefree childhood friend, Kazuomi Inui. However, love is not at anyone's fingertips, as the relationship between these four contrasting friends faces complications, preventing them from moving forward. To discover the truth between them, they will need to confront their own struggles and uncover secrets hidden among themselves. + + [Written by MAL Rewrite] + background: Omoi, Omoware, Furi, Furare was originally slated to premiere on May 29, 2020, but was delayed to September + 18, 2020 due to the COVID-19 pandemic. The series was released on Blu-ray and DVD in Japan on April 7, 2021. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 316 + type: anime + name: Nippon Shuppan Hanbai (Nippan) K.K. + url: https://myanimelist.net/anime/producer/316/Nippon_Shuppan_Hanbai_Nippan_KK + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1697 + type: anime + name: KDDI + url: https://myanimelist.net/anime/producer/1697/KDDI + - mal_id: 1792 + type: anime + name: Yomiuri Shimbun + url: https://myanimelist.net/anime/producer/1792/Yomiuri_Shimbun + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + - mal_id: 2138 + type: anime + name: Hikari TV + url: https://myanimelist.net/anime/producer/2138/Hikari_TV + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/44-2020-fall.yaml b/test/fixtures/jikan/season_matrix/44-2020-fall.yaml new file mode 100644 index 0000000..c721b2a --- /dev/null +++ b/test/fixtures/jikan/season_matrix/44-2020-fall.yaml @@ -0,0 +1,3460 @@ +metadata: + captured_at: '2026-05-11T11:34:21Z' + label: 2020-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2020/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:21 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:d0dfd5c6fb9c0bf38b3343a331f356519789cfe0 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 313 + per_page: 25 + data: + - mal_id: 40748 + url: https://myanimelist.net/anime/40748/Jujutsu_Kaisen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1171/109222.jpg + small_image_url: https://myanimelist.net/images/anime/1171/109222t.jpg + large_image_url: https://myanimelist.net/images/anime/1171/109222l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1171/109222.webp + small_image_url: https://myanimelist.net/images/anime/1171/109222t.webp + large_image_url: https://myanimelist.net/images/anime/1171/109222l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4A_X-Dvl0ws?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jujutsu Kaisen + - type: Synonym + title: Sorcery Fight + - type: Synonym + title: JJK + - type: Japanese + title: 呪術廻戦 + - type: English + title: Jujutsu Kaisen + - type: German + title: Jujutsu Kaisen + - type: Spanish + title: Jujutsu Kaisen + - type: French + title: Jujutsu Kaisen + title: Jujutsu Kaisen + title_english: Jujutsu Kaisen + title_japanese: 呪術廻戦 + title_synonyms: + - Sorcery Fight + - JJK + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2020-10-03T00:00:00+00:00' + to: '2021-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2020 + to: + day: 27 + month: 3 + year: 2021 + string: Oct 3, 2020 to Mar 27, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.5 + scored_by: 2000409 + rank: 164 + popularity: 11 + members: 3035046 + favorites: 96310 + synopsis: |- + Idly indulging in baseless paranormal activities with the Occult Club, high schooler Yuuji Itadori spends his days at either the clubroom or the hospital, where he visits his bedridden grandfather. However, this leisurely lifestyle soon takes a turn for the strange when he unknowingly encounters a cursed item. Triggering a chain of supernatural occurrences, Yuuji finds himself suddenly thrust into the world of Curses—dreadful beings formed from human malice and negativity—after swallowing the said item, revealed to be a finger belonging to the demon Sukuna Ryoumen, the King of Curses. + + Yuuji experiences first-hand the threat these Curses pose to society as he discovers his own newfound powers. Introduced to the Tokyo Prefectural Jujutsu High School, he begins to walk down a path from which he cannot return—the path of a Jujutsu sorcerer. + + [Written by MAL Rewrite] + background: Winner of the Anime of the Year (TV Series) at the 2022 Tokyo Anime Award Festival (TAAF). + season: fall + year: 2020 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2260 + type: anime + name: Sumzap + url: https://myanimelist.net/anime/producer/2260/Sumzap + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40456 + url: https://myanimelist.net/anime/40456/Kimetsu_no_Yaiba_Movie__Mugen_Ressha-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1704/106947.jpg + small_image_url: https://myanimelist.net/images/anime/1704/106947t.jpg + large_image_url: https://myanimelist.net/images/anime/1704/106947l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1704/106947.webp + small_image_url: https://myanimelist.net/images/anime/1704/106947t.webp + large_image_url: https://myanimelist.net/images/anime/1704/106947l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PrZ0O8Qp18s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba Movie: Mugen Ressha-hen' + - type: Synonym + title: 'Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen' + - type: Synonym + title: 'Kimetsu no Yaiba: Infinity Train' + - type: Synonym + title: 'Demon Slayer Movie: Infinity Train' + - type: Japanese + title: 劇場版 鬼滅の刃 無限列車編 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train' + - type: Spanish + title: Guardianes De La Noche - Kimetsu No Yaiba - Tren Infinito + - type: French + title: 'Demon Slayer - Kimetsu no Yaiba - Le film : Le train de l''Infini' + title: 'Kimetsu no Yaiba Movie: Mugen Ressha-hen' + title_english: 'Demon Slayer: Kimetsu no Yaiba - The Movie: Mugen Train' + title_japanese: 劇場版 鬼滅の刃 無限列車編 + title_synonyms: + - 'Gekijouban Kimetsu no Yaiba: Mugen Ressha-hen' + - 'Kimetsu no Yaiba: Infinity Train' + - 'Demon Slayer Movie: Infinity Train' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-10-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 10 + year: 2020 + to: + day: null + month: null + year: null + string: Oct 16, 2020 + duration: 1 hr 56 min + rating: R - 17+ (violence & profanity) + score: 8.54 + scored_by: 1181580 + rank: 143 + popularity: 64 + members: 1777477 + favorites: 13498 + synopsis: |- + After a string of mysterious disappearances begin to plague a train, the Demon Slayer Corps' multiple attempts to remedy the problem prove fruitless. To prevent further casualties, the Flame Pillar, Kyoujurou Rengoku, takes it upon himself to eliminate the threat. Accompanying him are some of the Corps' most promising new blood: Tanjirou Kamado, Zenitsu Agatsuma, and Inosuke Hashibira, who all hope to witness the fiery feats of this model demon slayer firsthand. + + Unbeknownst to them, the demonic forces responsible for the disappearances have already put their sinister plan in motion. Under this demonic presence, the group must muster every ounce of their willpower and draw their swords to save all two hundred passengers onboard. As things begin to spiral out of control, Tanjirou's resolve and commitment to duty are put to the test. + + [Written by MAL Rewrite] + background: 'The worldwide box office total for Kimetsu no Yaiba Movie: Mugen Ressha-hen is over $503 million from more + than 41 million tickets sold, making it the highest-grossing film of 2020 as well as the highest-grossing anime and + Japanese film of all time. It was the first time in the history of cinema that a non-Hollywood production topped the + annual worldwide box office. It also became the highest-grossing R-rated animated film of all time.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40776 + url: https://myanimelist.net/anime/40776/Haikyuu_To_the_Top_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1453/106768.jpg + small_image_url: https://myanimelist.net/images/anime/1453/106768t.jpg + large_image_url: https://myanimelist.net/images/anime/1453/106768l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1453/106768.webp + small_image_url: https://myanimelist.net/images/anime/1453/106768t.webp + large_image_url: https://myanimelist.net/images/anime/1453/106768l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QiMriorA2UY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haikyuu!! To the Top Part 2 + - type: Synonym + title: Haikyu!! TO THE TOP 2nd-cour + - type: Synonym + title: Haikyu!! TO THE TOP Part 2 + - type: Japanese + title: ハイキュー TO THE TOP 第2クール + - type: English + title: Haikyu!! To the Top 2nd-cour + - type: German + title: Haikyu!! Vierte Staffel 4 + - type: Spanish + title: Haikyu!! Los Ases del Vóley Temporada 4 + - type: French + title: Haikyu!! Saison 4 Cour 2 + title: Haikyuu!! To the Top Part 2 + title_english: Haikyu!! To the Top 2nd-cour + title_japanese: ハイキュー TO THE TOP 第2クール + title_synonyms: + - Haikyu!! TO THE TOP 2nd-cour + - Haikyu!! TO THE TOP Part 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-03T00:00:00+00:00' + to: '2020-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2020 + to: + day: 19 + month: 12 + year: 2020 + string: Oct 3, 2020 to Dec 19, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.56 + scored_by: 554465 + rank: 128 + popularity: 219 + members: 928273 + favorites: 6506 + synopsis: |- + Once called a fallen powerhouse and known as "Flightless Crows," Karasuno High School has finally taken flight at nationals. With a comprehensive performance against Tsubakihara Academy in their first match, the team is now facing its toughest opponent yet: the runners-up of the last Spring Tournament, Inarizaki High School. Furthermore, dealing with the formidable twin Miya brothers only makes things more difficult for Karasuno. + + As soon as the match begins, Karasuno is overwhelmed by all the noise and jeers from the supporters of Inarizaki High but rekindles its strength thanks to its own loyal fans. Karasuno also gains some momentum by utilizing an attack centered on Shouyou Hinata, but the eccentric play of Atsumu and Osamu Miya delivers an unexpected blow that leaves their opponent astounded. + + Things are bound to get intense as the match progresses between these two teams. Will Karasuno be able to defeat Inarizaki High and overcome the hurdles that threaten its pursuit to the top? + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41389 + url: https://myanimelist.net/anime/41389/Tonikaku_Kawaii + images: + jpg: + image_url: https://myanimelist.net/images/anime/1613/108722.jpg + small_image_url: https://myanimelist.net/images/anime/1613/108722t.jpg + large_image_url: https://myanimelist.net/images/anime/1613/108722l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1613/108722.webp + small_image_url: https://myanimelist.net/images/anime/1613/108722t.webp + large_image_url: https://myanimelist.net/images/anime/1613/108722l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3M7w-ROU62U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tonikaku Kawaii + - type: Synonym + title: Generally Cute + - type: Synonym + title: Fly Me to the Moon + - type: Japanese + title: トニカクカワイイ + - type: English + title: 'Tonikawa: Over The Moon For You' + - type: German + title: 'TONIKAWA: Over the Moon For You' + - type: Spanish + title: 'Tonikawa: Over the Moon For You' + - type: French + title: 'TONIKAWA: Over the Moon For You' + title: Tonikaku Kawaii + title_english: 'Tonikawa: Over The Moon For You' + title_japanese: トニカクカワイイ + title_synonyms: + - Generally Cute + - Fly Me to the Moon + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-03T00:00:00+00:00' + to: '2020-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2020 + to: + day: 19 + month: 12 + year: 2020 + string: Oct 3, 2020 to Dec 19, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 471244 + rank: 1094 + popularity: 262 + members: 839630 + favorites: 10510 + synopsis: "Nasa Yuzaki is determined to leave his name in the history books. Ranking first in the national mock exam\ + \ and aiming for a distinguished high school, he is certain that he has his whole life mapped out. However, fate is\ + \ a fickle mistress. On his way home one snowy evening, Nasa's eyes fall upon a peerless beauty across the street.\ + \ Bewitched, Nasa tries to approach her—only to get blindsided by an oncoming truck. \n\nThankfully, his life is spared\ + \ due to the girl's swift action. Bleeding by the side of an ambulance, he watches as the girl walks away under the\ + \ moonlight—reminiscent of Princess Kaguya leaving for the moon. Refusing to let this chance meeting end, he forces\ + \ his crippled body to chase after her and asks her out. Surprised by his foolhardiness and pure resolve, the girl\ + \ accepts his confession under a single condition: they can only be together if he marries her!\n\n[Written by MAL\ + \ Rewrite]" + background: '' + season: fall + year: 2020 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: + - mal_id: 3051 + type: anime + name: Anime Limited + url: https://myanimelist.net/anime/producer/3051/Anime_Limited + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40454 + url: https://myanimelist.net/anime/40454/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1523/108380.jpg + small_image_url: https://myanimelist.net/images/anime/1523/108380t.jpg + large_image_url: https://myanimelist.net/images/anime/1523/108380l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1523/108380.webp + small_image_url: https://myanimelist.net/images/anime/1523/108380t.webp + large_image_url: https://myanimelist.net/images/anime/1523/108380l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hXTqP_o_Ylw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III + - type: Synonym + title: DanMachi 3rd Season + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon 3rd Season + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうかIII + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? III + - type: German + title: Danmachi Is It Wrong to Try to Pick Up Girls in a Dungeon? III + - type: Spanish + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? (Danmachi) III + - type: French + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? SAISON 3 + title: Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka III + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? III + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうかIII + title_synonyms: + - DanMachi 3rd Season + - Is It Wrong That I Want to Meet You in a Dungeon 3rd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-03T00:00:00+00:00' + to: '2020-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2020 + to: + day: 19 + month: 12 + year: 2020 + string: Oct 3, 2020 to Dec 19, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 357303 + rank: 2368 + popularity: 356 + members: 680593 + favorites: 1973 + synopsis: |- + Upon his run-in with a Vouivre—a monster known to be very dangerous—Hestia Familia's captain Bell Cranel is struck with incomprehension. Despite its preceding reputation, the supposed bloodthirsty creature happens to be crying and flees from a group of adventurers. The monster, taking the form of a terrified little girl, prompts Bell to swiftly decide to hide her. Unbeknownst to him, this act of kindness will cause massive repercussions that will soon echo throughout the entire city of Orario. + + [Written by MAL Rewrite] + background: The series adapts the volumes 9-11 of the light novel of Fujino Omori's series of the same title. Dungeon + ni Deai wo Motomeru no wa Machigatteiru Darou ka III was initially planned to broadcast in July 2020, but was delayed + to October 2020 due to the COVID-19 pandemic. The series was released on Blu-ray and DVD in four volumes from December + 23, 2020 to March 26, 2021. + season: fall + year: 2020 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40787 + url: https://myanimelist.net/anime/40787/Josee_to_Tora_to_Sakana-tachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1714/108892.jpg + small_image_url: https://myanimelist.net/images/anime/1714/108892t.jpg + large_image_url: https://myanimelist.net/images/anime/1714/108892l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1714/108892.webp + small_image_url: https://myanimelist.net/images/anime/1714/108892t.webp + large_image_url: https://myanimelist.net/images/anime/1714/108892l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sw07I2OH4Ho?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Josee to Tora to Sakana-tachi + - type: Japanese + title: ジョゼと虎と魚たち + - type: English + title: Josee, the Tiger and the Fish + - type: German + title: Josie, der Tiger und die Fische. + - type: Spanish + title: Josee, el Tigre y los Peces + - type: French + title: Josée, Le Tigre et Les Poissons. + title: Josee to Tora to Sakana-tachi + title_english: Josee, the Tiger and the Fish + title_japanese: ジョゼと虎と魚たち + title_synonyms: [] + type: Movie + source: Novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2020-12-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 12 + year: 2020 + to: + day: null + month: null + year: null + string: Dec 25, 2020 + duration: 1 hr 38 min + rating: PG-13 - Teens 13 or older + score: 8.38 + scored_by: 277172 + rank: 243 + popularity: 477 + members: 531481 + favorites: 7219 + synopsis: |- + Equipped with his passion for diving and admiration for marine biology, university student Tsuneo Suzukawa tries his best to juggle several part-time jobs to earn enough money to study abroad. But one night, in a fateful accident, he meets a girl in a wheelchair, driving his current path into a detour. + + The girl, Kumiko—who prefers to be called "Josee"—initially comes off as rude. Tsuneo, however, is then convinced by Josee's grandmother to take on the paid job to be Josee's caretaker. Despite being annoyed with her bossy demeanor, Tsuneo sees the opportunity to save more funds to support his academic dream. Nonetheless, after putting up with Josee's behavior for some time, Tsuneo tries to quit, only to discover Josee's dreams of traversing the outside world—to experience a life free from her crippling condition. + + Changing his mind, Tsuneo decides to accompany Josee in exploring the wonders that the world has to offer. Through their time together, the two begin to realize that the traits that bind them may be vital toward fulfilling their respective aspirations. + + [Written by MAL Rewrite] + background: Josee to Tora to Sakana-tachi was adapted from a 1984 short story collection of the same name. It was set + to have its theatrical release in Japan in Summer 2020. However, due to the COVID-19 pandemic, the movie was postponed + until December 25, 2020. Prior to its release, the anime film was selected as a special invitation film for the 33rd + Tokyo International Film Festival. It was also nominated for the 44th Japan Academy Prize in the Animation for Excellence + award. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + - mal_id: 2443 + type: anime + name: Movie Walker + url: https://myanimelist.net/anime/producer/2443/Movie_Walker + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: [] + - mal_id: 40911 + url: https://myanimelist.net/anime/40911/Yuukoku_no_Moriarty + images: + jpg: + image_url: https://myanimelist.net/images/anime/1464/108330.jpg + small_image_url: https://myanimelist.net/images/anime/1464/108330t.jpg + large_image_url: https://myanimelist.net/images/anime/1464/108330l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1464/108330.webp + small_image_url: https://myanimelist.net/images/anime/1464/108330t.webp + large_image_url: https://myanimelist.net/images/anime/1464/108330l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YA_zLUnLaQM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuukoku no Moriarty + - type: Synonym + title: Moriarty's Patriotism + - type: Japanese + title: 憂国のモリアーティ + - type: English + title: Moriarty the Patriot + - type: German + title: Moriarty the Patriot + - type: French + title: Moriarty the Patriot + title: Yuukoku no Moriarty + title_english: Moriarty the Patriot + title_japanese: 憂国のモリアーティ + title_synonyms: + - Moriarty's Patriotism + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2020-10-11T00:00:00+00:00' + to: '2020-12-20T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2020 + to: + day: 20 + month: 12 + year: 2020 + string: Oct 11, 2020 to Dec 20, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.18 + scored_by: 210689 + rank: 492 + popularity: 510 + members: 508128 + favorites: 8349 + synopsis: "During the late 19th century, Great Britain has become the greatest empire the world has ever known. Hidden\ + \ within its success, the nation's rigid economic hierarchy dictates the value of one's life solely on status and\ + \ wealth. To no surprise, the system favors the aristocracy at the top and renders it impossible for the working class\ + \ to ascend the ranks.\n\nWilliam James Moriarty, the second son of the Moriarty household, lives as a regular noble\ + \ while also being a consultant for the common folk to give them a hand and solve their problems. However, deep inside\ + \ him lies a desire to destroy the current structure that dominates British society and those who benefit from it.\ + \ \n\nAlongside his brothers Albert and Louis, William will do anything it takes to change the filthy world he lives\ + \ in—even if blood must be spilled.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2020 + broadcast: + day: Sundays + time: '23:53' + timezone: Asia/Tokyo + string: Sundays at 23:53 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41433 + url: https://myanimelist.net/anime/41433/Akudama_Drive + images: + jpg: + image_url: https://myanimelist.net/images/anime/1468/109172.jpg + small_image_url: https://myanimelist.net/images/anime/1468/109172t.jpg + large_image_url: https://myanimelist.net/images/anime/1468/109172l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1468/109172.webp + small_image_url: https://myanimelist.net/images/anime/1468/109172t.webp + large_image_url: https://myanimelist.net/images/anime/1468/109172l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/41k3bjceNIU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akudama Drive + - type: Japanese + title: アクダマドライブ + - type: English + title: Akudama Drive + title: Akudama Drive + title_english: Akudama Drive + title_japanese: アクダマドライブ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-08T00:00:00+00:00' + to: '2020-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2020 + to: + day: 24 + month: 12 + year: 2020 + string: Oct 8, 2020 to Dec 24, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.57 + scored_by: 226963 + rank: 1913 + popularity: 533 + members: 491475 + favorites: 4050 + synopsis: "The bustling metropolis of Kansai, where cybernetic screens litter the neon landscape, may seem like a technological\ + \ utopia at first glance. But in the dark alleys around the brightly-lit buildings, an unforgiving criminal underbelly\ + \ still exists in the form of fugitives known as \"Akudama.\" \n\nNo stranger to these individuals, Kansai police\ + \ begin the countdown to the public execution of an infamous Akudama \"Cutthroat,\" guilty of killing 999 people.\ + \ However, a mysterious message is sent to several elite Akudama, enlisting them to free Cutthroat for a substantial\ + \ amount of money. An invisible hand seeks to gather these dangerous personas in one place, ensuring that the execution\ + \ is well underway to becoming a full-blown bloodbath.\n\n[Written by MAL Rewrite]" + background: Each episode of the series shares a title with famous movies whose story shares themes and plot elements + with the episode. + season: fall + year: 2020 + broadcast: + day: Thursdays + time: '21:30' + timezone: Asia/Tokyo + string: Thursdays at 21:30 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 127 + type: anime + name: Yomiko Advertising + url: https://myanimelist.net/anime/producer/127/Yomiko_Advertising + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1313 + type: anime + name: Amuse + url: https://myanimelist.net/anime/producer/1313/Amuse + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1886 + type: anime + name: Aeon Entertainment + url: https://myanimelist.net/anime/producer/1886/Aeon_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 40571 + url: https://myanimelist.net/anime/40571/Majo_no_Tabitabi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1802/108501.jpg + small_image_url: https://myanimelist.net/images/anime/1802/108501t.jpg + large_image_url: https://myanimelist.net/images/anime/1802/108501l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1802/108501.webp + small_image_url: https://myanimelist.net/images/anime/1802/108501t.webp + large_image_url: https://myanimelist.net/images/anime/1802/108501l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bfe08q9jer8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Majo no Tabitabi + - type: Japanese + title: 魔女の旅々 + - type: English + title: 'Wandering Witch: The Journey of Elaina' + - type: German + title: Elainas Reise + - type: French + title: 'Wandering Witch: The Journey of Elaina' + title: Majo no Tabitabi + title_english: 'Wandering Witch: The Journey of Elaina' + title_japanese: 魔女の旅々 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-02T00:00:00+00:00' + to: '2020-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2020 + to: + day: 18 + month: 12 + year: 2020 + string: Oct 2, 2020 to Dec 18, 2020 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.56 + scored_by: 210066 + rank: 1975 + popularity: 575 + members: 458664 + favorites: 4428 + synopsis: |- + Since childhood, Elaina has always been fascinated by the stories written within her favorite book, especially those about Nike, a renowned witch who had numerous great travels across the world. Wanting to experience the awe of adventure herself, Elaina strives to become a witch, and despite the numerous trials that come her way, she eventually succeeds. + + Now a full-fledged witch, Elaina finally embarks on her long-awaited journey, in which she meets many people along the way, learning their various stories. Through all of this, she explores the world at its fullest—experiencing both its bright and dark sides—starting her legendary tale. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 40497 + url: https://myanimelist.net/anime/40497/Mahouka_Koukou_no_Rettousei__Raihousha-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1322/114329.jpg + small_image_url: https://myanimelist.net/images/anime/1322/114329t.jpg + large_image_url: https://myanimelist.net/images/anime/1322/114329l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1322/114329.webp + small_image_url: https://myanimelist.net/images/anime/1322/114329t.webp + large_image_url: https://myanimelist.net/images/anime/1322/114329l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZG7Z5ccAa4I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mahouka Koukou no Rettousei: Raihousha-hen' + - type: Synonym + title: Mahouka Koukou no Rettousei 2nd Season + - type: Synonym + title: The Irregular at Magic High School Season 2 + - type: Japanese + title: 魔法科高校の劣等生 来訪者編 + - type: English + title: 'The Irregular at Magic High School: Visitor Arc' + - type: German + title: 'The Irregular at Magic High School: Visitor Arc' + - type: French + title: 'The Irregular at Magic High School: Visitor Arc' + title: 'Mahouka Koukou no Rettousei: Raihousha-hen' + title_english: 'The Irregular at Magic High School: Visitor Arc' + title_japanese: 魔法科高校の劣等生 来訪者編 + title_synonyms: + - Mahouka Koukou no Rettousei 2nd Season + - The Irregular at Magic High School Season 2 + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-10-04T00:00:00+00:00' + to: '2020-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2020 + to: + day: 27 + month: 12 + year: 2020 + string: Oct 4, 2020 to Dec 27, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 182156 + rank: 3491 + popularity: 684 + members: 396424 + favorites: 1250 + synopsis: |- + Following the events of "Scorched Halloween," the world is introduced to a terrifyingly powerful Strategic class magician. In an effort to uncover the identity of this person, the United States of the North American Continent (USNA) dispatches the most powerful asset in its arsenal to Japan on a covert mission—the elite magician unit "Stars" and its commander, Angie Sirius. + + At First High School, Tatsuya Shiba and his friends are having a farewell party for Shizuku Kitayama, who is leaving to study abroad in the USNA as part of an exchange program. In her place, the group welcomes the beautiful Angelina "Lina" Kudou Shields. Around the same time, Tatsuya is informed about the USNA's plan to uncover his true identity. + + Elsewhere in Tokyo, numerous reports arise of seemingly random bodies found drained of blood. Dubbed as the works of a vampire, it does not take long for Tatsuya to connect the dots and realize that it is almost impossible for the timing of these events to be mere coincidence. + + [Written by MAL Rewrite] + background: 'Mahouka Koukou no Rettousei: Raihousha-hen was released on Blu-ray and DVD in five volumes from December + 16, 2020, to April 14, 2021.' + season: fall + year: 2020 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 41619 + url: https://myanimelist.net/anime/41619/Munou_na_Nana + images: + jpg: + image_url: https://myanimelist.net/images/anime/1301/110433.jpg + small_image_url: https://myanimelist.net/images/anime/1301/110433t.jpg + large_image_url: https://myanimelist.net/images/anime/1301/110433l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1301/110433.webp + small_image_url: https://myanimelist.net/images/anime/1301/110433t.webp + large_image_url: https://myanimelist.net/images/anime/1301/110433l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kb9NI_quOxM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Munou na Nana + - type: Japanese + title: 無能なナナ + - type: English + title: Talentless Nana + - type: German + title: Talentless Nana + - type: French + title: Talentless Nana + title: Munou na Nana + title_english: Talentless Nana + title_japanese: 無能なナナ + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-10-04T00:00:00+00:00' + to: '2020-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2020 + to: + day: 27 + month: 12 + year: 2020 + string: Oct 4, 2020 to Dec 27, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.17 + scored_by: 184414 + rank: 4160 + popularity: 722 + members: 379602 + favorites: 1746 + synopsis: "Fifty years ago, horrific creatures dubbed as the \"enemies of humanity\" suddenly appeared around the world.\ + \ To combat these threats, teenagers gifted with supernatural abilities called \"Talents\"—such as pyrokinesis and\ + \ time travel—hone their powers at an academy on a secluded island. \n\nNanao Nakajima, however, is quite different\ + \ from the others on the island: he has no Talent. With many \"Talented\" teenagers around him, Nanao is often a target\ + \ for bullying, but even so, he still strives to complete his training. Soon after, two transfer students, the mysterious\ + \ Kyouya Onodera and the mind-reading Nana Hiiragi, join the class. But just as everyone starts blending as comrades-in-arms,\ + \ mysterious disappearances begin to threaten the class's entire foundation.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2020 + broadcast: + day: Sundays + time: '21:30' + timezone: Asia/Tokyo + string: Sundays at 21:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2148 + type: anime + name: Show Corporation + url: https://myanimelist.net/anime/producer/2148/Show_Corporation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + studios: + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + genres: + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40595 + url: https://myanimelist.net/anime/40595/Kimi_to_Boku_no_Saigo_no_Senjou_Aruiwa_Sekai_ga_Hajimaru_Seisen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1100/109044.jpg + small_image_url: https://myanimelist.net/images/anime/1100/109044t.jpg + large_image_url: https://myanimelist.net/images/anime/1100/109044l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1100/109044.webp + small_image_url: https://myanimelist.net/images/anime/1100/109044t.webp + large_image_url: https://myanimelist.net/images/anime/1100/109044l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8nAMu3xE2_0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen + - type: Synonym + title: The Last Battlefield Between You and I + - type: Synonym + title: or Perhaps the Beginning of the World's Holy War + - type: Synonym + title: Kimisen + - type: Japanese + title: キミと僕の最後の戦場、あるいは世界が始まる聖戦 + - type: English + title: Our Last Crusade or the Rise of a New World + - type: German + title: Our Last Crusade or the Rise of a New World + - type: French + title: Our Last Crusade or the Rise of a New World + title: Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen + title_english: Our Last Crusade or the Rise of a New World + title_japanese: キミと僕の最後の戦場、あるいは世界が始まる聖戦 + title_synonyms: + - The Last Battlefield Between You and I + - or Perhaps the Beginning of the World's Holy War + - Kimisen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-07T00:00:00+00:00' + to: '2020-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2020 + to: + day: 23 + month: 12 + year: 2020 + string: Oct 7, 2020 to Dec 23, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 156395 + rank: 6794 + popularity: 780 + members: 352653 + favorites: 1471 + synopsis: |- + A force known as Astral power permeates throughout the world, wielded by astral mages. Fearing its destructive power, the "Empire" persecutes those who show their abilities. The tormented mages then founded the Nebulis Sovereignty to flee from their oppressors. Since then, the two nations have been in bitter conflict, the war still going strong for more than a century. + + After committing the great crime of freeing an imprisoned witch, the talented knight Iska is sentenced to prison. A year later, the Empire leadership suddenly decides to set him free, with the condition that he hunts down a fearsome mage known as the "Ice Calamity Witch." Hoping to end the war, Iska agrees. Coincidentally, the Ice Calamity Witch herself, Aliceliese "Alice" Lou Nebulis XI, also wishes for peace and is willing to do everything she can to bring down the Empire. + + As Iska and Alice both yearn for a crusade that will turn the world into one without struggle, woe, or pain, the strings of fate tie them ever closer together, creating a bond that goes beyond something fabricated by mere coincidence. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2290 + type: anime + name: A3 + url: https://myanimelist.net/anime/producer/2290/A3 + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 41380 + url: https://myanimelist.net/anime/41380/100-man_no_Inochi_no_Ue_ni_Ore_wa_Tatteiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1506/117717.jpg + small_image_url: https://myanimelist.net/images/anime/1506/117717t.jpg + large_image_url: https://myanimelist.net/images/anime/1506/117717l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1506/117717.webp + small_image_url: https://myanimelist.net/images/anime/1506/117717t.webp + large_image_url: https://myanimelist.net/images/anime/1506/117717l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FyBU0SZIYx0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 100-man no Inochi no Ue ni Ore wa Tatteiru + - type: Synonym + title: I'm standing on 1,000,000 lives. + - type: Japanese + title: 100万の命の上に俺は立っている + - type: English + title: I'm Standing on a Million Lives + - type: German + title: I'm standing on 1,000,000 lives. + - type: Spanish + title: I'm standing on 1,000,000 lives. + - type: French + title: I'm standing on 1,000,000 lives. + title: 100-man no Inochi no Ue ni Ore wa Tatteiru + title_english: I'm Standing on a Million Lives + title_japanese: 100万の命の上に俺は立っている + title_synonyms: + - I'm standing on 1,000,000 lives. + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-02T00:00:00+00:00' + to: '2020-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2020 + to: + day: 18 + month: 12 + year: 2020 + string: Oct 2, 2020 to Dec 18, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.52 + scored_by: 166789 + rank: 8013 + popularity: 838 + members: 334964 + favorites: 723 + synopsis: |- + Yuusuke Yotsuya has always disliked Tokyo, but he especially hates the people who live in it. He would rather thrive in a virtual world than try to get along with those around him. At the end of one school day, he sees the popular athlete Iu Shindou talking to Kusue Hakozaki, who spends less time in school due to illness. But when he looks away from the two and back again, they have seemingly disappeared. + + Mere moments later, Yotsuya enters a state of free-fall, and the world begins to change around him. Dropping into a large pool of water, the first thing he sees when he comes to his senses is an assortment of enormous monsters. He soon finds out that he has been brought into a game world by Shindou and Hakozaki and that he must complete a quest within 14 days. + + There is one thing that separates this world from the real world: anyone who dies will be brought back to life in 30 seconds as long as one party member is alive. Tasked with numerous quests that increase in difficulty over time, Yotsuya, Shindou, and Hakozaki attempt to discover the mystery behind the perplexing game world. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41345 + url: https://myanimelist.net/anime/41345/Noblesse + images: + jpg: + image_url: https://myanimelist.net/images/anime/1903/111646.jpg + small_image_url: https://myanimelist.net/images/anime/1903/111646t.jpg + large_image_url: https://myanimelist.net/images/anime/1903/111646l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1903/111646.webp + small_image_url: https://myanimelist.net/images/anime/1903/111646t.webp + large_image_url: https://myanimelist.net/images/anime/1903/111646l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m4GSDf8vlNs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Noblesse + - type: Synonym + title: 노블레스 + - type: Japanese + title: NOBLESSE -ノブレス- + - type: English + title: Noblesse + title: Noblesse + title_english: Noblesse + title_japanese: NOBLESSE -ノブレス- + title_synonyms: + - 노블레스 + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2020-10-08T00:00:00+00:00' + to: '2020-12-31T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2020 + to: + day: 31 + month: 12 + year: 2020 + string: Oct 8, 2020 to Dec 31, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.9 + scored_by: 139974 + rank: 5706 + popularity: 856 + members: 328163 + favorites: 1295 + synopsis: "The \"Noblesse\" Cadis Etrama di Raizel, also known as \"Rai,\" is enrolled in Ye Ran High School by his\ + \ servant Frankenstein to stay hidden from the sights of the Union, a mysterious organization out for Rai's blood.\ + \ Rai commences his life as a student, making himself familiar with his classmates and the daily activities of humans.\ + \ However, his new life is far from peaceful, and Rai is soon forced to save his new friends from the hands of the\ + \ Union that had abducted them.\n \nMeanwhile, M-21—a Union agent gone rogue during Rai's rescue operation—joins\ + \ the Ye Ran High School security staff after a proposition by the school's director, who happens to be none other\ + \ than Frankenstein himself. On the surface, M-21 is a prim and proper employee, but in truth he is shackled by his\ + \ former ties to the Union and the inevitable consequences of betraying the organization.\n \nTo further complicate\ + \ matters, Nobles Regis K. Landegre and Seira J. Loyard enroll in the same school to investigate the Noblesse. While\ + \ the Union conducts a manhunt for M-21 to extract clues regarding their missing agents, Rai is forced to keep his\ + \ identity hidden while protecting all that he holds dear.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2020 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2044 + type: anime + name: Naver Webtoons + url: https://myanimelist.net/anime/producer/2044/Naver_Webtoons + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 41006 + url: https://myanimelist.net/anime/41006/Higurashi_no_Naku_Koro_ni_Gou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1716/111533.jpg + small_image_url: https://myanimelist.net/images/anime/1716/111533t.jpg + large_image_url: https://myanimelist.net/images/anime/1716/111533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1716/111533.webp + small_image_url: https://myanimelist.net/images/anime/1716/111533t.webp + large_image_url: https://myanimelist.net/images/anime/1716/111533l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/i4GaPCEiHIg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Higurashi no Naku Koro ni Gou + - type: Synonym + title: When They Cry + - type: Synonym + title: 'Higurashi: When They Cry - New' + - type: Synonym + title: Higurashi no Naku Koro ni (2020) + - type: Synonym + title: When the Cicadas Cry + - type: Synonym + title: The Moment the Cicadas Cry + - type: Japanese + title: ひぐらしのなく頃に業 + - type: English + title: 'Higurashi: When They Cry – Gou' + - type: German + title: 'Higurashi: When They Cry GOU' + - type: Spanish + title: Cuando las Cigarras Lloran + - type: French + title: 'Higurashi: When They Cry - GOU' + title: Higurashi no Naku Koro ni Gou + title_english: 'Higurashi: When They Cry – Gou' + title_japanese: ひぐらしのなく頃に業 + title_synonyms: + - When They Cry + - 'Higurashi: When They Cry - New' + - Higurashi no Naku Koro ni (2020) + - When the Cicadas Cry + - The Moment the Cicadas Cry + type: TV + source: Visual novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2020-10-01T00:00:00+00:00' + to: '2021-03-19T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2020 + to: + day: 19 + month: 3 + year: 2021 + string: Oct 1, 2020 to Mar 19, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.22 + scored_by: 102844 + rank: 3822 + popularity: 925 + members: 304036 + favorites: 1657 + synopsis: |- + Rika Furude and her group of friends live in the small mountain village of Hinamizawa; in June 1983, they welcome transfer student Keiichi Maebara into their ranks, making him the only boy in their group. After school, they have fun playing games and spending each day living their lives to the fullest. Despite this seemingly normal routine, Keiichi begins noticing strange behavior from his friends, who seem to be hiding the town's dark secrets from him. + + Elsewhere, a certain person watches these increasingly unsettling events unfold and remembers all the times that this, and other similar stories, have played out. Using that knowledge, this person decides to fix these broken worlds. However, when certain variables change, the individual is faced with a horrifying realization: they have no idea what to expect or how to stop the impending tragedy. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1632 + type: anime + name: Daiichi Shokai + url: https://myanimelist.net/anime/producer/1632/Daiichi_Shokai + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2242 + type: anime + name: ELF-IN + url: https://myanimelist.net/anime/producer/2242/ELF-IN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 41468 + url: https://myanimelist.net/anime/41468/Burn_the_Witch + images: + jpg: + image_url: https://myanimelist.net/images/anime/1993/108967.jpg + small_image_url: https://myanimelist.net/images/anime/1993/108967t.jpg + large_image_url: https://myanimelist.net/images/anime/1993/108967l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1993/108967.webp + small_image_url: https://myanimelist.net/images/anime/1993/108967t.webp + large_image_url: https://myanimelist.net/images/anime/1993/108967l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HEnPo8Xcmqk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Burn the Witch + - type: Japanese + title: BURN THE WITCH + - type: German + title: Burn The Witch + title: Burn the Witch + title_english: null + title_japanese: BURN THE WITCH + title_synonyms: [] + type: ONA + source: Manga + episodes: 3 + status: Finished Airing + airing: false + aired: + from: '2020-10-02T00:00:00+00:00' + to: null + prop: + from: + day: 2 + month: 10 + year: 2020 + to: + day: null + month: null + year: null + string: Oct 2, 2020 + duration: 21 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 135378 + rank: 4254 + popularity: 985 + members: 285441 + favorites: 756 + synopsis: |- + Although citizens of London view dragons as a fairy-tale myth, statistics confirm that 72% of the city's deaths are caused by these grotesque beings. Unable to see them, the public is oblivious to their existence. However, in a mirror dimension to "Front London," exists a place where dragons can be seen with the naked eye—"Reverse London." + + Ninny Spangcole is a member of a popular girl group. But in Reverse London, she works as a "Witch" at Wing Bind—an organization that dispatches agents to exterminate the beasts and protect the citizens of both Londons using magic. Ninny and her partner, Noel Niihashi, in addition to their jobs, safeguard Balgo Ywain Parks, a young man with an odd connection to the dragons. + + Thanks to the Wing Bind's hard work, there were no fatal dragon attacks for almost a century. But the peace shatters when Balgo's presence unexpectedly causes a Dark Dragon to wreak havoc in the city. The witches are further inconvenienced when Ninny's troublesome former bandmate appears in Reverse London—in tandem with another powerful dragon. + + [Written by MAL Rewrite] + background: 'Burn the Witch is based on an action fantasy one-shot manga by Tite Kubo and takes place in the Bleach + universe. In October 2020, Burn the Witch collaborated with the mobile gacha game Bleach: Brave Souls, where Ninny + Spangcole, Noel Niihashi, and Bruno Bangnyfe feature as playable characters.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1033 + type: anime + name: Studio Colorido + url: https://myanimelist.net/anime/producer/1033/Studio_Colorido + - mal_id: 2456 + type: anime + name: team Yamahitsuji + url: https://myanimelist.net/anime/producer/2456/team_Yamahitsuji + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41930 + url: https://myanimelist.net/anime/41930/Kamisama_ni_Natta_Hi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1396/109465.jpg + small_image_url: https://myanimelist.net/images/anime/1396/109465t.jpg + large_image_url: https://myanimelist.net/images/anime/1396/109465l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1396/109465.webp + small_image_url: https://myanimelist.net/images/anime/1396/109465t.webp + large_image_url: https://myanimelist.net/images/anime/1396/109465l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AswIy0M2X_o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamisama ni Natta Hi + - type: Japanese + title: 神様になった日 + - type: English + title: The Day I Became a God + - type: German + title: The Day I Became a God + - type: French + title: The Day I Became a God + title: Kamisama ni Natta Hi + title_english: The Day I Became a God + title_japanese: 神様になった日 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-11T00:00:00+00:00' + to: '2020-12-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2020 + to: + day: 27 + month: 12 + year: 2020 + string: Oct 11, 2020 to Dec 27, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.81 + scored_by: 127111 + rank: 6235 + popularity: 986 + members: 285199 + favorites: 1639 + synopsis: |- + Dressed in a conspicuous outfit and armed with an eccentric spirit, Hina Satou goes around insisting that she is the Asgardian god "Odin." When she crosses paths with a boy named Youta Narukami, she uses her precognition abilities to warn him about an impending catastrophe threatening the end of the world. But being a teenager preoccupied with his problems, Youta finds it hard to believe such a preposterous claim. + + Somehow forced to tag along with her antics, he witnesses the effectiveness of Hina's skills with his own eyes and realizes that she truly is capable of divination. Nevertheless, despite her persistence in being a god, Hina is still a child who desires to see and experience the wonders life has to offer. With the world ending in 30 days, Hina, Youta, and their friends venture forward to create lasting memories they will cherish forever. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 203 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/producer/203/Visual_Arts + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 41312 + url: https://myanimelist.net/anime/41312/Kami-tachi_ni_Hirowareta_Otoko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1654/108801.jpg + small_image_url: https://myanimelist.net/images/anime/1654/108801t.jpg + large_image_url: https://myanimelist.net/images/anime/1654/108801l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1654/108801.webp + small_image_url: https://myanimelist.net/images/anime/1654/108801t.webp + large_image_url: https://myanimelist.net/images/anime/1654/108801l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZhqrSlogE0w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kami-tachi ni Hirowareta Otoko + - type: Synonym + title: The man picked up by the gods + - type: Synonym + title: Kamihiro + - type: Synonym + title: Kamitachi ni Hirowareta Otoko + - type: Japanese + title: 神達に拾われた男 + - type: English + title: By the Grace of the Gods + - type: German + title: By the Grace of the Gods + - type: French + title: By the Grace of the Gods + title: Kami-tachi ni Hirowareta Otoko + title_english: By the Grace of the Gods + title_japanese: 神達に拾われた男 + title_synonyms: + - The man picked up by the gods + - Kamihiro + - Kamitachi ni Hirowareta Otoko + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-04T00:00:00+00:00' + to: '2020-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2020 + to: + day: 20 + month: 12 + year: 2020 + string: Oct 4, 2020 to Dec 20, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.96 + scored_by: 131176 + rank: 5345 + popularity: 1105 + members: 254484 + favorites: 1183 + synopsis: |- + Deep in the forest, far from any human contact, there lives a child named Ryouma Takebayashi. He engages in the rather strange hobby of keeping various types of slimes as pets. Furthermore, despite his young age, he has a sturdy physique and good compatibility for magic. All of this is because, having endured much hardship in his previous life, three gods grace Ryouma with a second chance to pursue one goal: savor the wonders of life. + + After three years of comfortable solitude pass by, Ryouma meets people that will change his current life forever. When he encounters and helps some soldiers tend to their wounded comrade, the group convinces him to accompany them to visit the nearby town's ducal family. Ryouma agrees and soon embarks on a journey to explore the vast world beyond his home. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 779 + type: anime + name: AMG MUSIC + url: https://myanimelist.net/anime/producer/779/AMG_MUSIC + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1401 + type: anime + name: Amusement Media Academy + url: https://myanimelist.net/anime/producer/1401/Amusement_Media_Academy + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 3211 + type: anime + name: AMG Studio + url: https://myanimelist.net/anime/producer/3211/AMG_Studio + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 40397 + url: https://myanimelist.net/anime/40397/Maoujou_de_Oyasumi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1448/108514.jpg + small_image_url: https://myanimelist.net/images/anime/1448/108514t.jpg + large_image_url: https://myanimelist.net/images/anime/1448/108514l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1448/108514.webp + small_image_url: https://myanimelist.net/images/anime/1448/108514t.webp + large_image_url: https://myanimelist.net/images/anime/1448/108514l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k1zuZHvl9ic?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maoujou de Oyasumi + - type: Synonym + title: Sleeping in Devil's Castle + - type: Japanese + title: 魔王城でおやすみ + - type: English + title: Sleepy Princess in the Demon Castle + - type: German + title: Sleepy Princess in the Demon Castle + - type: French + title: Sleepy Princess in the Demon Castle + title: Maoujou de Oyasumi + title_english: Sleepy Princess in the Demon Castle + title_japanese: 魔王城でおやすみ + title_synonyms: + - Sleeping in Devil's Castle + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-06T00:00:00+00:00' + to: '2020-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2020 + to: + day: 22 + month: 12 + year: 2020 + string: Oct 6, 2020 to Dec 22, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.95 + scored_by: 113942 + rank: 835 + popularity: 1130 + members: 249726 + favorites: 2561 + synopsis: |- + The Demon Lord Tasogare's castle is a dark and frightening place, filled to the brim with various monsters. Any soul unfortunate enough to be imprisoned here is sure to be terrified by the horrors within. However, the human princess Aurora Suya Rhys "Syalis" Kaymin is a different case. Rather indifferent to her situation, Syalis worries about one thing and one thing only—sleep. Ever since the demon lord kidnapped her from her kingdom, she has not had a single good night's rest. + + To alleviate her dozen dozing issues, the princess makes do with what she can find in the castle. Whether it be the fur of fluffy demonic teddy bears or the silky, blanket-like bodies of ghost shrouds, everything is but a means to ensure a peaceful slumber. With so many potential materials to craft items that can help her sleep at her disposal, nothing will stop the sleepy princess—not even death. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39790 + url: https://myanimelist.net/anime/39790/Adachi_to_Shimamura + images: + jpg: + image_url: https://myanimelist.net/images/anime/1649/109056.jpg + small_image_url: https://myanimelist.net/images/anime/1649/109056t.jpg + large_image_url: https://myanimelist.net/images/anime/1649/109056l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1649/109056.webp + small_image_url: https://myanimelist.net/images/anime/1649/109056t.webp + large_image_url: https://myanimelist.net/images/anime/1649/109056l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BjMQxHYfxC8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Adachi to Shimamura + - type: Synonym + title: Adashima + - type: Japanese + title: 安達としまむら + - type: English + title: Adachi and Shimamura + - type: German + title: Adachi and Shimamura + - type: French + title: Adachi and Shimamura + title: Adachi to Shimamura + title_english: Adachi and Shimamura + title_japanese: 安達としまむら + title_synonyms: + - Adashima + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-09T00:00:00+00:00' + to: '2020-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2020 + to: + day: 25 + month: 12 + year: 2020 + string: Oct 9, 2020 to Dec 25, 2020 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.1 + scored_by: 85119 + rank: 4561 + popularity: 1318 + members: 212178 + favorites: 1664 + synopsis: |- + Somewhere in the school at noon, one might hear the sound of two girls playing table tennis together as they wait for time to pass by. + + As if by fate, two students—Sakura Adachi and Hougetsu Shimamura—stumble upon each other on the second floor of the school gymnasium. As they gradually foster a budding friendship, their feelings for one another only become more ambiguous. Growing closer by the day, the two must learn to navigate their contrasting personalities as well as determine the depth of their affection for each other. + + The nature of this relationship gradually shifts when one of them starts to develop feelings beyond the boundaries of a platonic relationship. Even so, Adachi and Shimamura must realize if forming a bond stronger than friendship will bring them closer or tear them apart. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + genres: + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 40059 + url: https://myanimelist.net/anime/40059/Golden_Kamuy_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1763/108108.jpg + small_image_url: https://myanimelist.net/images/anime/1763/108108t.jpg + large_image_url: https://myanimelist.net/images/anime/1763/108108l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1763/108108.webp + small_image_url: https://myanimelist.net/images/anime/1763/108108t.webp + large_image_url: https://myanimelist.net/images/anime/1763/108108l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kleb6Uh_vUc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Golden Kamuy 3rd Season + - type: Japanese + title: ゴールデンカムイ + - type: English + title: Golden Kamuy Season 3 + - type: German + title: Golden Kamuy Staffel 3 + - type: Spanish + title: Golden Kamuy Temporada 3 + - type: French + title: Golden Kamuy Saison 3 + title: Golden Kamuy 3rd Season + title_english: Golden Kamuy Season 3 + title_japanese: ゴールデンカムイ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-05T00:00:00+00:00' + to: '2020-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2020 + to: + day: 21 + month: 12 + year: 2020 + string: Oct 5, 2020 to Dec 21, 2020 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.44 + scored_by: 99582 + rank: 194 + popularity: 1387 + members: 201304 + favorites: 1628 + synopsis: |- + After obtaining information about Asirpa from the foreteller Inkarmat, Saichi Sugimoto, Genjirou Tanigaki, and Cikapasi join the Seventh Division's Otonoshin Koito and Hajime Tsukishima on a journey to Karafuto. Heading further north into the freezing Russian territory, they collect any clues about Asirpa's whereabouts they can find and rush after her. + + Meanwhile, Asirpa is unaware of what truly transpired at Abashiri Prison. Deeply disturbed and confused by her father Wilk's past actions, Asirpa follows his old friend Kiroranke to the place where Wilk was born and raised in order to better understand his motives. However, Kiroranke and the master sniper Hyakunosuke Ogata are scheming behind her back. + + Even if they were to obtain all 24 tattooed skins that form a map to the lost Ainu gold, the various factions searching for it now understand that the map is useless without Asirpa. Realizing the danger she could be in, Sugimoto desperately hopes to reach Asirpa first and protect her from the greedy clutches of those who plan to drag her into their sins. + + [Written by MAL Rewrite] + background: Golden Kamuy 3rd Season was released on Blu-ray and DVD in Japan in three volumes from January 29, 2021, + to March 26, 2021. The series was released in the same formats in North America by Funimation Entertainment on October + 5, 2021. + season: fall + year: 2020 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1393 + type: anime + name: Geno Studio + url: https://myanimelist.net/anime/producer/1393/Geno_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40974 + url: https://myanimelist.net/anime/40974/Kuma_Kuma_Kuma_Bear + images: + jpg: + image_url: https://myanimelist.net/images/anime/1413/110712.jpg + small_image_url: https://myanimelist.net/images/anime/1413/110712t.jpg + large_image_url: https://myanimelist.net/images/anime/1413/110712l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1413/110712.webp + small_image_url: https://myanimelist.net/images/anime/1413/110712t.webp + large_image_url: https://myanimelist.net/images/anime/1413/110712l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yCt-m4fhynM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuma Kuma Kuma Bear + - type: Synonym + title: The Bears Bear a Bare Kuma + - type: Japanese + title: くま クマ 熊 ベアー + - type: English + title: Kuma Kuma Kuma Bear + - type: German + title: Kuma Kuma Kuma Bär + title: Kuma Kuma Kuma Bear + title_english: Kuma Kuma Kuma Bear + title_japanese: くま クマ 熊 ベアー + title_synonyms: + - The Bears Bear a Bare Kuma + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-07T00:00:00+00:00' + to: '2020-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2020 + to: + day: 23 + month: 12 + year: 2020 + string: Oct 7, 2020 to Dec 23, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 93818 + rank: 3697 + popularity: 1473 + members: 188567 + favorites: 1062 + synopsis: |- + After fanatically playing the VRMMO World Fantasy Online for almost a year, the shut-in yet relatively affluent 15-year-old Yuna receives a bear costume from the game's administrators. The outfit, while somewhat embarrassing to wear, turns out to have overpowered stats and effects that make her character significantly more powerful. After accepting the bear equipment, she finds herself transported to another in-game world that prevents her from returning to reality. + + Confused and unable to log out, Yuna sets out to explore this new environment. She rescues a girl named Fina from wild wolves, who then guides her to the city of Crimonia. With her eccentric bear attire, however, Yuna stands out wherever she goes, and alongside her boosted fighting prowess, her reputation quickly rises—to the point that people give her the nickname "Bloody Bear." + + Undeterred by this change in her life, Yuna decides to take on the role of an adventurer and fully enjoy herself in her new world. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2381 + type: anime + name: Crest + url: https://myanimelist.net/anime/producer/2381/Crest + - mal_id: 2730 + type: anime + name: Shufu to Seikatsusha + url: https://myanimelist.net/anime/producer/2730/Shufu_to_Seikatsusha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 40730 + url: https://myanimelist.net/anime/40730/Tian_Guan_Cifu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1319/109301.jpg + small_image_url: https://myanimelist.net/images/anime/1319/109301t.jpg + large_image_url: https://myanimelist.net/images/anime/1319/109301l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1319/109301.webp + small_image_url: https://myanimelist.net/images/anime/1319/109301t.webp + large_image_url: https://myanimelist.net/images/anime/1319/109301l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6PVnnIIBtzM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tian Guan Cifu + - type: Synonym + title: TGCF + - type: Synonym + title: Tian Guan Ci Fu + - type: Japanese + title: 天官賜福 + - type: English + title: Heaven Official's Blessing + - type: Spanish + title: La Bendición del Oficial del Cielo + - type: French + title: Heaven Official's Blessing + title: Tian Guan Cifu + title_english: Heaven Official's Blessing + title_japanese: 天官賜福 + title_synonyms: + - TGCF + - Tian Guan Ci Fu + type: ONA + source: Web novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2020-10-31T00:00:00+00:00' + to: '2021-01-02T00:00:00+00:00' + prop: + from: + day: 31 + month: 10 + year: 2020 + to: + day: 2 + month: 1 + year: 2021 + string: Oct 31, 2020 to Jan 2, 2021 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 8.39 + scored_by: 77353 + rank: 239 + popularity: 1565 + members: 177197 + favorites: 6188 + synopsis: "The heavens shake, the thunder rumbles, and Xie Lian appears with an apologetic smile—again! Eight hundred\ + \ years prior, he was a beloved martial god, known as the Crown Prince of Xianle. Now, he ascends to the heavenly\ + \ realm for the third time, but simply as a pitiful scrap-collecting god with no followers behind him. \n\nOn his\ + \ first mission, Xie Lian finds himself alone in the dark moonlit night. There, a gentle man dressed in red guides\ + \ him through the forest. However, as abruptly as he appeared, the man suddenly dissipates into a swarm of silver\ + \ butterflies.\n\nXie Lian later learns that this mysterious stranger was none other than Hua Cheng, the Crimson Rain\ + \ Sought Flower, a Ghost King feared by both demons and gods alike. But before Xie Lian can figure out why Hua Cheng\ + \ would help a Heavenly Official like himself, he meets San Lang. A young man possessing great knowledge on not only\ + \ the Ghost King, but also the now forgotten Crown Prince, San Lang decides to accompany Xie Lian on his journey of\ + \ unveiling the mysteries of the past.\n\n[Written by MAL Rewrite]" + background: Adaptation based on a Chinese web novel of the same name, written by Mo Xiang Tong Xiu (墨香铜臭). The show + falls into the xianxia genre (a fantasy genre influence by Taoism, Buddhism, and Chinese mythology). + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1325 + type: anime + name: Haoliners Animation + url: https://myanimelist.net/anime/producer/1325/Haoliners_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 41911 + url: https://myanimelist.net/anime/41911/Hanyou_no_Yashahime__Sengoku_Otogizoushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1005/114781.jpg + small_image_url: https://myanimelist.net/images/anime/1005/114781t.jpg + large_image_url: https://myanimelist.net/images/anime/1005/114781l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1005/114781.webp + small_image_url: https://myanimelist.net/images/anime/1005/114781t.webp + large_image_url: https://myanimelist.net/images/anime/1005/114781l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O9c9AWheBdQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hanyou no Yashahime: Sengoku Otogizoushi' + - type: Japanese + title: 半妖の夜叉姫 -戦国御伽草子- + - type: English + title: 'Yashahime: Princess Half-Demon' + - type: German + title: 'Yashahime: Princess Half-Demon' + - type: Spanish + title: 'Yashahime: Princess Half-Demon' + - type: French + title: 'Yashahime: Princess Half-Demon' + title: 'Hanyou no Yashahime: Sengoku Otogizoushi' + title_english: 'Yashahime: Princess Half-Demon' + title_japanese: 半妖の夜叉姫 -戦国御伽草子- + title_synonyms: [] + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2020-10-03T00:00:00+00:00' + to: '2021-03-20T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2020 + to: + day: 20 + month: 3 + year: 2021 + string: Oct 3, 2020 to Mar 20, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.7 + scored_by: 40388 + rank: 6933 + popularity: 1959 + members: 132795 + favorites: 657 + synopsis: |- + Half-demon twins Towa and Setsuna were always together, living happily in Feudal Japan. But their joyous days come to an end when a forest fire separates them and Towa is thrown through a portal to modern-day Japan. There, she is found by Souta Higurashi, who raises her as his daughter after Towa finds herself unable to return to her time. + + Ten years later, 14-year-old Towa is a relatively well-adjusted student, despite the fact that she often gets into fights. However, unexpected trouble arrives on her doorstep in the form of three visitors from Feudal Japan; Moroha, a bounty hunter; Setsuna, a demon slayer and Towa's long-lost twin sister; and Mistress Three-Eyes, a demon seeking a mystical object. Working together, the girls defeat their foe, but in the process, Towa discovers to her horror that Setsuna has no memory of her at all. Hanyou no Yashahime: Sengoku Otogizoushi follows the three girls as they endeavor to remedy Setsuna's memory loss, as well as discover the truth about their linked destinies. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2020 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 40359 + url: https://myanimelist.net/anime/40359/Ikebukuro_West_Gate_Park + images: + jpg: + image_url: https://myanimelist.net/images/anime/1277/108376.jpg + small_image_url: https://myanimelist.net/images/anime/1277/108376t.jpg + large_image_url: https://myanimelist.net/images/anime/1277/108376l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1277/108376.webp + small_image_url: https://myanimelist.net/images/anime/1277/108376t.webp + large_image_url: https://myanimelist.net/images/anime/1277/108376l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iOaaNJ7c4cA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ikebukuro West Gate Park + - type: Synonym + title: IWGP + - type: Japanese + title: 池袋ウエストゲートパーク + - type: English + title: Ikebukuro West Gate Park + title: Ikebukuro West Gate Park + title_english: Ikebukuro West Gate Park + title_japanese: 池袋ウエストゲートパーク + title_synonyms: + - IWGP + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2020-10-06T00:00:00+00:00' + to: '2020-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2020 + to: + day: 22 + month: 12 + year: 2020 + string: Oct 6, 2020 to Dec 22, 2020 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 39821 + rank: 5855 + popularity: 2005 + members: 128453 + favorites: 372 + synopsis: "Ikebukuro is home to many different businesses and gangs. This includes Makoto Majima: the infamous \"troubleshooter\"\ + \ who mediates between warring factions. Makoto knows all of the ins and outs of the bustling Tokyo district and strives\ + \ to maintain peace alongside the G-Boys, who assist Makoto in his troubleshooting endeavors. Led by the charismatic\ + \ and ruthless Takashi Andou, the G-Boys is the most influential gang in all of Ikebukuro. \n\nHowever, when the new\ + \ faction \"Red Angels\" begins to move in on the G-Boys' turf, immediate tensions rise between them. With numerous\ + \ enemies scattered around and within the G-Boys, navigating through the streets becomes more difficult for Makoto.\ + \ While continuing to troubleshoot problems, he slowly unravels a plot that may trigger an all-out war and threaten\ + \ the entirety of Ikebukuro.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2020 + broadcast: + day: Tuesdays + time: '21:00' + timezone: Asia/Tokyo + string: Tuesdays at 21:00 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/45-2021-winter.yaml b/test/fixtures/jikan/season_matrix/45-2021-winter.yaml new file mode 100644 index 0000000..f975d14 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/45-2021-winter.yaml @@ -0,0 +1,3407 @@ +metadata: + captured_at: '2026-05-11T11:34:24Z' + label: 2021-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2021/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:24 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:aebe4a62fea82767a85f3564997f70e5a2e33e94 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 15 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 352 + per_page: 25 + data: + - mal_id: 40028 + url: https://myanimelist.net/anime/40028/Shingeki_no_Kyojin__The_Final_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1000/110531.jpg + small_image_url: https://myanimelist.net/images/anime/1000/110531t.jpg + large_image_url: https://myanimelist.net/images/anime/1000/110531l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1000/110531.webp + small_image_url: https://myanimelist.net/images/anime/1000/110531t.webp + large_image_url: https://myanimelist.net/images/anime/1000/110531l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SlNpRThS9t8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: The Final Season' + - type: Synonym + title: Shingeki no Kyojin Season 4 + - type: Synonym + title: Attack on Titan Season 4 + - type: Japanese + title: 進撃の巨人 The Final Season + - type: English + title: 'Attack on Titan: Final Season' + - type: German + title: Attack on Titan Final Season + - type: Spanish + title: Ataque a los Titanes Temporada Final + - type: French + title: L'Attaque des Titans Saison Finale + title: 'Shingeki no Kyojin: The Final Season' + title_english: 'Attack on Titan: Final Season' + title_japanese: 進撃の巨人 The Final Season + title_synonyms: + - Shingeki no Kyojin Season 4 + - Attack on Titan Season 4 + type: TV + source: Manga + episodes: 16 + status: Finished Airing + airing: false + aired: + from: '2020-12-07T00:00:00+00:00' + to: '2021-03-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 12 + year: 2020 + to: + day: 29 + month: 3 + year: 2021 + string: Dec 7, 2020 to Mar 29, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.79 + scored_by: 1522934 + rank: 39 + popularity: 30 + members: 2289471 + favorites: 54032 + synopsis: |- + Gabi Braun and Falco Grice have been training their entire lives to inherit one of the seven Titans under Marley's control and aid their nation in eradicating the Eldians on Paradis. However, just as all seems well for the two cadets, their peace is suddenly shaken by the arrival of Eren Yeager and the remaining members of the Survey Corps. + + Having finally reached the Yeager family basement and learned about the dark history surrounding the Titans, the Survey Corps has at long last found the answer they so desperately fought to uncover. With the truth now in their hands, the group set out for the world beyond the walls. + + In Shingeki no Kyojin: The Final Season, two utterly different worlds collide as each party pursues its own agenda in the long-awaited conclusion to Paradis' fight for freedom. + + [Written by MAL Rewrite] + background: 'Shingeki no Kyojin: The Final Season adapts content from volumes 23-28 of Hajime Isayama''s award-winning + manga.' + season: winter + year: 2021 + broadcast: + day: Mondays + time: 00:10 + timezone: Asia/Tokyo + string: Mondays at 00:10 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42897 + url: https://myanimelist.net/anime/42897/Horimiya + images: + jpg: + image_url: https://myanimelist.net/images/anime/1695/111486.jpg + small_image_url: https://myanimelist.net/images/anime/1695/111486t.jpg + large_image_url: https://myanimelist.net/images/anime/1695/111486l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1695/111486.webp + small_image_url: https://myanimelist.net/images/anime/1695/111486t.webp + large_image_url: https://myanimelist.net/images/anime/1695/111486l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/42LiC4xY8YE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Horimiya + - type: Synonym + title: Hori-san and Miyamura-kun + - type: Japanese + title: ホリミヤ + - type: English + title: Horimiya + title: Horimiya + title_english: Horimiya + title_japanese: ホリミヤ + title_synonyms: + - Hori-san and Miyamura-kun + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-01-10T00:00:00+00:00' + to: '2021-04-04T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2021 + to: + day: 4 + month: 4 + year: 2021 + string: Jan 10, 2021 to Apr 4, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 997004 + rank: 482 + popularity: 79 + members: 1639278 + favorites: 39945 + synopsis: |- + On the surface, the thought of Kyouko Hori and Izumi Miyamura getting along would be the last thing in people's minds. After all, Hori has a perfect combination of beauty and brains, while Miyamura appears meek and distant to his fellow classmates. However, a fateful meeting between the two lays both of their hidden selves bare. Even though she is popular at school, Hori has little time to socialize with her friends due to housework. On the other hand, Miyamura lives under the noses of his peers, his body bearing secret tattoos and piercings that make him look like a gentle delinquent. + + Having opposite personalities yet sharing odd similarities, the two quickly become friends and often spend time together in Hori's home. As they both emerge from their shells, they share with each other a side of themselves concealed from the outside world. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1744 + type: anime + name: My Theater D.D. + url: https://myanimelist.net/anime/producer/1744/My_Theater_DD + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2186 + type: anime + name: Mirai-Kojo + url: https://myanimelist.net/anime/producer/2186/Mirai-Kojo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39535 + url: https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1530/117776.jpg + small_image_url: https://myanimelist.net/images/anime/1530/117776t.jpg + large_image_url: https://myanimelist.net/images/anime/1530/117776l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1530/117776.webp + small_image_url: https://myanimelist.net/images/anime/1530/117776t.webp + large_image_url: https://myanimelist.net/images/anime/1530/117776l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Qx01pn9l-6g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu' + - type: Synonym + title: 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - type: Japanese + title: 無職転生 ~異世界行ったら本気だす~ + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation' + - type: German + title: 'Mushoku Tensei: Jobless Reincarnation' + - type: French + title: 'Mushoku Tensei: Jobless Reincarnation' + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu' + title_english: 'Mushoku Tensei: Jobless Reincarnation' + title_japanese: 無職転生 ~異世界行ったら本気だす~ + title_synonyms: + - 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-01-11T00:00:00+00:00' + to: '2021-03-22T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2021 + to: + day: 22 + month: 3 + year: 2021 + string: Jan 11, 2021 to Mar 22, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.33 + scored_by: 973331 + rank: 294 + popularity: 84 + members: 1574455 + favorites: 39488 + synopsis: |- + Despite being bullied, scorned, and oppressed all of his life, a 34-year-old shut-in still found the resolve to attempt something heroic—only for it to end in a tragic accident. But in a twist of fate, he awakens in another world as Rudeus Greyrat, starting life again as a baby born to two loving parents. + + Preserving his memories and knowledge from his previous life, Rudeus quickly adapts to his new environment. With the mind of a grown adult, he starts to display magical talent that exceeds all expectations, honing his skill with the help of a mage named Roxy Migurdia. Rudeus learns swordplay from his father, Paul, and meets Sylphiette, a girl his age who quickly becomes his closest friend. + + As Rudeus' second chance at life begins, he tries to make the most of his new opportunity while conquering his traumatic past. And perhaps, one day, he may find the one thing he could not find in his old world—love. + + [Written by MAL Rewrite] + background: 'Mushoku Tensei: Isekai Ittara Honki Dasu adapts chapters 1-26 of Yuka Fujikawa''s manga series and volumes + 1-3 of Rifujin na Magonote''s light novel series of the same title.' + season: winter + year: 2021 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 40852 + url: https://myanimelist.net/anime/40852/Dr_Stone__Stone_Wars + images: + jpg: + image_url: https://myanimelist.net/images/anime/1711/110614.jpg + small_image_url: https://myanimelist.net/images/anime/1711/110614t.jpg + large_image_url: https://myanimelist.net/images/anime/1711/110614l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1711/110614.webp + small_image_url: https://myanimelist.net/images/anime/1711/110614t.webp + large_image_url: https://myanimelist.net/images/anime/1711/110614l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/esjDq0JQ_1s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: Stone Wars' + - type: Synonym + title: Dr. Stone 2nd Season + - type: Synonym + title: Dr. Stone Second Season + - type: Japanese + title: ドクターストーン STONE WARS + - type: German + title: Dr. Stone Staffel 2 + - type: Spanish + title: 'Dr. Stone : Stone Wars' + title: 'Dr. Stone: Stone Wars' + title_english: null + title_japanese: ドクターストーン STONE WARS + title_synonyms: + - Dr. Stone 2nd Season + - Dr. Stone Second Season + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-01-14T00:00:00+00:00' + to: '2021-03-25T00:00:00+00:00' + prop: + from: + day: 14 + month: 1 + year: 2021 + to: + day: 25 + month: 3 + year: 2021 + string: Jan 14, 2021 to Mar 25, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.15 + scored_by: 686689 + rank: 517 + popularity: 139 + members: 1203752 + favorites: 7581 + synopsis: |- + Senkuu has made it his goal to bring back two million years of human achievement and revive the entirety of those turned to statues. However, one man stands in his way: Tsukasa Shishiou, who believes that only the fittest of those petrified should be revived. + + As the snow melts and spring approaches, Senkuu and his allies in Ishigami Village finish the preparations for their attack on the Tsukasa Empire. With a reinvented cell phone model now at their disposal, the Kingdom of Science is ready to launch its newest scheme to recruit the sizable numbers of Tsukasa's army to their side. However, it is a race against time; for every day the Kingdom of Science spends perfecting their inventions, the empire rapidly grows in number. + + Reuniting with old friends and gaining new allies, Senkuu and the Kingdom of Science must stop Tsukasa's forces in order to fulfill their goal of restoring humanity and all its creations. With the two sides each in pursuit of their ideal world, the Stone Wars have now begun! + + [Written by MAL Rewrite] + background: 'Dr. Stone: Stone Wars adapts chapters 60-84 of the manga.' + season: winter + year: 2021 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39551 + url: https://myanimelist.net/anime/39551/Tensei_shitara_Slime_Datta_Ken_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1271/109841.jpg + small_image_url: https://myanimelist.net/images/anime/1271/109841t.jpg + large_image_url: https://myanimelist.net/images/anime/1271/109841l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1271/109841.webp + small_image_url: https://myanimelist.net/images/anime/1271/109841t.webp + large_image_url: https://myanimelist.net/images/anime/1271/109841l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Lk3fJsIOnKw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Slime Datta Ken 2nd Season + - type: Synonym + title: Tensura 2 + - type: Japanese + title: 転生したらスライムだった件 + - type: English + title: That Time I Got Reincarnated as a Slime Season 2 + - type: German + title: That Time I Got Reincarnated as a Slime Staffel 2 + - type: Spanish + title: That Time I Got Reincarnated as a Slime Temporada 2 + - type: French + title: Moi, quand je me réincarne en Slime Saison 2 + title: Tensei shitara Slime Datta Ken 2nd Season + title_english: That Time I Got Reincarnated as a Slime Season 2 + title_japanese: 転生したらスライムだった件 + title_synonyms: + - Tensura 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-12T00:00:00+00:00' + to: '2021-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2021 + to: + day: 30 + month: 3 + year: 2021 + string: Jan 12, 2021 to Mar 30, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.34 + scored_by: 648332 + rank: 289 + popularity: 163 + members: 1114349 + favorites: 11014 + synopsis: "Taking a break from his time as a teacher, the powerful slime Rimuru Tempest returns to his kingdom, eponymously\ + \ named Tempest, just in time to begin negotiations with a nearby nation—the Kingdom of Eurazania. While the negotiations\ + \ are anything but peaceful, they do end successfully, allowing Rimuru to return and finish teaching. When trying\ + \ to again return to Tempest, this time permanently, Rimuru is stopped by a mysterious figure who is somehow able\ + \ to constrain the many magical abilities he has at his disposal. \n\nIn Tempest, the situation is even worse. A group\ + \ of unknown humans has invaded the land and are assaulting its citizens, both influential and innocent. They are\ + \ not just trying to bring harm either—they have the intent to kill. Can Rimuru overcome his powerful and dangerous\ + \ foe and return to Tempest before it is too late? \n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2021 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42203 + url: https://myanimelist.net/anime/42203/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_2nd_Season_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1724/117421.jpg + small_image_url: https://myanimelist.net/images/anime/1724/117421t.jpg + large_image_url: https://myanimelist.net/images/anime/1724/117421l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1724/117421.webp + small_image_url: https://myanimelist.net/images/anime/1724/117421t.webp + large_image_url: https://myanimelist.net/images/anime/1724/117421l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cG68UqKqYq0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2 + - type: Synonym + title: 'Re: Life in a different world from zero 2nd Season' + - type: Synonym + title: ReZero 2nd Season + - type: Synonym + title: Re:Zero - Starting Life in Another World 2 + - type: Japanese + title: Re:ゼロから始める異世界生活 2 part 2 + - type: English + title: Re:ZERO -Starting Life in Another World- Season 2 Part 2 + - type: German + title: Re:ZERO -Starting Life in Another World- Season 2 Part 2 + - type: Spanish + title: Re:Zero -Empezar de cero en un mundo diferente- Temporada 2 + - type: French + title: Re:Zero-Starting Life in Another World-Part 2/2 + title: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2 + title_english: Re:ZERO -Starting Life in Another World- Season 2 Part 2 + title_japanese: Re:ゼロから始める異世界生活 2 part 2 + title_synonyms: + - 'Re: Life in a different world from zero 2nd Season' + - ReZero 2nd Season + - Re:Zero - Starting Life in Another World 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-06T00:00:00+00:00' + to: '2021-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2021 + to: + day: 24 + month: 3 + year: 2021 + string: Jan 6, 2021 to Mar 24, 2021 + duration: 29 min per ep + rating: R - 17+ (violence & profanity) + score: 8.42 + scored_by: 637254 + rank: 212 + popularity: 171 + members: 1071743 + favorites: 13430 + synopsis: |- + After a stern yet compelling speech by Otto Suwen, Subaru Natsuki solemnly swears that he will successfully make it through this timeline and save everyone he can along the way. The first step toward achieving this goal is to help Emilia work through her past; however, that is easier said than done. Feeling as if she has been lied to by everyone around her, it will be difficult for Emilia to trust anyone, even Subaru, her self-proclaimed knight. + + Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2 presents the culmination of Subaru's experiences with the Sanctuary and its people, along with his unwillingness to give up hope on saving them. + + [Written by MAL Rewrite] + background: Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season Part 2 adapts volumes 13-15 of Tappei Nagatsuki's light + novel series of the same title. + season: winter + year: 2021 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 39617 + url: https://myanimelist.net/anime/39617/Yakusoku_no_Neverland_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1815/110626.jpg + small_image_url: https://myanimelist.net/images/anime/1815/110626t.jpg + large_image_url: https://myanimelist.net/images/anime/1815/110626l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1815/110626.webp + small_image_url: https://myanimelist.net/images/anime/1815/110626t.webp + large_image_url: https://myanimelist.net/images/anime/1815/110626l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TAU4PFKxqxo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yakusoku no Neverland 2nd Season + - type: Japanese + title: 約束のネバーランド + - type: English + title: The Promised Neverland Season 2 + - type: German + title: The Promised Neverland Staffel 2 + - type: Spanish + title: The Promise Neverland Temporada 2 + - type: French + title: The Promise Neverland Saison 2 + title: Yakusoku no Neverland 2nd Season + title_english: The Promised Neverland Season 2 + title_japanese: 約束のネバーランド + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-01-08T00:00:00+00:00' + to: '2021-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2021 + to: + day: 26 + month: 3 + year: 2021 + string: Jan 8, 2021 to Mar 26, 2021 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 5.24 + scored_by: 525462 + rank: 13945 + popularity: 192 + members: 1000454 + favorites: 4508 + synopsis: "Emma, Ray, and the rest of the older children have escaped the confines of the Grace Field House. However,\ + \ with relentless demons set on capturing them, their arduous battle for freedom has only just begun.\n\nDespite venturing\ + \ into the treacherous wilderness, the children remain optimistic due to their possession of books written by William\ + \ Minerva. Coded within his books are messages detailing the world outside the farm—information that can help them\ + \ survive with the limited resources they have. But when their pursuers draw near, the children soon encounter their\ + \ most dreadful situation yet. \n\nIn Yakusoku no Neverland 2nd Season, the children struggle to survive in the strange\ + \ ruthless world, striving to find a sanctuary they can truly call home.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2021 + broadcast: + day: Fridays + time: 01:25 + timezone: Asia/Tokyo + string: Fridays at 01:25 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 43299 + url: https://myanimelist.net/anime/43299/Wonder_Egg_Priority + images: + jpg: + image_url: https://myanimelist.net/images/anime/1079/110751.jpg + small_image_url: https://myanimelist.net/images/anime/1079/110751t.jpg + large_image_url: https://myanimelist.net/images/anime/1079/110751l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1079/110751.webp + small_image_url: https://myanimelist.net/images/anime/1079/110751t.webp + large_image_url: https://myanimelist.net/images/anime/1079/110751l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_TpTn3o-_Yk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Wonder Egg Priority + - type: Japanese + title: ワンダーエッグ・プライオリティ + - type: English + title: Wonder Egg Priority + title: Wonder Egg Priority + title_english: Wonder Egg Priority + title_japanese: ワンダーエッグ・プライオリティ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-13T00:00:00+00:00' + to: '2021-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2021 + to: + day: 31 + month: 3 + year: 2021 + string: Jan 13, 2021 to Mar 31, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.54 + scored_by: 375372 + rank: 2086 + popularity: 267 + members: 834348 + favorites: 9430 + synopsis: |- + Following the suicide of her best and only friend, Koito Nagase, Ai Ooto is left grappling with her new reality. With nothing left to live for, she follows the instructions of a mysterious entity and gets roped into purchasing an egg, or specifically, a Wonder Egg. + + Upon breaking the egg in a world that materializes during her sleep, Ai is tasked with saving people from the adversities that come their way. In doing so, she believes that she has moved one step closer to saving her best friend. With this dangerous yet tempting opportunity in the palms of her hands, Ai enters a place where she must recognize the relationship between other people's demons and her own. + + As past trauma, unforgettable regrets, and innate fears hatch in the bizarre world of Wonder Egg Priority, a young girl discovers the different inner struggles tormenting humankind and rescues them from their worst fears. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Wednesdays + time: 01:29 + timezone: Asia/Tokyo + string: Wednesdays at 01:29 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1791 + type: anime + name: D.N. Dream Partners + url: https://myanimelist.net/anime/producer/1791/DN_Dream_Partners + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 39783 + url: https://myanimelist.net/anime/39783/5-toubun_no_Hanayome_∬ + images: + jpg: + image_url: https://myanimelist.net/images/anime/1775/109514.jpg + small_image_url: https://myanimelist.net/images/anime/1775/109514t.jpg + large_image_url: https://myanimelist.net/images/anime/1775/109514l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1775/109514.webp + small_image_url: https://myanimelist.net/images/anime/1775/109514t.webp + large_image_url: https://myanimelist.net/images/anime/1775/109514l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4wKoRlSSuoo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 5-toubun no Hanayome ∬ + - type: Synonym + title: Gotoubun no Hanayome 2nd Season + - type: Synonym + title: The Five Wedded Brides 2nd Season + - type: Synonym + title: 5-toubun no Hanayome 2nd Season + - type: Synonym + title: The Quintessential Quintuplets 2nd Season + - type: Japanese + title: 五等分の花嫁∬ + - type: English + title: The Quintessential Quintuplets 2 + - type: German + title: The Quintessential Quintuplets 2 + - type: Spanish + title: The Quintessential Quintuplets 2 + - type: French + title: The Quintessential Quintuplets 2 + title: 5-toubun no Hanayome ∬ + title_english: The Quintessential Quintuplets 2 + title_japanese: 五等分の花嫁∬ + title_synonyms: + - Gotoubun no Hanayome 2nd Season + - The Five Wedded Brides 2nd Season + - 5-toubun no Hanayome 2nd Season + - The Quintessential Quintuplets 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-08T00:00:00+00:00' + to: '2021-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2021 + to: + day: 26 + month: 3 + year: 2021 + string: Jan 8, 2021 to Mar 26, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8 + scored_by: 497905 + rank: 747 + popularity: 278 + members: 814908 + favorites: 11878 + synopsis: |- + Through their tutor Fuutarou Uesugi's diligent guidance, the Nakano quintuplets' academic performance shows signs of improvement, even if their path to graduation is still rocky. However, as they continue to cause various situations that delay any actual tutoring, Fuutarou becomes increasingly involved with their personal lives, further complicating their relationship with each other. + + On another note, Fuutarou slowly begins to realize the existence of a possible connection between him and the past he believes to have shared with one of the five girls. With everyone's feelings beginning to develop and overlap, will they be able to keep their bond strictly to that of a teacher and his students—or will it mature into something else entirely? + + [Written by MAL Rewrite] + background: 5-toubun no Hanayome ∬ adapts content from volumes 5 through 10 of Negi Haruba's manga of the same name. + season: winter + year: 2021 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40750 + url: https://myanimelist.net/anime/40750/Kaifuku_Jutsushi_no_Yarinaoshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1301/110018.jpg + small_image_url: https://myanimelist.net/images/anime/1301/110018t.jpg + large_image_url: https://myanimelist.net/images/anime/1301/110018l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1301/110018.webp + small_image_url: https://myanimelist.net/images/anime/1301/110018t.webp + large_image_url: https://myanimelist.net/images/anime/1301/110018l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dLwpj-sjnho?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaifuku Jutsushi no Yarinaoshi + - type: Synonym + title: Kaiyari + - type: Japanese + title: 回復術士のやり直し + - type: English + title: Redo of Healer + - type: German + title: Redo of Healer + title: Kaifuku Jutsushi no Yarinaoshi + title_english: Redo of Healer + title_japanese: 回復術士のやり直し + title_synonyms: + - Kaiyari + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-13T00:00:00+00:00' + to: '2021-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2021 + to: + day: 31 + month: 3 + year: 2021 + string: Jan 13, 2021 to Mar 31, 2021 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.31 + scored_by: 368928 + rank: null + popularity: 382 + members: 644345 + favorites: 6612 + synopsis: |- + When Keyaru acquired his powers as a Hero who specialized in healing all injuries regardless of severity, it seemed that he would walk the path to a great future. But what awaited him instead was great agony; he was subjected to years of seemingly endless hellish torture and abuse. Keyaru's healing skills allowed him to secretly collect the memories and abilities of those he treated, gradually making him stronger than anyone else. But by the time he reached his full potential, it was far too late—he had already lost everything. + + Determined to put his life back on track, Keyaru decided to unleash a powerful healing spell that rewound the entire world back to the time before he began to suffer his horrible fate. Equipped with the anguish of his past, he vows to redo everything in order to fulfill a new purpose—to exact revenge upon those who have wronged him. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 490 + type: anime + name: Maiden Japan + url: https://myanimelist.net/anime/producer/490/Maiden_Japan + studios: + - mal_id: 120 + type: anime + name: TNK + url: https://myanimelist.net/anime/producer/120/TNK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 42923 + url: https://myanimelist.net/anime/42923/SK∞ + images: + jpg: + image_url: https://myanimelist.net/images/anime/1549/119195.jpg + small_image_url: https://myanimelist.net/images/anime/1549/119195t.jpg + large_image_url: https://myanimelist.net/images/anime/1549/119195l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1549/119195.webp + small_image_url: https://myanimelist.net/images/anime/1549/119195t.webp + large_image_url: https://myanimelist.net/images/anime/1549/119195l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PcS3QIc6ma8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: SK∞ + - type: Synonym + title: SK Eight + - type: Synonym + title: Skate + - type: Japanese + title: SK∞ エスケーエイト + - type: English + title: SK8 the Infinity + - type: German + title: SK8 the Infinity + - type: French + title: SK8 the Infinity + title: SK∞ + title_english: SK8 the Infinity + title_japanese: SK∞ エスケーエイト + title_synonyms: + - SK Eight + - Skate + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-10T00:00:00+00:00' + to: '2021-04-04T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2021 + to: + day: 4 + month: 4 + year: 2021 + string: Jan 10, 2021 to Apr 4, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8 + scored_by: 321365 + rank: 755 + popularity: 393 + members: 632256 + favorites: 13836 + synopsis: |- + High school student Reki Kyan is passionate about one thing: skateboarding. When night falls, he heads to "S," an illegal underground race inside a mine where skaters compete in highly dangerous situations. After a loss that results in his skateboard being destroyed and his arm being broken, Reki is now incapable of practicing at all. + + While working, Reki runs into his new classmate, Langa Hasegawa, a half-Canadian and half-Japanese boy with no skateboarding experience whatsoever. Langa is in desperate need of money. After they both visit "S" when tasked by Reki's boss, they get into trouble and are forced into a bet that requires Langa to skate in a race. However, the mysterious transfer student holds a trump card that Reki is unaware of, one which might help him win the race in the most unexpected way. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: [] + - mal_id: 37984 + url: https://myanimelist.net/anime/37984/Kumo_desu_ga_Nani_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1593/113724.jpg + small_image_url: https://myanimelist.net/images/anime/1593/113724t.jpg + large_image_url: https://myanimelist.net/images/anime/1593/113724l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1593/113724.webp + small_image_url: https://myanimelist.net/images/anime/1593/113724t.webp + large_image_url: https://myanimelist.net/images/anime/1593/113724l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xpPJIKUsbls?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kumo desu ga, Nani ka? + - type: Japanese + title: 蜘蛛ですが、なにか? + - type: English + title: So I'm a Spider, So What? + - type: German + title: So I'm a Spider, So What? + - type: Spanish + title: So I'm a Spider, So What? + - type: French + title: So I'm a Spider, So What? + title: Kumo desu ga, Nani ka? + title_english: So I'm a Spider, So What? + title_japanese: 蜘蛛ですが、なにか? + title_synonyms: [] + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2021-01-08T00:00:00+00:00' + to: '2021-07-03T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2021 + to: + day: 3 + month: 7 + year: 2021 + string: Jan 8, 2021 to Jul 3, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.45 + scored_by: 270748 + rank: 2485 + popularity: 509 + members: 509766 + favorites: 4791 + synopsis: |- + The day is as normal as it can be in high school as the students peacefully go about their everyday activities until an unprecedented catastrophe strikes the school, killing every person in its wake. Guided by what seems to be a miracle, a handful of students are fortunate enough to be reincarnated into another world as nobles, princes, and other kinds of people with prestigious backgrounds. + + One girl, however, is not so lucky. Being reborn as a spider of the weakest kind, she immediately experiences the hardships of her dire situation. Even so, she must press on to survive the numerous threats that endanger her life. Discovering that her new world has a system like that of an RPG, she tries her best to hunt prey and defeat monsters to level up and evolve. As she gradually grows stronger, she hopes one day her efforts will be rewarded, and that she will be granted a better life. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1237 + type: anime + name: Millepensee + url: https://myanimelist.net/anime/producer/1237/Millepensee + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 40935 + url: https://myanimelist.net/anime/40935/Beastars_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1097/109646.jpg + small_image_url: https://myanimelist.net/images/anime/1097/109646t.jpg + large_image_url: https://myanimelist.net/images/anime/1097/109646l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1097/109646.webp + small_image_url: https://myanimelist.net/images/anime/1097/109646t.webp + large_image_url: https://myanimelist.net/images/anime/1097/109646l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8t0ctEki7Dg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Beastars 2nd Season + - type: Japanese + title: BEASTARS 2期 + title: Beastars 2nd Season + title_english: null + title_japanese: BEASTARS 2期 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-07T00:00:00+00:00' + to: '2021-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2021 + to: + day: 25 + month: 3 + year: 2021 + string: Jan 7, 2021 to Mar 25, 2021 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.75 + scored_by: 262659 + rank: 1298 + popularity: 524 + members: 495958 + favorites: 2310 + synopsis: "\"Beastar\"—a title awarded to beasts who prove their excellence through fighting inequality to unite carnivores\ + \ and herbivores in an anthropomorphic animal society. Cherryton Academy has gone five years without one such leader.\ + \ However, following the murder of an alpaca within the school boundaries, the growing tension between the different\ + \ species poses a greater need for a Beastar to ensure peace and harmony. \n\nWhen Louis, the prime candidate for\ + \ this prestigious role, rejects the offer and leaves the academy, the student council declares to honor any student\ + \ who captures the culprit of the aforementioned murder as Beastar. Meanwhile, Legoshi's sense of duty as a strong\ + \ wolf who must protect the weak pushes him to investigate the incident. To further complicate his life, he struggles\ + \ to manage his complex feelings for the white rabbit, Haru.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2021 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 1488 + type: anime + name: Hakuhodo DY Media Partners + url: https://myanimelist.net/anime/producer/1488/Hakuhodo_DY_Media_Partners + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41491 + url: https://myanimelist.net/anime/41491/Nanatsu_no_Taizai__Funnu_no_Shinpan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1011/111551.jpg + small_image_url: https://myanimelist.net/images/anime/1011/111551t.jpg + large_image_url: https://myanimelist.net/images/anime/1011/111551l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1011/111551.webp + small_image_url: https://myanimelist.net/images/anime/1011/111551t.webp + large_image_url: https://myanimelist.net/images/anime/1011/111551l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3OdKxdaxzyg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Nanatsu no Taizai: Funnu no Shinpan' + - type: Synonym + title: 'Nanatsu no Taizai: Fundo no Shinpan' + - type: Japanese + title: 七つの大罪 憤怒の審判 + - type: English + title: 'The Seven Deadly Sins: Dragon''s Judgement' + title: 'Nanatsu no Taizai: Funnu no Shinpan' + title_english: 'The Seven Deadly Sins: Dragon''s Judgement' + title_japanese: 七つの大罪 憤怒の審判 + title_synonyms: + - 'Nanatsu no Taizai: Fundo no Shinpan' + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2021-01-13T00:00:00+00:00' + to: '2021-06-23T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2021 + to: + day: 23 + month: 6 + year: 2021 + string: Jan 13, 2021 to Jun 23, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.57 + scored_by: 232431 + rank: 7744 + popularity: 546 + members: 479868 + favorites: 1595 + synopsis: |- + After the Kingdom of Liones faces a new threat, the Seven Deadly Sins split up in order to defeat an enemy force spanning Britannia. With their members divided, they face 3 powerful foes, attempt to rescue the lost part of a dear friend, and begin their rescue of Elizabeth. + + However, all is not quite as it seems. Along the way, the truth of what brought the end of the Holy War 3000 years ago is uncovered, causing old friends to come face to face against each other. + + Nanatsu no Taizai: Funnu no Shinpan continues the adventure of the Seven Deadly Sins and their friends, and sees a great power released. + background: '' + season: winter + year: 2021 + broadcast: + day: Wednesdays + time: '17:55' + timezone: Asia/Tokyo + string: Wednesdays at 17:55 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40530 + url: https://myanimelist.net/anime/40530/Jaku-Chara_Tomozaki-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/1120/109232.jpg + small_image_url: https://myanimelist.net/images/anime/1120/109232t.jpg + large_image_url: https://myanimelist.net/images/anime/1120/109232l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1120/109232.webp + small_image_url: https://myanimelist.net/images/anime/1120/109232t.webp + large_image_url: https://myanimelist.net/images/anime/1120/109232l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xe0BOheaJo4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jaku-Chara Tomozaki-kun + - type: Synonym + title: Jakusha Character Tomozaki-kun + - type: Synonym + title: The Low Tier Character "Tomozaki-kun" + - type: Japanese + title: 弱キャラ友崎くん + - type: English + title: Bottom-Tier Character Tomozaki + - type: German + title: Bottom-Tier Character Tomozaki + - type: French + title: Bottom-Tier Character Tomozaki + title: Jaku-Chara Tomozaki-kun + title_english: Bottom-Tier Character Tomozaki + title_japanese: 弱キャラ友崎くん + title_synonyms: + - Jakusha Character Tomozaki-kun + - The Low Tier Character "Tomozaki-kun" + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-08T00:00:00+00:00' + to: '2021-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2021 + to: + day: 26 + month: 3 + year: 2021 + string: Jan 8, 2021 to Mar 26, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.1 + scored_by: 221718 + rank: 4594 + popularity: 603 + members: 442772 + favorites: 2030 + synopsis: |- + Fumiya Tomozaki is Japan's best player in the online game Attack Families, commonly known as "Tackfam." Despite holding such a revered title, a lack of social skills and amiability causes him to fall short in his everyday high school life. Failing to have any friends, he blames the convoluted mechanics and unfair rules of life, forcing him to give up and proclaim himself a bottom-tier character in this "game." + + After a fateful meeting with another top-tier Tackfam player, Fumiya is shocked to discover the player's true identity—Aoi Hinami, a popular, smart, and sociable classmate who is the complete opposite of himself. Aoi, surprised at how inept Fumiya is at everything besides Tackfam, decides to assist him in succeeding in what she calls the greatest game of them all. Through the gruesome ordeals of social interactions and relationships, Fumiya begins to advance tiers in the glorious game of life. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 41899 + url: https://myanimelist.net/anime/41899/Ore_dake_Haireru_Kakushi_Dungeon + images: + jpg: + image_url: https://myanimelist.net/images/anime/1988/115708.jpg + small_image_url: https://myanimelist.net/images/anime/1988/115708t.jpg + large_image_url: https://myanimelist.net/images/anime/1988/115708l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1988/115708.webp + small_image_url: https://myanimelist.net/images/anime/1988/115708t.webp + large_image_url: https://myanimelist.net/images/anime/1988/115708l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LAuF6RZYTc0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore dake Haireru Kakushi Dungeon + - type: Synonym + title: Special training in the Secret Dungeon + - type: Japanese + title: 俺だけ入れる隠しダンジョン + - type: English + title: The Hidden Dungeon Only I Can Enter + - type: German + title: The Hidden Dungeon Only I Can Enter + - type: Spanish + title: The Hidden Dungeon Only I Can Enter + - type: French + title: The Hidden Dungeon Only I Can Enter + title: Ore dake Haireru Kakushi Dungeon + title_english: The Hidden Dungeon Only I Can Enter + title_japanese: 俺だけ入れる隠しダンジョン + title_synonyms: + - Special training in the Secret Dungeon + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-09T00:00:00+00:00' + to: '2021-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2021 + to: + day: 27 + month: 3 + year: 2021 + string: Jan 9, 2021 to Mar 27, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.27 + scored_by: 225581 + rank: 9545 + popularity: 608 + members: 440301 + favorites: 1814 + synopsis: |- + Despite his noble title, Noir Stalgia is at the bottom of the social hierarchy. Because of this, his fellow nobles oppress him and treat him like garbage. However, he possesses a rare yet powerful ability to communicate with the Great Sage, an oracle who grants Noir the answer to absolutely anything. + + After failing to secure a job as a librarian, Noir decides to join the Hero Academy. He knows he must become stronger to enter the institution. The Great Sage advises him to explore a hidden dungeon deep within the mountains. There, Noir meets Olivia Servant, a beautiful yet enchained maiden trapped within the labyrinth. Olivia bestows upon Noir a set of ridiculously powerful skills that grants him virtually total control over reality. Naturally, there is a catch—every time Noir attempts to use his powers, his life points decrease, putting his life at risk. To replenish his energy, he must give in to worldly pleasures such as kissing his childhood friend! + + With his newfound powers, Noir begins his journey as a student in the Hero Academy, meeting new acquaintances and helping them through the dire situations ahead. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: [] + studios: + - mal_id: 2037 + type: anime + name: Okuruto Noboru + url: https://myanimelist.net/anime/producer/2037/Okuruto_Noboru + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 3786 + url: https://myanimelist.net/anime/3786/Shin_Evangelion_Movie_|| + images: + jpg: + image_url: https://myanimelist.net/images/anime/1422/113533.jpg + small_image_url: https://myanimelist.net/images/anime/1422/113533t.jpg + large_image_url: https://myanimelist.net/images/anime/1422/113533l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1422/113533.webp + small_image_url: https://myanimelist.net/images/anime/1422/113533t.webp + large_image_url: https://myanimelist.net/images/anime/1422/113533l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/d8mf0qDD3Qg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shin Evangelion Movie:|| + - type: Synonym + title: 'Evangelion: 4.0' + - type: Synonym + title: Rebuild of Evangelion + - type: Synonym + title: Shin Evangelion Gekijouban𝄇 + - type: Synonym + title: 'Rebuild of Evangelion: Final' + - type: Japanese + title: シン・エヴァンゲリオン劇場版𝄇 + - type: English + title: 'Evangelion: 3.0+1.0 Thrice Upon a Time' + title: Shin Evangelion Movie:|| + title_english: 'Evangelion: 3.0+1.0 Thrice Upon a Time' + title_japanese: シン・エヴァンゲリオン劇場版𝄇 + title_synonyms: + - 'Evangelion: 4.0' + - Rebuild of Evangelion + - Shin Evangelion Gekijouban𝄇 + - 'Rebuild of Evangelion: Final' + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-03-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 3 + year: 2021 + to: + day: null + month: null + year: null + string: Mar 8, 2021 + duration: 2 hr 35 min + rating: PG-13 - Teens 13 or older + score: 8.58 + scored_by: 193415 + rank: 124 + popularity: 636 + members: 425372 + favorites: 8288 + synopsis: |- + Following NERV's failed attempt to retrieve the Spears of Longinus and carry out the Human Instrumentality Project, the destruction caused by the Fourth Impact has been largely averted. In a state of disarray, Shinji Ikari, Asuka Langley Shikinami, and Rei Ayanami travel to Village 3—a survivor settlement free from Earth's ruination. There, Shinji slowly comes to terms with his past, developing an entirely different life from his days as an Evangelion pilot. + + Meanwhile, NERV makes preparations to continue the Instrumentality Project by means of a new Impact. When WILLE's main aerial battleship arrives at the village, Shinji decides to board, believing that he can help by piloting an Evangelion. As new secrets are uncovered and a battle between WILLE and NERV approaches, the future of Earth hangs in the balance. Can Shinji save humanity and the rest of the world one last time? + + [Written by MAL Rewrite] + background: 'Shin Evangelion Movie:|| has earned a franchise record of 10.22 billion yen (92.7 million USD) and debuted + at No. 1 at the Japanese box office. Additionally, it won the Animation of the Year award in the Film category at + the Tokyo Anime Award Festival in 2022. The film was released internationally on August 13, 2021, via the Amazon Prime + Video streaming service. The film has been dubbed in 10 languages: Chinese, English, French, German, Hindi, Italian, + Korean, Brazilian Portuguese, Latin American Spanish, and Peninsular Spanish.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 47 + type: anime + name: Khara + url: https://myanimelist.net/anime/producer/47/Khara + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: [] + - mal_id: 40908 + url: https://myanimelist.net/anime/40908/Kemono_Jihen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1258/108331.jpg + small_image_url: https://myanimelist.net/images/anime/1258/108331t.jpg + large_image_url: https://myanimelist.net/images/anime/1258/108331l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1258/108331.webp + small_image_url: https://myanimelist.net/images/anime/1258/108331t.webp + large_image_url: https://myanimelist.net/images/anime/1258/108331l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/D6TmuMdp2gU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kemono Jihen + - type: Synonym + title: Monster Incidents + - type: Japanese + title: 怪物事変 + - type: English + title: Kemono Jihen + - type: French + title: Kemono incidents + title: Kemono Jihen + title_english: Kemono Jihen + title_japanese: 怪物事変 + title_synonyms: + - Monster Incidents + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-10T00:00:00+00:00' + to: '2021-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2021 + to: + day: 28 + month: 3 + year: 2021 + string: Jan 10, 2021 to Mar 28, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.36 + scored_by: 187869 + rank: 2932 + popularity: 640 + members: 421936 + favorites: 2352 + synopsis: |- + Kohachi Inugami, a detective who specializes in the occult, arrives at a remote village in the Japanese countryside, tasked by a hostess at a local inn to investigate a string of incidents involving rotting and mutilated livestock corpses that have been appearing for seemingly no reason. While surveying, Inugami notices a peculiar young boy working in the fields. Evaded by his peers and called "Dorotabou" for his stench, the young farmhand is surprised that anybody would take an interest in him. + + Inugami, piqued with curiosity, enlists Dorotabou in helping him with the investigation, despite scorned looks from the villagers. Unbeknownst to Dorotabou, this investigation will reveal a strange new world to him—one of the beast-like entities known as Kemono existing in tandem with humans—along with breathing new purpose into his previously empty life. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1989 + type: anime + name: JTB Next Creation + url: https://myanimelist.net/anime/producer/1989/JTB_Next_Creation + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 43690 + url: https://myanimelist.net/anime/43690/Tenkuu_Shinpan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1547/117947.jpg + small_image_url: https://myanimelist.net/images/anime/1547/117947t.jpg + large_image_url: https://myanimelist.net/images/anime/1547/117947l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1547/117947.webp + small_image_url: https://myanimelist.net/images/anime/1547/117947t.webp + large_image_url: https://myanimelist.net/images/anime/1547/117947l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A25xEmPNmBM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tenkuu Shinpan + - type: Synonym + title: Sky-High Survival + - type: Synonym + title: Sky Violation + - type: Japanese + title: 天空侵犯 + - type: English + title: High-Rise Invasion + - type: German + title: High-Rise Invasion + - type: Spanish + title: Invasión de Altura + - type: French + title: High-Rise Invasion + title: Tenkuu Shinpan + title_english: High-Rise Invasion + title_japanese: 天空侵犯 + title_synonyms: + - Sky-High Survival + - Sky Violation + type: ONA + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-02-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 2 + year: 2021 + to: + day: null + month: null + year: null + string: Feb 25, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.68 + scored_by: 202090 + rank: 7089 + popularity: 718 + members: 381827 + favorites: 2094 + synopsis: |- + Upon witnessing a man's head cracked open with an axe, 16-year-old Yuri Honjou trembles in fear and confusion as she flees from the masked assailant, only to find out she's trapped in an abandoned building where every door is mysteriously locked. Desperately searching for a way out, Yuri runs to the rooftop, but a world with no signs of life stands before her, surrounded by high-rise buildings. Though filled with despair, once she learns that her brother is also in this strange place, Yuri is determined to find him and escape. + + However, she soon finds that there are more masked murderers in the area, anxious to terrorize their newfound victims and satiate their sickest desires, leaving Yuri to question if they will be able to make it out alive. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 40594 + url: https://myanimelist.net/anime/40594/Tatoeba_Last_Dungeon_Mae_no_Mura_no_Shounen_ga_Joban_no_Machi_de_Kurasu_Youna_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1512/111549.jpg + small_image_url: https://myanimelist.net/images/anime/1512/111549t.jpg + large_image_url: https://myanimelist.net/images/anime/1512/111549l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1512/111549.webp + small_image_url: https://myanimelist.net/images/anime/1512/111549t.webp + large_image_url: https://myanimelist.net/images/anime/1512/111549l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xBDIrSsHmR8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari + - type: Synonym + title: Last Dungeon Boonies Kid + - type: Japanese + title: たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語 + - type: English + title: Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town? + - type: German + title: Ein Landei aus dem Dorf vor dem Letzten Dungeon Sucht das Abenteuer in der Stadt + - type: French + title: Imagine, un Cambrousard du Dernier Donjon dans la Ville de Départ ! + title: Tatoeba Last Dungeon Mae no Mura no Shounen ga Joban no Machi de Kurasu Youna Monogatari + title_english: Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town? + title_japanese: たとえばラストダンジョン前の村の少年が序盤の街で暮らすような物語 + title_synonyms: + - Last Dungeon Boonies Kid + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-04T00:00:00+00:00' + to: '2021-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2021 + to: + day: 22 + month: 3 + year: 2021 + string: Jan 4, 2021 to Mar 22, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.32 + scored_by: 159153 + rank: 9281 + popularity: 878 + members: 321413 + favorites: 896 + synopsis: |- + A long time ago, the ancient saviors of humanity founded a village as their haven, with their descendants said to assist humanity in times of extreme chaos. This village, Kunlun, is located just beside the infamous "Last Dungeon"—a place where monsters of unimaginable strength reside and which serves as the hunting grounds for Kunlun residents. + + Despite being accustomed to defeating powerful enemies since childhood, Lloyd Belladonna regards himself as the weakest in his village in terms of magic, strength, and intelligence. Even so, to fulfill his desire of becoming a soldier, he goes to the Kingdom of Azami to enroll in its military academy. However, as someone whose upbringing defies common sense, Lloyd's innate power might just prove to be the key to end the crises enveloping the kingdom! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2182 + type: anime + name: Tapioca + url: https://myanimelist.net/anime/producer/2182/Tapioca + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 39586 + url: https://myanimelist.net/anime/39586/Hataraku_Saibou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1726/114552.jpg + small_image_url: https://myanimelist.net/images/anime/1726/114552t.jpg + large_image_url: https://myanimelist.net/images/anime/1726/114552l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1726/114552.webp + small_image_url: https://myanimelist.net/images/anime/1726/114552t.webp + large_image_url: https://myanimelist.net/images/anime/1726/114552l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eZTRR7PWtOU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Saibou!! + - type: Synonym + title: Cells at Work!! 2nd Season + - type: Synonym + title: Hataraku Saibou 2nd Season + - type: Japanese + title: はたらく細胞!! + - type: English + title: Cells at Work!! + - type: German + title: Cells at Work! + - type: Spanish + title: Cells at Work! + - type: French + title: Les Brigades immunitaires + title: Hataraku Saibou!! + title_english: Cells at Work!! + title_japanese: はたらく細胞!! + title_synonyms: + - Cells at Work!! 2nd Season + - Hataraku Saibou 2nd Season + type: TV + source: Manga + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2021-01-09T00:00:00+00:00' + to: '2021-02-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2021 + to: + day: 27 + month: 2 + year: 2021 + string: Jan 9, 2021 to Feb 27, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.39 + scored_by: 111254 + rank: 2780 + popularity: 930 + members: 301403 + favorites: 621 + synopsis: "The cells of the human body never rest for too long; there is always something new to do and learn every\ + \ day. At least, that is what Hakkekkyuu U-1146 feels as he rushes to and fro, searching for any pathogens that could\ + \ cause harm to the body. Despite his dangerous line of work, it is all worth it to protect the happy smiles of Sekkekkyuu\ + \ AE3803, the platelet crew, his fellow neutrophils, and the other cells he meets along the way. \n\nIn his latest\ + \ pathogen-hunting adventures, Hakkekkyuu U-1146 discovers how important cells can sometimes make mistakes, and that\ + \ not all bacteria are actually bad. Everybody has their bad days, but everything eventually works out when their\ + \ comrades have their backs. In the end, it is just another normal day for these hardworking cells!\n\n[Written by\ + \ MAL Rewrite]" + background: '' + season: winter + year: 2021 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 56 + type: anime + name: Educational + url: https://myanimelist.net/anime/genre/56/Educational + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41109 + url: https://myanimelist.net/anime/41109/Log_Horizon__Entaku_Houkai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1510/108026.jpg + small_image_url: https://myanimelist.net/images/anime/1510/108026t.jpg + large_image_url: https://myanimelist.net/images/anime/1510/108026l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1510/108026.webp + small_image_url: https://myanimelist.net/images/anime/1510/108026t.webp + large_image_url: https://myanimelist.net/images/anime/1510/108026l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Log Horizon: Entaku Houkai' + - type: Synonym + title: Log Horizon 3rd Season + - type: Synonym + title: Log Horizon Third Season + - type: Japanese + title: ログ・ホライズン 円卓崩壊 + - type: English + title: 'Log Horizon: Destruction of the Round Table' + - type: German + title: 'Log Horizon: Destruction of the Round Table' + - type: French + title: 'Log Horizon: Destruction of the Round Table' + title: 'Log Horizon: Entaku Houkai' + title_english: 'Log Horizon: Destruction of the Round Table' + title_japanese: ログ・ホライズン 円卓崩壊 + title_synonyms: + - Log Horizon 3rd Season + - Log Horizon Third Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-01-13T00:00:00+00:00' + to: '2021-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2021 + to: + day: 31 + month: 3 + year: 2021 + string: Jan 13, 2021 to Mar 31, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 95146 + rank: 4654 + popularity: 1049 + members: 268498 + favorites: 666 + synopsis: |- + Third season of Log Horizon. + + It's been a year since Shiroe and his friends were trapped in Akiba due to the Catastrophe. Their forging of the Round Table has brought order and prosperity to its people. But fracturing political alliances and the constant menace of the Genius monsters threaten to destabilize all they've fought for and built. Can faith be restored and they persevere, or is its destruction truly inevitable? + + (Source: Funimation) + background: '' + season: winter + year: 2021 + broadcast: + day: Wednesdays + time: '19:25' + timezone: Asia/Tokyo + string: Wednesdays at 19:25 (JST) + producers: [] + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 38474 + url: https://myanimelist.net/anime/38474/Yuru_Camp△_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1255/110636.jpg + small_image_url: https://myanimelist.net/images/anime/1255/110636t.jpg + large_image_url: https://myanimelist.net/images/anime/1255/110636l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1255/110636.webp + small_image_url: https://myanimelist.net/images/anime/1255/110636t.webp + large_image_url: https://myanimelist.net/images/anime/1255/110636l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ciGB8qOyXrM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuru Camp△ Season 2 + - type: Synonym + title: Yuru Camp 2nd Season + - type: Synonym + title: Yurukyan + - type: Japanese + title: ゆるキャン△ SEASON2 + - type: English + title: Laid-Back Camp Season 2 + - type: German + title: Laid Back Camp Staffel 2 + - type: Spanish + title: Laid-Back Camp Temporada 2 + - type: French + title: Yuru Camp – Au grand air Saison 2 + title: Yuru Camp△ Season 2 + title_english: Laid-Back Camp Season 2 + title_japanese: ゆるキャン△ SEASON2 + title_synonyms: + - Yuru Camp 2nd Season + - Yurukyan + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-01-07T00:00:00+00:00' + to: '2021-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2021 + to: + day: 1 + month: 4 + year: 2021 + string: Jan 7, 2021 to Apr 1, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.5 + scored_by: 113832 + rank: 169 + popularity: 1109 + members: 254206 + favorites: 3195 + synopsis: "Having spent Christmas camping with her new friends, Rin Shima embarks on a solo-camping trip to see the\ + \ New Year sunrise by the sea. All goes according to plan until unforeseen weather blocks the roads back home, making\ + \ a return trip impossible. Rin, who is now stranded for a few days, is invited by Nadeshiko Kagamihara to stay at\ + \ her grandmother's house. \n\nWhat is supposed to be a two-day trip becomes an extended period of sightseeing and\ + \ new experiences for Rin, and she encounters some new and old faces along the way. Yuru Camp△ Season 2 continues\ + \ the story of Rin, Nadeshiko, and their friends as they further explore the joys of camping.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2021 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + licensors: [] + studios: + - mal_id: 1075 + type: anime + name: C-Station + url: https://myanimelist.net/anime/producer/1075/C-Station + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 63 + type: anime + name: Iyashikei + url: https://myanimelist.net/anime/genre/63/Iyashikei + demographics: [] + - mal_id: 41694 + url: https://myanimelist.net/anime/41694/Hataraku_Saibou_Black + images: + jpg: + image_url: https://myanimelist.net/images/anime/1837/110799.jpg + small_image_url: https://myanimelist.net/images/anime/1837/110799t.jpg + large_image_url: https://myanimelist.net/images/anime/1837/110799l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1837/110799.webp + small_image_url: https://myanimelist.net/images/anime/1837/110799t.webp + large_image_url: https://myanimelist.net/images/anime/1837/110799l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TlAOb50n3w0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Saibou Black + - type: Japanese + title: はたらく細胞BLACK + - type: English + title: Cells at Work! CODE BLACK! + - type: German + title: Cells at Work! Code BLACK + - type: French + title: Les Brigades Immunitaires BLACK + title: Hataraku Saibou Black + title_english: Cells at Work! CODE BLACK! + title_japanese: はたらく細胞BLACK + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-01-10T00:00:00+00:00' + to: '2021-03-19T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2021 + to: + day: 19 + month: 3 + year: 2021 + string: Jan 10, 2021 to Mar 19, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 88160 + rank: 2105 + popularity: 1161 + members: 245385 + favorites: 470 + synopsis: |- + Due to poor lifestyle choices, a certain human's body is in constant turmoil. With germs, bacteria, and foreign substances abound, the jobs of various cells become increasingly difficult and dangerous. As some of the unfortunate ones who matured in this chaotic environment, Sekkekkyuu AA2153 and Hakkekkyuu U-1196 strive to fulfill their duties—even if it means seeing many of their fellow cells lose their lives in duty. + + Set in an environment vastly different from its parent story, Hataraku Saibou Black portrays the cells' struggles as they try to maintain the body's health. However, the human's condition continues to deteriorate, and whether or not these efforts will amount to something concrete depends on the cells! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2021 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 56 + type: anime + name: Educational + url: https://myanimelist.net/anime/genre/56/Educational + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 39486 + url: https://myanimelist.net/anime/39486/Gintama__The_Final + images: + jpg: + image_url: https://myanimelist.net/images/anime/1245/116760.jpg + small_image_url: https://myanimelist.net/images/anime/1245/116760t.jpg + large_image_url: https://myanimelist.net/images/anime/1245/116760l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1245/116760.webp + small_image_url: https://myanimelist.net/images/anime/1245/116760t.webp + large_image_url: https://myanimelist.net/images/anime/1245/116760l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Zn1filVUyf8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Gintama: The Final' + - type: Japanese + title: 銀魂 THE FINAL + - type: English + title: 'Gintama: The Very Final' + - type: German + title: N/A + title: 'Gintama: The Final' + title_english: 'Gintama: The Very Final' + title_japanese: 銀魂 THE FINAL + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-01-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 1 + year: 2021 + to: + day: null + month: null + year: null + string: Jan 8, 2021 + duration: 1 hr 44 min + rating: PG-13 - Teens 13 or older + score: 9.05 + scored_by: 87355 + rank: 6 + popularity: 1505 + members: 184316 + favorites: 4675 + synopsis: |- + Two years have passed following the Tendoshuu's invasion of the O-Edo Central Terminal. Since then, the Yorozuya have gone their separate ways. Foreseeing Utsuro's return, Gintoki Sakata begins surveying Earth's ley lines for traces of the other man's Altana. After an encounter with the remnants of the Tendoshuu—who continue to press on in search of immortality—Gintoki returns to Edo. + + Later, the regrouped Shinsengumi and Yorozuya begin an attack on the occupied Central Terminal. With the Altana harvested by the wreckage of the Tendoshuu's ship in danger of detonating, the Yorozuya and their allies fight their enemies while the safety of Edo—and the rest of the world—hangs in the balance. Fulfilling the wishes of their teacher, Shouyou Yoshida's former students unite and relive their pasts one final time in an attempt to save their futures. + + [Written by MAL Rewrite] + background: 'As of March 2021, Gintama: The Final has earned a franchise record of 1.85 billion yen (16.94 million USD) + and debuted at No. 1 at the Japanese box office. The film concludes the Gintama anime series, adapting chapters 699-704 + of the original manga with new story elements.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 531 + type: anime + name: Eleven Arts + url: https://myanimelist.net/anime/producer/531/Eleven_Arts + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/46-2021-spring.yaml b/test/fixtures/jikan/season_matrix/46-2021-spring.yaml new file mode 100644 index 0000000..fcd88fe --- /dev/null +++ b/test/fixtures/jikan/season_matrix/46-2021-spring.yaml @@ -0,0 +1,3397 @@ +metadata: + captured_at: '2026-05-11T11:34:27Z' + label: 2021-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2021/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:26 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:4e3a37a59aff176fd8f6200ab1d9e4e9d082e342 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 275 + per_page: 25 + data: + - mal_id: 42249 + url: https://myanimelist.net/anime/42249/Tokyo_Revengers + images: + jpg: + image_url: https://myanimelist.net/images/anime/1839/122012.jpg + small_image_url: https://myanimelist.net/images/anime/1839/122012t.jpg + large_image_url: https://myanimelist.net/images/anime/1839/122012l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1839/122012.webp + small_image_url: https://myanimelist.net/images/anime/1839/122012t.webp + large_image_url: https://myanimelist.net/images/anime/1839/122012l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/r9M34VgTfzY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokyo Revengers + - type: Japanese + title: 東京リベンジャーズ + - type: English + title: Tokyo Revengers + title: Tokyo Revengers + title_english: Tokyo Revengers + title_japanese: 東京リベンジャーズ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2021-04-11T00:00:00+00:00' + to: '2021-09-19T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2021 + to: + day: 19 + month: 9 + year: 2021 + string: Apr 11, 2021 to Sep 19, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.82 + scored_by: 780274 + rank: 1139 + popularity: 106 + members: 1407129 + favorites: 25288 + synopsis: |- + Takemichi Hanagaki's second year of middle school was the highest point in his life. He had respect, a gang of friends he could count on, and even a girlfriend. But that was twelve years ago. Today, he's a nobody: a washed-up nonentity made fun of by children and always forced to apologize to his younger boss. A sudden news report on the Tokyo Manji Gang's cruel murder of the only girlfriend he ever had alongside her brother only adds insult to injury. Half a second before a train ends his pitiful life for good, Takemichi flashes back to that same day 12 years ago, when he was still dating Hinata Tachibana. + + After being forced to relive the very same day that began his downward spiral, Takemichi meets Hinata's younger brother. Without thinking, he admits to his seeming death before flashing back to the past. Takemichi urges him to protect his sister before inexplicably returning to the future. Miraculously, he is not dead. Stranger still, the future has changed. It seems as though Takemichi can alter the flow of time. Given the chance to prevent his ex-girlfriend's tragic death at the hands of the Tokyo Manji Gang, Takemichi decides to fly through time to change the course of the future. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: 02:08 + timezone: Asia/Tokyo + string: Sundays at 02:08 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41587 + url: https://myanimelist.net/anime/41587/Boku_no_Hero_Academia_5th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1911/113611.jpg + small_image_url: https://myanimelist.net/images/anime/1911/113611t.jpg + large_image_url: https://myanimelist.net/images/anime/1911/113611l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1911/113611.webp + small_image_url: https://myanimelist.net/images/anime/1911/113611t.webp + large_image_url: https://myanimelist.net/images/anime/1911/113611l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kkmW-tppFPM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 5th Season + - type: Synonym + title: My Hero Academia 5 + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia Season 5 + - type: German + title: My Hero Academia Staffel 5 + - type: Spanish + title: My Hero Academia Temporada 5 + - type: French + title: My Hero Academia Saison 5 + title: Boku no Hero Academia 5th Season + title_english: My Hero Academia Season 5 + title_japanese: 僕のヒーローアカデミア + title_synonyms: + - My Hero Academia 5 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2021-03-27T00:00:00+00:00' + to: '2021-09-25T00:00:00+00:00' + prop: + from: + day: 27 + month: 3 + year: 2021 + to: + day: 25 + month: 9 + year: 2021 + string: Mar 27, 2021 to Sep 25, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 712946 + rank: 2976 + popularity: 111 + members: 1359007 + favorites: 10273 + synopsis: |- + UA Academy's Class 1-A has been the focus of a substantial amount of public attention due to the multiple villain attacks they have faced over the past school year. This attention has left Class 1-A's rivals, Class 1-B, feeling quite bitter. Desiring to prove their skills, they look forward to the opportunity that has been given to them: a set of mock battles between the students of each class. + + The classes are split into squads of four, each of which is tasked with capturing the other group members. The winner is the group who first secures all of the opposing team. While this sounds simple, a curveball is thrown into the mix with the inclusion of General Course Student Hitoshi Shinsou, who wishes to transfer into the Hero Course. Despite using his training with Class 1-A's homeroom teacher Shouta "Eraserhead" Aizawa to prove that he's capable of being a real hero, he is still far behind the others due to his lack of experience. However, Shinsou is determined to overcome this challenge. + + Thus begins the fiery competition between Class 1-A and 1-B as each tries to prove that they are superior to the other. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41025 + url: https://myanimelist.net/anime/41025/Fumetsu_no_Anata_e + images: + jpg: + image_url: https://myanimelist.net/images/anime/1880/118484.jpg + small_image_url: https://myanimelist.net/images/anime/1880/118484t.jpg + large_image_url: https://myanimelist.net/images/anime/1880/118484l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1880/118484.webp + small_image_url: https://myanimelist.net/images/anime/1880/118484t.webp + large_image_url: https://myanimelist.net/images/anime/1880/118484l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YOn779f6lwI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fumetsu no Anata e + - type: Synonym + title: To You + - type: Synonym + title: the Immortal + - type: Japanese + title: 不滅のあなたへ + - type: English + title: To Your Eternity + - type: German + title: To Your Eternity + - type: Spanish + title: To Your Eternity + - type: French + title: To Your Eternity + title: Fumetsu no Anata e + title_english: To Your Eternity + title_japanese: 不滅のあなたへ + title_synonyms: + - To You + - the Immortal + type: TV + source: Manga + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2021-04-12T00:00:00+00:00' + to: '2021-08-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2021 + to: + day: 30 + month: 8 + year: 2021 + string: Apr 12, 2021 to Aug 30, 2021 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.35 + scored_by: 425971 + rank: 277 + popularity: 193 + members: 998309 + favorites: 16258 + synopsis: |- + An Orb, known only as It, is cast to Earth to be observed from afar. Capable of changing forms from beings whose reflections It captures, It first becomes a rock and then, due to the rising temperature, moss. + + It does not move until one snowy day, a wolf at death's door barely crosses by. When It takes the animal's form, It attains awareness of its consciousness and starts to wander with an unclear destination in mind. Soon, It comes across the wolf's master—a young boy waiting for his tribe to return from a paradise abundant with fish and fruit in the south. Although the boy is lonely, he still hopes those whom he holds dear in his memories have not forgotten him and that he will reunite with them one day. + + The boy wants to explore new surroundings and decides to abandon his home with It to find the paradise using the traces his tribe left behind. However, with a heavily injured body and no sight of his elder comrades, what will become of the boy? + + Fumetsu no Anata e illustrates the story of an immortal being experiencing humanity, meeting all types of people in many places throughout time. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Mondays + time: '22:50' + timezone: Asia/Tokyo + string: Mondays at 22:50 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41457 + url: https://myanimelist.net/anime/41457/86 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1987/117507.jpg + small_image_url: https://myanimelist.net/images/anime/1987/117507t.jpg + large_image_url: https://myanimelist.net/images/anime/1987/117507l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1987/117507.webp + small_image_url: https://myanimelist.net/images/anime/1987/117507t.webp + large_image_url: https://myanimelist.net/images/anime/1987/117507l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WVegRUOgkPM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '86' + - type: Synonym + title: Eighty Six + - type: Japanese + title: 86―エイティシックス― + - type: English + title: 86 Eighty-Six + - type: German + title: 86 Eighty-Six + - type: Spanish + title: 86 Eighty-Six + - type: French + title: 86 Eighty-Six + title: '86' + title_english: 86 Eighty-Six + title_japanese: 86―エイティシックス― + title_synonyms: + - Eighty Six + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-04-11T00:00:00+00:00' + to: '2021-06-20T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2021 + to: + day: 20 + month: 6 + year: 2021 + string: Apr 11, 2021 to Jun 20, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.35 + scored_by: 510076 + rank: 275 + popularity: 200 + members: 973247 + favorites: 27229 + synopsis: |- + According to the Republic of San Magnolia, their ongoing war against the Giadian Empire has no casualties—however, that is mere propaganda. While the silver-haired Alba of the Republic's eighty-five sectors live safely behind protective walls, those of different appearances are interned in a secret eighty-sixth faction. Known within the military as the Eighty-Six, they are forced to fight against the Empire's autonomous Legion under the command of the Republican "Handlers." + + Vladilena Milizé is assigned to the Spearhead squadron to replace their previous Handler. Shunned by her peers for being a fellow Eighty-Six supporter, she continues to fight against their inhumane discrimination. Shinei Nouzen is the captain of the Spearhead squadron. Infamous for being the sole survivor of every squadron he's been in, he insists on shouldering the names and wishes of his fallen comrades. When the fates of these young souls from two different worlds collide, will it ignite the spark that lights their path to salvation, or will they burn themselves in the flames of despair? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 42361 + url: https://myanimelist.net/anime/42361/Ijiranaide_Nagatoro-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1900/110097.jpg + small_image_url: https://myanimelist.net/images/anime/1900/110097t.jpg + large_image_url: https://myanimelist.net/images/anime/1900/110097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1900/110097.webp + small_image_url: https://myanimelist.net/images/anime/1900/110097t.webp + large_image_url: https://myanimelist.net/images/anime/1900/110097l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bw5jwgdbqKc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ijiranaide, Nagatoro-san + - type: Synonym + title: Please don't bully me + - type: Synonym + title: Nagatoro + - type: Japanese + title: イジらないで、長瀞さん + - type: English + title: Don't Toy with Me, Miss Nagatoro + - type: German + title: Don´t Toy with Me, Miss Nagatoro + - type: Spanish + title: Don´t Toy with Me, Miss Nagatoro + - type: French + title: Arrête de me chauffer, Nagatoro + title: Ijiranaide, Nagatoro-san + title_english: Don't Toy with Me, Miss Nagatoro + title_japanese: イジらないで、長瀞さん + title_synonyms: + - Please don't bully me + - Nagatoro + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-11T00:00:00+00:00' + to: '2021-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2021 + to: + day: 27 + month: 6 + year: 2021 + string: Apr 11, 2021 to Jun 27, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 483695 + rank: 4078 + popularity: 237 + members: 887628 + favorites: 8998 + synopsis: |- + Every day, Naoto Hachiouji is teased relentlessly by Hayase Nagatoro, a first year student he meets one day in the library while working on his manga. After reading his story and seeing his awkward demeanor, she decides from that moment on to toy with him, even calling him "Senpai" in lieu of using his real name. + + At first, Nagatoro's relentless antics are more bothersome than anything and leave him feeling embarrassed, as he is forced to cater to her whims. However, as they spend more time together, a strange sort of friendship develops between them, and Naoto finds that life with Nagatoro can even be fun. But one thing's for sure: his days will never be dull again. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: [] + studios: + - mal_id: 94 + type: anime + name: Telecom Animation Film + url: https://myanimelist.net/anime/producer/94/Telecom_Animation_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 40938 + url: https://myanimelist.net/anime/40938/Hige_wo_Soru_Soshite_Joshikousei_wo_Hirou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1146/113477.jpg + small_image_url: https://myanimelist.net/images/anime/1146/113477t.jpg + large_image_url: https://myanimelist.net/images/anime/1146/113477l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1146/113477.webp + small_image_url: https://myanimelist.net/images/anime/1146/113477t.webp + large_image_url: https://myanimelist.net/images/anime/1146/113477l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8zZiwvF8IeY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hige wo Soru. Soshite Joshikousei wo Hirou. + - type: Synonym + title: I Shaved. Then I Brought a High School Girl Home. + - type: Synonym + title: Higehiro + - type: Japanese + title: ひげを剃る。そして女子高生を拾う。 + - type: English + title: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + - type: German + title: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + - type: Spanish + title: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + - type: French + title: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + title: Hige wo Soru. Soshite Joshikousei wo Hirou. + title_english: 'Higehiro: After Being Rejected, I Shaved and Took in a High School Runaway' + title_japanese: ひげを剃る。そして女子高生を拾う。 + title_synonyms: + - I Shaved. Then I Brought a High School Girl Home. + - Higehiro + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-05T00:00:00+00:00' + to: '2021-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2021 + to: + day: 28 + month: 6 + year: 2021 + string: Apr 5, 2021 to Jun 28, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 361479 + rank: 3547 + popularity: 363 + members: 673988 + favorites: 6359 + synopsis: |- + When regular salaryman Yoshida wakes up one Sunday morning after a long night at the bar, the last thing he expects to see is that his tiny apartment has a new resident—an unfamiliar high school girl. + + The previous night, despite finally gathering the courage to confess to his boss and longtime crush, Airi Gotou, Yoshida was rejected. After drowning his sorrows at a bar with his good friend Hashimoto, Yoshida headed back to his home in a drunken stupor, only to run into Sayu Ogiwara, a runaway high schooler. She asked him to let her stay the night, and with his judgment clouded by alcohol, Yoshida complied. + + Now, with his head on straight but with no memory of last night's events, Yoshida has Sayu explain just how she ended up sleeping at his apartment. Having listened to her story, Yoshida finds himself unable to kick her out—especially after learning that she came all the way from Hokkaido! So, despite his reservations about sheltering an underage girl, Yoshida allows her to stay, and their life together begins. + + [Written by MAL Rewrite] + background: Hige wo Soru. Soshite Joshikousei wo Hirou. was released on Blu-ray in four volumes from June 9, 2021, to + September 29, 2021. + season: spring + year: 2021 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1792 + type: anime + name: Yomiuri Shimbun + url: https://myanimelist.net/anime/producer/1792/Yomiuri_Shimbun + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 46095 + url: https://myanimelist.net/anime/46095/Vivy__Fluorite_Eyes_Song + images: + jpg: + image_url: https://myanimelist.net/images/anime/1551/128960.jpg + small_image_url: https://myanimelist.net/images/anime/1551/128960t.jpg + large_image_url: https://myanimelist.net/images/anime/1551/128960l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1551/128960.webp + small_image_url: https://myanimelist.net/images/anime/1551/128960t.webp + large_image_url: https://myanimelist.net/images/anime/1551/128960l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t3IHpQZHPFY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Vivy: Fluorite Eye''s Song' + - type: Japanese + title: Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-) + - type: English + title: Vivy -Fluorite Eye's Song- + - type: German + title: Vivy - Fluorite Eye´s Song - + - type: French + title: Vivy - Fluorite Eye´s Song - + title: 'Vivy: Fluorite Eye''s Song' + title_english: Vivy -Fluorite Eye's Song- + title_japanese: Vivy -Fluorite Eye's Song- (ヴィヴィ -フローライトアイズソング-) + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-03T00:00:00+00:00' + to: '2021-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2021 + to: + day: 19 + month: 6 + year: 2021 + string: Apr 3, 2021 to Jun 19, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.38 + scored_by: 273489 + rank: 248 + popularity: 410 + members: 609429 + favorites: 11555 + synopsis: |- + When highly evolved AIs set out to eradicate mankind, the carnage that ensues fills the air with the stench of fresh blood and burning bodies. In a desperate bid to prevent the calamity from ever occurring, a scientist bets everything on a remnant from the past. + + Turning the clock back a hundred years, AIs are already an integral part of human society, programmed with specific missions meant to be carried out for their entire course of operation. Vivy, the first ever autonomous AI, is a songstress tasked with spreading happiness through her voice. In a theme park where she hardly ever gets a proper audience, she strives to pour her heart out into her performances, bound to repeat it day after day—that is, until an advanced AI from the future appears before her and enlists her help in stopping a devastating war a hundred years in the making. With no time to process the revelation that flips her world upside down, Vivy is catapulted into a century-long journey to avert the violent history yet to come. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 42938 + url: https://myanimelist.net/anime/42938/Fruits_Basket__The_Final + images: + jpg: + image_url: https://myanimelist.net/images/anime/1085/114792.jpg + small_image_url: https://myanimelist.net/images/anime/1085/114792t.jpg + large_image_url: https://myanimelist.net/images/anime/1085/114792l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1085/114792.webp + small_image_url: https://myanimelist.net/images/anime/1085/114792t.webp + large_image_url: https://myanimelist.net/images/anime/1085/114792l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Ip8Btv2t_6c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fruits Basket: The Final' + - type: Synonym + title: Fruits Basket 3rd Season + - type: Synonym + title: Fruits Basket (2019) 3rd Season + - type: Synonym + title: Furuba + - type: Japanese + title: フルーツバスケット The Final + - type: English + title: 'Fruits Basket: The Final Season' + - type: German + title: Fruits Basket Staffel 3 + - type: Spanish + title: 'Fruits Basket: The Final Season' + - type: French + title: Fruits Basket Saison 3 + title: 'Fruits Basket: The Final' + title_english: 'Fruits Basket: The Final Season' + title_japanese: フルーツバスケット The Final + title_synonyms: + - Fruits Basket 3rd Season + - Fruits Basket (2019) 3rd Season + - Furuba + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-06T00:00:00+00:00' + to: '2021-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2021 + to: + day: 29 + month: 6 + year: 2021 + string: Apr 6, 2021 to Jun 29, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.93 + scored_by: 280724 + rank: 18 + popularity: 442 + members: 563623 + favorites: 21369 + synopsis: |- + Hundreds of years ago, the Chinese zodiac spirits and their god swore to stay together eternally. United by this promise, the possessed members of the Souma family shall always return to each other under any circumstances. Yet, when these bonds shackle them from freedom, it becomes an undesirable burden—a curse. As head of the clan, Akito is convinced that he shares a special connection with the other Soumas. While he desperately clings to this fantasy, the rest of the family remains isolated and suppressed by the fear of punishment. + + Tooru Honda, who has grown attached to the Soumas, is determined to break the chains that bind them. Her companionship with the family and her friends encourages her to move forward with lifting the curse. However, due to confounding revelations, she struggles to find the tenacity to continue her endeavors. With time slowly withering away, Tooru contends with an uncertain future in hopes of reaching the tranquility that may lie beyond all this commotion. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 100 + type: anime + name: TV Osaka + url: https://myanimelist.net/anime/producer/100/TV_Osaka + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 46102 + url: https://myanimelist.net/anime/46102/Odd_Taxi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1981/113348.jpg + small_image_url: https://myanimelist.net/images/anime/1981/113348t.jpg + large_image_url: https://myanimelist.net/images/anime/1981/113348l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1981/113348.webp + small_image_url: https://myanimelist.net/images/anime/1981/113348t.webp + large_image_url: https://myanimelist.net/images/anime/1981/113348l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rS228HesD9g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Odd Taxi + - type: Japanese + title: オッドタクシー + - type: English + title: Odd Taxi + title: Odd Taxi + title_english: Odd Taxi + title_japanese: オッドタクシー + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-06T00:00:00+00:00' + to: '2021-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2021 + to: + day: 29 + month: 6 + year: 2021 + string: Apr 6, 2021 to Jun 29, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.63 + scored_by: 251245 + rank: 95 + popularity: 508 + members: 510828 + favorites: 9202 + synopsis: |- + Eccentric and blunt, the walrus Hiroshi Odokawa lives a relatively normal life. He drives a taxi for a living, and there he meets several unique individuals: the jobless Taichi Kabasawa who is dead-set on going viral, the mysterious nurse Miho Shirakawa, the struggling comedic duo "Homo Sapiens," and Dobu, a well-known delinquent. + + But Odokawa's simple way of life is about to be turned upside down. The case of a missing girl the police have been tracking leads back to him, and now both the yakuza and a duo of corrupt cops are on his tail. + + [Written by MAL Rewrite] + background: Winner of the New Face Award at the 25th Japan Media Arts Festival. + season: spring + year: 2021 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + - mal_id: 2177 + type: anime + name: Mimoid + url: https://myanimelist.net/anime/producer/2177/Mimoid + - mal_id: 2442 + type: anime + name: Yoshimoto Kogyo + url: https://myanimelist.net/anime/producer/2442/Yoshimoto_Kogyo + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 1872 + type: anime + name: P.I.C.S. + url: https://myanimelist.net/anime/producer/1872/PICS + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 44074 + url: https://myanimelist.net/anime/44074/Shiguang_Dailiren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1135/114867.jpg + small_image_url: https://myanimelist.net/images/anime/1135/114867t.jpg + large_image_url: https://myanimelist.net/images/anime/1135/114867l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1135/114867.webp + small_image_url: https://myanimelist.net/images/anime/1135/114867t.webp + large_image_url: https://myanimelist.net/images/anime/1135/114867l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EANXr1vDjN8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shiguang Dailiren + - type: Synonym + title: 時光代理人 + - type: Synonym + title: Jikou Dairinin + - type: Synonym + title: Shi Guang Dai Li Ren + - type: Japanese + title: 时光代理人 + - type: English + title: Link Click + title: Shiguang Dailiren + title_english: Link Click + title_japanese: 时光代理人 + title_synonyms: + - 時光代理人 + - Jikou Dairinin + - Shi Guang Dai Li Ren + type: ONA + source: Original + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-04-30T00:00:00+00:00' + to: '2021-07-09T00:00:00+00:00' + prop: + from: + day: 30 + month: 4 + year: 2021 + to: + day: 9 + month: 7 + year: 2021 + string: Apr 30, 2021 to Jul 9, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.69 + scored_by: 189839 + rank: 73 + popularity: 542 + members: 481311 + favorites: 14910 + synopsis: |- + It is said that a picture is worth a thousand words. In this case, it holds an infinite amount of secrets. These are secrets that only Cheng Xiaoshi and Lu Guang are able to find. In a small shop called "Time Photo Studio," the two friends provide a special service: using their extraordinary powers that let them enter photographs, they jump into pictures brought to them by clients in order to grant their wishes. Through the eyes of the photographer, they live through the events surrounding the picture and try to decipher how to solve their client's request. + + But every time they jump into a picture, they take a great risk. One wrong move and they could alter the future of the person who took the picture... and possibly countless other events too. So when the events they are forced to live through in these pictures start to become personal, it will take the utmost strength to push their feelings aside and focus on accomplishing the task they were paid to do. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 2357 + type: anime + name: BeDream + url: https://myanimelist.net/anime/producer/2357/BeDream + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1774 + type: anime + name: LAN Studio + url: https://myanimelist.net/anime/producer/1774/LAN_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 43692 + url: https://myanimelist.net/anime/43692/Gokushufudou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1535/117726.jpg + small_image_url: https://myanimelist.net/images/anime/1535/117726t.jpg + large_image_url: https://myanimelist.net/images/anime/1535/117726l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1535/117726.webp + small_image_url: https://myanimelist.net/images/anime/1535/117726t.webp + large_image_url: https://myanimelist.net/images/anime/1535/117726l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cvZ9thKolOA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gokushufudou + - type: Synonym + title: The Way of the House Husband + - type: Synonym + title: Yakuza goes Houseman + - type: Japanese + title: 極主夫道 + - type: English + title: The Way of the Househusband + - type: German + title: Yakuza goes Hausmann + - type: Spanish + title: De Yakuza a Amo de Casa + - type: French + title: La Voie du tablier + title: Gokushufudou + title_english: The Way of the Househusband + title_japanese: 極主夫道 + title_synonyms: + - The Way of the House Husband + - Yakuza goes Houseman + type: ONA + source: Web manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2021-04-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 4 + year: 2021 + to: + day: null + month: null + year: null + string: Apr 8, 2021 + duration: 17 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 267840 + rank: 3541 + popularity: 549 + members: 476527 + favorites: 2909 + synopsis: |- + Who would have ever thought that the most feared gangster of his time now spends his days as a modest househusband? Seemingly giving up the way of the yakuza, the legendary "Immortal Dragon" Tatsu, best known for his prolific skirmishes against rival gangs, has abruptly vanished. Unbeknownst to most, however, Tatsu is currently staying at an apartment with his wife, doing his best to live a peaceful life. + + Donning his trusty apron, Tatsu is now striving to become an efficient homemaker. Because of this, he has mastered the required skills—be it cooking the most delicious dishes, making sure to get the best deals at supermarkets, and everything in between—garnering the surprise of both of his former subordinates and enemies alike. Despite being a man with quite a controversial past, Tatsu's new way of life will only be more eccentric from here on out! + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 41623 + url: https://myanimelist.net/anime/41623/Isekai_Maou_to_Shoukan_Shoujo_no_Dorei_Majutsu_Ω + images: + jpg: + image_url: https://myanimelist.net/images/anime/1011/113703.jpg + small_image_url: https://myanimelist.net/images/anime/1011/113703t.jpg + large_image_url: https://myanimelist.net/images/anime/1011/113703l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1011/113703.webp + small_image_url: https://myanimelist.net/images/anime/1011/113703t.webp + large_image_url: https://myanimelist.net/images/anime/1011/113703l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TQokj-9LYv8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω + - type: Synonym + title: How Not to Summon a Demon Lord 2nd Season + - type: Synonym + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season + - type: Synonym + title: The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season + - type: Synonym + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega + - type: Japanese + title: 異世界魔王と召喚少女の奴隷魔術Ω + - type: English + title: How Not to Summon a Demon Lord Ω + - type: German + title: How Not to Summon a Demon Lord Ω + - type: Spanish + title: How Not to Summon a Demon Lord Ω + - type: French + title: How Not to Summon a Demon Lord Ω + title: Isekai Maou to Shoukan Shoujo no Dorei Majutsu Ω + title_english: How Not to Summon a Demon Lord Ω + title_japanese: 異世界魔王と召喚少女の奴隷魔術Ω + title_synonyms: + - How Not to Summon a Demon Lord 2nd Season + - Isekai Maou to Shoukan Shoujo no Dorei Majutsu 2nd Season + - The Otherworldly Demon King and the Summoner Girls' Slave Magic 2nd Season + - Isekai Maou to Shoukan Shoujo no Dorei Majutsu Omega + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2021-04-09T00:00:00+00:00' + to: '2021-06-11T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2021 + to: + day: 11 + month: 6 + year: 2021 + string: Apr 9, 2021 to Jun 11, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.68 + scored_by: 212577 + rank: 7057 + popularity: 564 + members: 466748 + favorites: 2782 + synopsis: |- + The Demon King Diablo is back as... God? A fateful encounter with the High Priest Lumachina Weselia finds Diablo and his party accompanying this mysterious stranger on a journey to cleanse the Church of its corruption. Believed to be God by Lumachina, Diablo eventually decides to protect her on her initial quest to find the head paladin, the virtuous Batutta. + + Diablo, Rem, Shera and Lumachina are joined by the grasswalker, Horn and the Magmatic Maid, Rose. Will Diablo fulfil Lumachina's wish? And can the Demon Lord from Another World truly play the role of God? + background: '' + season: spring + year: 2021 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + - mal_id: 2037 + type: anime + name: Okuruto Noboru + url: https://myanimelist.net/anime/producer/2037/Okuruto_Noboru + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 40586 + url: https://myanimelist.net/anime/40586/Slime_Taoshite_300-nen_Shiranai_Uchi_ni_Level_Max_ni_Nattemashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1888/133089.jpg + small_image_url: https://myanimelist.net/images/anime/1888/133089t.jpg + large_image_url: https://myanimelist.net/images/anime/1888/133089l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1888/133089.webp + small_image_url: https://myanimelist.net/images/anime/1888/133089t.webp + large_image_url: https://myanimelist.net/images/anime/1888/133089l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/04BFCHXpBq8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita + - type: Synonym + title: Slime 300 + - type: Japanese + title: スライム倒して300年、知らないうちにレベルMAXになってました + - type: English + title: I've Been Killing Slimes for 300 Years and Maxed Out My Level + - type: German + title: I've Been Killing Slimes For 300 Years And Maxed Out My Level + - type: Spanish + title: I've Been Killing Slimes For 300 Years And Maxed Out My Level + - type: French + title: La Sorcière invincible tueuse de Slime depuis 300 ans + title: Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita + title_english: I've Been Killing Slimes for 300 Years and Maxed Out My Level + title_japanese: スライム倒して300年、知らないうちにレベルMAXになってました + title_synonyms: + - Slime 300 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-10T00:00:00+00:00' + to: '2021-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2021 + to: + day: 26 + month: 6 + year: 2021 + string: Apr 10, 2021 to Jun 26, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 218789 + rank: 5767 + popularity: 592 + members: 449811 + favorites: 2338 + synopsis: |- + In role-playing games, slimes are usually the easiest monster to kill, and because of that, they yield few experience points. But what would happen if you live long enough to keep defeating them for 300 years? + + After many years of being a corporate slave, Azusa Aizawa abruptly passes away due to severe exhaustion. Seemingly headed for the afterlife, she meets a goddess who bestows her with immortality alongside a peaceful life in another world. There, Azusa enjoys her days tending to her farm, protecting the nearby village, and killing about 25 slimes per day—a routine that continues for at least three centuries. + + However, this rather monotonous cycle begins to change when Azusa suddenly finds out that she has reached level 99—the maximum possible level—from slimes alone. Despite desperately trying to hide this fact in fear of ending her slow life, rumors of her strength spread nevertheless. Soon enough, various people throughout the continent, like the dragon Laika and the elf Halkara, start to appear at her doorstep—some seeking a battle, others asking for her assistance. Meeting friends and acquaintances who soon become family, Azusa finds she can live a life far better with others than when she was alone. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Saturdays + time: '21:00' + timezone: Asia/Tokyo + string: Saturdays at 21:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: [] + studios: + - mal_id: 1692 + type: anime + name: Revoroot + url: https://myanimelist.net/anime/producer/1692/Revoroot + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 41456 + url: https://myanimelist.net/anime/41456/Sentouin_Haken_shimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/115118.jpg + small_image_url: https://myanimelist.net/images/anime/1444/115118t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/115118l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/115118.webp + small_image_url: https://myanimelist.net/images/anime/1444/115118t.webp + large_image_url: https://myanimelist.net/images/anime/1444/115118l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3DHctZTqsFo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sentouin, Haken shimasu! + - type: Japanese + title: 戦闘員、派遣します! + - type: English + title: Combatants Will Be Dispatched! + - type: German + title: Kombattanten Werden Entsandt! + title: Sentouin, Haken shimasu! + title_english: Combatants Will Be Dispatched! + title_japanese: 戦闘員、派遣します! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-04T00:00:00+00:00' + to: '2021-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2021 + to: + day: 20 + month: 6 + year: 2021 + string: Apr 4, 2021 to Jun 20, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.14 + scored_by: 198048 + rank: 4351 + popularity: 639 + members: 422574 + favorites: 2098 + synopsis: "As a chief operative of the villainous Kisaragi Corporation, Sentouin Roku-gou receives orders to help the\ + \ organization conquer the entire known universe. Tasked with infiltrating the kingdom of Grace—a mission that could\ + \ change the fate of the world—Roku-gou mistakenly believes that his skills as a combatant are superb, fuelling his\ + \ arrogant attitude. To ensure the success of the mission, Alice Kisaragi, an exceptional android with a youthful\ + \ appearance named after the company itself, is assigned to be Roku-gou's travel companion. \n\nUpon their arrival\ + \ at the outskirts of the kingdom, Alice and Roku-gou encounter Snow, the commander of the country's royal guard.\ + \ Snow leads the pair to a broken legendary artifact, and Roku-gou seizes the opportunity for a long-awaited promotion\ + \ at his company and changes the recitation for the sacred ritual to an embarrassing phrase. As punishment, the princess\ + \ of the kingdom forces Roku-gou to become an honorary knight, fulfilling part of his mission. Having infiltrated\ + \ the kingdom's inner circle, Roku-gou must now help his new employer fight against the Demon Lord's Army, all while\ + \ perpetuating evil deeds as a combatant of the Kisaragi Corporation. \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: '21:00' + timezone: Asia/Tokyo + string: Sundays at 21:00 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 44942 + url: https://myanimelist.net/anime/44942/Shuumatsu_no_Walküre + images: + jpg: + image_url: https://myanimelist.net/images/anime/1456/115123.jpg + small_image_url: https://myanimelist.net/images/anime/1456/115123t.jpg + large_image_url: https://myanimelist.net/images/anime/1456/115123l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1456/115123.webp + small_image_url: https://myanimelist.net/images/anime/1456/115123t.webp + large_image_url: https://myanimelist.net/images/anime/1456/115123l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qaOVEnq379A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shuumatsu no Walküre + - type: Synonym + title: Shuumatsu no Valkyrie + - type: Synonym + title: Valkyrie of the End + - type: Synonym + title: Valkyrie Apocalypse + - type: Japanese + title: 終末のワルキューレ + - type: English + title: Record of Ragnarok + - type: German + title: Record of Ragnarok + - type: Spanish + title: Record of Ragnarok + - type: French + title: Valkyrie Apocalypse + title: Shuumatsu no Walküre + title_english: Record of Ragnarok + title_japanese: 終末のワルキューレ + title_synonyms: + - Shuumatsu no Valkyrie + - Valkyrie of the End + - Valkyrie Apocalypse + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-06-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 6 + year: 2021 + to: + day: null + month: null + year: null + string: Jun 17, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.84 + scored_by: 222487 + rank: 6057 + popularity: 693 + members: 392785 + favorites: 2112 + synopsis: "The gods of the world—from Greek to Norse to Hindu mythology—gather every one thousand years to make one\ + \ important decision: whether or not to wipe out mankind. Repulsed by humanity's selfishness, the council unanimously\ + \ votes to destroy all humans. But before the decree is enacted, Brunhilde, one of the 13 Valkyries of Valhalla, interrupts\ + \ the meeting to give mankind a chance at survival. \n\nBrunhilde proposes the idea of enacting Ragnarök, an event\ + \ in which the strongest 13 mortal warriors fight against 13 gods in one-on-one matches. Although the trial is ridiculed\ + \ by the gods, the demigod takes advantage of their pride and forces them into an agreement. However, Brunhilde herself\ + \ must recruit the mightiest heroes throughout humanity's thousand-year history and guide them to victory before they\ + \ meet their untimely demise.\n\n[Written by MAL Rewrite]" + background: Shuumatsu no Walküre premiered worldwide exclusively on Netflix on June 17, 2021. The OVA has been dubbed + in English by SDI Media; in French by Cinéphase; in German by SDI Media Germany; in Italian; in Portuguese by Unimedia; + and in Spanish by SDI Spain. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 995 + type: anime + name: Coamix + url: https://myanimelist.net/anime/producer/995/Coamix + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 3155 + type: anime + name: Team-MAX + url: https://myanimelist.net/anime/producer/3155/Team-MAX + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 894 + type: anime + name: Graphinica + url: https://myanimelist.net/anime/producer/894/Graphinica + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 41488 + url: https://myanimelist.net/anime/41488/Tensura_Nikki__Tensei_shitara_Slime_Datta_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/1458/117607.jpg + small_image_url: https://myanimelist.net/images/anime/1458/117607t.jpg + large_image_url: https://myanimelist.net/images/anime/1458/117607l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1458/117607.webp + small_image_url: https://myanimelist.net/images/anime/1458/117607t.webp + large_image_url: https://myanimelist.net/images/anime/1458/117607l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JyCSGTKcNPA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tensura Nikki: Tensei shitara Slime Datta Ken' + - type: Japanese + title: 転スラ日記 転生したらスライムだった件 + - type: English + title: The Slime Diaries + - type: German + title: The Slime Diaries + - type: Spanish + title: The Slime Diaries + - type: French + title: The Slime Diaries + title: 'Tensura Nikki: Tensei shitara Slime Datta Ken' + title_english: The Slime Diaries + title_japanese: 転スラ日記 転生したらスライムだった件 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-06T00:00:00+00:00' + to: '2021-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2021 + to: + day: 22 + month: 6 + year: 2021 + string: Apr 6, 2021 to Jun 22, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 174088 + rank: 1864 + popularity: 715 + members: 383761 + favorites: 2160 + synopsis: |- + In between slaying monsters and negotiating with neighboring countries, Rimuru Tempest has his hands full attending to his kingdom alongside day-to-day matters. But whether it's expanding the farms in the summer heat or shoveling snow in the chilly winter, no task is too big for Rimuru and his friends! + + [Written by MAL Rewrite] + background: 'Tensura Nikki: Tensei shitara Slime Datta Ken was initially scheduled to begin airing in January 2021, + but it was delayed for three months due to the COVID-19 pandemic.' + season: spring + year: 2021 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41402 + url: https://myanimelist.net/anime/41402/Mairimashita_Iruma-kun_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1527/113656.jpg + small_image_url: https://myanimelist.net/images/anime/1527/113656t.jpg + large_image_url: https://myanimelist.net/images/anime/1527/113656l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1527/113656.webp + small_image_url: https://myanimelist.net/images/anime/1527/113656t.webp + large_image_url: https://myanimelist.net/images/anime/1527/113656l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mairimashita! Iruma-kun 2nd Season + - type: Synonym + title: Welcome to Demon School! Iruma-kun 2nd Season + - type: Japanese + title: 魔入りました!入間くん + - type: English + title: Welcome to Demon School! Iruma-kun Season 2 + - type: German + title: Welcome to Demon School! Iruma-kun Staffel 2 + - type: Spanish + title: Welcome to Demon School! Iruma-kun Temporada 2 + - type: French + title: Welcome to Demon School! Iruma-kun Saison 2 + title: Mairimashita! Iruma-kun 2nd Season + title_english: Welcome to Demon School! Iruma-kun Season 2 + title_japanese: 魔入りました!入間くん + title_synonyms: + - Welcome to Demon School! Iruma-kun 2nd Season + type: TV + source: Manga + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2021-04-17T00:00:00+00:00' + to: '2021-09-11T00:00:00+00:00' + prop: + from: + day: 17 + month: 4 + year: 2021 + to: + day: 11 + month: 9 + year: 2021 + string: Apr 17, 2021 to Sep 11, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.02 + scored_by: 187831 + rank: 724 + popularity: 736 + members: 374134 + favorites: 2503 + synopsis: "After many trials and tribulations, Iruma Suzuki is finally happily living among demons despite having to\ + \ hide his true identity as a human. Even more so, he has now found his ambition in life: keep ranking up in this\ + \ world!\n\nHowever, that plan is halted when Iruma's club is temporarily dismissed, and he is forced to be part of\ + \ the student council, known for its strictness toward rowdy students. Its cold-hearted president is Amelie Azazel,\ + \ Iruma's friend. Although Iruma is not used to following their rigid schedule and many rules, he still wants to prove\ + \ himself and help Amelie alongside all of the other members of the council. \n\nBut trouble arises when Amelie's\ + \ personality completely changes due to strange circumstances, putting the student council's reputation in jeopardy.\ + \ Will Iruma be able to save them and avoid having the whole school turn into pure chaos?\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2021 + broadcast: + day: Saturdays + time: '17:35' + timezone: Asia/Tokyo + string: Saturdays at 17:35 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 43007 + url: https://myanimelist.net/anime/43007/Osananajimi_ga_Zettai_ni_Makenai_Love_Comedy + images: + jpg: + image_url: https://myanimelist.net/images/anime/1111/113327.jpg + small_image_url: https://myanimelist.net/images/anime/1111/113327t.jpg + large_image_url: https://myanimelist.net/images/anime/1111/113327l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1111/113327.webp + small_image_url: https://myanimelist.net/images/anime/1111/113327t.webp + large_image_url: https://myanimelist.net/images/anime/1111/113327l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/U330AyuQIOY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Osananajimi ga Zettai ni Makenai Love Comedy + - type: Synonym + title: The Romcom Where the Childhood Friend Won't Lose! + - type: Synonym + title: Osamake + - type: Japanese + title: 幼なじみが絶対に負けないラブコメ + - type: English + title: 'Osamake: Romcom Where the Childhood Friend Won''t Lose' + - type: German + title: 'Osamake: Romcom Where the Childhood Friend Won''t Lose' + - type: Spanish + title: 'Osamake: Romcom Where the Childhood Friend Won''t Lose' + - type: French + title: 'Osamake: Romcom Where the Childhood Friend Won''t Lose' + title: Osananajimi ga Zettai ni Makenai Love Comedy + title_english: 'Osamake: Romcom Where the Childhood Friend Won''t Lose' + title_japanese: 幼なじみが絶対に負けないラブコメ + title_synonyms: + - The Romcom Where the Childhood Friend Won't Lose! + - Osamake + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-14T00:00:00+00:00' + to: '2021-06-30T00:00:00+00:00' + prop: + from: + day: 14 + month: 4 + year: 2021 + to: + day: 30 + month: 6 + year: 2021 + string: Apr 14, 2021 to Jun 30, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.07 + scored_by: 129545 + rank: 10667 + popularity: 951 + members: 294253 + favorites: 1675 + synopsis: |- + Sueharu Maru is childhood best friends with one of Hozumino High School's most popular girls, Kuroha Shida. Cute, outgoing, and affectionate, Kuroha is the perfect older sister type. She has boys constantly begging at her feet to be with her. Yet, when she confesses to Sueharu one day, he immediately rejects her; he just can't think of her in that way! Besides, he already has his sights set on his first love—school idol and renowned author Shirokusa Kachi. + + Sueharu believes that he has a chance with Kachi after one fateful meeting, but soon, he finds out that Kachi has a boyfriend! With his dreams now shattered, Sueharu agonizes over what could have been. That is, until Kuroha approaches him with a proposal: "let's get revenge." + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 43325 + url: https://myanimelist.net/anime/43325/Yuukoku_no_Moriarty_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1200/111522.jpg + small_image_url: https://myanimelist.net/images/anime/1200/111522t.jpg + large_image_url: https://myanimelist.net/images/anime/1200/111522l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1200/111522.webp + small_image_url: https://myanimelist.net/images/anime/1200/111522t.webp + large_image_url: https://myanimelist.net/images/anime/1200/111522l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DeI3yNsyMKI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuukoku no Moriarty Part 2 + - type: Synonym + title: Moriarty's Patriotism Part 2 + - type: Synonym + title: Moriarty the Patriot 2 + - type: Japanese + title: 憂国のモリアーティ + - type: English + title: Moriarty the Patriot Part 2 + - type: German + title: Moriarty the Patriot Staffel 2 + - type: French + title: Moriarty the Patriot Saison 2 + title: Yuukoku no Moriarty Part 2 + title_english: Moriarty the Patriot Part 2 + title_japanese: 憂国のモリアーティ + title_synonyms: + - Moriarty's Patriotism Part 2 + - Moriarty the Patriot 2 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-04T00:00:00+00:00' + to: '2021-06-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2021 + to: + day: 27 + month: 6 + year: 2021 + string: Apr 4, 2021 to Jun 27, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.29 + scored_by: 138099 + rank: 345 + popularity: 961 + members: 292398 + favorites: 3315 + synopsis: |- + Great Britain is ablaze with news of a so-called "Lord of Crime," a criminal mastermind responsible for the downfall of several unruly nobles. In truth, the Lord of Crime is not an individual, but rather a group consisting of William James Moriarty and his two brothers, Louis and Albert. Together, they wish to destroy everything rotten about their current world and create a new, fair society for all. To accomplish their goal, they must commit criminal acts, which the great detective Sherlock Holmes and his partner, John H. Watson, cannot abide by. A dangerous cat and mouse game begins between the Lord of Crime and Sherlock, with each trying to outwit the other. Yet Sherlock, despite his skills, has no idea that his foe is right under his nose. + + Involved with both parties is a woman named Irene Adler, who is as beautiful as she is cunning. No stranger to scandal, Irene has embroiled herself in one that may be too big even for her, as the classified documents she stole could shake the very foundations of the British Empire. Can Irene be saved, or does a deadly future await her? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42192 + url: https://myanimelist.net/anime/42192/Edens_Zero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1011/111811.jpg + small_image_url: https://myanimelist.net/images/anime/1011/111811t.jpg + large_image_url: https://myanimelist.net/images/anime/1011/111811l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1011/111811.webp + small_image_url: https://myanimelist.net/images/anime/1011/111811t.webp + large_image_url: https://myanimelist.net/images/anime/1011/111811l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pB_o3-2etA8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Edens Zero + - type: Japanese + title: EDENS ZERO + - type: English + title: Edens Zero + title: Edens Zero + title_english: Edens Zero + title_japanese: EDENS ZERO + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2021-04-11T00:00:00+00:00' + to: '2021-10-03T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2021 + to: + day: 3 + month: 10 + year: 2021 + string: Apr 11, 2021 to Oct 3, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 108633 + rank: 3613 + popularity: 980 + members: 287373 + favorites: 1977 + synopsis: |- + All his life, Shiki has been surrounded by machines. At Granbell Kingdom, a long-abandoned amusement park, he is the only one of his kind around. That is, until Rebecca Bluegarden and her feline companion Happy arrive, unaware that they are Granbell's first visitors in one hundred years. Their goal is to make fun videos for their B-Cube channel, but what they find instead is a friend in the socially awkward Shiki. + + When Granbell becomes too dangerous for the three of them, they set off on an adventure through the Sakura Cosmos. They hope to make more interesting videos and even find the elusive goddess Mother, while Shiki wants to make more friends, spurred on by the words of his late grandfather. Of course, the journey will not be easy, as no one has seen Mother before, but Shiki is determined to reach his goal and explore the boundless reaches of space together with his new friends. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: 00:55 + timezone: Asia/Tokyo + string: Sundays at 00:55 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1418 + type: anime + name: Nippon Television Music + url: https://myanimelist.net/anime/producer/1418/Nippon_Television_Music + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42205 + url: https://myanimelist.net/anime/42205/Shaman_King_2021 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1416/113270.jpg + small_image_url: https://myanimelist.net/images/anime/1416/113270t.jpg + large_image_url: https://myanimelist.net/images/anime/1416/113270l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1416/113270.webp + small_image_url: https://myanimelist.net/images/anime/1416/113270t.webp + large_image_url: https://myanimelist.net/images/anime/1416/113270l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rV8RZrZskdk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shaman King (2021) + - type: Japanese + title: SHAMAN KING + - type: German + title: Shaman King + - type: Spanish + title: Shaman King + - type: French + title: Shaman King + title: Shaman King (2021) + title_english: null + title_japanese: SHAMAN KING + title_synonyms: [] + type: TV + source: Manga + episodes: 52 + status: Finished Airing + airing: false + aired: + from: '2021-04-01T00:00:00+00:00' + to: '2022-04-21T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2021 + to: + day: 21 + month: 4 + year: 2022 + string: Apr 1, 2021 to Apr 21, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 82258 + rank: 5660 + popularity: 992 + members: 283598 + favorites: 1763 + synopsis: |- + Shamans are extraordinary individuals with the ability to communicate with ghosts, spirits, and gods, which are invisible to ordinary people. The Shaman Fight—a prestigious tournament pitting shamans from all over the world against each other—is held every five hundred years, where the winner is crowned Shaman King. This title allows the current incumbent to call upon the Great Spirit and shape the world as they see fit. + + Finding himself late for class one night, Manta Oyamada, an ordinary middle school student, decides to take a shortcut through the local cemetery. Noticing him, a lone boy sitting on a gravestone invites Manta to stargaze with "them." Realizing that "them" refers to the boy and his ghostly friends, Manta flees in terror. Later, the boy introduces himself as You Asakura, a Shaman-in-training, and demonstrates his powers by teaming up with the ghost of six-hundred-year-old samurai Amidamaru to save Manta from a group of thugs. You befriends Manta due to his ability to see spirits, and with the help of Amidamaru, they set out to accomplish You's goal of becoming the next Shaman King. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Thursdays + time: '17:55' + timezone: Asia/Tokyo + string: Thursdays at 17:55 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + licensors: [] + studios: + - mal_id: 397 + type: anime + name: Bridge + url: https://myanimelist.net/anime/producer/397/Bridge + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 43439 + url: https://myanimelist.net/anime/43439/Shadows_House + images: + jpg: + image_url: https://myanimelist.net/images/anime/1424/113342.jpg + small_image_url: https://myanimelist.net/images/anime/1424/113342t.jpg + large_image_url: https://myanimelist.net/images/anime/1424/113342l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1424/113342.webp + small_image_url: https://myanimelist.net/images/anime/1424/113342t.webp + large_image_url: https://myanimelist.net/images/anime/1424/113342l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/c5bkocwVqu0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shadows House + - type: Japanese + title: シャドーハウス + - type: English + title: Shadows House + title: Shadows House + title_english: Shadows House + title_japanese: シャドーハウス + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-04-11T00:00:00+00:00' + to: '2021-07-04T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2021 + to: + day: 4 + month: 7 + year: 2021 + string: Apr 11, 2021 to Jul 4, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 113840 + rank: 1133 + popularity: 994 + members: 283207 + favorites: 2343 + synopsis: |- + The Shadows, characterized by their pitch-black appearance and tendency to emit soot when agitated, are a family of nobles who reside in a colossal manor deep within the mountains far from other humans. When a Shadow child is nearly of-age, they are assigned a Living Doll who acts not only as their attendant but also as their second half—the faces they could have had if not for their complexion. + + Emilico is a cheerful, newly created Doll who serves a rather soft-spoken master named Kate. Despite their difference in personalities, Emilico does what she can to carry out the needs of her master. As she learns more about her role and duty, Emilico begins to meet her fellow Dolls and their respective masters and comes to know more about the purpose of her existence. + + "Do not fret over trivial matters," says one of the rules by which all Dolls must abide. But how could the ever-curious Emilico do so in the face of the deep secrets that the Shadows House holds? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 44276 + url: https://myanimelist.net/anime/44276/Kyuukyoku_Shinka_shita_Full_Dive_RPG_ga_Genjitsu_yori_mo_Kusoge_Dattara + images: + jpg: + image_url: https://myanimelist.net/images/anime/1357/113277.jpg + small_image_url: https://myanimelist.net/images/anime/1357/113277t.jpg + large_image_url: https://myanimelist.net/images/anime/1357/113277l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1357/113277.webp + small_image_url: https://myanimelist.net/images/anime/1357/113277t.webp + large_image_url: https://myanimelist.net/images/anime/1357/113277l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6TDRXYZ_K_c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara + - type: Synonym + title: What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality + - type: Japanese + title: 究極進化したフルダイブRPGが現実よりもクソゲーだったら + - type: English + title: 'Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!' + - type: German + title: 'Full Dive: This Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!' + title: Kyuukyoku Shinka shita Full Dive RPG ga Genjitsu yori mo Kusoge Dattara + title_english: 'Full Dive: The Ultimate Next-Gen Full Dive RPG Is Even Shittier than Real Life!' + title_japanese: 究極進化したフルダイブRPGが現実よりもクソゲーだったら + title_synonyms: + - What If the Ultimately Evolved Full Dive RPG was a Crappier Game than Reality + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-07T00:00:00+00:00' + to: '2021-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2021 + to: + day: 23 + month: 6 + year: 2021 + string: Apr 7, 2021 to Jun 23, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.48 + scored_by: 127701 + rank: 8291 + popularity: 1015 + members: 277476 + favorites: 1169 + synopsis: "Ten years ago, at the peak of the VRMMO development industry, a game titled \"Kiwame Quest\" entered the\ + \ scene with potential like no other. Boasting a colossal total of 10 sexdecillion branches of possible story scenarios,\ + \ this game pursued ultimate realism, ranging from humanlike NPCs to the perfect replication of all senses and physical\ + \ abilities. But it soon became apparent that the game was too realistic, and the popularity of VRMMOs in general\ + \ gradually began to plunge.\n\nAt present, due to an accident a few years prior, the high school student Hiroshi\ + \ Yuuki now immerses himself in full-dive RPGs as a form of escapism. After failing to acquire the latest version\ + \ of his favorite game, Hiroshi stumbles upon a game shop and meets its beautiful clerk Reona Kisaragi who convinces\ + \ him to buy a copy of Kiwame Quest so that they can play together. \n\nThe first time Hiroshi plays the game, he\ + \ marvels at the realism it offers. However, his astonishment is short-lived as he sets off a series of misfortunes,\ + \ quickly realizing that the game is even worse than his already stressful life. Nevertheless, Hiroshi still finds\ + \ himself logging on again despite his growing contempt for the game. With no do-overs in his current disadvantageous\ + \ situation, Hiroshi only has one goal—clearing the game!\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2021 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 43609 + url: https://myanimelist.net/anime/43609/Kaguya-sama_wa_Kokurasetai_Tensai-tachi_no_Renai_Zunousen_OVA + images: + jpg: + image_url: https://myanimelist.net/images/anime/1027/115055.jpg + small_image_url: https://myanimelist.net/images/anime/1027/115055t.jpg + large_image_url: https://myanimelist.net/images/anime/1027/115055l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1027/115055.webp + small_image_url: https://myanimelist.net/images/anime/1027/115055t.webp + large_image_url: https://myanimelist.net/images/anime/1027/115055l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kCweMv8bb4w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA + - type: Japanese + title: かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA + - type: English + title: 'Kaguya-sama: Love is War OVA' + title: Kaguya-sama wa Kokurasetai? Tensai-tachi no Renai Zunousen OVA + title_english: 'Kaguya-sama: Love is War OVA' + title_japanese: かぐや様は告らせたい? ~天才たちの恋愛頭脳戦~ OVA + title_synonyms: [] + type: OVA + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-05-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 5 + year: 2021 + to: + day: null + month: null + year: null + string: May 19, 2021 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 144209 + rank: 1881 + popularity: 1076 + members: 262524 + favorites: 583 + synopsis: "What do Shuchiin Academy's model students do outside of their student council duties? After a visit to the\ + \ swimming pool, Kaguya Shinomiya and Chika Fujiwara take to the showers to wash themselves off. When Chika accidentally\ + \ drops a bar of soap, the two find themselves in a rather slippery mishap. \n\nMeanwhile, Miyuki Shirogane and Yuu\ + \ Ishigami examine a discarded pornographic magazine—its content bearing an uncanny resemblance to the other student\ + \ council members. Later on, an intense fried rice cook-off commences as Chika and Miko Iino seek to crown a master\ + \ chef amongst the council. \n\nThese eccentric activities reveal a side of the student council that has never been\ + \ seen before!\n\n[Written by MAL Rewrite]" + background: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen OVA was bundled with the release of the manga''s + 22nd volume. The OVA was first announced during the Kaguya-sama Wants To Tell You On Stage special event, held on + October 25, 2020.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 41103 + url: https://myanimelist.net/anime/41103/Koi_to_Yobu_ni_wa_Kimochi_Warui + images: + jpg: + image_url: https://myanimelist.net/images/anime/1519/110527.jpg + small_image_url: https://myanimelist.net/images/anime/1519/110527t.jpg + large_image_url: https://myanimelist.net/images/anime/1519/110527l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1519/110527.webp + small_image_url: https://myanimelist.net/images/anime/1519/110527t.webp + large_image_url: https://myanimelist.net/images/anime/1519/110527l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hqPv_THxIPU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koi to Yobu ni wa Kimochi Warui + - type: Synonym + title: It's Too Sick to Call this Love + - type: Japanese + title: 恋と呼ぶには気持ち悪い + - type: English + title: Koikimo + - type: German + title: Koikimo + - type: Spanish + title: Koikimo + - type: French + title: Koikimo + title: Koi to Yobu ni wa Kimochi Warui + title_english: Koikimo + title_japanese: 恋と呼ぶには気持ち悪い + title_synonyms: + - It's Too Sick to Call this Love + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-04-05T00:00:00+00:00' + to: '2021-06-14T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2021 + to: + day: 14 + month: 6 + year: 2021 + string: Apr 5, 2021 to Jun 14, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.11 + scored_by: 119093 + rank: 4526 + popularity: 1086 + members: 259779 + favorites: 1722 + synopsis: |- + People fall in love in the most mysterious of ways. This statement seems to be especially true for the affluent genius playboy Ryou Amakusa. When he nearly falls off the stairs one rainy morning, a girl named Ichika Arima saves him. As if by fate, Ryou encounters Ichika again later that night; she happens to be the best friend of his little sister, Rio. + + Wanting to "thank" her, Ryou attempts to woo Ichika by employing his usual flirtatious tactics only to be immediately shot down, his target creeped out by his behavior. Rather than being discouraged, Ryou instead becomes more enthralled by her, and he begins to do everything he can to steal Ichika's heart despite receiving disgusted reactions each time. However, as time passes by, will Ichika remain repulsed by Ryou's creepy yet dedicated advances? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2021 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1221 + type: anime + name: Hokkaido Cultural Broadcasting + url: https://myanimelist.net/anime/producer/1221/Hokkaido_Cultural_Broadcasting + - mal_id: 1401 + type: anime + name: Amusement Media Academy + url: https://myanimelist.net/anime/producer/1401/Amusement_Media_Academy + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + - mal_id: 1985 + type: anime + name: Toyo Recording + url: https://myanimelist.net/anime/producer/1985/Toyo_Recording + - mal_id: 2144 + type: anime + name: BloomZ + url: https://myanimelist.net/anime/producer/2144/BloomZ + - mal_id: 2221 + type: anime + name: AMG Entertainment + url: https://myanimelist.net/anime/producer/2221/AMG_Entertainment + - mal_id: 2222 + type: anime + name: MediaNet Pictures + url: https://myanimelist.net/anime/producer/2222/MediaNet_Pictures + - mal_id: 2223 + type: anime + name: Christmas Holly + url: https://myanimelist.net/anime/producer/2223/Christmas_Holly + - mal_id: 2224 + type: anime + name: Miyazaki Broadcasting + url: https://myanimelist.net/anime/producer/2224/Miyazaki_Broadcasting + - mal_id: 2225 + type: anime + name: C-one + url: https://myanimelist.net/anime/producer/2225/C-one + licensors: [] + studios: + - mal_id: 70 + type: anime + name: Nomad + url: https://myanimelist.net/anime/producer/70/Nomad + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/47-2021-summer.yaml b/test/fixtures/jikan/season_matrix/47-2021-summer.yaml new file mode 100644 index 0000000..66186db --- /dev/null +++ b/test/fixtures/jikan/season_matrix/47-2021-summer.yaml @@ -0,0 +1,3415 @@ +metadata: + captured_at: '2026-05-11T11:34:30Z' + label: 2021-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2021/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:29 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:e15ffde13b44c79272795b8217b7f36a41ddcfee + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 314 + per_page: 25 + data: + - mal_id: 41487 + url: https://myanimelist.net/anime/41487/Tensei_shitara_Slime_Datta_Ken_2nd_Season_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1033/118296.jpg + small_image_url: https://myanimelist.net/images/anime/1033/118296t.jpg + large_image_url: https://myanimelist.net/images/anime/1033/118296l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1033/118296.webp + small_image_url: https://myanimelist.net/images/anime/1033/118296t.webp + large_image_url: https://myanimelist.net/images/anime/1033/118296l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nle-73CcG1k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Slime Datta Ken 2nd Season Part 2 + - type: Synonym + title: Tensura 2 + - type: Japanese + title: 転生したらスライムだった件 + - type: English + title: That Time I Got Reincarnated as a Slime Season 2 Part 2 + - type: German + title: Meine Wiedergeburt als Schleim in einer anderen Welt Staffel 2 Teil 2 + - type: Spanish + title: That Time I Got Reincarnated as a Slime Temporada 2 Parte 2 + - type: French + title: Moi, Quand Je Me Réincarne en Slime Saison 2 Partie 2 + title: Tensei shitara Slime Datta Ken 2nd Season Part 2 + title_english: That Time I Got Reincarnated as a Slime Season 2 Part 2 + title_japanese: 転生したらスライムだった件 + title_synonyms: + - Tensura 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-06T00:00:00+00:00' + to: '2021-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2021 + to: + day: 21 + month: 9 + year: 2021 + string: Jul 6, 2021 to Sep 21, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 529143 + rank: 343 + popularity: 224 + members: 912068 + favorites: 11045 + synopsis: |- + The nation of Tempest is in a festive mood after successfully overcoming the surprise attack from the Falmuth Army and the Western Holy Church. Beyond the festivities lies a meeting between Tempest and its allies to decide the future of the Nation of Monsters. The aftermath of the Falmuth invasion, Milim Nava's suspicious behavior, and the disappearance of Demon Lord Carrion—the problems seem to keep on piling up. + + Rimuru Tempest, now awakened as a True Demon Lord, decides to go on the offensive against Clayman. With the fully revived Storm Dragon Veldora, Ultimate Skill Raphael, and other powerful comrades, the ruler of the Tempest is confident in taking down his enemies one by one until he can face the man pulling the strings. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48580 + url: https://myanimelist.net/anime/48580/Vanitas_no_Karte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1401/118483.jpg + small_image_url: https://myanimelist.net/images/anime/1401/118483t.jpg + large_image_url: https://myanimelist.net/images/anime/1401/118483l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1401/118483.webp + small_image_url: https://myanimelist.net/images/anime/1401/118483t.webp + large_image_url: https://myanimelist.net/images/anime/1401/118483l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yFBNZF1d_0A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Vanitas no Karte + - type: Synonym + title: Vanitas no Shuki + - type: Synonym + title: Memoir of Vanitas + - type: Synonym + title: Vanitas no Carte + - type: Japanese + title: ヴァニタスの手記 + - type: English + title: The Case Study of Vanitas + title: Vanitas no Karte + title_english: The Case Study of Vanitas + title_japanese: ヴァニタスの手記 + title_synonyms: + - Vanitas no Shuki + - Memoir of Vanitas + - Vanitas no Carte + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-03T00:00:00+00:00' + to: '2021-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2021 + to: + day: 18 + month: 9 + year: 2021 + string: Jul 3, 2021 to Sep 18, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.9 + scored_by: 256843 + rank: 955 + popularity: 398 + members: 628781 + favorites: 8374 + synopsis: |- + Scorned by others of his kind for being born under a blue moon, the vampire Vanitas grew afraid and desolate. According to legend, he created a cursed grimoire known as the "Book of Vanitas," and it is said he would one day use it to bring retribution upon all vampires of the crimson moon. + + In 19th century Paris, Noé Archiviste is searching for the fabled Book of Vanitas. Whilst traveling aboard an airship, he is saved from a vampire attack by an eccentric doctor who calls himself Vanitas and carries the very tome he seeks. Ironically, the self-proclaimed vampire specialist is a mere human who inherited both his name and the book from his master, the same Vanitas of legend. As the odd case of the Charlatan's Parade crops up, the doctor's ability to restore sanity to vampires by recovering their true name will prove most beneficial. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 3309 + type: anime + name: Peerless Gerbera + url: https://myanimelist.net/anime/producer/3309/Peerless_Gerbera + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39247 + url: https://myanimelist.net/anime/39247/Kobayashi-san_Chi_no_Maid_Dragon_S + images: + jpg: + image_url: https://myanimelist.net/images/anime/1252/115539.jpg + small_image_url: https://myanimelist.net/images/anime/1252/115539t.jpg + large_image_url: https://myanimelist.net/images/anime/1252/115539l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1252/115539.webp + small_image_url: https://myanimelist.net/images/anime/1252/115539t.webp + large_image_url: https://myanimelist.net/images/anime/1252/115539l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Sro80JOeFNw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kobayashi-san Chi no Maid Dragon S + - type: Synonym + title: Kobayashi-san Chi no Maid Dragon 2nd Season + - type: Synonym + title: Miss Kobayashi's Dragon Maid 2nd Season + - type: Japanese + title: 小林さんちのメイドラゴンS + - type: English + title: Miss Kobayashi's Dragon Maid S + - type: German + title: Miss Kobayashi's Dragon Maid S + - type: Spanish + title: Miss Kobayashi's Dragon Maid S + - type: French + title: Miss Kobayashi's Dragon Maid S + title: Kobayashi-san Chi no Maid Dragon S + title_english: Miss Kobayashi's Dragon Maid S + title_japanese: 小林さんちのメイドラゴンS + title_synonyms: + - Kobayashi-san Chi no Maid Dragon 2nd Season + - Miss Kobayashi's Dragon Maid 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-08T00:00:00+00:00' + to: '2021-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2021 + to: + day: 23 + month: 9 + year: 2021 + string: Jul 8, 2021 to Sep 23, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 310034 + rank: 448 + popularity: 409 + members: 612919 + favorites: 5762 + synopsis: |- + As Tooru continues on her quest to become the greatest maid and Kanna Kamui fully immerses in her life as an elementary school student, there is not a dull day in the Kobayashi household with mischief being a daily staple. On one such day, however, a massive landslide is spotted on the hill where Kobayashi and Tooru first met—a clear display of a dragon's might. When none of the dragons they know claim responsibility, the perpetrator herself descends from the skies: Ilulu, the radical Chaos Dragon with monstrous power rivaling that of Tooru. + + Sickened by Tooru's involvement with humans, Ilulu resorts to the typical dragon method of resolving conflict—a battle to the death. Despite such behavior, she becomes intrigued by Kobayashi's ability to befriend dragons and decides instead to observe just what makes Kobayashi so special. With a new troublesome dragon in town, Kobayashi's eccentric life with a dragon maid is only getting merrier. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2147 + type: anime + name: Heart Company + url: https://myanimelist.net/anime/producer/2147/Heart_Company + licensors: [] + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 43523 + url: https://myanimelist.net/anime/43523/Tsuki_ga_Michibiku_Isekai_Douchuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1950/116474.jpg + small_image_url: https://myanimelist.net/images/anime/1950/116474t.jpg + large_image_url: https://myanimelist.net/images/anime/1950/116474l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1950/116474.webp + small_image_url: https://myanimelist.net/images/anime/1950/116474t.webp + large_image_url: https://myanimelist.net/images/anime/1950/116474l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9KtypYdnDWY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuki ga Michibiku Isekai Douchuu + - type: Synonym + title: Moon-led Journey Across Another World + - type: Japanese + title: 月が導く異世界道中 + - type: English + title: 'Tsukimichi: Moonlit Fantasy' + - type: German + title: 'Tsukimichi: Moonlight Fantasy' + - type: Spanish + title: 'Tsukimichi: Moonlight Fantasy' + - type: French + title: 'Tsukimichi: Moonlight Fantasy' + title: Tsuki ga Michibiku Isekai Douchuu + title_english: 'Tsukimichi: Moonlit Fantasy' + title_japanese: 月が導く異世界道中 + title_synonyms: + - Moon-led Journey Across Another World + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-07T00:00:00+00:00' + to: '2021-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2021 + to: + day: 22 + month: 9 + year: 2021 + string: Jul 7, 2021 to Sep 22, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 299419 + rank: 1415 + popularity: 445 + members: 559856 + favorites: 4838 + synopsis: |- + As part of a mysterious contract agreed upon by a goddess and his parents years ago, Makoto Misumi finds himself sent to another world to meet the goddess and become the hero. However, the deity deems Makoto to be "hideous," refusing to even lay eyes upon him and revokes his heroic title. Disdainfully giving him the ability to understand all languages except the human language as compensation, the goddess drives Makoto off to the farthest edges of the wasteland, far from human civilization. + + Due to the disparity between Earth and this new world, Makoto's inherent physical and magical capabilities awaken, making him extremely powerful. He meets various demihumans and mythical beings who all end up being captivated with his characteristics and join Makoto in building a new community where all of them can peacefully coexist. + + Nevertheless, despite this success, Makoto still yearns to meet fellow humans. In a world where the goddess herself has barred him from interacting with his kind, it is up to Makoto and his companions to fulfill his desire—and perhaps reform society along the way. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: [] + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 41710 + url: https://myanimelist.net/anime/41710/Genjitsu_Shugi_Yuusha_no_Oukoku_Saikenki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1297/118764.jpg + small_image_url: https://myanimelist.net/images/anime/1297/118764t.jpg + large_image_url: https://myanimelist.net/images/anime/1297/118764l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1297/118764.webp + small_image_url: https://myanimelist.net/images/anime/1297/118764t.webp + large_image_url: https://myanimelist.net/images/anime/1297/118764l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fyIpPaIdyJU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Genjitsu Shugi Yuusha no Oukoku Saikenki + - type: Synonym + title: Re:Construction the Elfrieden Kingdom Tales of Realistic Brave + - type: Synonym + title: A Realist Hero's Kingdom Restoration Chronicle + - type: Synonym + title: Genkoku + - type: Japanese + title: 現実主義勇者の王国再建記 + - type: English + title: How a Realist Hero Rebuilt the Kingdom + - type: German + title: How a Realist Hero Rebuilt the Kingdom + - type: Spanish + title: How a Realist Hero Rebuilt the Kingdom + - type: French + title: How a Realist Hero Rebuilt the Kingdom + title: Genjitsu Shugi Yuusha no Oukoku Saikenki + title_english: How a Realist Hero Rebuilt the Kingdom + title_japanese: 現実主義勇者の王国再建記 + title_synonyms: + - Re:Construction the Elfrieden Kingdom Tales of Realistic Brave + - A Realist Hero's Kingdom Restoration Chronicle + - Genkoku + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-07-04T00:00:00+00:00' + to: '2021-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2021 + to: + day: 26 + month: 9 + year: 2021 + string: Jul 4, 2021 to Sep 26, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 236652 + rank: 3612 + popularity: 571 + members: 460535 + favorites: 2778 + synopsis: |- + After the death of his grandfather, 19-year-old Kazuya Souma—an aspiring civil servant—is left all alone with no one to call family. Out of the blue, he is transported to the Elfrieden Kingdom, a small ailing country in another world, to be a "hero." An ongoing war with the demon army has put the entire world in peril, and Kazuya was summoned to aid in the conflict as an offering from Elfrieden to its allies. + + Dissatisfied with being used as tribute, Kazuya decides to help the kingdom revamp its declining economy—not by way of adventuring or war, but through administrative reform. Abruptly declared the King of Elfrieden and betrothed to the princess, the "Realist Hero" Kazuya sets out to assemble a group of talented citizens who will assist him in his bureaucratic battles to get the kingdom back on its feet. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 2408 + type: anime + name: WOWMAX + url: https://myanimelist.net/anime/producer/2408/WOWMAX + - mal_id: 2634 + type: anime + name: Yostar + url: https://myanimelist.net/anime/producer/2634/Yostar + - mal_id: 2797 + type: anime + name: MIGHTY MEDIA + url: https://myanimelist.net/anime/producer/2797/MIGHTY_MEDIA + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 44203 + url: https://myanimelist.net/anime/44203/Seirei_Gensouki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1836/116060.jpg + small_image_url: https://myanimelist.net/images/anime/1836/116060t.jpg + large_image_url: https://myanimelist.net/images/anime/1836/116060l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1836/116060.webp + small_image_url: https://myanimelist.net/images/anime/1836/116060t.webp + large_image_url: https://myanimelist.net/images/anime/1836/116060l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3fyHza1aYEo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seirei Gensouki + - type: Synonym + title: Spirit Chronicles + - type: Japanese + title: 精霊幻想記 + - type: English + title: 'Seirei Gensouki: Spirit Chronicles' + - type: German + title: 'Seirei Gensouki: Spirit Chronicles' + - type: Spanish + title: 'Seirei Gensouki: Spirit Chronicles' + - type: French + title: 'Seirei Gensouki: Spirit Chronicles' + title: Seirei Gensouki + title_english: 'Seirei Gensouki: Spirit Chronicles' + title_japanese: 精霊幻想記 + title_synonyms: + - Spirit Chronicles + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-06T00:00:00+00:00' + to: '2021-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2021 + to: + day: 21 + month: 9 + year: 2021 + string: Jul 6, 2021 to Sep 21, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.06 + scored_by: 233939 + rank: 4819 + popularity: 581 + members: 455449 + favorites: 3475 + synopsis: |- + When 20-year-old college student Haruto Amakawa dies in a traffic accident, he does not expect to wake up in an unfamiliar world in the body of a young boy named Rio. As their memories and personas fuse, Rio realizes that he now also possesses magical powers. He is relieved to find that his burning passion for revenge against his mother's murderers has not subsided, despite his newly changed identity. + + Not soon after, Rio comes across the kidnapped princess of the Bertram Kingdom and saves her without hesitation. To express his gratitude, the king grants him the opportunity to enroll in the Bertram Royal Academy. Believing this to be a new chapter in his life, he is excited to study at this prestigious academy, but life here proves to be difficult for him, a slum-dweller surrounded by the majestic children of nobles. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 884 + type: anime + name: Strawberry Meets Pictures + url: https://myanimelist.net/anime/producer/884/Strawberry_Meets_Pictures + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1821 + type: anime + name: Melonbooks + url: https://myanimelist.net/anime/producer/1821/Melonbooks + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 43969 + url: https://myanimelist.net/anime/43969/Kanojo_mo_Kanojo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1713/117119.jpg + small_image_url: https://myanimelist.net/images/anime/1713/117119t.jpg + large_image_url: https://myanimelist.net/images/anime/1713/117119l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1713/117119.webp + small_image_url: https://myanimelist.net/images/anime/1713/117119t.webp + large_image_url: https://myanimelist.net/images/anime/1713/117119l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nPn4JX9WURw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo mo Kanojo + - type: Synonym + title: Kanokano + - type: Japanese + title: カノジョも彼女 + - type: English + title: Girlfriend, Girlfriend + - type: German + title: Girlfriend, Girlfriend + - type: Spanish + title: Girlfriend, Girlfriend + - type: French + title: Girlfriend, Girlfriend + title: Kanojo mo Kanojo + title_english: Girlfriend, Girlfriend + title_japanese: カノジョも彼女 + title_synonyms: + - Kanokano + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-03T00:00:00+00:00' + to: '2021-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2021 + to: + day: 18 + month: 9 + year: 2021 + string: Jul 3, 2021 to Sep 18, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.51 + scored_by: 207259 + rank: 8099 + popularity: 637 + members: 424801 + favorites: 2544 + synopsis: "Naoya Mukai is having the time of his life after his childhood friend Saki Saki finally accepts one of his\ + \ countless confessions. Ensuring that their relationship will stay strong, he spares no effort in showering affection\ + \ to his now beloved girlfriend.\n\nHowever, one afternoon, another girl named Nagisa Minase suddenly confesses to\ + \ Naoya following months of preparation. Even though he politely rejects her, Nagisa's irresistible charm and determination\ + \ continue to attract Naoya. Wanting to fulfill both Saki and Nagisa's desires, Naoya ends up proposing a crazy idea—to\ + \ date the two of them simultaneously, with both girls fully aware. This unprecedented state of affairs ultimately\ + \ causes wacky and hilarious situations in whatever they do to keep their unusual relationship going. \n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: summer + year: 2021 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1423 + type: anime + name: Forecast Communications + url: https://myanimelist.net/anime/producer/1423/Forecast_Communications + - mal_id: 2045 + type: anime + name: Myrica Music + url: https://myanimelist.net/anime/producer/2045/Myrica_Music + licensors: [] + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 46471 + url: https://myanimelist.net/anime/46471/Tantei_wa_Mou_Shindeiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1843/115815.jpg + small_image_url: https://myanimelist.net/images/anime/1843/115815t.jpg + large_image_url: https://myanimelist.net/images/anime/1843/115815l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1843/115815.webp + small_image_url: https://myanimelist.net/images/anime/1843/115815t.webp + large_image_url: https://myanimelist.net/images/anime/1843/115815l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PgA7OQCvO8M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tantei wa Mou, Shindeiru. + - type: Synonym + title: Tanmoshi + - type: Japanese + title: 探偵はもう、死んでいる。 + - type: English + title: The Detective Is Already Dead + title: Tantei wa Mou, Shindeiru. + title_english: The Detective Is Already Dead + title_japanese: 探偵はもう、死んでいる。 + title_synonyms: + - Tanmoshi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-04T00:00:00+00:00' + to: '2021-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2021 + to: + day: 19 + month: 9 + year: 2021 + string: Jul 4, 2021 to Sep 19, 2021 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 6.43 + scored_by: 157987 + rank: 8620 + popularity: 657 + members: 412374 + favorites: 3279 + synopsis: |- + Kimihiko Kimizuka has found himself inadvertently entangled in various crimes more times than he can remember, referring to himself as a magnet for trouble. One day, as if it was nothing out of the ordinary, a group of unknown men kidnaps him, forcing him to board a flight—where he also encounters a hijacking. Amid the resulting chaos, however, Kimizuka meets a stunning silver-haired beauty, going by the codename Siesta, who then saves the day. + + Claiming to be a legendary detective, Siesta enlists Kimizuka to be her sidekick. Though Kimizuka refuses at first, with Siesta's insistence, he eventually joins her—marking the start of a grand adventure spanning the entire world, preventing multiple threats that could spell doom for humanity along the way. + + Unfortunately, after three years of their unpredictable yet enjoyable time together, Siesta abruptly passes away. Distraught, Kimizuka tries to leave all memories of her behind, but as he begins to meet more people, it seems that Siesta's influence will never truly die. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Sundays + time: '21:30' + timezone: Asia/Tokyo + string: Sundays at 21:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: [] + - mal_id: 40904 + url: https://myanimelist.net/anime/40904/Bokutachi_no_Remake + images: + jpg: + image_url: https://myanimelist.net/images/anime/1871/118309.jpg + small_image_url: https://myanimelist.net/images/anime/1871/118309t.jpg + large_image_url: https://myanimelist.net/images/anime/1871/118309l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1871/118309.webp + small_image_url: https://myanimelist.net/images/anime/1871/118309t.webp + large_image_url: https://myanimelist.net/images/anime/1871/118309l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MSvTN_aQrCU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bokutachi no Remake + - type: Synonym + title: Bokurema + - type: Japanese + title: ぼくたちのリメイク + - type: English + title: Remake Our Life! + - type: German + title: Remake Our Life! + - type: Spanish + title: Remake our Life! + - type: French + title: Remake Our Life! + title: Bokutachi no Remake + title_english: Remake Our Life! + title_japanese: ぼくたちのリメイク + title_synonyms: + - Bokurema + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-03T00:00:00+00:00' + to: '2021-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2021 + to: + day: 25 + month: 9 + year: 2021 + string: Jul 3, 2021 to Sep 25, 2021 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.39 + scored_by: 177506 + rank: 2769 + popularity: 716 + members: 382989 + favorites: 2475 + synopsis: |- + Life is not going well for 28-year-old Kyouya Hashiba. Having left his office job to pursue a career in the video game industry, his internship at a popular game studio abruptly ends, leaving him unemployed and forcing him to move back in with his parents. Additionally, his jealousy toward the success of the "Platinum Generation"—a group of similarly-aged creators—has caused him to regret his decision to attend a traditional university instead of an arts college. Even though he believes there are no second chances in life, Kyouya is suddenly given one when he wakes up one day and finds himself 10 years in the past. + + Instead of choosing business school like he originally had, Kyouya decides to pursue his passions and attends the Oonaka University of Art. There, he meets classmate Eiko Kawasegawa, the woman who had hired him as an intern in the present, alongside his new housemates and future Platinum Generation members: underachieving artist Aki Shino, aspiring singer and actress Nanako Kogure, and naturally-gifted writer Tsurayuki Rokuonji. + + With each project they complete together, Kyouya and his friends venture closer to discovering their true potential as creators and remaking their lives into the ideal versions they desire. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Saturdays + time: '21:30' + timezone: Asia/Tokyo + string: Saturdays at 21:30 (JST) + producers: + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1634 + type: anime + name: Bushiroad Music + url: https://myanimelist.net/anime/producer/1634/Bushiroad_Music + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2202 + type: anime + name: Front Wing + url: https://myanimelist.net/anime/producer/2202/Front_Wing + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 48849 + url: https://myanimelist.net/anime/48849/Sonny_Boy + images: + jpg: + image_url: https://myanimelist.net/images/anime/1509/117149.jpg + small_image_url: https://myanimelist.net/images/anime/1509/117149t.jpg + large_image_url: https://myanimelist.net/images/anime/1509/117149l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1509/117149.webp + small_image_url: https://myanimelist.net/images/anime/1509/117149t.webp + large_image_url: https://myanimelist.net/images/anime/1509/117149l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qQ2DqgnaAio?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sonny Boy + - type: Japanese + title: Sonny Boy (サニーボーイ) + - type: English + title: Sonny Boy + title: Sonny Boy + title_english: Sonny Boy + title_japanese: Sonny Boy (サニーボーイ) + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-16T00:00:00+00:00' + to: '2021-10-01T00:00:00+00:00' + prop: + from: + day: 16 + month: 7 + year: 2021 + to: + day: 1 + month: 10 + year: 2021 + string: Jul 16, 2021 to Oct 1, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 136907 + rank: 1066 + popularity: 720 + members: 381027 + favorites: 9100 + synopsis: |- + Thirty-six students find themselves and their school building suddenly adrift in a void-like dimension. When supernatural powers awaken in some of them, a sense of detachment begins to divide the group. Despite the student council's attempts to impose order, they clash with the students possessing special abilities, who rebel against their strict control. + + This conflict leads them to discover that this world has its own set of rules—and following them is necessary for survival. After one of the students decides to take a leap of faith, the school switches dimensions once again. While they deal with the unique challenges and circumstances that each world presents, the students must unravel the mysterious phenomenon and find a way back home. + + [Written by MAL Rewrite] + background: Sonny Boy is based on an original story written by director Shingo Natsume who previously had his hand in + directing shows such as One Punch Man and Space Dandy. Winner of the Excellence Award at the 25th Japan Media Arts + Festival. + season: summer + year: 2021 + broadcast: + day: Fridays + time: 00:30 + timezone: Asia/Tokyo + string: Fridays at 00:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 44200 + url: https://myanimelist.net/anime/44200/Boku_no_Hero_Academia_the_Movie_3__World_Heroes_Mission + images: + jpg: + image_url: https://myanimelist.net/images/anime/1049/115605.jpg + small_image_url: https://myanimelist.net/images/anime/1049/115605t.jpg + large_image_url: https://myanimelist.net/images/anime/1049/115605l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1049/115605.webp + small_image_url: https://myanimelist.net/images/anime/1049/115605t.webp + large_image_url: https://myanimelist.net/images/anime/1049/115605l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ohR_gEvQIRk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia the Movie 3: World Heroes'' Mission' + - type: Synonym + title: My Hero Academia the Movie 3 + - type: Japanese + title: 僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション + - type: English + title: 'My Hero Academia: World Heroes'' Mission' + title: 'Boku no Hero Academia the Movie 3: World Heroes'' Mission' + title_english: 'My Hero Academia: World Heroes'' Mission' + title_japanese: 僕のヒーローアカデミア THE MOVIE ワールド ヒーローズ ミッション + title_synonyms: + - My Hero Academia the Movie 3 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-08-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 8 + year: 2021 + to: + day: null + month: null + year: null + string: Aug 6, 2021 + duration: 1 hr 44 min + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 132938 + rank: 1834 + popularity: 965 + members: 291574 + favorites: 1040 + synopsis: |- + Under the doctrines of Quirk Doomsday Theory, the ideological group Humarise is convinced that all humans with quirks are diseased and must be eradicated. In order to rebuild the world, the group's extremists have constructed a lethal device known as a "Trigger Bomb" that causes people with quirks to lose control and die. Their leader, Flect Turn, evades capture from the Pro Heroes deployed around the world. + + During his work study in the country of Otheon with Japan's number one Pro Hero, Izuku "Deku" Midoriya is accused of a crime he did not commit. Unintentionally involving Roddy Soul, a local, Deku soon finds himself on the run with the boy. It is now up to Rody, Deku, and Deku's classmates to stop the Trigger Bomb plot set in motion by Flect, all while eluding the other persistent members of Humarise. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 47257 + url: https://myanimelist.net/anime/47257/Shinigami_Bocchan_to_Kuro_Maid + images: + jpg: + image_url: https://myanimelist.net/images/anime/1471/115593.jpg + small_image_url: https://myanimelist.net/images/anime/1471/115593t.jpg + large_image_url: https://myanimelist.net/images/anime/1471/115593l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1471/115593.webp + small_image_url: https://myanimelist.net/images/anime/1471/115593t.webp + large_image_url: https://myanimelist.net/images/anime/1471/115593l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fovl9ZRPX40?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinigami Bocchan to Kuro Maid + - type: Synonym + title: Young Master the Grim Reaper and the Black Maid + - type: Japanese + title: 死神坊ちゃんと黒メイド + - type: English + title: The Duke of Death and His Maid + title: Shinigami Bocchan to Kuro Maid + title_english: The Duke of Death and His Maid + title_japanese: 死神坊ちゃんと黒メイド + title_synonyms: + - Young Master the Grim Reaper and the Black Maid + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-04T00:00:00+00:00' + to: '2021-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2021 + to: + day: 19 + month: 9 + year: 2021 + string: Jul 4, 2021 to Sep 19, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 109417 + rank: 1858 + popularity: 990 + members: 283891 + favorites: 1780 + synopsis: |- + As the elegant, frail flower petals wither away into lifeless ashes, the young duke is tragically reminded of the despicable power forced upon him—the ability to kill anything he touches. Scorned by his family, he is sent away to live in near isolation. Fortunately, he is not entirely alone, as the manor's staff—his dutiful butler Rob and the flirtatious maid Alice—keep him company and make his life less miserable. + + As the duke's romantic feelings for Alice grow, so does his continued frustration for the limits set by his unfortunate ability. Therefore, he resolves to break the curse cast upon him all those years ago, not only for his sake, but Alice's as well—for he is painfully aware of how difficult it is to avoid the touch of a loved one. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 474 + type: anime + name: Shogakukan Music & Digital Entertainment + url: https://myanimelist.net/anime/producer/474/Shogakukan_Music___Digital_Entertainment + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + demographics: [] + - mal_id: 42282 + url: https://myanimelist.net/anime/42282/Otome_Game_no_Hametsu_Flag_shika_Nai_Akuyaku_Reijou_ni_Tensei_shiteshimatta_X + images: + jpg: + image_url: https://myanimelist.net/images/anime/1088/116439.jpg + small_image_url: https://myanimelist.net/images/anime/1088/116439t.jpg + large_image_url: https://myanimelist.net/images/anime/1088/116439l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1088/116439.webp + small_image_url: https://myanimelist.net/images/anime/1088/116439t.webp + large_image_url: https://myanimelist.net/images/anime/1088/116439l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/U89R_rcrbUs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X + - type: Synonym + title: Hamefura X + - type: Synonym + title: I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags… + - type: Synonym + title: Destruction Flag Otome + - type: Japanese + title: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X + - type: English + title: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + - type: German + title: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + - type: Spanish + title: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + - type: French + title: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + title: Otome Game no Hametsu Flag shika Nai Akuyaku Reijou ni Tensei shiteshimatta... X + title_english: 'My Next Life as a Villainess: All Routes Lead to Doom! X' + title_japanese: 乙女ゲームの破滅フラグしかない悪役令嬢に転生してしまった…X + title_synonyms: + - Hamefura X + - I Reincarnated into an Otome Game as a Villainess With Only Destruction Flags… + - Destruction Flag Otome + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-03T00:00:00+00:00' + to: '2021-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2021 + to: + day: 18 + month: 9 + year: 2021 + string: Jul 3, 2021 to Sep 18, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 122529 + rank: 3572 + popularity: 1021 + members: 276053 + favorites: 1129 + synopsis: |- + With no more death flags in sight, personable but dense Catarina Claes is finally able to lead a peaceful life surrounded by all of her friends and family. For that reason, she is determined to enjoy the school festival to the fullest without any concern on her mind. + + Unbeknownst to her, however, the story of Fortune Lover—the game she used to play—has yet to end. Even more characters make an appearance, each with their own agenda to fulfill, and new mysteries await Katarina and those she loves. Will there be any way to avoid a bad ending when Catarina cannot remember what happens next? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 40620 + url: https://myanimelist.net/anime/40620/Uramichi_Oniisan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1126/115635.jpg + small_image_url: https://myanimelist.net/images/anime/1126/115635t.jpg + large_image_url: https://myanimelist.net/images/anime/1126/115635l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1126/115635.webp + small_image_url: https://myanimelist.net/images/anime/1126/115635t.webp + large_image_url: https://myanimelist.net/images/anime/1126/115635l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S52vfbJCxhg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uramichi Oniisan + - type: Japanese + title: うらみちお兄さん + - type: English + title: Life Lessons with Uramichi-Oniisan + title: Uramichi Oniisan + title_english: Life Lessons with Uramichi-Oniisan + title_japanese: うらみちお兄さん + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-07-06T00:00:00+00:00' + to: '2021-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2021 + to: + day: 28 + month: 9 + year: 2021 + string: Jul 6, 2021 to Sep 28, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.7 + scored_by: 105361 + rank: 1476 + popularity: 1044 + members: 269940 + favorites: 2689 + synopsis: |- + In the studio of the morning childrens' show "Together with Mama," a crew of miserable adults prepares their facades of amicable smiles and cheerful exteriors to educate a group of innocent preschoolers. In the middle of it stands Uramichi Omota, a former gymnast who can't help but bring the kids down to earth by revealing the harsh and depressing reality of adulthood, even in front of the rolling cameras. + + Behind the scenes, Uramichi's much-desired peace is disturbed by his two bothersome juniors who work as the show's rabbit and bear mascots and singers: Utano Tadano, a woman who only wishes to get married; and Iketeru Daga, a handsome man with a crass sense of humor. From smoking and exercising to nihilistic outbursts, everyone's big brother Uramichi always brings up the not-so-moral side to his life lessons. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 478 + type: anime + name: Studio Blanc. + url: https://myanimelist.net/anime/producer/478/Studio_Blanc + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 48753 + url: https://myanimelist.net/anime/48753/Jahy-sama_wa_Kujikenai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1154/115599.jpg + small_image_url: https://myanimelist.net/images/anime/1154/115599t.jpg + large_image_url: https://myanimelist.net/images/anime/1154/115599l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1154/115599.webp + small_image_url: https://myanimelist.net/images/anime/1154/115599t.webp + large_image_url: https://myanimelist.net/images/anime/1154/115599l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NbBM8888K0s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jahy-sama wa Kujikenai! + - type: Synonym + title: Jahy-sama Won't Be Discouraged! + - type: Japanese + title: ジャヒー様はくじけない! + - type: English + title: The Great Jahy Will Not Be Defeated! + title: Jahy-sama wa Kujikenai! + title_english: The Great Jahy Will Not Be Defeated! + title_japanese: ジャヒー様はくじけない! + title_synonyms: + - Jahy-sama Won't Be Discouraged! + type: TV + source: Manga + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2021-08-01T00:00:00+00:00' + to: '2021-12-19T00:00:00+00:00' + prop: + from: + day: 1 + month: 8 + year: 2021 + to: + day: 19 + month: 12 + year: 2021 + string: Aug 1, 2021 to Dec 19, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.02 + scored_by: 94107 + rank: 5016 + popularity: 1048 + members: 268490 + favorites: 1449 + synopsis: "The great Jahy will not be defeated! Simultaneously combating starvation, the lack of A/C, and the unavoidable\ + \ weakness of turning child-sized, Jahy—previously the second strongest being in the Dark Realm—is under great stress.\ + \ If it weren't for the destruction of the mana crystal which used to power the Dark Realm, Jahy would still be living\ + \ a life of power and luxury. \n\nAnd yet, at the moment, brawling with the landlady over rent is a recurring event\ + \ for Jahy. Just to have a place to stay and food to eat, Jahy must work part-time. However, her immense pride will\ + \ not allow her to live under such poor conditions for any longer than necessary. Vowing to reinstate the Dark Realm\ + \ to its former glory, Jahy continues her journey to reassemble the mana crystal.\n\n[Written by MAL Rewrite]" + background: Jahy-sama wa Kujikenai! was released on Blu-ray in five volumes from December 22, 2021 to April 27, 2022. + season: summer + year: 2021 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 39175 + url: https://myanimelist.net/anime/39175/Cider_no_You_ni_Kotoba_ga_Wakiagaru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1952/116031.jpg + small_image_url: https://myanimelist.net/images/anime/1952/116031t.jpg + large_image_url: https://myanimelist.net/images/anime/1952/116031l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1952/116031.webp + small_image_url: https://myanimelist.net/images/anime/1952/116031t.webp + large_image_url: https://myanimelist.net/images/anime/1952/116031l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Wleea9-Hb2w?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Cider no You ni Kotoba ga Wakiagaru + - type: Japanese + title: サイダーのように言葉が湧き上がる + - type: English + title: Words Bubble Up Like Soda Pop + title: Cider no You ni Kotoba ga Wakiagaru + title_english: Words Bubble Up Like Soda Pop + title_japanese: サイダーのように言葉が湧き上がる + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-07-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 7 + year: 2021 + to: + day: null + month: null + year: null + string: Jul 22, 2021 + duration: 1 hr 26 min + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 152591 + rank: 2822 + popularity: 1058 + members: 266908 + favorites: 1744 + synopsis: |- + Yui "Cherry" Sakura expresses himself better through the haiku he writes and posts on the internet, even though no one gives it attention. While preparing for him and his family to relocate in August, he spends the summer working part-time at a welfare facility. Meanwhile, Yuki "Smile" Hoshino is a budding influencer who wants everyone to smile. However, she feels uneasy about the braces on her protruding front teeth and conceals her own smile using a disposable mask. + + After an accidental encounter with Cherry, Smile finds herself becoming a part-time worker at the same facility as him. Soon, the two assist a senile man, Fujiyama, in searching for an old vinyl record he owns. Unable to remember its last location, he wishes to listen to it once more before his memories fade for good. Cherry and Smile only have the record's sleeve and the word "yamazakura" as clues, and their hunt in the hazy summer heat begins. + + [Written by MAL Rewrite] + background: Cider no You ni Kotoba ga Wakiagaru was supposed to be released on May 15, 2021. However, due to the COVID-19 + pandemic, the movie was postponed until July 22, 2021. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1278 + type: anime + name: Signal.MD + url: https://myanimelist.net/anime/producer/1278/SignalMD + - mal_id: 1892 + type: anime + name: Sublimation + url: https://myanimelist.net/anime/producer/1892/Sublimation + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 42340 + url: https://myanimelist.net/anime/42340/Meikyuu_Black_Company + images: + jpg: + image_url: https://myanimelist.net/images/anime/1753/116290.jpg + small_image_url: https://myanimelist.net/images/anime/1753/116290t.jpg + large_image_url: https://myanimelist.net/images/anime/1753/116290l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1753/116290.webp + small_image_url: https://myanimelist.net/images/anime/1753/116290t.webp + large_image_url: https://myanimelist.net/images/anime/1753/116290l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/x39JYXYmQ90?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Meikyuu Black Company + - type: Japanese + title: 迷宮ブラックカンパニー + - type: English + title: The Dungeon of Black Company + title: Meikyuu Black Company + title_english: The Dungeon of Black Company + title_japanese: 迷宮ブラックカンパニー + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-09T00:00:00+00:00' + to: '2021-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2021 + to: + day: 24 + month: 9 + year: 2021 + string: Jul 9, 2021 to Sep 24, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.22 + scored_by: 115598 + rank: 3824 + popularity: 1090 + members: 257586 + favorites: 889 + synopsis: |- + After working tirelessly toward his goal of a self-sustainable NEET lifestyle, Kinji Ninomiya has finally achieved his dreams. Now looking down on common folk commuting during a typhoon from the penthouse of one of his apartment buildings, Kinji gets ready to start his new, slothful life. However, all of his hard work goes to waste when a portal appears beneath him from out of nowhere. + + Teleported to another world, Kinji is forced to work for a mining company that focuses solely on profits and has no care whatsoever for the safety and well-being of its employees. Refusing to live in such conditions, he begins devising plans to get rich quickly, building connections with others in this new world and making his best efforts to escape the stringent corporate life. Will Kinji be able to overcome his restraints and attain financial freedom once more? + + [Written by MAL Rewrite] + background: Meikyuu Black Company was released on Blu-ray and DVD in three volumes from September 29, 2021 to November + 26, 2021. + season: summer + year: 2021 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 43814 + url: https://myanimelist.net/anime/43814/Deatte_5-byou_de_Battle + images: + jpg: + image_url: https://myanimelist.net/images/anime/1145/115565.jpg + small_image_url: https://myanimelist.net/images/anime/1145/115565t.jpg + large_image_url: https://myanimelist.net/images/anime/1145/115565l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1145/115565.webp + small_image_url: https://myanimelist.net/images/anime/1145/115565t.webp + large_image_url: https://myanimelist.net/images/anime/1145/115565l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3xkIIxVqV_I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Deatte 5-byou de Battle + - type: Synonym + title: Dea5 + - type: Synonym + title: Battle in 5 seconds after meeting. + - type: Japanese + title: 出会って5秒でバトル + - type: English + title: Battle Game in 5 Seconds + - type: German + title: Battle Game in 5 Seconds + - type: Spanish + title: Battle Game in 5 Seconds + - type: French + title: Battle Game in 5 Seconds + title: Deatte 5-byou de Battle + title_english: Battle Game in 5 Seconds + title_japanese: 出会って5秒でバトル + title_synonyms: + - Dea5 + - Battle in 5 seconds after meeting. + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-13T00:00:00+00:00' + to: '2021-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2021 + to: + day: 28 + month: 9 + year: 2021 + string: Jul 13, 2021 to Sep 28, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.74 + scored_by: 113590 + rank: 6648 + popularity: 1181 + members: 239812 + favorites: 967 + synopsis: "It was just a usual morning.\n\nAkira Shiroyanagi, a high schooler who loves games and Konpeito (Japanese\ + \ sweets), has suddenly been dragged into a battlefield by a mysterious girl who calls herself Mion. The participants\ + \ are told that they are \"erased from the family register, involved in an experiment, and gained certain powers.\"\ + \n\nAkira is determined to win the game with his newfound powers and destroy the organization. Armed with a power\ + \ no one expects and his \"brain\" skills, the new period of intelligence battle begins! \n\n(Source: MU, edited)" + background: '' + season: summer + year: 2021 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1209 + type: anime + name: Studio A-CAT + url: https://myanimelist.net/anime/producer/1209/Studio_A-CAT + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: [] + studios: + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + - mal_id: 136 + type: anime + name: Vega Entertainment + url: https://myanimelist.net/anime/producer/136/Vega_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: [] + - mal_id: 41812 + url: https://myanimelist.net/anime/41812/Megami-ryou_no_Ryoubo-kun + images: + jpg: + image_url: https://myanimelist.net/images/anime/1436/116410.jpg + small_image_url: https://myanimelist.net/images/anime/1436/116410t.jpg + large_image_url: https://myanimelist.net/images/anime/1436/116410l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1436/116410.webp + small_image_url: https://myanimelist.net/images/anime/1436/116410t.webp + large_image_url: https://myanimelist.net/images/anime/1436/116410l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_acmEepkKZU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Megami-ryou no Ryoubo-kun. + - type: Japanese + title: 女神寮の寮母くん。 + - type: English + title: Mother of the Goddess' Dormitory + title: Megami-ryou no Ryoubo-kun. + title_english: Mother of the Goddess' Dormitory + title_japanese: 女神寮の寮母くん。 + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2021-07-14T00:00:00+00:00' + to: '2021-09-15T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2021 + to: + day: 15 + month: 9 + year: 2021 + string: Jul 14, 2021 to Sep 15, 2021 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.49 + scored_by: 89924 + rank: 8228 + popularity: 1254 + members: 224976 + favorites: 1310 + synopsis: |- + Twelve-year-old Koushi Nagumo's life suddenly goes downhill when his father abandons him after their house burns down. Left to fend for himself, Koushi collapses on the street, but an eccentric woman named Mineru Wachi takes pity on him and brings him to the female dormitory "Megami-ryou." + + After learning of Koushi's situation, Mineru, who happens to be the temporary manager, invites him to become Megami-ryou's official dormitory mother. However, what awaits him are the dorm's residents—each with their own wacky shenanigans—like the androphobic yet gentle Atena Saotome, the feminine tomboy Kiriya Senshou, and Mineru herself, whose recklessness knows no bounds when it comes to science. Despite this, Koushi does his best to fulfill the duties of this crazy new life! + + [Written by MAL Rewrite] + background: Megami-ryou no Ryoubo-kun. was released on Blu-ray in two volumes from October 27, 2021, to November 26, + 2021. + season: summer + year: 2021 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42625 + url: https://myanimelist.net/anime/42625/Heion_Sedai_no_Idaten-tachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1293/115173.jpg + small_image_url: https://myanimelist.net/images/anime/1293/115173t.jpg + large_image_url: https://myanimelist.net/images/anime/1293/115173l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1293/115173.webp + small_image_url: https://myanimelist.net/images/anime/1293/115173t.webp + large_image_url: https://myanimelist.net/images/anime/1293/115173l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/11QPxZ60GIo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Heion Sedai no Idaten-tachi + - type: Synonym + title: Idaten Deities in the Peaceful Generation + - type: Japanese + title: 平穏世代の韋駄天達 + - type: English + title: The Idaten Deities Know Only Peace + - type: German + title: The Idaten Deities Know Only Peace + - type: Spanish + title: The Idaten Deities Know Only Peace + - type: French + title: The Idaten Deities Know Only Peace + title: Heion Sedai no Idaten-tachi + title_english: The Idaten Deities Know Only Peace + title_japanese: 平穏世代の韋駄天達 + title_synonyms: + - Idaten Deities in the Peaceful Generation + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-07-23T00:00:00+00:00' + to: '2021-09-28T00:00:00+00:00' + prop: + from: + day: 23 + month: 7 + year: 2021 + to: + day: 28 + month: 9 + year: 2021 + string: Jul 23, 2021 to Sep 28, 2021 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.6 + scored_by: 84206 + rank: 1810 + popularity: 1330 + members: 210294 + favorites: 1665 + synopsis: "Eight hundred years ago, terrifying demons threatened mankind's existence. On the brink of extinction, humans\ + \ prayed to their gods, calling out for someone to save them. Emerging from these desperate pleas for salvation, battle\ + \ deities known as the \"Idaten\" were born. Possessing unnatural strength and endurance, the Idaten managed to defeat\ + \ the demons and an era of unprecedented peace was finally ushered in.\n\nHaving never encountered demons before,\ + \ the present generation of Idaten knows nothing of the demon's brutality, but they have instead only lived a peaceful\ + \ existence. Training under Rin, the only remaining Idaten from 800 years ago, the new Idaten find ways to survive\ + \ in a time where they have seemingly outlived their usefulness. However, when the tyrannical Zoble Empire resurrects\ + \ a demon, the misfit crop of gods are called to the battlefield against their natural enemy once more. \n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: summer + year: 2021 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 42627 + url: https://myanimelist.net/anime/42627/Peach_Boy_Riverside + images: + jpg: + image_url: https://myanimelist.net/images/anime/1535/115023.jpg + small_image_url: https://myanimelist.net/images/anime/1535/115023t.jpg + large_image_url: https://myanimelist.net/images/anime/1535/115023l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1535/115023.webp + small_image_url: https://myanimelist.net/images/anime/1535/115023t.webp + large_image_url: https://myanimelist.net/images/anime/1535/115023l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jnUh6helvN8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Peach Boy Riverside + - type: Japanese + title: ピーチボーイリバーサイド + - type: English + title: Peach Boy Riverside + title: Peach Boy Riverside + title_english: Peach Boy Riverside + title_japanese: ピーチボーイリバーサイド + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-01T00:00:00+00:00' + to: '2021-09-16T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2021 + to: + day: 16 + month: 9 + year: 2021 + string: Jul 1, 2021 to Sep 16, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.24 + scored_by: 76605 + rank: 9699 + popularity: 1382 + members: 202563 + favorites: 692 + synopsis: |- + In a magical world where humans, demihumans, and oni are heavily at odds with each other, a princess named Saltorine "Sally" Aldike is on a journey to find a person named Mikoto Kibitsu. Traversing the world, Sally comes across many truths that she had been ignorant of due to her lineage—including the knowledge that the oni possess power potent enough to wipe out humanity. + + Seemingly blessed with a way to counter the oni's might, Sally has a strange power that manifests itself as a sigil resembling a peach, giving her superhuman abilities capable of defeating powerful oni with ease. Even so, Sally refuses to discriminate between humans, demihumans, and oni as much as possible, believing that peace between the three factions could be attainable one day. + + On the contrary, Mikoto—who also has the same ability as Sally's but with greater mastery—has a different goal. Mikoto is out to kill and torment all oni in existence, stopping at nothing to fulfill this objective. As Sally and Mikoto continue to cross paths, the power they possess will spell the difference between amicable coexistence and utter annihilation. + + [Written by MAL Rewrite] + background: Peach Boy Riverside aired in a nonlinear order. See for chronological versus broadcast order. + season: summer + year: 2021 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2290 + type: anime + name: A3 + url: https://myanimelist.net/anime/producer/2290/A3 + - mal_id: 2291 + type: anime + name: jeux d'eau + url: https://myanimelist.net/anime/producer/2291/jeux_deau + - mal_id: 2292 + type: anime + name: Toei Advertising + url: https://myanimelist.net/anime/producer/2292/Toei_Advertising + licensors: [] + studios: + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42940 + url: https://myanimelist.net/anime/42940/Hanma_Baki__Son_of_Ogre + images: + jpg: + image_url: https://myanimelist.net/images/anime/1628/119353.jpg + small_image_url: https://myanimelist.net/images/anime/1628/119353t.jpg + large_image_url: https://myanimelist.net/images/anime/1628/119353l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1628/119353.webp + small_image_url: https://myanimelist.net/images/anime/1628/119353t.webp + large_image_url: https://myanimelist.net/images/anime/1628/119353l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TYfsR0Do1rQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hanma Baki: Son of Ogre' + - type: Synonym + title: The Boy Fascinating the Fighting God + - type: Japanese + title: 範馬刃牙 SON OF OGRE + - type: English + title: Baki Hanma + - type: German + title: Baki Staffel 3 + - type: Spanish + title: Baki Temporada 3 + - type: French + title: Baki Saison 3 + title: 'Hanma Baki: Son of Ogre' + title_english: Baki Hanma + title_japanese: 範馬刃牙 SON OF OGRE + title_synonyms: + - The Boy Fascinating the Fighting God + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-09-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 9 + year: 2021 + to: + day: null + month: null + year: null + string: Sep 30, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.64 + scored_by: 119943 + rank: 1659 + popularity: 1405 + members: 199654 + favorites: 725 + synopsis: |- + The mauling of a vicious, prehistoric-sized African elephant makes international headlines. Featured in reports of the aftermath, the sole survivor of one of the animal's rampages attributes its death to a lone, unarmed man—unknowingly describing Yuujirou Hanma, nicknamed the "Ogre" and often labeled as the "strongest creature on Earth." Elsewhere, Yuujirou's 18-year-old son Baki spars with an equally formidable beast: a praying mantis. + + Content with his training and determined to overtake his father, Baki abducts American President George Bosch to begin his plans. This leads to his deliberate imprisonment at the infamous Arizona State Prison where Oliva Biscuit resides—the strongest man in the United States and an inmate allowed to leave of his own volition. Hoping to gauge his abilities, Baki challenges Oliva to a fight; but Oliva is preoccupied with his eccentric rival, Jun Guevaru. Known as the "Second," he is the only other prisoner to receive special treatment from the guards. + + Bewildered yet intrigued, Baki learns about his fellow inmates and tolerates the hellish conditions of prison life while waiting for an opportunity to present itself. + + [Written by MAL Rewrite] + background: 'Hanma Baki: Son of Ogre was released on Blu-ray on April 27, 2022.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 54 + type: anime + name: Combat Sports + url: https://myanimelist.net/anime/genre/54/Combat_Sports + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 44807 + url: https://myanimelist.net/anime/44807/Ryuu_to_Sobakasu_no_Hime + images: + jpg: + image_url: https://myanimelist.net/images/anime/1081/115716.jpg + small_image_url: https://myanimelist.net/images/anime/1081/115716t.jpg + large_image_url: https://myanimelist.net/images/anime/1081/115716l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1081/115716.webp + small_image_url: https://myanimelist.net/images/anime/1081/115716t.webp + large_image_url: https://myanimelist.net/images/anime/1081/115716l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KNynvdKvLc8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ryuu to Sobakasu no Hime + - type: Synonym + title: Ryuusoba + - type: Japanese + title: 竜とそばかすの姫 + - type: English + title: Belle + title: Ryuu to Sobakasu no Hime + title_english: Belle + title_japanese: 竜とそばかすの姫 + title_synonyms: + - Ryuusoba + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-07-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 7 + year: 2021 + to: + day: null + month: null + year: null + string: Jul 16, 2021 + duration: 2 hr 1 min + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 94897 + rank: 2392 + popularity: 1455 + members: 190196 + favorites: 1772 + synopsis: "\"U\" is a popular social media platform where people can create a virtual persona and start a new life.\ + \ Among its five billion users, one newcomer is quickly gaining attention: Belle, a beautiful singer whose alluring\ + \ melodies slowly capture the hearts of the masses. But in this space where everyone hides behind an avatar, curiosity\ + \ arises over who the mysterious girl truly is. \n\nSuzu Naito—a shy girl from the countryside—can no longer sing\ + \ following past trauma, all her efforts resulting in breakdowns and illness. However, when Suzu joins U, she is once\ + \ again able to project her voice. Under the alias \"Belle,\" her vocals soon go viral, receiving both love and hatred.\ + \ Meanwhile, rumors spread of a chaotic beast within U, known only as \"The Dragon.\" After a chance meeting during\ + \ her concert, Belle finds he is not as evil as the stories suggest. Now, both online and in the real world, Suzu\ + \ has to face the struggles of identity, fame, and opening one's heart.\n\n[Written by MAL Rewrite]" + background: Inspired by the 1756 French fairy tale Beauty and the Beast, Ryuu to Sobakasu no Hime premiered at the Cannes + Film Festival on July 15, 2021 and was received with a standing ovation of 14 minutes. It was the third highest-grossing + movie at the Japanese box office in 2021, earning 6.53 billion yen as of December 12, 2021. Belle was drawn by Jin + Kim, the character designer of popular Disney productions such as Tangled and Frozen. Ryuu to Sobakasu no Hime had + five nominations at the 49th Annie Awards, including one for Best Independent Animated Feature, making it the Japanese + anime film with the most nominations ever received in the history of these awards. A novel adaptation was issued by + Kadokawa Bunko on June 12, 2021. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 555 + type: anime + name: Studio Chizu + url: https://myanimelist.net/anime/producer/555/Studio_Chizu + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 44881 + url: https://myanimelist.net/anime/44881/100-man_no_Inochi_no_Ue_ni_Ore_wa_Tatteiru_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1424/117718.jpg + small_image_url: https://myanimelist.net/images/anime/1424/117718t.jpg + large_image_url: https://myanimelist.net/images/anime/1424/117718l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1424/117718.webp + small_image_url: https://myanimelist.net/images/anime/1424/117718t.webp + large_image_url: https://myanimelist.net/images/anime/1424/117718l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lYvK7gB1-lA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season + - type: Synonym + title: I'm standing on 1,000,000 lives. Season 2 + - type: Japanese + title: 100万の命の上に俺は立っている + - type: English + title: I’m Standing on a Million Lives Season 2 + - type: German + title: I'm Standing On A Million Lives Staffel 2 + - type: Spanish + title: I'm Standing On A Million Lives Temporada 2 + - type: French + title: I'm Standing On A Million Lives Saison 2 + title: 100-man no Inochi no Ue ni Ore wa Tatteiru 2nd Season + title_english: I’m Standing on a Million Lives Season 2 + title_japanese: 100万の命の上に俺は立っている + title_synonyms: + - I'm standing on 1,000,000 lives. Season 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-07-10T00:00:00+00:00' + to: '2021-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2021 + to: + day: 25 + month: 9 + year: 2021 + string: Jul 10, 2021 to Sep 25, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.79 + scored_by: 88943 + rank: 6319 + popularity: 1479 + members: 188433 + favorites: 647 + synopsis: "Once again, the Game Master's world of quests unexpectedly pulls in Yuusuke Yotsuya and the rest of this\ + \ old team. Accompanied by the newest addition, Keita Torii, the team reunites with Kahabell, still unaware of their\ + \ actions' impact on this world. \n\nAfter bidding Kahabell farewell, the team sets out on their newly appointed quest—an\ + \ offering of a Jiffon Buffalo at Vaikdamnia on Jiffon Island. However, as their journey to the island commences,\ + \ the team shortly finds that the quest is not as simple as it initially seemed.\n\nIn fact, the island is terrorized\ + \ by orcs that have made a deal with its inhabitants: instead of devouring the islanders, the orcs will be granted\ + \ buffalo. With the growing shortage of buffalo, the annual Vaikdamnia festival cannot proceed. But, given the importance\ + \ of the team's quest, they are left with the obvious choice—rid the island of the orcs and save the islanders.\n\n\ + [Written by MAL Rewrite]" + background: '' + season: summer + year: 2021 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 46093 + url: https://myanimelist.net/anime/46093/Shiroi_Suna_no_Aquatope + images: + jpg: + image_url: https://myanimelist.net/images/anime/1932/114952.jpg + small_image_url: https://myanimelist.net/images/anime/1932/114952t.jpg + large_image_url: https://myanimelist.net/images/anime/1932/114952l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1932/114952.webp + small_image_url: https://myanimelist.net/images/anime/1932/114952t.webp + large_image_url: https://myanimelist.net/images/anime/1932/114952l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FKphvRlWXGM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shiroi Suna no Aquatope + - type: Synonym + title: Aquatope of White Sand + - type: Japanese + title: 白い砂のアクアトープ + - type: English + title: The Aquatope on White Sand + - type: German + title: The Aquatope On The White Sand + - type: Spanish + title: The Aquatope on White Sand + - type: French + title: The Aquatope On White Sand + title: Shiroi Suna no Aquatope + title_english: The Aquatope on White Sand + title_japanese: 白い砂のアクアトープ + title_synonyms: + - Aquatope of White Sand + type: TV + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2021-07-09T00:00:00+00:00' + to: '2021-12-17T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2021 + to: + day: 17 + month: 12 + year: 2021 + string: Jul 9, 2021 to Dec 17, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.54 + scored_by: 56047 + rank: 2080 + popularity: 1517 + members: 183132 + favorites: 1448 + synopsis: |- + After leaving her idol career behind, Fuuka Miyazawa finds herself on a spontaneous flight to Okinawa instead of returning home to her pity party in Morioka. Bearing a heavy heart and nowhere to go, she aimlessly wanders around the area until she stumbles upon Gama Gama Aquarium—an aging aquarium on the verge of closing down. + + With a lack of visitors and costly but necessary repairs needed to keep its doors open, the director is faced with shutting down the establishment for good by the end of the summer. The director's aquatic life-loving granddaughter—Kukuru Misakino—cannot stand the thought of the aquarium closing and is determined to make enough money by the end of the season to keep the doors open. + + Seeing the unique magic of the aquarium, Fuuka begs Kukuru for a job; however, she soon finds that her lack of experience makes her more of a hindrance than anything else. At the same time, Kukuru realizes that her ambitious goal might be more than she can handle. With mounting pressure from all around them, will Kukuru and Fuuka be able to save the one place they hold close to their hearts? + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2021 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1423 + type: anime + name: Forecast Communications + url: https://myanimelist.net/anime/producer/1423/Forecast_Communications + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/48-2021-fall.yaml b/test/fixtures/jikan/season_matrix/48-2021-fall.yaml new file mode 100644 index 0000000..6284eb9 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/48-2021-fall.yaml @@ -0,0 +1,3186 @@ +metadata: + captured_at: '2026-05-11T11:34:32Z' + label: 2021-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2021/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:32 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:3823978e6ffc751e98e7c75c6d131ed537f01000 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 325 + per_page: 25 + data: + - mal_id: 48561 + url: https://myanimelist.net/anime/48561/Jujutsu_Kaisen_0_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1121/119044.jpg + small_image_url: https://myanimelist.net/images/anime/1121/119044t.jpg + large_image_url: https://myanimelist.net/images/anime/1121/119044l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1121/119044.webp + small_image_url: https://myanimelist.net/images/anime/1121/119044t.webp + large_image_url: https://myanimelist.net/images/anime/1121/119044l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/e8nij7jRB6M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jujutsu Kaisen 0 Movie + - type: Synonym + title: Gekijouban Jujutsu Kaisen 0 + - type: Synonym + title: JJK 0 + - type: Japanese + title: 劇場版 呪術廻戦 0 + - type: English + title: Jujutsu Kaisen 0 + title: Jujutsu Kaisen 0 Movie + title_english: Jujutsu Kaisen 0 + title_japanese: 劇場版 呪術廻戦 0 + title_synonyms: + - Gekijouban Jujutsu Kaisen 0 + - JJK 0 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-12-24T00:00:00+00:00' + to: null + prop: + from: + day: 24 + month: 12 + year: 2021 + to: + day: null + month: null + year: null + string: Dec 24, 2021 + duration: 1 hr 44 min + rating: R - 17+ (violence & profanity) + score: 8.37 + scored_by: 794089 + rank: 257 + popularity: 130 + members: 1264038 + favorites: 11185 + synopsis: |- + Violent misfortunes frequently occur around 16-year-old Yuuta Okkotsu, a timid victim of high school bullying. Yuuta is saddled with a monstrous curse, a power that dishes out brutal revenge against his bullies. Rika Orimoto, Yuuta's curse, is a shadow from his tragic childhood and a potentially lethal threat to anyone who dares wrong him. + + Yuuta's unique situation catches the attention of Satoru Gojou, a powerful sorcerer who teaches at Tokyo Prefectural Jujutsu High School. Gojou sees immense potential in Yuuta, and he hopes to help the boy channel his deadly burden into a force for good. Yet Yuuta struggles to find his place among his talented classmates: the selectively mute Toge Inumaki, weapons expert Maki Zenin, and Panda. + + Yuuta clumsily utilizes Rika on missions with the other first-year students, but the grisly aftermath of Rika's tremendous displays of power draws the interest of the calculating curse user Suguru Getou. As Getou strives to claim Rika's strength and use it to eliminate all non-jujutsu users from the world, Yuuta fights alongside his friends to stop the genocidal plot. + + [Written by MAL Rewrite] + background: Jujutsu Kaisen 0 Movie covers manga chapters 0.1-0.4. On the date of the premier in Japan, December 24, + 2021, guests recieved a tie-in booklet dubbed "Volume 0.5." + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2260 + type: anime + name: Sumzap + url: https://myanimelist.net/anime/producer/2260/Sumzap + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 45576 + url: https://myanimelist.net/anime/45576/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1028/117777.jpg + small_image_url: https://myanimelist.net/images/anime/1028/117777t.jpg + large_image_url: https://myanimelist.net/images/anime/1028/117777l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1028/117777.webp + small_image_url: https://myanimelist.net/images/anime/1028/117777t.webp + large_image_url: https://myanimelist.net/images/anime/1028/117777l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BbbRytVhaDs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2' + - type: Japanese + title: 無職転生 ~異世界行ったら本気だす~ 第2クール + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation Part 2' + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2' + title_english: 'Mushoku Tensei: Jobless Reincarnation Part 2' + title_japanese: 無職転生 ~異世界行ったら本気だす~ 第2クール + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-04T00:00:00+00:00' + to: '2021-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2021 + to: + day: 20 + month: 12 + year: 2021 + string: Oct 4, 2021 to Dec 20, 2021 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.61 + scored_by: 706078 + rank: 110 + popularity: 159 + members: 1121162 + favorites: 19234 + synopsis: |- + After the mysterious mana calamity, Rudeus Greyrat and his fierce student Eris Boreas Greyrat are teleported to the Demon Continent. There, they team up with their newfound companion Ruijerd Supardia—the former leader of the Superd's Warrior group—to form "Dead End," a successful adventurer party. Making a name for themselves, the trio journeys across the continent to make their way back home to Fittoa. + + Following the advice he received from the faceless god Hitogami, Rudeus saves Kishirika Kishirisu, the Great Emperor of the Demon World, who rewards him by granting him a strange power. Now, as Rudeus masters the powerful ability that offers a number of new opportunities, it might prove to be more than what he bargained for when unexpected dangers threaten to hinder their travels. + + [Written by MAL Rewrite] + background: 'Mushoku Tensei: Isekai Ittara Honki Dasu Part 2 adapts chapters 26-51 of Yuka Fujikawa''s manga series + and volumes 4-6 of Rifujin na Magonote''s light novel series of the same title.' + season: fall + year: 2021 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 48926 + url: https://myanimelist.net/anime/48926/Komi-san_wa_Comyushou_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1899/117237.jpg + small_image_url: https://myanimelist.net/images/anime/1899/117237t.jpg + large_image_url: https://myanimelist.net/images/anime/1899/117237l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1899/117237.webp + small_image_url: https://myanimelist.net/images/anime/1899/117237t.webp + large_image_url: https://myanimelist.net/images/anime/1899/117237l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3snByVaQUF0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Komi-san wa, Comyushou desu. + - type: Synonym + title: Komi-san wa + - type: Synonym + title: Communication Shougai desu. + - type: Japanese + title: 古見さんは、コミュ症です。 + - type: English + title: Komi Can't Communicate + title: Komi-san wa, Comyushou desu. + title_english: Komi Can't Communicate + title_japanese: 古見さんは、コミュ症です。 + title_synonyms: + - Komi-san wa + - Communication Shougai desu. + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-07T00:00:00+00:00' + to: '2021-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2021 + to: + day: 23 + month: 12 + year: 2021 + string: Oct 7, 2021 to Dec 23, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.78 + scored_by: 540247 + rank: 1240 + popularity: 186 + members: 1013262 + favorites: 12309 + synopsis: |- + Hitohito Tadano is an ordinary boy who heads into his first day of high school with a clear plan: to avoid trouble and do his best to blend in with others. Unfortunately, he fails right away when he takes the seat beside the school's madonna—Shouko Komi. His peers now recognize him as someone to eliminate for a chance to sit next to the most beautiful girl in class. + + Gorgeous and graceful with long, dark hair, Komi is universally adored and immensely popular despite her mysterious persona. However, unbeknownst to everyone, she has crippling anxiety and a communication disorder which prevents her from wholeheartedly socializing with her classmates. + + When left alone in the classroom, a chain of events forces Komi to interact with Tadano through writing on the blackboard, as if in a one-way conversation. Being the first person to realize she cannot communicate properly, Tadano picks up the chalk and begins to write as well. He eventually discovers that Komi's goal is to make one hundred friends during her time in high school. To this end, he decides to lend her a helping hand, thus also becoming her first-ever friend. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49926 + url: https://myanimelist.net/anime/49926/Kimetsu_no_Yaiba__Mugen_Ressha-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1065/118763.jpg + small_image_url: https://myanimelist.net/images/anime/1065/118763t.jpg + large_image_url: https://myanimelist.net/images/anime/1065/118763l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1065/118763.webp + small_image_url: https://myanimelist.net/images/anime/1065/118763t.webp + large_image_url: https://myanimelist.net/images/anime/1065/118763l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba: Mugen Ressha-hen' + - type: Synonym + title: 'Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)' + - type: Japanese + title: 鬼滅の刃 無限列車編 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba Mugen Train Arc' + title: 'Kimetsu no Yaiba: Mugen Ressha-hen' + title_english: 'Demon Slayer: Kimetsu no Yaiba Mugen Train Arc' + title_japanese: 鬼滅の刃 無限列車編 + title_synonyms: + - 'Kimetsu no Yaiba Movie: Mugen Ressha-hen (TV)' + type: TV + source: Manga + episodes: 7 + status: Finished Airing + airing: false + aired: + from: '2021-10-10T00:00:00+00:00' + to: '2021-11-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2021 + to: + day: 28 + month: 11 + year: 2021 + string: Oct 10, 2021 to Nov 28, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.34 + scored_by: 593683 + rank: 286 + popularity: 198 + members: 978747 + favorites: 4668 + synopsis: "A mysterious string of disappearances on a certain train has caught the attention of the Demon Slayer Corps,\ + \ and they have sent one of their best to exterminate what can only be a demon responsible. However, the plan to board\ + \ the Mugen Train is delayed by a lesser demon who is terrorizing the mechanics and targeting a kind, elderly woman\ + \ and her granddaughter. Kyoujurou Rengoku, the Flame Hashira, must eliminate the threat before boarding the train.\n\ + \nSent to assist the Hashira, Tanjirou Kamado, Inosuke Hashira, and Zenitsu Agatsuma enter the train prepared to fight.\ + \ But their monstrous target already has a devious plan in store for them and the two hundred passengers: by delving\ + \ deep into their consciousness, the demon intends to obliterate everyone in a stunning display of the power held\ + \ by the Twelve Kizuki. \n\n[Written by MAL Rewrite]" + background: Mugen Ressha-hen adapts chapters 54 to 66 of the manga. The first episode is original to the anime. + season: fall + year: 2021 + broadcast: + day: Sundays + time: '23:15' + timezone: Asia/Tokyo + string: Sundays at 23:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40834 + url: https://myanimelist.net/anime/40834/Ousama_Ranking + images: + jpg: + image_url: https://myanimelist.net/images/anime/1347/117616.jpg + small_image_url: https://myanimelist.net/images/anime/1347/117616t.jpg + large_image_url: https://myanimelist.net/images/anime/1347/117616l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1347/117616.webp + small_image_url: https://myanimelist.net/images/anime/1347/117616t.webp + large_image_url: https://myanimelist.net/images/anime/1347/117616l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/c1HHoucIxRg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ousama Ranking + - type: Synonym + title: King Ranking + - type: Japanese + title: 王様ランキング + - type: English + title: Ranking of Kings + title: Ousama Ranking + title_english: Ranking of Kings + title_japanese: 王様ランキング + title_synonyms: + - King Ranking + type: TV + source: Web manga + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2021-10-15T00:00:00+00:00' + to: '2022-03-25T00:00:00+00:00' + prop: + from: + day: 15 + month: 10 + year: 2021 + to: + day: 25 + month: 3 + year: 2022 + string: Oct 15, 2021 to Mar 25, 2022 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.48 + scored_by: 399732 + rank: 174 + popularity: 305 + members: 757159 + favorites: 13822 + synopsis: |- + The people of the kingdom look down on the young Prince Bojji, who can neither hear nor speak. They call him "The Useless Prince" while jeering at his supposed foolishness. + + However, while Bojji may not be physically strong, he is certainly not weak of heart. When a chance encounter with a shadow creature should have left him traumatized, it instead makes him believe that he has found a friend amidst those who only choose to notice his shortcomings. He starts meeting with Kage, the shadow, regularly, to the point where even the otherwise abrasive creature begins to warm up to him. + + Kage and Bojji's unlikely friendship lays the budding foundations of the prince's journey, one where he intends to conquer his fears and insecurities. Despite the constant ridicule he faces, Bojji resolves to fulfill his desire of becoming the best king he can be. + + [Written by MAL Rewrite] + background: The sign language depicted in Ousama Ranking is supervised by the Tokyo Foundation of the Deaf. The series + was released on Blu-ray and DVD from January 12, 2022 to July 20, 2022. + season: fall + year: 2021 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 48569 + url: https://myanimelist.net/anime/48569/86_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1321/117508.jpg + small_image_url: https://myanimelist.net/images/anime/1321/117508t.jpg + large_image_url: https://myanimelist.net/images/anime/1321/117508l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1321/117508.webp + small_image_url: https://myanimelist.net/images/anime/1321/117508t.webp + large_image_url: https://myanimelist.net/images/anime/1321/117508l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Oo8ICn48l6E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 86 Part 2 + - type: Japanese + title: 86―エイティシックス― + - type: English + title: 86 Eighty-Six Part 2 + title: 86 Part 2 + title_english: 86 Eighty-Six Part 2 + title_japanese: 86―エイティシックス― + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-03T00:00:00+00:00' + to: '2022-03-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2021 + to: + day: 19 + month: 3 + year: 2022 + string: Oct 3, 2021 to Mar 19, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.72 + scored_by: 375793 + rank: 56 + popularity: 384 + members: 643216 + favorites: 18620 + synopsis: |- + The disappearance of the Spearhead Squadron beyond the horizon does little to hide the intensity of the Republic of San Magnolia's endless propaganda. Vladilena Milizé continues to operate as "Handler One," the commander of yet another dehumanized 86th faction's squadron in the continuous war against the Legion. + + On the Western Front, Shinei Nouzen and his squad are quarantined in a military base controlled by the Federal Republic of Giad, formerly known as the Giadian Empire. The newly-established government grants the saved Eighty-Six full citizenship and freedom. Housed by the president Ernst Zimmerman himself, the group meets his adoptive daughter and the last Empress, Augusta Frederica Adel-Adler. + + However, within the calm of this tender society, Shinei and his team feel that their purpose is on the battlefield. Before long, they are once again in the midst of the Legion's onslaught as a part of the Federacy's Nordlicht Squadron, accompanied by Augusta Frederica. But, as history repeats itself, they realize that no matter the side, death and pain on the front lines are the only comfort they know. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 47790 + url: https://myanimelist.net/anime/47790/Sekai_Saikou_no_Ansatsusha_Isekai_Kizoku_ni_Tensei_suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1928/117620.jpg + small_image_url: https://myanimelist.net/images/anime/1928/117620t.jpg + large_image_url: https://myanimelist.net/images/anime/1928/117620l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1928/117620.webp + small_image_url: https://myanimelist.net/images/anime/1928/117620t.webp + large_image_url: https://myanimelist.net/images/anime/1928/117620l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kIubDmuH8Sw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru + - type: Synonym + title: The world's best assassin + - type: Synonym + title: To reincarnate in a different world aristocrat + - type: Synonym + title: Ansatsu Kizoku + - type: Japanese + title: 世界最高の暗殺者、異世界貴族に転生する + - type: English + title: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat + title: Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru + title_english: The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat + title_japanese: 世界最高の暗殺者、異世界貴族に転生する + title_synonyms: + - The world's best assassin + - To reincarnate in a different world aristocrat + - Ansatsu Kizoku + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-06T00:00:00+00:00' + to: '2021-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2021 + to: + day: 22 + month: 12 + year: 2021 + string: Oct 6, 2021 to Dec 22, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 348264 + rank: 3247 + popularity: 389 + members: 637024 + favorites: 4452 + synopsis: |- + The world's greatest assassin had sworn lifelong allegiance to the organization that raised him. However, despite his loyalty, that very same organization takes action to silence him, ultimately leading to his demise. Drowning in frustration and regrets he can no longer suppress, he finds himself in an audience with a goddess attracted by his exceptional skills. The goddess offers him reincarnation into a magnificent world of swords and magic so he can perform a crucial mission: prevent that world's destruction by slaying its hero. + + Accepting the goddess' request, he is reborn as Lugh Tuatha Dé, the son of a noble family of assassins serving the Alvan Kingdom. Under the guidance of his father, Lugh learns new assassination techniques that significantly differ from the cold-blooded and unsympathetic killing style of his previous life. Furthermore, his other talents bloom, allowing him to meet new allies and acquaintances. Even so, Lugh knows that his efforts are far from adequate, because a monumental adversary such as the hero can only be defeated with perfection. + + [Written by MAL Rewrite] + background: Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru adapts the first volume of Rui Tsukiyo's light + novel series of the same title. + season: fall + year: 2021 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 2201 + type: anime + name: Studio Palette + url: https://myanimelist.net/anime/producer/2201/Studio_Palette + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 48661 + url: https://myanimelist.net/anime/48661/JoJo_no_Kimyou_na_Bouken_Part_6__Stone_Ocean + images: + jpg: + image_url: https://myanimelist.net/images/anime/1896/119844.jpg + small_image_url: https://myanimelist.net/images/anime/1896/119844t.jpg + large_image_url: https://myanimelist.net/images/anime/1896/119844l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1896/119844.webp + small_image_url: https://myanimelist.net/images/anime/1896/119844t.webp + large_image_url: https://myanimelist.net/images/anime/1896/119844l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LdSVWTEibF0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean' + - type: Synonym + title: 'JoJo''s Bizarre Adventure Part 6: Stone Ocean' + - type: Japanese + title: ジョジョの奇妙な冒険 ストーンオーシャン + - type: English + title: 'JoJo''s Bizarre Adventure: Stone Ocean' + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean' + title_english: 'JoJo''s Bizarre Adventure: Stone Ocean' + title_japanese: ジョジョの奇妙な冒険 ストーンオーシャン + title_synonyms: + - 'JoJo''s Bizarre Adventure Part 6: Stone Ocean' + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-12-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 12 + year: 2021 + to: + day: null + month: null + year: null + string: Dec 1, 2021 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.06 + scored_by: 360436 + rank: 655 + popularity: 405 + members: 615211 + favorites: 7415 + synopsis: |- + Conspiring forces frame Jolyne Kuujou for a reckless crime, landing her in the infamous Green Dolphin Street Jail. Much like her father Joutarou, Jolyne is brash, brave, and just; she rails against her unfair sentence and quickly discovers the sinister circumstances that led to her incarceration. + + A gift from her absent father grants Jolyne the power of Stone Free, a supernatural ability known as a Stand that allows her to unravel her body into string. Jolyne uses Stone Free to battle her way through the prison, recruiting new allies—Ermes Costello and Foo Fighters—to assist in her investigation. Together, the fearless women fight to uncover the menace behind Whitesnake, an enemy Stand responsible for the increasingly dangerous prisoners who are after Jolyne's life. + + Through Jolyne, the Joestar lineage confronts the legacy of its one true enemy. Jolyne and her friends race to stop a disastrous plot and put an end to a culminating evil. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean adapts chapters 1 to 50 of the sixth part of the JoJo no Kimyou + na Bouken manga series.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48556 + url: https://myanimelist.net/anime/48556/Takt_Op_Destiny + images: + jpg: + image_url: https://myanimelist.net/images/anime/1449/117797.jpg + small_image_url: https://myanimelist.net/images/anime/1449/117797t.jpg + large_image_url: https://myanimelist.net/images/anime/1449/117797l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1449/117797.webp + small_image_url: https://myanimelist.net/images/anime/1449/117797t.webp + large_image_url: https://myanimelist.net/images/anime/1449/117797l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Mb0k1HLm3Ls?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Takt Op. Destiny + - type: Japanese + title: takt op.Destiny + - type: English + title: Takt Op. Destiny + title: Takt Op. Destiny + title_english: Takt Op. Destiny + title_japanese: takt op.Destiny + title_synonyms: [] + type: TV + source: Mixed media + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-06T00:00:00+00:00' + to: '2021-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2021 + to: + day: 22 + month: 12 + year: 2021 + string: Oct 6, 2021 to Dec 22, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.16 + scored_by: 238641 + rank: 4243 + popularity: 437 + members: 572004 + favorites: 4854 + synopsis: |- + The United States of America has been in chaos ever since the emergence of D2s, an invasive species originating from a black meteorite that fell to Earth. A public decree banned citizens from playing any melodies, to prevent further casualties caused by the D2s' hatred for music—even now, in 2047, this prohibition is still in effect. Humanity's only form of defense against the D2s are Musicarts, young women representing pieces of classical music; and Conductors, the ones controlling them. + + Takt Asahina, an aloof piano prodigy, finds himself transformed into a Conductor following a spontaneous D2 attack. The same incident kills Anna Schneider's younger sister, Cosette, and brings Takt into contact with his Musicart, Destiny. Searching for a means of stabilizing the pact between themselves, Takt and Destiny—alongside Anna—embark on a perilous journey to the Symphonica Headquarters in New York City. + + Takt is in a hurry to reach the city so that he can play the piano again, even though his passion attracts the creatures he has come to despise. Meanwhile, Destiny's sense of duty drags the group into trouble along the way. With a D2-infested path and many more arduous obstacles ahead of them, will the trio make it to New York City in one piece? + + [Written by MAL Rewrite] + background: Takt Op. Destiny is a mixed-media project centered on classical music, created by Bandai Namco Arts and + DeNA. Under the same umbrella, a Japanese RPG for smartphones is being developed by Game Studio. The game, titled + Takt Op. Unmei wa Akaki Senritsu no Machi o, was made available for pre-registration in March 2021 and was originally + announced to be released by the end of the same calendar year before being delayed to 2022 and then again to 2023. + A beta test was held in April 2023 and the game is set to be released on June 28th a few months after. + season: fall + year: 2021 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 1576 + type: anime + name: DeNA + url: https://myanimelist.net/anime/producer/1576/DeNA + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 48483 + url: https://myanimelist.net/anime/48483/Mieruko-chan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1277/117155.jpg + small_image_url: https://myanimelist.net/images/anime/1277/117155t.jpg + large_image_url: https://myanimelist.net/images/anime/1277/117155l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1277/117155.webp + small_image_url: https://myanimelist.net/images/anime/1277/117155t.webp + large_image_url: https://myanimelist.net/images/anime/1277/117155l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oW2dO_T-9jA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mieruko-chan + - type: Japanese + title: 見える子ちゃん + title: Mieruko-chan + title_english: null + title_japanese: 見える子ちゃん + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-03T00:00:00+00:00' + to: '2021-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2021 + to: + day: 19 + month: 12 + year: 2021 + string: Oct 3, 2021 to Dec 19, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 256265 + rank: 2836 + popularity: 452 + members: 557171 + favorites: 3417 + synopsis: "Miko Yotsuya's eyes water as she fixates on a single spot on her phone—she ignores yet another dreadful,\ + \ horrific monster that is in her face, uttering the disturbing words: \"Can you see me?\" Before now, Miko enjoyed\ + \ her unassuming high school days, with late-night horror shows serving only as a form of entertainment. But ever\ + \ since one fateful day, she is the only person aware of the invisible monsters walking freely among humans.\n\nCourageously,\ + \ Miko makes a bold decision: she will never, under any condition, acknowledge the presence of the horrid specters.\ + \ However, even though she pretends they do not exist, she can still see how they disturb the people around her, especially\ + \ her best friend, the energetic and lovely Hana Yurikawa. In order to protect them from the monsters' annoyances,\ + \ Miko gives it her best to continue her school life and avoid every troublesome crisis—even when they scare her to\ + \ tears. \n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2021 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 46352 + url: https://myanimelist.net/anime/46352/Blue_Period + images: + jpg: + image_url: https://myanimelist.net/images/anime/1757/116931.jpg + small_image_url: https://myanimelist.net/images/anime/1757/116931t.jpg + large_image_url: https://myanimelist.net/images/anime/1757/116931l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1757/116931.webp + small_image_url: https://myanimelist.net/images/anime/1757/116931t.webp + large_image_url: https://myanimelist.net/images/anime/1757/116931l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m5tER2kO3Ok?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blue Period + - type: Japanese + title: ブルーピリオド + - type: English + title: Blue Period + - type: Spanish + title: Periodo Azul + title: Blue Period + title_english: Blue Period + title_japanese: ブルーピリオド + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-02T00:00:00+00:00' + to: '2021-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2021 + to: + day: 18 + month: 12 + year: 2021 + string: Oct 2, 2021 to Dec 18, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 246507 + rank: 1176 + popularity: 480 + members: 529980 + favorites: 6854 + synopsis: "Second-year high school student Yatora Yaguchi is a delinquent with excellent grades, but is unmotivated\ + \ to find his true calling in life. Yatora spends his days working hard to maintain his academic standing while hanging\ + \ out with his equally unambitious friends. However, beneath his carefree demeanor, Yatora does not enjoy either activity\ + \ and wishes he could find something more fulfilling.\n\nWhile mulling over his predicament, Yatora finds himself\ + \ staring at a vibrant landscape of Shibuya. Unable to express how he feels about the unusually breathtaking sight,\ + \ he picks up a paintbrush, hoping his thoughts will be conveyed on canvas. After receiving praise for his work, the\ + \ joy he feels sends him on a journey to enter the extremely competitive Tokyo University of the Arts—a school that\ + \ only accepts one in every two hundred applicants.\n\nFacing talented peers, a lack of understanding of the fine\ + \ arts, and struggles to obtain his parents’ approval, Yatora is confronted by much adversity. In the hopes of securing\ + \ one of the five prestigious spots in his program of choice, Yatora must show that his inexperience does not define\ + \ him. \n\n[Written by MAL Rewrite]" + background: Netflix Japan aired each episode one week in advance of the TV premiere starting on September 25, 2021. + Netflix International released each subtitled episode the week following the airing on Japanese TV starting on October + 9, 2021. Regular TV broadcast began on October 2, 2021. + season: fall + year: 2021 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: [] + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 80 + type: anime + name: Visual Arts + url: https://myanimelist.net/anime/genre/80/Visual_Arts + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 44961 + url: https://myanimelist.net/anime/44961/Platinum_End + images: + jpg: + image_url: https://myanimelist.net/images/anime/1992/116576.jpg + small_image_url: https://myanimelist.net/images/anime/1992/116576t.jpg + large_image_url: https://myanimelist.net/images/anime/1992/116576l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1992/116576.webp + small_image_url: https://myanimelist.net/images/anime/1992/116576t.webp + large_image_url: https://myanimelist.net/images/anime/1992/116576l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7egAQcymJSM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Platinum End + - type: Japanese + title: プラチナエンド + - type: English + title: Platinum End + title: Platinum End + title_english: Platinum End + title_japanese: プラチナエンド + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2021-10-08T00:00:00+00:00' + to: '2022-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2021 + to: + day: 25 + month: 3 + year: 2022 + string: Oct 8, 2021 to Mar 25, 2022 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.02 + scored_by: 149675 + rank: 10925 + popularity: 644 + members: 419532 + favorites: 2559 + synopsis: |- + Ever since he lost his family in an explosion, Mirai Kakehashi has lived a life of pain and despair. Every day, he endures abuse at the hands of the relatives who took him in. As his anguish steadily chips away at his will to live, he is eventually pushed to the brink. Prepared to throw it all away, he stands on the edge of a precipice and takes the leap. However, instead of falling to his death, he enters a trance where he meets a winged being who claims to be his guardian angel. Named Nasse, the angel offers him two priceless abilities and convinces him to go on living. + + When Mirai experiences the marvel of his new powers firsthand, he gets a taste of the freedom that was locked away from him for so long. Armed with Nasse's gifts, Mirai is flung into a showdown with 12 other individuals, one of which will be chosen to become the next God. In stark contrast to when he wanted to end his life, Mirai is now prepared to do whatever it takes to protect his bleak chance at happiness, lest it be wrenched from his grasp forever. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 1278 + type: anime + name: Signal.MD + url: https://myanimelist.net/anime/producer/1278/SignalMD + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 44037 + url: https://myanimelist.net/anime/44037/Shin_no_Nakama_ja_Nai_to_Yuusha_no_Party_wo_Oidasareta_node_Henkyou_de_Slow_Life_suru_Koto_ni_Shimashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1723/117854.jpg + small_image_url: https://myanimelist.net/images/anime/1723/117854t.jpg + large_image_url: https://myanimelist.net/images/anime/1723/117854l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1723/117854.webp + small_image_url: https://myanimelist.net/images/anime/1723/117854t.webp + large_image_url: https://myanimelist.net/images/anime/1723/117854l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Q-WDh396OEg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita + - type: Synonym + title: Banished from the Hero's Party + - type: Synonym + title: I Decided to Live a Quiet Life in the Countryside + - type: Synonym + title: I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at + the Frontier + - type: Japanese + title: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました + - type: English + title: Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside + title: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita + title_english: Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside + title_japanese: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました + title_synonyms: + - Banished from the Hero's Party + - I Decided to Live a Quiet Life in the Countryside + - I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2021-10-06T00:00:00+00:00' + to: '2021-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2021 + to: + day: 29 + month: 12 + year: 2021 + string: Oct 6, 2021 to Dec 29, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.92 + scored_by: 190044 + rank: 5597 + popularity: 698 + members: 390657 + favorites: 2113 + synopsis: |- + Far away from the reaches of demons and war, near the borderland of Zoltan, D-Rank adventurer Red lives a normal existence. Through perseverance and hard work, his dream of starting his own apothecary and peaceful life in the countryside finally came true. Abruptly, Red gets a live-in partner and assistant named Rit—the princess of Duchy Loggervia and an adventurer herself—who gives everything up to join him. + + Although honest, kind, and loved by all, Red has a secret shared only with Rit: his real name is Gideon, brother of Ruti Ragnason, the "Hero" and a former member of her party. Ares Drowa, the "Sage," kicked Red out of their party after their war against the Demon Lord after deciding he was weak and insignificant. Now, even though Red has left the Hero's party behind by assuming a new life together with Rit, his past has yet to let go of him. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2545 + type: anime + name: Kyoto Broadcasting System + url: https://myanimelist.net/anime/producer/2545/Kyoto_Broadcasting_System + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1693 + type: anime + name: Studio Flad + url: https://myanimelist.net/anime/producer/1693/Studio_Flad + - mal_id: 2052 + type: anime + name: Wolfsbane + url: https://myanimelist.net/anime/producer/2052/Wolfsbane + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 42351 + url: https://myanimelist.net/anime/42351/Senpai_ga_Uzai_Kouhai_no_Hanashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1055/118890.jpg + small_image_url: https://myanimelist.net/images/anime/1055/118890t.jpg + large_image_url: https://myanimelist.net/images/anime/1055/118890l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1055/118890.webp + small_image_url: https://myanimelist.net/images/anime/1055/118890t.webp + large_image_url: https://myanimelist.net/images/anime/1055/118890l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6jHQlaQXQSs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Senpai ga Uzai Kouhai no Hanashi + - type: Japanese + title: 先輩がうざい後輩の話 + - type: English + title: My Senpai is Annoying + title: Senpai ga Uzai Kouhai no Hanashi + title_english: My Senpai is Annoying + title_japanese: 先輩がうざい後輩の話 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-10T00:00:00+00:00' + to: '2021-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2021 + to: + day: 26 + month: 12 + year: 2021 + string: Oct 10, 2021 to Dec 26, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 176038 + rank: 2127 + popularity: 724 + members: 379283 + favorites: 1745 + synopsis: |- + At a certain trading company, saleswoman Futaba Igarashi has managed to hold her respectable job for almost two years thanks to the guidance of her senior coworker—Harumi Takeda. However, due to Igarashi's short stature, Takeda often teases her and treats her like a kid, leaving Igarashi constantly annoyed by his antics. + + Despite this, Igarashi notices Takeda's reliability as he is always ready to help whenever something at their workplace goes awry. As Igarashi and Takeda spend more time together, their relationship soon develops further than simply being coworkers at the office. + + [Written by MAL Rewrite] + background: Senpai ga Uzai Kouhai no Hanashi was released on Blu-ray from November 24, 2021 to February 23, 2022. + season: fall + year: 2021 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 48761 + url: https://myanimelist.net/anime/48761/Saihate_no_Paladin + images: + jpg: + image_url: https://myanimelist.net/images/anime/1176/118382.jpg + small_image_url: https://myanimelist.net/images/anime/1176/118382t.jpg + large_image_url: https://myanimelist.net/images/anime/1176/118382l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1176/118382.webp + small_image_url: https://myanimelist.net/images/anime/1176/118382t.webp + large_image_url: https://myanimelist.net/images/anime/1176/118382l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E5ABo6NmlrQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saihate no Paladin + - type: Synonym + title: Paladin of the End + - type: Synonym + title: Ultimate Paladin + - type: Japanese + title: 最果てのパラディン + - type: English + title: The Faraway Paladin + title: Saihate no Paladin + title_english: The Faraway Paladin + title_japanese: 最果てのパラディン + title_synonyms: + - Paladin of the End + - Ultimate Paladin + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-09T00:00:00+00:00' + to: '2022-01-03T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2021 + to: + day: 3 + month: 1 + year: 2022 + string: Oct 9, 2021 to Jan 3, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 163753 + rank: 5762 + popularity: 772 + members: 355861 + favorites: 1501 + synopsis: "Born into a new world after a life of stagnancy, Will awakens to the faces of a skeleton, a ghost, and a\ + \ mummy. Living in the ruins of a city long fallen, the three raise Will as their own. The skeleton— Blood—teaches\ + \ him to fight; the ghost—Gus—teaches him magic; and the mummy—Mary—teaches him religion and responsibility. Most\ + \ importantly, they all teach him love. \n\nAs Will grows up and learns about the world he was born into, he\ + \ prepares for the day when he must finally set out on his own. For Will, this journey includes a lifelong promise.\ + \ At their coming-of-age, every adult is required to swear an oath to the god of their choice, with the strength of\ + \ the pledge affecting the degree of their sworn god's blessing.\n\nWith his departure approaching, Will must prepare\ + \ to accept the truth of his undead guardians and embark into a world that even they don't know the state of. Will\ + \ discovers, however, that every oath must be fulfilled, one way or another.\n\n[Written by MAL Rewrite]" + background: Saihate no Paladin was released on Blu-ray from January 26, 2022 to March 23, 2022. + season: fall + year: 2021 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + licensors: [] + studios: + - mal_id: 1407 + type: anime + name: Children's Playground Entertainment + url: https://myanimelist.net/anime/producer/1407/Childrens_Playground_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 42916 + url: https://myanimelist.net/anime/42916/Sword_Art_Online__Progressive_Movie_-_Hoshi_Naki_Yoru_no_Aria + images: + jpg: + image_url: https://myanimelist.net/images/anime/1590/116274.jpg + small_image_url: https://myanimelist.net/images/anime/1590/116274t.jpg + large_image_url: https://myanimelist.net/images/anime/1590/116274l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1590/116274.webp + small_image_url: https://myanimelist.net/images/anime/1590/116274t.webp + large_image_url: https://myanimelist.net/images/anime/1590/116274l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XvJRE6Sm-lM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria' + - type: Synonym + title: SAO Progressive Movie + - type: Synonym + title: Aria in the Starless Night + - type: Synonym + title: Hoshinaki Yoru no Aria + - type: Japanese + title: 劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア + - type: English + title: 'Sword Art Online the Movie: Progressive - Aria of a Starless Night' + title: 'Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria' + title_english: 'Sword Art Online the Movie: Progressive - Aria of a Starless Night' + title_japanese: 劇場版 ソードアート・オンライン プログレッシブ 星なき夜のアリア + title_synonyms: + - SAO Progressive Movie + - Aria in the Starless Night + - Hoshinaki Yoru no Aria + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-10-30T00:00:00+00:00' + to: null + prop: + from: + day: 30 + month: 10 + year: 2021 + to: + day: null + month: null + year: null + string: Oct 30, 2021 + duration: 1 hr 37 min + rating: PG-13 - Teens 13 or older + score: 7.95 + scored_by: 117726 + rank: 836 + popularity: 982 + members: 287228 + favorites: 2159 + synopsis: |- + Excelling socially and academically, Asuna Yuuki is on track to ace her high school entrance exams. Her friend and classmate, Misumi "Mito" Tozawa, advises her to take a short break from studying and join her on the launch day of Sword Art Online (SAO)—the highly anticipated online virtual reality multiplayer game. Asuna accepts her offer and soon meets her in the game. + + In a cruel twist of fate, Asuna, Mito, and every other player logged into SAO find themselves trapped in the game permanently. The only way out is to clear all one hundred floors of the game, and to make matters worse, dying inside the game will kill the player in real life. With SAO now turned into a nightmare death trap, Asuna and other gamers—such as the lone swordsman Kazuto "Kirito" Kirigaya—must adapt and survive, all whilst attempting to beat the unforgiving competition to the top. + + [Written by MAL Rewrite] + background: 'Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria has been licensed by Aniplex of America as + Sword Art Online the Movie -Progressive- Aria of a Starless Night with the launch of the Official USA Website on November + 19, 2020. Aniplex announced the movie''s theatrical and IMAX release in the USA on December 3, 2021. The movie''s + first limited edition advance ticket was released from December 28, 2020 to January 11, 2021 on the Aniplex+ website, + which recorded the world''s fastest advance ticket sale.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 46985 + url: https://myanimelist.net/anime/46985/Shinka_no_Mi__Shiranai_Uchi_ni_Kachigumi_Jinsei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1537/117590.jpg + small_image_url: https://myanimelist.net/images/anime/1537/117590t.jpg + large_image_url: https://myanimelist.net/images/anime/1537/117590l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1537/117590.webp + small_image_url: https://myanimelist.net/images/anime/1537/117590t.webp + large_image_url: https://myanimelist.net/images/anime/1537/117590l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KQiNjpDo29o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei' + - type: Synonym + title: 'The Evolution Fruit: Conquering Life Unknowingly' + - type: Japanese + title: 進化の実~知らないうちに勝ち組人生~ + - type: English + title: 'The Fruit of Evolution: Before I Knew It, My Life Had It Made' + - type: German + title: 'The Fruit of Evolution: Before I Knew It My Life Had It Made' + - type: Spanish + title: 'The Fruit of Evolution: Before I Knew It My Life Had It Made' + - type: French + title: 'The Fruit of Evolution: Before I Knew It My Life Had It Made' + title: 'Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei' + title_english: 'The Fruit of Evolution: Before I Knew It, My Life Had It Made' + title_japanese: 進化の実~知らないうちに勝ち組人生~ + title_synonyms: + - 'The Evolution Fruit: Conquering Life Unknowingly' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-05T00:00:00+00:00' + to: '2021-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2021 + to: + day: 21 + month: 12 + year: 2021 + string: Oct 5, 2021 to Dec 21, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.16 + scored_by: 117095 + rank: 10151 + popularity: 1175 + members: 241921 + favorites: 1003 + synopsis: |- + One day, a man claiming to be a god suddenly hacks a certain school's intercoms, ordering all of its students to team up and prepare to be transported to another world. There, they will be given special skills in the hopes that they become that world's heroes and defeat the Demon King that ravages the land. + + The initial transfer is a success. However, Seiichi Hiiragi, who suffers from his classmates' constant bullying due to his somewhat undesirable appearance, is left behind as no one is willing to be his teammate. Nevertheless, the self-proclaimed god decides to send Seiichi to the parallel world and lets him join his peers. Unfortunately, this fateful ordeal causes Seiichi to arrive at a location deep in the forest, far not only from his schoolmates but from human civilization as well. + + Desperately searching for a way to change his predicament, Seiichi's miserable days only seem to continue to worsen. Yet when all hope seems lost, Seiichi discovers a strange fruit known as the "Fruit of Evolution"—which may be his first step toward a significantly better future. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1407 + type: anime + name: Children's Playground Entertainment + url: https://myanimelist.net/anime/producer/1407/Childrens_Playground_Entertainment + licensors: [] + studios: + - mal_id: 723 + type: anime + name: Hotline + url: https://myanimelist.net/anime/producer/723/Hotline + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 42544 + url: https://myanimelist.net/anime/42544/Kaizoku_Oujo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1607/117951.jpg + small_image_url: https://myanimelist.net/images/anime/1607/117951t.jpg + large_image_url: https://myanimelist.net/images/anime/1607/117951l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1607/117951.webp + small_image_url: https://myanimelist.net/images/anime/1607/117951t.webp + large_image_url: https://myanimelist.net/images/anime/1607/117951l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QTtXMqgZRpg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaizoku Oujo + - type: Japanese + title: 海賊王女 + - type: English + title: 'Fena: Pirate Princess' + title: Kaizoku Oujo + title_english: 'Fena: Pirate Princess' + title_japanese: 海賊王女 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-03T00:00:00+00:00' + to: '2021-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2021 + to: + day: 19 + month: 12 + year: 2021 + string: Oct 3, 2021 to Dec 19, 2021 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 76656 + rank: 4651 + popularity: 1236 + members: 228200 + favorites: 1294 + synopsis: "A decade ago, a tragic shipwreck separated Fena Houtman from her childhood friend Yukimaru and took her father's\ + \ life. Now, at age 23, she is trapped on an island and is doomed to spend the rest of her life selling herself to\ + \ men. On the night she is to be forcibly wed to a client, Fena hatches a plan to escape from her employers, but two\ + \ old acquaintances unexpectedly intervene and help her run away. \n\nThe three make haste for the open sea and land\ + \ upon Goblin Island—a mysterious place that a clan of fierce warriors call home. It is there that Fena learns that\ + \ her father's ill-fated final journey at sea was in search of a place called \"Eden,\" the location of something\ + \ important that he had to protect. With nothing but a clear crystal as a clue, Fena is tasked with finding this place,\ + \ as she is the only person who can do so. \n\nWhile still contemplating the search for what her father left behind,\ + \ Fena reunites with Yukimaru, who encourages her to take up the quest. Now the captain of a seven-person crew, Fena\ + \ must navigate the high seas in search of Eden. But as uncanny groups begin to target her, the perilous journey proves\ + \ to be even more challenging than it previously seemed.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2021 + broadcast: + day: Sundays + time: 02:38 + timezone: Asia/Tokyo + string: Sundays at 02:38 (JST) + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 44069 + url: https://myanimelist.net/anime/44069/Xian_Wang_de_Richang_Shenghuo_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1323/119210.jpg + small_image_url: https://myanimelist.net/images/anime/1323/119210t.jpg + large_image_url: https://myanimelist.net/images/anime/1323/119210l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1323/119210.webp + small_image_url: https://myanimelist.net/images/anime/1323/119210t.webp + large_image_url: https://myanimelist.net/images/anime/1323/119210l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HhcH-1T-0_o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Xian Wang de Richang Shenghuo 2 + - type: Synonym + title: Xian Wang de Richang Shenghuo Er + - type: Synonym + title: 仙王的日常生活 贰 + - type: Synonym + title: 不死身な僕の日常 2期 + - type: Japanese + title: 仙王的日常生活 第二季 + - type: English + title: The Daily Life of the Immortal King 2 + title: Xian Wang de Richang Shenghuo 2 + title_english: The Daily Life of the Immortal King 2 + title_japanese: 仙王的日常生活 第二季 + title_synonyms: + - Xian Wang de Richang Shenghuo Er + - 仙王的日常生活 贰 + - 不死身な僕の日常 2期 + type: ONA + source: Web novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-30T00:00:00+00:00' + to: '2022-01-08T00:00:00+00:00' + prop: + from: + day: 30 + month: 10 + year: 2021 + to: + day: 8 + month: 1 + year: 2022 + string: Oct 30, 2021 to Jan 8, 2022 + duration: 19 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 77643 + rank: 2897 + popularity: 1472 + members: 188743 + favorites: 673 + synopsis: |- + Wang Ling has been living a quiet life ever since resolving a particular incident, but thanks to his previous tampering with the laws of nature, the level of psionic powers in the world has dropped drastically. To stop the levels from plummeting further, his spirit sword Jingke comes to the rescue. But due to the excessive use of power, Jingke ends up ripping a crack in space. This crack allows demons to infiltrate the world and steal spiritual energy essential to powering human society. Now the only person who has the power to thwart their plans is none other than Wang Ling. + + In an attempt to balance his high school life with his supernatural one, Wang Ling must confront challenges ranging from teacher home visits, crafting spiritual swords, grappling with his growing feelings for Sun Rong, and battling invading demons! + + [Written by MAL Rewrite] + background: Adaptation of Kuxuan's (枯玄) web novel of the same title. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: [] + studios: + - mal_id: 1771 + type: anime + name: Pb Animation + url: https://myanimelist.net/anime/producer/1771/Pb_Animation + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 48707 + url: https://myanimelist.net/anime/48707/Gokushufudou_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1942/120785.jpg + small_image_url: https://myanimelist.net/images/anime/1942/120785t.jpg + large_image_url: https://myanimelist.net/images/anime/1942/120785l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1942/120785.webp + small_image_url: https://myanimelist.net/images/anime/1942/120785t.webp + large_image_url: https://myanimelist.net/images/anime/1942/120785l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DOmC-ZW9gDE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gokushufudou Part 2 + - type: Synonym + title: The Way of the House Husband 2 + - type: Synonym + title: The Way of the Househusband 2 + - type: Synonym + title: Gokushufudou 2 + - type: Japanese + title: 極主夫道 + - type: English + title: The Way of the Househusband Part 2 + title: Gokushufudou Part 2 + title_english: The Way of the Househusband Part 2 + title_japanese: 極主夫道 + title_synonyms: + - The Way of the House Husband 2 + - The Way of the Househusband 2 + - Gokushufudou 2 + type: ONA + source: Web manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2021-10-07T00:00:00+00:00' + to: null + prop: + from: + day: 7 + month: 10 + year: 2021 + to: + day: null + month: null + year: null + string: Oct 7, 2021 + duration: 18 min per ep + rating: PG-13 - Teens 13 or older + score: 7.54 + scored_by: 99435 + rank: 2054 + popularity: 1511 + members: 183806 + favorites: 372 + synopsis: |- + Once a terrifying yakuza, "Immortal Dragon" Tatsu now continues to conquer the challenges of mundane life. While his beloved wife Miku works, Tatsu equips his trusted apron, takes care of their finances, hunts down the biggest store sales, and learns the way of a true househusband with the help of the neighborhood wives. Although Tatsu abandoned the life of violence, his former colleagues and enemies reappear around every corner—but this time only as rivals in homemaking ventures. Surrounded by a myriad of chores to occupy him, it seems that no matter how tough things get, Tatsu's undying perseverance prevails as he gives his tasks his absolute best. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 48471 + url: https://myanimelist.net/anime/48471/Tsuki_to_Laika_to_Nosferatu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1393/118374.jpg + small_image_url: https://myanimelist.net/images/anime/1393/118374t.jpg + large_image_url: https://myanimelist.net/images/anime/1393/118374l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1393/118374.webp + small_image_url: https://myanimelist.net/images/anime/1393/118374t.webp + large_image_url: https://myanimelist.net/images/anime/1393/118374l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AqE9QwSYJNw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuki to Laika to Nosferatu + - type: Synonym + title: Moon + - type: Synonym + title: Laika + - type: Synonym + title: and the Bloodsucking Princess + - type: Japanese + title: 月とライカと吸血姫 + - type: English + title: 'Irina: The Vampire Cosmonaut' + title: Tsuki to Laika to Nosferatu + title_english: 'Irina: The Vampire Cosmonaut' + title_japanese: 月とライカと吸血姫 + title_synonyms: + - Moon + - Laika + - and the Bloodsucking Princess + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-04T00:00:00+00:00' + to: '2021-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2021 + to: + day: 20 + month: 12 + year: 2021 + string: Oct 4, 2021 to Dec 20, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 61279 + rank: 3021 + popularity: 1557 + members: 177519 + favorites: 824 + synopsis: |- + On November 23, 1957, the whole world witnessed the Federal Republic of Zirnitra's monumental achievement of sending the first live animal—a dog—to outer space. Since then, the space race between the confederacy and its competitor, the United Kingdom of Arnack, has intensified; the two countries hope to one day send humans to the cosmos above. + + As a dog's biology is inherently different from a human's anatomy, there is no way to perfectly identify the risks involving space travel and its effects on an individual's body without actually sending someone for observation. However, Zirnitra's government has a potential solution: to experiment on vampires, whose biological similarity to humans is too significant to ignore. + + Despite being forcibly taken from her home in the mountains, vampire Irina Luminesk shows no resistance and is even willing to train as a test subject. Lev Leps, a former top candidate to become the first human cosmonaut, is designated to accompany Irina and act as her guide. Through their time together, Irina and Lev begin to develop a mutual love for outer space, bringing them closer together. + + [Written by MAL Rewrite] + background: Tsuki to Laika to Nosferatu was released on Blu-ray from January 26, 2022 to March 29, 2022. + season: fall + year: 2021 + broadcast: + day: Sundays + time: 01:35 + timezone: Asia/Tokyo + string: Sundays at 01:35 (JST) + producers: + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1469 + type: anime + name: BS TV Tokyo + url: https://myanimelist.net/anime/producer/1469/BS_TV_Tokyo + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 45055 + url: https://myanimelist.net/anime/45055/Taishou_Otome_Otogibanashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1662/118849.jpg + small_image_url: https://myanimelist.net/images/anime/1662/118849t.jpg + large_image_url: https://myanimelist.net/images/anime/1662/118849l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1662/118849.webp + small_image_url: https://myanimelist.net/images/anime/1662/118849t.webp + large_image_url: https://myanimelist.net/images/anime/1662/118849l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JheI0oWyETM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Taishou Otome Otogibanashi + - type: Synonym + title: Taishou Maiden Fairytale + - type: Japanese + title: 大正オトメ御伽話 + - type: English + title: Taisho Otome Fairy Tale + title: Taishou Otome Otogibanashi + title_english: Taisho Otome Fairy Tale + title_japanese: 大正オトメ御伽話 + title_synonyms: + - Taishou Maiden Fairytale + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2021-10-09T00:00:00+00:00' + to: '2021-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2021 + to: + day: 25 + month: 12 + year: 2021 + string: Oct 9, 2021 to Dec 25, 2021 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.8 + scored_by: 73383 + rank: 1193 + popularity: 1594 + members: 173137 + favorites: 1248 + synopsis: |- + Self-styled pessimist Tamahiko Shima lives alone in the mountains of Chiba after losing the use of his right hand in the same car accident that took his mother's life. Deemed incapable by his father and other wealthy relatives, he has been forced into exile; he experiences idle days of reading and sleepless nights of irrepressible angst. True to the Shimas' famous pride and determined not to disgrace his family, Tamahiko is resigned to his new duty—stay in the mountains and wait for death to put an end to his suffering. + + However, on one snowy night, Tamahiko's insomnia is interrupted by someone knocking at the door. He then meets the 14-year-old Yuzuki Tachibana, who announces that she has come to be his future wife! Suddenly, Tamahiko remembers his father promising to send him a bride to assist him with impediments to his daily life. + + Although she was sold as a bride to repay her family's debts, Yuzuki proves to be thoughtful, diligent, and dedicated to Tamahiko. Will the world-weary teenager prove insensitive to the rare breeze of kindness her presence brings to his monotonous existence? + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2021 + broadcast: + day: Saturdays + time: 01:53 + timezone: Asia/Tokyo + string: Saturdays at 01:53 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48171 + url: https://myanimelist.net/anime/48171/Summer_Ghost + images: + jpg: + image_url: https://myanimelist.net/images/anime/1651/117943.jpg + small_image_url: https://myanimelist.net/images/anime/1651/117943t.jpg + large_image_url: https://myanimelist.net/images/anime/1651/117943l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1651/117943.webp + small_image_url: https://myanimelist.net/images/anime/1651/117943t.webp + large_image_url: https://myanimelist.net/images/anime/1651/117943l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DLMF3GxXVYM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Summer Ghost + - type: Synonym + title: Project Common + - type: Japanese + title: サマーゴースト + title: Summer Ghost + title_english: null + title_japanese: サマーゴースト + title_synonyms: + - Project Common + type: Movie + source: Mixed media + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-11-12T00:00:00+00:00' + to: null + prop: + from: + day: 12 + month: 11 + year: 2021 + to: + day: null + month: null + year: null + string: Nov 12, 2021 + duration: 39 min + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 59895 + rank: 881 + popularity: 1762 + members: 151628 + favorites: 1291 + synopsis: "It is said that fireworks can calm the souls of the dead. For Tomoya Sugisaki, Aoi Harukawa, and Ryou Kobayashi,\ + \ fireworks are what allowed them to meet the Summer Ghost. Believed to be the spirit of a young woman who committed\ + \ suicide, the Summer Ghost only appears in a specific area and can only be seen by those who are within arm's reach\ + \ of death. \n\nTomoya is a creative soul being crushed by his academic obligation to get into a good university.\ + \ Aoi is a meek girl who is relentlessly bullied by her classmates. Ryou is a former basketball star who had to forfeit\ + \ his passion following a grim diagnosis. The only thing these three have in common is their ability to see the Summer\ + \ Ghost. The Summer Ghost is said to be able to answer any and all questions pertaining to death—something the three\ + \ teenagers desperately want to know more about.\n\nDissatisfied with their initial meeting, Tomoya sets out to find\ + \ the Summer Ghost once again. But the more time he spends with the ghost, the more the mystery surrounding her existence\ + \ unravels.\n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2249 + type: anime + name: Flagship Line + url: https://myanimelist.net/anime/producer/2249/Flagship_Line + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 2067 + type: anime + name: Flat Studio + url: https://myanimelist.net/anime/producer/2067/Flat_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 44940 + url: https://myanimelist.net/anime/44940/World_Trigger_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1617/117474.jpg + small_image_url: https://myanimelist.net/images/anime/1617/117474t.jpg + large_image_url: https://myanimelist.net/images/anime/1617/117474l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1617/117474.webp + small_image_url: https://myanimelist.net/images/anime/1617/117474t.webp + large_image_url: https://myanimelist.net/images/anime/1617/117474l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zps4vghwaVk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: World Trigger 3rd Season + - type: Japanese + title: ワールドトリガー + - type: Spanish + title: Word Trigger Temporada 3 + title: World Trigger 3rd Season + title_english: null + title_japanese: ワールドトリガー + title_synonyms: [] + type: TV + source: Manga + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2021-10-10T00:00:00+00:00' + to: '2022-01-23T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2021 + to: + day: 23 + month: 1 + year: 2022 + string: Oct 10, 2021 to Jan 23, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.25 + scored_by: 55627 + rank: 392 + popularity: 1862 + members: 141319 + favorites: 1295 + synopsis: |- + At the Border Defense Agency's headquarters, the B-Rank Wars are underway as each team fights intensely to secure a spot in the upcoming Away Mission. Though Osamu Mikumo and the rest of Tamakoma-2 have pulled through thus far, the final rounds will require them to push far beyond the limits of their current abilities. Taking in a talented new member, the squad begins to train and develop new strategies, but, amid these efforts, the team is shaken by a heated dispute—one that could jeopardize their ticket to the Neighbor's dimension. + + [Written by MAL Rewrite] + background: World Trigger 3rd Season was released on Blu-ray in two volumes and on DVD in four volumes from April 27, + 2022, to June 22, 2022. + season: fall + year: 2021 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42847 + url: https://myanimelist.net/anime/42847/Ai_no_Utagoe_wo_Kikasete + images: + jpg: + image_url: https://myanimelist.net/images/anime/1535/116583.jpg + small_image_url: https://myanimelist.net/images/anime/1535/116583t.jpg + large_image_url: https://myanimelist.net/images/anime/1535/116583l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1535/116583.webp + small_image_url: https://myanimelist.net/images/anime/1535/116583t.webp + large_image_url: https://myanimelist.net/images/anime/1535/116583l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/meJzR1EBFqw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ai no Utagoe wo Kikasete + - type: Japanese + title: アイの歌声を聴かせて + - type: English + title: Sing a Bit of Harmony + title: Ai no Utagoe wo Kikasete + title_english: Sing a Bit of Harmony + title_japanese: アイの歌声を聴かせて + title_synonyms: [] + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2021-10-29T00:00:00+00:00' + to: null + prop: + from: + day: 29 + month: 10 + year: 2021 + to: + day: null + month: null + year: null + string: Oct 29, 2021 + duration: 1 hr 48 min + rating: PG-13 - Teens 13 or older + score: 7.68 + scored_by: 32302 + rank: 1508 + popularity: 2066 + members: 124194 + favorites: 758 + synopsis: |- + Satomi Amano is a model student as well as the daughter of the leading project manager of Hoshima, a company that has revolutionized AI technology. However, due to her standing, Satomi's presence has isolated her from her classmates—an obstacle she knows she may never overcome. + + On an otherwise uneventful day, while preparing for school, Satomi uncovers her mother's latest exciting proposition: an AI that will prove whether robots can live alongside humans. Intrigued by how her mother will commence the project, Satomi makes her way to school, but standing in front of the class is none other than the AI herself. + + As the subject of research, Shion Ashimori is tasked to fit in like a normal teenage girl without exposing her true identity. However, Shion has another goal in mind—to make Satomi happy instead. With her talent for singing, Shion strives to compose harmonious melodies that not only connect her with her newfound friends but also dispel the dissonance within Satomi's heart. + + [Written by MAL Rewrite] + background: Ai no Utagoe wo Kikasete won the Audience Award at the Scotland Loves Animation Film Festival in October + 2021. The movie was also awarded Best Animation Film at the 2021 New York City Film & Television Festival. In 2022, + the film was nominated for the Best Animated Feature Film Award at the 45th Japan Academy Film Prize. The film was + co-produced by Funimation. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/49-2022-winter.yaml b/test/fixtures/jikan/season_matrix/49-2022-winter.yaml new file mode 100644 index 0000000..22db2ff --- /dev/null +++ b/test/fixtures/jikan/season_matrix/49-2022-winter.yaml @@ -0,0 +1,3297 @@ +metadata: + captured_at: '2026-05-11T11:34:35Z' + label: 2022-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2022/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:34 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:29a4632016a6c32ac8ce76764f30d7d6a90b5ddc + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 14 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 334 + per_page: 25 + data: + - mal_id: 47778 + url: https://myanimelist.net/anime/47778/Kimetsu_no_Yaiba__Yuukaku-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1908/120036.jpg + small_image_url: https://myanimelist.net/images/anime/1908/120036t.jpg + large_image_url: https://myanimelist.net/images/anime/1908/120036l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1908/120036.webp + small_image_url: https://myanimelist.net/images/anime/1908/120036t.webp + large_image_url: https://myanimelist.net/images/anime/1908/120036l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QwvWdnd2Ktg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba: Yuukaku-hen' + - type: Japanese + title: 鬼滅の刃 遊郭編 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba Entertainment District Arc' + title: 'Kimetsu no Yaiba: Yuukaku-hen' + title_english: 'Demon Slayer: Kimetsu no Yaiba Entertainment District Arc' + title_japanese: 鬼滅の刃 遊郭編 + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2021-12-05T00:00:00+00:00' + to: '2022-02-13T00:00:00+00:00' + prop: + from: + day: 5 + month: 12 + year: 2021 + to: + day: 13 + month: 2 + year: 2022 + string: Dec 5, 2021 to Feb 13, 2022 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.69 + scored_by: 1118308 + rank: 71 + popularity: 72 + members: 1741308 + favorites: 25148 + synopsis: |- + The devastation of the Mugen Train incident still weighs heavily on the members of the Demon Slayer Corps. Despite being given time to recover, life must go on, as the wicked never sleep: a vicious demon is terrorizing the alluring women of the Yoshiwara Entertainment District. The Sound Hashira, Tengen Uzui, and his three wives are on the case. However, when he soon loses contact with his spouses, Tengen fears the worst and enlists the help of Tanjirou Kamado, Zenitsu Agatsuma, and Inosuke Hashibira to infiltrate the district's most prominent houses and locate the depraved Upper Rank Demon. + + [Written by MAL Rewrite] + background: 'Kimetsu no Yaiba: Yuukaku-hen adapts chapters 67 to 97 of the original manga.' + season: winter + year: 2022 + broadcast: + day: Sundays + time: '23:15' + timezone: Asia/Tokyo + string: Sundays at 23:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48583 + url: https://myanimelist.net/anime/48583/Shingeki_no_Kyojin__The_Final_Season_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1948/120625.jpg + small_image_url: https://myanimelist.net/images/anime/1948/120625t.jpg + large_image_url: https://myanimelist.net/images/anime/1948/120625l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1948/120625.webp + small_image_url: https://myanimelist.net/images/anime/1948/120625t.webp + large_image_url: https://myanimelist.net/images/anime/1948/120625l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EIVVnLlhzr0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: The Final Season Part 2' + - type: Synonym + title: Shingeki no Kyojin Season 4 + - type: Synonym + title: Attack on Titan Season 4 + - type: Japanese + title: 進撃の巨人 The Final Season Part 2 + - type: English + title: 'Attack on Titan: Final Season Part 2' + title: 'Shingeki no Kyojin: The Final Season Part 2' + title_english: 'Attack on Titan: Final Season Part 2' + title_japanese: 進撃の巨人 The Final Season Part 2 + title_synonyms: + - Shingeki no Kyojin Season 4 + - Attack on Titan Season 4 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-10T00:00:00+00:00' + to: '2022-04-04T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2022 + to: + day: 4 + month: 4 + year: 2022 + string: Jan 10, 2022 to Apr 4, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.77 + scored_by: 934256 + rank: 46 + popularity: 88 + members: 1560610 + favorites: 32406 + synopsis: |- + Turning against his former allies and enemies alike, Eren Yeager sets a disastrous plan in motion. Under the guidance of the Beast Titan, Zeke, Eren takes extreme measures to end the ancient conflict between Marley and Eldia—but his true intentions remain a mystery. Delving deep into his family's past, Eren fights to control his own destiny. + + Meanwhile, the long-feuding nations of Marley and Eldia utilize both soldiers and Titans in a brutal race to eliminate the other. Reiner Braun uses his own powers in a desperate bid to hold off Eren's own militaristic force, and his fellow Eldians—children Falco Grice and Gabi Braun—struggle to survive in the unfolding chaos. + + Elsewhere, Eren's childhood friends Mikasa Ackerman and Armin Arlert remain imprisoned alongside Eren's former Survey Corps companions, all disturbed by Eren's monstrous transformation. Under the blind belief that Eren still secretly harbors good intentions, Mikasa and the others enter the fray in an attempt to save their friend's very soul. + + [Written by MAL Rewrite] + background: 'Shingeki no Kyojin: The Final Season Part 2 adapts content from volumes 29-32 of the original manga.' + season: winter + year: 2022 + broadcast: + day: Mondays + time: 00:05 + timezone: Asia/Tokyo + string: Mondays at 00:05 (JST) + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48736 + url: https://myanimelist.net/anime/48736/Sono_Bisque_Doll_wa_Koi_wo_Suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1179/119897.jpg + small_image_url: https://myanimelist.net/images/anime/1179/119897t.jpg + large_image_url: https://myanimelist.net/images/anime/1179/119897l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1179/119897.webp + small_image_url: https://myanimelist.net/images/anime/1179/119897t.webp + large_image_url: https://myanimelist.net/images/anime/1179/119897l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tFKDKd8z-NU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sono Bisque Doll wa Koi wo Suru + - type: Synonym + title: Sono Kisekae Ningyou wa Koi wo Suru + - type: Synonym + title: KiseKoi + - type: Japanese + title: その着せ替え人形は恋をする + - type: English + title: My Dress-Up Darling + title: Sono Bisque Doll wa Koi wo Suru + title_english: My Dress-Up Darling + title_japanese: その着せ替え人形は恋をする + title_synonyms: + - Sono Kisekae Ningyou wa Koi wo Suru + - KiseKoi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-09T00:00:00+00:00' + to: '2022-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2022 + to: + day: 27 + month: 3 + year: 2022 + string: Jan 9, 2022 to Mar 27, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 811369 + rank: 557 + popularity: 118 + members: 1325349 + favorites: 23736 + synopsis: "High school student Wakana Gojou spends his days perfecting the art of making hina dolls, hoping to eventually\ + \ reach his grandfather's level of expertise. While his fellow teenagers busy themselves with pop culture, Gojou finds\ + \ bliss in sewing clothes for his dolls. Nonetheless, he goes to great lengths to keep his unique hobby a secret,\ + \ as he believes that he would be ridiculed were it revealed. \n\nEnter Marin Kitagawa, an extraordinarily pretty\ + \ girl whose confidence and poise are in stark contrast to Gojou's meekness. It would defy common sense for the friendless\ + \ Gojou to mix with the likes of Kitagawa, who is always surrounded by her peers. However, the unimaginable happens\ + \ when Kitagawa discovers Gojou's prowess with a sewing machine and brightly confesses to him about her own hobby:\ + \ cosplay. Because her sewing skills are pitiable, she decides to enlist his help.\n\nAs Gojou and Kitagawa work together\ + \ on one cosplay outfit after another, they cannot help but grow close—even though their lives are worlds apart.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2022 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40507 + url: https://myanimelist.net/anime/40507/Arifureta_Shokugyou_de_Sekai_Saikyou_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1877/119668.jpg + small_image_url: https://myanimelist.net/images/anime/1877/119668t.jpg + large_image_url: https://myanimelist.net/images/anime/1877/119668l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1877/119668.webp + small_image_url: https://myanimelist.net/images/anime/1877/119668t.webp + large_image_url: https://myanimelist.net/images/anime/1877/119668l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JoFedOjH1uY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arifureta Shokugyou de Sekai Saikyou 2nd Season + - type: Synonym + title: From Common Job Class to the Strongest in the World 2nd Season + - type: Japanese + title: ありふれた職業で世界最強 2nd Season + - type: English + title: 'Arifureta: From Commonplace to World''s Strongest Season 2' + title: Arifureta Shokugyou de Sekai Saikyou 2nd Season + title_english: 'Arifureta: From Commonplace to World''s Strongest Season 2' + title_japanese: ありふれた職業で世界最強 2nd Season + title_synonyms: + - From Common Job Class to the Strongest in the World 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-13T00:00:00+00:00' + to: '2022-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2022 + to: + day: 31 + month: 3 + year: 2022 + string: Jan 13, 2022 to Mar 31, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.13 + scored_by: 203119 + rank: 4372 + popularity: 570 + members: 462591 + favorites: 4308 + synopsis: |- + After rescuing his former classmates from the perils of a labyrinth—a mythical place that grants a divine magic to whosoever triumphs over its trials—Nagumo Hajime emerges victorious, while the new heroes of the fantasy world Tortus must face their first major failure. Together with his traveling companions and the new team member Kaori Shirasaki, Nagumo resumes his journey to conquer all labyrinths and eventually return to his original world. + + Meanwhile, the heroes from Earth try learning from their mistakes and prepare for the demon army's invasion. As the final confrontation looms closer, new and old enemies start setting their evil plans in motion. Once more, Nagumo must prove that he can prevail against the most formidable opponents, all while protecting the ones he holds closest to his heart. + + [Written by MAL Rewrite] + background: Arifureta Shokugyou de Sekai Saikyou 2nd Season was released on Blu-ray from March 23, 2022, to July 27, + 2022. + season: winter + year: 2022 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + - mal_id: 2246 + type: anime + name: studio MOTHER + url: https://myanimelist.net/anime/producer/2246/studio_MOTHER + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 49114 + url: https://myanimelist.net/anime/49114/Vanitas_no_Karte_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1247/120579.jpg + small_image_url: https://myanimelist.net/images/anime/1247/120579t.jpg + large_image_url: https://myanimelist.net/images/anime/1247/120579l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1247/120579.webp + small_image_url: https://myanimelist.net/images/anime/1247/120579t.webp + large_image_url: https://myanimelist.net/images/anime/1247/120579l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WzP7aiESfFw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Vanitas no Karte Part 2 + - type: Synonym + title: Vanitas no Shuki 2nd Season + - type: Synonym + title: Memoir of Vanitas 2nd Season + - type: Synonym + title: Vanitas no Carte 2nd Season + - type: Japanese + title: ヴァニタスの手記 + - type: English + title: The Case Study of Vanitas Part 2 + title: Vanitas no Karte Part 2 + title_english: The Case Study of Vanitas Part 2 + title_japanese: ヴァニタスの手記 + title_synonyms: + - Vanitas no Shuki 2nd Season + - Memoir of Vanitas 2nd Season + - Vanitas no Carte 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-15T00:00:00+00:00' + to: '2022-04-02T00:00:00+00:00' + prop: + from: + day: 15 + month: 1 + year: 2022 + to: + day: 2 + month: 4 + year: 2022 + string: Jan 15, 2022 to Apr 2, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.19 + scored_by: 151437 + rank: 474 + popularity: 804 + members: 345812 + favorites: 2938 + synopsis: |- + Vanitas and Noé Archiviste head out to the town of Gévaudan in search of the "Beast," an enormous wolf-like creature that has slaughtered hundreds of people. Suspecting that the Beast is a curse-bearing vampire, Vanitas primarily aims to heal it using the powers of his grimoire. + + Along the way, the two get separated and suddenly travel back to the past—to the exact moment the Beast is lurking in the woods. After a battle against the gigantic wolf and a vampire hunter, Vanitas decides to team up with Jeanne in order to find Noé. Despite being allies, Jeanne's goal is the opposite of Vanitas', as she was tasked to kill the Beast—suspecting it may be someone she used to know. + + Meanwhile, a severely wounded Noé is picked up by the mysterious Chloé d'Apchier and her servant. Like Noé, Chloé is a vampire whose existence was erased from the public's knowledge. She has been a guardian for future generations and once tried to find a way to become human again. While Noé is grateful to Chloé for her hospitality, little does he know that she might be siding with forces far more dangerous than the Beast itself. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 47159 + url: https://myanimelist.net/anime/47159/Tensai_Ouji_no_Akaji_Kokka_Saisei_Jutsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1263/119511.jpg + small_image_url: https://myanimelist.net/images/anime/1263/119511t.jpg + large_image_url: https://myanimelist.net/images/anime/1263/119511l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1263/119511.webp + small_image_url: https://myanimelist.net/images/anime/1263/119511t.webp + large_image_url: https://myanimelist.net/images/anime/1263/119511l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TxWHJz8Gg_E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensai Ouji no Akaji Kokka Saisei Jutsu + - type: Japanese + title: 天才王子の赤字国家再生術 + - type: English + title: The Genius Prince's Guide to Raising a Nation Out of Debt + title: Tensai Ouji no Akaji Kokka Saisei Jutsu + title_english: The Genius Prince's Guide to Raising a Nation Out of Debt + title_japanese: 天才王子の赤字国家再生術 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-11T00:00:00+00:00' + to: '2022-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2022 + to: + day: 29 + month: 3 + year: 2022 + string: Jan 11, 2022 to Mar 29, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.39 + scored_by: 156513 + rank: 2805 + popularity: 839 + members: 334914 + favorites: 1717 + synopsis: |- + The king of Natra has fallen ill, leaving the only hope for his kingdom to his son, Prince Wein Salema Arbalest. Known to be capable and wise, he is the perfect candidate to become the prince regent. However, if the prince has anything to say about the matter, he would rather sell off the Kingdom of Natra to the highest bidder! + + Since he wields the authority of the throne, no one can stop Wein from auctioning off the country and using the profits to retire in comfort. All he needs to do is raise the value of the small kingdom to maximize his gains. But whether Wein's grand plan will succeed remains to be seen, as his wit often surpasses even his own expectations—much to the benefit of the oblivious citizens of Natra. + + [Written by MAL Rewrite] + background: Tensai Ouji no Akaji Kokka Saisei Jutsu was released on Blu-ray in four volumes from March 30, 2022 to June + 29, 2022. + season: winter + year: 2022 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 49930 + url: https://myanimelist.net/anime/49930/Genjitsu_Shugi_Yuusha_no_Oukoku_Saikenki_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1088/120068.jpg + small_image_url: https://myanimelist.net/images/anime/1088/120068t.jpg + large_image_url: https://myanimelist.net/images/anime/1088/120068l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1088/120068.webp + small_image_url: https://myanimelist.net/images/anime/1088/120068t.webp + large_image_url: https://myanimelist.net/images/anime/1088/120068l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cAepP-zxzBM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2 + - type: Synonym + title: Re:Construction the Elfrieden Kingdom Tales of Realistic Brave + - type: Synonym + title: A Realist Hero's Kingdom Restoration Chronicle + - type: Japanese + title: 現実主義勇者の王国再建記 + - type: English + title: How a Realist Hero Rebuilt the Kingdom Part 2 + title: Genjitsu Shugi Yuusha no Oukoku Saikenki Part 2 + title_english: How a Realist Hero Rebuilt the Kingdom Part 2 + title_japanese: 現実主義勇者の王国再建記 + title_synonyms: + - Re:Construction the Elfrieden Kingdom Tales of Realistic Brave + - A Realist Hero's Kingdom Restoration Chronicle + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-01-09T00:00:00+00:00' + to: '2022-04-03T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2022 + to: + day: 3 + month: 4 + year: 2022 + string: Jan 9, 2022 to Apr 3, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 156981 + rank: 2565 + popularity: 929 + members: 301395 + favorites: 1453 + synopsis: |- + Together with his talented aides, the "Realist Hero" Kazuya Souma continues his quest of reinvigorating the Elfrieden Kingdom through administrative reform. Having successfully conquered Van—the capital city of the Principality of Amidonia—Kazuya now faces the envoy from Gran Chaos Empire, who wishes to impose punishment for breaching the ban on war established by the Mankind Declaration Treaty. Despite the dire situation, Kazuya sees a path to avoid unnecessary conflict whilst gaining new allies. With his plan being seemingly perfect, the only barrier to success is gaining approval from the envoy. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 2408 + type: anime + name: WOWMAX + url: https://myanimelist.net/anime/producer/2408/WOWMAX + - mal_id: 2797 + type: anime + name: MIGHTY MEDIA + url: https://myanimelist.net/anime/producer/2797/MIGHTY_MEDIA + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 47161 + url: https://myanimelist.net/anime/47161/Shikkakumon_no_Saikyou_Kenja + images: + jpg: + image_url: https://myanimelist.net/images/anime/1132/120388.jpg + small_image_url: https://myanimelist.net/images/anime/1132/120388t.jpg + large_image_url: https://myanimelist.net/images/anime/1132/120388l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1132/120388.webp + small_image_url: https://myanimelist.net/images/anime/1132/120388t.webp + large_image_url: https://myanimelist.net/images/anime/1132/120388l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F56CrRxByqI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shikkakumon no Saikyou Kenja + - type: Synonym + title: The Strongest Sage of Disqualified Crest + - type: Synonym + title: Shikkakumon no Saikyokenja + - type: Japanese + title: 失格紋の最強賢者 + - type: English + title: The Strongest Sage with the Weakest Crest + title: Shikkakumon no Saikyou Kenja + title_english: The Strongest Sage with the Weakest Crest + title_japanese: 失格紋の最強賢者 + title_synonyms: + - The Strongest Sage of Disqualified Crest + - Shikkakumon no Saikyokenja + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-08T00:00:00+00:00' + to: '2022-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2022 + to: + day: 26 + month: 3 + year: 2022 + string: Jan 8, 2022 to Mar 26, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.22 + scored_by: 143363 + rank: 9833 + popularity: 938 + members: 298271 + favorites: 1210 + synopsis: |- + At birth, mages randomly acquire one of the four "crests" that represents the extent of their magical capability. Equipped with a crest specializing in creation, a man named Gaius reached the ceiling of his potential, becoming known as the world's strongest sage. Despite his overwhelming power, he is unsatisfied with his abilities and desires to possess the mark suitable for close combat. Knowing that a person's crest is unchangeable, Gaius decides to reincarnate far into the future, hoping to alter his fate. + + Thousands of years later, Gaius is reborn as Mathias Hildesheimer, successfully obtaining his long-coveted crest. However, he is surprised to learn that in these times, magic has vastly waned, and the techniques that were once widely used are now nothing more than just a speck of legend. Moreover, the crest that he painstakingly strived to attain is now considered the weakest—merely dubbed the "Crest of Failure." + + Nevertheless, Mathias naturally exceeds all expectations. He enrolls into the royal capital's Second Academy, acing every trial that comes his way. But soon after, Mathias discovers the dark truth behind humanity's downfall into magical mediocrity—demons—and endeavors to remedy the consequence of his millennia-long absence once and for all. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 41946 + url: https://myanimelist.net/anime/41946/Shuumatsu_no_Harem + images: + jpg: + image_url: https://myanimelist.net/images/anime/1491/117296.jpg + small_image_url: https://myanimelist.net/images/anime/1491/117296t.jpg + large_image_url: https://myanimelist.net/images/anime/1491/117296l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1491/117296.webp + small_image_url: https://myanimelist.net/images/anime/1491/117296t.webp + large_image_url: https://myanimelist.net/images/anime/1491/117296l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lre7UaVnLk8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shuumatsu no Harem + - type: Japanese + title: 終末のハーレム + - type: English + title: World's End Harem + title: Shuumatsu no Harem + title_english: World's End Harem + title_japanese: 終末のハーレム + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2022-01-07T00:00:00+00:00' + to: '2022-03-18T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2022 + to: + day: 18 + month: 3 + year: 2022 + string: Jan 7, 2022 to Mar 18, 2022 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 5.9 + scored_by: 109952 + rank: null + popularity: 999 + members: 281284 + favorites: 2072 + synopsis: "Reito Mizuhara is a medical student at the National Advanced Medical School in Tokyo who contracts a rare,\ + \ lethal disease called cellular sclerosis. In order to be treated, he is put into cryogenic sleep for five years.\ + \ Upon awakening, he learns that a year into his slumber, a worldwide pandemic broke out, caused by the novel Male\ + \ Killer (MK) virus which exclusively afflicts males and has killed all other men on Earth. \n\nFortunately, Reito\ + \ and four other men were spared during their cryosleep and are now immune to the virus. As the only men left in the\ + \ world, they are thus tasked with mating with as many women as possible to repopulate the planet. However, Reito\ + \ is committed to his childhood friend and sole love interest, Elisa Tachibana—only to learn that she went missing\ + \ three years ago. While the other male survivors adapt accordingly to this new world, Reito instead chooses to pursue\ + \ Elisa, fight never-ending temptation, and investigate this mysterious virus. \n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2022 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1300 + type: anime + name: Office Nobu + url: https://myanimelist.net/anime/producer/1300/Office_Nobu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2186 + type: anime + name: Mirai-Kojo + url: https://myanimelist.net/anime/producer/2186/Mirai-Kojo + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + - mal_id: 1299 + type: anime + name: AXsiZ + url: https://myanimelist.net/anime/producer/1299/AXsiZ + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48414 + url: https://myanimelist.net/anime/48414/Sabikui_Bisco + images: + jpg: + image_url: https://myanimelist.net/images/anime/1446/118840.jpg + small_image_url: https://myanimelist.net/images/anime/1446/118840t.jpg + large_image_url: https://myanimelist.net/images/anime/1446/118840l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1446/118840.webp + small_image_url: https://myanimelist.net/images/anime/1446/118840t.webp + large_image_url: https://myanimelist.net/images/anime/1446/118840l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/HF-ZL91ZkTQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sabikui Bisco + - type: Synonym + title: Rust-Eater Bisco + - type: Japanese + title: 錆喰いビスコ + - type: English + title: Sabikui Bisco + title: Sabikui Bisco + title_english: Sabikui Bisco + title_japanese: 錆喰いビスコ + title_synonyms: + - Rust-Eater Bisco + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-11T00:00:00+00:00' + to: '2022-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2022 + to: + day: 29 + month: 3 + year: 2022 + string: Jan 11, 2022 to Mar 29, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.14 + scored_by: 112954 + rank: 4356 + popularity: 1004 + members: 279506 + favorites: 1467 + synopsis: |- + An apocalyptic event has ravaged Japan, leaving nothing but endless sandy plains behind, and a strange rusting disease terrorizes the remnants of civilization. According to the government, the horrific state of the new world is the result of mushroom spores being spread by the likes of Bisco Akaboshi, labeled the "Man-Eating Mushroom." + + But Bisco would beg to differ. In reality, he is a "Mushroom Protector," determined to uncover the legendary "Sabikui" mushroom—said to be the ultimate cure for the rusting disease. Joining him on his quest are his giant crab Akutagawa and the kind doctor Milo Nekoyanagi, who is actively searching for a rust poisoning treatment for his sick sister. Despite the prejudice aimed toward him by the common folk, Bisco refuses to give up on his quest to purify the rotting world. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2204 + type: anime + name: OZ + url: https://myanimelist.net/anime/producer/2204/OZ + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 44055 + url: https://myanimelist.net/anime/44055/Sasaki_to_Miyano + images: + jpg: + image_url: https://myanimelist.net/images/anime/1182/119308.jpg + small_image_url: https://myanimelist.net/images/anime/1182/119308t.jpg + large_image_url: https://myanimelist.net/images/anime/1182/119308l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1182/119308.webp + small_image_url: https://myanimelist.net/images/anime/1182/119308t.webp + large_image_url: https://myanimelist.net/images/anime/1182/119308l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LaRNddpJpVo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sasaki to Miyano + - type: Synonym + title: Sasamiya + - type: Japanese + title: 佐々木と宮野 + - type: English + title: Sasaki and Miyano + title: Sasaki to Miyano + title_english: Sasaki and Miyano + title_japanese: 佐々木と宮野 + title_synonyms: + - Sasamiya + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-10T00:00:00+00:00' + to: '2022-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2022 + to: + day: 28 + month: 3 + year: 2022 + string: Jan 10, 2022 to Mar 28, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.19 + scored_by: 108309 + rank: 472 + popularity: 1194 + members: 237875 + favorites: 5681 + synopsis: |- + Yoshikazu Miyano's troubles first start one hot summer day when Shuumei Sasaki steps into his life. Sasaki saves Miyano's classmate from a group of bullies, and after that, Miyano cannot seem to shake off his eccentric upperclassman. His silent admiration for Sasaki gradually sours into annoyance each time the so-called delinquent refuses to leave him alone. Constantly being called by cute nicknames and having his boundaries ignored, Miyano wonders why Sasaki wants to get close to him. + + The shy and easily flustered Miyano harbors an embarrassing secret—he is a "fudanshi," a boy who likes boys' love (BL) manga. The last thing he wants is for other students to find out, but through a slip of the tongue, he reveals the truth to Sasaki. Intrigued, the clueless Sasaki asks to borrow a book to read, which he is given very reluctantly. To Miyano's surprise, Sasaki enjoys the BL that he receives and asks for more, marking a shift in their strange dynamic. + + Although Sasaki appears to possess some personal agenda, his feelings for Miyano become complicated the more time they spend together. As they now share a common interest, their relationship is poised to change and further develop. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Mondays + time: 00:30 + timezone: Asia/Tokyo + string: Mondays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 28 + type: anime + name: Boys Love + url: https://myanimelist.net/anime/genre/28/Boys_Love + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 48553 + url: https://myanimelist.net/anime/48553/Akebi-chan_no_Sailor-fuku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1820/120520.jpg + small_image_url: https://myanimelist.net/images/anime/1820/120520t.jpg + large_image_url: https://myanimelist.net/images/anime/1820/120520l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1820/120520.webp + small_image_url: https://myanimelist.net/images/anime/1820/120520t.webp + large_image_url: https://myanimelist.net/images/anime/1820/120520l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pX1NO_8Ycuk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akebi-chan no Sailor-fuku + - type: Japanese + title: 明日ちゃんのセーラー服 + - type: English + title: Akebi's Sailor Uniform + title: Akebi-chan no Sailor-fuku + title_english: Akebi's Sailor Uniform + title_japanese: 明日ちゃんのセーラー服 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-09T00:00:00+00:00' + to: '2022-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2022 + to: + day: 27 + month: 3 + year: 2022 + string: Jan 9, 2022 to Mar 27, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.65 + scored_by: 80106 + rank: 1613 + popularity: 1303 + members: 215208 + favorites: 1256 + synopsis: "Ever since she was young, Komichi Akebi has always adored sailor uniforms, even going so far as to ask her\ + \ mother to sew one if she succeeds in getting into her mother's alma mater, Roubai Academy. And thus, when she gets\ + \ accepted into the prestigious school, Komichi is ecstatic. However, much to her surprise, the middle school no longer\ + \ uses sailor uniforms as its dress code—making Komichi stand out from her schoolmates. Despite this, Komichi is granted\ + \ permission to continue wearing the traditional attire. \n\nWith renewed confidence, Komichi meets fascinating classmates\ + \ as they experience school life together. Under the colorful shower of blossoming prospects, an exciting tomorrow\ + \ awaits them!\n\n[Written by MAL Rewrite]" + background: Akebi-chan no Sailor-fuku was released on Blu-ray and DVD in six volumes from April 27, 2022 to September + 28, 2022. + season: winter + year: 2022 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 50360 + url: https://myanimelist.net/anime/50360/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu_-_Eris_no_Goblin_Toubatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1094/120148.jpg + small_image_url: https://myanimelist.net/images/anime/1094/120148t.jpg + large_image_url: https://myanimelist.net/images/anime/1094/120148l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1094/120148.webp + small_image_url: https://myanimelist.net/images/anime/1094/120148t.webp + large_image_url: https://myanimelist.net/images/anime/1094/120148l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/D_u6BZYp93U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu' + - type: Synonym + title: 'Mushoku Tensei: Jobless Reincarnation Special' + - type: Synonym + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu Special' + - type: Japanese + title: 無職転生 ~異世界行ったら本気だす~ エリスのゴブリン討伐 + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation - Eris the Goblin Slayer' + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu' + title_english: 'Mushoku Tensei: Jobless Reincarnation - Eris the Goblin Slayer' + title_japanese: 無職転生 ~異世界行ったら本気だす~ エリスのゴブリン討伐 + title_synonyms: + - 'Mushoku Tensei: Jobless Reincarnation Special' + - 'Mushoku Tensei: Isekai Ittara Honki Dasu Special' + type: Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-03-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 3 + year: 2022 + to: + day: null + month: null + year: null + string: Mar 16, 2022 + duration: 23 min + rating: R - 17+ (violence & profanity) + score: 7.79 + scored_by: 116992 + rank: 1216 + popularity: 1313 + members: 213001 + favorites: 642 + synopsis: |- + During their stay in the capital of Milishion, the adventurers of Dead End decide to split up for a day to run their errands. While Rudeus Greyrat has his plans derailed by a troublesome scene, the party's swordswoman, Eris Boreas Greyrat, finds herself with nothing to do. Deciding to embark on an adventure to slay goblins, Eris crosses paths with a cocky but talented mage named Cliff Grimoire. Though Eris refuses his company, Cliff stubbornly ignores her wishes and dares her to explore the perilous forest surrounding the city. Accepting his challenge, Eris ventures into the forest with the mage, where the two encounter something far more repulsive than mere goblins. + + [Written by MAL Rewrite] + background: 'Mushoku Tensei: Isekai Ittara Honki Dasu - Eris no Goblin Toubatsu is an unaired episode bundled with the + fourth Mushoku Tensei: Isekai Ittara Honki Dasu Blu-ray volume.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 49721 + url: https://myanimelist.net/anime/49721/Karakai_Jouzu_no_Takagi-san_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1861/120361.jpg + small_image_url: https://myanimelist.net/images/anime/1861/120361t.jpg + large_image_url: https://myanimelist.net/images/anime/1861/120361l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1861/120361.webp + small_image_url: https://myanimelist.net/images/anime/1861/120361t.webp + large_image_url: https://myanimelist.net/images/anime/1861/120361l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/N238ads-bdw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Karakai Jouzu no Takagi-san 3 + - type: Synonym + title: Skilled Teaser Takagi-san 3rd Season + - type: Synonym + title: Karakai Jouzu no Takagi-san Third Season + - type: Japanese + title: からかい上手の高木さん3 + - type: English + title: Teasing Master Takagi-san 3 + title: Karakai Jouzu no Takagi-san 3 + title_english: Teasing Master Takagi-san 3 + title_japanese: からかい上手の高木さん3 + title_synonyms: + - Skilled Teaser Takagi-san 3rd Season + - Karakai Jouzu no Takagi-san Third Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-08T00:00:00+00:00' + to: '2022-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2022 + to: + day: 26 + month: 3 + year: 2022 + string: Jan 8, 2022 to Mar 26, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.37 + scored_by: 96877 + rank: 259 + popularity: 1314 + members: 212758 + favorites: 2351 + synopsis: |- + As summer break comes to an end, Nishikata is stoked to try out his newest pranks and finally outdo his classmate Takagi once and for all. Despite his losing streak, he is slowly getting to know the unrelenting workings of her crafty mind. However, he soon realizes that Takagi's motivations behind her teasing may not be what he initially assumed. One thing is certain, though: each fun-filled day of strategizing and competing brings the two closer than ever. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48997 + url: https://myanimelist.net/anime/48997/Fantasy_Bishoujo_Juniku_Ojisan_to + images: + jpg: + image_url: https://myanimelist.net/images/anime/1430/120065.jpg + small_image_url: https://myanimelist.net/images/anime/1430/120065t.jpg + large_image_url: https://myanimelist.net/images/anime/1430/120065l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1430/120065.webp + small_image_url: https://myanimelist.net/images/anime/1430/120065t.webp + large_image_url: https://myanimelist.net/images/anime/1430/120065l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/C1J0NsSBhOU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fantasy Bishoujo Juniku Ojisan to + - type: Synonym + title: Fabiniku + - type: Synonym + title: Isekai Bishoujo Juniku Ojisan + - type: Japanese + title: 異世界美少女受肉おじさんと + - type: English + title: Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout + title: Fantasy Bishoujo Juniku Ojisan to + title_english: Life with an Ordinary Guy who Reincarnated into a Total Fantasy Knockout + title_japanese: 異世界美少女受肉おじさんと + title_synonyms: + - Fabiniku + - Isekai Bishoujo Juniku Ojisan + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-12T00:00:00+00:00' + to: '2022-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2022 + to: + day: 30 + month: 3 + year: 2022 + string: Jan 12, 2022 to Mar 30, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 94849 + rank: 4440 + popularity: 1346 + members: 208404 + favorites: 880 + synopsis: "Since their days as students, Tsukasa Jinguuji has had incredible luck with women due to his good looks;\ + \ Hinata Tachibana has had almost none, overshadowed by Jinguuji's brilliance. However, while Jinguuji has never shown\ + \ interest in the opposite sex, Tachibana is always desperate for a girlfriend. Despite their polar differences, they\ + \ continue to be best friends even in their thirties as salarymen. \n\nOne night, the two are returning home from\ + \ a mixer where Jinguuji was the center of attention as usual. In his drunken rambles, a frustrated Tachibana inadvertently\ + \ wishes to become a beautiful girl with irresistible charm. As if the heavens were listening, a goddess suddenly\ + \ shows herself before Jinguuji and Tachibana, transporting them to another world to defeat the Demon Lord and simultaneously\ + \ granting Tachibana's desire.\n\nTachibana—now in the body of an impossibly perfect woman—has become so attractive\ + \ that even Jinguuji is captivated. Moreover, Tachibana grows aware of Jinguuji's stunning appearance, finally understanding\ + \ his popularity. Before they fall in love with each other, the duo must complete their mission or risk remaining\ + \ prisoners to their infatuations forever.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2022 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2384 + type: anime + name: Music Brains + url: https://myanimelist.net/anime/producer/2384/Music_Brains + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 49909 + url: https://myanimelist.net/anime/49909/Kotarou_wa_Hitorigurashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1862/121020.jpg + small_image_url: https://myanimelist.net/images/anime/1862/121020t.jpg + large_image_url: https://myanimelist.net/images/anime/1862/121020l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1862/121020.webp + small_image_url: https://myanimelist.net/images/anime/1862/121020t.webp + large_image_url: https://myanimelist.net/images/anime/1862/121020l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0XJA93kdzsQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kotarou wa Hitorigurashi + - type: Synonym + title: Kotaro Lives By Himself + - type: Japanese + title: コタローは1人暮らし + - type: English + title: Kotaro Lives Alone + title: Kotarou wa Hitorigurashi + title_english: Kotaro Lives Alone + title_japanese: コタローは1人暮らし + title_synonyms: + - Kotaro Lives By Himself + type: ONA + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2022-03-10T00:00:00+00:00' + to: null + prop: + from: + day: 10 + month: 3 + year: 2022 + to: + day: null + month: null + year: null + string: Mar 10, 2022 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 8.15 + scored_by: 110333 + rank: 522 + popularity: 1355 + members: 206311 + favorites: 2324 + synopsis: |- + One day, manga author Shin Karino is greeted by four-year-old Kotarou Satou, his new next-door neighbor, who gifts him a box of tissues. In Karino's eyes, Kotarou is an odd kid: he speaks in an extremely formal manner, and he lives alone in his apartment—no parents or relatives in sight. But Kotarou neither seems to mind, nor wants to rely on people. + + Feeling sympathetic toward Kotarou's circumstances, Karino decides to follow Kotarou to a bathhouse in case something might happen to him and there he comes to understand the little boy is not so different from him. Little by little, Karino—along with the other residents of the apartment complex—grows fond of Kotarou and his antics. At the same time, Kotarou himself might have found something akin to a family in his unique neighbors. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 44516 + url: https://myanimelist.net/anime/44516/Koroshi_Ai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1485/119329.jpg + small_image_url: https://myanimelist.net/images/anime/1485/119329t.jpg + large_image_url: https://myanimelist.net/images/anime/1485/119329l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1485/119329.webp + small_image_url: https://myanimelist.net/images/anime/1485/119329t.webp + large_image_url: https://myanimelist.net/images/anime/1485/119329l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UuSugsgmnv4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koroshi Ai + - type: Japanese + title: 殺し愛 + - type: English + title: Love of Kill + title: Koroshi Ai + title_english: Love of Kill + title_japanese: 殺し愛 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-13T00:00:00+00:00' + to: '2022-03-31T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2022 + to: + day: 31 + month: 3 + year: 2022 + string: Jan 13, 2022 to Mar 31, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.91 + scored_by: 72274 + rank: 5635 + popularity: 1415 + members: 197042 + favorites: 1038 + synopsis: |- + Novice bounty hunter Chateau Dankworth never expected to encounter someone capable of overpowering her in combat. Even less so that the mysterious man would take an immediate interest in her—to the point of aiding her missions. However, Chateau makes it clear that she has no plans of entertaining any personal involvement with him. + + Chateau's company is soon tasked with eliminating Song Ryang-ha—an expert assassin and a former member of a powerful Asian organization. Coincidentally, Ryang-ha is the man that has been pursuing her. Despite his background, Chateau reluctantly agrees to meet with Ryang-ha as part of a deal: in exchange for going out with him, he will provide her with the locations of current targets, dead or alive. + + But when the past begins to haunt both killers, their arrangement may need to come to an end, as their entanglement puts their lives at grave risk. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1869 + type: anime + name: Bit Promotion + url: https://myanimelist.net/anime/producer/1869/Bit_Promotion + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2290 + type: anime + name: A3 + url: https://myanimelist.net/anime/producer/2290/A3 + licensors: [] + studios: + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 43 + type: anime + name: Josei + url: https://myanimelist.net/anime/genre/43/Josei + - mal_id: 48239 + url: https://myanimelist.net/anime/48239/Leadale_no_Daichi_nite + images: + jpg: + image_url: https://myanimelist.net/images/anime/1099/122005.jpg + small_image_url: https://myanimelist.net/images/anime/1099/122005t.jpg + large_image_url: https://myanimelist.net/images/anime/1099/122005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1099/122005.webp + small_image_url: https://myanimelist.net/images/anime/1099/122005t.webp + large_image_url: https://myanimelist.net/images/anime/1099/122005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6TYVl5_XBJE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Leadale no Daichi nite + - type: Synonym + title: World of Leadale + - type: Japanese + title: リアデイルの大地にて + - type: English + title: In the Land of Leadale + title: Leadale no Daichi nite + title_english: In the Land of Leadale + title_japanese: リアデイルの大地にて + title_synonyms: + - World of Leadale + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-05T00:00:00+00:00' + to: '2022-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2022 + to: + day: 23 + month: 3 + year: 2022 + string: Jan 5, 2022 to Mar 23, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.96 + scored_by: 93369 + rank: 5353 + popularity: 1470 + members: 189230 + favorites: 985 + synopsis: |- + The previously bedridden Keina Kagami finds herself in the world of her favorite VRMMORPG—titled Leadale—after the life support keeping her alive fails. Reincarnated in the body of her high-level character, "Cayna," she notices that the world of Leadale is different from what she remembers playing. + + As she comes to learn, two hundred years have passed since she last interacted with the world. However, this does not sadden Cayna—as it means that a new journey awaits her, filled with exciting prospects and unfamiliar faces all waiting to be discovered. + + [Written by MAL Rewrite] + background: Leadale no Daichi nite will be released on Blu-ray and DVD in three volumes from March 30, 2022 to May 25, + 2022. + season: winter + year: 2022 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + - mal_id: 2072 + type: anime + name: Simplicity + url: https://myanimelist.net/anime/producer/2072/Simplicity + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 42072 + url: https://myanimelist.net/anime/42072/Kenja_no_Deshi_wo_Nanoru_Kenja + images: + jpg: + image_url: https://myanimelist.net/images/anime/1583/119223.jpg + small_image_url: https://myanimelist.net/images/anime/1583/119223t.jpg + large_image_url: https://myanimelist.net/images/anime/1583/119223l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1583/119223.webp + small_image_url: https://myanimelist.net/images/anime/1583/119223t.webp + large_image_url: https://myanimelist.net/images/anime/1583/119223l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k5nkrxm-1gY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kenja no Deshi wo Nanoru Kenja + - type: Synonym + title: Kendeshi + - type: Japanese + title: 賢者の弟子を名乗る賢者 + - type: English + title: She Professed Herself Pupil of the Wise Man + title: Kenja no Deshi wo Nanoru Kenja + title_english: She Professed Herself Pupil of the Wise Man + title_japanese: 賢者の弟子を名乗る賢者 + title_synonyms: + - Kendeshi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-12T00:00:00+00:00' + to: '2022-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2022 + to: + day: 30 + month: 3 + year: 2022 + string: Jan 12, 2022 to Mar 30, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 59132 + rank: 9114 + popularity: 1836 + members: 144007 + favorites: 653 + synopsis: |- + With a dignified veteran's body and a long white beard, summoner mage Dunbalf was one of the strongest player characters in the virtual reality online multiplayer roleplaying game Ark Earth Online, even heralded as a one-man army. Together with the "Nine Wise Mages" and King Solomon, they formed the mage player Kingdom of Alcait. But one day, Dunbalf and the other Nine Wise Mages suddenly go missing, leaving no trace behind. + + In an effort to spend his expiring credits, Dunbalf had purchased a cosmetic kit and tinkered with his character; however, he accidentally fell asleep during the customization process. Upon waking up, Dunbalf not only notices that the world of Ark Earth Online has become more realistic, but also discovers that he has turned into a cute girl! After reaching Alcait, he learns it has been 30 years since he supposedly disappeared. + + Now tasked with finding the other missing mages by King Solomon, the avid role player proclaims his new identity as Mira—the Pupil of the Wise Man Dunbalf—and ventures forth to prove his legacy. + + [Written by MAL Rewrite] + background: Kenja no Deshi wo Nanoru Kenja was set to premiere in Fall 2021 but was delayed until January 2022. The + series was released on Blu-ray and DVD in three volumes from April 27, 2022 to June 24, 2022. + season: winter + year: 2022 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2440 + type: anime + name: Micro House + url: https://myanimelist.net/anime/producer/2440/Micro_House + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1209 + type: anime + name: Studio A-CAT + url: https://myanimelist.net/anime/producer/1209/Studio_A-CAT + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + demographics: [] + - mal_id: 42670 + url: https://myanimelist.net/anime/42670/Princess_Connect_Re_Dive_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1906/117145.jpg + small_image_url: https://myanimelist.net/images/anime/1906/117145t.jpg + large_image_url: https://myanimelist.net/images/anime/1906/117145l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1906/117145.webp + small_image_url: https://myanimelist.net/images/anime/1906/117145t.webp + large_image_url: https://myanimelist.net/images/anime/1906/117145l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uSNFUa5XFq4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Princess Connect! Re:Dive Season 2 + - type: Synonym + title: Princess Connect! Re:Dive 2nd Season + - type: Synonym + title: Priconne 2nd Season + - type: Japanese + title: プリンセスコネクト! Re:Dive Season 2 + title: Princess Connect! Re:Dive Season 2 + title_english: null + title_japanese: プリンセスコネクト! Re:Dive Season 2 + title_synonyms: + - Princess Connect! Re:Dive 2nd Season + - Priconne 2nd Season + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-11T00:00:00+00:00' + to: '2022-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2022 + to: + day: 29 + month: 3 + year: 2022 + string: Jan 11, 2022 to Mar 29, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.74 + scored_by: 53192 + rank: 1343 + popularity: 1849 + members: 142524 + favorites: 827 + synopsis: |- + The members of the Gourmet Guild—Yuuki, Kokkoro, Pecorine, and Karyl—continue to scour the world in pursuit of their goal to seek out all delicious food in existence. However, as their adventures progress, the mysteries behind Yuuki's memories, Karyl's allegiance, and Pecorine's heritage begin to come together—seemingly forming the truth that makes up the world's very foundation. + + [Written by MAL Rewrite] + background: Princess Connect! Re:Dive Season 2 was released on Blu-ray in three volumes from March 22, 2022 to May 17, + 2022. + season: winter + year: 2022 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + licensors: [] + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 45560 + url: https://myanimelist.net/anime/45560/Orient + images: + jpg: + image_url: https://myanimelist.net/images/anime/1576/119361.jpg + small_image_url: https://myanimelist.net/images/anime/1576/119361t.jpg + large_image_url: https://myanimelist.net/images/anime/1576/119361l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1576/119361.webp + small_image_url: https://myanimelist.net/images/anime/1576/119361t.webp + large_image_url: https://myanimelist.net/images/anime/1576/119361l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/O4wTuxahqj0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Orient + - type: Japanese + title: オリエント + - type: English + title: Orient + title: Orient + title_english: Orient + title_japanese: オリエント + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-06T00:00:00+00:00' + to: '2022-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2022 + to: + day: 24 + month: 3 + year: 2022 + string: Jan 6, 2022 to Mar 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.62 + scored_by: 46420 + rank: 7427 + popularity: 1972 + members: 131509 + favorites: 527 + synopsis: |- + Freed from the rule of samurai 150 years ago, the people of Hinomoto live peaceful lives and revere their liberators—demons whose true forms remain elusive—as gods. Fated to mine rocks for the demons to feast on, Musashi knows the grim truth: humanity is enslaved by these otherworldly beings and the samurai are the last bastion fighting for freedom. Hiding his true opinion from his peers and growing distant from his childhood friend Kojirou Kanemaki, Musashi lives in angst until the day of his graduation. + + When the fresh graduates arrive at the mine, they are horrified to see the inhumane treatment of miners and the uncanny physical appearance of their overseers. However, Musashi manages to endure thanks to Kojirou's help. As the demon leader wreaks havoc on the quarry, Musashi is saved once more from certain death by the Takeda samurai clan. Recovering from humiliation and yearning for adventure, Musashi embarks on a journey to become a samurai and form his own clan! + + [Written by MAL Rewrite] + background: Orient was released on Blu-ray in Japan in three volumes from March 25, 2022 to May 27, 2022. + season: winter + year: 2022 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: [] + studios: + - mal_id: 179 + type: anime + name: A.C.G.T. + url: https://myanimelist.net/anime/producer/179/ACGT + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49310 + url: https://myanimelist.net/anime/49310/Fruits_Basket__Prelude + images: + jpg: + image_url: https://myanimelist.net/images/anime/1034/120096.jpg + small_image_url: https://myanimelist.net/images/anime/1034/120096t.jpg + large_image_url: https://myanimelist.net/images/anime/1034/120096l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1034/120096.webp + small_image_url: https://myanimelist.net/images/anime/1034/120096t.webp + large_image_url: https://myanimelist.net/images/anime/1034/120096l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/G3W_3EEzzSg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fruits Basket: Prelude' + - type: Synonym + title: Kyouko to Katsuya no Monogatari + - type: Synonym + title: The Story of Kyoko and Katsuya + - type: Japanese + title: フルーツバスケット -prelude- + title: 'Fruits Basket: Prelude' + title_english: null + title_japanese: フルーツバスケット -prelude- + title_synonyms: + - Kyouko to Katsuya no Monogatari + - The Story of Kyoko and Katsuya + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-02-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 2 + year: 2022 + to: + day: null + month: null + year: null + string: Feb 18, 2022 + duration: 1 hr 28 min + rating: PG-13 - Teens 13 or older + score: 8.37 + scored_by: 50781 + rank: 253 + popularity: 1973 + members: 131451 + favorites: 875 + synopsis: "Despite Kyouko Honda's tragic death, her vivid memory lives on, providing guidance through times of hardship\ + \ to her close ones. However, Kyouko was not always the wise and radiant person that she is fondly remembered as in\ + \ the present day.\n\nFeeling deserted by her own family and rejected by society, a young Kyouko abandons stability\ + \ for a life of delinquency, jeopardizing her education and future. Fortunately, her descent into despair is interrupted\ + \ by a fateful encounter with her husband-to-be Katsuya, who has recently started his teaching internship at her school.\ + \ \n\nWith a composure surprisingly unaffected by Kyouko's tantrums, Katsuya quickly wins her over through his gentleness\ + \ and attention toward her—sincere gestures that she has never received before. As the two grow closer together, Kyouko\ + \ opens her tormented heart to him and, along with it, a door to new horizons.\n\n[Written by MAL Rewrite]" + background: 'Fruits Basket: Prelude centers on the Kyouko to Katsuya no Monogatari prequel, which covers part of the + manga''s 16th volume not shown in the television series. The movie also features a short compilation of the three-season + anime and new scenes written by the author set after the original story. Mubichike cards with illustrations by Natsuki + Takaya were made available on December 17, 2021. A Blu-ray version was commercialized exclusively at theaters screening + the film, and limited edition items were distributed to the audience on a first-come, first-served basis. The gifts + consisted of an original 16-page manga that established the setting for the new scenes as well as excerpts from the + movie. Another Blu-ray was released on June 24, 2022, including a bonus eight-page manga booklet. Only in the first + two days after its premiere, Fruits Basket: Prelude grossed a total of 33 million yen. Moreover, supplementary theaters + held additional screenings to accommodate the greater turnout of viewers.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 100 + type: anime + name: TV Osaka + url: https://myanimelist.net/anime/producer/100/TV_Osaka + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2495 + type: anime + name: 8PAN + url: https://myanimelist.net/anime/producer/2495/8PAN + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 49738 + url: https://myanimelist.net/anime/49738/Heike_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1282/119979.jpg + small_image_url: https://myanimelist.net/images/anime/1282/119979t.jpg + large_image_url: https://myanimelist.net/images/anime/1282/119979l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1282/119979.webp + small_image_url: https://myanimelist.net/images/anime/1282/119979t.webp + large_image_url: https://myanimelist.net/images/anime/1282/119979l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/n27irsU7x6c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Heike Monogatari + - type: Japanese + title: 平家物語 + - type: English + title: The Heike Story + title: Heike Monogatari + title_english: The Heike Story + title_japanese: 平家物語 + title_synonyms: [] + type: TV + source: Book + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2022-01-13T00:00:00+00:00' + to: '2022-03-24T00:00:00+00:00' + prop: + from: + day: 13 + month: 1 + year: 2022 + to: + day: 24 + month: 3 + year: 2022 + string: Jan 13, 2022 to Mar 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 29420 + rank: 1077 + popularity: 2495 + members: 93880 + favorites: 866 + synopsis: |- + The Taira clan, also known as the Heike, holds immense authority over Japan. When a young girl, gifted with an odd eye that allows her to see the future, foolishly disrespects the clan, her father pays the price of her crime with his life. Soon after, as fate would have it, Taira no Shigemori—the eldest son of the clan leader—stumbles upon the same unfortunate girl, who now calls herself "Biwa." Biwa informs him that the downfall of the Heike is imminent. After learning of the great injustice Biwa suffered at the Heike's hands, Shigemori vows to take her in and care for her rather than let her be killed. + + In an era of rising military tension, the Heike are in the midst of a cunning struggle for power, and bloodstained war is on the horizon. Shigemori, whose eyes allow him to see spirits of the dead, is both anxious and hopeful to prevent his clan's demise. Biwa, however, is reluctant to reveal the future to him and must adapt to her new life filled with both happiness and sorrow in this pivotal chapter in Japanese history. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2022 + broadcast: + day: Thursdays + time: 01:05 + timezone: Asia/Tokyo + string: Thursdays at 01:05 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: [] + - mal_id: 50185 + url: https://myanimelist.net/anime/50185/Rymans_Club + images: + jpg: + image_url: https://myanimelist.net/images/anime/1140/120215.jpg + small_image_url: https://myanimelist.net/images/anime/1140/120215t.jpg + large_image_url: https://myanimelist.net/images/anime/1140/120215l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1140/120215.webp + small_image_url: https://myanimelist.net/images/anime/1140/120215t.webp + large_image_url: https://myanimelist.net/images/anime/1140/120215l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s74Cvn86dEk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ryman's Club + - type: Japanese + title: リーマンズクラブ + - type: English + title: Salaryman's Club + title: Ryman's Club + title_english: Salaryman's Club + title_japanese: リーマンズクラブ + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-01-30T00:00:00+00:00' + to: '2022-04-17T00:00:00+00:00' + prop: + from: + day: 30 + month: 1 + year: 2022 + to: + day: 17 + month: 4 + year: 2022 + string: Jan 30, 2022 to Apr 17, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 32482 + rank: 3011 + popularity: 2602 + members: 87641 + favorites: 539 + synopsis: |- + The world of corporate badminton is not as easy as it seems. Although considered a former child prodigy, Mikoto Shiratori has not been living up to his potential as a badminton player for Mitsuhoshi Bank. Due to a past incident, Mikoto tries to transition from playing doubles to singles; nevertheless, he fails to produce positive results, much to his employer's dismay. + + After being fired from the bank, Mikoto is recruited by the Sunlight Beverage corporate badminton team. Surprisingly, not only do practices start in the evening, but he also has to work in the sales department of the company by day. While this is not a novel arrangement, Mikoto had thought he was invited solely to play sports. To make matters worse, he is forced to compete in doubles despite his reluctance. + + Struggling to adjust to his new professional life, Mikoto begins to doubt his decision to join the company. However, as he learns more about his latest teammates, he might just find the strength necessary to advance his badminton career. + + [Written by MAL Rewrite] + background: Ryman's Club was released on Blu-ray in four volumes from April 27, 2022 to July 27, 2022. + season: winter + year: 2022 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 49893 + url: https://myanimelist.net/anime/49893/Kobayashi-san_Chi_no_Maid_Dragon_S__Nippon_no_Omotenashi_-_Attend_wa_Dragon_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1557/137227.jpg + small_image_url: https://myanimelist.net/images/anime/1557/137227t.jpg + large_image_url: https://myanimelist.net/images/anime/1557/137227l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1557/137227.webp + small_image_url: https://myanimelist.net/images/anime/1557/137227t.webp + large_image_url: https://myanimelist.net/images/anime/1557/137227l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v6AVCg124AM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu' + - type: Synonym + title: Miss Kobayashi's Dragon Maid S Special + - type: Japanese + title: 小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです) + - type: English + title: 'Miss Kobayashi''s Dragon Maid S: Japanese Hospitality (The Attendant is a Dragon)' + title: 'Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu' + title_english: 'Miss Kobayashi''s Dragon Maid S: Japanese Hospitality (The Attendant is a Dragon)' + title_japanese: 小林さんちのメイドラゴンS ニッポンのおもてなし(アテンドはドラゴンです) + title_synonyms: + - Miss Kobayashi's Dragon Maid S Special + type: Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-01-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 1 + year: 2022 + to: + day: null + month: null + year: null + string: Jan 19, 2022 + duration: 23 min + rating: PG-13 - Teens 13 or older + score: 7.78 + scored_by: 35784 + rank: 1239 + popularity: 2689 + members: 83566 + favorites: 293 + synopsis: |- + After Kanna Kamui's escapade to New York leads her to make a new friend named Chloe, Kanna invites her to Japan to go sightseeing. Following their reunion at the airport, Kanna—accompanied by Kobayashi, Tooru, and other friends—takes Chloe around the attractions of Japan, starting with Akihabara. Expertly guided by Tooru, the group enjoys exploring the city before returning home to meet with Saikawa and continue their adventures. + + As Chloe's final day in Japan draws near, Kobayashi helps set up a farewell party so everyone can enjoy one last event together before Chloe returns to the United States. + + [Written by MAL Rewrite] + background: 'Kobayashi-san Chi no Maid Dragon S: Nippon no Omotenashi - Attend wa Dragon desu is an unaired episode + included with the fifth Blu-ray/DVD volume of Kobayashi-san Chi no Maid Dragon S.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1840 + type: anime + name: Bandai Namco Arts + url: https://myanimelist.net/anime/producer/1840/Bandai_Namco_Arts + licensors: [] + studios: + - mal_id: 2 + type: anime + name: Kyoto Animation + url: https://myanimelist.net/anime/producer/2/Kyoto_Animation + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/50-2022-spring.yaml b/test/fixtures/jikan/season_matrix/50-2022-spring.yaml new file mode 100644 index 0000000..cd7ce9f --- /dev/null +++ b/test/fixtures/jikan/season_matrix/50-2022-spring.yaml @@ -0,0 +1,3451 @@ +metadata: + captured_at: '2026-05-11T11:34:37Z' + label: 2022-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2022/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:37 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:be11ba775c8d8c9c563dda9bbfd982bb1083520d + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 295 + per_page: 25 + data: + - mal_id: 50265 + url: https://myanimelist.net/anime/50265/Spy_x_Family + images: + jpg: + image_url: https://myanimelist.net/images/anime/1441/122795.jpg + small_image_url: https://myanimelist.net/images/anime/1441/122795t.jpg + large_image_url: https://myanimelist.net/images/anime/1441/122795l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1441/122795.webp + small_image_url: https://myanimelist.net/images/anime/1441/122795t.webp + large_image_url: https://myanimelist.net/images/anime/1441/122795l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ofXigq9aIpo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Spy x Family + - type: Japanese + title: SPY×FAMILY + title: Spy x Family + title_english: null + title_japanese: SPY×FAMILY + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-09T00:00:00+00:00' + to: '2022-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2022 + to: + day: 25 + month: 6 + year: 2022 + string: Apr 9, 2022 to Jun 25, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.42 + scored_by: 1164021 + rank: 216 + popularity: 56 + members: 1891301 + favorites: 41312 + synopsis: "Corrupt politicians, frenzied nationalists, and other warmongering forces constantly jeopardize the thin\ + \ veneer of peace between neighboring countries Ostania and Westalis. In spite of their plots, renowned spy and master\ + \ of disguise \"Twilight\" fulfills dangerous missions one after another in the hope that no child will have to experience\ + \ the horrors of war.\n\nIn the bustling Ostanian city of Berlint, Twilight dons the alias of \"Loid Forger,\" an\ + \ esteemed psychiatrist. However, his true intention is to gather intelligence on prominent politician Donovan Desmond,\ + \ who only appears rarely in public at his sons' school: the prestigious Eden Academy. Enlisting the help of unmarried\ + \ city hall clerk Yor Briar to act as his wife and adopting the curious six-year-old orphan Anya as his daughter,\ + \ Loid enacts his master plan. He will enroll Anya in Eden Academy, where Loid hopes she will excel and give him the\ + \ opportunity to meet Donovan without arousing suspicion. \n\nUnfortunately for Loid, even a man of his talents has\ + \ trouble playing the figure of a loving father and husband. And just like Loid is hiding his true identity, Yor—who\ + \ is an underground assassin known as \"Thorn Princess\"—and Anya—an esper who can read people's minds—have no plans\ + \ to disclose their own secrets either. Although this picture-perfect family is founded on deception, the Forgers\ + \ gradually come to understand that the love they share for one another trumps all else.\n\n[Written by MAL Rewrite]" + background: Winner of the Anime of the Year (TV Series) at the 2023 Tokyo Anime Award Festival (TAAF). + season: spring + year: 2022 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 43608 + url: https://myanimelist.net/anime/43608/Kaguya-sama_wa_Kokurasetai__Ultra_Romantic + images: + jpg: + image_url: https://myanimelist.net/images/anime/1160/122627.jpg + small_image_url: https://myanimelist.net/images/anime/1160/122627t.jpg + large_image_url: https://myanimelist.net/images/anime/1160/122627l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1160/122627.webp + small_image_url: https://myanimelist.net/images/anime/1160/122627t.webp + large_image_url: https://myanimelist.net/images/anime/1160/122627l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/b4tGGzQve3M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kaguya-sama wa Kokurasetai: Ultra Romantic' + - type: Synonym + title: 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season' + - type: Synonym + title: 'Kaguya-sama: Love is War Season 3rd Season' + - type: Japanese + title: かぐや様は告らせたい-ウルトラロマンティック- + - type: English + title: 'Kaguya-sama: Love is War -Ultra Romantic-' + title: 'Kaguya-sama wa Kokurasetai: Ultra Romantic' + title_english: 'Kaguya-sama: Love is War -Ultra Romantic-' + title_japanese: かぐや様は告らせたい-ウルトラロマンティック- + title_synonyms: + - 'Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3rd Season' + - 'Kaguya-sama: Love is War Season 3rd Season' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-04-09T00:00:00+00:00' + to: '2022-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2022 + to: + day: 25 + month: 6 + year: 2022 + string: Apr 9, 2022 to Jun 25, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.95 + scored_by: 636051 + rank: 16 + popularity: 164 + members: 1112068 + favorites: 33208 + synopsis: |- + The elite members of Shuchiin Academy's student council continue their competitive day-to-day antics. Council president Miyuki Shirogane clashes daily against vice-president Kaguya Shinomiya, each fighting tooth and nail to trick the other into confessing their romantic love. Kaguya struggles within the strict confines of her wealthy, uptight family, rebelling against her cold default demeanor as she warms to Shirogane and the rest of her friends. + + Meanwhile, council treasurer Yuu Ishigami suffers under the weight of his hopeless crush on Tsubame Koyasu, a popular upperclassman who helps to instill a new confidence in him. Miko Iino, the newest student council member, grows closer to the rule-breaking Ishigami while striving to overcome her own authoritarian moral code. + + As love further blooms at Shuchiin Academy, the student council officers drag their outsider friends into increasingly comedic conflicts. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 40356 + url: https://myanimelist.net/anime/40356/Tate_no_Yuusha_no_Nariagari_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1143/121873.jpg + small_image_url: https://myanimelist.net/images/anime/1143/121873t.jpg + large_image_url: https://myanimelist.net/images/anime/1143/121873l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1143/121873.webp + small_image_url: https://myanimelist.net/images/anime/1143/121873t.webp + large_image_url: https://myanimelist.net/images/anime/1143/121873l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TA4OjH-RSeA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tate no Yuusha no Nariagari Season 2 + - type: Synonym + title: Tate no Yuusha no Nariagari 2nd Season + - type: Japanese + title: 盾の勇者の成り上がり Season2 + - type: English + title: The Rising of the Shield Hero Season 2 + title: Tate no Yuusha no Nariagari Season 2 + title_english: The Rising of the Shield Hero Season 2 + title_japanese: 盾の勇者の成り上がり Season2 + title_synonyms: + - Tate no Yuusha no Nariagari 2nd Season + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-04-06T00:00:00+00:00' + to: '2022-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2022 + to: + day: 29 + month: 6 + year: 2022 + string: Apr 6, 2022 to Jun 29, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.53 + scored_by: 333428 + rank: 8011 + popularity: 247 + members: 867524 + favorites: 12328 + synopsis: |- + With another Wave happening in a week, Naofumi Iwatani and his party have no time to waste. However, when bat familiars raid Lurolona Village and the Wave countdown comes to a halt, the Four Cardinal Heroes reconvene with the queen, Mirelia Q Melromarc, for a quick briefing. The queen presumes that the odd occurrences are linked to the Spirit Tortoise—a threatening creature that has awakened from its slumber, back to cause havoc once again. A plan to put the Spirit Tortoise to rest is devised—but out of the four men, only the cursed Shield Hero agrees to help. + + [Written by MAL Rewrite] + background: Tate no Yuusha no Nariagari Season 2 was set to premiere in October 2021, but was postponed due to various + reasons. The series was released on Blu-ray and DVD in three volumes from July 27, 2022 to September 28, 2022. + season: spring + year: 2022 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + - mal_id: 1575 + type: anime + name: DR Movie + url: https://myanimelist.net/anime/producer/1575/DR_Movie + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 47194 + url: https://myanimelist.net/anime/47194/Summertime_Render + images: + jpg: + image_url: https://myanimelist.net/images/anime/1120/120796.jpg + small_image_url: https://myanimelist.net/images/anime/1120/120796t.jpg + large_image_url: https://myanimelist.net/images/anime/1120/120796l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1120/120796.webp + small_image_url: https://myanimelist.net/images/anime/1120/120796t.webp + large_image_url: https://myanimelist.net/images/anime/1120/120796l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wtjP_PzzhTU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Summertime Render + - type: Japanese + title: サマータイムレンダ + - type: English + title: Summer Time Rendering + title: Summertime Render + title_english: Summer Time Rendering + title_japanese: サマータイムレンダ + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2022-04-15T00:00:00+00:00' + to: '2022-09-30T00:00:00+00:00' + prop: + from: + day: 15 + month: 4 + year: 2022 + to: + day: 30 + month: 9 + year: 2022 + string: Apr 15, 2022 to Sep 30, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.47 + scored_by: 291468 + rank: 181 + popularity: 359 + members: 678272 + favorites: 11442 + synopsis: |- + Since the death of his parents, Shinpei Ajiro had lived with the Kofune family and their two daughters—Mio and Ushio. Although he then left his home island to continue his education in Tokyo, Shinpei returns after Ushio tragically drowns during the attempted rescue of a little girl. During the funeral, his best friend informs him about bruises found around Ushio's neck, casting doubt over the cause of her death. + + Suspecting a murder has taken place, Shinpei reevaluates recent events, but strange incidents only continue to transpire. Disappearing people and other unexplainable occurrences lead Mio to recall an old folktale referring to entities called "Shadows," which may not be entirely fantasy. Supposedly, an encounter with one's Shadow foretells the person's impending demise. + + Facing the dark side of Hitogashima Island, Shinpei stands against his grim fate to fulfill Ushio's final will—to protect Mio. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 45613 + url: https://myanimelist.net/anime/45613/Kawaii_dake_ja_Nai_Shikimori-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1995/121695.jpg + small_image_url: https://myanimelist.net/images/anime/1995/121695t.jpg + large_image_url: https://myanimelist.net/images/anime/1995/121695l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1995/121695.webp + small_image_url: https://myanimelist.net/images/anime/1995/121695t.webp + large_image_url: https://myanimelist.net/images/anime/1995/121695l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IRxdEcemmsE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kawaii dake ja Nai Shikimori-san + - type: Synonym + title: Shikimori's Not Just a Cutie + - type: Synonym + title: Miss Shikimori is not just cute + - type: Synonym + title: That Girl Is Not Just Cute + - type: Japanese + title: 可愛いだけじゃない式守さん + - type: English + title: Shikimori's Not Just a Cutie + title: Kawaii dake ja Nai Shikimori-san + title_english: Shikimori's Not Just a Cutie + title_japanese: 可愛いだけじゃない式守さん + title_synonyms: + - Shikimori's Not Just a Cutie + - Miss Shikimori is not just cute + - That Girl Is Not Just Cute + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-10T00:00:00+00:00' + to: '2022-07-10T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2022 + to: + day: 10 + month: 7 + year: 2022 + string: Apr 10, 2022 to Jul 10, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.94 + scored_by: 276718 + rank: 5462 + popularity: 396 + members: 629684 + favorites: 5325 + synopsis: |- + Yuu Izumi leads a high school life filled with one mishap after another. No matter how improbable the situation, unfortunate events strike him at every turn. In possession of such terrible luck, Izumi enters his second year with a single wish in mind—to spend more time with his affectionate girlfriend, Micchon Shikimori. + + Cute, athletic, and caring, Shikimori is immensely popular at their school. But since they began dating a year ago, Izumi has witnessed a surprising side to his otherwise adorable girlfriend: when the need arises, she turns incredibly cool! His misfortunes are easily avoided when she is there to protect him with an awe-inspiring look on her face. Charming in every way, she never ceases to make his heart skip a beat. Unfortunate as he may be, Izumi is sure to see his days of bad luck end thanks to the cute yet cool Shikimori. + + [Written by MAL Rewrite] + background: Due to the airing of urgent special news bulletins regarding the Hunga Tonga-Hunga Ha'apai volcano eruption + on January 15, 2022, the previous series that was occupying the same time slot required a scheduling adjustment. Thus, + Kawaii dake ja Nai Shikimori-san's own TV broadcast premiere was delayed by one week from April 2, 2022 to April 9, + 2022. The series was released on Blu-ray and DVD in six volumes from June 29, 2022 to November 30, 2022. + season: spring + year: 2022 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50631 + url: https://myanimelist.net/anime/50631/Komi-san_wa_Comyushou_desu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1108/121157.jpg + small_image_url: https://myanimelist.net/images/anime/1108/121157t.jpg + large_image_url: https://myanimelist.net/images/anime/1108/121157l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1108/121157.webp + small_image_url: https://myanimelist.net/images/anime/1108/121157t.webp + large_image_url: https://myanimelist.net/images/anime/1108/121157l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NcoQssquPhE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Komi-san wa, Comyushou desu. 2nd Season + - type: Synonym + title: Komi-san wa + - type: Synonym + title: Communication Shougai desu. 2 + - type: Japanese + title: 古見さんは、コミュ症です。 2 + - type: English + title: Komi Can't Communicate Season 2 + title: Komi-san wa, Comyushou desu. 2nd Season + title_english: Komi Can't Communicate Season 2 + title_japanese: 古見さんは、コミュ症です。 2 + title_synonyms: + - Komi-san wa + - Communication Shougai desu. 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-07T00:00:00+00:00' + to: '2022-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2022 + to: + day: 23 + month: 6 + year: 2022 + string: Apr 7, 2022 to Jun 23, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.97 + scored_by: 282661 + rank: 808 + popularity: 451 + members: 558149 + favorites: 4004 + synopsis: |- + After an exciting and momentous cultural festival, Shouko Komi continues her endeavor to make one hundred friends alongside her friend and classmate Hitohito Tadano. As winter begins, the class is joined by the seemingly delinquent student Makoto Katai, who has been absent since the first week of school. Despite his intimidating appearance, Katai has difficulty communicating with others and just wants to befriend his classmates. + + As new friendships form and current ones deepen, Komi and Tadano’s relationship begins to change—though not necessarily for the worse. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50273 + url: https://myanimelist.net/anime/50273/Tomodachi_Game + images: + jpg: + image_url: https://myanimelist.net/images/anime/1247/121345.jpg + small_image_url: https://myanimelist.net/images/anime/1247/121345t.jpg + large_image_url: https://myanimelist.net/images/anime/1247/121345l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1247/121345.webp + small_image_url: https://myanimelist.net/images/anime/1247/121345t.webp + large_image_url: https://myanimelist.net/images/anime/1247/121345l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eP2FlJtfwL8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tomodachi Game + - type: Synonym + title: Friends Game + - type: Japanese + title: トモダチゲーム + - type: English + title: Tomodachi Game + title: Tomodachi Game + title_english: Tomodachi Game + title_japanese: トモダチゲーム + title_synonyms: + - Friends Game + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-06T00:00:00+00:00' + to: '2022-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2022 + to: + day: 22 + month: 6 + year: 2022 + string: Apr 6, 2022 to Jun 22, 2022 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.7 + scored_by: 258771 + rank: 1473 + popularity: 528 + members: 494188 + favorites: 4467 + synopsis: |- + High school student Yuuichi Katagiri cherishes his close circle of friends, composed of four classmates: Yutori Kokorogi, Shiho Sawaragi, Makoto Shibe, and Tenji Mikasa. However, when the funds for the upcoming school trip are stolen, the incident causes Shiho and Makoto—who had been tasked with collecting the money—to distance themselves from the rest of their class. + + Soon after, Yuuichi and his friends are deceived into meeting up and knocked unconscious by unknown assailants. After waking, the group find themselves confined in a white room with controversial figure Manabu-kun, who reveals that one of the five has gathered them together to clear their personal debt of twenty million yen. To pay off the amount, they must participate in a variety of psychological games that will test the true nature of their friendship and humanity. + + Distressed and isolated from the outside world, Yuuichi and his friends need to cooperate to complete the games. But as their concealed feelings and problematic pasts begin to surface, their seemingly unbreakable bond may soon shatter into irreparable pieces. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Wednesdays + time: 01:29 + timezone: Asia/Tokyo + string: Wednesdays at 01:29 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2037 + type: anime + name: Okuruto Noboru + url: https://myanimelist.net/anime/producer/2037/Okuruto_Noboru + genres: + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 59 + type: anime + name: High Stakes Game + url: https://myanimelist.net/anime/genre/59/High_Stakes_Game + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49520 + url: https://myanimelist.net/anime/49520/Aharen-san_wa_Hakarenai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1612/120636.jpg + small_image_url: https://myanimelist.net/images/anime/1612/120636t.jpg + large_image_url: https://myanimelist.net/images/anime/1612/120636l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1612/120636.webp + small_image_url: https://myanimelist.net/images/anime/1612/120636t.webp + large_image_url: https://myanimelist.net/images/anime/1612/120636l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F7bGTibgcjM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aharen-san wa Hakarenai + - type: Synonym + title: Aharen Is Indecipherable + - type: Japanese + title: 阿波連さんははかれない + - type: English + title: Aharen-san wa Hakarenai + title: Aharen-san wa Hakarenai + title_english: Aharen-san wa Hakarenai + title_japanese: 阿波連さんははかれない + title_synonyms: + - Aharen Is Indecipherable + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-02T00:00:00+00:00' + to: '2022-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2022 + to: + day: 18 + month: 6 + year: 2022 + string: Apr 2, 2022 to Jun 18, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.27 + scored_by: 171588 + rank: 3453 + popularity: 687 + members: 394759 + favorites: 2383 + synopsis: |- + Beginning his first year of high school, all Raidou wants is to make friends—starting with the cute, tiny, and soft-spoken Reina Aharen, who sits right next to him in class. Unbeknownst to Raidou, Reina shares the same sentiment, but she has a problem. Awkward and timid, Reina is incapable of determining how chummy she has to be when approaching a person. + + Due to Reina's complete inability to gauge personal space, the two struggle to spark their unlikely friendship, as even the simplest tasks like talking seem impossible for them. But despite the countless yet pointless challenges that hinder the pair, the overly imaginative Raidou will do whatever it takes to befriend the indecipherable Reina. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Saturdays + time: 02:25 + timezone: Asia/Tokyo + string: Saturdays at 02:25 (JST) + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50461 + url: https://myanimelist.net/anime/50461/Otome_Game_Sekai_wa_Mob_ni_Kibishii_Sekai_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1161/121462.jpg + small_image_url: https://myanimelist.net/images/anime/1161/121462t.jpg + large_image_url: https://myanimelist.net/images/anime/1161/121462l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1161/121462.webp + small_image_url: https://myanimelist.net/images/anime/1161/121462t.webp + large_image_url: https://myanimelist.net/images/anime/1161/121462l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8G9dunL-zPI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otome Game Sekai wa Mob ni Kibishii Sekai desu + - type: Synonym + title: Otomege Sekai wa Mob ni Kibishii Sekai desu + - type: Synonym + title: Mobseka + - type: Synonym + title: Mobuseka + - type: Japanese + title: 乙女ゲー世界はモブに厳しい世界です + - type: English + title: 'Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs' + title: Otome Game Sekai wa Mob ni Kibishii Sekai desu + title_english: 'Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs' + title_japanese: 乙女ゲー世界はモブに厳しい世界です + title_synonyms: + - Otomege Sekai wa Mob ni Kibishii Sekai desu + - Mobseka + - Mobuseka + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-03T00:00:00+00:00' + to: '2022-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2022 + to: + day: 19 + month: 6 + year: 2022 + string: Apr 3, 2022 to Jun 19, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 200288 + rank: 3184 + popularity: 709 + members: 384681 + favorites: 2427 + synopsis: |- + Blackmailed into playing a dating simulator set in a matriarchy, an ordinary man must put up with the unbearable and convoluted world until he clears the game. After countless days of grinding, he finally manages to beat it, but his hardcore gaming comes at a cost: extreme sleep deprivation and hunger. + + While heading out to the convenience store to solve one of these problems, the man tumbles down the stairs and falls unconscious, only to wake up to the worst possible realization—he has been reincarnated into the game as the mob character Leon Fou Bartfort. Now trapped in a world he despises, Leon must use his knowledge of the game to navigate through the plot safely and sustain himself in a society where the odds are heavily stacked against him. + + [Written by MAL Rewrite] + background: Otome Game Sekai wa Mob ni Kibishii Sekai desu was released on Blu-ray in two volumes from July 27, 2022 + to September 28, 2022. + season: spring + year: 2022 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2440 + type: anime + name: Micro House + url: https://myanimelist.net/anime/producer/2440/Micro_House + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 48760 + url: https://myanimelist.net/anime/48760/Gaikotsu_Kishi-sama_Tadaima_Isekai_e_Odekakechuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1361/120706.jpg + small_image_url: https://myanimelist.net/images/anime/1361/120706t.jpg + large_image_url: https://myanimelist.net/images/anime/1361/120706l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1361/120706.webp + small_image_url: https://myanimelist.net/images/anime/1361/120706t.webp + large_image_url: https://myanimelist.net/images/anime/1361/120706l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3UF9HKF-Zmc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu + - type: Synonym + title: Skeleton Knight going out to the parallel universe + - type: Japanese + title: 骸骨騎士様、只今異世界へお出掛け中 + - type: English + title: Skeleton Knight in Another World + title: Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu + title_english: Skeleton Knight in Another World + title_japanese: 骸骨騎士様、只今異世界へお出掛け中 + title_synonyms: + - Skeleton Knight going out to the parallel universe + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-07T00:00:00+00:00' + to: '2022-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2022 + to: + day: 23 + month: 6 + year: 2022 + string: Apr 7, 2022 to Jun 23, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.13 + scored_by: 190164 + rank: 4385 + popularity: 729 + members: 375526 + favorites: 1843 + synopsis: |- + After falling asleep while playing an online game, a man wakes up and finds himself transported to that game's world as his in-game character, Arc. He wastes no time adjusting to his new environment, but soon realizes that he is using the skeleton avatar he chose when creating his character, which forces him to hide his visage to avoid unwanted attention. + + Arc goes to the nearby castle town of Luvierte, hoping to become an adventurer and take on quests to earn money. With his overpowered abilities, Arc embarks on a fantastical journey—exploring diverse territories, looting various monsters, and helping people get out of sticky situations. However, his seemingly innocuous actions may soon involve him in a brewing large-scale conflict that will forever alter the fate of the realm. + + [Written by MAL Rewrite] + background: Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu was released on Blu-ray in a special box collection on + July 27, 2022. + season: spring + year: 2022 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 1997 + type: anime + name: Studio KAI + url: https://myanimelist.net/anime/producer/1997/Studio_KAI + - mal_id: 2097 + type: anime + name: HORNETS + url: https://myanimelist.net/anime/producer/2097/HORNETS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 50175 + url: https://myanimelist.net/anime/50175/Yuusha_Yamemasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1934/122301.jpg + small_image_url: https://myanimelist.net/images/anime/1934/122301t.jpg + large_image_url: https://myanimelist.net/images/anime/1934/122301l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1934/122301.webp + small_image_url: https://myanimelist.net/images/anime/1934/122301t.webp + large_image_url: https://myanimelist.net/images/anime/1934/122301l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EKbHu7DNmak?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuusha, Yamemasu + - type: Synonym + title: Yuuyame + - type: Japanese + title: 勇者、辞めます + - type: English + title: I'm Quitting Heroing + title: Yuusha, Yamemasu + title_english: I'm Quitting Heroing + title_japanese: 勇者、辞めます + title_synonyms: + - Yuuyame + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-05T00:00:00+00:00' + to: '2022-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2022 + to: + day: 21 + month: 6 + year: 2022 + string: Apr 5, 2022 to Jun 21, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7 + scored_by: 167204 + rank: 5162 + popularity: 769 + members: 356208 + favorites: 1758 + synopsis: |- + When Demon Queen Echidna begins her invasion of the human realm, the people turn to the hero Leo Demonheart to protect them. Blessed with insurmountable power, Leo easily repels Echidna's army, thereby saving the world. But instead of gratitude or admiration, Leo is met with disdain and scorn from his fellow humans, who fear his overwhelming strength and believe that it may eventually cause humanity's demise. + + Banished from the kingdom he once called home, Leo wanders aimlessly throughout the land until, one day, he hears rumors of Echidna's efforts to rebuild her army. Hoping that demonkind might accept him as an ally, he returns to the demon queen's castle and offers Echidna his help. + + Naturally, Echidna immediately rejects him. Still, not all hope is lost, as Leo manages to convince Echidna's four generals to let him secretly work under their supervision. Donning the identity of a masked dark knight named Onyx, Leo solves the demon army's problems one by one—gradually improving the quality of life around the castle. Above all else, however, Leo wants to accomplish one goal: to learn why Echidna started the war in the first place. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1880 + type: anime + name: Tencent Games + url: https://myanimelist.net/anime/producer/1880/Tencent_Games + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 48415 + url: https://myanimelist.net/anime/48415/Shijou_Saikyou_no_Daimaou_Murabito_A_ni_Tensei_suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1904/120095.jpg + small_image_url: https://myanimelist.net/images/anime/1904/120095t.jpg + large_image_url: https://myanimelist.net/images/anime/1904/120095l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1904/120095.webp + small_image_url: https://myanimelist.net/images/anime/1904/120095t.webp + large_image_url: https://myanimelist.net/images/anime/1904/120095l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TOwNtlB6Ly0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shijou Saikyou no Daimaou, Murabito A ni Tensei suru + - type: Synonym + title: The Greatest Maou is Reborned to Get Friends + - type: Japanese + title: 史上最強の大魔王、村人Aに転生する + - type: English + title: The Greatest Demon Lord Is Reborn as a Typical Nobody + title: Shijou Saikyou no Daimaou, Murabito A ni Tensei suru + title_english: The Greatest Demon Lord Is Reborn as a Typical Nobody + title_japanese: 史上最強の大魔王、村人Aに転生する + title_synonyms: + - The Greatest Maou is Reborned to Get Friends + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-06T00:00:00+00:00' + to: '2022-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2022 + to: + day: 22 + month: 6 + year: 2022 + string: Apr 6, 2022 to Jun 22, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.29 + scored_by: 159765 + rank: 9443 + popularity: 814 + members: 341953 + favorites: 1542 + synopsis: |- + Having reached the pinnacle of human potential, Varvatos was so powerful that the rest of humankind began calling him the Demon Lord, both fearing and respecting his overwhelming influence. As a result, he felt alienated from his fellow humans, leading him to desire true companionship—an equal he could call a friend. + + Hoping his fate will change in his next life, Varvatos decides to start anew and reincarnates three thousand years later as Ard Meteor, the son of a seemingly ordinary couple in a rural town. Unfortunately, he realizes that even after weakening himself, his strength still overshadows everyone in this era. Moreover, his lack of social skills bars him from achieving his goal of making friends. But worst of all, the repercussions of suddenly abandoning his former position have begun to bite him back in some of the most unimaginable ways possible. + + [Written by MAL Rewrite] + background: Shijou Saikyou no Daimaou, Murabito A ni Tensei suru was released on Blu-ray and DVD in three volumes from + June 24, 2022 to August 24, 2022. + season: spring + year: 2022 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2072 + type: anime + name: Simplicity + url: https://myanimelist.net/anime/producer/2072/Simplicity + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 1547 + type: anime + name: Blade + url: https://myanimelist.net/anime/producer/1547/Blade + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 48675 + url: https://myanimelist.net/anime/48675/Kakkou_no_Iinazuke + images: + jpg: + image_url: https://myanimelist.net/images/anime/1285/120529.jpg + small_image_url: https://myanimelist.net/images/anime/1285/120529t.jpg + large_image_url: https://myanimelist.net/images/anime/1285/120529l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1285/120529.webp + small_image_url: https://myanimelist.net/images/anime/1285/120529t.webp + large_image_url: https://myanimelist.net/images/anime/1285/120529l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fRtIES1Qb0Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kakkou no Iinazuke + - type: Synonym + title: Cuckoo's Fiancee + - type: Japanese + title: カッコウの許嫁 + - type: English + title: A Couple of Cuckoos + title: Kakkou no Iinazuke + title_english: A Couple of Cuckoos + title_japanese: カッコウの許嫁 + title_synonyms: + - Cuckoo's Fiancee + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2022-04-24T00:00:00+00:00' + to: '2022-10-02T00:00:00+00:00' + prop: + from: + day: 24 + month: 4 + year: 2022 + to: + day: 2 + month: 10 + year: 2022 + string: Apr 24, 2022 to Oct 2, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.85 + scored_by: 135480 + rank: 5982 + popularity: 815 + members: 341026 + favorites: 2358 + synopsis: |- + Nagi Umino and Erika Amano, a studious high school student and a social media star, had nothing that linked them together—until they found out they were swapped at birth. When the sudden news is revealed to both of their families, their parents quickly devise a proposition with neither Nagi's nor Erika's knowledge: in order to restore them both to their rightful families and ensure everyone's happiness, the two should get engaged. + + When informed of this, Nagi and Erika are quick to reject the absurd plan, refusing to go along with their parents' wishes. But, with neither party willing to back down, only time can tell where their relationship will go. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50380 + url: https://myanimelist.net/anime/50380/Paripi_Koumei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1970/122297.jpg + small_image_url: https://myanimelist.net/images/anime/1970/122297t.jpg + large_image_url: https://myanimelist.net/images/anime/1970/122297l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1970/122297.webp + small_image_url: https://myanimelist.net/images/anime/1970/122297t.webp + large_image_url: https://myanimelist.net/images/anime/1970/122297l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XQo6NiY9nJo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Paripi Koumei + - type: Synonym + title: Party People Koumei + - type: Japanese + title: パリピ孔明 + - type: English + title: Ya Boy Kongming! + title: Paripi Koumei + title_english: Ya Boy Kongming! + title_japanese: パリピ孔明 + title_synonyms: + - Party People Koumei + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-05T00:00:00+00:00' + to: '2022-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2022 + to: + day: 21 + month: 6 + year: 2022 + string: Apr 5, 2022 to Jun 21, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.09 + scored_by: 160162 + rank: 617 + popularity: 852 + members: 330487 + favorites: 2615 + synopsis: |- + Zhuge Kongming earned a reputation as one of the greatest tacticians of the Three Kingdoms period of third-century China. Having led his army through countless grueling victories, Kongming falls gravely ill during the Battle of Wuzhang Plains. The weariness and regret stemming from the seemingly never-ending war catch up to him, and as he draws his final breath, Kongming wishes that if he were to reincarnate, he would be reborn in a more peaceful era. + + His wish comes true, and Kongming wakes up in modern-day Tokyo with a younger body and his memories intact. Thrust into an unfamiliar world, he finds his way into a nightclub and meets Eiko Tsukimi, an aspiring singer whose performance immediately captivates him. Pitying his confusion, Eiko takes Kongming under her wing and teaches him about the current world, which leads to Kongming's interest in contemporary music. Seeing Eiko's immense musical potential, Kongming vows to make the world recognize her and soon takes on the role of her manager. + + Unsurprisingly, the music industry is unforgiving to those who make even the slightest mistakes. Still, Kongming is determined to accomplish his goals—even if he must utilize the war stratagems he famously used in his previous life! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: [] + - mal_id: 48548 + url: https://myanimelist.net/anime/48548/5-toubun_no_Hanayome_Movie + images: + jpg: + image_url: https://myanimelist.net/images/anime/1037/122516.jpg + small_image_url: https://myanimelist.net/images/anime/1037/122516t.jpg + large_image_url: https://myanimelist.net/images/anime/1037/122516l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1037/122516.webp + small_image_url: https://myanimelist.net/images/anime/1037/122516t.webp + large_image_url: https://myanimelist.net/images/anime/1037/122516l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GTjfXPANIXY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 5-toubun no Hanayome Movie + - type: Synonym + title: Gotoubun no Hanayome + - type: Synonym + title: The Five Wedded Brides + - type: Synonym + title: The Quintessential Quintuplets + - type: Japanese + title: 映画 五等分の花嫁 + - type: English + title: The Quintessential Quintuplets Movie + title: 5-toubun no Hanayome Movie + title_english: The Quintessential Quintuplets Movie + title_japanese: 映画 五等分の花嫁 + title_synonyms: + - Gotoubun no Hanayome + - The Five Wedded Brides + - The Quintessential Quintuplets + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-05-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 5 + year: 2022 + to: + day: null + month: null + year: null + string: May 20, 2022 + duration: 2 hr 16 min + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 168282 + rank: 1117 + popularity: 879 + members: 320868 + favorites: 3448 + synopsis: |- + Fuutarou Uesugi's efforts as the Nakano quintuplets' private tutor are finally paying off. The academic performances of the five sisters are steadily improving, and they are each closer than ever to achieving their respective dreams. However, it appears that Fuutarou has become more than a teacher for the girls, who urge him to sort out his feelings. + + The undecided young man promises to make a decision by the end of the school festival. However, Fuutarou's task will not be easy, as the Nakano sisters pull out all the stops to win his heart before it is too late. + + [Written by MAL Rewrite] + background: 5-toubun no Hanayome Movie was nominated for Best Picture Award in Theatrical Screenings at the 2022 Newtype + Awards. In the same year, it won the Zenkoren Special Award at the Golden Gross Awards. Moviegoers who saw the film + on its premiere day were gifted volume 14.5 of the manga series, which features a new chapter set after the original + ending. The film was released on Blu-ray and DVD in Japan by Pony Canyon on December 21, 2022. Crunchyroll released + the movie on Blu-ray in North America on January 2, 2024. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1602 + type: anime + name: GYAO! + url: https://myanimelist.net/anime/producer/1602/GYAO + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 41461 + url: https://myanimelist.net/anime/41461/Date_A_Live_IV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1368/121281.jpg + small_image_url: https://myanimelist.net/images/anime/1368/121281t.jpg + large_image_url: https://myanimelist.net/images/anime/1368/121281l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1368/121281.webp + small_image_url: https://myanimelist.net/images/anime/1368/121281t.webp + large_image_url: https://myanimelist.net/images/anime/1368/121281l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-7ICd6g2Gak?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Date A Live IV + - type: Synonym + title: Date A Live 4 + - type: Synonym + title: Date A Live Fourth Season + - type: Synonym + title: DAL 4 + - type: Japanese + title: デート・ア・ライブⅣ + - type: English + title: Date A Live IV + title: Date A Live IV + title_english: Date A Live IV + title_japanese: デート・ア・ライブⅣ + title_synonyms: + - Date A Live 4 + - Date A Live Fourth Season + - DAL 4 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-08T00:00:00+00:00' + to: '2022-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2022 + to: + day: 24 + month: 6 + year: 2022 + string: Apr 8, 2022 to Jun 24, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.74 + scored_by: 107745 + rank: 1328 + popularity: 967 + members: 290636 + favorites: 3424 + synopsis: |- + Despite the numerous challenges he has overcome so far, Shidou Itsuka's mission with Ratatoskr is far from over. In a departure from his daily routine, Shidou encounters a starving woman lying on the street and ends up helping her. After the two arrive at her apartment, the woman introduces herself as Nia Honjou—a popular manga artist working under a pen name. However, cutting straight to the chase, Nia reveals that she is also a Spirit and is aware of Shidou's secret operation. + + Interested in seeing his charisma firsthand, Nia challenges Shidou to win her over on a date. As he strives for an opportunity to seal her powers, Shidou learns more about Nia and her history with Deus Ex Machina Industries, a name he is all too familiar with. + + [Written by MAL Rewrite] + background: Date A Live IV adapts novels 13-16 of Koushi Tachibana's light novel series of the same name. Date A Live + IV was scheduled to premiere in October 2021, but was delayed to 2022 due to various undisclosed circumstances. The + series was released on Blu-ray and DVD in two volumes from August 24, 2022 to September 28, 2022. + season: spring + year: 2022 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 48643 + url: https://myanimelist.net/anime/48643/Koi_wa_Sekai_Seifuku_no_Ato_de + images: + jpg: + image_url: https://myanimelist.net/images/anime/1347/120593.jpg + small_image_url: https://myanimelist.net/images/anime/1347/120593t.jpg + large_image_url: https://myanimelist.net/images/anime/1347/120593l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1347/120593.webp + small_image_url: https://myanimelist.net/images/anime/1347/120593t.webp + large_image_url: https://myanimelist.net/images/anime/1347/120593l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/X0nC507gZw8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koi wa Sekai Seifuku no Ato de + - type: Synonym + title: Koiseka + - type: Japanese + title: 恋は世界征服のあとで + - type: English + title: Love After World Domination + title: Koi wa Sekai Seifuku no Ato de + title_english: Love After World Domination + title_japanese: 恋は世界征服のあとで + title_synonyms: + - Koiseka + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-08T00:00:00+00:00' + to: '2022-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2022 + to: + day: 24 + month: 6 + year: 2022 + string: Apr 8, 2022 to Jun 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 117662 + rank: 2829 + popularity: 1014 + members: 277507 + favorites: 1090 + synopsis: |- + Fudou Aikawa and Desumi Magahara have just started dating, but no one is allowed to know! Nicknamed "Red Gelato," Fudou is the leader of "Gelato 5," a group of heroes dedicated to protecting Japan. On the other hand, the "Reaper Princess" Desumi is one of the combatant leaders of "Gekko," an evil secret society bent on world domination and considered Gelato 5's greatest foe. As they pretend to be mortal enemies, Fudou and Desumi sneak away from battle to spend time together. + + Despite their inexperience with romance, Fudou and Desumi strive to make their relationship work while avoiding suspicion from their comrades. With their loyalties divided between each other and their respective sides, the couple will have to stay on guard if they want to keep their love a secret from the rest of the world. + + [Written by MAL Rewrite] + background: Koi wa Sekai Seifuku no Ato de was released on Blu-ray in two volumes from July 13, 2022 to August 3, 2022. + season: spring + year: 2022 + broadcast: + day: Fridays + time: '21:30' + timezone: Asia/Tokyo + string: Fridays at 21:30 (JST) + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1792 + type: anime + name: Yomiuri Shimbun + url: https://myanimelist.net/anime/producer/1792/Yomiuri_Shimbun + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49052 + url: https://myanimelist.net/anime/49052/Ao_Ashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1731/120871.jpg + small_image_url: https://myanimelist.net/images/anime/1731/120871t.jpg + large_image_url: https://myanimelist.net/images/anime/1731/120871l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1731/120871.webp + small_image_url: https://myanimelist.net/images/anime/1731/120871t.webp + large_image_url: https://myanimelist.net/images/anime/1731/120871l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PQbCVl_CDzI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao Ashi + - type: Japanese + title: アオアシ + - type: English + title: Aoashi + title: Ao Ashi + title_english: Aoashi + title_japanese: アオアシ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2022-04-09T00:00:00+00:00' + to: '2022-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2022 + to: + day: 24 + month: 9 + year: 2022 + string: Apr 9, 2022 to Sep 24, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.15 + scored_by: 131346 + rank: 514 + popularity: 1091 + members: 257673 + favorites: 3470 + synopsis: |- + In a quiet rural town, the spotlight of a local junior high school football team rests on one player: Ashito Aoi. Known for his unpredictable moves and self-centered playing style, Ashito is the sole powerhouse pushing his team through an important high school preliminary tournament. However, their win streak is short-lived—an opponent causes Ashito to lose his temper and act violently, resulting in his removal from the rest of the game. + + Without their star player, the team is quickly eliminated from the tournament. Just as he believes all hope is lost, Ashito is approached by a youth team coach named Tatsuya Fukuda who senses potential in him, and Fukuda invites him for tryouts in Tokyo. In an unfamiliar setting surrounded by talent, Ashito must bring out the best of his ability to prove himself and secure what could be a life-changing career. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Saturdays + time: '18:25' + timezone: Asia/Tokyo + string: Saturdays at 18:25 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 50549 + url: https://myanimelist.net/anime/50549/Bubble + images: + jpg: + image_url: https://myanimelist.net/images/anime/1011/121152.jpg + small_image_url: https://myanimelist.net/images/anime/1011/121152t.jpg + large_image_url: https://myanimelist.net/images/anime/1011/121152l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1011/121152.webp + small_image_url: https://myanimelist.net/images/anime/1011/121152t.webp + large_image_url: https://myanimelist.net/images/anime/1011/121152l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/44eINOdC3MA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bubble + - type: Japanese + title: バブル + - type: English + title: Bubble + title: Bubble + title_english: Bubble + title_japanese: バブル + title_synonyms: [] + type: ONA + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-04-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 4 + year: 2022 + to: + day: null + month: null + year: null + string: Apr 28, 2022 + duration: 1 hr 39 min + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 135370 + rank: 3672 + popularity: 1155 + members: 245808 + favorites: 1615 + synopsis: |- + Five years ago, gravity-defying bubbles with mysterious powers rained down upon the earth. After a huge explosion of uncertain origin, Tokyo became ground zero, with the city being enclosed in a gigantic bubble. As a result of this "Bubble Fall" phenomenon, the metropolis that was once the capital of Japan drowned in a gravity-bending sea; the government declared it a prohibited zone, and the residents abandoned it. + + Children orphaned by the Bubble Fall now squat illegally in Tokyo, partaking in dangerous parkour team battles across the city's dilapidated buildings. Hibiki—a talented ace in these games with the ability to jump between bubbles—claims he can hear sounds from the Tokyo Tower. Determined to uncover its mysteries, he sets off toward the source, but he falls into the waters below. + + A strange girl, whom he later nicknames Uta, saves him. But little does Hibiki know that Uta's appearance in his life will reveal the secrets behind the disastrous event that changed their world forever. + + [Written by MAL Rewrite] + background: Bubble received an early screening at the 72nd Berlin International Film Festival on February 10, 2022. + The film was released worldwide on Netflix on April 28, 2022, and in Japanese theaters on May 13, 2022. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1956 + type: anime + name: STORY + url: https://myanimelist.net/anime/producer/1956/STORY + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 42429 + url: https://myanimelist.net/anime/42429/Honzuki_no_Gekokujou__Shisho_ni_Naru_Tame_ni_wa_Shudan_wo_Erandeiraremasen_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1976/122302.jpg + small_image_url: https://myanimelist.net/images/anime/1976/122302t.jpg + large_image_url: https://myanimelist.net/images/anime/1976/122302l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1976/122302.webp + small_image_url: https://myanimelist.net/images/anime/1976/122302t.webp + large_image_url: https://myanimelist.net/images/anime/1976/122302l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/b21XZo55TNw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season' + - type: Synonym + title: Ascendance of a Bookworm 3rd Season + - type: Japanese + title: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期 + - type: English + title: Ascendance of a Bookworm Season 3 + title: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season' + title_english: Ascendance of a Bookworm Season 3 + title_japanese: 本好きの下剋上 ~司書になるためには手段を選んでいられません~ 第3期 + title_synonyms: + - Ascendance of a Bookworm 3rd Season + type: TV + source: Light novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2022-04-12T00:00:00+00:00' + to: '2022-06-14T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2022 + to: + day: 14 + month: 6 + year: 2022 + string: Apr 12, 2022 to Jun 14, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.07 + scored_by: 97854 + rank: 643 + popularity: 1414 + members: 197690 + favorites: 1015 + synopsis: |- + Winter is approaching, and Myne—now an apprentice priestess—must prepare for her stay at the church and the upcoming Dedication Ceremony. However, due to her immense knowledge and extraordinary amount of mana, she has garnered the attention of many dangerous people, who are willing to do anything to get their hands on Myne. + + To keep her safe, the Head Priest assigns Myne a bodyguard and advises her to be adopted by a noble, a decision that will force her to leave her family behind. As Myne is opposed to the idea, the Head Priest gives her an ultimatum: she can be with her family until she turns 10, but if she is deemed too unstable, she will immediately be dealt with. + + Placed in a tough position, Myne is uncertain about her future. Despite the twists that may lie ahead, she will do whatever she can to protect those that she loves—even if it means giving up on her dream. + + [Written by MAL Rewrite] + background: 'Honzuki no Gekokujou: Shisho ni Naru Tame ni wa Shudan wo Erandeiraremasen 3rd Season was released on Blu-ray + on June 8, 2022, and on DVD from April 20, 2022, to June 8, 2022.' + season: spring + year: 2022 + broadcast: + day: Tuesdays + time: 02:29 + timezone: Asia/Tokyo + string: Tuesdays at 02:29 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 1989 + type: anime + name: JTB Next Creation + url: https://myanimelist.net/anime/producer/1989/JTB_Next_Creation + - mal_id: 2222 + type: anime + name: MediaNet Pictures + url: https://myanimelist.net/anime/producer/2222/MediaNet_Pictures + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 47162 + url: https://myanimelist.net/anime/47162/Shokei_Shoujo_no_Virgin_Road + images: + jpg: + image_url: https://myanimelist.net/images/anime/1423/122029.jpg + small_image_url: https://myanimelist.net/images/anime/1423/122029t.jpg + large_image_url: https://myanimelist.net/images/anime/1423/122029l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1423/122029.webp + small_image_url: https://myanimelist.net/images/anime/1423/122029t.webp + large_image_url: https://myanimelist.net/images/anime/1423/122029l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Vb54ps6oDUE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shokei Shoujo no Virgin Road + - type: Synonym + title: Shokei Shoujo no Ikiru Michi + - type: Japanese + title: 処刑少女の生きる道〈バージンロード〉 + - type: English + title: The Executioner and Her Way of Life + title: Shokei Shoujo no Virgin Road + title_english: The Executioner and Her Way of Life + title_japanese: 処刑少女の生きる道〈バージンロード〉 + title_synonyms: + - Shokei Shoujo no Ikiru Michi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-02T00:00:00+00:00' + to: '2022-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2022 + to: + day: 18 + month: 6 + year: 2022 + string: Apr 2, 2022 to Jun 18, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.78 + scored_by: 65865 + rank: 6430 + popularity: 1448 + members: 191279 + favorites: 785 + synopsis: |- + Average student Mitsuki Mutou suddenly finds himself transported to another realm. Summoned by the king of this world for the remarkable power he is supposed to possess, Mitsuki is thrown out when it appears that he lacks a Special Concept. Moping about, he encounters a priestess named Menou who explains that Japanese people like him are known as Lost Ones, and such individuals never fail to have Special Concepts. + + Menou elaborates that she is part of a church that helps abandoned Lost Ones integrate into society. She invites him to spend the night at her church, where the two can probe the nature of his ability. Eventually, they discover that Mitsuki's Special Concept is actually incredibly powerful and dangerous. + + But is Menou's true goal to assist Lost Ones—or the opposite? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2430 + type: anime + name: Creek + url: https://myanimelist.net/anime/producer/2430/Creek + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 48842 + url: https://myanimelist.net/anime/48842/Mahoutsukai_Reimeiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1093/121114.jpg + small_image_url: https://myanimelist.net/images/anime/1093/121114t.jpg + large_image_url: https://myanimelist.net/images/anime/1093/121114l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1093/121114.webp + small_image_url: https://myanimelist.net/images/anime/1093/121114t.webp + large_image_url: https://myanimelist.net/images/anime/1093/121114l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/G9IE7xKZePM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahoutsukai Reimeiki + - type: Synonym + title: Mahou Tsukai Reimeiki + - type: Japanese + title: 魔法使い黎明期 + - type: English + title: The Dawn of the Witch + title: Mahoutsukai Reimeiki + title_english: The Dawn of the Witch + title_japanese: 魔法使い黎明期 + title_synonyms: + - Mahou Tsukai Reimeiki + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-08T00:00:00+00:00' + to: '2022-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2022 + to: + day: 1 + month: 7 + year: 2022 + string: Apr 8, 2022 to Jul 1, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.4 + scored_by: 62984 + rank: 8778 + popularity: 1503 + members: 184355 + favorites: 762 + synopsis: |- + Although he attends the Royal Magic Academy in the Kingdom of Wenias, Sable has the worst grades in the entire school. As he has no memories of his time before attending the institution, when Headmaster Albus tasks him with a special training regimen in the south, Sable eagerly accepts it. Alongside the Dawn Witch, Roux Cristasse; Holt, a human girl with antlers; and Kudd, a lizard Beastfallen, Sable must establish a village of witches in a region where anti-witch sentiment remains strong. + + During their journey, the quartet avoids former members of the Dia Ignis Arbiters—a group of witch hunters notorious for murdering witches and civilians alike. Five years ago, their organization was disbanded and given amnesty with the end of the war between the Church and witches, but their members still linger and are ready to capture any mages they come across. + + Thankfully, with Roux's Staff of Ludens, the "witch-eater," and Sable's unlimited supply of magic, the group may be able to accomplish their mission for Albus. If not, Sable's memories of magic and the academy will be taken away, and he will be left with nothing to guide him to the silver-haired mage who first rescued him. + + [Written by MAL Rewrite] + background: Mahoutsukai Reimeiki was released on Blu-ray on September 28, 2022. + season: spring + year: 2022 + broadcast: + day: Fridays + time: 01:58 + timezone: Asia/Tokyo + string: Fridays at 01:58 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + demographics: [] + - mal_id: 43470 + url: https://myanimelist.net/anime/43470/Rikei_ga_Koi_ni_Ochita_no_de_Shoumei_shitemita_Heart + images: + jpg: + image_url: https://myanimelist.net/images/anime/1109/118948.jpg + small_image_url: https://myanimelist.net/images/anime/1109/118948t.jpg + large_image_url: https://myanimelist.net/images/anime/1109/118948l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1109/118948.webp + small_image_url: https://myanimelist.net/images/anime/1109/118948t.webp + large_image_url: https://myanimelist.net/images/anime/1109/118948l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g9FfYyXoVTE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart + - type: Synonym + title: Science Fell in Love + - type: Synonym + title: So I Tried to Prove It 2nd Season + - type: Synonym + title: Rikekoi + - type: Synonym + title: Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ + - type: Japanese + title: 理系が恋に落ちたので証明してみた。r=1-sinθ(ハート) + - type: English + title: Science Fell in Love, So I Tried to Prove It r=1-sinθ + title: Rikei ga Koi ni Ochita no de Shoumei shitemita. Heart + title_english: Science Fell in Love, So I Tried to Prove It r=1-sinθ + title_japanese: 理系が恋に落ちたので証明してみた。r=1-sinθ(ハート) + title_synonyms: + - Science Fell in Love + - So I Tried to Prove It 2nd Season + - Rikekoi + - Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-02T00:00:00+00:00' + to: '2022-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2022 + to: + day: 18 + month: 6 + year: 2022 + string: Apr 2, 2022 to Jun 18, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 59996 + rank: 3242 + popularity: 1609 + members: 171745 + favorites: 539 + synopsis: |- + Following the events of their trip to Okinawa, Saitama University graduate students Shinya Yukimura and Ayame Himuro have failed to obtain the data necessary to scientifically prove their love for each other. Unable to replicate the exact conditions of the trip, the two stubborn scientists decide to seek help from elsewhere in the university—the Biological Sciences department. + + Assisted by fellow graduate students and longtime couple Chris Floret and Suiu Fujiwara, Yukimura and Himuro begin to quantify their feelings by measuring their output of oxytocin in various romantic situations. The two scientists soon find that their feelings for each other are nothing compared to that of a mature couple. It is here that Chris poses a question to both Yukimura and Himuro: what will they do if their "affection" is proven not to be love after all? + + Desperate to find a scientific rationale for the discrepancy, Yukimura puts everything on the line to prove that their "love" is real. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2022 + broadcast: + day: Saturdays + time: 01:30 + timezone: Asia/Tokyo + string: Saturdays at 01:30 (JST) + producers: + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 874 + type: anime + name: Flex Comix + url: https://myanimelist.net/anime/producer/874/Flex_Comix + - mal_id: 1221 + type: anime + name: Hokkaido Cultural Broadcasting + url: https://myanimelist.net/anime/producer/1221/Hokkaido_Cultural_Broadcasting + - mal_id: 1300 + type: anime + name: Office Nobu + url: https://myanimelist.net/anime/producer/1300/Office_Nobu + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 1985 + type: anime + name: Toyo Recording + url: https://myanimelist.net/anime/producer/1985/Toyo_Recording + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2108 + type: anime + name: SUPA LOVE + url: https://myanimelist.net/anime/producer/2108/SUPA_LOVE + - mal_id: 2144 + type: anime + name: BloomZ + url: https://myanimelist.net/anime/producer/2144/BloomZ + - mal_id: 2186 + type: anime + name: Mirai-Kojo + url: https://myanimelist.net/anime/producer/2186/Mirai-Kojo + - mal_id: 2221 + type: anime + name: AMG Entertainment + url: https://myanimelist.net/anime/producer/2221/AMG_Entertainment + - mal_id: 2233 + type: anime + name: Starry Cube + url: https://myanimelist.net/anime/producer/2233/Starry_Cube + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 48903 + url: https://myanimelist.net/anime/48903/Dragon_Ball_Super__Super_Hero + images: + jpg: + image_url: https://myanimelist.net/images/anime/1501/122797.jpg + small_image_url: https://myanimelist.net/images/anime/1501/122797t.jpg + large_image_url: https://myanimelist.net/images/anime/1501/122797l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1501/122797.webp + small_image_url: https://myanimelist.net/images/anime/1501/122797t.webp + large_image_url: https://myanimelist.net/images/anime/1501/122797l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EwXiAhcSv2o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dragon Ball Super: Super Hero' + - type: Synonym + title: 'Dragon Ball Super Movie 2: Superhero' + - type: Japanese + title: ドラゴンボール超スーパーヒーロー + - type: English + title: 'Dragon Ball Super: Super Hero' + title: 'Dragon Ball Super: Super Hero' + title_english: 'Dragon Ball Super: Super Hero' + title_japanese: ドラゴンボール超スーパーヒーロー + title_synonyms: + - 'Dragon Ball Super Movie 2: Superhero' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-06-11T00:00:00+00:00' + to: null + prop: + from: + day: 11 + month: 6 + year: 2022 + to: + day: null + month: null + year: null + string: Jun 11, 2022 + duration: 1 hr 39 min + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 89652 + rank: 1838 + popularity: 1804 + members: 147773 + favorites: 697 + synopsis: |- + Years after his father is defeated by an adolescent Gokuu Son, Magenta seeks revenge against Gokuu's family and allies. In his quest to resurrect the defunct Red Ribbon Army, Magenta drafts the services of Dr. Hedo, grandson of the evil legendary scientist Dr. Gero. Hedo embarks to invent a new line of superheroic androids to eliminate Gokuu after Magenta manipulates him into believing that Earth's most powerful heroes are actually alien villains. + + While Gokuu and Vegeta train offworld, the alien Piccolo mentors Pan, Gokuu's toddler granddaughter, in the same way he once trained Gohan Son, her father. Gohan himself has forsaken his warrior lineage in order to pursue an academic career. Both Piccolo and Gohan must leap into action when their quiet lives are interrupted by the arrival of Gamma 1-gou and Gamma 2-gou—Hedo's new android creations. + + While the Gamma androids believe they are fighting for justice, a more sinister project incubates beneath the Red Ribbon headquarters. Gohan and Piccolo take drastic actions to protect Pan and defend the planet against a new robotic menace. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 230 + type: anime + name: Bandai + url: https://myanimelist.net/anime/producer/230/Bandai + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48779 + url: https://myanimelist.net/anime/48779/Deaimon + images: + jpg: + image_url: https://myanimelist.net/images/anime/1054/121949.jpg + small_image_url: https://myanimelist.net/images/anime/1054/121949t.jpg + large_image_url: https://myanimelist.net/images/anime/1054/121949l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1054/121949.webp + small_image_url: https://myanimelist.net/images/anime/1054/121949t.webp + large_image_url: https://myanimelist.net/images/anime/1054/121949l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IKGesRv1z2o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Deaimon + - type: Japanese + title: であいもん + - type: English + title: 'Deaimon: Recipe for Happiness' + title: Deaimon + title_english: 'Deaimon: Recipe for Happiness' + title_japanese: であいもん + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-04-06T00:00:00+00:00' + to: '2022-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2022 + to: + day: 22 + month: 6 + year: 2022 + string: Apr 6, 2022 to Jun 22, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 47698 + rank: 2002 + popularity: 2251 + members: 109311 + favorites: 480 + synopsis: |- + Ten years have passed since Nagomu Irino left his home to pursue his dream that ultimately failed. He finally decides to return after hearing that his father—owner of the Kyoto sweets store Ryokushou—has been hospitalized. Worrying that no one would inherit the shop if his father passes away, Nagomu prepares himself to embrace his family's legacy and the art of making sweets⁠. + + Unsurprisingly, Nagomu discovers that his father has already chosen a different successor—a 10-year-old girl named Itsuka Yukihira, who was abandoned at Ryokushou by her father for reasons unknown. While she has since become a part of the family and is now the shop's poster girl, Itsuka still longs to see her father and follows all possible clues that may lead her to him. Sympathizing with Itsuka's situation, Nagomu's mother asks Nagomu to act as Itsuka's father, hoping that Itsuka will open up to him and relieve her pain, even if just a little. + + Starting on bad terms, Itsuka and Nagomu gradually learn more about each other, realizing that they are more similar than they had thought. Connected by their mutual love for both Ryokushou and its confections, their relationship as child and father figure begins to make lives around them a little bit sweeter. + + [Written by MAL Rewrite] + background: Deaimon was released on Blu-ray and DVD on August 24, 2022. + season: spring + year: 2022 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2308 + type: anime + name: Midorimatsu + url: https://myanimelist.net/anime/producer/2308/Midorimatsu + licensors: [] + studios: + - mal_id: 354 + type: anime + name: Encourage Films + url: https://myanimelist.net/anime/producer/354/Encourage_Films + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/51-2022-summer.yaml b/test/fixtures/jikan/season_matrix/51-2022-summer.yaml new file mode 100644 index 0000000..8366c6c --- /dev/null +++ b/test/fixtures/jikan/season_matrix/51-2022-summer.yaml @@ -0,0 +1,3337 @@ +metadata: + captured_at: '2026-05-11T11:34:40Z' + label: 2022-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2022/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:39 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:20dd9211e1579c5739d6571f5a12d9468b8bdf1f + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 321 + per_page: 25 + data: + - mal_id: 42310 + url: https://myanimelist.net/anime/42310/Cyberpunk__Edgerunners + images: + jpg: + image_url: https://myanimelist.net/images/anime/1818/126435.jpg + small_image_url: https://myanimelist.net/images/anime/1818/126435t.jpg + large_image_url: https://myanimelist.net/images/anime/1818/126435l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1818/126435.webp + small_image_url: https://myanimelist.net/images/anime/1818/126435t.webp + large_image_url: https://myanimelist.net/images/anime/1818/126435l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JtqIas3bYhg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Cyberpunk: Edgerunners' + - type: Japanese + title: サイバーパンク エッジランナーズ + title: 'Cyberpunk: Edgerunners' + title_english: null + title_japanese: サイバーパンク エッジランナーズ + title_synonyms: [] + type: ONA + source: Game + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2022-09-13T00:00:00+00:00' + to: null + prop: + from: + day: 13 + month: 9 + year: 2022 + to: + day: null + month: null + year: null + string: Sep 13, 2022 + duration: 25 min per ep + rating: R+ - Mild Nudity + score: 8.62 + scored_by: 715068 + rank: 97 + popularity: 174 + members: 1053838 + favorites: 34947 + synopsis: |- + Dreams are doomed to die in Night City, a futuristic Californian metropolis. As a teenager living in the city's slums, David Martinez is trying to fulfill his mother's lifelong wish for him to reach the top of Arasaka, the world's leading security corporation. To this end, he attends the prestigious Arasaka Academy while his mother works tirelessly to keep their family afloat. + + When an incident with a street gang leaves David's life in tatters, he stumbles upon Sandevistan cyberware—a prosthetic that grants its wearer superhuman speed. Fueled by rage, David implants the device in his back, using it to exact revenge on one of his tormentors. This gets him expelled from the academy, shattering his hopes of ever making his mother proud. + + After witnessing David's newfound abilities, the beautiful data thief Lucyna "Lucy" Kushinada offers to team up with him, handing him a ticket to salvation. However, associating with Lucy introduces David to the world of Edgerunners—cyborg criminals who will break any law for money. Edgerunners often lose their lives, if the cyberware does not break their minds first; but in his fight for survival inside a corrupt system, David is ready to risk it all. + + [Written by MAL Rewrite] + background: 'Cyberpunk: Edgerunners is based on the Cyberpunk 2077 video game by CD Projekt Red. The series acts as + a prequel to the game''s story.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 2594 + type: anime + name: CD Projekt Red + url: https://myanimelist.net/anime/producer/2594/CD_Projekt_Red + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 51096 + url: https://myanimelist.net/anime/51096/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1010/124180.jpg + small_image_url: https://myanimelist.net/images/anime/1010/124180t.jpg + large_image_url: https://myanimelist.net/images/anime/1010/124180l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1010/124180.webp + small_image_url: https://myanimelist.net/images/anime/1010/124180t.webp + large_image_url: https://myanimelist.net/images/anime/1010/124180l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0mM3lQytac4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season + - type: Synonym + title: Classroom of the Elite 2nd Season + - type: Synonym + title: You-jitsu 2nd Season + - type: Synonym + title: You-zitsu 2nd Season + - type: Japanese + title: ようこそ実力至上主義の教室へ 2nd Season + - type: English + title: Classroom of the Elite II + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 2nd Season + title_english: Classroom of the Elite II + title_japanese: ようこそ実力至上主義の教室へ 2nd Season + title_synonyms: + - Classroom of the Elite 2nd Season + - You-jitsu 2nd Season + - You-zitsu 2nd Season + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-04T00:00:00+00:00' + to: '2022-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2022 + to: + day: 26 + month: 9 + year: 2022 + string: Jul 4, 2022 to Sep 26, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.05 + scored_by: 465482 + rank: 681 + popularity: 284 + members: 802328 + favorites: 8421 + synopsis: |- + Life back on the cruise following the Island Special Examination is anything but smooth sailing. Almost immediately after their return, the first-year students of Tokyo Metropolitan Advanced Nurturing High School face yet another special exam, with both class and individual points on the line. + + In addition to the complicated ruleset, more issues arise in the form of Kakeru Ryuuen and Kei Karuizawa. Angered by the previous test's outcome, Ryuuen is dead set on outdoing every class in the new challenge using any means necessary. Meanwhile, Karuizawa, a crucial pillar of Class D, is close to crumbling under the pressure of her past. + + The stage is now set for Kiyotaka Ayanokouji to once again—using the full extent of his planning, foresight, and ruthless manipulation—steer Class D to victory as dangerously close enemy forces try to bring it down. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2022 + broadcast: + day: Mondays + time: '21:00' + timezone: Asia/Tokyo + string: Mondays at 21:00 (JST) + producers: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50346 + url: https://myanimelist.net/anime/50346/Yofukashi_no_Uta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1045/123711.jpg + small_image_url: https://myanimelist.net/images/anime/1045/123711t.jpg + large_image_url: https://myanimelist.net/images/anime/1045/123711l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1045/123711.webp + small_image_url: https://myanimelist.net/images/anime/1045/123711t.webp + large_image_url: https://myanimelist.net/images/anime/1045/123711l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/a4bSbmqwhso?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yofukashi no Uta + - type: Japanese + title: よふかしのうた + - type: English + title: Call of the Night + title: Yofukashi no Uta + title_english: Call of the Night + title_japanese: よふかしのうた + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-08T00:00:00+00:00' + to: '2022-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2022 + to: + day: 30 + month: 9 + year: 2022 + string: Jul 8, 2022 to Sep 30, 2022 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.95 + scored_by: 354570 + rank: 840 + popularity: 297 + members: 775243 + favorites: 10619 + synopsis: |- + Kou Yamori is an average middle school student who struggles with grasping the complex concept of love. Because he sees little sense in surrendering to the norm, he soon stops going to school. Plagued with insomnia due to his idleness, Kou begins roaming the lonesome streets at night. + + One night, Kou encounters a bizarre girl named Nazuna Nanakusa who believes that people stay awake during the night because they are dissatisfied with how they spent their day and cannot rest until they release their inhibitions. Nazuna offers to help Kou with his sleep issues and invites him over to her place, where she convinces him to share a futon with her. Feeling uncomfortable, Kou only pretends to doze off—which is when Nazuna suddenly bites his neck, revealing herself to be a vampire! + + While Kou thinks the bite will turn him into a vampire, the specifics of transforming are not that simple. In order to change, he must be bitten by someone he truly loves. Ready to let go of his dreary mortal life, Kou decides on a new goal: he will fall in love with Nazuna and become a vampire himself. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2022 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1556 + type: anime + name: Fuji Creative + url: https://myanimelist.net/anime/producer/1556/Fuji_Creative + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48895 + url: https://myanimelist.net/anime/48895/Overlord_IV + images: + jpg: + image_url: https://myanimelist.net/images/anime/1530/120110.jpg + small_image_url: https://myanimelist.net/images/anime/1530/120110t.jpg + large_image_url: https://myanimelist.net/images/anime/1530/120110l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1530/120110.webp + small_image_url: https://myanimelist.net/images/anime/1530/120110t.webp + large_image_url: https://myanimelist.net/images/anime/1530/120110l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tNYQjEyTO6s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Overlord IV + - type: Japanese + title: オーバーロード IV + - type: English + title: Overlord IV + title: Overlord IV + title_english: Overlord IV + title_japanese: オーバーロード IV + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-05T00:00:00+00:00' + to: '2022-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2022 + to: + day: 27 + month: 9 + year: 2022 + string: Jul 5, 2022 to Sep 27, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.06 + scored_by: 325366 + rank: 661 + popularity: 391 + members: 635943 + favorites: 7490 + synopsis: |- + E-Rantel, the capital city of the newly established Sorcerer Kingdom, suffers from a dire shortage of goods. Once a prosperous city known for its trade, it now faces a crisis due to its caution—or even fear—of its king, Ainz Ooal Gown. To make amends, Ainz sends Albedo to the city as a diplomatic envoy. + + Meanwhile, the cardinals of the Slane Theocracy discuss how to retaliate against Ainz after his attack crippled the Re-Estize Kingdom's army, plotting for the Baharuth Empire to take over the Sorcerer Kingdom. However, when Emperor Jircniv Rune Farlord El Nix arranges a meeting with the Theocracy's messengers at a colosseum, he is confronted by none other than Ainz himself. + + With their secret gathering now out in the open, the emperor and his guests learn that Ainz has challenged the Warrior King, the empire's greatest fighter, to a duel. With Ainz's motivations beyond his comprehension, Jircniv can do nothing but watch as humanity's future changes before his very eyes. + + [Written by MAL Rewrite] + background: Overlord IV was released on Blu-ray and DVD in Japan from October 26, 2022 to December 23, 2022. It adapts + volumes 10, 11, and 14 of the light novel series. + season: summer + year: 2022 + broadcast: + day: Tuesdays + time: '22:00' + timezone: Asia/Tokyo + string: Tuesdays at 22:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 50709 + url: https://myanimelist.net/anime/50709/Lycoris_Recoil + images: + jpg: + image_url: https://myanimelist.net/images/anime/1261/127311.jpg + small_image_url: https://myanimelist.net/images/anime/1261/127311t.jpg + large_image_url: https://myanimelist.net/images/anime/1261/127311l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1261/127311.webp + small_image_url: https://myanimelist.net/images/anime/1261/127311t.webp + large_image_url: https://myanimelist.net/images/anime/1261/127311l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F5DMjhg3A6c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Lycoris Recoil + - type: Synonym + title: LycoReco + - type: Japanese + title: リコリス・リコイル + - type: English + title: Lycoris Recoil + title: Lycoris Recoil + title_english: Lycoris Recoil + title_japanese: リコリス・リコイル + title_synonyms: + - LycoReco + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-02T00:00:00+00:00' + to: '2022-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2022 + to: + day: 24 + month: 9 + year: 2022 + string: Jul 2, 2022 to Sep 24, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 290962 + rank: 535 + popularity: 421 + members: 595665 + favorites: 9834 + synopsis: |- + The number of terrorist acts in Japan has never been lower, thanks to the efforts of a syndicate called Direct Attack (DA). The organization raises orphaned girls as killers to carry out assassinations under their "Lycoris" program. Takina Inoue is an exceptional Lycoris with a strong sense of purpose and a penchant for perfection. Unfortunately, a hostage situation tests her patience, and the resulting act of insubordination leads to her transfer out of DA. Not thrilled about losing the only place she belonged to, she reluctantly arrives at her new base of operations—LycoReco, a cafe in disguise. + + Takina's new partner, however, turns out to be quite different from what she imagined. Despite being the famed Lycoris prodigy, Chisato Nishikigi appears almost unconcerned with her duties. She drags Takina along on all kinds of odd jobs under the simple explanation of helping people in need. Takina is even more puzzled when Chisato takes down a group of armed assailants without killing any of them. Feeling like a fish out of water, Takina itches to get reinstated into DA—but Chisato is determined to prove to her that there is more to a life than just taking them. + + [Written by MAL Rewrite] + background: Lycoris Recoil was released on Blu-ray and DVD in Japan from September 21, 2022 to February 22, 2023. + season: summer + year: 2022 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 41084 + url: https://myanimelist.net/anime/41084/Made_in_Abyss__Retsujitsu_no_Ougonkyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1864/122519.jpg + small_image_url: https://myanimelist.net/images/anime/1864/122519t.jpg + large_image_url: https://myanimelist.net/images/anime/1864/122519l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1864/122519.webp + small_image_url: https://myanimelist.net/images/anime/1864/122519t.webp + large_image_url: https://myanimelist.net/images/anime/1864/122519l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CWZz5x-XCA8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Made in Abyss: Retsujitsu no Ougonkyou' + - type: Japanese + title: メイドインアビス 烈日の黄金郷 + - type: English + title: 'Made in Abyss: The Golden City of the Scorching Sun' + title: 'Made in Abyss: Retsujitsu no Ougonkyou' + title_english: 'Made in Abyss: The Golden City of the Scorching Sun' + title_japanese: メイドインアビス 烈日の黄金郷 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-06T00:00:00+00:00' + to: '2022-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2022 + to: + day: 28 + month: 9 + year: 2022 + string: Jul 6, 2022 to Sep 28, 2022 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.6 + scored_by: 261542 + rank: 113 + popularity: 466 + members: 539936 + favorites: 6911 + synopsis: |- + After surviving the brutal challenges of Idofront, Riko now possesses a White Whistle, allowing her to descend into the Abyss's sixth layer—The Capital of the Unreturned. Alongside Reg and Nanachi, Riko begins to explore the uncharted domain, where the ruins of the promised Golden City are located. + + As the trio starts to adapt to the harsh environment, they soon encounter dangerous creatures and treacherous landscapes. Their expedition leads them to a village inhabited by strange beings known as "hollows." Despite the creeping sense of unease that welcomes them, the three venture onward to uncover the mysteries of the settlement and long-lost legacies of the forgotten adventurers who once descended into the horrors of the unexplored Abyss. + + [Written by MAL Rewrite] + background: 'Made in Abyss: Retsujitsu no Ougonkyou was released on Blu-ray and DVD in Japan from October 26, 2022 to + December 23, 2022.' + season: summer + year: 2022 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 48413 + url: https://myanimelist.net/anime/48413/Hataraku_Maou-sama + images: + jpg: + image_url: https://myanimelist.net/images/anime/1502/124354.jpg + small_image_url: https://myanimelist.net/images/anime/1502/124354t.jpg + large_image_url: https://myanimelist.net/images/anime/1502/124354l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1502/124354.webp + small_image_url: https://myanimelist.net/images/anime/1502/124354t.webp + large_image_url: https://myanimelist.net/images/anime/1502/124354l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LxpTh8GKAL4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Maou-sama!! + - type: Synonym + title: The Devil is a Part-Timer! 2nd Season + - type: Synonym + title: The Devil is a Part-Timer!! + - type: Synonym + title: Hataraku Maou-sama 2 + - type: Japanese + title: はたらく魔王さま!! + - type: English + title: The Devil is a Part-Timer! Season 2 + title: Hataraku Maou-sama!! + title_english: The Devil is a Part-Timer! Season 2 + title_japanese: はたらく魔王さま!! + title_synonyms: + - The Devil is a Part-Timer! 2nd Season + - The Devil is a Part-Timer!! + - Hataraku Maou-sama 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-14T00:00:00+00:00' + to: '2022-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2022 + to: + day: 29 + month: 9 + year: 2022 + string: Jul 14, 2022 to Sep 29, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 176460 + rank: 7187 + popularity: 484 + members: 526601 + favorites: 4713 + synopsis: |- + The once-feared Demon Lord Satan of Ente Isla, who had to flee to Earth after being defeated by the hero Emilia Justinia, is now leading a peaceful life in Tokyo under the alias Sadao Maou. Having become a model employee of a local fast-food restaurant, Sadao has to provide for his former generals Alciel and Lucifer who joined him in Japan, as well as avoid confrontations with Emi Yusa—the assumed name of Emilia—and the angels who monitor his actions. + + Amidst a violent argument between Sadao and Emi, a dimensional portal suddenly appears, carrying a mysterious apple that harbors a toddler named Alas Ramus. To everyone's bewilderment, she imprints on Emi and Sadao, marking them as her parents! After Emi reluctantly agrees to help Sadao take care of Alas Ramus, their semblance of normal life is jeopardized by the appearance of the archangel Gabriel, who comes bearing bad news. He claims that he must take both Alas Ramus and Emi's sacred sword with him—lest the world be destroyed. + + Unable to accept Gabriel's grim prophecies, the hero and the former Demon Lord need to put their differences aside and unite to protect what they hold dearest. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2022 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + licensors: [] + studios: + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 42963 + url: https://myanimelist.net/anime/42963/Kanojo_Okarishimasu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1070/124592.jpg + small_image_url: https://myanimelist.net/images/anime/1070/124592t.jpg + large_image_url: https://myanimelist.net/images/anime/1070/124592l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1070/124592.webp + small_image_url: https://myanimelist.net/images/anime/1070/124592t.webp + large_image_url: https://myanimelist.net/images/anime/1070/124592l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EwbHVNLPM4g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo, Okarishimasu 2nd Season + - type: Synonym + title: Kanokari + - type: Japanese + title: 彼女、お借りします + - type: English + title: Rent-a-Girlfriend Season 2 + title: Kanojo, Okarishimasu 2nd Season + title_english: Rent-a-Girlfriend Season 2 + title_japanese: 彼女、お借りします + title_synonyms: + - Kanokari + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-02T00:00:00+00:00' + to: '2022-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2022 + to: + day: 17 + month: 9 + year: 2022 + string: Jul 2, 2022 to Sep 17, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.69 + scored_by: 199999 + rank: 6999 + popularity: 550 + members: 476051 + favorites: 4868 + synopsis: |- + A year after they met, Kazuya Kinoshita and Chizuru Mizuhara still regularly see each other through the rental girlfriend app. However, Chizuru confesses that she is ready to quit her job to pursue her true passion—acting. Despite wishing to maintain the relationship they have, Kazuya decides to support her dream. + + When Kazuya goes to watch Chizuru's anticipated first play, he is amazed by her talent and ability to captivate the audience. At the same time, he is saddened at the thought that she will undoubtedly be scouted by the famous director in attendance. + + However, after the show, Chizuru explains that the director recruited another actress, lamenting her lack of talent. Frustrated on her behalf, Kazuya resolves to rent her every week to help her financially. But as Kazuya's ex-girlfriend Mami Nanami lingers around for unknown reasons, hesitance muddles his true feelings, and fulfilling his promise to Chizuru becomes uncertain. + + [Written by MAL Rewrite] + background: Kanojo, Okarishimasu 2nd Season was released on Blu-ray in Japan from October 26, 2022 to January 25, 2023. + season: summer + year: 2022 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49220 + url: https://myanimelist.net/anime/49220/Isekai_Ojisan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1743/125204.jpg + small_image_url: https://myanimelist.net/images/anime/1743/125204t.jpg + large_image_url: https://myanimelist.net/images/anime/1743/125204l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1743/125204.webp + small_image_url: https://myanimelist.net/images/anime/1743/125204t.webp + large_image_url: https://myanimelist.net/images/anime/1743/125204l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/p73c08lLJc8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Ojisan + - type: Synonym + title: Isekai Uncle + - type: Synonym + title: Ojisan in Another World + - type: Japanese + title: 異世界おじさん + - type: English + title: Uncle from Another World + title: Isekai Ojisan + title_english: Uncle from Another World + title_japanese: 異世界おじさん + title_synonyms: + - Isekai Uncle + - Ojisan in Another World + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-06T00:00:00+00:00' + to: '2023-03-08T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2022 + to: + day: 8 + month: 3 + year: 2023 + string: Jul 6, 2022 to Mar 8, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.75 + scored_by: 200638 + rank: 1311 + popularity: 626 + members: 429253 + favorites: 2339 + synopsis: |- + After a fatal encounter with a truck, Takafumi Takaoka's uncle, Yousuke "Ojisan" Shibazaki, lies comatose for 17 years. When he finally regains consciousness, Ojisan begins to ramble in a foreign tongue and reveals that he had been transported to a magical world called Gran Bahamal. Takafumi dismisses his uncle's claims as nonsense until an incantation makes a cup of water hover in the air. In a flash of brilliance, the pair creates a YouTube channel to showcase Ojisan's magical abilities. + + The responsibility now falls on Takafumi's shoulders to acquaint Ojisan with everything that has transpired during his absence, including getting him up to speed with the internet, new technology, and surprisingly, the outcome of the '90s console war—the result of which was especially distressing for a hardcore SEGA fan. With Ojisan's wisdom from his other world experiences, they grow their YouTube channel and tackle online comments and trolls. The journey of this uncle-nephew duo promises to be anything but conventional. + + [Written by MAL Rewrite] + background: Isekai Ojisan was released on Blu-ray and DVD in three volumes from September 28, 2022, to March 24, 2023. + season: summer + year: 2022 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 2298 + type: anime + name: Atelier Pontdarc + url: https://myanimelist.net/anime/producer/2298/Atelier_Pontdarc + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 47164 + url: https://myanimelist.net/anime/47164/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_IV__Shin_Shou_-_Meikyuu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1318/126474.jpg + small_image_url: https://myanimelist.net/images/anime/1318/126474t.jpg + large_image_url: https://myanimelist.net/images/anime/1318/126474l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1318/126474.webp + small_image_url: https://myanimelist.net/images/anime/1318/126474t.webp + large_image_url: https://myanimelist.net/images/anime/1318/126474l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1Z_0xP-bS4Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen' + - type: Synonym + title: DanMachi 4th Season + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon 4th Season + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇 + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Meikyuu-hen' + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうかⅣ 新章 迷宮篇 + title_synonyms: + - DanMachi 4th Season + - Is It Wrong That I Want to Meet You in a Dungeon 4th Season + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2022-07-23T00:00:00+00:00' + to: '2022-10-01T00:00:00+00:00' + prop: + from: + day: 23 + month: 7 + year: 2022 + to: + day: 1 + month: 10 + year: 2022 + string: Jul 23, 2022 to Oct 1, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.75 + scored_by: 181066 + rank: 1303 + popularity: 664 + members: 409229 + favorites: 2160 + synopsis: |- + After saving the Xenos from a mortal peril, adventurer Bell Cranel finally achieves Level 4. Now strong enough to head toward the dangerous depths of the Dungeon, the captain of Hestia Familia embarks on a new adventure with his friends and allies. + + However, according to a prophetic dream of Cassandra Ilion, a looming catastrophe caused by Bell's close friend Ryuu Lion risks causing the demise of the entire party. Nevertheless, Bell is unwilling to distrust Ryuu and determined to clear her name—but only time will tell if he is going to be strong enough to save her and prevail against the cruelty of the abyss. + + [Written by MAL Rewrite] + background: The series adapts the volumes 12 and 13 of the light novel of Fujino Omori's series of the same title. + season: summer + year: 2022 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 50612 + url: https://myanimelist.net/anime/50612/Dr_Stone__Ryuusui + images: + jpg: + image_url: https://myanimelist.net/images/anime/1071/124921.jpg + small_image_url: https://myanimelist.net/images/anime/1071/124921t.jpg + large_image_url: https://myanimelist.net/images/anime/1071/124921l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1071/124921.webp + small_image_url: https://myanimelist.net/images/anime/1071/124921t.webp + large_image_url: https://myanimelist.net/images/anime/1071/124921l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xR0mAOlclHg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: Ryuusui' + - type: Japanese + title: Dr.STONE 龍水 + - type: English + title: 'Dr. Stone: Ryusui' + title: 'Dr. Stone: Ryuusui' + title_english: 'Dr. Stone: Ryusui' + title_japanese: Dr.STONE 龍水 + title_synonyms: [] + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-07-10T00:00:00+00:00' + to: null + prop: + from: + day: 10 + month: 7 + year: 2022 + to: + day: null + month: null + year: null + string: Jul 10, 2022 + duration: 54 min + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 224493 + rank: 578 + popularity: 701 + members: 388549 + favorites: 959 + synopsis: |- + Now that brains and brawns have united forces, the next step in Senkuu's plan to unravel the mystery behind the green light that once petrified humanity is to go to the other side of the Earth and investigate its origin. However, to achieve this, Senkuu must first build a ship. + + With the help of Tsukasa Shishiou's former underlings, the base of the ship is rapidly assembled, but there is one missing piece: a skilled captain. During their search, Senkuu and his crew come across a petrified Ryuusui Nanami—the heir of the biggest maritime conglomerate, known for his vast knowledge of sailboats but unpleasant personality. Despite this, Senkuu takes the risk and revives Ryuusui. + + Ryuusui, upon realizing there are no ownership rights in this new civilization, is excited at the prospect of claiming everything for himself. But before he agrees to play a crucial part in their upcoming journey and command the vessel through the restless seas, he and Senkuu must find the king of fuels to power the ship—oil. + + [Written by MAL Rewrite] + background: 'Dr. Stone: Ryuusui adapts chapters 84-89 of the manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51367 + url: https://myanimelist.net/anime/51367/JoJo_no_Kimyou_na_Bouken_Part_6__Stone_Ocean_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1051/121959.jpg + small_image_url: https://myanimelist.net/images/anime/1051/121959t.jpg + large_image_url: https://myanimelist.net/images/anime/1051/121959l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1051/121959.webp + small_image_url: https://myanimelist.net/images/anime/1051/121959t.webp + large_image_url: https://myanimelist.net/images/anime/1051/121959l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tT_8m6n-hNE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2' + - type: Japanese + title: ジョジョの奇妙な冒険 ストーンオーシャン + - type: English + title: 'JoJo''s Bizarre Adventure: Stone Ocean Part 2' + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2' + title_english: 'JoJo''s Bizarre Adventure: Stone Ocean Part 2' + title_japanese: ジョジョの奇妙な冒険 ストーンオーシャン + title_synonyms: [] + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-09-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 9 + year: 2022 + to: + day: null + month: null + year: null + string: Sep 1, 2022 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.04 + scored_by: 222930 + rank: 693 + popularity: 764 + members: 357800 + favorites: 1353 + synopsis: |- + Thrown into solitary confinement after a daring rescue attempt, Jolyne Kuujou fights to uncover the sinister plot of Whitesnake, an enemy Stand whose mysterious wielder remains unknown to her. + + Whitesnake's user is actually Enrico Pucci, priest and chaplain of Green Dolphin Street Prison. Pucci shares a deep connection with a villain who once plagued the Joestar bloodline, making his feud with Jolyne and her father, Joutarou, a personal one. Intent on executing the master plan of his deceased friend, Pucci uses the prison and its inmates to fulfill his nefarious schemes. + + Assisted by fellow prisoners, like Ermes Costello and Foo Fighters, Jolyne battles several enemy Stand users. As the ramifications of Pucci's plot spread beyond the confines of the prison and begin to threaten the rest of the world, Jolyne embraces her family lineage and risks her life to put an end to evil. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 2 adapts chapters 51-102 of the original manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49470 + url: https://myanimelist.net/anime/49470/Mamahaha_no_Tsurego_ga_Motokano_datta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1708/123281.jpg + small_image_url: https://myanimelist.net/images/anime/1708/123281t.jpg + large_image_url: https://myanimelist.net/images/anime/1708/123281l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1708/123281.webp + small_image_url: https://myanimelist.net/images/anime/1708/123281t.webp + large_image_url: https://myanimelist.net/images/anime/1708/123281l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QHTffxJep_E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mamahaha no Tsurego ga Motokano datta + - type: Synonym + title: My Stepsister is My Ex-Girlfriend + - type: Synonym + title: Tsurekano + - type: Japanese + title: 継母の連れ子が元カノだった + - type: English + title: My Stepmom's Daughter Is My Ex + title: Mamahaha no Tsurego ga Motokano datta + title_english: My Stepmom's Daughter Is My Ex + title_japanese: 継母の連れ子が元カノだった + title_synonyms: + - My Stepsister is My Ex-Girlfriend + - Tsurekano + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-06T00:00:00+00:00' + to: '2022-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2022 + to: + day: 21 + month: 9 + year: 2022 + string: Jul 6, 2022 to Sep 21, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.72 + scored_by: 159234 + rank: 6803 + popularity: 820 + members: 340604 + favorites: 1590 + synopsis: |- + Listless geek Mizuto Irido and introverted nerd Yume Ayai seemed like a match made in heaven, connected by their mutual love for literature. Unfortunately, their differences gradually grew, and they separated just after their middle school graduation. But, as if by divine comedy, the two find themselves reunited as step-siblings. + + A rivalry begins to brew between the former couple, both unwilling to acknowledge the other as the older sibling. In an attempt to "solve" this issue, Mizuto and Yume agree upon a rule: whoever crosses the boundaries of siblinghood norms loses, and the winner will not only be called the older sibling, but also get to make a request. However, now that they live under the same roof, the lingering memories they share start to influence their actions—possibly rekindling the feelings that may not have been fully extinguished in the first place. + + [Written by MAL Rewrite] + background: Mamahaha no Tsurego ga Motokano datta was released on Blu-ray in three volumes from October 26, 2022 to + December 21, 2022. + season: summer + year: 2022 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1792 + type: anime + name: Yomiuri Shimbun + url: https://myanimelist.net/anime/producer/1792/Yomiuri_Shimbun + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 51213 + url: https://myanimelist.net/anime/51213/Kinsou_no_Vermeil__Gakeppuchi_Majutsushi_wa_Saikyou_no_Yakusai_to_Mahou_Sekai_wo_Tsukisusumu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1561/125302.jpg + small_image_url: https://myanimelist.net/images/anime/1561/125302t.jpg + large_image_url: https://myanimelist.net/images/anime/1561/125302l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1561/125302.webp + small_image_url: https://myanimelist.net/images/anime/1561/125302t.webp + large_image_url: https://myanimelist.net/images/anime/1561/125302l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UZkBdfB-YKY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu' + - type: Japanese + title: 金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~ + - type: English + title: Vermeil in Gold + title: 'Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu' + title_english: Vermeil in Gold + title_japanese: 金装のヴェルメイユ ~崖っぷち魔術師は最強の厄災と魔法世界を突き進む~ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-05T00:00:00+00:00' + to: '2022-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2022 + to: + day: 20 + month: 9 + year: 2022 + string: Jul 5, 2022 to Sep 20, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.79 + scored_by: 139662 + rank: 6339 + popularity: 823 + members: 339090 + favorites: 2207 + synopsis: |- + Alto Goldfilled, a diligent student at the Ortigia Academy of Magic, aspires to become a powerful sorcerer. But he is unable to become one as, despite his excellent grades and strong commitment to his studies, he fails his summoning class. With the threat of repeating a year hanging over his head, Alto tries following an old, worn-out grimoire in a desperate attempt to resolve his situation. + + To his surprise, he succeeds and summons a powerful demon named Vermeil. As a sign of gratitude for releasing her, Vermeil agrees to become Alto's familiar, sealing their relationship with a deep kiss. Little does Alto know what else he is capable of and what Vermeil's past hides. + + [Written by MAL Rewrite] + background: 'Kinsou no Vermeil: Gakeppuchi Majutsushi wa Saikyou no Yakusai to Mahou Sekai wo Tsukisusumu was released + on Blu-ray on November 9, 2022.' + season: summer + year: 2022 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2405 + type: anime + name: Staple Entertainment + url: https://myanimelist.net/anime/producer/2405/Staple_Entertainment + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 44524 + url: https://myanimelist.net/anime/44524/Isekai_Meikyuu_de_Harem_wo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1490/126919.jpg + small_image_url: https://myanimelist.net/images/anime/1490/126919t.jpg + large_image_url: https://myanimelist.net/images/anime/1490/126919l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1490/126919.webp + small_image_url: https://myanimelist.net/images/anime/1490/126919t.webp + large_image_url: https://myanimelist.net/images/anime/1490/126919l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9wgtphu-7mI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Meikyuu de Harem wo + - type: Synonym + title: A Harem in a Fantasy World Labyrinth + - type: Japanese + title: 異世界迷宮でハーレムを + - type: English + title: Harem in the Labyrinth of Another World + title: Isekai Meikyuu de Harem wo + title_english: Harem in the Labyrinth of Another World + title_japanese: 異世界迷宮でハーレムを + title_synonyms: + - A Harem in a Fantasy World Labyrinth + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-06T00:00:00+00:00' + to: '2022-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2022 + to: + day: 21 + month: 9 + year: 2022 + string: Jul 6, 2022 to Sep 21, 2022 + duration: 24 min per ep + rating: R+ - Mild Nudity + score: 6.53 + scored_by: 133724 + rank: null + popularity: 940 + members: 298124 + favorites: 2233 + synopsis: |- + One day, high school student Michio Kaga attempts to start a strange online game he found while browsing the internet. Instead, he gets transported to a rural village in the game's world, equipped with special skills and an overpowered sword. After collecting his thoughts, he finds himself battling against bandits and soon realizes that he cannot log out. Resigning himself to fate and accepting this reality, Michio sets out on a journey—enjoying his new life, conquering dungeons to earn money, and building a harem to satisfy all his manly desires. + + [Written by MAL Rewrite] + background: Isekai Meikyuu de Harem wo was released on Blu-ray and DVD in two volumes from November 25, 2022 to December + 23, 2022. + season: summer + year: 2022 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1708 + type: anime + name: Shufunotomo + url: https://myanimelist.net/anime/producer/1708/Shufunotomo + - mal_id: 2088 + type: anime + name: Cloud22 + url: https://myanimelist.net/anime/producer/2088/Cloud22 + licensors: [] + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 49 + type: anime + name: Erotica + url: https://myanimelist.net/anime/genre/49/Erotica + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 51064 + url: https://myanimelist.net/anime/51064/Kuro_no_Shoukanshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1517/125496.jpg + small_image_url: https://myanimelist.net/images/anime/1517/125496t.jpg + large_image_url: https://myanimelist.net/images/anime/1517/125496l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1517/125496.webp + small_image_url: https://myanimelist.net/images/anime/1517/125496t.webp + large_image_url: https://myanimelist.net/images/anime/1517/125496l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s1JaDVu459s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuro no Shoukanshi + - type: Synonym + title: The Berserker Rises to Greatness. + - type: Japanese + title: 黒の召喚士 + - type: English + title: Black Summoner + title: Kuro no Shoukanshi + title_english: Black Summoner + title_japanese: 黒の召喚士 + title_synonyms: + - The Berserker Rises to Greatness. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-09T00:00:00+00:00' + to: '2022-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2022 + to: + day: 24 + month: 9 + year: 2022 + string: Jul 9, 2022 to Sep 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 148800 + rank: 5091 + popularity: 945 + members: 296137 + favorites: 1160 + synopsis: |- + To prepare for reincarnation in another world, Kelvin gives up select memories from his previous life in exchange for powerful abilities, additional skill points, and an S-class summoner title. As a bonus, the goddess facilitating his rebirth, Melfina, offers him a choice of any companion to give him a head start in his summoner role. Kelvin—who has fallen head over heels for Melfina at first sight—promptly chooses the deity, confident that his passionate feelings for her will resurface even without all of his memories. + + Kelvin embarks on his exciting new journey with Melfina as his guide. However, in order to summon his beloved goddess' physical form, he needs to acquire significant amounts of mana points—and the best way to accomplish this is to level up by fighting strong enemies and making contracts with even stronger companions. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2022 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2533 + type: anime + name: Bushiroad Creative + url: https://myanimelist.net/anime/producer/2533/Bushiroad_Creative + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 41 + type: anime + name: Satelight + url: https://myanimelist.net/anime/producer/41/Satelight + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 51417 + url: https://myanimelist.net/anime/51417/Engage_Kiss + images: + jpg: + image_url: https://myanimelist.net/images/anime/1549/125495.jpg + small_image_url: https://myanimelist.net/images/anime/1549/125495t.jpg + large_image_url: https://myanimelist.net/images/anime/1549/125495l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1549/125495.webp + small_image_url: https://myanimelist.net/images/anime/1549/125495t.webp + large_image_url: https://myanimelist.net/images/anime/1549/125495l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_xwq5xJB_KM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Engage Kiss + - type: Japanese + title: Engage Kiss + - type: English + title: Engage Kiss + title: Engage Kiss + title_english: Engage Kiss + title_japanese: Engage Kiss + title_synonyms: [] + type: TV + source: Mixed media + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-07-03T00:00:00+00:00' + to: '2022-09-25T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2022 + to: + day: 25 + month: 9 + year: 2022 + string: Jul 3, 2022 to Sep 25, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.79 + scored_by: 107478 + rank: 6332 + popularity: 1002 + members: 279706 + favorites: 1300 + synopsis: |- + Bayron City, a pioneering metropolis built on a newly discovered energy source, promises every citizen a luxurious and comfortable lifestyle. In reality, young demon exterminator Shuu Ogata's life is far from extravagant. Despite running a private military business, he often struggles to make ends meet due to reckless expenses. Fortunately, Kisara, his demon partner, is more than eager to help Shuu with household matters—albeit a little too forcefully for his comfort. + + The two work side by side, taking countermeasures against demon hazards, which stand as the biggest threats to the city. With danger lurking in the shadows, Shuu and Kisara strive to grant the town's safety; however, exterminating the possessed comes with a price unbeknownst to others. + + [Written by MAL Rewrite] + background: Engage Kiss is a part of the Japanese mixed media project Project Engage, created by Aniplex. The series + was released on Blu-ray and DVD in Japan from September 28, 2022 to February 22, 2023. + season: summer + year: 2022 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + demographics: [] + - mal_id: 49438 + url: https://myanimelist.net/anime/49438/Isekai_Yakkyoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1120/124644.jpg + small_image_url: https://myanimelist.net/images/anime/1120/124644t.jpg + large_image_url: https://myanimelist.net/images/anime/1120/124644l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1120/124644.webp + small_image_url: https://myanimelist.net/images/anime/1120/124644t.webp + large_image_url: https://myanimelist.net/images/anime/1120/124644l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fh7QGRKQ-IA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Yakkyoku + - type: Synonym + title: Alternate World Pharmacy + - type: Japanese + title: 異世界薬局 + - type: English + title: Parallel World Pharmacy + title: Isekai Yakkyoku + title_english: Parallel World Pharmacy + title_japanese: 異世界薬局 + title_synonyms: + - Alternate World Pharmacy + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-10T00:00:00+00:00' + to: '2022-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2022 + to: + day: 25 + month: 9 + year: 2022 + string: Jul 10, 2022 to Sep 25, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.26 + scored_by: 139245 + rank: 3554 + popularity: 1024 + members: 274675 + favorites: 1003 + synopsis: |- + World-class medical researcher Kanji Yakutani lost his little sister to a tumor years ago due to ineffective treatment. To honor her legacy, he has dedicated his research to developing new medications for such conditions. But as fate would have it, he overworks himself and passes away at the age of 31, only to be given a second chance at life in another world. + + When he wakes up, Kanji finds himself in the body of a 10-year-old boy named Falma de Médicis, the son of an esteemed family of medical practitioners in the Sain Fleuve Empire. Bearing the mark of a deity's divine blessing, Falma is capable of performing a unique divine art, allowing him to create and reduce any substance with the knowledge of its chemical properties. + + After reading through some pharmacology books, Falma realizes that this world is operating on similar medical practices as in ancient times. He also learns that medicine is an exclusive privilege to the nobility, depriving commoners of proper medical care. Using the knowledge from his past life and the divine abilities granted to him, Falma resolves to make medicine available to those who need it—irrespective of class. + + [Written by MAL Rewrite] + background: In collaboration with the Japan Pharmaceutical Association, Isekai Yakkyoku was a part of a campaign to + bring awareness to the professions and practices of the pharmaceutical field. The series was released on Blu-ray and + DVD in Japan from September 28, 2022 to November 25, 2022. + season: summer + year: 2022 + broadcast: + day: Sundays + time: '21:30' + timezone: Asia/Tokyo + string: Sundays at 21:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 49776 + url: https://myanimelist.net/anime/49776/Kumichou_Musume_to_Sewagakari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1454/122063.jpg + small_image_url: https://myanimelist.net/images/anime/1454/122063t.jpg + large_image_url: https://myanimelist.net/images/anime/1454/122063l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1454/122063.webp + small_image_url: https://myanimelist.net/images/anime/1454/122063t.webp + large_image_url: https://myanimelist.net/images/anime/1454/122063l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vKW8-y84jf4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kumichou Musume to Sewagakari + - type: Japanese + title: 組長娘と世話係 + - type: English + title: The Yakuza's Guide to Babysitting + title: Kumichou Musume to Sewagakari + title_english: The Yakuza's Guide to Babysitting + title_japanese: 組長娘と世話係 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-07T00:00:00+00:00' + to: '2022-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2022 + to: + day: 22 + month: 9 + year: 2022 + string: Jul 7, 2022 to Sep 22, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.74 + scored_by: 109975 + rank: 1335 + popularity: 1077 + members: 261952 + favorites: 1177 + synopsis: |- + Tooru Kirishima's notoriety is spread far and wide in the underworld. He is most commonly known as "The Demon of Sakuragi"—a man who is not afraid to resort to violence if deemed necessary. After almost jeopardizing a peace treaty, his boss tasks him with the most difficult job he has ever had: taking care of seven-year-old Yaeka Sakuragi—the boss' precious daughter—so that Tooru understands what it means to be responsible for another life. + + At first, the two do not seem to meet eye to eye, as Tooru has no clue on how to communicate with Yaeka, and the young girl is not used to expressing her emotions. However, as time goes on, they come to understand each other despite their differences. The fearsome right-hand man of a yakuza boss and the child he must protect are about to learn that family is not always bound by blood. + + [Written by MAL Rewrite] + background: Kumichou Musume to Sewagakari was released on Blu-ray and DVD in Japan from October 26, 2022 to January + 25, 2023. + season: summer + year: 2022 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2440 + type: anime + name: Micro House + url: https://myanimelist.net/anime/producer/2440/Micro_House + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + - mal_id: 1314 + type: anime + name: Gaina + url: https://myanimelist.net/anime/producer/1314/Gaina + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 50593 + url: https://myanimelist.net/anime/50593/Natsu_e_no_Tunnel_Sayonara_no_Deguchi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1462/125397.jpg + small_image_url: https://myanimelist.net/images/anime/1462/125397t.jpg + large_image_url: https://myanimelist.net/images/anime/1462/125397l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1462/125397.webp + small_image_url: https://myanimelist.net/images/anime/1462/125397t.webp + large_image_url: https://myanimelist.net/images/anime/1462/125397l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nlv68sEBaDg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Natsu e no Tunnel, Sayonara no Deguchi + - type: Synonym + title: Natsuton + - type: Japanese + title: 夏へのトンネル, さよならの出口 + - type: English + title: The Tunnel to Summer, the Exit of Goodbyes + title: Natsu e no Tunnel, Sayonara no Deguchi + title_english: The Tunnel to Summer, the Exit of Goodbyes + title_japanese: 夏へのトンネル, さよならの出口 + title_synonyms: + - Natsuton + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-09-09T00:00:00+00:00' + to: null + prop: + from: + day: 9 + month: 9 + year: 2022 + to: + day: null + month: null + year: null + string: Sep 9, 2022 + duration: 1 hr 22 min + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 104571 + rank: 790 + popularity: 1102 + members: 254847 + favorites: 2793 + synopsis: |- + Kaoru Touno's family is falling apart. After the death of a sibling and his parents' divorce, he no longer feels any peace at home. Following a heated confrontation with his father, Kaoru runs out of his house and finds himself before a mysterious tunnel, which pulls him in. Bewildered by what he sees inside, he rushes to the exit, picking up a bird that looks identical to his deceased pet on his way out. + + Upon emerging outside, Kaoru realizes that, despite him spending just a few minutes inside the tunnel, an entire week has passed. The bizarre experience leads him to remember the rumors of "Urashima Tunnel"—a passage that grants wishes in exchange for one's lifespan. Given the resurrection of his pet bird, Kaoru cannot help but wonder if another visit can help fix his messed up life. + + However, when he returns to the entrance of the mysterious tunnel, Kaoru realizes that he has been followed by Anzu Hanashiro, a new transfer student in his class. She also knows about the rumors and asks him to help her with an experiment—it turns out that she, too, has a wish that only the tunnel can grant. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1876 + type: anime + name: CLAP + url: https://myanimelist.net/anime/producer/1876/CLAP + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 47163 + url: https://myanimelist.net/anime/47163/Tensei_Kenja_no_Isekai_Life__Dai-2_no_Shokugyou_wo_Ete_Sekai_Saikyou_ni_Narimashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1563/148868.jpg + small_image_url: https://myanimelist.net/images/anime/1563/148868t.jpg + large_image_url: https://myanimelist.net/images/anime/1563/148868l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1563/148868.webp + small_image_url: https://myanimelist.net/images/anime/1563/148868t.webp + large_image_url: https://myanimelist.net/images/anime/1563/148868l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s4BQL8Whpq4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita' + - type: Synonym + title: Tensei Kenjya no Isekai Life + - type: Japanese + title: 転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~ + - type: English + title: 'My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World' + title: 'Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita' + title_english: 'My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World' + title_japanese: 転生賢者の異世界ライフ ~第二の職業を得て、世界最強になりました~ + title_synonyms: + - Tensei Kenjya no Isekai Life + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-04T00:00:00+00:00' + to: '2022-09-12T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2022 + to: + day: 12 + month: 9 + year: 2022 + string: Jul 4, 2022 to Sep 12, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.33 + scored_by: 104600 + rank: 9215 + popularity: 1107 + members: 254084 + favorites: 1430 + synopsis: |- + After working himself to death in a hostile corporate environment, Yuuji Sano gets a second chance when he transmigrates to a game-like fantasy world. Although he wishes to lead an unassuming life, Yuuji learns that he has the title of a Monster Tamer, the weakest rank of adventurer. With his newfound skills, he tames a number of slimes around him and, with their help, acquires magical powers to become a Sage—a second profession that capitalizes on such potential. + + Even after gaining overwhelming strength, the scars from the life Yuuji left behind keep him from going all out. However, he might not be able to hide his abilities for much longer, as unforeseen dangers threaten to destroy the world that is now his only home. + + [Written by MAL Rewrite] + background: 'Tensei Kenja no Isekai Life: Dai-2 no Shokugyou wo Ete, Sekai Saikyou ni Narimashita was released on Blu-ray + in Japan from September 21, 2022 to December 21, 2022.' + season: summer + year: 2022 + broadcast: + day: Mondays + time: '20:00' + timezone: Asia/Tokyo + string: Mondays at 20:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1692 + type: anime + name: Revoroot + url: https://myanimelist.net/anime/producer/1692/Revoroot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 50410 + url: https://myanimelist.net/anime/50410/One_Piece_Film__Red + images: + jpg: + image_url: https://myanimelist.net/images/anime/1668/125323.jpg + small_image_url: https://myanimelist.net/images/anime/1668/125323t.jpg + large_image_url: https://myanimelist.net/images/anime/1668/125323l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1668/125323.webp + small_image_url: https://myanimelist.net/images/anime/1668/125323t.webp + large_image_url: https://myanimelist.net/images/anime/1668/125323l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/r0FvP_Ui-xY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'One Piece Film: Red' + - type: Synonym + title: One Piece Movie 15 + - type: Japanese + title: ONE PIECE FILM RED + - type: English + title: 'One Piece Film: Red' + title: 'One Piece Film: Red' + title_english: 'One Piece Film: Red' + title_japanese: ONE PIECE FILM RED + title_synonyms: + - One Piece Movie 15 + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-08-06T00:00:00+00:00' + to: null + prop: + from: + day: 6 + month: 8 + year: 2022 + to: + day: null + month: null + year: null + string: Aug 6, 2022 + duration: 1 hr 55 min + rating: PG-13 - Teens 13 or older + score: 7.82 + scored_by: 140294 + rank: 1132 + popularity: 1238 + members: 228126 + favorites: 1732 + synopsis: |- + As a child, Uta—the Red Hair Pirates' ex-musician and Monkey D. Luffy's childhood friend—promised that she would build a new era of freedom by performing joyful music for the world. + + Luffy and the Straw Hat Crew arrive at Uta's first ever live concert, where many fans have gathered to enjoy the diva's otherworldly singing. Due to a childhood trauma, Uta bears a deep-seated hatred for pirates; her happy reunion with Luffy is cut short when she learns that he has since become one. Luffy's refusal to change his ways results in Uta unleashing her powers on the Straw Hats. The crew soon learns that their minds have already been trapped in Uta's dream world since the beginning of the concert, while their unconscious bodies remain asleep in the real world. + + With time quickly running out, the Straw Hats must find a way to escape the nightmare or be trapped in Uta's dream forever. + + [Written by MAL Rewrite] + background: Winner of the Anime of the Year (Movie) at the 2023 Tokyo Anime Award Festival (TAAF). + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 60 + type: anime + name: Idols (Female) + url: https://myanimelist.net/anime/genre/60/Idols_Female + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 45653 + url: https://myanimelist.net/anime/45653/Soredemo_Ayumu_wa_Yosetekuru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1945/126130.jpg + small_image_url: https://myanimelist.net/images/anime/1945/126130t.jpg + large_image_url: https://myanimelist.net/images/anime/1945/126130l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1945/126130.webp + small_image_url: https://myanimelist.net/images/anime/1945/126130t.webp + large_image_url: https://myanimelist.net/images/anime/1945/126130l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/L57MI58_pPc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Soredemo Ayumu wa Yosetekuru + - type: Synonym + title: Even so + - type: Synonym + title: Ayumu draws closer to the endgame + - type: Synonym + title: Even So + - type: Synonym + title: Ayumu Approaches + - type: Synonym + title: Soreayu + - type: Japanese + title: それでも歩は寄せてくる + - type: English + title: When Will Ayumu Make His Move? + title: Soredemo Ayumu wa Yosetekuru + title_english: When Will Ayumu Make His Move? + title_japanese: それでも歩は寄せてくる + title_synonyms: + - Even so + - Ayumu draws closer to the endgame + - Even So + - Ayumu Approaches + - Soreayu + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-08T00:00:00+00:00' + to: '2022-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2022 + to: + day: 23 + month: 9 + year: 2022 + string: Jul 8, 2022 to Sep 23, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 59478 + rank: 5106 + popularity: 1500 + members: 184837 + favorites: 672 + synopsis: |- + When middle school kendo champion Ayumu Tanaka begins his first year in high school, he does not take the expected route of joining the Kendo Club; he signs up for the unofficial Shogi Club instead. His sole motive is falling in love at first sight with Urushi Yaotome—the club's president and only member—and will do anything to get closer to her. However, Ayumu decides not to confess to Urushi until he can beat her in a match of shogi fair and square. + + Naturally, this self-imposed hurdle is a formidable challenge for Ayumu to overcome, as Urushi is far more experienced at the game and sees through his every strategy. Nevertheless, this does not stop him from praising her looks, her skill, or even her smile, which, coupled with Ayumu's expressionless face and direct approach, makes Urushi constantly blush beet red. Learning more about shogi and the charming player sitting across from him, Ayumu inches toward making his confession with each exciting round they play together—even if it is one pawn at a time! + + [Written by MAL Rewrite] + background: Soredemo Ayumu wa Yosetekuru was released on Blu-ray in two volumes from October 19, 2022 to December 21, + 2022. + season: summer + year: 2022 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 2542 + type: anime + name: Days + url: https://myanimelist.net/anime/producer/2542/Days + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51837 + url: https://myanimelist.net/anime/51837/Saikin_Yatotta_Maid_ga_Ayashii + images: + jpg: + image_url: https://myanimelist.net/images/anime/1022/123845.jpg + small_image_url: https://myanimelist.net/images/anime/1022/123845t.jpg + large_image_url: https://myanimelist.net/images/anime/1022/123845l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1022/123845.webp + small_image_url: https://myanimelist.net/images/anime/1022/123845t.webp + large_image_url: https://myanimelist.net/images/anime/1022/123845l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-T2j9WUj5-k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saikin Yatotta Maid ga Ayashii + - type: Synonym + title: My Recently Hired Maid is Suspicious + - type: Japanese + title: 最近雇ったメイドが怪しい + - type: English + title: The Maid I Hired Recently Is Mysterious + title: Saikin Yatotta Maid ga Ayashii + title_english: The Maid I Hired Recently Is Mysterious + title_japanese: 最近雇ったメイドが怪しい + title_synonyms: + - My Recently Hired Maid is Suspicious + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2022-07-24T00:00:00+00:00' + to: '2022-10-09T00:00:00+00:00' + prop: + from: + day: 24 + month: 7 + year: 2022 + to: + day: 9 + month: 10 + year: 2022 + string: Jul 24, 2022 to Oct 9, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.57 + scored_by: 47175 + rank: 7749 + popularity: 1808 + members: 146856 + favorites: 532 + synopsis: |- + The maid Lilith, hired to look after young Yuuri and his family's mansion, seems highly suspicious: she is too good to be true. Every dish she serves turns out to be delicious, the whole residence sparkles after she cleans it, and all the clothing has given off a pleasant scent since she started doing the laundry. Furthermore, her devilishly beautiful eyes only serve to heighten Yuuri's suspicions. Is Lilith perhaps a witch or a sorcerer? Yuuri cannot figure it out. + + But despite his misgivings, Yuuri has to live with Lilith as he tries to unravel the mystery behind her otherworldly charm. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2022 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 2548 + type: anime + name: ABC Frontier + url: https://myanimelist.net/anime/producer/2548/ABC_Frontier + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 1547 + type: anime + name: Blade + url: https://myanimelist.net/anime/producer/1547/Blade + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49782 + url: https://myanimelist.net/anime/49782/Shadows_House_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1634/124231.jpg + small_image_url: https://myanimelist.net/images/anime/1634/124231t.jpg + large_image_url: https://myanimelist.net/images/anime/1634/124231l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1634/124231.webp + small_image_url: https://myanimelist.net/images/anime/1634/124231t.webp + large_image_url: https://myanimelist.net/images/anime/1634/124231l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kazueuNPptw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shadows House 2nd Season + - type: Japanese + title: シャドーハウス 2nd Season + - type: English + title: Shadows House 2nd Season + title: Shadows House 2nd Season + title_english: Shadows House 2nd Season + title_japanese: シャドーハウス 2nd Season + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-07-09T00:00:00+00:00' + to: '2022-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2022 + to: + day: 24 + month: 9 + year: 2022 + string: Jul 9, 2022 to Sep 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.03 + scored_by: 59505 + rank: 715 + popularity: 1868 + members: 140782 + favorites: 727 + synopsis: |- + After the resolution of the debut, Kate and her Doll Emilico have officially become residents of the Shadows House. However, they are under constant vigilance by the Star Bearers—an elite group in charge of the children's wing. In order to escape from their surveillance and the morbid methods they use to keep everyone's loyalty in check, Kate and Emilico must be wary of who to trust and aim to become Star Bearers themselves. + + Meanwhile, the Star Bearers have encountered their own problems. A mysterious robed figure dubbed "Master Robe" has trespassed and roams around the children's wing. At first, Master Robe is deemed harmless, but more incidents start occurring that endanger the Dolls' lives—all of them pointing to the suspicious individual. + + To improve her reputation, Kate decides to solve the mystery herself. Yet, with so few clues and so many suspects, searching for Master Robe and their motive for attacking the mansion proves more challenging than she imagined. + + [Written by MAL Rewrite] + background: Shadows House 2nd Season was released on Blu-ray and DVD in six volumes from September 28, 2022 to February + 22, 2023. + season: summer + year: 2022 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/52-2022-fall.yaml b/test/fixtures/jikan/season_matrix/52-2022-fall.yaml new file mode 100644 index 0000000..234f9c9 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/52-2022-fall.yaml @@ -0,0 +1,3265 @@ +metadata: + captured_at: '2026-05-11T11:34:42Z' + label: 2022-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2022/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:42 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:3273f7b76b381940f9057d0099b25610caf62e6f + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 307 + per_page: 25 + data: + - mal_id: 44511 + url: https://myanimelist.net/anime/44511/Chainsaw_Man + images: + jpg: + image_url: https://myanimelist.net/images/anime/1806/126216.jpg + small_image_url: https://myanimelist.net/images/anime/1806/126216t.jpg + large_image_url: https://myanimelist.net/images/anime/1806/126216l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1806/126216.webp + small_image_url: https://myanimelist.net/images/anime/1806/126216t.webp + large_image_url: https://myanimelist.net/images/anime/1806/126216l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jk7QSGwupPA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chainsaw Man + - type: Synonym + title: CSM + - type: Japanese + title: チェンソーマン + - type: English + title: Chainsaw Man + title: Chainsaw Man + title_english: Chainsaw Man + title_japanese: チェンソーマン + title_synonyms: + - CSM + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-12T00:00:00+00:00' + to: '2022-12-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2022 + to: + day: 28 + month: 12 + year: 2022 + string: Oct 12, 2022 to Dec 28, 2022 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.43 + scored_by: 1143135 + rank: 198 + popularity: 47 + members: 1963669 + favorites: 55786 + synopsis: |- + Denji is robbed of a normal teenage life, left with nothing but his deadbeat father's overwhelming debt. His only companion is his pet, the chainsaw devil Pochita, with whom he slays devils for money that inevitably ends up in the yakuza's pockets. All Denji can do is dream of a good, simple life: one with delicious food and a beautiful girlfriend by his side. But an act of greedy betrayal by the yakuza leads to Denji's brutal, untimely death, crushing all hope of him ever achieving happiness. + + Remarkably, an old contract allows Pochita to merge with the deceased Denji and bestow devil powers on him, changing him into a hybrid able to transform his body parts into chainsaws. Because Denji's new abilities pose a significant risk to society, the Public Safety Bureau's elite devil hunter Makima takes him in, letting him live as long as he obeys her command. Guided by the promise of a content life alongside an attractive woman, Denji devotes everything and fights with all his might to make his naive dreams a reality. + + [Written by MAL Rewrite] + background: Chainsaw Man was released in four volumes on Blu-ray and DVD from January 27, 2023, to April 28, 2023. It + adapts chapters 1-38 of the original manga. + season: fall + year: 2022 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50602 + url: https://myanimelist.net/anime/50602/Spy_x_Family_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1111/127508.jpg + small_image_url: https://myanimelist.net/images/anime/1111/127508t.jpg + large_image_url: https://myanimelist.net/images/anime/1111/127508l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1111/127508.webp + small_image_url: https://myanimelist.net/images/anime/1111/127508t.webp + large_image_url: https://myanimelist.net/images/anime/1111/127508l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WFVY88Urzuc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Spy x Family Part 2 + - type: Japanese + title: SPY×FAMILY + title: Spy x Family Part 2 + title_english: null + title_japanese: SPY×FAMILY + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-10-01T00:00:00+00:00' + to: '2022-12-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2022 + to: + day: 24 + month: 12 + year: 2022 + string: Oct 1, 2022 to Dec 24, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 619652 + rank: 453 + popularity: 154 + members: 1134487 + favorites: 7691 + synopsis: |- + With Anya Forger successfully enrolled at the renowned Eden Academy, Operation Strix advances to its second phase. To investigate Ostanian politician Donovan Desmond, Anya must either befriend his son Damian or collect eight Stella Stars to become an Imperial Scholar. Fortunately, Anya has already acquired her first star. In celebration, her adoptive father, Loid, decides to fulfill her wish to adopt a dog. + + During their canine search, Loid receives new orders from his superiors, who have found that a band of Berlint University students is plotting to assassinate Westalis' Minister Brantz using bombs worn by trained dogs. While Loid tries to stop their plans, Anya stumbles upon the terrorists' base of operations. There, she befriends a kindhearted, clairvoyant dog who the family later names Bond. + + Although the Forgers continue to lead their individual lives in secrecy, the family—with a new fluffy addition—remains united through all of the unusual obstacles thrown their way. + + [Written by MAL Rewrite] + background: Spy x Family Part 2 was released on Blu-ray and DVD in three volumes from January 18, 2023, to May 17, 2023. + season: fall + year: 2022 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49596 + url: https://myanimelist.net/anime/49596/Blue_Lock + images: + jpg: + image_url: https://myanimelist.net/images/anime/1258/126929.jpg + small_image_url: https://myanimelist.net/images/anime/1258/126929t.jpg + large_image_url: https://myanimelist.net/images/anime/1258/126929l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1258/126929.webp + small_image_url: https://myanimelist.net/images/anime/1258/126929t.webp + large_image_url: https://myanimelist.net/images/anime/1258/126929l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5YBL7fx94RU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blue Lock + - type: Japanese + title: ブルーロック + - type: English + title: Blue Lock + title: Blue Lock + title_english: Blue Lock + title_japanese: ブルーロック + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2022-10-09T00:00:00+00:00' + to: '2023-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2022 + to: + day: 26 + month: 3 + year: 2023 + string: Oct 9, 2022 to Mar 26, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 498779 + rank: 576 + popularity: 235 + members: 896520 + favorites: 14504 + synopsis: "Yoichi Isagi was mere moments away from scoring a goal that would have sent his high school soccer team to\ + \ the nationals, but a split-second decision to pass the ball to his teammate cost him that reality. Bitter, confused,\ + \ and disappointed, Isagi wonders if the outcome would have been different had he not made the pass. When the young\ + \ striker returns home, an invitation from the Japan Football Union awaits him. Through an arbitrary and biased decision-making\ + \ process, Isagi is one of three hundred U-18 strikers selected for a controversial project named Blue Lock. \n\n\ + The project's ultimate goal is to turn one of the selected players into the star striker for the Japanese national\ + \ team. To find the best participant, each diamond in the rough must compete against others through a series of solo\ + \ and team competitions to rise to the top. Putting aside his ethical objections to the project, Isagi feels compelled\ + \ to fight his way to the top, even if it means ruthlessly crushing the dreams of 299 aspiring young strikers.\n\n\ + [Written by MAL Rewrite]" + background: Blue Lock was released on Blu-ray and DVD in four volumes from January 27, 2023, to July 28, 2023. + season: fall + year: 2022 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48316 + url: https://myanimelist.net/anime/48316/Kage_no_Jitsuryokusha_ni_Naritakute + images: + jpg: + image_url: https://myanimelist.net/images/anime/1091/128729.jpg + small_image_url: https://myanimelist.net/images/anime/1091/128729t.jpg + large_image_url: https://myanimelist.net/images/anime/1091/128729l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1091/128729.webp + small_image_url: https://myanimelist.net/images/anime/1091/128729t.webp + large_image_url: https://myanimelist.net/images/anime/1091/128729l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H-3fre7943U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kage no Jitsuryokusha ni Naritakute! + - type: Synonym + title: Shadow Garden + - type: Japanese + title: 陰の実力者になりたくて! + - type: English + title: The Eminence in Shadow + title: Kage no Jitsuryokusha ni Naritakute! + title_english: The Eminence in Shadow + title_japanese: 陰の実力者になりたくて! + title_synonyms: + - Shadow Garden + type: TV + source: Light novel + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2022-10-05T00:00:00+00:00' + to: '2023-02-15T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2022 + to: + day: 15 + month: 2 + year: 2023 + string: Oct 5, 2022 to Feb 15, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.22 + scored_by: 470901 + rank: 418 + popularity: 250 + members: 865570 + favorites: 18214 + synopsis: |- + For as long as he can remember, Minoru Kagenou has been fixated on becoming as strong as possible, which has led him to undertake all kinds of rigorous training. This wish, however, does not stem from a desire to be recognized by others; rather, Minoru does everything he can to blend in with the crowd. So, while pretending to be a completely average student during the day, he arms himself with a crowbar and ruthlessly thrashes local biker gangs at night. Yet when Minoru finds himself in a truck accident, his ambitions seemingly come to a sudden end. In his final moments, he laments his powerlessness—no matter how much he trained, there was nothing he could do to overcome his human limitations. + + But instead of dying, Minoru reawakens as Cid, the second child of the noble Kagenou family, in another world—one where magic is commonplace. With the power he so desired finally within his grasp, he dons the moniker "Shadow" and establishes Shadow Garden: a group whose sole purpose is to combat the enigmatic Cult of Diablos, an organization born from Cid's imagination. However, as Shadow Garden grows in both membership and influence, it becomes increasingly apparent that the Cult of Diablos is not as fictional as Cid had intended. + + [Written by MAL Rewrite] + background: Kage no Jitsuryokusha ni Naritakute! was released on Blu-ray and DVD in four volumes from January 25, 2023, + to April 26, 2023. The anime adapts volumes 1 and 2 of the light novel series. + season: fall + year: 2022 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + - mal_id: 2435 + type: anime + name: Aiming + url: https://myanimelist.net/anime/producer/2435/Aiming + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 852 + type: anime + name: Nexus + url: https://myanimelist.net/anime/producer/852/Nexus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 50172 + url: https://myanimelist.net/anime/50172/Mob_Psycho_100_III + images: + jpg: + image_url: https://myanimelist.net/images/anime/1228/125011.jpg + small_image_url: https://myanimelist.net/images/anime/1228/125011t.jpg + large_image_url: https://myanimelist.net/images/anime/1228/125011l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1228/125011.webp + small_image_url: https://myanimelist.net/images/anime/1228/125011t.webp + large_image_url: https://myanimelist.net/images/anime/1228/125011l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/b1miJsAVYJA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mob Psycho 100 III + - type: Synonym + title: Mob Psycho 100 3rd Season + - type: Synonym + title: Mob Psycho Hyaku + - type: Synonym + title: Mob Psycho One Hundred + - type: Japanese + title: モブサイコ100 III + - type: English + title: Mob Psycho 100 III + title: Mob Psycho 100 III + title_english: Mob Psycho 100 III + title_japanese: モブサイコ100 III + title_synonyms: + - Mob Psycho 100 3rd Season + - Mob Psycho Hyaku + - Mob Psycho One Hundred + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-06T00:00:00+00:00' + to: '2022-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2022 + to: + day: 22 + month: 12 + year: 2022 + string: Oct 6, 2022 to Dec 22, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.72 + scored_by: 446699 + rank: 60 + popularity: 251 + members: 861273 + favorites: 12660 + synopsis: |- + After foiling a world-threatening plot, Shigeo "Mob" Kageyama returns to tackle the more exhausting aspects of his mundane life—starting with filling out his school's nerve-racking career form. Meanwhile, he continues to assist his mentor Arataka Reigen and the office's new recruit, Katsuya Serizawa, in solving paranormal cases of their clients. While continuing his duties, Mob also works on gaining more independence in his esper and human lives, as well as trying to integrate better with the people around him. + + However, new supernatural and ordinary challenges test Mob’s emotional stability and force him to confront the realities around him. As he strives to continue forward on the path to maturity, Mob must resolve his emotional crises and reassess the naivety he has held on for so long. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2022 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 3309 + type: anime + name: Peerless Gerbera + url: https://myanimelist.net/anime/producer/3309/Peerless_Gerbera + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 49918 + url: https://myanimelist.net/anime/49918/Boku_no_Hero_Academia_6th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1483/126005.jpg + small_image_url: https://myanimelist.net/images/anime/1483/126005t.jpg + large_image_url: https://myanimelist.net/images/anime/1483/126005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1483/126005.webp + small_image_url: https://myanimelist.net/images/anime/1483/126005t.webp + large_image_url: https://myanimelist.net/images/anime/1483/126005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nTWeiY3yZRs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 6th Season + - type: Synonym + title: My Hero Academia 6 + - type: Japanese + title: 僕のヒーローアカデミア + - type: English + title: My Hero Academia Season 6 + title: Boku no Hero Academia 6th Season + title_english: My Hero Academia Season 6 + title_japanese: 僕のヒーローアカデミア + title_synonyms: + - My Hero Academia 6 + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2022-10-01T00:00:00+00:00' + to: '2023-03-25T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2022 + to: + day: 25 + month: 3 + year: 2023 + string: Oct 1, 2022 to Mar 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.22 + scored_by: 424890 + rank: 416 + popularity: 271 + members: 823101 + favorites: 7358 + synopsis: |- + With Tomura Shigaraki at its helm, the former Liberation Army is now known as the Paranormal Liberation Front. This organized criminal group poses an immense threat to the Hero Association, not only because of its sheer size and strength, but also the overpowering quirks of Jin "Twice" Bubaigawara and Gigantomachia. + + As new intel from the covert hero Keigo "Hawks" Takami confirms that Shigaraki is nowhere to be seen, the Hero Association decides to strike the enemy headquarters with a surprise attack using the entirety of its assets—and the UA students find themselves on the battlefield once again. As the fight rages on, the unsuspecting villains must regroup and push back, but the brave heroes are determined to eradicate every last one of them. + + [Written by MAL Rewrite] + background: Boku no Hero Academia 6th Season adapts chapters 258-328 of the manga. + season: fall + year: 2022 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 47917 + url: https://myanimelist.net/anime/47917/Bocchi_the_Rock + images: + jpg: + image_url: https://myanimelist.net/images/anime/1448/127956.jpg + small_image_url: https://myanimelist.net/images/anime/1448/127956t.jpg + large_image_url: https://myanimelist.net/images/anime/1448/127956l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1448/127956.webp + small_image_url: https://myanimelist.net/images/anime/1448/127956t.webp + large_image_url: https://myanimelist.net/images/anime/1448/127956l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1-o7fmQqSNg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bocchi the Rock! + - type: Japanese + title: ぼっち・ざ・ろっく! + - type: English + title: Bocchi the Rock! + title: Bocchi the Rock! + title_english: Bocchi the Rock! + title_japanese: ぼっち・ざ・ろっく! + title_synonyms: [] + type: TV + source: 4-koma manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-09T00:00:00+00:00' + to: '2022-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2022 + to: + day: 25 + month: 12 + year: 2022 + string: Oct 9, 2022 to Dec 25, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.73 + scored_by: 478972 + rank: 53 + popularity: 292 + members: 792380 + favorites: 36734 + synopsis: "Yearning to make friends and perform live with a band, lonely and socially anxious Hitori \"Bocchi\" Gotou\ + \ devotes her time to playing the guitar. On a fateful day, Bocchi meets the outgoing drummer Nijika Ijichi, who invites\ + \ her to join Kessoku Band when their guitarist, Ikuyo Kita, flees before their first show. Soon after, Bocchi meets\ + \ her final bandmate—the cool bassist Ryou Yamada. \n\nAlthough their first performance together is subpar, the girls\ + \ feel empowered by their shared love for music, and they are soon rejoined by Kita. Finding happiness in performing,\ + \ Bocchi and her bandmates put their hearts into improving as musicians while making the most of their fleeting high\ + \ school days.\n\n[Written by MAL Rewrite]" + background: Bocchi the Rock! was released on Blu-ray and DVD in six volumes from December 28, 2022, to May 24, 2023. + season: fall + year: 2022 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 797 + type: anime + name: Houbunsha + url: https://myanimelist.net/anime/producer/797/Houbunsha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 41467 + url: https://myanimelist.net/anime/41467/Bleach__Sennen_Kessen-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1908/135431.jpg + small_image_url: https://myanimelist.net/images/anime/1908/135431t.jpg + large_image_url: https://myanimelist.net/images/anime/1908/135431l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1908/135431.webp + small_image_url: https://myanimelist.net/images/anime/1908/135431t.webp + large_image_url: https://myanimelist.net/images/anime/1908/135431l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/e8YBesRKq_U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bleach: Sennen Kessen-hen' + - type: Synonym + title: 'Bleach: Thousand-Year Blood War Arc' + - type: Japanese + title: BLEACH 千年血戦篇 + - type: English + title: 'Bleach: Thousand-Year Blood War' + title: 'Bleach: Sennen Kessen-hen' + title_english: 'Bleach: Thousand-Year Blood War' + title_japanese: BLEACH 千年血戦篇 + title_synonyms: + - 'Bleach: Thousand-Year Blood War Arc' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-10-11T00:00:00+00:00' + to: '2022-12-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2022 + to: + day: 27 + month: 12 + year: 2022 + string: Oct 11, 2022 to Dec 27, 2022 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.98 + scored_by: 382022 + rank: 14 + popularity: 336 + members: 706020 + favorites: 23200 + synopsis: |- + Substitute Soul Reaper Ichigo Kurosaki spends his days fighting against Hollows, dangerous evil spirits that threaten Karakura Town. Ichigo carries out his quest with his closest allies: Orihime Inoue, his childhood friend with a talent for healing; Yasutora Sado, his high school classmate with superhuman strength; and Uryuu Ishida, Ichigo's Quincy rival. + + Ichigo's vigilante routine is disrupted by the sudden appearance of Asguiaro Ebern, a dangerous Arrancar who heralds the return of Yhwach, an ancient Quincy king. Yhwach seeks to reignite the historic blood feud between Soul Reaper and Quincy, and he sets his sights on erasing both the human world and the Soul Society for good. + + Yhwach launches a two-pronged invasion into both the Soul Society and Hueco Mundo, the home of Hollows and Arrancar. In retaliation, Ichigo and his friends must fight alongside old allies and enemies alike to end Yhwach's campaign of carnage before the world itself comes to an end. + + [Written by MAL Rewrite] + background: 'Bleach: Sennen Kessen-hen adapts volume 55 to volume 61 of the original manga. It was released on Blu-ray + on April 26, 2023.' + season: fall + year: 2022 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50594 + url: https://myanimelist.net/anime/50594/Suzume_no_Tojimari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1598/128450.jpg + small_image_url: https://myanimelist.net/images/anime/1598/128450t.jpg + large_image_url: https://myanimelist.net/images/anime/1598/128450l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1598/128450.webp + small_image_url: https://myanimelist.net/images/anime/1598/128450t.webp + large_image_url: https://myanimelist.net/images/anime/1598/128450l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FVU0zESXS5c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Suzume no Tojimari + - type: Synonym + title: Suzume's Door-Locking + - type: Japanese + title: すずめの戸締まり + - type: English + title: Suzume + title: Suzume no Tojimari + title_english: Suzume + title_japanese: すずめの戸締まり + title_synonyms: + - Suzume's Door-Locking + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-11-11T00:00:00+00:00' + to: null + prop: + from: + day: 11 + month: 11 + year: 2022 + to: + day: null + month: null + year: null + string: Nov 11, 2022 + duration: 2 hr 1 min + rating: PG-13 - Teens 13 or older + score: 8.24 + scored_by: 280774 + rank: 403 + popularity: 516 + members: 504605 + favorites: 5492 + synopsis: |- + On her way to school one day, Suzume Iwato stumbles upon Souta Munakata, a young man searching for abandoned areas. The high school girl directs Souta to a nearby ruin, but out of pure curiosity, she herself decides to head to the same destination. + + Once there, Suzume discovers an isolated door with a dreamlike universe lying beyond it—a place that she can see and feel, but not enter. A strange stone rests on the ground nearby, but it turns into a cat-like creature and scurries away when Suzume lifts it. Suddenly afraid, she heads back toward her school, not realizing that her act of leaving the door open will have consequences. + + With the "keystone" released, the evil within the other universe can now freely escape and wreak havoc throughout Japan. Intending to correct her dangerous mistake, Suzume joins Souta—whose true goal is to prevent evil from festering—in finding and locking all open doors before the country is destroyed. + + [Written by MAL Rewrite] + background: The film had its first preview screening in IMAX on November 7, 2022. Suzume no Tojimari was nominated for + Best Animated Feature Film at the 81st Golden Globe Awards. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1929 + type: anime + name: voque ting + url: https://myanimelist.net/anime/producer/1929/voque_ting + - mal_id: 1956 + type: anime + name: STORY + url: https://myanimelist.net/anime/producer/1956/STORY + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 291 + type: anime + name: CoMix Wave Films + url: https://myanimelist.net/anime/producer/291/CoMix_Wave_Films + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: [] + - mal_id: 50425 + url: https://myanimelist.net/anime/50425/Fuufu_Ijou_Koibito_Miman + images: + jpg: + image_url: https://myanimelist.net/images/anime/1713/126442.jpg + small_image_url: https://myanimelist.net/images/anime/1713/126442t.jpg + large_image_url: https://myanimelist.net/images/anime/1713/126442l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1713/126442.webp + small_image_url: https://myanimelist.net/images/anime/1713/126442t.webp + large_image_url: https://myanimelist.net/images/anime/1713/126442l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/l5D8xknhQNA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fuufu Ijou, Koibito Miman. + - type: Synonym + title: More than a Couple + - type: Synonym + title: Less than Lovers. + - type: Synonym + title: Fuukoi + - type: Japanese + title: 夫婦以上、恋人未満。 + - type: English + title: More than a Married Couple, but Not Lovers. + title: Fuufu Ijou, Koibito Miman. + title_english: More than a Married Couple, but Not Lovers. + title_japanese: 夫婦以上、恋人未満。 + title_synonyms: + - More than a Couple + - Less than Lovers. + - Fuukoi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-09T00:00:00+00:00' + to: '2022-12-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 10 + year: 2022 + to: + day: 25 + month: 12 + year: 2022 + string: Oct 9, 2022 to Dec 25, 2022 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.6 + scored_by: 237236 + rank: 1807 + popularity: 619 + members: 432689 + favorites: 5008 + synopsis: |- + Third-year high school student Jirou Yakuin is in love with his childhood friend and classmate, Shiori Sakurazaka. Thus, he hopes to be paired with her for the marriage practical: their school's practice of randomly selecting boy-girl pairs to live as pretend married couples while monitoring and rating them on how close they have gotten. Meanwhile, the lively Akari Watanabe wants to be assigned to her crush, the popular and good-looking Minami Tenjin. + + Much to their dismay, Jirou and Akari find out that not only have they been paired together, but so have Shiori and Minami! Determined to be with their crushes, Jirou and Akari strive to earn as many points as possible, as the top 10 pairs earn the right to switch their partners—so long as both couples agree. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2022 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 2246 + type: anime + name: studio MOTHER + url: https://myanimelist.net/anime/producer/2246/studio_MOTHER + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52198 + url: https://myanimelist.net/anime/52198/Kaguya-sama_wa_Kokurasetai__First_Kiss_wa_Owaranai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1670/130060.jpg + small_image_url: https://myanimelist.net/images/anime/1670/130060t.jpg + large_image_url: https://myanimelist.net/images/anime/1670/130060l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1670/130060.webp + small_image_url: https://myanimelist.net/images/anime/1670/130060t.webp + large_image_url: https://myanimelist.net/images/anime/1670/130060l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8Zy8-00-Pls?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai' + - type: Japanese + title: かぐや様は告らせたい -ファーストキッスは終わらない- + - type: English + title: 'Kaguya-sama: Love is War -The First Kiss That Never Ends-' + title: 'Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai' + title_english: 'Kaguya-sama: Love is War -The First Kiss That Never Ends-' + title_japanese: かぐや様は告らせたい -ファーストキッスは終わらない- + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-12-17T00:00:00+00:00' + to: null + prop: + from: + day: 17 + month: 12 + year: 2022 + to: + day: null + month: null + year: null + string: Dec 17, 2022 + duration: 1 hr 36 min + rating: PG-13 - Teens 13 or older + score: 8.72 + scored_by: 217276 + rank: 58 + popularity: 717 + members: 381912 + favorites: 2333 + synopsis: |- + After their first kiss, Kaguya Shinomiya and Miyuki Shirogane are left unsure where their relationship stands. The troubling uncertainty of whether they could be considered an official couple unleashes newfound problems as both Kaguya and Shirogane struggle to sort out their feelings. + + While the lovestruck student council officers fret, the Christmas season rolls around, and romance is in the air. In the face of widespread tenderness, Kaguya and Shirogane must endure their affectionate battle of wits once more. Should they reconcile their feelings for one another, they may find themselves within reach of what they have both been longing for so long: true love. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 49709 + url: https://myanimelist.net/anime/49709/Fumetsu_no_Anata_e_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1271/127700.jpg + small_image_url: https://myanimelist.net/images/anime/1271/127700t.jpg + large_image_url: https://myanimelist.net/images/anime/1271/127700l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1271/127700.webp + small_image_url: https://myanimelist.net/images/anime/1271/127700t.webp + large_image_url: https://myanimelist.net/images/anime/1271/127700l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fAiDXJPCcbk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fumetsu no Anata e Season 2 + - type: Synonym + title: To Your Eternity 2nd Season + - type: Synonym + title: To You + - type: Synonym + title: the Immortal 2nd Season + - type: Japanese + title: 不滅のあなたへ Season2 + - type: English + title: To Your Eternity Season 2 + title: Fumetsu no Anata e Season 2 + title_english: To Your Eternity Season 2 + title_japanese: 不滅のあなたへ Season2 + title_synonyms: + - To Your Eternity 2nd Season + - To You + - the Immortal 2nd Season + type: TV + source: Manga + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2022-10-23T00:00:00+00:00' + to: '2023-03-12T00:00:00+00:00' + prop: + from: + day: 23 + month: 10 + year: 2022 + to: + day: 12 + month: 3 + year: 2023 + string: Oct 23, 2022 to Mar 12, 2023 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.12 + scored_by: 137660 + rank: 562 + popularity: 817 + members: 340886 + favorites: 1765 + synopsis: |- + After seeing enough death and tragedy, the immortal Fushi secludes himself on an island, defending himself from enemy Nokkers. However, instead of attacking Fushi in isolation, Nokkers begin targeting the settlements outside of his reach in hopes of luring him out. Soon, a group known as the Guardians—led by Hisame, the descendant of the deceased warrior Hayase—finds Fushi. + + Inspired by how Fushi protected Janada Island from the Nokkers years ago, the Guardians have grown a considerable following and are recognized throughout the world. Initially reluctant, Fushi allows the Guardians to accompany him to the site of the Nokkers' recent attack. In their village, Fushi meets a few valuable allies, both new and old. But as the conflict with the Nokkers only leads to more loss, Fushi must find the inner strength to face his inevitable sorrow. + + [Written by MAL Rewrite] + background: Fumetsu no Anata e 2nd Season was released in two volumes on Blu-ray and DVD from April 26, 2023, to July + 26, 2023. + season: fall + year: 2022 + broadcast: + day: Sundays + time: '19:00' + timezone: Asia/Tokyo + string: Sundays at 19:00 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: [] + studios: + - mal_id: 1967 + type: anime + name: Drive + url: https://myanimelist.net/anime/producer/1967/Drive + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49891 + url: https://myanimelist.net/anime/49891/Tensei_shitara_Ken_deshita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1191/127909.jpg + small_image_url: https://myanimelist.net/images/anime/1191/127909t.jpg + large_image_url: https://myanimelist.net/images/anime/1191/127909l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1191/127909.webp + small_image_url: https://myanimelist.net/images/anime/1191/127909t.webp + large_image_url: https://myanimelist.net/images/anime/1191/127909l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TDN4Rh7VvkU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Ken deshita + - type: Synonym + title: I became the sword by transmigrating + - type: Synonym + title: TenKen + - type: Japanese + title: 転生したら剣でした + - type: English + title: Reincarnated as a Sword + title: Tensei shitara Ken deshita + title_english: Reincarnated as a Sword + title_japanese: 転生したら剣でした + title_synonyms: + - I became the sword by transmigrating + - TenKen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-05T00:00:00+00:00' + to: '2022-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2022 + to: + day: 21 + month: 12 + year: 2022 + string: Oct 5, 2022 to Dec 21, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 167846 + rank: 2268 + popularity: 825 + members: 338936 + favorites: 1904 + synopsis: |- + A nameless sword wakes up to discover he has been reincarnated from his former life as a human. With his power of telekinesis, he moves around this new world, acquiring several skills and abilities. When the sword comes upon a forest filled with monsters, he meets a young girl fleeing from a beast. Grabbing the sword, the girl easily defeats the monster. After introducing herself as Fran, she names the sword "Shishou" and officially becomes his wielder. + + The two set out to become adventurers, but unfortunately for Fran, she is a member of the Black Cat Tribe—a Beastkin group with a bad reputation. No member of this tribe has ever evolved into a mightier beast, but Fran plans to be the first and achieve her parents' dream. As Shishou promises to remain her sword until she attains her goal, they form an unstoppable partnership of impressive strength. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2022 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 282 + type: anime + name: Gentosha Comics + url: https://myanimelist.net/anime/producer/282/Gentosha_Comics + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2440 + type: anime + name: Micro House + url: https://myanimelist.net/anime/producer/2440/Micro_House + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 53273 + url: https://myanimelist.net/anime/53273/JoJo_no_Kimyou_na_Bouken_Part_6__Stone_Ocean_Part_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1233/128920.jpg + small_image_url: https://myanimelist.net/images/anime/1233/128920t.jpg + large_image_url: https://myanimelist.net/images/anime/1233/128920l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1233/128920.webp + small_image_url: https://myanimelist.net/images/anime/1233/128920t.webp + large_image_url: https://myanimelist.net/images/anime/1233/128920l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KZ3RCnoZlLw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3' + - type: Japanese + title: ジョジョの奇妙な冒険 ストーンオーシャン + - type: English + title: 'JoJo''s Bizarre Adventure: Stone Ocean Part 3' + title: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3' + title_english: 'JoJo''s Bizarre Adventure: Stone Ocean Part 3' + title_japanese: ジョジョの奇妙な冒険 ストーンオーシャン + title_synonyms: [] + type: ONA + source: Manga + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2022-12-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 12 + year: 2022 + to: + day: null + month: null + year: null + string: Dec 1, 2022 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.51 + scored_by: 203019 + rank: 159 + popularity: 913 + members: 309133 + favorites: 3592 + synopsis: |- + After finally escaping the confines of Green Dolphin Street Jail, Jolyne Kuujou—alongside her companions Ermes Costello and Emporio Alniño—pursues the villainous priest Enrico Pucci across the state of Florida. Jolyne's allies, Weather Report and Narciso Anasui, struggle to catch up with her in order to help bring an end to Pucci's plot. As both parties pursue the priest, they must battle against Pucci's band of enemy Stand users. + + While Jolyne's comrades fight for their lives, Pucci races to the Kennedy Space Center. There he hopes to enact his ultimate goal, one he believes God has entrusted to him. He aims to fulfill the will of the Joestars' blood enemy Dio Brando and—by robbing humanity of free will and making them slaves to fate—to create a world where all humans are blissfully happy. + + Unable to rely on the aid of her comatose father Joutarou, Jolyne must weaponize all she has learned in prison to confront Pucci in a climactic battle while the world itself hangs in the balance. + + [Written by MAL Rewrite] + background: 'JoJo no Kimyou na Bouken Part 6: Stone Ocean Part 3 adapts chapters 103-158 of the original manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52865 + url: https://myanimelist.net/anime/52865/Romantic_Killer + images: + jpg: + image_url: https://myanimelist.net/images/anime/1764/142001.jpg + small_image_url: https://myanimelist.net/images/anime/1764/142001t.jpg + large_image_url: https://myanimelist.net/images/anime/1764/142001l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1764/142001.webp + small_image_url: https://myanimelist.net/images/anime/1764/142001t.webp + large_image_url: https://myanimelist.net/images/anime/1764/142001l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jcmnHOJm8-A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Romantic Killer + - type: Japanese + title: ロマンティック・キラー + - type: English + title: Romantic Killer + title: Romantic Killer + title_english: Romantic Killer + title_japanese: ロマンティック・キラー + title_synonyms: [] + type: ONA + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-27T00:00:00+00:00' + to: null + prop: + from: + day: 27 + month: 10 + year: 2022 + to: + day: null + month: null + year: null + string: Oct 27, 2022 + duration: 26 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 158386 + rank: 951 + popularity: 953 + members: 293569 + favorites: 3331 + synopsis: |- + Anzu Hoshino needs only three things in her life: video games, chocolate, and her beloved cat. Unlike other high school girls, Anzu has no time for or interest in romance. But as she begins playing a poorly programmed 3D otome game, a bizarre flying wizard named Riri emerges from the screen and calls Anzu "subject one," the first person who will experience a dating game harem storyline in real life. + + Despite Anzu's fiery protests, Riri confiscates her favorite things to force her to focus on love. Riri orchestrates a series of unlucky incidents and romantic cliches that lead her to meet Tsukasa Kazuki, one of the most attractive boys in her school. Still enraged, Anzu is adamant about resisting Tsukasa's charm. As all the ridiculous fabricated scenarios help Anzu warm up to Tsukasa's pleasant nature, Riri throws other stereotypical pretty boys her way—and avoiding romance quickly becomes almost impossible. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + licensors: [] + studios: + - mal_id: 1380 + type: anime + name: domerica + url: https://myanimelist.net/anime/producer/1380/domerica + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 73 + type: anime + name: Reverse Harem + url: https://myanimelist.net/anime/genre/73/Reverse_Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 42962 + url: https://myanimelist.net/anime/42962/Uzaki-chan_wa_Asobitai_Double + images: + jpg: + image_url: https://myanimelist.net/images/anime/1539/128058.jpg + small_image_url: https://myanimelist.net/images/anime/1539/128058t.jpg + large_image_url: https://myanimelist.net/images/anime/1539/128058l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1539/128058.webp + small_image_url: https://myanimelist.net/images/anime/1539/128058t.webp + large_image_url: https://myanimelist.net/images/anime/1539/128058l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Wew78Cq8ZKE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uzaki-chan wa Asobitai! Double + - type: Synonym + title: Uzaki-chan wa Asobitai! 2nd Season + - type: Synonym + title: Uzaki-chan wa Asobitai! ω + - type: Synonym + title: Uzaki-chan Wants to Hang Out! 2nd Season + - type: Synonym + title: Uzaki-chan Wants to Hang Out! ω + - type: Japanese + title: 宇崎ちゃんは遊びたい!ω(だぶる) + - type: English + title: Uzaki-chan Wants to Hang Out! Season 2 + title: Uzaki-chan wa Asobitai! Double + title_english: Uzaki-chan Wants to Hang Out! Season 2 + title_japanese: 宇崎ちゃんは遊びたい!ω(だぶる) + title_synonyms: + - Uzaki-chan wa Asobitai! 2nd Season + - Uzaki-chan wa Asobitai! ω + - Uzaki-chan Wants to Hang Out! 2nd Season + - Uzaki-chan Wants to Hang Out! ω + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-10-01T00:00:00+00:00' + to: '2022-12-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2022 + to: + day: 24 + month: 12 + year: 2022 + string: Oct 1, 2022 to Dec 24, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 99605 + rank: 3737 + popularity: 1118 + members: 253062 + favorites: 950 + synopsis: |- + During the summer holidays, energetic Hana Uzaki spent most of her time accompanying her lonesome upperclassman, Shinichi Sakurai. Now that school has resumed, Uzaki's teasing continues to ramp up, much to Sakurai's constant annoyance. Nevertheless, no amount of ridicule can damage the pair's relationship—which only seems to be getting better as their college days fly by! + + [Written by MAL Rewrite] + background: Uzaki-chan wa Asobitai! Double was released on Blu-ray and DVD in three volumes from February 22, 2023 to + April 26, 2023. + season: fall + year: 2022 + broadcast: + day: Saturdays + time: '21:00' + timezone: Asia/Tokyo + string: Saturdays at 21:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1731 + type: anime + name: INCS toenter + url: https://myanimelist.net/anime/producer/1731/INCS_toenter + licensors: [] + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + demographics: [] + - mal_id: 49784 + url: https://myanimelist.net/anime/49784/Mairimashita_Iruma-kun_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1688/128720.jpg + small_image_url: https://myanimelist.net/images/anime/1688/128720t.jpg + large_image_url: https://myanimelist.net/images/anime/1688/128720l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1688/128720.webp + small_image_url: https://myanimelist.net/images/anime/1688/128720t.webp + large_image_url: https://myanimelist.net/images/anime/1688/128720l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v0M9JojWdFA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mairimashita! Iruma-kun 3rd Season + - type: Synonym + title: Welcome to Demon School! Iruma-kun 3rd Season + - type: Japanese + title: 魔入りました!入間くん + - type: English + title: Welcome to Demon School! Iruma-kun Season 3 + title: Mairimashita! Iruma-kun 3rd Season + title_english: Welcome to Demon School! Iruma-kun Season 3 + title_japanese: 魔入りました!入間くん + title_synonyms: + - Welcome to Demon School! Iruma-kun 3rd Season + type: TV + source: Manga + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2022-10-08T00:00:00+00:00' + to: '2023-03-04T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2022 + to: + day: 4 + month: 3 + year: 2023 + string: Oct 8, 2022 to Mar 4, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.84 + scored_by: 117667 + rank: 1083 + popularity: 1133 + members: 249634 + favorites: 1356 + synopsis: |- + Following their heroic efforts at Walter Park, the students of the misfit class return to Babyls Demon School after their summer vacation. What awaits them is not only adoration and admiration but also the shocking revelation that, in order to stay in the luxurious Royal One classroom, the entire class must be promoted to Dalet rank before entering the second year. + + As the Harvest and Music Festivals are right around the corner, there seem to be ample opportunities to rank up. Doing so will not be simple, however, as no class thus far has managed to accomplish such a feat. Hoping to give the misfit class a chance to achieve the improbable, the school appoints special tutors to aid in confronting the challenges that lie ahead. + + With his sights set beyond Dalet, Iruma Suzuki decides to take strides toward the goal of ranking up, starting with gaining acknowledgement from his special tutor: the short-tempered and selfish Bachiko Barbatos. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2022 + broadcast: + day: Saturdays + time: '18:25' + timezone: Asia/Tokyo + string: Saturdays at 18:25 (JST) + producers: + - mal_id: 111 + type: anime + name: NHK + url: https://myanimelist.net/anime/producer/111/NHK + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49877 + url: https://myanimelist.net/anime/49877/Tensei_shitara_Slime_Datta_Ken_Movie__Guren_no_Kizuna-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1745/128238.jpg + small_image_url: https://myanimelist.net/images/anime/1745/128238t.jpg + large_image_url: https://myanimelist.net/images/anime/1745/128238l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1745/128238.webp + small_image_url: https://myanimelist.net/images/anime/1745/128238t.webp + large_image_url: https://myanimelist.net/images/anime/1745/128238l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nJEGXG_vXbo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tensei shitara Slime Datta Ken Movie: Guren no Kizuna-hen' + - type: Synonym + title: TenSura + - type: Synonym + title: That Time I Got Reincarnated as a Slime Movie + - type: Japanese + title: 劇場版 転生したらスライムだった件 紅蓮の絆編 + - type: English + title: 'That Time I Got Reincarnated as a Slime: The Movie - Scarlet Bond' + title: 'Tensei shitara Slime Datta Ken Movie: Guren no Kizuna-hen' + title_english: 'That Time I Got Reincarnated as a Slime: The Movie - Scarlet Bond' + title_japanese: 劇場版 転生したらスライムだった件 紅蓮の絆編 + title_synonyms: + - TenSura + - That Time I Got Reincarnated as a Slime Movie + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2022-11-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 11 + year: 2022 + to: + day: null + month: null + year: null + string: Nov 25, 2022 + duration: 1 hr 48 min + rating: PG-13 - Teens 13 or older + score: 7.63 + scored_by: 111572 + rank: 1711 + popularity: 1137 + members: 248801 + favorites: 1357 + synopsis: |- + In Raja, a small country located to the west of Tempest. Rimuru and his companions get involved in a long-running conspiracy that swirls around the mysterious power of the queen. Rimuru and his commander Benimaru also encounter another ogre survivor named Hiiro, a man that used to be the brother of Benimaru. + + (Source: ANN) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52046 + url: https://myanimelist.net/anime/52046/Yuusha_Party_wo_Tsuihou_sareta_Beast_Tamer_Saikyoushu_no_Nekomimi_Shoujo_to_Deau + images: + jpg: + image_url: https://myanimelist.net/images/anime/1084/126652.jpg + small_image_url: https://myanimelist.net/images/anime/1084/126652t.jpg + large_image_url: https://myanimelist.net/images/anime/1084/126652l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1084/126652.webp + small_image_url: https://myanimelist.net/images/anime/1084/126652t.webp + large_image_url: https://myanimelist.net/images/anime/1084/126652l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s5-f9RDK1B4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau + - type: Synonym + title: The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race + - type: Japanese + title: 勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う + - type: English + title: Beast Tamer + title: Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau + title_english: Beast Tamer + title_japanese: 勇者パーティーを追放されたビーストテイマー、最強種の猫耳少女と出会う + title_synonyms: + - The Beast Tamer Who Got Kicked Out From His Party Meets a Cat Girl From the Superior Race + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2022-10-02T00:00:00+00:00' + to: '2022-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2022 + to: + day: 25 + month: 12 + year: 2022 + string: Oct 2, 2022 to Dec 25, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.9 + scored_by: 120692 + rank: 5723 + popularity: 1166 + members: 244452 + favorites: 1152 + synopsis: |- + Among all the beasts that roam the world, there are unique types of "ultimate species" that harbor immense strength and magical prowess considered to be at the top of the power scale. As such, many humans covet their abilities, leading some of these species to the brink of extinction. + + As a beast tamer, Rein Shroud can employ the assistance of various animals for many tasks, such as reconnaissance and logistics. By virtue of his ability, he joins a party led by the vile and manipulative hero Arios Orlando, only to be banished after six months due to his uselessness as a non-combative class. + + However, unbeknownst to the team that cast him away, Rein is an exception among beast tamers. His potential becomes apparent when he meets Kanade—a cat spirit who is also one of the ultimate species—and is able to form a contract with her. With Kanade by his side, Rein sets out on his journey as an adventurer, steadily rising up the ranks and meeting more ultimate species along the way. + + [Written by MAL Rewrite] + background: Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau was released on Blu-ray + and DVD in four volumes from January 11, 2023 to April 5, 2023. + season: fall + year: 2022 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1563 + type: anime + name: Hakuhodo + url: https://myanimelist.net/anime/producer/1563/Hakuhodo + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + licensors: [] + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 49979 + url: https://myanimelist.net/anime/49979/Akuyaku_Reijou_nanode_Last_Boss_wo_Kattemimashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1648/126110.jpg + small_image_url: https://myanimelist.net/images/anime/1648/126110t.jpg + large_image_url: https://myanimelist.net/images/anime/1648/126110l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1648/126110.webp + small_image_url: https://myanimelist.net/images/anime/1648/126110t.webp + large_image_url: https://myanimelist.net/images/anime/1648/126110l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ruqUkGmswA0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akuyaku Reijou nanode Last Boss wo Kattemimashita + - type: Synonym + title: Akulas + - type: Japanese + title: 悪役令嬢なのでラスボスを飼ってみました + - type: English + title: I'm the Villainess, So I'm Taming the Final Boss + title: Akuyaku Reijou nanode Last Boss wo Kattemimashita + title_english: I'm the Villainess, So I'm Taming the Final Boss + title_japanese: 悪役令嬢なのでラスボスを飼ってみました + title_synonyms: + - Akulas + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-01T00:00:00+00:00' + to: '2022-12-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2022 + to: + day: 17 + month: 12 + year: 2022 + string: Oct 1, 2022 to Dec 17, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.2 + scored_by: 107151 + rank: 3922 + popularity: 1275 + members: 220430 + favorites: 1208 + synopsis: |- + Aileen Lauren Dautriche's life changes forever on the day her engagement with the crown prince Cedric Jeanne Elmir is nullified so he can be together with Lilia Rainworth. The event triggers Aileen's memories from her past life—she has been reincarnated in an otome game as the villainess, who is destined to die in the final act. To prevent her predetermined demise, Aileen has only one option: to court the game's last boss, Claude Jeanne Elmir—the proclaimed "Demon King" and Cedric's half-brother—and marry him. + + However, it is easier said than done, as Claude distrusts her intentions. Instead of giving up, Aileen adamantly tries to win his heart by helping Claude fulfill his wish: to build peace between humankind and demonic beasts. But time is running out, and it is up to Aileen to change the course of not only her tragic ending but Claude's as well. + + [Written by MAL Rewrite] + background: A special program featuring highlights of the story and characters was broadcasted on AbemaTV prior to the + airing of the first episode. + season: fall + year: 2022 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 50710 + url: https://myanimelist.net/anime/50710/Urusei_Yatsura_2022 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1233/129144.jpg + small_image_url: https://myanimelist.net/images/anime/1233/129144t.jpg + large_image_url: https://myanimelist.net/images/anime/1233/129144l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1233/129144.webp + small_image_url: https://myanimelist.net/images/anime/1233/129144t.webp + large_image_url: https://myanimelist.net/images/anime/1233/129144l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IrXb_W3o8dk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Urusei Yatsura (2022) + - type: Synonym + title: Those Obnoxious Aliens + - type: Synonym + title: The Return of Lum + - type: Synonym + title: Lum + - type: Synonym + title: the Invader Girl + - type: Japanese + title: うる星やつら + - type: English + title: Urusei Yatsura + title: Urusei Yatsura (2022) + title_english: Urusei Yatsura + title_japanese: うる星やつら + title_synonyms: + - Those Obnoxious Aliens + - The Return of Lum + - Lum + - the Invader Girl + type: TV + source: Manga + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2022-10-14T00:00:00+00:00' + to: '2023-03-24T00:00:00+00:00' + prop: + from: + day: 14 + month: 10 + year: 2022 + to: + day: 24 + month: 3 + year: 2023 + string: Oct 14, 2022 to Mar 24, 2023 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 56348 + rank: 2645 + popularity: 1367 + members: 204437 + favorites: 1256 + synopsis: |- + When aliens known as the Oni threaten to invade the Earth, they promise to leave under one condition—a randomly-chosen human must win a one-on-one game of tag against Lum, the beautiful daughter of the Oni leader. The "lucky" person selected happens to be the lustful and unlucky high schooler Ataru Moroboshi. Given 10 days to attempt to grab Lum's horns, Ataru realizes how impossible the challenge is as he is faced with Lum's extraterrestrial powers. + + Motivated by a promise of marriage from his childhood friend Shinobu Miyake, Ataru manages to catch Lum off guard. He mistakenly grabs hold of her bikini top first, but he eventually achieves his true goal. Although the game is over, Lum misunderstands that she is the one whom Ataru wants to marry, and she decides to move in with him. The poor student constantly tries to shake off the clingy Lum while doing his best to reconcile with his desired fiancée. After Ataru's heroic feat results in such a disastrous outcome, it is questionable whether luck will ever be on his side. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2022 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1556 + type: anime + name: Fuji Creative + url: https://myanimelist.net/anime/producer/1556/Fuji_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52193 + url: https://myanimelist.net/anime/52193/Akiba_Meido_Sensou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1217/129604.jpg + small_image_url: https://myanimelist.net/images/anime/1217/129604t.jpg + large_image_url: https://myanimelist.net/images/anime/1217/129604l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1217/129604.webp + small_image_url: https://myanimelist.net/images/anime/1217/129604t.webp + large_image_url: https://myanimelist.net/images/anime/1217/129604l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tDPaiz4ValU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akiba Meido Sensou + - type: Synonym + title: Akiba Maid Sensou + - type: Japanese + title: アキバ冥途戦争 + - type: English + title: Akiba Maid War + title: Akiba Meido Sensou + title_english: Akiba Maid War + title_japanese: アキバ冥途戦争 + title_synonyms: + - Akiba Maid Sensou + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-07T00:00:00+00:00' + to: '2022-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2022 + to: + day: 23 + month: 12 + year: 2022 + string: Oct 7, 2022 to Dec 23, 2022 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.6 + scored_by: 79241 + rank: 1800 + popularity: 1431 + members: 194662 + favorites: 1392 + synopsis: |- + The innocent Nagomi Wahira has always admired the cute girls serving at maid cafes. Hoping to fulfill her dream of becoming one, she moves to Akihabara to work at the maid cafe Ton Tokoton. + + Nagomi's first day seems completely normal—until she has to run an "errand" at a rival maid cafe along with her fellow recruit, the mature Ranko Mannen. There, things quickly go south, and Nagomi soon gets her first taste of Akihabara's violent maid wars. As she watches Ranko calmly battle her way through a horde of gun- and knife-wielding maids, Nagomi realizes that maid cafes are drastically unlike what she had envisioned. + + While struggling to reconcile her expectations with the harsh reality she finds herself in, Nagomi searches for the enjoyment she once saw in the lives of maids. + + [Written by MAL Rewrite] + background: The word "Meido" (冥途) in the title is a play on words, where the kanji means "underworld," and is pronounced + the same as "maid" in Japanese pronunciation. + season: fall + year: 2022 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1358 + type: anime + name: Fields + url: https://myanimelist.net/anime/producer/1358/Fields + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 51098 + url: https://myanimelist.net/anime/51098/Shinobi_no_Ittoki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1476/125643.jpg + small_image_url: https://myanimelist.net/images/anime/1476/125643t.jpg + large_image_url: https://myanimelist.net/images/anime/1476/125643l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1476/125643.webp + small_image_url: https://myanimelist.net/images/anime/1476/125643t.webp + large_image_url: https://myanimelist.net/images/anime/1476/125643l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ChhpLcr-z58?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinobi no Ittoki + - type: Synonym + title: Ittoki the Ninja + - type: Japanese + title: 忍の一時 + - type: English + title: Shinobi no Ittoki + title: Shinobi no Ittoki + title_english: Shinobi no Ittoki + title_japanese: 忍の一時 + title_synonyms: + - Ittoki the Ninja + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-04T00:00:00+00:00' + to: '2022-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2022 + to: + day: 20 + month: 12 + year: 2022 + string: Oct 4, 2022 to Dec 20, 2022 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.06 + scored_by: 67755 + rank: 10734 + popularity: 1462 + members: 189886 + favorites: 709 + synopsis: "Ittoki Sakuraba fails to understand why his mother, his uncle, and his childhood friend, Kousetsu, seem to\ + \ take his security so seriously. Kousetsu constantly follows and observes him with no regard for his privacy, focusing\ + \ only on keeping him safe every waking moment. But the consistent hounding starts making sense when an adorable second-year\ + \ student at his high school, Satomi Tsubaki, asks Ittoki out on a date. Though initially innocent, Tsubaki's true\ + \ intentions soon become apparent when Ittoki visits her house; she plans to assassinate him, and she is not alone.\ + \ Surprisingly, the ones who come to his aid are his uncle and Kousetsu—donning their dark and deadly ninja attire.\ + \ \n\nAfter Ittoki is escorted to safety, his mother reveals the truth: he is the 19th heir to a noble clan of ninjas\ + \ known as the Iga, and the target of assassination by their rival clan, the Koga. In order to protect himself against\ + \ this new threat, Ittoki must hone his skills at the only ninja academy remaining in Japan: the Kokuten Ninja Academy.\n\ + \n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2022 + broadcast: + day: Tuesdays + time: '20:00' + timezone: Asia/Tokyo + string: Tuesdays at 20:00 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2609 + type: anime + name: Vobile Japan + url: https://myanimelist.net/anime/producer/2609/Vobile_Japan + licensors: [] + studios: + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 49828 + url: https://myanimelist.net/anime/49828/Kidou_Senshi_Gundam__Suisei_no_Majo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1440/127624.jpg + small_image_url: https://myanimelist.net/images/anime/1440/127624t.jpg + large_image_url: https://myanimelist.net/images/anime/1440/127624l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1440/127624.webp + small_image_url: https://myanimelist.net/images/anime/1440/127624t.webp + large_image_url: https://myanimelist.net/images/anime/1440/127624l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XLDVIwtBFx4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kidou Senshi Gundam: Suisei no Majo' + - type: Synonym + title: G-Witch + - type: Japanese + title: 機動戦士ガンダム 水星の魔女 + - type: English + title: 'Mobile Suit Gundam: The Witch from Mercury' + title: 'Kidou Senshi Gundam: Suisei no Majo' + title_english: 'Mobile Suit Gundam: The Witch from Mercury' + title_japanese: 機動戦士ガンダム 水星の魔女 + title_synonyms: + - G-Witch + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-02T00:00:00+00:00' + to: '2023-01-08T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2022 + to: + day: 8 + month: 1 + year: 2023 + string: Oct 2, 2022 to Jan 8, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.85 + scored_by: 94143 + rank: 1055 + popularity: 1484 + members: 187026 + favorites: 1883 + synopsis: |- + Suletta Mercury leaves her planet and enters the Asticassia School of Technology at the behest of her mother. There, right and wrong are determined through duels between students, and the top-ranking duelist will receive Miorine Rembran as their fiancée—this prize being decided by Miorine's father. + + When Guel Jeturk, the best pilot in school and Miorine's current fiancé, demands that his betrothed move in with him, Suletta disapproves, so Guel challenges her. Although she emerges as champion, Suletta is subsequently detained on suspicion of piloting a forbidden type of mobile suit—a GUND-ARM, or "Gundam"—which results in her victory being voided. + + Miorine refuses to accept any more injustices and proposes another duel with even higher stakes. Now, Suletta must triumph a second time, otherwise she will be expelled and the Gundam Aerial that means so much to her will be destroyed. + + [Written by MAL Rewrite] + background: 'A short novel set before the events of Kidou Senshi Gundam: Suisei no Majo titled Yuri Kago no Hoshi was + written by Ichirou Ookouchi and published on the anime''s official Japanese website. The novel was used in the production + of the opening theme. The Kidou Senshi Gundam: Suisei no Majo - Asticassia School of Technology Radio Committee program + hosted by the series'' voice actors has streamed on the Onsen internet radio station since October 9, 2022.' + season: fall + year: 2022 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 51403 + url: https://myanimelist.net/anime/51403/Renai_Flops + images: + jpg: + image_url: https://myanimelist.net/images/anime/1620/130589.jpg + small_image_url: https://myanimelist.net/images/anime/1620/130589t.jpg + large_image_url: https://myanimelist.net/images/anime/1620/130589l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1620/130589.webp + small_image_url: https://myanimelist.net/images/anime/1620/130589t.webp + large_image_url: https://myanimelist.net/images/anime/1620/130589l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XC1val6Psks?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Renai Flops + - type: Japanese + title: 恋愛フロップス + - type: English + title: Love Flops + title: Renai Flops + title_english: Love Flops + title_japanese: 恋愛フロップス + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2022-10-12T00:00:00+00:00' + to: '2022-12-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2022 + to: + day: 28 + month: 12 + year: 2022 + string: Oct 12, 2022 to Dec 28, 2022 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.7 + scored_by: 69950 + rank: 6952 + popularity: 1528 + members: 181233 + favorites: 871 + synopsis: |- + In the near future when technology has significantly advanced, a famous AI TV fortune teller seemingly foresees high school student Asahi Kashiwagi's day with pinpoint accuracy. On his way to school, he encounters Aoi Izumisawa, Bai Mongfa, Karin Istel, Amelia Irving, and Ilya Ilyukhin. Despite meeting them for the first time, Asahi suddenly receives love confessions from all of them at the end of the same day, perfectly aligning with the fortune teller's prediction. + + As if that was not enough, Asahi soon learns that these five individuals are actually candidates to become his bride, and they have been invited by his father to live at Asahi's home. Left with no other choice, he reluctantly allows them to stay, resulting in a bawdy turn of events that brightens up his average high school life. + + However, as Asahi spends more time with them, forgotten memories gradually resurface. While uncovering the hidden truth, Asahi begins to believe that his fate with these potential partners might be more than just mere coincidence. + + [Written by MAL Rewrite] + background: Renai Flops was released on Blu-ray in two volumes from January 25, 2023, to March 24, 2023. The Renai Flops + Rajio Oideyo! Asaichi program hosted by the series' voice actors has streamed on the Onsen internet radio station + since October 11, 2022. + season: fall + year: 2022 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1614 + type: anime + name: NTT Plala + url: https://myanimelist.net/anime/producer/1614/NTT_Plala + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/53-2023-winter.yaml b/test/fixtures/jikan/season_matrix/53-2023-winter.yaml new file mode 100644 index 0000000..a5d7f3d --- /dev/null +++ b/test/fixtures/jikan/season_matrix/53-2023-winter.yaml @@ -0,0 +1,3417 @@ +metadata: + captured_at: '2026-05-11T11:34:45Z' + label: 2023-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2023/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:44 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:537af509200ee0698bccc6abdf8fab1f922d5242 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 314 + per_page: 25 + data: + - mal_id: 51535 + url: https://myanimelist.net/anime/51535/Shingeki_no_Kyojin__The_Final_Season_-_Kanketsu-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1279/131078.jpg + small_image_url: https://myanimelist.net/images/anime/1279/131078t.jpg + large_image_url: https://myanimelist.net/images/anime/1279/131078l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1279/131078.webp + small_image_url: https://myanimelist.net/images/anime/1279/131078t.webp + large_image_url: https://myanimelist.net/images/anime/1279/131078l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E7WytLM2KvY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shingeki no Kyojin: The Final Season - Kanketsu-hen' + - type: Synonym + title: 'Shingeki no Kyojin: The Final Season Part 3' + - type: Synonym + title: Shingeki no Kyojin Season 4 + - type: Synonym + title: Attack on Titan Season 4 + - type: Japanese + title: 進撃の巨人 The Final Season完結編 + - type: English + title: 'Attack on Titan: Final Season - The Final Chapters' + title: 'Shingeki no Kyojin: The Final Season - Kanketsu-hen' + title_english: 'Attack on Titan: Final Season - The Final Chapters' + title_japanese: 進撃の巨人 The Final Season完結編 + title_synonyms: + - 'Shingeki no Kyojin: The Final Season Part 3' + - Shingeki no Kyojin Season 4 + - Attack on Titan Season 4 + type: TV Special + source: Manga + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2023-03-04T00:00:00+00:00' + to: '2023-11-05T00:00:00+00:00' + prop: + from: + day: 4 + month: 3 + year: 2023 + to: + day: 5 + month: 11 + year: 2023 + string: Mar 4, 2023 to Nov 5, 2023 + duration: 1 hr 12 min per ep + rating: R - 17+ (violence & profanity) + score: 8.86 + scored_by: 528591 + rank: 30 + popularity: 250 + members: 866337 + favorites: 17371 + synopsis: |- + In the wake of Eren Yeager's cataclysmic actions, his friends and former enemies form an alliance against his genocidal rampage. Though once bitter foes, Armin Arlert, Mikasa Ackerman, and the remaining members of the Scout Regiment join forces with Reiner Braun and the survivors of the Marleyan military. Their meager united front sets out on a mission to stop Eren's wrath and—if possible—save their old comrade in the process. + + As Eren pushes forward at any cost, he battles his own internal turmoil. Although he feels immense remorse over his horrific invasion, Eren believes he harbors noble intentions: he believes the path ahead is the only way to save his friends and, to a greater extent, his people. + + The opposing battalions spiral toward an inevitable final clash that may claim the lives of millions. Though they face an army of monsters beyond anything they could have previously imagined, Mikasa, Armin, and their allies stand brave in the face of certain doom. + + [Written by MAL Rewrite] + background: 'Shingeki no Kyojin: The Final Season - Kanketsu-hen adapts content from volumes 32-34 of the original manga.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 1557 + type: anime + name: Pony Canyon Enterprises + url: https://myanimelist.net/anime/producer/1557/Pony_Canyon_Enterprises + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49387 + url: https://myanimelist.net/anime/49387/Vinland_Saga_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1170/124312.jpg + small_image_url: https://myanimelist.net/images/anime/1170/124312t.jpg + large_image_url: https://myanimelist.net/images/anime/1170/124312l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1170/124312.webp + small_image_url: https://myanimelist.net/images/anime/1170/124312t.webp + large_image_url: https://myanimelist.net/images/anime/1170/124312l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jBetoIlnDIM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Vinland Saga Season 2 + - type: Japanese + title: ヴィンランド・サガ SEASON2 + - type: English + title: Vinland Saga Season 2 + title: Vinland Saga Season 2 + title_english: Vinland Saga Season 2 + title_japanese: ヴィンランド・サガ SEASON2 + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2023-01-10T00:00:00+00:00' + to: '2023-06-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2023 + to: + day: 20 + month: 6 + year: 2023 + string: Jan 10, 2023 to Jun 20, 2023 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.82 + scored_by: 485100 + rank: 37 + popularity: 254 + members: 855888 + favorites: 20593 + synopsis: "After his father's death and the destruction of his village at the hands of English raiders, Einar wishes\ + \ for a peaceful life with his family on their newly rebuilt farms. However, fate has other plans: his village is\ + \ invaded once again. Einar watches helplessly as the marauding Danes burn his lands and slaughter his family. The\ + \ invaders capture Einar and take him back to Denmark as a slave. \n\nEinar clings to his mother's final words to\ + \ survive. He is purchased by Ketil, a kind slave owner and landlord who promises that Einar can regain his freedom\ + \ in return for working in the fields. Soon, Einar encounters his new partner in farm cultivation—Thorfinn, a dejected\ + \ and melancholic slave. As Einar and Thorfinn work together toward their freedom, they are haunted by both sins of\ + \ the past and the ploys of the present. Yet they carry on, grasping for a glimmer of hope, redemption, and peace\ + \ in a world that is nothing but unjust and unforgiving.\n\n[Written by MAL Rewrite]" + background: Vinland Saga Season 2 was released on Blu-ray and DVD in two volumes from June 21, 2023, to August 23, 2023. + season: winter + year: 2023 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52305 + url: https://myanimelist.net/anime/52305/Tomo-chan_wa_Onnanoko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1444/131828.jpg + small_image_url: https://myanimelist.net/images/anime/1444/131828t.jpg + large_image_url: https://myanimelist.net/images/anime/1444/131828l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1444/131828.webp + small_image_url: https://myanimelist.net/images/anime/1444/131828t.webp + large_image_url: https://myanimelist.net/images/anime/1444/131828l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Fmpa10BFimE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tomo-chan wa Onnanoko! + - type: Japanese + title: トモちゃんは女の子! + - type: English + title: Tomo-chan Is a Girl! + title: Tomo-chan wa Onnanoko! + title_english: Tomo-chan Is a Girl! + title_japanese: トモちゃんは女の子! + title_synonyms: [] + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-01-05T00:00:00+00:00' + to: '2023-03-30T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2023 + to: + day: 30 + month: 3 + year: 2023 + string: Jan 5, 2023 to Mar 30, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.71 + scored_by: 269630 + rank: 1440 + popularity: 505 + members: 511205 + favorites: 3264 + synopsis: |- + Childhood friends Tomo Aizawa and Junichirou "Jun" Kubota do everything together, whether it be training or just enjoying a fun day out. Anyone would think that these two are best friends for life. The only issue is that the tomboyish Tomo is in love with Jun, but he regards her like a brother. + + At the start of their first year of high school, Tomo confesses her feelings to Jun. However, her rough mannerisms and lack of hesitance to throw a punch do nothing to sway Jun's heart. Realizing that he will remain indifferent to her affections unless she does something about it, Tomo must find a way to knock some sense into Jun and open his eyes to what is right in front of him. + + [Written by MAL Rewrite] + background: Tomo-chan wa Onnanoko! was released on Blu-ray and DVD in six volumes from January 25, 2023, to June 28, + 2023. + season: winter + year: 2023 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 701 + type: anime + name: Seikaisha + url: https://myanimelist.net/anime/producer/701/Seikaisha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + - mal_id: 2912 + type: anime + name: Three S Studio + url: https://myanimelist.net/anime/producer/2912/Three_S_Studio + licensors: [] + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50739 + url: https://myanimelist.net/anime/50739/Otonari_no_Tenshi-sama_ni_Itsunomanika_Dame_Ningen_ni_Sareteita_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/1240/133638.jpg + small_image_url: https://myanimelist.net/images/anime/1240/133638t.jpg + large_image_url: https://myanimelist.net/images/anime/1240/133638l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1240/133638.webp + small_image_url: https://myanimelist.net/images/anime/1240/133638t.webp + large_image_url: https://myanimelist.net/images/anime/1240/133638l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IUq59ARXtdg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken + - type: Japanese + title: お隣の天使様にいつの間にか駄目人間にされていた件 + - type: English + title: The Angel Next Door Spoils Me Rotten + title: Otonari no Tenshi-sama ni Itsunomanika Dame Ningen ni Sareteita Ken + title_english: The Angel Next Door Spoils Me Rotten + title_japanese: お隣の天使様にいつの間にか駄目人間にされていた件 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 25 + month: 3 + year: 2023 + string: Jan 7, 2023 to Mar 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 244125 + rank: 1041 + popularity: 594 + members: 446734 + favorites: 7305 + synopsis: "Mahiru Shiina is worthy of her nickname \"Angel\": she is a divine beauty loved by all, and she excels in\ + \ both academics and athletics. Shiina lives in an entirely different world from Amane Fujimiya, her next-door neighbor.\ + \ Despite living so close together, they have never spoken once. But their silence is broken when Fujimiya spots Shiina\ + \ gloomily sitting on a swing amidst a heavy rainstorm and lends her his umbrella. \n\nWhen Fujimiya catches a cold\ + \ the next day, Shiina wishes to return the favor for the umbrella by nursing him back to health. Believing that this\ + \ would be their first and last interaction, he silently appreciates her kindness. However, Shiina—who cannot help\ + \ but worry about Fujimiya's lack of tidiness and proper nutrition—begins to cook and clean for him. As the unlikely\ + \ pair spend time together in Fujimiya's apartment, they explore the true nature of their relationship and the gentle\ + \ emotions that emerge from it.\n\n[Written by MAL Rewrite]" + background: '' + season: winter + year: 2023 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1406 + type: anime + name: Miracle Bus + url: https://myanimelist.net/anime/producer/1406/Miracle_Bus + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50608 + url: https://myanimelist.net/anime/50608/Tokyo_Revengers__Seiya_Kessen-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1773/132313.jpg + small_image_url: https://myanimelist.net/images/anime/1773/132313t.jpg + large_image_url: https://myanimelist.net/images/anime/1773/132313l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1773/132313.webp + small_image_url: https://myanimelist.net/images/anime/1773/132313t.webp + large_image_url: https://myanimelist.net/images/anime/1773/132313l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hfj7HaTbMSQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tokyo Revengers: Seiya Kessen-hen' + - type: Japanese + title: 東京リベンジャーズ 聖夜決戦編 + - type: English + title: 'Tokyo Revengers: Christmas Showdown' + title: 'Tokyo Revengers: Seiya Kessen-hen' + title_english: 'Tokyo Revengers: Christmas Showdown' + title_japanese: 東京リベンジャーズ 聖夜決戦編 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-01-08T00:00:00+00:00' + to: '2023-04-02T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2023 + to: + day: 2 + month: 4 + year: 2023 + string: Jan 8, 2023 to Apr 2, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.62 + scored_by: 195164 + rank: 1744 + popularity: 624 + members: 429745 + favorites: 2590 + synopsis: |- + In spite of his best time-leaping efforts, Takemichi Hanagaki continuously fails to prevent the present-day death of Hinata Tachibana, his adolescent love. The adult Takemichi grapples with grief and the ramifications of the Tokyo Manji gang's criminal empire—an unintended product of his timeline meddling. Though the gang once operated under the idealistic Manjirou "Mikey" Sano, it has now been taken over by the malicious Tetta Kisaki and, as a result, has abandoned its original optimistic intent. + + Despite feeling hopeless, Takemichi travels to the past once again to investigate Black Dragon, a rival motorcycle gang whose actions ultimately lead to Hinata's demise. There, he meets the young Hakkai Shiba, a fellow gang member whose older brother, Taiju, tyrannically rules Black Dragon. When Taiju brutally beats Takemichi in a one-sided street brawl, Hakkai attempts to withdraw from Tokyo Manji in apology—an act that Takemichi must prevent to spare Hakkai a grim future. + + Through a shared tragedy, Takemichi bonds with Chifuyu Matsuno, establishing a close comradery both boys desperately need. With Chifuyu on his side, Takemichi works to unravel the fates of Black Dragon's members, fighting to create a happy future for his loved ones. + + [Written by MAL Rewrite] + background: 'Tokyo Revengers: Seiya Kessen-hen was released on Blu-ray and DVD in three volumes from March 15, 2023, + to May 24, 2023.' + season: winter + year: 2023 + broadcast: + day: Sundays + time: 02:08 + timezone: Asia/Tokyo + string: Sundays at 02:08 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 48417 + url: https://myanimelist.net/anime/48417/Maou_Gakuin_no_Futekigousha_II__Shijou_Saikyou_no_Maou_no_Shiso_Tensei_shite_Shison-tachi_no_Gakkou_e_Kayou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1369/139553.jpg + small_image_url: https://myanimelist.net/images/anime/1369/139553t.jpg + large_image_url: https://myanimelist.net/images/anime/1369/139553l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1369/139553.webp + small_image_url: https://myanimelist.net/images/anime/1369/139553t.webp + large_image_url: https://myanimelist.net/images/anime/1369/139553l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9u32S8C8L3g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou' + - type: Synonym + title: 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso' + - type: Synonym + title: Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season + - type: Synonym + title: The Misfit of Demon King Academy 2nd Season + - type: Japanese + title: 魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ + - type: English + title: The Misfit of Demon King Academy Ⅱ + title: 'Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou' + title_english: The Misfit of Demon King Academy Ⅱ + title_japanese: 魔王学院の不適合者 II~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ + title_synonyms: + - 'Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso' + - Tensei shite Shison-tachi no Gakkou e Kayou 2nd Season + - The Misfit of Demon King Academy 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-08T00:00:00+00:00' + to: '2023-09-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2023 + to: + day: 24 + month: 9 + year: 2023 + string: Jan 8, 2023 to Sep 24, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.83 + scored_by: 132819 + rank: 6104 + popularity: 667 + members: 408105 + favorites: 3998 + synopsis: |- + As peace returns to the demon realm, Anos Voldigoad wishes nothing more than to put his reputation as the Demon King of Tyranny to rest and go back to being a misfit at the prestigious Demon King Academy. Unfortunately, any tranquility is fleeting: sinister demons, kings, and deities plot Anos's demise from the shadows. + + Rumors spread about the "Child of God," a being whose power may rival that of Anos. To uncover the truth and eliminate the potential threat, Anos must journey deep into the land of spirits. However, the spirit world is shrouded in mystery, and it may only be entered after undergoing a series of difficult trials. + + With unrivaled power and confidence, Anos braces himself to defeat various formidable enemies with grandiose titles. But he—with the assistance of his trusted allies—will barely have to break a sweat as the true Demon King of Tyranny. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2023 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1287 + type: anime + name: Q-Tec + url: https://myanimelist.net/anime/producer/1287/Q-Tec + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50330 + url: https://myanimelist.net/anime/50330/Bungou_Stray_Dogs_4th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1263/132759.jpg + small_image_url: https://myanimelist.net/images/anime/1263/132759t.jpg + large_image_url: https://myanimelist.net/images/anime/1263/132759l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1263/132759.webp + small_image_url: https://myanimelist.net/images/anime/1263/132759t.webp + large_image_url: https://myanimelist.net/images/anime/1263/132759l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/z9ZhVooqA-Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bungou Stray Dogs 4th Season + - type: Japanese + title: 文豪ストレイドッグス + - type: English + title: Bungo Stray Dogs 4 + title: Bungou Stray Dogs 4th Season + title_english: Bungo Stray Dogs 4 + title_japanese: 文豪ストレイドッグス + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-01-04T00:00:00+00:00' + to: '2023-03-29T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2023 + to: + day: 29 + month: 3 + year: 2023 + string: Jan 4, 2023 to Mar 29, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.42 + scored_by: 149479 + rank: 207 + popularity: 762 + members: 360257 + favorites: 3423 + synopsis: |- + No longer concerned with military affairs, Yukichi Fukuzawa intends to act as a lone bodyguard-for-hire, making use of his deadly swordsmanship. However, things are not going as planned for his freelance business, and that is when he crosses paths with a mouthy boy named Ranpo Edogawa. While their initial interactions are intertwined with a bizarre murder mystery, the aftermath prompts the formation of the Armed Detective Agency. + + Presently, Ranpo finds himself chasing down a gifted individual with the dangerous ability to execute the perfect crime. But as the great detective unravels the case, he soon discovers an elaborate plot to obliterate the Agency in its entirety. + + Although forewarned of the trap, the Agency continue their pursuit of the criminals, only to end up framed for the crime themselves. Now branded as wanted terrorists, the remaining members must find a way to prove their innocence—even if they must turn to sworn enemies for assistance. + + [Written by MAL Rewrite] + background: Bungou Stray Dogs 4th Season was released on Blu-ray and DVD in four volumes from March 24, 2023, to June + 28, 2023. This season adapts chapters 54 to 77 of the manga. + season: winter + year: 2023 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 53411 + url: https://myanimelist.net/anime/53411/Buddy_Daddies + images: + jpg: + image_url: https://myanimelist.net/images/anime/1553/133767.jpg + small_image_url: https://myanimelist.net/images/anime/1553/133767t.jpg + large_image_url: https://myanimelist.net/images/anime/1553/133767l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1553/133767.webp + small_image_url: https://myanimelist.net/images/anime/1553/133767t.webp + large_image_url: https://myanimelist.net/images/anime/1553/133767l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jt_k3CE3-PM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Buddy Daddies + - type: Japanese + title: Buddy Daddies + title: Buddy Daddies + title_english: null + title_japanese: Buddy Daddies + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 1 + month: 4 + year: 2023 + string: Jan 7, 2023 to Apr 1, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.1 + scored_by: 162027 + rank: 592 + popularity: 770 + members: 356116 + favorites: 3646 + synopsis: |- + On Christmas Eve, four-year-old Miri Unasaka arrives in Tokyo completely alone, in search of her father. The bright lights and merry atmosphere guide Miri to a big hotel and a man with a delicious-looking cake. However, the child has just unknowingly walked into the center of an elaborate, foolproof plan for assassinating a dangerous mafia boss. + + Professional assassins Kazuki Kurusu and Rei Suwa live together, fleeing memories of their grim childhoods and avoiding emotional connections. When their mission goes awry and they end up bringing Miri home, there is only one reasonable thing to do: return Miri to her mother. But the girl's innocent laugh and pure worldview quickly enamor her to Kazuki, who secretly enjoys playing a parent, and it is not long before Rei's impenetrable heart makes room for Miri. + + Miri's every move is unpredictable, and Kazuki and Rei find raising an energetic child harder than any of their missions. Although it presents a great risk to their careers, Kazuki and Rei—both assuming the affectionate nickname "papa"—decide to provide Miri with a normal childhood despite all the odds stacked against them. + + [Written by MAL Rewrite] + background: Buddy Daddies was released on Blu-ray and DVD in six volumes from March 22, 2023, to August 23, 2023. + season: winter + year: 2023 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 459 + type: anime + name: Nitroplus + url: https://myanimelist.net/anime/producer/459/Nitroplus + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: [] + - mal_id: 53446 + url: https://myanimelist.net/anime/53446/Tondemo_Skill_de_Isekai_Hourou_Meshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1661/131889.jpg + small_image_url: https://myanimelist.net/images/anime/1661/131889t.jpg + large_image_url: https://myanimelist.net/images/anime/1661/131889l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1661/131889.webp + small_image_url: https://myanimelist.net/images/anime/1661/131889t.webp + large_image_url: https://myanimelist.net/images/anime/1661/131889l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uLezuU0GL6Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tondemo Skill de Isekai Hourou Meshi + - type: Synonym + title: Regarding the Display of an Outrageous Skill Which Has Incredible Powers + - type: Synonym + title: Tonsuki + - type: Japanese + title: とんでもスキルで異世界放浪メシ + - type: English + title: Campfire Cooking in Another World with My Absurd Skill + title: Tondemo Skill de Isekai Hourou Meshi + title_english: Campfire Cooking in Another World with My Absurd Skill + title_japanese: とんでもスキルで異世界放浪メシ + title_synonyms: + - Regarding the Display of an Outrageous Skill Which Has Incredible Powers + - Tonsuki + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-11T00:00:00+00:00' + to: '2023-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2023 + to: + day: 29 + month: 3 + year: 2023 + string: Jan 11, 2023 to Mar 29, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.64 + scored_by: 183645 + rank: 1675 + popularity: 824 + members: 339173 + favorites: 2538 + synopsis: |- + Salaryman Tsuyoshi Mukouda is accidentally summoned as a hero to the Kingdom of Reijseger in another world to help defend against their enemies. Wary of the royal family's true intentions, Mukouda is able to talk his way out of the situation due to his non-combat skill, "Online Supermarket," which is deemed useless. + + However, this power proves to be anything but useless. With this ability, Mukouda is able to cheaply purchase food products and utensils from Japan—most of which are considered luxuries in this world. As Mukouda cooks up a storm using his ability, he catches the eye of the fearsome mythical wolf Fel. The legendary beast swiftly negotiates a contract to become Mukouda's familiar, unable to resist the delicious dishes. With Fel by his side, Mukouda travels the world, earning his keep as an adventurer and merchant all the while enjoying delectable meals. + + [Written by MAL Rewrite] + background: Tondemo Skill de Isekai Hourou Meshi was released on Blu-ray and DVD in three volumes from April 26, 2023, + to June 28, 2023. + season: winter + year: 2023 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 51105 + url: https://myanimelist.net/anime/51105/NieR_Automata_Ver11a + images: + jpg: + image_url: https://myanimelist.net/images/anime/1669/150616.jpg + small_image_url: https://myanimelist.net/images/anime/1669/150616t.jpg + large_image_url: https://myanimelist.net/images/anime/1669/150616l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1669/150616.webp + small_image_url: https://myanimelist.net/images/anime/1669/150616t.webp + large_image_url: https://myanimelist.net/images/anime/1669/150616l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Se-H5iXKdDw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: NieR:Automata Ver1.1a + - type: Japanese + title: NieR:Automata Ver1.1a + - type: English + title: NieR:Automata Ver1.1a + title: NieR:Automata Ver1.1a + title_english: NieR:Automata Ver1.1a + title_japanese: NieR:Automata Ver1.1a + title_synonyms: [] + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-08T00:00:00+00:00' + to: '2023-07-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2023 + to: + day: 23 + month: 7 + year: 2023 + string: Jan 8, 2023 to Jul 23, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.56 + scored_by: 96815 + rank: 1978 + popularity: 826 + members: 338536 + favorites: 2441 + synopsis: |- + In a post-apocalyptic world overrun by alien-crafted "Machine Lifeforms," humanity is preparing for its last stand. Forced to retreat to the Moon for safety, humans are pinning their hopes on a group of man-made androids known as YoRHa soldiers. Led by the all-purpose battle android YoRHa 2-gou B-gata "2B," the group will fight to take control of the Earth back from its invaders. + + As war against the machines rages on, the YoRHa slowly begin to see the first shards of truth underlying the brutal conflict. Facing the harsh reality before her, the unwavering warrior 2B starts to question her very existence and just how much she must sacrifice for the sake of humanity. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2023 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 50197 + url: https://myanimelist.net/anime/50197/Ijiranaide_Nagatoro-san_2nd_Attack + images: + jpg: + image_url: https://myanimelist.net/images/anime/1902/129579.jpg + small_image_url: https://myanimelist.net/images/anime/1902/129579t.jpg + large_image_url: https://myanimelist.net/images/anime/1902/129579l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1902/129579.webp + small_image_url: https://myanimelist.net/images/anime/1902/129579t.webp + large_image_url: https://myanimelist.net/images/anime/1902/129579l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DbTbFCkIdss?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ijiranaide, Nagatoro-san 2nd Attack + - type: Synonym + title: Don't Toy with Me + - type: Synonym + title: Miss Nagatoro 2nd Season + - type: Synonym + title: Ijiranaide + - type: Synonym + title: Nagatoro-san 2nd Season + - type: Japanese + title: イジらないで、長瀞さん 2nd Attack + - type: English + title: Don't Toy with Me, Miss Nagatoro 2nd Attack + title: Ijiranaide, Nagatoro-san 2nd Attack + title_english: Don't Toy with Me, Miss Nagatoro 2nd Attack + title_japanese: イジらないで、長瀞さん 2nd Attack + title_synonyms: + - Don't Toy with Me + - Miss Nagatoro 2nd Season + - Ijiranaide + - Nagatoro-san 2nd Season + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-08T00:00:00+00:00' + to: '2023-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2023 + to: + day: 26 + month: 3 + year: 2023 + string: Jan 8, 2023 to Mar 26, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 147112 + rank: 2524 + popularity: 837 + members: 335199 + favorites: 2099 + synopsis: |- + Hayase Nagatoro and Naoto Hachiouji have grown closer: the girl spends more time than ever in the art club room with her senpai. Although he is always on edge, Naoto no longer seems to mind Nagatoro's presence. Time and again, Naoto demonstrates his hidden, cool demeanor, and Nagatoro displays her possessive tendencies. However, they still can not seem to completely close the distance between them. It is clear to everyone else that the pair have feelings for each other. + + For Nagatoro, there is nothing more entertaining than toying with Naoto. But as the girl shows no plans to stop teasing her senpai, it is only a matter of time before they realize how they truly feel. + + [Written by MAL Rewrite] + background: Ijiranaide, Nagatoro-san 2nd Attack was released on Blu-ray in four volumes from March 8, 2023 to June 7, + 2023. + season: winter + year: 2023 + broadcast: + day: Sundays + time: 01:00 + timezone: Asia/Tokyo + string: Sundays at 01:00 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 51462 + url: https://myanimelist.net/anime/51462/Isekai_Nonbiri_Nouka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1983/132329.jpg + small_image_url: https://myanimelist.net/images/anime/1983/132329t.jpg + large_image_url: https://myanimelist.net/images/anime/1983/132329l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1983/132329.webp + small_image_url: https://myanimelist.net/images/anime/1983/132329t.webp + large_image_url: https://myanimelist.net/images/anime/1983/132329l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/iwxPf8SEmEU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Nonbiri Nouka + - type: Japanese + title: 異世界のんびり農家 + - type: English + title: Farming Life in Another World + title: Isekai Nonbiri Nouka + title_english: Farming Life in Another World + title_japanese: 異世界のんびり農家 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-06T00:00:00+00:00' + to: '2023-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2023 + to: + day: 24 + month: 3 + year: 2023 + string: Jan 6, 2023 to Mar 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 149740 + rank: 2111 + popularity: 948 + members: 295302 + favorites: 2245 + synopsis: |- + During the final years of his life, Hiraku Machio remained confined to a hospital bed with a terminal illness until he finally passed away. Taking pity on the unfair life he lived, a god decides to reincarnate Hiraku in another world where he can live as he pleases. Wanting to try farming in this new life, he is bestowed with an all-in-one "Almighty Farming Tool" that can transform into any useful implement he wishes. Hiraku is then transported to a forest seemingly far from civilization. Here, he plans to build and farm everything from scratch—gradually developing the lifeless area into a thriving new society. + + [Written by MAL Rewrite] + background: Isekai Nonbiri Nouka was released on Blu-ray and DVD in two volumes from April 19, 2023, to May 24, 2023. + season: winter + year: 2023 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1563 + type: anime + name: Hakuhodo + url: https://myanimelist.net/anime/producer/1563/Hakuhodo + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 53111 + url: https://myanimelist.net/anime/53111/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_IV__Shin_Shou_-_Yakusai-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1476/128693.jpg + small_image_url: https://myanimelist.net/images/anime/1476/128693t.jpg + large_image_url: https://myanimelist.net/images/anime/1476/128693l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1476/128693.webp + small_image_url: https://myanimelist.net/images/anime/1476/128693t.webp + large_image_url: https://myanimelist.net/images/anime/1476/128693l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-jqaGpzd4vo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen' + - type: Synonym + title: DanMachi 4th Season Part 2 + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2 + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇 + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2 + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV: Shin Shou - Yakusai-hen' + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? IV Part 2 + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうかⅣ深章 厄災篇 + title_synonyms: + - DanMachi 4th Season Part 2 + - Is It Wrong That I Want to Meet You in a Dungeon 4th Season Part 2 + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-03-18T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 18 + month: 3 + year: 2023 + string: Jan 7, 2023 to Mar 18, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.26 + scored_by: 156897 + rank: 366 + popularity: 949 + members: 295237 + favorites: 1945 + synopsis: Second part of Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka IV. + background: '' + season: winter + year: 2023 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1815 + type: anime + name: GREE + url: https://myanimelist.net/anime/producer/1815/GREE + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 50932 + url: https://myanimelist.net/anime/50932/Saikyou_Onmyouji_no_Isekai_Tenseiki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1547/125900.jpg + small_image_url: https://myanimelist.net/images/anime/1547/125900t.jpg + large_image_url: https://myanimelist.net/images/anime/1547/125900l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1547/125900.webp + small_image_url: https://myanimelist.net/images/anime/1547/125900t.webp + large_image_url: https://myanimelist.net/images/anime/1547/125900l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6bYBB5ZF5a8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saikyou Onmyouji no Isekai Tenseiki + - type: Synonym + title: The Reincarnation of the Strongest Onmyouji in Another World + - type: Japanese + title: 最強陰陽師の異世界転生記 + - type: English + title: The Reincarnation of the Strongest Exorcist in Another World + title: Saikyou Onmyouji no Isekai Tenseiki + title_english: The Reincarnation of the Strongest Exorcist in Another World + title_japanese: 最強陰陽師の異世界転生記 + title_synonyms: + - The Reincarnation of the Strongest Onmyouji in Another World + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-04-01T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 1 + month: 4 + year: 2023 + string: Jan 7, 2023 to Apr 1, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.09 + scored_by: 143769 + rank: 4668 + popularity: 1013 + members: 277899 + favorites: 1032 + synopsis: |- + Despite standing at the zenith as the strongest exorcist, Haruyoshi Kuga sought even greater power, which led to his demise at the hands of those who envied his might. As he draws his last breath, he casts a spell that allows him to reincarnate and swears to become more cunning, hoping that all his efforts will prove useful in his next life. + + Haruyoshi is soon reborn in another world as Seika Lamprogue, an illegitimate son of a noble family that prides itself on magic. However, his new family largely ignores him due to his lineage and magic deficiency. Nevertheless, the unbothered Seika leverages the knowledge from his previous life to make numerous valuable allies. As he begins to explore the true limits of his abilities, Seika must also be wary of the consequences that tarnished his past and avoid repeating the same mistakes. + + [Written by MAL Rewrite] + background: Saikyou Onmyouji no Isekai Tenseiki was released on Blu-ray and DVD on May 26, 2023. + season: winter + year: 2023 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 478 + type: anime + name: Studio Blanc. + url: https://myanimelist.net/anime/producer/478/Studio_Blanc + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 41514 + url: https://myanimelist.net/anime/41514/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1782/128859.jpg + small_image_url: https://myanimelist.net/images/anime/1782/128859t.jpg + large_image_url: https://myanimelist.net/images/anime/1782/128859l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1782/128859.webp + small_image_url: https://myanimelist.net/images/anime/1782/128859t.webp + large_image_url: https://myanimelist.net/images/anime/1782/128859l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mgHnA7ZV8tM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2 + - type: Synonym + title: 'BOFURI: I Don''t Want to Get Hurt' + - type: Synonym + title: so I'll Max Out My Defense 2nd Season + - type: Synonym + title: I hate being in pain + - type: Synonym + title: so I think I'll make a full defense build 2 + - type: Synonym + title: I Hate Getting Hurt + - type: Synonym + title: So I Put All My Skill Points Into Defense 2 + - type: Japanese + title: 痛いのは嫌なので防御力に極振りしたいと思います。2 + - type: English + title: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense. Season 2' + title: Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2 + title_english: 'BOFURI: I Don''t Want to Get Hurt, so I''ll Max Out My Defense. Season 2' + title_japanese: 痛いのは嫌なので防御力に極振りしたいと思います。2 + title_synonyms: + - 'BOFURI: I Don''t Want to Get Hurt' + - so I'll Max Out My Defense 2nd Season + - I hate being in pain + - so I think I'll make a full defense build 2 + - I Hate Getting Hurt + - So I Put All My Skill Points Into Defense 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-11T00:00:00+00:00' + to: '2023-04-20T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2023 + to: + day: 20 + month: 4 + year: 2023 + string: Jan 11, 2023 to Apr 20, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.23 + scored_by: 102142 + rank: 3760 + popularity: 1023 + members: 275570 + favorites: 1368 + synopsis: |- + After achieving fruitful results in New World Online's previous events, the now famous Maple Tree guild is excited to explore the new floors introduced in game. As if their guild was not already feared enough, each member is motivated to find stronger skills for themselves in order to greatly expand their options in future battles. Not forgetting the importance of networking, the guild also forges amicable relationships with other notable guilds, such as the Kingdom of the Flame Emperor and the Congregation of the Holy Swords. + + With their eccentric guild master Maple at the forefront, the members of Maple Tree continue to stumble upon creative ways to implement their skills, driving the game developers crazy along the way. + + [Written by MAL Rewrite] + background: Itai no wa Iya nano de Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2 was initially scheduled to broadcast + in 2022, but it was delayed until January 2023. The series was released on Blu-ray and DVD in three volumes from March + 24, 2023, to May 24, 2023. + season: winter + year: 2023 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 963 + type: anime + name: MAGES. + url: https://myanimelist.net/anime/producer/963/MAGES + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1819 + type: anime + name: D-techno + url: https://myanimelist.net/anime/producer/1819/D-techno + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 52173 + url: https://myanimelist.net/anime/52173/Koori_Zokusei_Danshi_to_Cool_na_Douryou_Joshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1927/132758.jpg + small_image_url: https://myanimelist.net/images/anime/1927/132758t.jpg + large_image_url: https://myanimelist.net/images/anime/1927/132758l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1927/132758.webp + small_image_url: https://myanimelist.net/images/anime/1927/132758t.webp + large_image_url: https://myanimelist.net/images/anime/1927/132758l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pzyN6jakA3Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Koori Zokusei Danshi to Cool na Douryou Joshi + - type: Japanese + title: 氷属性男子とクールな同僚女子 + - type: English + title: The Ice Guy and His Cool Female Colleague + title: Koori Zokusei Danshi to Cool na Douryou Joshi + title_english: The Ice Guy and His Cool Female Colleague + title_japanese: 氷属性男子とクールな同僚女子 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-04T00:00:00+00:00' + to: '2023-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2023 + to: + day: 22 + month: 3 + year: 2023 + string: Jan 4, 2023 to Mar 22, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 107613 + rank: 3230 + popularity: 1081 + members: 260865 + favorites: 1323 + synopsis: |- + Kind-hearted Himuro-kun is unfortunate: when in deep concentration, stressed, or flustered, he involuntarily creates blizzard conditions for himself and anyone in his vicinity. During one such incident on the first day of his new job, Himuro-kun encounters the beautiful Fuyutsuki-san, who helps him break out of his nerve-induced ice. As it turns out, Fuyutsuki-san is his new coworker. + + At the office, the cool-headed Fuyutsuki-san offers simple and rational solutions to Himuro-kun's icy dilemmas—everything from helping him garden without freezing his plants to ensuring he does not melt during their tropical work retreat. Every time Fuyutsuki-san does something kind for him, the tempest of emotions he experiences inside embarrassingly manifests on the outside. + + As a result of the frequent snowstorms, Himuro-kun's feelings for Fuyutsuki-san are impossible to hide. Even though Fuyutsuki-san is unfamiliar with love, Himuro-kun remains determined to repay her kindness and warm her heart in any way he can. + + [Written by MAL Rewrite] + background: Koori Zokusei Danshi to Cool na Douryou Joshi was released on Blu-ray in four volumes from April 28, 2023, + to July 27, 2023. + season: winter + year: 2023 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + - mal_id: 2527 + type: anime + name: Liber + url: https://myanimelist.net/anime/producer/2527/Liber + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: [] + - mal_id: 51815 + url: https://myanimelist.net/anime/51815/Kubo-san_wa_Mob_wo_Yurusanai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1818/132330.jpg + small_image_url: https://myanimelist.net/images/anime/1818/132330t.jpg + large_image_url: https://myanimelist.net/images/anime/1818/132330l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1818/132330.webp + small_image_url: https://myanimelist.net/images/anime/1818/132330t.webp + large_image_url: https://myanimelist.net/images/anime/1818/132330l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rgDzXjc5Ps0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kubo-san wa Mob wo Yurusanai + - type: Synonym + title: Kubo-san wa Boku wo Yurusanai + - type: Synonym + title: Kubo-san Doesn't Leave Me Be (a Mob) + - type: Japanese + title: 久保さんは僕を許さない + - type: English + title: Kubo Won't Let Me Be Invisible + title: Kubo-san wa Mob wo Yurusanai + title_english: Kubo Won't Let Me Be Invisible + title_japanese: 久保さんは僕を許さない + title_synonyms: + - Kubo-san wa Boku wo Yurusanai + - Kubo-san Doesn't Leave Me Be (a Mob) + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-10T00:00:00+00:00' + to: '2023-06-20T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2023 + to: + day: 20 + month: 6 + year: 2023 + string: Jan 10, 2023 to Jun 20, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.55 + scored_by: 103705 + rank: 2019 + popularity: 1096 + members: 256560 + favorites: 1718 + synopsis: "Junta Shiraishi is a high school student with one simple goal—to enjoy his youth. However, achieving this\ + \ goal is not so straightforward since Shiraishi is effectively invisible to his peers; even his teachers routinely\ + \ fail to notice his presence. In fact, there is a rumor circulating that whoever manages to spot him will receive\ + \ good luck. \n\nBut there is one person who notices Shiraishi's presence without fail. Seated right next to him,\ + \ Nagisa Kubo is determined not to let him quietly fade into the background. Unfortunately for him, this means that\ + \ Shiraishi finds himself in some peculiar situations, all orchestrated by Kubo. Despite this, Kubo's playful antics\ + \ might just be the catalyst needed to spark the thrilling youth that Shiraishi longs for.\n\n[Written by MAL Rewrite]" + background: Kubo-san wa Mob wo Yurusanai was released on Blu-ray and DVD in two volumes from April 26, 2023, to June + 28, 2023. + season: winter + year: 2023 + broadcast: + day: Tuesdays + time: '21:30' + timezone: Asia/Tokyo + string: Tuesdays at 21:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2992 + type: anime + name: R11R + url: https://myanimelist.net/anime/producer/2992/R11R + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1295 + type: anime + name: PINE JAM + url: https://myanimelist.net/anime/producer/1295/PINE_JAM + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52093 + url: https://myanimelist.net/anime/52093/Trigun_Stampede + images: + jpg: + image_url: https://myanimelist.net/images/anime/1426/129194.jpg + small_image_url: https://myanimelist.net/images/anime/1426/129194t.jpg + large_image_url: https://myanimelist.net/images/anime/1426/129194l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1426/129194.webp + small_image_url: https://myanimelist.net/images/anime/1426/129194t.webp + large_image_url: https://myanimelist.net/images/anime/1426/129194l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KlJZJWt7fpA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Trigun Stampede + - type: Japanese + title: TRIGUN STAMPEDE + - type: English + title: Trigun Stampede + title: Trigun Stampede + title_english: Trigun Stampede + title_japanese: TRIGUN STAMPEDE + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 25 + month: 3 + year: 2023 + string: Jan 7, 2023 to Mar 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.81 + scored_by: 90884 + rank: 1167 + popularity: 1201 + members: 235744 + favorites: 2578 + synopsis: |- + On the planet Noman's Land, reporters Meryl Stryfe and Roberto De Niro traverse the desert in search of the infamous outlaw Vash the Stampede. But the man they find near the desolate town of Jeneora Rock is a far cry from the lethal terrorist they expect. In reality, Vash is a passive and carefree drifter; he is a proponent of peace, beloved by the residents of the town. His inaccurate reputation actually stems from the widespread atrocities committed by his twin brother Millions Knives. Still, Vash is dubbed "The Humanoid Typhoon'' due to the tendency for violent chaos to follow in his wake. + + Chaos soon arrives in the form of bounty hunters seeking the high price on Vash's head, and their violent pursuit poses great danger to the town and its precious power plant. Thanks to his gunslinging prowess, Vash is able to resist most of these nefarious forces. Yet he must soon face off against the ultimate evil: the unstoppable destructive power of his malevolent brother. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2023 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + licensors: [] + studios: + - mal_id: 1109 + type: anime + name: Orange + url: https://myanimelist.net/anime/producer/1109/Orange + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52736 + url: https://myanimelist.net/anime/52736/Tensei_Oujo_to_Tensai_Reijou_no_Mahou_Kakumei + images: + jpg: + image_url: https://myanimelist.net/images/anime/1053/129004.jpg + small_image_url: https://myanimelist.net/images/anime/1053/129004t.jpg + large_image_url: https://myanimelist.net/images/anime/1053/129004l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1053/129004.webp + small_image_url: https://myanimelist.net/images/anime/1053/129004t.webp + large_image_url: https://myanimelist.net/images/anime/1053/129004l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vQPp6laLo0E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei Oujo to Tensai Reijou no Mahou Kakumei + - type: Synonym + title: Tenten Kakumei + - type: Synonym + title: MagiRevo + - type: Japanese + title: 転生王女と天才令嬢の魔法革命 + - type: English + title: The Magical Revolution of the Reincarnated Princess and the Genius Young Lady + title: Tensei Oujo to Tensai Reijou no Mahou Kakumei + title_english: The Magical Revolution of the Reincarnated Princess and the Genius Young Lady + title_japanese: 転生王女と天才令嬢の魔法革命 + title_synonyms: + - Tenten Kakumei + - MagiRevo + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-04T00:00:00+00:00' + to: '2023-03-22T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2023 + to: + day: 22 + month: 3 + year: 2023 + string: Jan 4, 2023 to Mar 22, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 109951 + rank: 2402 + popularity: 1226 + members: 230738 + favorites: 1787 + synopsis: |- + Princess Anisphia "Anis" Wynn Palletia has always dreamed of flying through the sky, even though the people of her kingdom consider it a silly ambition. Also at odds with her goal is the fact that Anis is incapable of using magic despite her noble status. Refusing to give up so easily, she renounces her right to the throne, and focuses on developing "magicology" by combining various resources with knowledge from her previous life on Earth. + + Due to Anis' nature, responsibility for the kingdom's future is passed onto her younger brother, Algard. Pushed into a political marriage with Euphyllia Magenta, a girl he hardly knows, Algard rebels by spending more time with a commoner girl than his fiancée. After Euphyllia tries to intervene, Algard publicly calls off their marriage and denounces his ex-fiancée as a bully. + + After crashing into the banquet where Algard makes the announcement, Anis rescues Euphyllia on the flying broom she is testing. She decides to make Euphyllia her assistant, which the other girl reluctantly agrees to. Although their partnership appears random at first, Anis has an ulterior motive for wanting Euphyllia's company. + + [Written by MAL Rewrite] + background: Tensei Oujo to Tensai Reijou no Mahou Kakumei was released on Blu-ray and DVD in two boxes from March 24, + 2023, to May 24, 2023. + season: winter + year: 2023 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + - mal_id: 2672 + type: anime + name: TVA advance + url: https://myanimelist.net/anime/producer/2672/TVA_advance_ + licensors: [] + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 50854 + url: https://myanimelist.net/anime/50854/Benriya_Saitou-san_Isekai_ni_Iku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1805/132335.jpg + small_image_url: https://myanimelist.net/images/anime/1805/132335t.jpg + large_image_url: https://myanimelist.net/images/anime/1805/132335l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1805/132335.webp + small_image_url: https://myanimelist.net/images/anime/1805/132335t.webp + large_image_url: https://myanimelist.net/images/anime/1805/132335l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6R542qtKQIA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Benriya Saitou-san, Isekai ni Iku + - type: Japanese + title: 便利屋斎藤さん、異世界に行く + - type: English + title: Handyman Saitou in Another World + title: Benriya Saitou-san, Isekai ni Iku + title_english: Handyman Saitou in Another World + title_japanese: 便利屋斎藤さん、異世界に行く + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-08T00:00:00+00:00' + to: '2023-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2023 + to: + day: 26 + month: 3 + year: 2023 + string: Jan 8, 2023 to Mar 26, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.37 + scored_by: 104864 + rank: 2864 + popularity: 1238 + members: 227861 + favorites: 816 + synopsis: |- + Despite being a handyman with a wide range of skills, Saitou is severely undervalued and underpaid. When he complains, his boss fires him, claiming that he is easily replaceable. As if his luck was not bad enough, Saitou soon finds himself about to be run over by a truck on his way home. + + Surprisingly enough, Saitou does not die; instead, he is transported to another world. There, he meets a party composed of the female knight Raelza, the moonlight fairy Lafanpan, and the mage Morlock, who are all coincidentally looking to recruit a new member with a skill set like Saitou's. + + Throughout their time together, Saitou uses his expertise to assist his fellow party members and soon comes to receive the recognition he never thought was possible. However, Saitou's presence may just be the catalyst that will connect a diverse cast of people from different places, slowly uncovering the fate that could bring a great change to this world. + + [Written by MAL Rewrite] + background: Benriya Saitou-san, Isekai ni Iku was released on Blu-ray and DVD in three volumes from March 24, 2023, + to May 24, 2023. + season: winter + year: 2023 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 51711 + url: https://myanimelist.net/anime/51711/Hyouken_no_Majutsushi_ga_Sekai_wo_Suberu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1049/131580.jpg + small_image_url: https://myanimelist.net/images/anime/1049/131580t.jpg + large_image_url: https://myanimelist.net/images/anime/1049/131580l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1049/131580.webp + small_image_url: https://myanimelist.net/images/anime/1049/131580t.webp + large_image_url: https://myanimelist.net/images/anime/1049/131580l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9KpK4o3fo58?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hyouken no Majutsushi ga Sekai wo Suberu + - type: Japanese + title: 冰剣の魔術師が世界を統べる + - type: English + title: The Iceblade Sorcerer Shall Rule the World + title: Hyouken no Majutsushi ga Sekai wo Suberu + title_english: The Iceblade Sorcerer Shall Rule the World + title_japanese: 冰剣の魔術師が世界を統べる + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-06T00:00:00+00:00' + to: '2023-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2023 + to: + day: 24 + month: 3 + year: 2023 + string: Jan 6, 2023 to Mar 24, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.36 + scored_by: 104419 + rank: 9002 + popularity: 1293 + members: 217796 + favorites: 838 + synopsis: |- + As the first commoner to attend the prestigious Arnold Academy of Sorcery, Ray White is immediately met with contempt from some of the students hailing from nobility. Unbeknownst to them, Ray's real identity is that of the famous Iceblade Sorcerer—a hero who led the country to victory in a past war and is one of the seven strongest sorcerers alive. Despite his legendary status, Ray wants nothing more than to live out the ordinary school life he never had. + + Ray quickly makes friends with some of the most influential students thanks to his kind and amiable nature. Unfortunately, as those with nefarious motives begin to make their move, Ray may soon have no choice but to use his true power to preserve the bonds that make his new life worthwhile. + + [Written by MAL Rewrite] + background: Hyouken no Majutsushi ga Sekai wo Suberu was released on Blu-ray on April 26, 2023. + season: winter + year: 2023 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 2600 + type: anime + name: Cloud Hearts + url: https://myanimelist.net/anime/producer/2600/Cloud_Hearts + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 49612 + url: https://myanimelist.net/anime/49612/Ningen_Fushin_no_Boukensha-tachi_ga_Sekai_wo_Sukuu_you_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1446/131578.jpg + small_image_url: https://myanimelist.net/images/anime/1446/131578t.jpg + large_image_url: https://myanimelist.net/images/anime/1446/131578l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1446/131578.webp + small_image_url: https://myanimelist.net/images/anime/1446/131578t.webp + large_image_url: https://myanimelist.net/images/anime/1446/131578l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vH32l69yp80?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu + - type: Synonym + title: Apparently + - type: Synonym + title: Disillusioned Adventurers Will Save the World + - type: Japanese + title: 人間不信の冒険者たちが世界を救うようです + - type: English + title: 'Ningen Fushin: Adventurers Who Don''t Believe in Humanity Will Save the World' + title: Ningen Fushin no Boukensha-tachi ga Sekai wo Sukuu you desu + title_english: 'Ningen Fushin: Adventurers Who Don''t Believe in Humanity Will Save the World' + title_japanese: 人間不信の冒険者たちが世界を救うようです + title_synonyms: + - Apparently + - Disillusioned Adventurers Will Save the World + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-10T00:00:00+00:00' + to: '2023-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2023 + to: + day: 28 + month: 3 + year: 2023 + string: Jan 10, 2023 to Mar 28, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 87150 + rank: 9125 + popularity: 1342 + members: 208860 + favorites: 720 + synopsis: |- + Veteran adventurer Nick, mage Tiana, cleric Zem, and half-dragon Curran each show up alone at a tavern, only to find themselves seated at the same table. As the night goes on, they take turns divulging their grievances and the hobbies they have taken up as a means of coping. While their stories are utterly different, there is one common thread: betrayal. Each of the four, having been bitterly betrayed by someone they treasured, has developed a deep-seated distrust of humanity. + + But in addition to their similar worldviews, the four have one more commonality: a critical lack of funds. Realizing that things cannot continue as they are, they decide to form a party, rank up, and make as much money as possible to spend on their respective hobbies. What these disillusioned adventurers do not know, however, is that they will one day save the world from unfathomable peril. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2023 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2670 + type: anime + name: Geek Pictures + url: https://myanimelist.net/anime/producer/2670/Geek_Pictures + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 52446 + url: https://myanimelist.net/anime/52446/Kaiko_sareta_Ankoku_Heishi_30-dai_no_Slow_na_Second_Life + images: + jpg: + image_url: https://myanimelist.net/images/anime/1224/132328.jpg + small_image_url: https://myanimelist.net/images/anime/1224/132328t.jpg + large_image_url: https://myanimelist.net/images/anime/1224/132328l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1224/132328.webp + small_image_url: https://myanimelist.net/images/anime/1224/132328t.webp + large_image_url: https://myanimelist.net/images/anime/1224/132328l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oVO3VxKTDrk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life + - type: Japanese + title: 解雇された暗黒兵士(30代)のスローなセカンドライフ + - type: English + title: Chillin' in My 30s after Getting Fired from the Demon King's Army + title: Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life + title_english: Chillin' in My 30s after Getting Fired from the Demon King's Army + title_japanese: 解雇された暗黒兵士(30代)のスローなセカンドライフ + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-07T00:00:00+00:00' + to: '2023-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2023 + to: + day: 25 + month: 3 + year: 2023 + string: Jan 7, 2023 to Mar 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7 + scored_by: 92197 + rank: 5138 + popularity: 1456 + members: 190100 + favorites: 587 + synopsis: |- + For more than 30 years, Dariel has been a loyal soldier in the Demon King's army, having been raised by Granbarza, one of the Four Heavenly Generals. However, as Dariel lacks any magical potential, he is nothing but a disgrace in the eyes of Granbarza's son, Bashbarza, who fires Dariel right after assuming his father's position as a general. + + Stripped of a home and a job, Dariel wanders the forests, where he stumbles upon a human girl named Malika running from a monster. After Dariel intervenes to help Malika, she invites him to stay at her village in return. There, he discovers that the reason he has zero suitability for magic as a demon is that he is, in fact, a human. + + However, Dariel is no ordinary human. Possessing potential that far outweighs even heroes, Dariel may soon find himself involved in the humans and demons' seemingly never-ending conflict, facing against the race he once considered allies. + + [Written by MAL Rewrite] + background: Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life was released on Blu-ray in four volumes from + March 22, 2023, to June 21, 2023. + season: winter + year: 2023 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 354 + type: anime + name: Encourage Films + url: https://myanimelist.net/anime/producer/354/Encourage_Films + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 51678 + url: https://myanimelist.net/anime/51678/Oniichan_wa_Oshimai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1058/131632.jpg + small_image_url: https://myanimelist.net/images/anime/1058/131632t.jpg + large_image_url: https://myanimelist.net/images/anime/1058/131632l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1058/131632.webp + small_image_url: https://myanimelist.net/images/anime/1058/131632t.webp + large_image_url: https://myanimelist.net/images/anime/1058/131632l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/L0GbDAXQbfs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oniichan wa Oshimai! + - type: Synonym + title: Onimai + - type: Synonym + title: Onii-chan is Done For + - type: Japanese + title: お兄ちゃんはおしまい! + - type: English + title: 'Onimai: I''m Now Your Sister!' + title: Oniichan wa Oshimai! + title_english: 'Onimai: I''m Now Your Sister!' + title_japanese: お兄ちゃんはおしまい! + title_synonyms: + - Onimai + - Onii-chan is Done For + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-05T00:00:00+00:00' + to: '2023-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2023 + to: + day: 23 + month: 3 + year: 2023 + string: Jan 5, 2023 to Mar 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.65 + scored_by: 90948 + rank: 1631 + popularity: 1467 + members: 189515 + favorites: 2760 + synopsis: |- + Self-professed "home security guard" Mahiro Oyama has not left his home in years, secluding himself in his room playing erotic visual novels. This depraved lifestyle causes his prodigious sister, Mihari, to worry about his well-being. In hopes of solving this problem, she devises a plan to rehabilitate him back to normalcy. + + The first part of Mihari's plan is to concoct a medicine that changes her brother's biological constitution into a bona fide female, much to Mahiro's vehement dismay. Stuck in this predicament, Mahiro has no choice but to live out his life as a cute girl until the effect wears off—if it ever does. + + [Written by MAL Rewrite] + background: Oniichan wa Oshimai! was released on Blu-ray in two boxes from April 19, 2023, to June 21, 2023. + season: winter + year: 2023 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 44204 + url: https://myanimelist.net/anime/44204/Kyokou_Suiri_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1901/131653.jpg + small_image_url: https://myanimelist.net/images/anime/1901/131653t.jpg + large_image_url: https://myanimelist.net/images/anime/1901/131653l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1901/131653.webp + small_image_url: https://myanimelist.net/images/anime/1901/131653t.webp + large_image_url: https://myanimelist.net/images/anime/1901/131653l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VpQSApkWmtk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kyokou Suiri Season 2 + - type: Synonym + title: In/Spectre 2nd Season + - type: Synonym + title: Kyokou Suiri 2nd Season + - type: Japanese + title: 虚構推理 Season2 + - type: English + title: In/Spectre 2 + title: Kyokou Suiri Season 2 + title_english: In/Spectre 2 + title_japanese: 虚構推理 Season2 + title_synonyms: + - In/Spectre 2nd Season + - Kyokou Suiri 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-01-09T00:00:00+00:00' + to: '2023-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2023 + to: + day: 27 + month: 3 + year: 2023 + string: Jan 9, 2023 to Mar 27, 2023 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.37 + scored_by: 58107 + rank: 2876 + popularity: 1474 + members: 188553 + favorites: 601 + synopsis: |- + During a blizzard, Masayuki Muroi's old high school friend pushes him off a mountain to certain death. However, Masayuki survives the fall and escapes to safety thanks to Yuki-Onna, the spirit of a beautiful young woman who is said to lead men to their demise—but all she asks in return is money. + + Eleven years later, Masayuki has lived a successful life, having gotten married and amassing a great fortune. But when his company collapses and his wife cheats on him, Masayuki retreats to the city where Yuki-Onna once saved him, and he reconnects with her by offering her money and tasty meals. While Masayuki recovers from his misfortunes, another one knocks on his door: his ex-wife is found beaten to death, and now only Yuki-Onna—who cannot reveal herself—can corroborate his alibi. + + With no one to turn to, Yuki-Onna enlists the help of the spirits' God of Wisdom, Kotoko Iwanaga. Revered by the various spirits that wander the earth, Kotoko uses her extraordinary wits and cunning to solve all quarrels they may have. In her duty to protect spirits and humans from colliding, Kotoko drags along her immortal boyfriend, Kurou Sakuragawa, and promises to prove Masayuki's innocence without exposing Yuki-Onna's existence. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2023 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 139 + type: anime + name: Nihon Ad Systems + url: https://myanimelist.net/anime/producer/139/Nihon_Ad_Systems + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2681 + type: anime + name: Mixi + url: https://myanimelist.net/anime/producer/2681/Mixi + - mal_id: 2903 + type: anime + name: Studio Tenjin + url: https://myanimelist.net/anime/producer/2903/Studio_Tenjin + licensors: [] + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/54-2023-spring.yaml b/test/fixtures/jikan/season_matrix/54-2023-spring.yaml new file mode 100644 index 0000000..82e1408 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/54-2023-spring.yaml @@ -0,0 +1,3266 @@ +metadata: + captured_at: '2026-05-11T11:34:47Z' + label: 2023-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2023/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:47 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:a3c382b2f5585e49ae267f4eb1c37308a78aa45d + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 283 + per_page: 25 + data: + - mal_id: 51019 + url: https://myanimelist.net/anime/51019/Kimetsu_no_Yaiba__Katanakaji_no_Sato-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1765/135099.jpg + small_image_url: https://myanimelist.net/images/anime/1765/135099t.jpg + large_image_url: https://myanimelist.net/images/anime/1765/135099l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1765/135099.webp + small_image_url: https://myanimelist.net/images/anime/1765/135099t.webp + large_image_url: https://myanimelist.net/images/anime/1765/135099l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/a9tq0aS5Zu8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba: Katanakaji no Sato-hen' + - type: Japanese + title: 鬼滅の刃 刀鍛冶の里編 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc' + title: 'Kimetsu no Yaiba: Katanakaji no Sato-hen' + title_english: 'Demon Slayer: Kimetsu no Yaiba Swordsmith Village Arc' + title_japanese: 鬼滅の刃 刀鍛冶の里編 + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-04-09T00:00:00+00:00' + to: '2023-06-18T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2023 + to: + day: 18 + month: 6 + year: 2023 + string: Apr 9, 2023 to Jun 18, 2023 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 8.15 + scored_by: 678443 + rank: 521 + popularity: 162 + members: 1115709 + favorites: 9860 + synopsis: |- + For centuries, the Demon Slayer Corps has sacredly kept the location of Swordsmith Village a secret. As the village of the greatest forgers, it provides Demon Slayers with the finest weapons, which allow them to fight night-crawling fiends and ensure the safety of humans. After his sword was chipped and deemed useless, Tanjirou Kamado, along with his precious little sister Nezuko, is escorted to the village to receive a new one. + + Meanwhile, the death of an Upper Rank Demon disturbs the idle order in the demon world. As Tanjirou becomes acquainted with Mist Hashira Muichirou Tokitou and Love Hashira Mitsuri Kanroji, ferocious powers creep from the shadows and threaten to shatter the Demon Slayers' greatest line of defense. + + [Written by MAL Rewrite] + background: Katanakaji no Sato-hen adapts chapters 98 to 127 of the manga. + season: spring + year: 2023 + broadcast: + day: Sundays + time: '23:15' + timezone: Asia/Tokyo + string: Sundays at 23:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52034 + url: https://myanimelist.net/anime/52034/Oshi_no_Ko + images: + jpg: + image_url: https://myanimelist.net/images/anime/1812/134736.jpg + small_image_url: https://myanimelist.net/images/anime/1812/134736t.jpg + large_image_url: https://myanimelist.net/images/anime/1812/134736l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1812/134736.webp + small_image_url: https://myanimelist.net/images/anime/1812/134736t.webp + large_image_url: https://myanimelist.net/images/anime/1812/134736l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1yXa8MAmocQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '[Oshi no Ko]' + - type: Synonym + title: My Star + - type: Japanese + title: 【推しの子】 + - type: English + title: '[Oshi No Ko]' + title: '[Oshi no Ko]' + title_english: '[Oshi No Ko]' + title_japanese: 【推しの子】 + title_synonyms: + - My Star + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-04-12T00:00:00+00:00' + to: '2023-06-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2023 + to: + day: 28 + month: 6 + year: 2023 + string: Apr 12, 2023 to Jun 28, 2023 + duration: 30 min per ep + rating: PG-13 - Teens 13 or older + score: 8.53 + scored_by: 621204 + rank: 151 + popularity: 176 + members: 1049691 + favorites: 31509 + synopsis: |- + In the entertainment world, celebrities often show exaggerated versions of themselves to the public, concealing their true thoughts and struggles beneath elaborate lies. Fans buy into these fabrications, showering their idols with undying love and support, until something breaks the illusion. Sixteen-year-old rising star Ai Hoshino of pop idol group B Komachi has the world captivated; however, when she announces a hiatus due to health concerns, the news causes many to become worried. + + As a huge fan of Ai, gynecologist Gorou Amemiya cheers her on from his countryside medical practice, wishing he could meet her in person one day. His wish comes true when Ai shows up at his hospital—not sick, but pregnant with twins! While the doctor promises Ai to safely deliver her children, he wonders if this encounter with the idol will forever change the nature of his relationship with her. + + [Written by MAL Rewrite] + background: '[Oshi no Ko] adapts the first 4 volumes of Aka Akasaka & Mengo Yokoyari''s manga series of the same name. + It won the award for Anime of the Year in the television series category at the 2024 Tokyo Anime Award Festival.' + season: spring + year: 2023 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 46569 + url: https://myanimelist.net/anime/46569/Jigokuraku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1075/131925.jpg + small_image_url: https://myanimelist.net/images/anime/1075/131925t.jpg + large_image_url: https://myanimelist.net/images/anime/1075/131925l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1075/131925.webp + small_image_url: https://myanimelist.net/images/anime/1075/131925t.webp + large_image_url: https://myanimelist.net/images/anime/1075/131925l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fsW0fU1hobQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jigokuraku + - type: Synonym + title: Paradition + - type: Synonym + title: Heavenhell + - type: Japanese + title: 地獄楽 + - type: English + title: Hell's Paradise + title: Jigokuraku + title_english: Hell's Paradise + title_japanese: 地獄楽 + title_synonyms: + - Paradition + - Heavenhell + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-04-01T00:00:00+00:00' + to: '2023-07-01T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2023 + to: + day: 1 + month: 7 + year: 2023 + string: Apr 1, 2023 to Jul 1, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.09 + scored_by: 526673 + rank: 611 + popularity: 209 + members: 954323 + favorites: 10197 + synopsis: |- + Sentenced to death, ninja Gabimaru the Hollow finds himself apathetic. After leading a blood-soaked life, Gabimaru believes he deserves to die. However, every attempt to execute him inexplicably fails. Finally, Sagiri Yamada Asaemon, a fledgling member of a famed executioner clan, is asked to take Gabimaru's life; yet Sagiri makes no move to kill him as requested. + + Insisting that Gabimaru will not die because of his love for his wife, Sagiri instead offers him the chance to obtain a full pardon for his crimes. If he can travel to the island of Shinsekyo and obtain the Elixir of Life—which supposedly grants immortality—and bring it back for the shogun, then his freedom will be assured. + + But of the many who have traveled to Shinsekyo in search of the mythical Elixir, not a single person has returned sound of mind, if at all. Though unaware of the numerous dangers ahead, Gabimaru decides to accept the offer—alongside ten other death row convicts—in hope that he and his wife may finally live in peace. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52211 + url: https://myanimelist.net/anime/52211/Mashle + images: + jpg: + image_url: https://myanimelist.net/images/anime/1218/135107.jpg + small_image_url: https://myanimelist.net/images/anime/1218/135107t.jpg + large_image_url: https://myanimelist.net/images/anime/1218/135107l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1218/135107.webp + small_image_url: https://myanimelist.net/images/anime/1218/135107t.webp + large_image_url: https://myanimelist.net/images/anime/1218/135107l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Hbz4shbCPCA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mashle + - type: Japanese + title: マッシュル-MASHLE- + - type: English + title: 'Mashle: Magic and Muscles' + title: Mashle + title_english: 'Mashle: Magic and Muscles' + title_japanese: マッシュル-MASHLE- + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-08T00:00:00+00:00' + to: '2023-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2023 + to: + day: 1 + month: 7 + year: 2023 + string: Apr 8, 2023 to Jul 1, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 447596 + rank: 1784 + popularity: 289 + members: 795731 + favorites: 4821 + synopsis: |- + In this magical world, one is easily identified as having magical abilities by a distinctive mark on their face. Those unable to practice magic are swiftly exterminated to maintain the magical integrity of society. However, deep within a forest lies an anomaly in Mash Burnedead, who can be found pumping iron with one arm and lifting a cream puff with the other. This aloof boy with superhuman strength—but no magical abilities—leads a quiet life with his father, far removed from society. + + Mash's peace is soon disturbed when the authorities discover his lack of magical powers. They issue him an ultimatum: compete to become a Divine Visionary, which would force everyone to accept him, or be persecuted forever. To protect his family, he enrolls in the prestigious Easton Magic Academy, which only the most elite and gifted students are allowed to attend. Now, Mash must overcome his shortcomings as a magic-less being and surpass the other students—relying solely on his muscles. + + [Written by MAL Rewrite] + background: Mashle adapts the first 38 chapters of the original manga. + season: spring + year: 2023 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 142 + type: anime + name: Asatsu DK + url: https://myanimelist.net/anime/producer/142/Asatsu_DK + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53393 + url: https://myanimelist.net/anime/53393/Tengoku_Daimakyou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1121/133132.jpg + small_image_url: https://myanimelist.net/images/anime/1121/133132t.jpg + large_image_url: https://myanimelist.net/images/anime/1121/133132l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1121/133132.webp + small_image_url: https://myanimelist.net/images/anime/1121/133132t.webp + large_image_url: https://myanimelist.net/images/anime/1121/133132l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/62_aXZGkG3E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tengoku Daimakyou + - type: Japanese + title: 天国大魔境 + - type: English + title: Heavenly Delusion + title: Tengoku Daimakyou + title_english: Heavenly Delusion + title_japanese: 天国大魔境 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-04-01T00:00:00+00:00' + to: '2023-06-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 4 + year: 2023 + to: + day: 24 + month: 6 + year: 2023 + string: Apr 1, 2023 to Jun 24, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.21 + scored_by: 293020 + rank: 440 + popularity: 395 + members: 630509 + favorites: 7764 + synopsis: |- + Fifteen years ago, disaster struck human civilization, and now dangerous man-eating monsters roam the ravaged lands, posing an existential threat to the remaining survivors. Amid this turmoil, an isolated facility shelters children and nurtures them in peace. However, as a few among them find out about the world beyond the narrow periphery of their nursery's walls, their curiosity about it slowly grows. + + Meanwhile, in the outside world, young survivors Maru and Kiruko band together to search for a special place called Heaven, each for their own reasons. Carrying past burdens and tragic secrets, the two hope to find answers to the cruelty they have experienced in their lives and in the world, which still remains in tatters. + + [Written by MAL Rewrite] + background: Tengoku Daimakyou was released on Blu-ray in two volumes from August 30, 2023, to September 27, 2023. + season: spring + year: 2023 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 48549 + url: https://myanimelist.net/anime/48549/Dr_Stone__New_World + images: + jpg: + image_url: https://myanimelist.net/images/anime/1316/136268.jpg + small_image_url: https://myanimelist.net/images/anime/1316/136268t.jpg + large_image_url: https://myanimelist.net/images/anime/1316/136268l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1316/136268.webp + small_image_url: https://myanimelist.net/images/anime/1316/136268t.webp + large_image_url: https://myanimelist.net/images/anime/1316/136268l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bITRcLr4xR8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: New World' + - type: Synonym + title: Dr. Stone 3rd Season + - type: Japanese + title: Dr.STONE NEW WORLD + title: 'Dr. Stone: New World' + title_english: null + title_japanese: Dr.STONE NEW WORLD + title_synonyms: + - Dr. Stone 3rd Season + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-04-06T00:00:00+00:00' + to: '2023-06-15T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2023 + to: + day: 15 + month: 6 + year: 2023 + string: Apr 6, 2023 to Jun 15, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 293105 + rank: 528 + popularity: 411 + members: 605773 + favorites: 3364 + synopsis: |- + With the ambitious Ryuusui Nanami on board, Senkuu Ishigami and his team are almost ready to sail the seas and reach the other side of the world—where the bizarre green light that petrified humanity originated. Thanks to the revival of a skillful chef, enough food is being prepared for the entire crew, and the incredible reinvention of the GPS promises to ensure safety on the open sea. + + Preparations for the upcoming journey progress swimmingly until Senkuu receives an eerie message from a mysterious source. More driven than ever, the scientist sets out to explore the new world and discover what it can offer for his scientific cause. Though the uncharted territories may hide unkind surprises, Senkuu, with a little help from science, is ready to take on any challenge. + + [Written by MAL Rewrite] + background: 'Dr. Stone: New World adapts chapters 90-115 of the manga.' + season: spring + year: 2023 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53126 + url: https://myanimelist.net/anime/53126/Yamada-kun_to_Lv999_no_Koi_wo_Suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1298/134178.jpg + small_image_url: https://myanimelist.net/images/anime/1298/134178t.jpg + large_image_url: https://myanimelist.net/images/anime/1298/134178l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1298/134178.webp + small_image_url: https://myanimelist.net/images/anime/1298/134178t.webp + large_image_url: https://myanimelist.net/images/anime/1298/134178l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LpZI3j6Axlo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yamada-kun to Lv999 no Koi wo Suru + - type: Synonym + title: Loving Yamada at Lv999 + - type: Japanese + title: 山田くんとLv999の恋をする + - type: English + title: My Love Story with Yamada-kun at Lv999 + title: Yamada-kun to Lv999 no Koi wo Suru + title_english: My Love Story with Yamada-kun at Lv999 + title_japanese: 山田くんとLv999の恋をする + title_synonyms: + - Loving Yamada at Lv999 + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-04-02T00:00:00+00:00' + to: '2023-06-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2023 + to: + day: 25 + month: 6 + year: 2023 + string: Apr 2, 2023 to Jun 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.75 + scored_by: 290360 + rank: 1326 + popularity: 460 + members: 550148 + favorites: 5237 + synopsis: |- + After her boyfriend breaks up with her for another girl, college student Akane Kinoshita wrestles with a broken heart and the memories he left behind. Loading up Forest of Savior, the MMO they used to play together, she forms a plan to get back at her ex-boyfriend through an in-person event for the game. In the process, she runs into someone unexpected: Akito Yamada, a gaming legend who just happens to be her guildmate. + + Desperate for support, Akane ropes the asocial Yamada into helping with her scheme and lending her a shoulder to cry on. The differences between Akane and Yamada soon become apparent as they spend time together, yet they cannot help but notice each other's inner qualities. As the two gain more experience with one another in and out of the game, their tentative acquaintance may level up in a way neither expects. + + [Written by MAL Rewrite] + background: Yamada-kun to Lv999 no Koi wo Suru was released on Blu-ray and DVD in seven volumes from June 28, 2023, + to December 24, 2023. + season: spring + year: 2023 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1902 + type: anime + name: COMICSMART + url: https://myanimelist.net/anime/producer/1902/COMICSMART + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + - mal_id: 52578 + url: https://myanimelist.net/anime/52578/Boku_no_Kokoro_no_Yabai_Yatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1545/133887.jpg + small_image_url: https://myanimelist.net/images/anime/1545/133887t.jpg + large_image_url: https://myanimelist.net/images/anime/1545/133887l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1545/133887.webp + small_image_url: https://myanimelist.net/images/anime/1545/133887t.webp + large_image_url: https://myanimelist.net/images/anime/1545/133887l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1x6BnBAOwaY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Kokoro no Yabai Yatsu + - type: Synonym + title: Bokuyaba + - type: Japanese + title: 僕の心のヤバイやつ + - type: English + title: The Dangers in My Heart + title: Boku no Kokoro no Yabai Yatsu + title_english: The Dangers in My Heart + title_japanese: 僕の心のヤバイやつ + title_synonyms: + - Bokuyaba + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-02T00:00:00+00:00' + to: '2023-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2023 + to: + day: 18 + month: 6 + year: 2023 + string: Apr 2, 2023 to Jun 18, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 230485 + rank: 442 + popularity: 602 + members: 443021 + favorites: 6410 + synopsis: |- + Kyoutarou Ichikawa may look like a shy and reserved middle school student, but deep within his heart is a bloodthirsty killer. His ultimate desire is to see his classmate Anna Yamada's beautiful face writhing in pain before he ends her life. But this fantasy may never come to fruition, as Ichikawa starts to see an entirely different side to Yamada. + + Often seeking refuge in the library, Ichikawa frequently runs into Yamada. It is during these encounters that Ichikawa realizes his model classmate is actually an airhead who can never read the room. As they spend more time together, the boy cannot help but feel not only a sense of endearment toward the very girl he wishes to murder but also a desire to protect her at all costs. Is it possible that this sudden change in Ichikawa's perspective could lead to something more? + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2234 + type: anime + name: TV Asahi Music + url: https://myanimelist.net/anime/producer/2234/TV_Asahi_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52830 + url: https://myanimelist.net/anime/52830/Isekai_de_Cheat_Skill_wo_Te_ni_Shita_Ore_wa_Genjitsu_Sekai_wo_mo_Musou_Suru__Level_Up_wa_Jinsei_wo_Kaeta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1316/134327.jpg + small_image_url: https://myanimelist.net/images/anime/1316/134327t.jpg + large_image_url: https://myanimelist.net/images/anime/1316/134327l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1316/134327.webp + small_image_url: https://myanimelist.net/images/anime/1316/134327t.webp + large_image_url: https://myanimelist.net/images/anime/1316/134327l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/u7YOzGniO5g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta' + - type: Synonym + title: Iseleve + - type: Japanese + title: 異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ + - type: English + title: I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too + title: 'Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta' + title_english: I Got a Cheat Skill in Another World and Became Unrivaled in The Real World, Too + title_japanese: 異世界でチート能力を手にした俺は、現実世界をも無双する ~レベルアップは人生を変えた~ + title_synonyms: + - Iseleve + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-04-07T00:00:00+00:00' + to: '2023-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2023 + to: + day: 30 + month: 6 + year: 2023 + string: Apr 7, 2023 to Jun 30, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.33 + scored_by: 209654 + rank: 9176 + popularity: 694 + members: 392467 + favorites: 2344 + synopsis: |- + All his life, Yuuya Tenjou has been the subject of resentment and contempt from everyone around him, even from his parents. To make matters worse, his grandfather—the only person who ever showed him affection—suddenly dies, leaving Yuuya truly alone. + + Despite facing many adversities, Yuuya does what he can to offer kindness to those who need it—but even the most good-natured people can only tolerate so much abuse. Just when he reaches his breaking point, a flicker of hope appears in the form of a hidden door in his bathroom. + + This door provides two-way access to an abandoned house in another world, where he instantly gains game-like stats and skills. Moreover, the house once belonged to a sage, which gives Yuuya access to remarkable weapons, equipment, and crops with extraordinary effects. With these newfound blessings, the once-undesirable Yuuya may just reach his true potential and become unstoppable. + + [Written by MAL Rewrite] + background: 'Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta + was released on Blu-ray and DVD in two volumes from July 26, 2023, to September 27, 2023.' + season: spring + year: 2023 + broadcast: + day: Fridays + time: 00:30 + timezone: Asia/Tokyo + string: Fridays at 00:30 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1237 + type: anime + name: Millepensee + url: https://myanimelist.net/anime/producer/1237/Millepensee + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 51958 + url: https://myanimelist.net/anime/51958/Kono_Subarashii_Sekai_ni_Bakuen_wo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1626/135844.jpg + small_image_url: https://myanimelist.net/images/anime/1626/135844t.jpg + large_image_url: https://myanimelist.net/images/anime/1626/135844l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1626/135844.webp + small_image_url: https://myanimelist.net/images/anime/1626/135844t.webp + large_image_url: https://myanimelist.net/images/anime/1626/135844l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IN5XdlB0x0U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Subarashii Sekai ni Bakuen wo! + - type: Japanese + title: この素晴らしい世界に爆焔を! + - type: English + title: 'KonoSuba: An Explosion on This Wonderful World!' + title: Kono Subarashii Sekai ni Bakuen wo! + title_english: 'KonoSuba: An Explosion on This Wonderful World!' + title_japanese: この素晴らしい世界に爆焔を! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-06T00:00:00+00:00' + to: '2023-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2023 + to: + day: 22 + month: 6 + year: 2023 + string: Apr 6, 2023 to Jun 22, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 169140 + rank: 2161 + popularity: 696 + members: 391722 + favorites: 2105 + synopsis: |- + Megumin is a young and passionate wizard from the Crimson Demon Village, a remote community of mages with red eyes and a flair for the dramatic. She has devoted her life to mastering explosion magic, a powerful but impractical spell that leaves her drained of mana and unable to move for the rest of the day. Regardless, she refuses to learn any other skills. + + Along with her childhood friend and self-proclaimed rival, Yunyun, Megumin enrolls in the Red Prison: a prestigious academy for Crimson Demon magic users. There, she learns more about the secrets and history of her clan, as well as the threats and challenges they must face. As she polishes her power at the Red Prison with the help of her loyal familiar Chomusuke and her adorable little sister Komekko, Megumin aims to become the greatest explosion wizard of all time! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Thursdays + time: 01:00 + timezone: Asia/Tokyo + string: Thursdays at 01:00 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1967 + type: anime + name: Drive + url: https://myanimelist.net/anime/producer/1967/Drive + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 50416 + url: https://myanimelist.net/anime/50416/Skip_to_Loafer + images: + jpg: + image_url: https://myanimelist.net/images/anime/1518/138730.jpg + small_image_url: https://myanimelist.net/images/anime/1518/138730t.jpg + large_image_url: https://myanimelist.net/images/anime/1518/138730l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1518/138730.webp + small_image_url: https://myanimelist.net/images/anime/1518/138730t.webp + large_image_url: https://myanimelist.net/images/anime/1518/138730l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/szo6BsaiJ3Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Skip to Loafer + - type: Japanese + title: スキップとローファー + - type: English + title: Skip and Loafer + title: Skip to Loafer + title_english: Skip and Loafer + title_japanese: スキップとローファー + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-04T00:00:00+00:00' + to: '2023-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2023 + to: + day: 20 + month: 6 + year: 2023 + string: Apr 4, 2023 to Jun 20, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 160458 + rank: 588 + popularity: 811 + members: 343775 + favorites: 4017 + synopsis: |- + In order to pursue her dream of bringing positive changes to Japan, Mitsumi Iwakura leaves her countryside town to attend a prestigious high school in the hustle and bustle of Tokyo. As she has already mapped a clear life plan, she has absolute confidence that there will be zero mishaps from then onwards. + + Despite her ambitious promise, the country girl ends up running late on the first day when she gets lost on her way to school. Fortunately, she meets a fellow first-year student, Sousuke Shima, who is in the same situation and offers to go with her. They eventually make it to school, but the misfortunes do not end there, as Mitsumi leaves an unfavorable first impression in front of her classmates. + + Nevertheless, the class soon takes notice of her friendship with Sousuke despite their opposing personalities. Only time will tell whether Mitsumi will be able to forge fruitful relationships with her classmates, and she will certainly not be alone. + + [Written by MAL Rewrite] + background: Skip to Loafer was released on Blu-ray in two volumes from July 26, 2023, to August 30, 2023. + season: spring + year: 2023 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2139 + type: anime + name: DMM Music + url: https://myanimelist.net/anime/producer/2139/DMM_Music + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 50307 + url: https://myanimelist.net/anime/50307/Tonikaku_Kawaii_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1996/133361.jpg + small_image_url: https://myanimelist.net/images/anime/1996/133361t.jpg + large_image_url: https://myanimelist.net/images/anime/1996/133361l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1996/133361.webp + small_image_url: https://myanimelist.net/images/anime/1996/133361t.webp + large_image_url: https://myanimelist.net/images/anime/1996/133361l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cksQYKGvr6U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tonikaku Kawaii 2nd Season + - type: Japanese + title: トニカクカワイイ + - type: English + title: 'Tonikawa: Over The Moon For You Season 2' + title: Tonikaku Kawaii 2nd Season + title_english: 'Tonikawa: Over The Moon For You Season 2' + title_japanese: トニカクカワイイ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-08T00:00:00+00:00' + to: '2023-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2023 + to: + day: 24 + month: 6 + year: 2023 + string: Apr 8, 2023 to Jun 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.65 + scored_by: 108102 + rank: 1641 + popularity: 947 + members: 295614 + favorites: 2528 + synopsis: |- + In the wake of their first home burning down, Nasa and Tsukasa Yuzaki are seeking temporary shelter at the Arisugawas' bathhouse. Though they have only been married for a short time, their relationship has only become sweeter by the day. Nasa is determined to spend as much time with his wife as possible, basking in the happiness of their marriage. + + The newlyweds find new ways to explore their relationship. From adopting a cat, going to an amusement park, and even watching an impromptu romantic comedy featuring Nasa's former teacher, every day is a new experience. But while Tsukasa continues to meet the people in Nasa's life, Nasa has yet to meet more of Tsukasa's family. Though they appear to be the picture-perfect couple to everyone around them, Nasa begins to wonder if he will ever learn more about his wife's mysterious past. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Saturdays + time: 01:05 + timezone: Asia/Tokyo + string: Saturdays at 01:05 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: [] + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53613 + url: https://myanimelist.net/anime/53613/Dead_Mount_Death_Play + images: + jpg: + image_url: https://myanimelist.net/images/anime/1930/133758.jpg + small_image_url: https://myanimelist.net/images/anime/1930/133758t.jpg + large_image_url: https://myanimelist.net/images/anime/1930/133758l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1930/133758.webp + small_image_url: https://myanimelist.net/images/anime/1930/133758t.webp + large_image_url: https://myanimelist.net/images/anime/1930/133758l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IOkS_GU9BNc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dead Mount Death Play + - type: Japanese + title: デッドマウント・デスプレイ + - type: English + title: Dead Mount Death Play + title: Dead Mount Death Play + title_english: Dead Mount Death Play + title_japanese: デッドマウント・デスプレイ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-11T00:00:00+00:00' + to: '2023-06-27T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2023 + to: + day: 27 + month: 6 + year: 2023 + string: Apr 11, 2023 to Jun 27, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.26 + scored_by: 124713 + rank: 3528 + popularity: 977 + members: 287881 + favorites: 1284 + synopsis: |- + A powerful necromancer known as the Corpse God dies during a legendary battle, only to be reborn as Polka Shinoyama, a young boy in modern-day Tokyo. In the process of trying to adapt to his new physical body, he gets targeted by various groups that deal with the supernatural. Among them is Misaki Sakimiya, a high school girl who can see spirits and is out for his blood from the very moment they meet. + + Attempting to make sense of this situation where unknown parties want him dead, Polka eventually meets Takumi Kuruya, a contractor skilled in surveillance and hacking, and Lisa Kuraki, a crime boss operating out of Shinjuku. Alongside these—and other unexpected—allies, Polka braves danger to reveal the truth of his reincarnation and the fate awaiting the world he now lives in. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1289 + type: anime + name: F.M.F + url: https://myanimelist.net/anime/producer/1289/FMF + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 2670 + type: anime + name: Geek Pictures + url: https://myanimelist.net/anime/producer/2670/Geek_Pictures + licensors: [] + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 50796 + url: https://myanimelist.net/anime/50796/Kimi_wa_Houkago_Insomnia + images: + jpg: + image_url: https://myanimelist.net/images/anime/1402/134007.jpg + small_image_url: https://myanimelist.net/images/anime/1402/134007t.jpg + large_image_url: https://myanimelist.net/images/anime/1402/134007l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1402/134007.webp + small_image_url: https://myanimelist.net/images/anime/1402/134007t.webp + large_image_url: https://myanimelist.net/images/anime/1402/134007l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/YcgFC0Mf-ME?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi wa Houkago Insomnia + - type: Synonym + title: Kimisomu + - type: Japanese + title: 君は放課後インソムニア + - type: English + title: Insomniacs After School + title: Kimi wa Houkago Insomnia + title_english: Insomniacs After School + title_japanese: 君は放課後インソムニア + title_synonyms: + - Kimisomu + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-04-11T00:00:00+00:00' + to: '2023-07-04T00:00:00+00:00' + prop: + from: + day: 11 + month: 4 + year: 2023 + to: + day: 4 + month: 7 + year: 2023 + string: Apr 11, 2023 to Jul 4, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.08 + scored_by: 108706 + rank: 631 + popularity: 1017 + members: 276815 + favorites: 2525 + synopsis: "High schooler Ganta Nakami has trouble falling asleep most nights. As a result, he is irritable at school,\ + \ always searching for an opportunity to find a secluded place to doze off. On the other hand, Isaki Magari is a free\ + \ spirit who is well liked by her friends, but no one is aware of her sleep disorder. She makes use of the school's\ + \ abandoned astronomy club observatory as her secret sleeping bunker when she needs to get some shut-eye. \n\nAs fate\ + \ would have it, Nakami finds Magari napping in the observatory. When Magari discovers that she and Nakami have something\ + \ in common, she offers to share her secret sleeping spot with her fellow insomniac. As the two find warmth in each\ + \ other's company, the struggles they face start to become easier to confront.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2023 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2684 + type: anime + name: CHOCOLATE + url: https://myanimelist.net/anime/producer/2684/CHOCOLATE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 48585 + url: https://myanimelist.net/anime/48585/Black_Clover__Mahou_Tei_no_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/1337/136363.jpg + small_image_url: https://myanimelist.net/images/anime/1337/136363t.jpg + large_image_url: https://myanimelist.net/images/anime/1337/136363l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1337/136363.webp + small_image_url: https://myanimelist.net/images/anime/1337/136363t.webp + large_image_url: https://myanimelist.net/images/anime/1337/136363l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EZOToP8xLPg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Black Clover: Mahou Tei no Ken' + - type: Synonym + title: 'Black Clover: Mahoutei no Ken' + - type: Japanese + title: ブラッククローバー 魔法帝の剣 + - type: English + title: 'Black Clover: Sword of the Wizard King' + title: 'Black Clover: Mahou Tei no Ken' + title_english: 'Black Clover: Sword of the Wizard King' + title_japanese: ブラッククローバー 魔法帝の剣 + title_synonyms: + - 'Black Clover: Mahoutei no Ken' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-06-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 6 + year: 2023 + to: + day: null + month: null + year: null + string: Jun 16, 2023 + duration: 1 hr 53 min + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 122545 + rank: 775 + popularity: 1042 + members: 270289 + favorites: 2798 + synopsis: |- + As a lionhearted boy who can’t wield magic strives for the title of Wizard King, four banished Wizard Kings of yore return to crush the Clover Kingdom. + + (Source: Netflix) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + licensors: [] + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51693 + url: https://myanimelist.net/anime/51693/Kaminaki_Sekai_no_Kamisama_Katsudou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1794/135148.jpg + small_image_url: https://myanimelist.net/images/anime/1794/135148t.jpg + large_image_url: https://myanimelist.net/images/anime/1794/135148l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1794/135148.webp + small_image_url: https://myanimelist.net/images/anime/1794/135148t.webp + large_image_url: https://myanimelist.net/images/anime/1794/135148l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MD_q7xYb-Xs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaminaki Sekai no Kamisama Katsudou + - type: Synonym + title: Kamikatsu + - type: Synonym + title: What God Does in a World Without Gods + - type: Japanese + title: 神無き世界のカミサマ活動 + - type: English + title: 'Kamikatsu: Working for God in a Godless World' + title: Kaminaki Sekai no Kamisama Katsudou + title_english: 'Kamikatsu: Working for God in a Godless World' + title_japanese: 神無き世界のカミサマ活動 + title_synonyms: + - Kamikatsu + - What God Does in a World Without Gods + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-06T00:00:00+00:00' + to: '2023-07-06T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2023 + to: + day: 6 + month: 7 + year: 2023 + string: Apr 6, 2023 to Jul 6, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.68 + scored_by: 103437 + rank: 7060 + popularity: 1193 + members: 237636 + favorites: 791 + synopsis: |- + Under the belief that the omnipotent god Mitama will come to save him, Yukito Urabe participates in a ritual to become the new leader of his father's cult. But when the boy drowns during the ritual, he wishes to be reborn in a world without gods or religion. + + Reawakening in a completely different world devoid of spirituality. He meets a deviant girl named Aruaru, who introduces him to her village. However, his idyllic image of this world's society is short-lived when he witnesses a public group suicide and learns of the country's end-of-life system: at any moment, the government may order any citizen to die. + + Aruaru and her sister are forcibly taken for execution soon after, prompting Yukito to rush to their rescue—but to no avail. In a moment of desperation, Yukito recalls his father's teachings and utters a prayer for Mitama to save them. Seemingly answering his call, a little girl descends from the sky and annihilates everyone who harmed Yukito and his friends. To Yukito's surprise, the girl introduces herself as Mitama. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2201 + type: anime + name: Studio Palette + url: https://myanimelist.net/anime/producer/2201/Studio_Palette + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52608 + url: https://myanimelist.net/anime/52608/Tensei_Kizoku_no_Isekai_Boukenroku__Jichou_wo_Shiranai_Kamigami_no_Shito + images: + jpg: + image_url: https://myanimelist.net/images/anime/1071/135255.jpg + small_image_url: https://myanimelist.net/images/anime/1071/135255t.jpg + large_image_url: https://myanimelist.net/images/anime/1071/135255l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1071/135255.webp + small_image_url: https://myanimelist.net/images/anime/1071/135255t.webp + large_image_url: https://myanimelist.net/images/anime/1071/135255l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BSdONbzXf9k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito' + - type: Synonym + title: 'Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint' + - type: Japanese + title: 転生貴族の異世界冒険録~自重を知らない神々の使徒~ + - type: English + title: 'The Aristocrat''s Otherworldly Adventure: Serving Gods Who Go Too Far' + title: 'Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito' + title_english: 'The Aristocrat''s Otherworldly Adventure: Serving Gods Who Go Too Far' + title_japanese: 転生貴族の異世界冒険録~自重を知らない神々の使徒~ + title_synonyms: + - 'Chronicles of an Aristocrat Reborn in Another World: The Apostle of the Gods Who Know No Self-Restraint' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-03T00:00:00+00:00' + to: '2023-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2023 + to: + day: 19 + month: 6 + year: 2023 + string: Apr 3, 2023 to Jun 19, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.68 + scored_by: 116305 + rank: 7090 + popularity: 1235 + members: 228140 + favorites: 1097 + synopsis: |- + On his way to a convenience store, Kazuya Shiina tries to defend two young girls from an armed assailant, only to end up getting stabbed himself and dying on the spot. This good deed allows him to be reborn with all his memories in another world as Cain von Silford, the third son of a margrave. + + When Cain turns five, a baptismal ceremony in the church grants him an audience to the seven gods who preside over the world. Not only do the gods fill him in on the circumstances of his reincarnation, but they also give Cain their respective divine protections—allowing him to use cheat-like abilities in swordsmanship, magic, and many other aspects. + + With these blessings, Cain sets out to live a fulfilling life that he deems a dream come true. However, it soon becomes clear that the gods have more plans for him than just a haphazard bestowal of overwhelming power. + + [Written by MAL Rewrite] + background: 'Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito was released on Blu-ray by Happinet + Phantom Studios on August 2, 2023.' + season: spring + year: 2023 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2476 + type: anime + name: Tohjak + url: https://myanimelist.net/anime/producer/2476/Tohjak + - mal_id: 2477 + type: anime + name: Hifumi Shobo + url: https://myanimelist.net/anime/producer/2477/Hifumi_Shobo + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 207 + type: anime + name: Magic Bus + url: https://myanimelist.net/anime/producer/207/Magic_Bus + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 52955 + url: https://myanimelist.net/anime/52955/Mahoutsukai_no_Yome_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1532/135155.jpg + small_image_url: https://myanimelist.net/images/anime/1532/135155t.jpg + large_image_url: https://myanimelist.net/images/anime/1532/135155l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1532/135155.webp + small_image_url: https://myanimelist.net/images/anime/1532/135155t.webp + large_image_url: https://myanimelist.net/images/anime/1532/135155l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Pb8O8SKcb94?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahoutsukai no Yome Season 2 + - type: Synonym + title: The Ancient Magus Bride 2 + - type: Synonym + title: Mahoutsukai no Yome 2 + - type: Synonym + title: Mahoyome + - type: Japanese + title: 魔法使いの嫁 SEASON2 + - type: English + title: The Ancient Magus' Bride Season 2 + title: Mahoutsukai no Yome Season 2 + title_english: The Ancient Magus' Bride Season 2 + title_japanese: 魔法使いの嫁 SEASON2 + title_synonyms: + - The Ancient Magus Bride 2 + - Mahoutsukai no Yome 2 + - Mahoyome + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-06T00:00:00+00:00' + to: '2023-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2023 + to: + day: 22 + month: 6 + year: 2023 + string: Apr 6, 2023 to Jun 22, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.77 + scored_by: 76232 + rank: 1264 + popularity: 1287 + members: 219300 + favorites: 1088 + synopsis: |- + Apprentice mage Chise Hatori is invited to enroll at the College, a prestigious learning institution for sorcerers, to examine and look for a way to remove the curses she bears. Despite the reluctance of her groom, Elias Ainsworth, Chise accepts the proposal, as she believes attending the school might help her minimize her self-sacrificing tendencies. + + From the get-go, Chise grabs the attention of her classmates and professors alike, who have never seen a mage in action before. However, there is a sinister plot brewing behind the College's back, and the young mage will have to determine who is friend or foe in order to put a stop to it. + + [Written by MAL Rewrite] + background: Mahoutsukai no Yome Season 2 was released on Blu-ray in two volumes from August 23, 2023, to October 25, + 2023. + season: spring + year: 2023 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1452 + type: anime + name: Mag Garden + url: https://myanimelist.net/anime/producer/1452/Mag_Garden + - mal_id: 1639 + type: anime + name: Chiptune + url: https://myanimelist.net/anime/producer/1639/Chiptune + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2205 + type: anime + name: Studio Kafka + url: https://myanimelist.net/anime/producer/2205/Studio_Kafka + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53129 + url: https://myanimelist.net/anime/53129/Seishun_Buta_Yarou_wa_Odekake_Sister_no_Yume_wo_Minai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1540/134808.jpg + small_image_url: https://myanimelist.net/images/anime/1540/134808t.jpg + large_image_url: https://myanimelist.net/images/anime/1540/134808l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1540/134808.webp + small_image_url: https://myanimelist.net/images/anime/1540/134808t.webp + large_image_url: https://myanimelist.net/images/anime/1540/134808l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Chwh1IboZWg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seishun Buta Yarou wa Odekake Sister no Yume wo Minai + - type: Japanese + title: 青春ブタ野郎はおでかけシスターの夢を見ない + - type: English + title: Rascal Does Not Dream of a Sister Venturing Out + title: Seishun Buta Yarou wa Odekake Sister no Yume wo Minai + title_english: Rascal Does Not Dream of a Sister Venturing Out + title_japanese: 青春ブタ野郎はおでかけシスターの夢を見ない + title_synonyms: [] + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-06-23T00:00:00+00:00' + to: null + prop: + from: + day: 23 + month: 6 + year: 2023 + to: + day: null + month: null + year: null + string: Jun 23, 2023 + duration: 1 hr 13 min + rating: PG-13 - Teens 13 or older + score: 7.76 + scored_by: 92422 + rank: 1292 + popularity: 1368 + members: 204211 + favorites: 707 + synopsis: |- + Sakuta Azusagawa's little sister, Kaede, is wrapping up middle school and needs to make an important decision. The school counselor believes it is in Kaede's best interest to attend an online high school, given her history of being a shut-in and her crippling phobia of traditional classrooms. However, Kaede wishes to enroll in Minegahara High School, just like her brother, as she desperately hopes for a typical high school experience. She pleads with Sakuta; his girlfriend, Mai Sakurajima; and Mai's half-sister, Nodoka Toyohama, to help her study for the entrance exam—and they enthusiastically agree. But her envisioned high school life does not unfold as planned. With her unresolved trauma coming to a head, Kaede grapples with the conflict of determining what sort of future path she truly wants to embark upon. + + [Written by MAL Rewrite] + background: The anime covers volume 8 of the light novel. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 52308 + url: https://myanimelist.net/anime/52308/Kanojo_ga_Koushaku-tei_ni_Itta_Riyuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1109/130452.jpg + small_image_url: https://myanimelist.net/images/anime/1109/130452t.jpg + large_image_url: https://myanimelist.net/images/anime/1109/130452l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1109/130452.webp + small_image_url: https://myanimelist.net/images/anime/1109/130452t.webp + large_image_url: https://myanimelist.net/images/anime/1109/130452l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MtpZJTTJEjA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo ga Koushaku-tei ni Itta Riyuu + - type: Synonym + title: Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong + - type: Synonym + title: 그녀가 공작저로 가야 했던 사정 + - type: Japanese + title: 彼女が公爵邸に行った理由 + - type: English + title: Why Raeliana Ended up at the Duke's Mansion + title: Kanojo ga Koushaku-tei ni Itta Riyuu + title_english: Why Raeliana Ended up at the Duke's Mansion + title_japanese: 彼女が公爵邸に行った理由 + title_synonyms: + - Geunyeoga Gongjagjeolo Gaya Haessdeon Sajeong + - 그녀가 공작저로 가야 했던 사정 + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-10T00:00:00+00:00' + to: '2023-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2023 + to: + day: 26 + month: 6 + year: 2023 + string: Apr 10, 2023 to Jun 26, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.52 + scored_by: 92826 + rank: 2160 + popularity: 1407 + members: 198634 + favorites: 1757 + synopsis: |- + When, after her sudden death, Rinko Hanasaki is reborn as Raeliana McMillan, she is not sure whether to curse her luck. Raeliana was a minor character in a novel Rinko read, and as the eldest daughter of a nouveau-riche baron, she led a carefree life until her unfortunate demise at the hands of her fiancé, Lord Francis Brooks. To avoid her destined fate, Raeliana is determined to end her engagement with Francis. + + However, when Francis refuses to break things off, Raeliana decides to seek help from someone of higher standing and approaches Duke Noah Wynknight—the novel's male protagonist. Using her knowledge of the plot, Raeliana captures the duke's interest by proposing a deal: she will not expose his secrets if Noah agrees to act as her fiancé. Little does she know that getting involved with a duke who only shows his true colors around her may lead to more than she bargained for. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Mondays + time: '21:30' + timezone: Asia/Tokyo + string: Mondays at 21:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2740 + type: anime + name: D&C WEBTOON Biz + url: https://myanimelist.net/anime/producer/2740/D_C_WEBTOON_Biz + licensors: [] + studios: + - mal_id: 1340 + type: anime + name: Typhoon Graphics + url: https://myanimelist.net/anime/producer/1340/Typhoon_Graphics + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 50220 + url: https://myanimelist.net/anime/50220/Isekai_Shoukan_wa_Nidome_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1387/134151.jpg + small_image_url: https://myanimelist.net/images/anime/1387/134151t.jpg + large_image_url: https://myanimelist.net/images/anime/1387/134151l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1387/134151.webp + small_image_url: https://myanimelist.net/images/anime/1387/134151t.webp + large_image_url: https://myanimelist.net/images/anime/1387/134151l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/FNoriLaH0IM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Shoukan wa Nidome desu + - type: Synonym + title: Isenido + - type: Japanese + title: 異世界召喚は二度目です + - type: English + title: Summoned to Another World for a Second Time + title: Isekai Shoukan wa Nidome desu + title_english: Summoned to Another World for a Second Time + title_japanese: 異世界召喚は二度目です + title_synonyms: + - Isenido + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-09T00:00:00+00:00' + to: '2023-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2023 + to: + day: 25 + month: 6 + year: 2023 + string: Apr 9, 2023 to Jun 25, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.68 + scored_by: 73860 + rank: 12564 + popularity: 1446 + members: 191377 + favorites: 768 + synopsis: "There was once a man who was summoned to another world, and saved it. Of course, he became too popular there,\ + \ and turned into an isekai-normie. However, that man fell into a \"trap\" and was forcibly returned to his original\ + \ world. Moreover, he had to start over as a baby!\n\nThis is the story of the way-too-fantastic ex-hero who lived\ + \ as a gloomy high-schooler, as he gets summoned once again to that same other world in a very unexpected development!\ + \ \n\n(Source: Coolmic, edited)" + background: '' + season: spring + year: 2023 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2381 + type: anime + name: Crest + url: https://myanimelist.net/anime/producer/2381/Crest + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1521 + type: anime + name: Studio Elle + url: https://myanimelist.net/anime/producer/1521/Studio_Elle + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 51705 + url: https://myanimelist.net/anime/51705/Otonari_ni_Ginga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1091/135041.jpg + small_image_url: https://myanimelist.net/images/anime/1091/135041t.jpg + large_image_url: https://myanimelist.net/images/anime/1091/135041l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1091/135041.webp + small_image_url: https://myanimelist.net/images/anime/1091/135041t.webp + large_image_url: https://myanimelist.net/images/anime/1091/135041l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZQG_2UrgzQ8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Otonari ni Ginga + - type: Japanese + title: おとなりに銀河 + - type: English + title: A Galaxy Next Door + title: Otonari ni Ginga + title_english: A Galaxy Next Door + title_japanese: おとなりに銀河 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-09T00:00:00+00:00' + to: '2023-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2023 + to: + day: 25 + month: 6 + year: 2023 + string: Apr 9, 2023 to Jun 25, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 72490 + rank: 4164 + popularity: 1490 + members: 186403 + favorites: 668 + synopsis: |- + Ichirou Kuga has suddenly found himself taking on the responsibility of caring for his two younger siblings after their father's untimely death. To make ends meet, Ichirou rents out rooms in the apartment complex he inherited and works full-time as a shoujo manga artist. However, his manga sales are low, his assistants have recently left, and deadlines are fast approaching. + + As stress threatens to overtake Ichirou, salvation comes in the form of an extremely competent novice artist, Shiori Goshiki, who becomes his new assistant. With her skills, they are able to tide over the difficult situation, and things begin looking up. But in a bizarre accident, a supernatural experience unfolds between Ichirou and Shirou, which leads her to declare them engaged. + + With this seemingly innocuous action upending his life, Ichirou now has to manage his new and peculiar relationship with the mysterious girl, all the while following his own passion and fulfilling the duties that rest on his shoulders. + + [Written by MAL Rewrite] + background: Otonari ni Ginga was released on Blu-ray on July 26, 2023. + season: spring + year: 2023 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + licensors: [] + studios: + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 51632 + url: https://myanimelist.net/anime/51632/Isekai_wa_Smartphone_to_Tomo_ni_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1932/131464.jpg + small_image_url: https://myanimelist.net/images/anime/1932/131464t.jpg + large_image_url: https://myanimelist.net/images/anime/1932/131464l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1932/131464.webp + small_image_url: https://myanimelist.net/images/anime/1932/131464t.webp + large_image_url: https://myanimelist.net/images/anime/1932/131464l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6AkocZNKceE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai wa Smartphone to Tomo ni. 2 + - type: Synonym + title: In Another World With My Smartphone 2nd Season + - type: Synonym + title: In a Different World with a Smartphone. + - type: Japanese + title: 異世界はスマートフォンとともに。 + - type: English + title: In Another World With My Smartphone 2 + title: Isekai wa Smartphone to Tomo ni. 2 + title_english: In Another World With My Smartphone 2 + title_japanese: 異世界はスマートフォンとともに。 + title_synonyms: + - In Another World With My Smartphone 2nd Season + - In a Different World with a Smartphone. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-03T00:00:00+00:00' + to: '2023-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2023 + to: + day: 19 + month: 6 + year: 2023 + string: Apr 3, 2023 to Jun 19, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.39 + scored_by: 73470 + rank: 8826 + popularity: 1572 + members: 176119 + favorites: 1065 + synopsis: |- + Touya Mochizuki grows accustomed to his new life in another world. Armed with his trusty smartphone, the teenager accepts small quests at his leisure while spending time with his new fiancées: Yumina Urnea Belfast, Yae Kokonoe, and twin sisters Linse and Elze Shileska. But even in a relaxing environment, Touya is only beginning to understand the responsibilities that come with these engagements. + + In addition to his romantic woes, the elder fairy Lean wishes to locate the remaining pieces of Babylon, the floating island that the mysterious Professor Regina Babylon created five thousand years ago. Touya reluctantly accepts her request and seeks out the teleportation circles that will lead to the islands. However, strange monsters have emerged—possibly powerful enough to destroy the world. In order to save the second life he was given, Touya must weaponize ancient technologies to fight these monsters—all while balancing his overwhelming number of relationships. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 52973 + url: https://myanimelist.net/anime/52973/Megami_no_Café_Terrace + images: + jpg: + image_url: https://myanimelist.net/images/anime/1963/136050.jpg + small_image_url: https://myanimelist.net/images/anime/1963/136050t.jpg + large_image_url: https://myanimelist.net/images/anime/1963/136050l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1963/136050.webp + small_image_url: https://myanimelist.net/images/anime/1963/136050t.webp + large_image_url: https://myanimelist.net/images/anime/1963/136050l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UOpfZzBI-J0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Megami no Café Terrace + - type: Synonym + title: Goddess Café Terrace + - type: Japanese + title: 女神のカフェテラス + - type: English + title: The Café Terrace and Its Goddesses + title: Megami no Café Terrace + title_english: The Café Terrace and Its Goddesses + title_japanese: 女神のカフェテラス + title_synonyms: + - Goddess Café Terrace + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-04-08T00:00:00+00:00' + to: '2023-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2023 + to: + day: 24 + month: 6 + year: 2023 + string: Apr 8, 2023 to Jun 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.33 + scored_by: 73288 + rank: 3109 + popularity: 1649 + members: 165631 + favorites: 722 + synopsis: |- + After his grandmother Sachiko passes away, Hayato Kasukabe returns from Tokyo and inherits her cafe—Familia Café Terrace. He aims to demolish the cafe and convert it into a parking lot, only to discover that his grandmother had taken in five girls prior to her death. + + The girls—Ouka Makuzawa, Akane Hououji, Riho Tsukishima, Shiragiku Ono, and Ami Tsuruga—evidently shared a deep bond with Sachiko, and they naturally refuse to give up the place they call home. They convince Hayato to change his mind, albeit reluctantly. Through this encounter, Hayato eventually remembers his past with his grandmother as well as his love for the cafe. + + Now resolved to carry on his grandmother's legacy, Hayato enlists the girls to act as the "goddesses" that will ensure the preservation of this precious abode. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2023 + broadcast: + day: Saturdays + time: 01:25 + timezone: Asia/Tokyo + string: Saturdays at 01:25 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + licensors: [] + studios: + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52657 + url: https://myanimelist.net/anime/52657/Ousama_Ranking__Yuuki_no_Takarabako + images: + jpg: + image_url: https://myanimelist.net/images/anime/1897/131615.jpg + small_image_url: https://myanimelist.net/images/anime/1897/131615t.jpg + large_image_url: https://myanimelist.net/images/anime/1897/131615l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1897/131615.webp + small_image_url: https://myanimelist.net/images/anime/1897/131615t.webp + large_image_url: https://myanimelist.net/images/anime/1897/131615l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/TmyUZkQpSOE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ousama Ranking: Yuuki no Takarabako' + - type: Synonym + title: 'Ranking of Kings: Treasure Chest of Courage' + - type: Japanese + title: 王様ランキング 勇気の宝箱 + - type: English + title: 'Ranking of Kings: The Treasure Chest of Courage' + title: 'Ousama Ranking: Yuuki no Takarabako' + title_english: 'Ranking of Kings: The Treasure Chest of Courage' + title_japanese: 王様ランキング 勇気の宝箱 + title_synonyms: + - 'Ranking of Kings: Treasure Chest of Courage' + type: TV + source: Web manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2023-04-14T00:00:00+00:00' + to: '2023-06-16T00:00:00+00:00' + prop: + from: + day: 14 + month: 4 + year: 2023 + to: + day: 16 + month: 6 + year: 2023 + string: Apr 14, 2023 to Jun 16, 2023 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 48898 + rank: 2631 + popularity: 1664 + members: 163655 + favorites: 656 + synopsis: "\"A treasure chest of unspoken courage is opened.\"\n\nThe special is described as a collection of shorts,\ + \ showing past instances of courage and personal growth by the cast of Ousama Ranking. \n\n(Source: Ranking of Kings\ + \ Wiki)" + background: '' + season: spring + year: 2023 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/55-2023-summer.yaml b/test/fixtures/jikan/season_matrix/55-2023-summer.yaml new file mode 100644 index 0000000..b662eac --- /dev/null +++ b/test/fixtures/jikan/season_matrix/55-2023-summer.yaml @@ -0,0 +1,3456 @@ +metadata: + captured_at: '2026-05-11T11:34:51Z' + label: 2023-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2023/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:50 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:26aa3025a9301d5549870063fed8d78f0d2fca10 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 311 + per_page: 25 + data: + - mal_id: 51009 + url: https://myanimelist.net/anime/51009/Jujutsu_Kaisen_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1792/138022.jpg + small_image_url: https://myanimelist.net/images/anime/1792/138022t.jpg + large_image_url: https://myanimelist.net/images/anime/1792/138022l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1792/138022.webp + small_image_url: https://myanimelist.net/images/anime/1792/138022t.webp + large_image_url: https://myanimelist.net/images/anime/1792/138022l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PKHQuQF1S8k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jujutsu Kaisen 2nd Season + - type: Synonym + title: 'Jujutsu Kaisen: Kaigyoku Gyokusetsu' + - type: Synonym + title: 'Jujutsu Kaisen: Shibuya Jihen' + - type: Synonym + title: 'Jujutsu Kaisen: Hidden Inventory Arc' + - type: Synonym + title: 'Jujutsu Kaisen: Shibuya Incident Arc' + - type: Synonym + title: Sorcery Fight + - type: Synonym + title: JJK + - type: Japanese + title: 呪術廻戦 懐玉・玉折/渋谷事変 + - type: English + title: Jujutsu Kaisen Season 2 + title: Jujutsu Kaisen 2nd Season + title_english: Jujutsu Kaisen Season 2 + title_japanese: 呪術廻戦 懐玉・玉折/渋谷事変 + title_synonyms: + - 'Jujutsu Kaisen: Kaigyoku Gyokusetsu' + - 'Jujutsu Kaisen: Shibuya Jihen' + - 'Jujutsu Kaisen: Hidden Inventory Arc' + - 'Jujutsu Kaisen: Shibuya Incident Arc' + - Sorcery Fight + - JJK + type: TV + source: Manga + episodes: 23 + status: Finished Airing + airing: false + aired: + from: '2023-07-06T00:00:00+00:00' + to: '2023-12-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2023 + to: + day: 28 + month: 12 + year: 2023 + string: Jul 6, 2023 to Dec 28, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.7 + scored_by: 825904 + rank: 67 + popularity: 107 + members: 1396566 + favorites: 26165 + synopsis: |- + The year is 2006, and the halls of Tokyo Prefectural Jujutsu High School echo with the endless bickering and intense debate between two inseparable best friends. Exuding unshakeable confidence, Satoru Gojou and Suguru Getou believe there is no challenge too great for young and powerful Special Grade sorcerers such as themselves. They are tasked with safely delivering a sensible girl named Riko Amanai to the entity whose existence is the very essence of the jujutsu world. However, the mission plunges them into an exhausting swirl of moral conflict that threatens to destroy the already feeble amity between sorcerers and ordinary humans. + + Twelve years later, students and sorcerers are the frontline defense against the rising number of high-level curses born from humans' negative emotions. As the entities grow in power, their self-awareness and ambition increase too. The curses unite for the common goal of eradicating humans and creating a world of only cursed energy users, led by a dangerous, ancient cursed spirit. To dispose of their greatest obstacle—the strongest sorcerer, Gojou—they orchestrate an attack at Shibuya Station on Halloween. Dividing into teams, the sorcerers enter the fight prepared to risk everything to protect the innocent and their own kind. + + [Written by MAL Rewrite] + background: Jujutsu Kaisen 2nd Season was released on Blu-ray and DVD in eight volumes from October 18, 2023, to May + 22, 2024. + season: summer + year: 2023 + broadcast: + day: Thursdays + time: '23:56' + timezone: Asia/Tokyo + string: Thursdays at 23:56 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2260 + type: anime + name: Sumzap + url: https://myanimelist.net/anime/producer/2260/Sumzap + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51179 + url: https://myanimelist.net/anime/51179/Mushoku_Tensei_II__Isekai_Ittara_Honki_Dasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1898/138005.jpg + small_image_url: https://myanimelist.net/images/anime/1898/138005t.jpg + large_image_url: https://myanimelist.net/images/anime/1898/138005l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1898/138005.webp + small_image_url: https://myanimelist.net/images/anime/1898/138005t.webp + large_image_url: https://myanimelist.net/images/anime/1898/138005l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/keti2rbgI6c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu' + - type: Synonym + title: 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - type: Synonym + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season' + - type: Japanese + title: 無職転生 II ~異世界行ったら本気だす~ + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation Season 2' + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu' + title_english: 'Mushoku Tensei: Jobless Reincarnation Season 2' + title_japanese: 無職転生 II ~異世界行ったら本気だす~ + title_synonyms: + - 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-10T00:00:00+00:00' + to: '2023-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2023 + to: + day: 25 + month: 9 + year: 2023 + string: Jul 10, 2023 to Sep 25, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.2 + scored_by: 443231 + rank: 452 + popularity: 306 + members: 756151 + favorites: 7849 + synopsis: |- + After his relationship with Eris Boreas Greyrat reaches new heights, Rudeus Greyrat is ecstatic. Unfortunately, his joy is short-lived, as Eris suddenly abandons him to embark on her own journey. Believing that Eris has lost all interest in him, a heartbroken and depressed Rudeus sets forth to the Northern Territories. With his sole goal being to locate his mother on the vast continent, Rudeus wonders if persisting through daily life is worth the pain, falling into a robotic routine as he endlessly ruminates on his lost love. + + However, the dangers of the North soon prove that one cannot survive with a dulled mind. While on a quest with the party Counter Arrow, with whom he recently became acquainted, Rudeus has a brush with death—an experience that forces him to finally snap out of his despair. With his newfound teammates, Rudeus rediscovers the pleasure of daily adventuring and moves forward with his original goal of living his second lease on life to the fullest. + + [Written by MAL Rewrite] + background: 'Mushoku Tensei II: Isekai Ittara Honki Dasu was released on Blu-ray in two volumes from October 18, 2023, + to December 20, 2023.' + season: summer + year: 2023 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 54112 + url: https://myanimelist.net/anime/54112/Zom_100__Zombie_ni_Naru_made_ni_Shitai_100_no_Koto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1384/136408.jpg + small_image_url: https://myanimelist.net/images/anime/1384/136408t.jpg + large_image_url: https://myanimelist.net/images/anime/1384/136408l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1384/136408.webp + small_image_url: https://myanimelist.net/images/anime/1384/136408t.webp + large_image_url: https://myanimelist.net/images/anime/1384/136408l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S1NzUyUD6Ks?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Zom 100: Zombie ni Naru made ni Shitai 100 no Koto' + - type: Synonym + title: Bucket List of The Dead + - type: Synonym + title: 'Zombie 100: 100 Things I Want to do Before I Become a Zombie' + - type: Japanese + title: ゾン100~ゾンビになるまでにしたい100のこと~ + - type: English + title: 'Zom 100: Bucket List of the Dead' + title: 'Zom 100: Zombie ni Naru made ni Shitai 100 no Koto' + title_english: 'Zom 100: Bucket List of the Dead' + title_japanese: ゾン100~ゾンビになるまでにしたい100のこと~ + title_synonyms: + - Bucket List of The Dead + - 'Zombie 100: 100 Things I Want to do Before I Become a Zombie' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-09T00:00:00+00:00' + to: '2023-12-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2023 + to: + day: 26 + month: 12 + year: 2023 + string: Jul 9, 2023 to Dec 26, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.7 + scored_by: 331524 + rank: 1480 + popularity: 355 + members: 681300 + favorites: 4279 + synopsis: |- + After graduating from a top university with an impressive extracurricular record in the rugby club, Akira Tendou has nailed every step of the way to securing his dream job. On top of that, a beautiful and kind co-worker always brightens his day in the office! Life seems to be going very well for Akira until he slowly realizes that sleepless nights and brutal work are his new reality. + + Due to three years of mind-numbing labor in an exploitative company, Akira is unable to recognize the tired, unaccomplished person he has become. On track to losing all passion in life like several of his overworked colleagues, Akira finds his saving grace in the most unexpected way possible—the breakout of a zombie apocalypse. + + With the free time he finally has, Akira decides to complete a bucket list of a hundred things he wants to do before he eventually gets turned into a zombie. Although he is surrounded by the dead, Akira has never felt more alive! + + [Written by MAL Rewrite] + background: The anime is part of a production deal between VIZ Media, Shogakukan, and Shogakukan-Shueisha Productions. + season: summer + year: 2023 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 2674 + type: anime + name: BUG FILMS + url: https://myanimelist.net/anime/producer/2674/BUG_FILMS + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 76 + type: anime + name: Survival + url: https://myanimelist.net/anime/genre/76/Survival + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 54856 + url: https://myanimelist.net/anime/54856/Horimiya__Piece + images: + jpg: + image_url: https://myanimelist.net/images/anime/1007/136277.jpg + small_image_url: https://myanimelist.net/images/anime/1007/136277t.jpg + large_image_url: https://myanimelist.net/images/anime/1007/136277l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1007/136277.webp + small_image_url: https://myanimelist.net/images/anime/1007/136277t.webp + large_image_url: https://myanimelist.net/images/anime/1007/136277l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MU-Vk5R0vVY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Horimiya: Piece' + - type: Japanese + title: ホリミヤ -piece- + - type: English + title: 'Horimiya: The Missing Pieces' + title: 'Horimiya: Piece' + title_english: 'Horimiya: The Missing Pieces' + title_japanese: ホリミヤ -piece- + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-07-01T00:00:00+00:00' + to: '2023-09-23T00:00:00+00:00' + prop: + from: + day: 1 + month: 7 + year: 2023 + to: + day: 23 + month: 9 + year: 2023 + string: Jul 1, 2023 to Sep 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 209219 + rank: 549 + popularity: 573 + members: 460406 + favorites: 3094 + synopsis: |- + As the graduation ceremony at Katagiri High School comes to an end, Kyouko Hori, her boyfriend Izumi Miyamura, and their friends begin to look back on their time as students. The moments they shared together may be fleeting, but each one is a colorful piece of their precious memories. + + [Written by MAL Rewrite] + background: 'Horimiya: Piece adapts stories from the manga that were not included in the main anime series.' + season: summer + year: 2023 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1677 + type: anime + name: Kanetsu Investment + url: https://myanimelist.net/anime/producer/1677/Kanetsu_Investment + - mal_id: 2095 + type: anime + name: Global Solutions + url: https://myanimelist.net/anime/producer/2095/Global_Solutions + - mal_id: 2186 + type: anime + name: Mirai-Kojo + url: https://myanimelist.net/anime/producer/2186/Mirai-Kojo + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53998 + url: https://myanimelist.net/anime/53998/Bleach__Sennen_Kessen-hen_-_Ketsubetsu-tan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1164/138058.jpg + small_image_url: https://myanimelist.net/images/anime/1164/138058t.jpg + large_image_url: https://myanimelist.net/images/anime/1164/138058l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1164/138058.webp + small_image_url: https://myanimelist.net/images/anime/1164/138058t.webp + large_image_url: https://myanimelist.net/images/anime/1164/138058l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m_i2PinZ_X4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bleach: Sennen Kessen-hen - Ketsubetsu-tan' + - type: Synonym + title: 'Bleach: Thousand-Year Blood War Arc Part 2' + - type: Japanese + title: BLEACH 千年血戦篇-訣別譚- + - type: English + title: 'Bleach: Thousand-Year Blood War - The Separation' + title: 'Bleach: Sennen Kessen-hen - Ketsubetsu-tan' + title_english: 'Bleach: Thousand-Year Blood War - The Separation' + title_japanese: BLEACH 千年血戦篇-訣別譚- + title_synonyms: + - 'Bleach: Thousand-Year Blood War Arc Part 2' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-07-08T00:00:00+00:00' + to: '2023-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2023 + to: + day: 30 + month: 9 + year: 2023 + string: Jul 8, 2023 to Sep 30, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.7 + scored_by: 235643 + rank: 66 + popularity: 653 + members: 414606 + favorites: 5092 + synopsis: |- + After a brutal surprise attack by the forces of Quincy King Yhwach, the resident Reapers of the Soul Society lick their wounds and mourn their losses. Many of the surviving Soul Reaper captains train to battle without their Bankai, the ultimate technique wielded by the fiercest warriors. + + In the previous assault, Ichigo Kurosaki narrowly managed to help fend off Yhwach's fearsome wrath. However, to ultimately defeat his godly adversary and save his allies, Ichigo must now undergo severe training that will push him beyond his physical, emotional, and mental limits. + + Though Yhwach already holds the upper hand in this ongoing blood feud, he also successfully recruits Uryuu Ishida, Ichigo's close friend and rival, to be his successor. Yhwach strikes out once again at the weakened Soul Society, intent on finally obliterating his long-standing enemies. As Ichigo struggles to attain new power, the Soul Reaper captains fight for survival and borrowed time. + + [Written by MAL Rewrite] + background: 'Bleach: Sennen Kessen-hen - Ketsubetsu-tan was released on Blu-ray and DVD by Aniplex on February 28, 2024. + It adapts volumes 61-67 of the original manga.' + season: summer + year: 2023 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1392 + type: anime + name: Zack Promotion + url: https://myanimelist.net/anime/producer/1392/Zack_Promotion + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51552 + url: https://myanimelist.net/anime/51552/Watashi_no_Shiawase_na_Kekkon + images: + jpg: + image_url: https://myanimelist.net/images/anime/1147/122444.jpg + small_image_url: https://myanimelist.net/images/anime/1147/122444t.jpg + large_image_url: https://myanimelist.net/images/anime/1147/122444l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1147/122444.webp + small_image_url: https://myanimelist.net/images/anime/1147/122444t.webp + large_image_url: https://myanimelist.net/images/anime/1147/122444l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dURh9kVzcw8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi no Shiawase na Kekkon + - type: Synonym + title: My Blissful Marriage + - type: Synonym + title: Watakon + - type: Japanese + title: わたしの幸せな結婚 + - type: English + title: My Happy Marriage + title: Watashi no Shiawase na Kekkon + title_english: My Happy Marriage + title_japanese: わたしの幸せな結婚 + title_synonyms: + - My Blissful Marriage + - Watakon + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-05T00:00:00+00:00' + to: '2023-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2023 + to: + day: 20 + month: 9 + year: 2023 + string: Jul 5, 2023 to Sep 20, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.68 + scored_by: 196366 + rank: 1537 + popularity: 710 + members: 384594 + favorites: 3277 + synopsis: |- + Misery seems everlasting in Miyo Saimori's life. Born from an arranged marriage, she was quickly discarded after her mother's tragic death. Her father remarried, and her younger half-sister Kaya received all the affection, while Miyo was degraded to a lowly servant. Lacking the strength to fight against her family's abuse, Miyo loses hope that her luck will ever turn. + + Unexpectedly, Miyo's father summons her to deliver surprising news: she is to marry Kiyoka Kudou, the head of the distinguished Kudou family. Despite his noble background, Kiyoka is known to be a callous man who has thus far dismissed all of his former fiancées. + + Upon arriving at the Kudou household, Miyo expects coarse treatment and to be tossed aside. However, contrary to her assumptions, Kiyoka shows her the kindness and love that she has desperately needed. Marrying Kiyoka may be Miyo's one chance to break free from her neglectful family and embrace a life of happiness. + + [Written by MAL Rewrite] + background: Watashi no Shiawase na Kekkon was released on Blu-ray and DVD in three volumes from November 29, 2023, to + January 24, 2024. + season: summer + year: 2023 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1406 + type: anime + name: Miracle Bus + url: https://myanimelist.net/anime/producer/1406/Miracle_Bus + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 51498 + url: https://myanimelist.net/anime/51498/Masamune-kun_no_Revenge_R + images: + jpg: + image_url: https://myanimelist.net/images/anime/1667/135587.jpg + small_image_url: https://myanimelist.net/images/anime/1667/135587t.jpg + large_image_url: https://myanimelist.net/images/anime/1667/135587l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1667/135587.webp + small_image_url: https://myanimelist.net/images/anime/1667/135587t.webp + large_image_url: https://myanimelist.net/images/anime/1667/135587l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/i7x4De9e8qY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Masamune-kun no Revenge R + - type: Japanese + title: 政宗くんのリベンジR + - type: English + title: Masamune-kun's Revenge R + title: Masamune-kun no Revenge R + title_english: Masamune-kun's Revenge R + title_japanese: 政宗くんのリベンジR + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-03T00:00:00+00:00' + to: '2023-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2023 + to: + day: 18 + month: 9 + year: 2023 + string: Jul 3, 2023 to Sep 18, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.24 + scored_by: 107177 + rank: 3707 + popularity: 1082 + members: 260083 + favorites: 1354 + synopsis: |- + With the tumultuous cultural festival behind him, Masamune Makabe continues his efforts to carry out his revenge: to make the "Cruel Princess" Aki Adagaki deeply fall for him and then immediately dump her. As his class is going on a trip to Paris, widely known as the City of Love, Masamune has the perfect opportunity to get even for his childhood heartbreak. + + Before Masamune can impress Aki, the two meet Muriel Besson, a French high school otaku who aspires to create a romantic comedy manga series. Muriel believes Masamune is the ideal model for the protagonist and asks for his help. The boy reluctantly agrees, dragging Aki along to provide inspiration for the love interest's character. But to do so, the two must show Muriel what Japanese love is like. + + To make matters more complicated, Kanetsugu Gasou is masquerading as Aki's childhood friend, Masamune, to trick and use her. With mix-ups and love rivals galore, Masamune's revenge is proving to be quite the difficult task. + + [Written by MAL Rewrite] + background: Masamune-kun no Revenge R was released on Blu-ray in two volumes from September 20, 2023, to October 25, + 2023. + season: summer + year: 2023 + broadcast: + day: Mondays + time: '21:00' + timezone: Asia/Tokyo + string: Mondays at 21:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2031 + type: anime + name: Lawson Entertainment + url: https://myanimelist.net/anime/producer/2031/Lawson_Entertainment + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54898 + url: https://myanimelist.net/anime/54898/Bungou_Stray_Dogs_5th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1161/136691.jpg + small_image_url: https://myanimelist.net/images/anime/1161/136691t.jpg + large_image_url: https://myanimelist.net/images/anime/1161/136691l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1161/136691.webp + small_image_url: https://myanimelist.net/images/anime/1161/136691t.webp + large_image_url: https://myanimelist.net/images/anime/1161/136691l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1eCDPSa6Faw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bungou Stray Dogs 5th Season + - type: Japanese + title: 文豪ストレイドッグス + - type: English + title: Bungo Stray Dogs 5 + title: Bungou Stray Dogs 5th Season + title_english: Bungo Stray Dogs 5 + title_japanese: 文豪ストレイドッグス + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-07-12T00:00:00+00:00' + to: '2023-09-20T00:00:00+00:00' + prop: + from: + day: 12 + month: 7 + year: 2023 + to: + day: 20 + month: 9 + year: 2023 + string: Jul 12, 2023 to Sep 20, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.61 + scored_by: 121628 + rank: 104 + popularity: 1084 + members: 259786 + favorites: 2975 + synopsis: "The Armed Detective Agency is still on the run from the Hunting Dogs, but not all hope is lost. Detective\ + \ Ranpo Edogawa has a plan to prove the Agency's innocence and save the world from chaos: to find and capture Kamui—the\ + \ leader of the terrorist organization Decay of the Angel. \n\nIn order to determine Kamui's whereabouts, Ranpo and\ + \ his colleague Atsushi Nakajima must convince Ouchi Fukuchi, the renowned captain of the Hunting Dogs, for amnesty.\ + \ Although Fukuchi was tasked with arresting the members of the Agency, his past with the Agency's president, Yukichi\ + \ Fukuzawa, may be the key to earning his trust. But unbeknownst to them, Fukuchi might not be as honorable as he\ + \ proclaims.\n\n[Written by MAL Rewrite]" + background: Bungou Stray Dogs 5th Season was released on Blu-ray and DVD in four volumes from September 27, 2023, to + December 22, 2023. + season: summer + year: 2023 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 33 + type: anime + name: WOWOW + url: https://myanimelist.net/anime/producer/33/WOWOW + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1543 + type: anime + name: Sunrise Music + url: https://myanimelist.net/anime/producer/1543/Sunrise_Music + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 55818 + url: https://myanimelist.net/anime/55818/Mushoku_Tensei_II__Isekai_Ittara_Honki_Dasu_-_Shugo_Jutsushi_Fitz + images: + jpg: + image_url: https://myanimelist.net/images/anime/1627/136934.jpg + small_image_url: https://myanimelist.net/images/anime/1627/136934t.jpg + large_image_url: https://myanimelist.net/images/anime/1627/136934l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1627/136934.webp + small_image_url: https://myanimelist.net/images/anime/1627/136934t.webp + large_image_url: https://myanimelist.net/images/anime/1627/136934l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu - Shugo Jutsushi Fitz' + - type: Synonym + title: 'Mushoku Tensei Ⅱ: Isekai Ittara Honki Dasu Episode 0' + - type: Japanese + title: 無職転生Ⅱ ~異世界行ったら本気だす~ 第0話「守護術師フィッツ」 + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation Season 2 - Episode 0 "Guardian Fitz"' + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu - Shugo Jutsushi Fitz' + title_english: 'Mushoku Tensei: Jobless Reincarnation Season 2 - Episode 0 "Guardian Fitz"' + title_japanese: 無職転生Ⅱ ~異世界行ったら本気だす~ 第0話「守護術師フィッツ」 + title_synonyms: + - 'Mushoku Tensei Ⅱ: Isekai Ittara Honki Dasu Episode 0' + type: TV Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-07-03T00:00:00+00:00' + to: null + prop: + from: + day: 3 + month: 7 + year: 2023 + to: + day: null + month: null + year: null + string: Jul 3, 2023 + duration: 24 min + rating: R - 17+ (violence & profanity) + score: 7.54 + scored_by: 155094 + rank: 2070 + popularity: 1138 + members: 248865 + favorites: 428 + synopsis: |- + In the immediate aftermath of the mana calamity, Sylphiette finds herself teleported to the heart of the Asura Kingdom: the royal palace. Her sudden appearance accidentally saves the life of second princess Ariel Anemoi Asura, who has her sights set on becoming the ruler of the realm. Witnessing Sylphiette's talent with combat magic firsthand, Ariel recruits her as her bodyguard and right-hand woman, commencing their journey to power—which proves far more treacherous than first imagined. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 245 + type: anime + name: TOHO + url: https://myanimelist.net/anime/producer/245/TOHO + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 54234 + url: https://myanimelist.net/anime/54234/Suki_na_Ko_ga_Megane_wo_Wasureta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1582/136325.jpg + small_image_url: https://myanimelist.net/images/anime/1582/136325t.jpg + large_image_url: https://myanimelist.net/images/anime/1582/136325l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1582/136325.webp + small_image_url: https://myanimelist.net/images/anime/1582/136325t.webp + large_image_url: https://myanimelist.net/images/anime/1582/136325l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qrq7sPJYAT4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Suki na Ko ga Megane wo Wasureta + - type: Synonym + title: Sukimega + - type: Japanese + title: 好きな子がめがねを忘れた + - type: English + title: The Girl I Like Forgot Her Glasses + title: Suki na Ko ga Megane wo Wasureta + title_english: The Girl I Like Forgot Her Glasses + title_japanese: 好きな子がめがねを忘れた + title_synonyms: + - Sukimega + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-07-04T00:00:00+00:00' + to: '2023-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2023 + to: + day: 26 + month: 9 + year: 2023 + string: Jul 4, 2023 to Sep 26, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 95728 + rank: 4178 + popularity: 1161 + members: 245045 + favorites: 1578 + synopsis: |- + Kaede Komura is in love. After being seated next to the airheaded Ai Mie for the past three days, Komura cannot help but be attracted to his bespectacled classmate. Although he has yet to have a proper conversation with Mie, Komura dreams of the day when she will look his way. + + One day, Komura notices that his seatmate is not wearing her glasses, learning by questioning Mie that she forgot them and has a tendency of doing so. When he sees her struggle, a concerned Komura takes it upon himself to help his crush. As the boy offers his assistance to Mie day by day, her reasons for constantly losing her glasses slowly evolve from the answer she initially gave. + + [Written by MAL Rewrite] + background: Suki na Ko ga Megane wo Wasureta was released on Blu-ray in three volumes from December 20, 2023, to February + 28, 2024. + season: summer + year: 2023 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + licensors: [] + studios: + - mal_id: 309 + type: anime + name: GoHands + url: https://myanimelist.net/anime/producer/309/GoHands + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53632 + url: https://myanimelist.net/anime/53632/Yumemiru_Danshi_wa_Genjitsushugisha + images: + jpg: + image_url: https://myanimelist.net/images/anime/1239/134810.jpg + small_image_url: https://myanimelist.net/images/anime/1239/134810t.jpg + large_image_url: https://myanimelist.net/images/anime/1239/134810l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1239/134810.webp + small_image_url: https://myanimelist.net/images/anime/1239/134810t.webp + large_image_url: https://myanimelist.net/images/anime/1239/134810l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sUJ9hUhViBo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yumemiru Danshi wa Genjitsushugisha + - type: Japanese + title: 夢見る男子は現実主義者 + - type: English + title: The Dreaming Boy is a Realist + title: Yumemiru Danshi wa Genjitsushugisha + title_english: The Dreaming Boy is a Realist + title_japanese: 夢見る男子は現実主義者 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-04T00:00:00+00:00' + to: '2023-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2023 + to: + day: 19 + month: 9 + year: 2023 + string: Jul 4, 2023 to Sep 19, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.62 + scored_by: 106991 + rank: 7448 + popularity: 1260 + members: 223376 + favorites: 1183 + synopsis: |- + Wataru Sajou is infamous in his school for persistently seeking the attention of his crush, Aika Natsukawa. His usual day revolves around shadowing her and confessing his undying love at every turn. However, a moment of epiphany leads Wataru to relinquish his childish behavior and face the reality that she will never return his one-sided feelings. He distances himself from Aika and spends his newfound spare time with his friends and in the company of other lovely girls. + + As Wataru moves on, Aika starts approaching him in unusually suggestive ways—making him question whether giving up on his love was the right decision after all. + + [Written by MAL Rewrite] + background: Yumemiru Danshi wa Genjitsushugisha was released on Blu-ray in three volumes from November 22, 2023, to + January 24, 2024. + season: summer + year: 2023 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + - mal_id: 1299 + type: anime + name: AXsiZ + url: https://myanimelist.net/anime/producer/1299/AXsiZ + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 53050 + url: https://myanimelist.net/anime/53050/Kanojo_Okarishimasu_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1696/136634.jpg + small_image_url: https://myanimelist.net/images/anime/1696/136634t.jpg + large_image_url: https://myanimelist.net/images/anime/1696/136634l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1696/136634.webp + small_image_url: https://myanimelist.net/images/anime/1696/136634t.webp + large_image_url: https://myanimelist.net/images/anime/1696/136634l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/-jZWHwztqlk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo, Okarishimasu 3rd Season + - type: Synonym + title: Kanokari + - type: Japanese + title: 彼女、お借りします + - type: English + title: Rent-a-Girlfriend Season 3 + title: Kanojo, Okarishimasu 3rd Season + title_english: Rent-a-Girlfriend Season 3 + title_japanese: 彼女、お借りします + title_synonyms: + - Kanokari + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-08T00:00:00+00:00' + to: '2023-09-30T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2023 + to: + day: 30 + month: 9 + year: 2023 + string: Jul 8, 2023 to Sep 30, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.93 + scored_by: 105390 + rank: 5524 + popularity: 1266 + members: 222805 + favorites: 1038 + synopsis: |- + With her late grandfather's inspiring words in mind, Chizuru Mizuhara teams up with her friend Kazuya Kinoshita to launch a crowdfunding campaign for an amateur film. The two hope that with the success of the project, Chizuru can honor her grandparents' wishes before she loses her grandmother as well. After their wild encounters with three girls—Kazuya's clingy "trial" girlfriend, Ruka Sarashina; their nosy new next-door neighbor, Mini Yaemori; and Chizuru's shy work friend, Sumi Sakurasawa—they all collaborate together to reach the campaign goal and begin production of the film. As their ambitious endeavor progresses, Chizuru and Kazuya grow closer and begin to struggle with their mutual feelings. + + [Written by MAL Rewrite] + background: In anticipation of Kanojo, Okarishimasu 3rd Season's release, a stage event featuring voice actors of the + cast was held at the AnimeJapan 2023 festival on March 25, 2023. The series was released on Blu-ray in two volumes + from November 29, 2023, to December 20, 2023. The anime adapts chapters 104 through 167 of the manga. + season: summer + year: 2023 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52969 + url: https://myanimelist.net/anime/52969/Jitsu_wa_Ore_Saikyou_deshita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1963/138464.jpg + small_image_url: https://myanimelist.net/images/anime/1963/138464t.jpg + large_image_url: https://myanimelist.net/images/anime/1963/138464l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1963/138464.webp + small_image_url: https://myanimelist.net/images/anime/1963/138464t.webp + large_image_url: https://myanimelist.net/images/anime/1963/138464l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/cKi66qGWH-g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jitsu wa Ore, Saikyou deshita? + - type: Japanese + title: 実は俺、最強でした? + - type: English + title: Am I Actually the Strongest? + title: Jitsu wa Ore, Saikyou deshita? + title_english: Am I Actually the Strongest? + title_japanese: 実は俺、最強でした? + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-02T00:00:00+00:00' + to: '2023-10-01T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2023 + to: + day: 1 + month: 10 + year: 2023 + string: Jul 2, 2023 to Oct 1, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.46 + scored_by: 101026 + rank: 8397 + popularity: 1325 + members: 211033 + favorites: 593 + synopsis: |- + A 20-year-old shut-in is suddenly transported from his apartment, only to appear in front of a goddess who offers him a second chance at life. Although she grants him overpowered magical abilities in this new world, when he awakes as the newborn Prince Reinhardt, his talents are only measured at Level 2. Thinking their child to be an abysmal failure, his royal parents abandon him in the woods. There, the prince, who names himself Haruto, encounters Flay, a Flame Fenrir who decides to devote her life in service to him. Haruto's relative, Gold Zenfis, meets them both in the woods and decides to adopt the child as his own. + + Nine years pass with Haruto under the care of the Zenfis family. His mastery over his overpowered barrier magic increases by the day, though Haruto would rather not use it to help others. He practices his magic in secret, preferring to have his family believe that he is weak. However, his younger sister, Charlotte, discovers his strength, and with the assistance of Flay, Haruto protects her and the rest of the Zenfis family from harm. With a shifty plot stirring in the kingdom, Haruto only wishes to stay inside and watch anime, but it seems he will have to use his magic to keep the family that took him in safe. + + [Written by MAL Rewrite] + background: Jitsu wa Ore, Saikyou deshita? was released on Blu-ray in two volumes from September 29, 2023, to October + 27, 2023. + season: summer + year: 2023 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + licensors: [] + studios: + - mal_id: 2405 + type: anime + name: Staple Entertainment + url: https://myanimelist.net/anime/producer/2405/Staple_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 50582 + url: https://myanimelist.net/anime/50582/Nanatsu_no_Maken_ga_Shihai_suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1396/136273.jpg + small_image_url: https://myanimelist.net/images/anime/1396/136273t.jpg + large_image_url: https://myanimelist.net/images/anime/1396/136273l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1396/136273.webp + small_image_url: https://myanimelist.net/images/anime/1396/136273t.webp + large_image_url: https://myanimelist.net/images/anime/1396/136273l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AWXNK89uVco?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nanatsu no Maken ga Shihai suru + - type: Synonym + title: Nanatsuma + - type: Japanese + title: 七つの魔剣が支配する + - type: English + title: Reign of the Seven Spellblades + title: Nanatsu no Maken ga Shihai suru + title_english: Reign of the Seven Spellblades + title_japanese: 七つの魔剣が支配する + title_synonyms: + - Nanatsuma + type: TV + source: Light novel + episodes: 15 + status: Finished Airing + airing: false + aired: + from: '2023-07-08T00:00:00+00:00' + to: '2023-10-14T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2023 + to: + day: 14 + month: 10 + year: 2023 + string: Jul 8, 2023 to Oct 14, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.57 + scored_by: 72231 + rank: 7742 + popularity: 1469 + members: 189243 + favorites: 815 + synopsis: |- + Impressed by Nanao Hibiya's skill with a sword, Kimberly Magic Academy instructor Theodore McFarlane saves the samurai from certain death amid a fierce battle. With his encouragement, Nanao enrolls in the academy, where she instantly becomes a celebrity after she and four of her peers save a student from an enraged troll. Under the leadership of Oliver Horn, a young man who seems to hide a troubled past, Nanao and her newfound friends start their magical apprenticeship at Kimberly—where only four out of five students make it to graduation in one piece. + + It does not take long for Oliver and his friends to experience the dangers of the academy firsthand, as a near-death encounter in the labyrinth under the school leaves Nanao grappling with her bloody past. The inexperienced yet determined students must stick together if they want to have a chance to survive and uncover the mysteries that the academy holds. + + [Written by MAL Rewrite] + background: Nanatsu no Maken ga Shihai suru was released on Blu-ray on December 20, 2023. + season: summer + year: 2023 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1470 + type: anime + name: Konami Digital Entertainment + url: https://myanimelist.net/anime/producer/1470/Konami_Digital_Entertainment + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 52505 + url: https://myanimelist.net/anime/52505/Dark_Gathering + images: + jpg: + image_url: https://myanimelist.net/images/anime/1346/138731.jpg + small_image_url: https://myanimelist.net/images/anime/1346/138731t.jpg + large_image_url: https://myanimelist.net/images/anime/1346/138731l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1346/138731.webp + small_image_url: https://myanimelist.net/images/anime/1346/138731t.webp + large_image_url: https://myanimelist.net/images/anime/1346/138731l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VVfdqw-qvNE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dark Gathering + - type: Japanese + title: ダークギャザリング + - type: English + title: Dark Gathering + title: Dark Gathering + title_english: Dark Gathering + title_japanese: ダークギャザリング + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2023-07-10T00:00:00+00:00' + to: '2023-12-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2023 + to: + day: 25 + month: 12 + year: 2023 + string: Jul 10, 2023 to Dec 25, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.85 + scored_by: 58230 + rank: 1050 + popularity: 1481 + members: 187623 + favorites: 1426 + synopsis: |- + Spirits have always been attracted to Keitarou Gentouga due to his strong spiritual presence. A traumatic encounter with one had caused his right hand to be cursed, forcing him to wear a glove at all times. Now a college freshman, Keitarou is trying to live as normal a life as possible. With the encouragement of his childhood friend Eiko Houzuki, he becomes a private tutor. Since he is at the top of his intake class, his first client is the tutoring firm's most promising student, Yayoi Houzuki. + + To Keitarou's surprise, Yayoi is Eiko's cousin, and she possesses two pupils in each eye—allowing her to see into the spirit world and purposely seek vengeful spirits to exorcise. Ever since a car accident killed both her parents, Yayoi has been searching for the powerful spirit that kidnapped her mother's departed soul. Seeing that spirits are so attracted to Keitarou, she ropes him into helping her collect other evil spirits that will assist in her future fight. Although her quest is dangerous, Keitarou reluctantly decides to join her, even as each new spirit they meet has him questioning his resolve at every turn. + + [Written by MAL Rewrite] + background: Dark Gathering was released on Blu-ray in six volumes from October 18, 2023, to March 20, 2024. + season: summer + year: 2023 + broadcast: + day: Mondays + time: 01:05 + timezone: Asia/Tokyo + string: Mondays at 01:05 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2684 + type: anime + name: CHOCOLATE + url: https://myanimelist.net/anime/producer/2684/CHOCOLATE + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54790 + url: https://myanimelist.net/anime/54790/Undead_Girl_Murder_Farce + images: + jpg: + image_url: https://myanimelist.net/images/anime/1946/136661.jpg + small_image_url: https://myanimelist.net/images/anime/1946/136661t.jpg + large_image_url: https://myanimelist.net/images/anime/1946/136661l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1946/136661.webp + small_image_url: https://myanimelist.net/images/anime/1946/136661t.webp + large_image_url: https://myanimelist.net/images/anime/1946/136661l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/v6K2C5UJtvM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Undead Girl Murder Farce + - type: Japanese + title: アンデッドガール・マーダーファルス + - type: English + title: Undead Murder Farce + title: Undead Girl Murder Farce + title_english: Undead Murder Farce + title_japanese: アンデッドガール・マーダーファルス + title_synonyms: [] + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-07-06T00:00:00+00:00' + to: '2023-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2023 + to: + day: 28 + month: 9 + year: 2023 + string: Jul 6, 2023 to Sep 28, 2023 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.84 + scored_by: 76771 + rank: 1095 + popularity: 1498 + members: 185056 + favorites: 915 + synopsis: |- + In 19th-century France, the wife of vampire noble Jean Duchet Godard is murdered in her own home. With the local human authorities unwilling to properly investigate the case, Godard hires a pair of private detectives known to specialize in the supernatural: Tsugaru Shinuchi, a man with a mysterious birdcage; and his partner, Aya Rindou. This enigmatic duo has come from faraway Japan for one purpose—to track down the man who stole both Aya's body and Tsugaru's humanity. + + [Written by MAL Rewrite] + background: Undead Girl Murder Farce was released on Blu-ray and DVD on November 24, 2023. + season: summer + year: 2023 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 1828 + type: anime + name: Lapin Track + url: https://myanimelist.net/anime/producer/1828/Lapin_Track + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + - mal_id: 52619 + url: https://myanimelist.net/anime/52619/Jidou_Hanbaiki_ni_Umarekawatta_Ore_wa_Meikyuu_wo_Samayou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1653/136097.jpg + small_image_url: https://myanimelist.net/images/anime/1653/136097t.jpg + large_image_url: https://myanimelist.net/images/anime/1653/136097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1653/136097.webp + small_image_url: https://myanimelist.net/images/anime/1653/136097t.webp + large_image_url: https://myanimelist.net/images/anime/1653/136097l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3VZEVawzgik?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou + - type: Synonym + title: I Was Reborn as a Vending Machine + - type: Synonym + title: Wandering in the Dungeon + - type: Synonym + title: I Reincarnated Into a Vending Machine + - type: Synonym + title: Orejihanki + - type: Japanese + title: 自動販売機に生まれ変わった俺は迷宮を彷徨う + - type: English + title: Reborn as a Vending Machine, I Now Wander the Dungeon + title: Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou + title_english: Reborn as a Vending Machine, I Now Wander the Dungeon + title_japanese: 自動販売機に生まれ変わった俺は迷宮を彷徨う + title_synonyms: + - I Was Reborn as a Vending Machine + - Wandering in the Dungeon + - I Reincarnated Into a Vending Machine + - Orejihanki + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-05T00:00:00+00:00' + to: '2023-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2023 + to: + day: 20 + month: 9 + year: 2023 + string: Jul 5, 2023 to Sep 20, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.43 + scored_by: 90555 + rank: 8584 + popularity: 1506 + members: 184151 + favorites: 424 + synopsis: |- + A man with a passion for vending machines awakens to realize that he has not only died, but he has also been reborn as one of his beloved machines! Although he is a modern appliance in a fantasy world, he requires money in order to keep functioning. He is stuck in one location until a young girl named Lammis stumbles upon him. Amazed by the drinks and food he sells, Lammis uses her "Blessing of Might" to lift him with ease and take him back to the village of Clearflow Lake. There, she officially dubs him Boxxo. + + Despite his inability to converse with the villagers, Boxxo becomes an essential part of the community. His goods provide nourishment, and, as he gains new abilities and products, he becomes a staple of daily life. Nobody is as loyal to Boxxo as his first and best customer, Lammis. The more time he spends with her, the more he tries to help her elevate her skills as a young hunter. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2023 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 735 + type: anime + name: Slow Curve + url: https://myanimelist.net/anime/producer/735/Slow_Curve + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1418 + type: anime + name: Nippon Television Music + url: https://myanimelist.net/anime/producer/1418/Nippon_Television_Music + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2789 + type: anime + name: NTV Wands + url: https://myanimelist.net/anime/producer/2789/NTV_Wands + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + - mal_id: 1299 + type: anime + name: AXsiZ + url: https://myanimelist.net/anime/producer/1299/AXsiZ + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 48633 + url: https://myanimelist.net/anime/48633/Liar_Liar + images: + jpg: + image_url: https://myanimelist.net/images/anime/1571/134525.jpg + small_image_url: https://myanimelist.net/images/anime/1571/134525t.jpg + large_image_url: https://myanimelist.net/images/anime/1571/134525l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1571/134525.webp + small_image_url: https://myanimelist.net/images/anime/1571/134525t.webp + large_image_url: https://myanimelist.net/images/anime/1571/134525l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zOOPVdfSwAo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Liar Liar + - type: Japanese + title: ライアー・ライアー + title: Liar Liar + title_english: null + title_japanese: ライアー・ライアー + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-08T00:00:00+00:00' + to: '2023-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2023 + to: + day: 23 + month: 9 + year: 2023 + string: Jul 8, 2023 to Sep 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.29 + scored_by: 69387 + rank: 9421 + popularity: 1541 + members: 179359 + favorites: 697 + synopsis: |- + Hiroto Shinohara is a new transfer student to Academy Island, where games determine student rankings. The more games won, the more stars a student has, with the highest ranking being that of a Seven Star. On Hiroto's first day, he accidentally antagonizes Sarasa Saionji, the so-called Empress of Academy Island and granddaughter of the island's head director. Forced into a game fueled by misunderstandings that he somehow ends up winning, he is thrust into a major bluff where he must lie about his ranking or risk expulsion from the school and island. + + Fortunately, with the help of the mysterious Company headed by Shirayuki Himeji, Hiroto is not alone in his bluff. The Company will do everything in its power to help him cheat his way through the game challenges sent his way by students wanting to beat him. Though he is a One Star student, he must fight as though he is actually a Seven Star, and overcome insurmountable odds in his quest to search for a missing girl from his past. + + [Written by MAL Rewrite] + background: Liar Liar was released on Blu-ray in three volumes from November 29, 2023, to January 24, 2024. + season: summer + year: 2023 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2670 + type: anime + name: Geek Pictures + url: https://myanimelist.net/anime/producer/2670/Geek_Pictures + - mal_id: 2840 + type: anime + name: qooop + url: https://myanimelist.net/anime/producer/2840/qooop + licensors: [] + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 11 + type: anime + name: Strategy Game + url: https://myanimelist.net/anime/genre/11/Strategy_Game + demographics: [] + - mal_id: 53200 + url: https://myanimelist.net/anime/53200/Hataraku_Maou-sama_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1392/136670.jpg + small_image_url: https://myanimelist.net/images/anime/1392/136670t.jpg + large_image_url: https://myanimelist.net/images/anime/1392/136670l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1392/136670.webp + small_image_url: https://myanimelist.net/images/anime/1392/136670t.webp + large_image_url: https://myanimelist.net/images/anime/1392/136670l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k-LZicv1K4I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hataraku Maou-sama!! 2nd Season + - type: Synonym + title: The Devil is a Part-Timer! 3rd Season + - type: Synonym + title: Hataraku Maou-sama 3 + - type: Japanese + title: はたらく魔王さま!! + - type: English + title: The Devil is a Part-Timer! Season 2 Part 2 + title: Hataraku Maou-sama!! 2nd Season + title_english: The Devil is a Part-Timer! Season 2 Part 2 + title_japanese: はたらく魔王さま!! + title_synonyms: + - The Devil is a Part-Timer! 3rd Season + - Hataraku Maou-sama 3 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-13T00:00:00+00:00' + to: '2023-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2023 + to: + day: 28 + month: 9 + year: 2023 + string: Jul 13, 2023 to Sep 28, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.68 + scored_by: 62950 + rank: 7052 + popularity: 1561 + members: 177258 + favorites: 341 + synopsis: |- + Following the revelations of the archangel Gabriel, Ente Isla hero Emilia Justina—who lives on Earth under the alias Emi Yusa—starts doubting the validity of her mission to slay the Demon Lord Satan, now reduced to a modest employee of MgRonald's as Sadao Maou. At the same time, Sadao's high school-aged coworker Chiho Sasaki pursues a new dream with hopes to protect not only herself but also her friends. Secretly training with Emi and Suzuno Kamazuki to develop telepathic powers, Chiho's training is cut short when a group of demons abducts her. + + As angel and demon attacks threaten the fragile peace between the two worlds, Sadao and Emi need to put their troubled past behind them if they want to have a chance to find their new purpose in life. + + [Written by MAL Rewrite] + background: Hataraku Maou-sama!! 2nd Season was released on Blu-ray in two volumes from October 18, 2023, to December + 6, 2023. + season: summer + year: 2023 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + licensors: [] + studios: + - mal_id: 1127 + type: anime + name: Studio 3Hz + url: https://myanimelist.net/anime/producer/1127/Studio_3Hz + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 49413 + url: https://myanimelist.net/anime/49413/Shiguang_Dailiren_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1897/137108.jpg + small_image_url: https://myanimelist.net/images/anime/1897/137108t.jpg + large_image_url: https://myanimelist.net/images/anime/1897/137108l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1897/137108.webp + small_image_url: https://myanimelist.net/images/anime/1897/137108t.webp + large_image_url: https://myanimelist.net/images/anime/1897/137108l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vE0tnwk-jVE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shiguang Dailiren II + - type: Synonym + title: LINK CLICK Ⅱ + - type: Synonym + title: 时光代理人 第二季 + - type: Synonym + title: Link Click 2nd Season + - type: Synonym + title: 時光代理人 -LINK CLICK- II + - type: Japanese + title: 时光代理人II + - type: English + title: Link Click Season 2 + title: Shiguang Dailiren II + title_english: Link Click Season 2 + title_japanese: 时光代理人II + title_synonyms: + - LINK CLICK Ⅱ + - 时光代理人 第二季 + - Link Click 2nd Season + - 時光代理人 -LINK CLICK- II + type: ONA + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-14T00:00:00+00:00' + to: '2023-09-22T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2023 + to: + day: 22 + month: 9 + year: 2023 + string: Jul 14, 2023 to Sep 22, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.6 + scored_by: 80734 + rank: 114 + popularity: 1603 + members: 172380 + favorites: 2166 + synopsis: |- + The attempt to capture the mysterious perpetrator who possesses people ends tragically: Lu Guang is rushed to the hospital in a critical state, while Cheng Xiaoshi is arrested for the alleged crime. In light of recent events, the father of Liu Min unleashes his skilled, ruthless lawyer—Qian Jin—after Police Chief Li Xiao, who is spearheading the investigation related to the photo studio owned by Qiao Ling. + + It appears that no one is safe from the unpredictable and fatal attacks of the adversary who painstakingly hides their identity. As he tries to learn from his past mistakes, Cheng Xiaoshi must act swiftly and decisively to put an end to this devastating trail of death. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 2357 + type: anime + name: BeDream + url: https://myanimelist.net/anime/producer/2357/BeDream + licensors: [] + studios: + - mal_id: 1774 + type: anime + name: LAN Studio + url: https://myanimelist.net/anime/producer/1774/LAN_Studio + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 51764 + url: https://myanimelist.net/anime/51764/Level_1_dakedo_Unique_Skill_de_Saikyou_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1579/136295.jpg + small_image_url: https://myanimelist.net/images/anime/1579/136295t.jpg + large_image_url: https://myanimelist.net/images/anime/1579/136295l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1579/136295.webp + small_image_url: https://myanimelist.net/images/anime/1579/136295t.webp + large_image_url: https://myanimelist.net/images/anime/1579/136295l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/liWTTxBfIWk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Level 1 dakedo Unique Skill de Saikyou desu + - type: Japanese + title: レベル1だけどユニークスキルで最強です + - type: English + title: My Unique Skill Makes Me OP Even at Level 1 + title: Level 1 dakedo Unique Skill de Saikyou desu + title_english: My Unique Skill Makes Me OP Even at Level 1 + title_japanese: レベル1だけどユニークスキルで最強です + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-08T00:00:00+00:00' + to: '2023-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2023 + to: + day: 23 + month: 9 + year: 2023 + string: Jul 8, 2023 to Sep 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.21 + scored_by: 74898 + rank: 9872 + popularity: 1694 + members: 158744 + favorites: 341 + synopsis: |- + As a corporate slave, Ryouta Satou experiences the worst forms of stress, overwork, and loneliness. Even after he is hospitalized due to exhaustion, his days of toil only become worse. Soon enough, the sheer fatigue catches up to him and kills him in his sleep. However, Ryouta is given a second chance at life: he wakes up in another world as a slime drop—much to the surprise of Emily Brown, the petite blonde girl who defeated said slime. + + Acquainting himself with the rules of this RPG-like world, Ryouta finds out that he will never grow past level 1. However, he also discovers that one of his skills is at the maximum level: the skill which determines the rarity of monster drops. This allows him to acquire not only items of the best quality, but also some that are unheard of. + + Ryouta sets out to make the most of his ability—meeting new friends, grinding through dungeons, and acquiring unique items along the way. Reveling in his new life seems to be the long-awaited and much-deserved reward for all the tribulations he had suffered. + + [Written by MAL Rewrite] + background: Level 1 dakedo Unique Skill de Saikyou desu was released on Blu-ray in two volumes from October 4, 2023, + to November 3, 2023. + season: summer + year: 2023 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1401 + type: anime + name: Amusement Media Academy + url: https://myanimelist.net/anime/producer/1401/Amusement_Media_Academy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1651 + type: anime + name: Production Ace + url: https://myanimelist.net/anime/producer/1651/Production_Ace + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2971 + type: anime + name: Kappa Entertainment + url: https://myanimelist.net/anime/producer/2971/Kappa_Entertainment + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 50613 + url: https://myanimelist.net/anime/50613/Rurouni_Kenshin__Meiji_Kenkaku_Romantan_2023 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1599/136532.jpg + small_image_url: https://myanimelist.net/images/anime/1599/136532t.jpg + large_image_url: https://myanimelist.net/images/anime/1599/136532l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1599/136532.webp + small_image_url: https://myanimelist.net/images/anime/1599/136532t.webp + large_image_url: https://myanimelist.net/images/anime/1599/136532l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JZH-M2hdtdM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Rurouni Kenshin: Meiji Kenkaku Romantan (2023)' + - type: Japanese + title: るろうに剣心 -明治剣客浪漫譚- + - type: English + title: Rurouni Kenshin + title: 'Rurouni Kenshin: Meiji Kenkaku Romantan (2023)' + title_english: Rurouni Kenshin + title_japanese: るろうに剣心 -明治剣客浪漫譚- + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2023-07-07T00:00:00+00:00' + to: '2023-12-15T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2023 + to: + day: 15 + month: 12 + year: 2023 + string: Jul 7, 2023 to Dec 15, 2023 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 7.63 + scored_by: 54686 + rank: 1705 + popularity: 1742 + members: 153626 + favorites: 925 + synopsis: |- + In the late 19th century, as the cruel times of the Bakumatsu period came to a close, a new Meiji era marked the age of restoration for Japan. With the war over, its infamous hero Hitokiri Battousai disappeared into thin air, leaving only his legend behind. + + Years later, a seemingly plain wanderer named Kenshin Himura encounters Kaoru Kamiya, the owner of a struggling local dojo in Tokyo. Kaoru pursues a self-proclaimed Battousai who roams the streets, indiscriminately killing citizens and police officers. Furthermore, the warrior professes to use the Kamiya Kasshin-ryu—a sword style developed by Kaoru's father deeply rooted in the essence of life, not death. + + Kenshin decides to help Kaoru take down the impostor and restore her father's dojo. Unbeknownst to all, Kenshin is none other than the real warrior whose name still terrifies the people. Although Kaoru eventually learns the truth, his oath to atone for his murderous history by bloodlessly protecting the weak moves her, and she welcomes Kenshin to stay at her dojo. However, Kenshin's ideals are soon challenged by ghosts of the past and enemies of the present. + + [Written by MAL Rewrite] + background: 'Rurouni Kenshin: Meiji Kenkaku Romantan (2023) is a remake of the original adaptation, utilizing new animation + technology to make it appealing to both new viewers and returning audiences of the series. Supplementary modifications + were also made to bring a more serious tone and depth to the story. The anime was released on Blu-ray and DVD in eight + volumes by Aniplex from October 25, 2023, to May 29, 2024.' + season: summer + year: 2023 + broadcast: + day: Fridays + time: 00:55 + timezone: Asia/Tokyo + string: Fridays at 00:55 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53263 + url: https://myanimelist.net/anime/53263/Seija_Musou__Salaryman_Isekai_de_Ikinokoru_Tame_ni_Ayumu_Michi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1490/137816.jpg + small_image_url: https://myanimelist.net/images/anime/1490/137816t.jpg + large_image_url: https://myanimelist.net/images/anime/1490/137816l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1490/137816.webp + small_image_url: https://myanimelist.net/images/anime/1490/137816t.webp + large_image_url: https://myanimelist.net/images/anime/1490/137816l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/q6wu1CAJhHI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi' + - type: Synonym + title: 'The Great Cleric: A Salaryman''s Path to Surviving Another World' + - type: Japanese + title: 聖者無双 + - type: English + title: The Great Cleric + title: 'Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi' + title_english: The Great Cleric + title_japanese: 聖者無双 + title_synonyms: + - 'The Great Cleric: A Salaryman''s Path to Surviving Another World' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-07T00:00:00+00:00' + to: '2023-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2023 + to: + day: 29 + month: 9 + year: 2023 + string: Jul 7, 2023 to Sep 29, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 76782 + rank: 4476 + popularity: 1780 + members: 150091 + favorites: 411 + synopsis: |- + Right as he is about to earn a promotion, a salaryman meets an untimely demise. Taking pity, a mysterious being grants him a second life in the land of Galdardia as a teenager. Choosing the name Luciel for himself and a role as a healer, the young man sets off for the nearby town of Merratoni. There, he learns that healers are a coveted resource, yet they often take advantage of others for monetary gain. Vowing to be different from other healers, he joins the local branch of the Healers' Guild and begins unlocking his magical potential. + + After failing to save someone with his magic, Luciel is determined to get stronger. To improve his physical strength and hone his magic skills, he registers as an adventurer and takes rigorous training under Brod, the chief instructor of the Adventurers' Guild. Soon, Luciel gradually finds his way through Galdardia, gaining a reputation as a selfless healer who aids others regardless of expense. + + [Written by MAL Rewrite] + background: 'Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi was released on Blu-ray in a collected + 2-disc set on October 27, 2023.' + season: summer + year: 2023 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + - mal_id: 2600 + type: anime + name: Cloud Hearts + url: https://myanimelist.net/anime/producer/2600/Cloud_Hearts + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 36699 + url: https://myanimelist.net/anime/36699/Kimitachi_wa_Dou_Ikiru_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1126/139654.jpg + small_image_url: https://myanimelist.net/images/anime/1126/139654t.jpg + large_image_url: https://myanimelist.net/images/anime/1126/139654l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1126/139654.webp + small_image_url: https://myanimelist.net/images/anime/1126/139654t.webp + large_image_url: https://myanimelist.net/images/anime/1126/139654l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A002-b7IH2M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimitachi wa Dou Ikiru ka + - type: Synonym + title: How Do You Live? + - type: Japanese + title: 君たちはどう生きるか + - type: English + title: The Boy and the Heron + title: Kimitachi wa Dou Ikiru ka + title_english: The Boy and the Heron + title_japanese: 君たちはどう生きるか + title_synonyms: + - How Do You Live? + type: Movie + source: Original + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-07-14T00:00:00+00:00' + to: null + prop: + from: + day: 14 + month: 7 + year: 2023 + to: + day: null + month: null + year: null + string: Jul 14, 2023 + duration: 2 hr 3 min + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 94452 + rank: 1775 + popularity: 1798 + members: 148815 + favorites: 722 + synopsis: |- + Three years into the war, Mahito Maki loses his mother in a tragic fire at the hospital. Shortly thereafter, his father marries Natsuko, the younger sister of Mahito's mother. They take Mahito out of Tokyo to seek refuge in his late mother's rural family home. There, Mahito is constantly taunted by a strange gray heron, who seems to have taken an interest in him. + + Unable to come to terms with his loss and struggling to adjust to a new life in an unfamiliar place, the boy is shocked to discover that Natsuko is pregnant. To make matters worse, the pesky heron can speak—and claims that Mahito's mother is still alive. Luring him into a mysterious tower near the residence, the heron says that Mahito can save her from death, but the boy is not easily swayed. + + When Natsuko disappears one day, however, Mahito watches her walk into the tower and becomes compelled to venture in to rescue her. He soon finds himself falling into another world below his, where life and death seem to be entwined. As he navigates through this foreign realm to find Natsuko, Mahito must understand what it means to live if he wants to safely return home. + + [Written by MAL Rewrite] + background: Kimitachi wa Dou Ikiru ka won Best Animated Feature at the 96th Academy Awards and the 76th British Academy + Film Awards. It was also nominated for Best Animated Feature Film at the 81st Golden Globe Awards and won two Annie + Awards for Outstanding Achievement for Storyboarding in a Feature Production and Outstanding Achievement for Character + Animation in an Animated Feature Production. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 21 + type: anime + name: Studio Ghibli + url: https://myanimelist.net/anime/producer/21/Studio_Ghibli + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 49894 + url: https://myanimelist.net/anime/49894/Eiyuu_Kyoushitsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1179/136000.jpg + small_image_url: https://myanimelist.net/images/anime/1179/136000t.jpg + large_image_url: https://myanimelist.net/images/anime/1179/136000l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1179/136000.webp + small_image_url: https://myanimelist.net/images/anime/1179/136000t.webp + large_image_url: https://myanimelist.net/images/anime/1179/136000l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0Midb-96D10?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Eiyuu Kyoushitsu + - type: Synonym + title: Class Room✿For Heroes + - type: Synonym + title: Hero Classroom + - type: Japanese + title: 英雄教室 + - type: English + title: Classroom for Heroes + title: Eiyuu Kyoushitsu + title_english: Classroom for Heroes + title_japanese: 英雄教室 + title_synonyms: + - Class Room✿For Heroes + - Hero Classroom + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-07-09T00:00:00+00:00' + to: '2023-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2023 + to: + day: 24 + month: 9 + year: 2023 + string: Jul 9, 2023 to Sep 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.05 + scored_by: 55689 + rank: 10753 + popularity: 1799 + members: 148012 + favorites: 496 + synopsis: "After defeating the Demon Lord, the great hero Blade finds himself on the brink of death. Though he miraculously\ + \ survives, he loses a significant portion of his strength. Being stripped of his immense power frees Blade from the\ + \ obligation of being humanity's savior. He chooses to spend his newfound freetime embarking on a new quest, making\ + \ friends.\n\nBlade enrolls at Rosewood Academy, an institution that trains prospective heroes to become bonafide\ + \ champions of justice. He quickly fits in, befriending his fellow classmates and helping them through the trials\ + \ and tribulations on the path toward becoming a hero. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2023 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 60 + type: anime + name: Actas + url: https://myanimelist.net/anime/producer/60/Actas + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/56-2023-fall.yaml b/test/fixtures/jikan/season_matrix/56-2023-fall.yaml new file mode 100644 index 0000000..dce857f --- /dev/null +++ b/test/fixtures/jikan/season_matrix/56-2023-fall.yaml @@ -0,0 +1,3355 @@ +metadata: + captured_at: '2026-05-11T11:34:56Z' + label: 2023-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2023/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:55 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:d4351536d5572eda8dc48e13d91bc6cfbd793904 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 14 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 345 + per_page: 25 + data: + - mal_id: 52991 + url: https://myanimelist.net/anime/52991/Sousou_no_Frieren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1015/138006.jpg + small_image_url: https://myanimelist.net/images/anime/1015/138006t.jpg + large_image_url: https://myanimelist.net/images/anime/1015/138006l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1015/138006.webp + small_image_url: https://myanimelist.net/images/anime/1015/138006t.webp + large_image_url: https://myanimelist.net/images/anime/1015/138006l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZEkwCGJ3o7M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sousou no Frieren + - type: Synonym + title: Frieren at the Funeral + - type: Synonym + title: Frieren The Slayer + - type: Japanese + title: 葬送のフリーレン + - type: English + title: 'Frieren: Beyond Journey''s End' + title: Sousou no Frieren + title_english: 'Frieren: Beyond Journey''s End' + title_japanese: 葬送のフリーレン + title_synonyms: + - Frieren at the Funeral + - Frieren The Slayer + type: TV + source: Manga + episodes: 28 + status: Finished Airing + airing: false + aired: + from: '2023-09-29T00:00:00+00:00' + to: '2024-03-22T00:00:00+00:00' + prop: + from: + day: 29 + month: 9 + year: 2023 + to: + day: 22 + month: 3 + year: 2024 + string: Sep 29, 2023 to Mar 22, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 9.27 + scored_by: 884541 + rank: 1 + popularity: 104 + members: 1435483 + favorites: 89381 + synopsis: |- + During their decade-long quest to defeat the Demon King, the members of the hero's party—Himmel himself, the priest Heiter, the dwarf warrior Eisen, and the elven mage Frieren—forge bonds through adventures and battles, creating unforgettable precious memories for most of them. + + However, the time that Frieren spends with her comrades is equivalent to merely a fraction of her life, which has lasted over a thousand years. When the party disbands after their victory, Frieren casually returns to her "usual" routine of collecting spells across the continent. Due to her different sense of time, she seemingly holds no strong feelings toward the experiences she went through. + + As the years pass, Frieren gradually realizes how her days in the hero's party truly impacted her. Witnessing the deaths of two of her former companions, Frieren begins to regret having taken their presence for granted; she vows to better understand humans and create real personal connections. Although the story of that once memorable journey has long ended, a new tale is about to begin. + + [Written by MAL Rewrite] + background: Sousou no Frieren was released on Blu-ray and DVD in seven volumes from January 24, 2024, to July 17, 2024. + The series aired on Nippon TV's Friday Anime Night block. + season: fall + year: 2023 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54492 + url: https://myanimelist.net/anime/54492/Kusuriya_no_Hitorigoto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1708/138033.jpg + small_image_url: https://myanimelist.net/images/anime/1708/138033t.jpg + large_image_url: https://myanimelist.net/images/anime/1708/138033l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1708/138033.webp + small_image_url: https://myanimelist.net/images/anime/1708/138033t.webp + large_image_url: https://myanimelist.net/images/anime/1708/138033l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hkflaNu6yAQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kusuriya no Hitorigoto + - type: Synonym + title: The Pharmacist's Monologue + - type: Synonym + title: Drugstore Soliloquy + - type: Japanese + title: 薬屋のひとりごと + - type: English + title: The Apothecary Diaries + title: Kusuriya no Hitorigoto + title_english: The Apothecary Diaries + title_japanese: 薬屋のひとりごと + title_synonyms: + - The Pharmacist's Monologue + - Drugstore Soliloquy + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2023-10-22T00:00:00+00:00' + to: '2024-03-24T00:00:00+00:00' + prop: + from: + day: 22 + month: 10 + year: 2023 + to: + day: 24 + month: 3 + year: 2024 + string: Oct 22, 2023 to Mar 24, 2024 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.85 + scored_by: 473822 + rank: 32 + popularity: 264 + members: 838948 + favorites: 28316 + synopsis: |- + Maomao, an apothecary's daughter, has been plucked from her peaceful life and sold to the lowest echelons of the imperial court. Now merely a maid, Maomao settles into her new mundane life and hides her extensive knowledge of medicine in order to avoid any unwanted attention. + + Not long after Maomao's arrival, the emperor's infant children inexplicably begin to experience grave symptoms—almost as if a curse has been cast. The curious Maomao easily solves the mystery and, to remain out of the limelight, attempts to leave an anonymous tip. Unfortunately, the dashing and perceptive eunuch Jinshi sees through it and manages to single her out. + + In recognition of her talent, Maomao is promoted to lady-in-waiting for the emperor's favorite concubine, Gyokuyou. As Maomao continues to remedy the numerous ailments afflicting the imperial court, her pharmaceutical expertise quickly proves indispensable. + + [Written by MAL Rewrite] + background: Kusuriya no Hitorigoto was released on Blu-ray in four volumes from January 24, 2024, to July 17, 2024. + season: fall + year: 2023 + broadcast: + day: Sundays + time: 01:05 + timezone: Asia/Tokyo + string: Sundays at 01:05 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 2844 + type: anime + name: Imagica Infos + url: https://myanimelist.net/anime/producer/2844/Imagica_Infos + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 2705 + type: anime + name: TOHO animation STUDIO + url: https://myanimelist.net/anime/producer/2705/TOHO_animation_STUDIO + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: [] + - mal_id: 53887 + url: https://myanimelist.net/anime/53887/Spy_x_Family_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1506/138982.jpg + small_image_url: https://myanimelist.net/images/anime/1506/138982t.jpg + large_image_url: https://myanimelist.net/images/anime/1506/138982l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1506/138982.webp + small_image_url: https://myanimelist.net/images/anime/1506/138982t.webp + large_image_url: https://myanimelist.net/images/anime/1506/138982l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/75LyKY6AV4U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Spy x Family Season 2 + - type: Japanese + title: SPY×FAMILY Season 2 + title: Spy x Family Season 2 + title_english: null + title_japanese: SPY×FAMILY Season 2 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-07T00:00:00+00:00' + to: '2023-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2023 + to: + day: 23 + month: 12 + year: 2023 + string: Oct 7, 2023 to Dec 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.06 + scored_by: 337687 + rank: 662 + popularity: 357 + members: 680209 + favorites: 3801 + synopsis: |- + With her ability to read minds, Anya Forger is the only one who knows the true identities of her unconventional family. Her pretend father Loid operates as an elite spy code-named Twilight; her mother Yor kills on demand as the assassin Thorn Princess; and their dog, Bond, possesses the gift of precognition. Although they hide the truth from each other, this pretense of a perfectly ordinary family provides Anya with the genuine love and warmth that she longed for as an orphan. + + Operation Strix—Loid's special mission to avoid potential war by gathering vital information and getting close to the powerful political figure, Donovan Desmond—is only possible if Anya plays her part right. She can either excel academically and become an Imperial Scholar at her prestigious school or make friends with Donovan's son, Damian. Neither is exactly easy, but with her adventurous attitude, Anya throws herself wholeheartedly into her mission as a Forger—all for the sake of international peace. + + [Written by MAL Rewrite] + background: Spy x Family Season 2 was released on Blu-ray and DVD in three volumes from December 20, 2023, to April + 17, 2024. + season: fall + year: 2023 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2512 + type: anime + name: Studio Easter + url: https://myanimelist.net/anime/producer/2512/Studio_Easter + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54595 + url: https://myanimelist.net/anime/54595/Kage_no_Jitsuryokusha_ni_Naritakute_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1938/138295.jpg + small_image_url: https://myanimelist.net/images/anime/1938/138295t.jpg + large_image_url: https://myanimelist.net/images/anime/1938/138295l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1938/138295.webp + small_image_url: https://myanimelist.net/images/anime/1938/138295t.webp + large_image_url: https://myanimelist.net/images/anime/1938/138295l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OqzdUcc3k9Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kage no Jitsuryokusha ni Naritakute! 2nd Season + - type: Synonym + title: Shadow Garden 2nd Season + - type: Japanese + title: 陰の実力者になりたくて! 2nd Season + - type: English + title: The Eminence in Shadow Season 2 + title: Kage no Jitsuryokusha ni Naritakute! 2nd Season + title_english: The Eminence in Shadow Season 2 + title_japanese: 陰の実力者になりたくて! 2nd Season + title_synonyms: + - Shadow Garden 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-04T00:00:00+00:00' + to: '2023-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2023 + to: + day: 20 + month: 12 + year: 2023 + string: Oct 4, 2023 to Dec 20, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.25 + scored_by: 300201 + rank: 380 + popularity: 471 + members: 535306 + favorites: 5248 + synopsis: |- + Enticed by its rumored wealth, Cid Kagenou happily tags along with his sister, Claire, on a trip to the infamous Lawless City. The region is ruled by three monarchs: Yukime, the Spirit Fox; Juggernaut, the Tyrant; and Elisabeth, a dormant progenitor vampire known as the Blood Queen. Hunting Elisabeth down serves as the perfect opportunity for Claire to prove her true mettle. On the other hand, Cid has different objectives—sneaking away from Claire's sight, collecting as much loot as possible, and making Shadow's glorious entrance at the perfect moment. + + As Elisabeth's awakening draws near, her subordinate Crimson enacts a treacherous plot, sending the town into a frenzy. Searching for her now-missing brother, Claire finds an unexpected ally in Mary, a vampire hunter, and the pair hurry to the Crimson Tower—the home of the Blood Queen. Meanwhile, Beta and a small team of Shadow Garden recruits also arrive at the Lawless City. As the key players converge on the Crimson Tower, the stage is set for a grand confrontation under the crimson moon. + + [Written by MAL Rewrite] + background: Kage no Jitsuryokusha ni Naritakute! 2nd Season was released on Blu-ray and DVD in three volumes by Kadokawa + from January 24, 2024, to March 27, 2024. It adapts content from volumes 3 and 4 of the light novel. + season: fall + year: 2023 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + - mal_id: 2435 + type: anime + name: Aiming + url: https://myanimelist.net/anime/producer/2435/Aiming + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 852 + type: anime + name: Nexus + url: https://myanimelist.net/anime/producer/852/Nexus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 40357 + url: https://myanimelist.net/anime/40357/Tate_no_Yuusha_no_Nariagari_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1317/139802.jpg + small_image_url: https://myanimelist.net/images/anime/1317/139802t.jpg + large_image_url: https://myanimelist.net/images/anime/1317/139802l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1317/139802.webp + small_image_url: https://myanimelist.net/images/anime/1317/139802t.webp + large_image_url: https://myanimelist.net/images/anime/1317/139802l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VW_LxM4tt-o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tate no Yuusha no Nariagari Season 3 + - type: Synonym + title: Tate no Yuusha no Nariagari 3rd Season + - type: Synonym + title: The Rising of the Shield Hero 3rd Season + - type: Japanese + title: 盾の勇者の成り上がり Season 3 + - type: English + title: The Rising of the Shield Hero Season 3 + title: Tate no Yuusha no Nariagari Season 3 + title_english: The Rising of the Shield Hero Season 3 + title_japanese: 盾の勇者の成り上がり Season 3 + title_synonyms: + - Tate no Yuusha no Nariagari 3rd Season + - The Rising of the Shield Hero 3rd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-06T00:00:00+00:00' + to: '2023-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2023 + to: + day: 22 + month: 12 + year: 2023 + string: Oct 6, 2023 to Dec 22, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.08 + scored_by: 163320 + rank: 4729 + popularity: 488 + members: 523410 + favorites: 6149 + synopsis: "Though he has successfully repelled the latest Wave of Catastrophe, Naofumi Iwatani—the Shield Hero—has no\ + \ time to rest. Naofumi is spurred back into action when Queen Mirelia Q Melromarc tells him that the three other\ + \ Cardinal Heroes have disappeared without a trace, and she tasks him with finding them. \n\nWith no clues regarding\ + \ their whereabouts, Naofumi tackles a more pressing issue: the worsening slave trade of demi-humans. Determined to\ + \ right this injustice, he and his friends find their way to Zeltoble, the country of mercenaries, where the illegal\ + \ sale of demi-humans has become a lucrative business. To gather money to free the slaves, Naofumi and his comrades\ + \ disguise themselves and take part in underground coliseum brawls, purposely throwing matches to manipulate the odds\ + \ and eventually secure an enormous payout. However, with the threat of another Wave of Catastrophe looming on the\ + \ horizon, the Shield Hero must stick to his mission of finding the missing heroes if he wants to protect those he\ + \ loves.\n\n[Written by MAL Rewrite]" + background: '' + season: fall + year: 2023 + broadcast: + day: Fridays + time: '21:00' + timezone: Asia/Tokyo + string: Fridays at 21:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 52347 + url: https://myanimelist.net/anime/52347/Shangri-La_Frontier__Kusoge_Hunter_Kamige_ni_Idoman_to_su + images: + jpg: + image_url: https://myanimelist.net/images/anime/1500/139931.jpg + small_image_url: https://myanimelist.net/images/anime/1500/139931t.jpg + large_image_url: https://myanimelist.net/images/anime/1500/139931l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1500/139931.webp + small_image_url: https://myanimelist.net/images/anime/1500/139931t.webp + large_image_url: https://myanimelist.net/images/anime/1500/139931l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AFNZzbQ8tVI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su' + - type: Synonym + title: 'Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game' + - type: Synonym + title: Shanfro + - type: Japanese + title: シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ + - type: English + title: Shangri-La Frontier + title: 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su' + title_english: Shangri-La Frontier + title_japanese: シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ + title_synonyms: + - 'Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game' + - Shanfro + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2023-10-01T00:00:00+00:00' + to: '2024-03-31T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2023 + to: + day: 31 + month: 3 + year: 2024 + string: Oct 1, 2023 to Mar 31, 2024 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.1 + scored_by: 240598 + rank: 600 + popularity: 569 + members: 463084 + favorites: 4083 + synopsis: |- + High school student Rakurou Hizutome has a peculiar hobby of playing poorly made games—ones that are unbalanced or are filled with so many bugs that make them borderline unplayable. The few who share his hobby might recognize him by his in-game name, Sunraku. For his next game, Rakurou is recommended Shangri-La Frontier, a popular and well-received virtual reality game as a breather from the terrible games he has been playing recently. + + Once he boots up the game, Rakurou decides to sell off most of his starting gear to gain extra money, leaving himself with only a pair of boxers, a bird mask, and some weapons. He is instantly hooked as he meticulously levels up his avatar. However, after encountering some intimidating monsters, he realizes that he may have underestimated the challenge that a mainstream game can offer. As Rakurou progresses, he must draw on all the skills he has perfected from his previous gaming experience. Before long, Sunraku's eccentric playstyle takes Shangri-La Frontier by storm. + + [Written by MAL Rewrite] + background: 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su was released on Blu-ray and DVD in two volumes + from March 27, 2024, to June 26, 2024.' + season: fall + year: 2023 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 464 + type: anime + name: flying DOG + url: https://myanimelist.net/anime/producer/464/flying_DOG + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 2837 + type: anime + name: Netmarble + url: https://myanimelist.net/anime/producer/2837/Netmarble + licensors: [] + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 55644 + url: https://myanimelist.net/anime/55644/Dr_Stone__New_World_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1236/138696.jpg + small_image_url: https://myanimelist.net/images/anime/1236/138696t.jpg + large_image_url: https://myanimelist.net/images/anime/1236/138696l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1236/138696.webp + small_image_url: https://myanimelist.net/images/anime/1236/138696t.webp + large_image_url: https://myanimelist.net/images/anime/1236/138696l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g6lRblWDKCk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: New World Part 2' + - type: Synonym + title: Dr. Stone 3rd Season Part 2 + - type: Japanese + title: Dr.STONE NEW WORLD + - type: English + title: 'Dr. Stone: New World Part 2' + title: 'Dr. Stone: New World Part 2' + title_english: 'Dr. Stone: New World Part 2' + title_japanese: Dr.STONE NEW WORLD + title_synonyms: + - Dr. Stone 3rd Season Part 2 + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2023-10-12T00:00:00+00:00' + to: '2023-12-21T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2023 + to: + day: 21 + month: 12 + year: 2023 + string: Oct 12, 2023 to Dec 21, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.3 + scored_by: 232871 + rank: 319 + popularity: 623 + members: 430626 + favorites: 1651 + synopsis: |- + Years ago, astronaut Byakuya left behind precious materials in the belief that his son, the scientifically-gifted Senkuu, would one day find them. In the present, the Kingdom of Science's Kohaku and Ginrou have infiltrated the harem of the Petrification Kingdom’s leader with the help of Amaryllis, a local girl. At first, their mission progresses without a hitch. Unfortunately, an error enacted by Kohaku and Ginrou leads Minister Ibara and the Island’s strongest warrior, Moz, to identify the intruding duo as enemies. + + Even worse, Moz tails Amaryllis when she returns to inform Senkuu of the news, discovering the scientist's secret hideout. However, Moz's agenda does not align with Ibara's—he wants to dethrone the minister and keep the petrification device for himself. If Senkuu plays his cards right, he could gain a powerful ally and win the war once and for all. + + [Written by MAL Rewrite] + background: 'Dr. Stone: New World Part 2 adapts chapters 116-142 of the manga.' + season: fall + year: 2023 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 47160 + url: https://myanimelist.net/anime/47160/Goblin_Slayer_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1100/138338.jpg + small_image_url: https://myanimelist.net/images/anime/1100/138338t.jpg + large_image_url: https://myanimelist.net/images/anime/1100/138338l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1100/138338.webp + small_image_url: https://myanimelist.net/images/anime/1100/138338t.webp + large_image_url: https://myanimelist.net/images/anime/1100/138338l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/W90MhD6d-u4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Goblin Slayer II + - type: Synonym + title: Goblin Slayer 2nd Season + - type: Japanese + title: ゴブリンスレイヤーⅡ + title: Goblin Slayer II + title_english: null + title_japanese: ゴブリンスレイヤーⅡ + title_synonyms: + - Goblin Slayer 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-06T00:00:00+00:00' + to: '2023-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2023 + to: + day: 22 + month: 12 + year: 2023 + string: Oct 6, 2023 to Dec 22, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.21 + scored_by: 151809 + rank: 3883 + popularity: 655 + members: 413648 + favorites: 3187 + synopsis: Second season of Goblin Slayer. + background: Goblin Slayer II was released on Blu-ray and DVD in three volumes from January 31, 2024, to March 27, 2024. + season: fall + year: 2023 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: [] + - mal_id: 52741 + url: https://myanimelist.net/anime/52741/Undead_Unluck + images: + jpg: + image_url: https://myanimelist.net/images/anime/1136/138410.jpg + small_image_url: https://myanimelist.net/images/anime/1136/138410t.jpg + large_image_url: https://myanimelist.net/images/anime/1136/138410l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1136/138410.webp + small_image_url: https://myanimelist.net/images/anime/1136/138410t.webp + large_image_url: https://myanimelist.net/images/anime/1136/138410l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bZGXu-Ts_o4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Undead Unluck + - type: Japanese + title: アンデッドアンラック + title: Undead Unluck + title_english: null + title_japanese: アンデッドアンラック + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2023-10-07T00:00:00+00:00' + to: '2024-03-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2023 + to: + day: 23 + month: 3 + year: 2024 + string: Oct 7, 2023 to Mar 23, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.75 + scored_by: 126178 + rank: 1326 + popularity: 788 + members: 348918 + favorites: 1950 + synopsis: |- + With the conclusion of her favorite romance manga, Fuuko Izumo is ready to end her life of misery and loneliness having long accepted her fate of never being able to experience passionate love like fictional characters. Cursed with "unluck," anyone Fuuko touches is in grave danger of experiencing unimaginable calamity. + + While the possibility of imminent danger would have most sane people run in the opposite direction, Undead has other ideas. He is an immortal being with superhuman regenerative powers desperately seeking death, which has always eluded him. When their paths finally cross, Undead sees an opportunity to finally end his suffering by using Fuuko's unluck. + + But before Undead can unlock the full potential of Fuuko's power to trigger the final devastating blow, the duo must first fend off a murderous secret organization hell-bent on exterminating those with special abilities. + + [Written by MAL Rewrite] + background: Undead Unluck was released on Blu-ray and DVD in two volumes from March 27, 2024, to June 26, 2024. + season: fall + year: 2023 + broadcast: + day: Saturdays + time: 01:23 + timezone: Asia/Tokyo + string: Saturdays at 01:23 (JST) + producers: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54714 + url: https://myanimelist.net/anime/54714/Kimi_no_Koto_ga_Daidaidaidaidaisuki_na_100-nin_no_Kanojo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1812/136764.jpg + small_image_url: https://myanimelist.net/images/anime/1812/136764t.jpg + large_image_url: https://myanimelist.net/images/anime/1812/136764l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1812/136764.webp + small_image_url: https://myanimelist.net/images/anime/1812/136764t.webp + large_image_url: https://myanimelist.net/images/anime/1812/136764l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1P_M_3QnV1A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo + - type: Synonym + title: Hyakkano + - type: Japanese + title: 君のことが大大大大大好きな100人の彼女 + - type: English + title: The 100 Girlfriends Who Really, Really, Really, Really, Really Love You + title: Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo + title_english: The 100 Girlfriends Who Really, Really, Really, Really, Really Love You + title_japanese: 君のことが大大大大大好きな100人の彼女 + title_synonyms: + - Hyakkano + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-08T00:00:00+00:00' + to: '2023-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2023 + to: + day: 24 + month: 12 + year: 2023 + string: Oct 8, 2023 to Dec 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.68 + scored_by: 172073 + rank: 1523 + popularity: 850 + members: 330946 + favorites: 3150 + synopsis: |- + Rentarou Aijou has it all: looks, intelligence, athletic skill, and popularity with peers and mentors alike. Unfortunately, none of these qualities help Rentarou with his love life. On the day of his middle school graduation, he is once again turned down by a girl he confesses to, earning his one-hundredth rejection in a row. Down on his luck, he goes to a matchmaking shrine and wishes to finally get a girlfriend in high school. + + When the god of the shrine suddenly appears before him, Rentarou is told he will meet an astronomical total of one hundred soulmates in high school. Though Rentarou initially does not take this foretelling seriously, his doubts disappear when, on the first day of school, he meets two of these soulmates—Hakari Hanazono and Karane Inda—who both confess to him. With fated encounters and love confessions galore, Rentarou's life is about to get a lot more exciting. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2023 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 51297 + url: https://myanimelist.net/anime/51297/Ragna_Crimson + images: + jpg: + image_url: https://myanimelist.net/images/anime/1763/140359.jpg + small_image_url: https://myanimelist.net/images/anime/1763/140359t.jpg + large_image_url: https://myanimelist.net/images/anime/1763/140359l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1763/140359.webp + small_image_url: https://myanimelist.net/images/anime/1763/140359t.webp + large_image_url: https://myanimelist.net/images/anime/1763/140359l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gCB1dp8BnTo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ragna Crimson + - type: Japanese + title: ラグナクリムゾン + title: Ragna Crimson + title_english: null + title_japanese: ラグナクリムゾン + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2023-10-01T00:00:00+00:00' + to: '2024-03-31T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2023 + to: + day: 31 + month: 3 + year: 2024 + string: Oct 1, 2023 to Mar 31, 2024 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.56 + scored_by: 108682 + rank: 1985 + popularity: 991 + members: 283443 + favorites: 1607 + synopsis: |- + Said to be humanity's natural enemy, formidable dragons that belong to an ancient bloodline roam the world. Only two ways prove effective to kill a dragon: freezing their blood with silverine—an aura that comes from silver weapons—or letting their bodies be incinerated by sunlight. + + Young hunter prodigy Leonica is accompanied by her close friend Ragna, who appears to lack the skills necessary in their profession. Moreover, many shun Ragna, considering him cursed because dragons always seem to attack him and slaughter his close ones. Nevertheless, Leonica sees potential in Ragna and gladly partners up with him. Likewise, Ragna feels certain that Leonica is immune to his misfortune thanks to her incredible strength. + + His confidence is shaken, however, when Ragna dreams of Leonica's death, believing this to be a prophecy. As the destined day arrives, he comes face-to-face with his future self, who bestows him enormous power and memories from the future to ensure Leonica's safety. In order to succeed, Ragna must join forces with a mysterious figure known as Crimson and eradicate all dragons for good. + + [Written by MAL Rewrite] + background: Ragna Crimson was released on Blu-ray in two collected sets by King Records from February 21, 2024, to June + 5, 2024. + season: fall + year: 2023 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54918 + url: https://myanimelist.net/anime/54918/Tokyo_Revengers__Tenjiku-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1853/139843.jpg + small_image_url: https://myanimelist.net/images/anime/1853/139843t.jpg + large_image_url: https://myanimelist.net/images/anime/1853/139843l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1853/139843.webp + small_image_url: https://myanimelist.net/images/anime/1853/139843t.webp + large_image_url: https://myanimelist.net/images/anime/1853/139843l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OTlNyYfkM1s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Tokyo Revengers: Tenjiku-hen' + - type: Synonym + title: Tokyo Revengers Third Season + - type: Japanese + title: 東京リベンジャーズ 天竺編 + - type: English + title: 'Tokyo Revengers: Tenjiku Arc' + title: 'Tokyo Revengers: Tenjiku-hen' + title_english: 'Tokyo Revengers: Tenjiku Arc' + title_japanese: 東京リベンジャーズ 天竺編 + title_synonyms: + - Tokyo Revengers Third Season + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-10-04T00:00:00+00:00' + to: '2023-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2023 + to: + day: 27 + month: 12 + year: 2023 + string: Oct 4, 2023 to Dec 27, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.82 + scored_by: 133057 + rank: 1141 + popularity: 1031 + members: 273657 + favorites: 1630 + synopsis: |- + After succeeding in their winter conflict against Taiju Shiba and his Black Dragons, the Tokyo Manji Gang absorbs their group's remaining members. Due to his heroic courage and indomitable spirit, Takemichi Hanagaki should have accomplished his goal of defeating the tragic fate awaiting his girlfriend, Hinata Tachibana. + + In reality, Takemichi's troubles are far from over. Although Takemichi's actions have exposed Tetta Kisaki's treachery, the conniving schemer has found power elsewhere: Tenjiku, a dangerous gang led by the enigmatic Izana Kurokawa. Izana sets his sights on Manjirou "Mikey" Sano, pursuing a vicious interest in the Tokyo Manji Gang's aloof leader. + + In the future, Takemichi discovers that the machinations of Izana and Kisaki led to Mikey's moral ruin—a downfall that directly results in Hinata's death. Unfortunately, a terrible loss robs Takemichi of his time-leaping ability, stranding him in the past with one final chance to rescue everyone he loves. + + [Written by MAL Rewrite] + background: 'Tokyo Revengers: Tenjiku-hen was released on Blu-ray and DVD in three volumes by Kadokawa from January + 17, 2024, to March 6, 2024. The anime adapts the manga chapters 126-185.' + season: fall + year: 2023 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53439 + url: https://myanimelist.net/anime/53439/Boushoku_no_Berserk + images: + jpg: + image_url: https://myanimelist.net/images/anime/1951/138462.jpg + small_image_url: https://myanimelist.net/images/anime/1951/138462t.jpg + large_image_url: https://myanimelist.net/images/anime/1951/138462l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1951/138462.webp + small_image_url: https://myanimelist.net/images/anime/1951/138462t.webp + large_image_url: https://myanimelist.net/images/anime/1951/138462l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lFp0HbjzF64?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boushoku no Berserk + - type: Japanese + title: 暴食のベルセルク + - type: English + title: Berserk of Gluttony + title: Boushoku no Berserk + title_english: Berserk of Gluttony + title_japanese: 暴食のベルセルク + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-05T00:00:00+00:00' + to: '2023-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2023 + to: + day: 21 + month: 12 + year: 2023 + string: Oct 5, 2023 to Dec 21, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.72 + scored_by: 131142 + rank: 6771 + popularity: 1087 + members: 259163 + favorites: 1036 + synopsis: |- + Fate Graphite lives miserably as a gatekeeper in a world where skills given at birth determine an individual's entire life. Afflicted by the seemingly harmful skill Gluttony, which makes him perpetually hungry, he is abused by the holy knights—the supposed protectors of the populace—who view him as a dreg of society due to his skill. However, Fate's destiny takes a dramatic turn after he kills an escaping injured thief. To his surprise, Gluttony activates, enhancing his stats and granting him new skills. + + Following this epiphanic event, Fate receives a job offer from Roxy Hart, the only benevolent holy knight in the city, which he happily accepts. Eager to further explore Gluttony's true potential, he partners with a mysterious talking sword named Greed, who warns him that Gluttony is a taboo skill that breaks the logic of the world. Now forced to live a double life, Fate must slay monsters at night to satisfy his awakened appetite for souls, lest he go berserk and lose all chances at finding happiness. + + [Written by MAL Rewrite] + background: Boushoku no Berserk was released on Blu-ray in four volumes from December 20, 2023, to March 20, 2024. It + adapts the first three volumes of the light novel. + season: fall + year: 2023 + broadcast: + day: Thursdays + time: 01:30 + timezone: Asia/Tokyo + string: Thursdays at 01:30 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2739 + type: anime + name: HIAN + url: https://myanimelist.net/anime/producer/2739/HIAN + licensors: [] + studios: + - mal_id: 179 + type: anime + name: A.C.G.T. + url: https://myanimelist.net/anime/producer/179/ACGT + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 35737 + url: https://myanimelist.net/anime/35737/Pluto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1021/138568.jpg + small_image_url: https://myanimelist.net/images/anime/1021/138568t.jpg + large_image_url: https://myanimelist.net/images/anime/1021/138568l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1021/138568.webp + small_image_url: https://myanimelist.net/images/anime/1021/138568t.webp + large_image_url: https://myanimelist.net/images/anime/1021/138568l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KHSt5U0l3Wc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Pluto + - type: Japanese + title: プルートウ + - type: English + title: Pluto + title: Pluto + title_english: Pluto + title_japanese: プルートウ + title_synonyms: [] + type: ONA + source: Manga + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2023-10-26T00:00:00+00:00' + to: null + prop: + from: + day: 26 + month: 10 + year: 2023 + to: + day: null + month: null + year: null + string: Oct 26, 2023 + duration: 1 hr 1 min per ep + rating: PG-13 - Teens 13 or older + score: 8.45 + scored_by: 111391 + rank: 192 + popularity: 1122 + members: 251994 + favorites: 3413 + synopsis: |- + Gesicht, an android police detective of Europol, is tasked with finding the murderer of Montblanc, a retired war hero robot. Although it appears that only a robot could have committed this crime, the murder of a renowned robot rights activist casts doubts on the criminal's identity. Indeed, outside of an isolated and unexplained incident that occurred eight years ago, robots are programmed to be unable to kill human beings. However, the lack of human evidence on the crime scene and the similarity of modus operandi lead Gesicht to suspect that the two murderers might be the same being—be they man or robot. + + Shortly after Montblanc's passing, another retired elite war robot is mysteriously eliminated. Gesicht notices a pattern in the choice of murder victim: both dead robots belonged to a group of the seven most powerful war machines ever designed. Determined to stop the murderer from eliminating the five remaining veterans, Gesicht seeks help from Atom, a cutting-edge android who resembles a human boy. The duo must now hunt down the rogue killer before the series of murders is carried on, lest the very fabric of society suffer irremediable damage. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 200 + type: anime + name: Tezuka Productions + url: https://myanimelist.net/anime/producer/200/Tezuka_Productions + - mal_id: 1977 + type: anime + name: Netflix + url: https://myanimelist.net/anime/producer/1977/Netflix + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 1529 + type: anime + name: Studio M2 + url: https://myanimelist.net/anime/producer/1529/Studio_M2 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 53888 + url: https://myanimelist.net/anime/53888/Spy_x_Family_Movie__Code__White + images: + jpg: + image_url: https://myanimelist.net/images/anime/1426/139388.jpg + small_image_url: https://myanimelist.net/images/anime/1426/139388t.jpg + large_image_url: https://myanimelist.net/images/anime/1426/139388l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1426/139388.webp + small_image_url: https://myanimelist.net/images/anime/1426/139388t.webp + large_image_url: https://myanimelist.net/images/anime/1426/139388l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EpUAso8ITVw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Spy x Family Movie: Code: White' + - type: Japanese + title: 'SPY×FAMILY CODE: White' + - type: English + title: 'Spy x Family Code: White' + title: 'Spy x Family Movie: Code: White' + title_english: 'Spy x Family Code: White' + title_japanese: 'SPY×FAMILY CODE: White' + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-12-22T00:00:00+00:00' + to: null + prop: + from: + day: 22 + month: 12 + year: 2023 + to: + day: null + month: null + year: null + string: Dec 22, 2023 + duration: 1 hr 50 min + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 119172 + rank: 589 + popularity: 1127 + members: 250949 + favorites: 721 + synopsis: |- + Loid Forger, an elite spy, is warned by his handler that he may potentially be reassigned from his ongoing mission, Operation Strix. To maintain his position, he must make significant progress toward the operation's objectives, which involves having his adoptive daughter Anya earn sufficient Stella Stars to become an Imperial Scholar at Eden Academy. + + After learning of a cooking contest that awards the winning student with a Stella Star, Loid researches the judge's preferred dessert to help increase Anya's odds. However, perfectly recreating the judge's favorite meremere requires more than just following a recipe. Thus, the Forgers embark on a vacation to the Frigis region to try an authentic meremere. Not all goes smoothly on the trip, as the Forger family ends up entwined in a sinister plot to reignite war between the countries of Ostania and Westalis. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52990 + url: https://myanimelist.net/anime/52990/Keikenzumi_na_Kimi_to_Keiken_Zero_na_Ore_ga_Otsukiai_suru_Hanashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1848/140019.jpg + small_image_url: https://myanimelist.net/images/anime/1848/140019t.jpg + large_image_url: https://myanimelist.net/images/anime/1848/140019l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1848/140019.webp + small_image_url: https://myanimelist.net/images/anime/1848/140019t.webp + large_image_url: https://myanimelist.net/images/anime/1848/140019l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5pzAENiLIZI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi. + - type: Synonym + title: Kimizero + - type: Japanese + title: 経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。 + - type: English + title: 'Our Dating Story: The Experienced You and The Inexperienced Me' + title: Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi. + title_english: 'Our Dating Story: The Experienced You and The Inexperienced Me' + title_japanese: 経験済みなキミと、 経験ゼロなオレが、 お付き合いする話。 + title_synonyms: + - Kimizero + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-06T00:00:00+00:00' + to: '2023-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2023 + to: + day: 22 + month: 12 + year: 2023 + string: Oct 6, 2023 to Dec 22, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.75 + scored_by: 105688 + rank: 6602 + popularity: 1214 + members: 233151 + favorites: 1650 + synopsis: |- + To the shy and reclusive Ryuuto Kashima, associating himself with his popular classmate Runa Shirakawa is nothing but a distant fantasy—or so he thought. After losing a bet with his friends and being coerced into confessing to Runa, Ryuuto's world is flipped upside down: instead of the cruel rejection he was expecting, Runa agrees to go out with him! + + But dating Runa proves to be overwhelming for Ryuuto, who requests that their relationship remain a secret known only by their closest friends. His decision, however, leads to a series of mishaps that he fears will doom the relationship. As they work through their misunderstandings, Ryuuto reveals his insecurities stemming from his past experiences, and the two grow closer together. + + Just when things are getting back on track, Ryuuto's middle school crush, Maria Kurose, transfers to his class and begins to stir up a fuss. At the same time, terrible rumors about Runa spread around the school, prompting Ryuuto to take desperate measures to protect her. + + [Written by MAL Rewrite] + background: Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi. was released on Blu-ray and DVD in + three volumes by Kadokawa from December 22, 2023, to February 28, 2024. + season: fall + year: 2023 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1604 + type: anime + name: Sun TV + url: https://myanimelist.net/anime/producer/1604/Sun_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 54362 + url: https://myanimelist.net/anime/54362/Hametsu_no_Oukoku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1610/138189.jpg + small_image_url: https://myanimelist.net/images/anime/1610/138189t.jpg + large_image_url: https://myanimelist.net/images/anime/1610/138189l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1610/138189.webp + small_image_url: https://myanimelist.net/images/anime/1610/138189t.webp + large_image_url: https://myanimelist.net/images/anime/1610/138189l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UOtC17c8Xaw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hametsu no Oukoku + - type: Japanese + title: はめつのおうこく + - type: English + title: The Kingdoms of Ruin + title: Hametsu no Oukoku + title_english: The Kingdoms of Ruin + title_japanese: はめつのおうこく + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-07T00:00:00+00:00' + to: '2023-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2023 + to: + day: 23 + month: 12 + year: 2023 + string: Oct 7, 2023 to Dec 23, 2023 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.23 + scored_by: 92499 + rank: 9741 + popularity: 1229 + members: 230351 + favorites: 1013 + synopsis: |- + Bestowed with magic from God, witches worked to guide humanity toward progress, garnering adoration and fear alike from humans. However, times have since changed. With the advancement of scientific knowledge, humans now stand on an equal footing with witches. Determined to weave their own destinies and establish supremacy over the world, the mighty Redia Empire has ordered the extermination of all witches, which may bring the era of magic to an end. + + Fleeing from the decree, the famed witch Chloe and her apprentice, Adonis, seek refuge. Hot on their heels, the Empire captures the duo and mercilessly executes Chloe. Agonized by the brutal murder of his master and the callousness of humans, Adonis vows to avenge Chloe by annihilating humanity with the very magic they intend to destroy. + + [Written by MAL Rewrite] + background: Hametsu no Oukoku was released on Blu-ray in three volumes from February 2, 2024, to April 3, 2024. + season: fall + year: 2023 + broadcast: + day: Saturdays + time: 01:53 + timezone: Asia/Tokyo + string: Saturdays at 01:53 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1452 + type: anime + name: Mag Garden + url: https://myanimelist.net/anime/producer/1452/Mag_Garden + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54870 + url: https://myanimelist.net/anime/54870/Seishun_Buta_Yarou_wa_Randoseru_Girl_no_Yume_wo_Minai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1937/138379.jpg + small_image_url: https://myanimelist.net/images/anime/1937/138379t.jpg + large_image_url: https://myanimelist.net/images/anime/1937/138379l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1937/138379.webp + small_image_url: https://myanimelist.net/images/anime/1937/138379t.webp + large_image_url: https://myanimelist.net/images/anime/1937/138379l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/hO304LM67Ow?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai + - type: Japanese + title: 青春ブタ野郎はランドセルガールの夢を見ない + - type: English + title: Rascal Does Not Dream of a Knapsack Kid + title: Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai + title_english: Rascal Does Not Dream of a Knapsack Kid + title_japanese: 青春ブタ野郎はランドセルガールの夢を見ない + title_synonyms: [] + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2023-12-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 12 + year: 2023 + to: + day: null + month: null + year: null + string: Dec 1, 2023 + duration: 1 hr 14 min + rating: PG-13 - Teens 13 or older + score: 8.29 + scored_by: 83221 + rank: 340 + popularity: 1489 + members: 186529 + favorites: 677 + synopsis: |- + As Sakuta Azusagawa waits for Mai Sakurajima at the beach on her high school graduation day, he encounters a version of Mai from her child acting days. However, when Mai finally arrives, her younger self disappears, leaving him confused. Sakuta spots an unfamiliar scar on his body when he returns home, which confirms his suspicion—he is involved in another case of the inexplicable Puberty Syndrome. + + Not long after, Sakuta and his sister, Kaede, receive a call from their father. He tells them that their mother, who had been recently discharged from the hospital, wants to see her daughter once more. Experiencing strange occurrences while visiting his mother with Kaede, Sakuta must find a way to solve the Puberty Syndrome abnormalities. + + [Written by MAL Rewrite] + background: Seishun Buta Yarou wa Randoseru Girl no Yume wo Minai adapts the ninth volume of the light novel. The movie + was released on Blu-ray and DVD on June 26, 2024. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 50184 + url: https://myanimelist.net/anime/50184/Seiken_Gakuin_no_Makentsukai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1506/138529.jpg + small_image_url: https://myanimelist.net/images/anime/1506/138529t.jpg + large_image_url: https://myanimelist.net/images/anime/1506/138529l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1506/138529.webp + small_image_url: https://myanimelist.net/images/anime/1506/138529t.webp + large_image_url: https://myanimelist.net/images/anime/1506/138529l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6uDwQo6AZAU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seiken Gakuin no Makentsukai + - type: Synonym + title: Magic Sword Master of Holy Sword School + - type: Japanese + title: 聖剣学院の魔剣使い + - type: English + title: The Demon Sword Master of Excalibur Academy + title: Seiken Gakuin no Makentsukai + title_english: The Demon Sword Master of Excalibur Academy + title_japanese: 聖剣学院の魔剣使い + title_synonyms: + - Magic Sword Master of Holy Sword School + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-03T00:00:00+00:00' + to: '2023-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2023 + to: + day: 19 + month: 12 + year: 2023 + string: Oct 3, 2023 to Dec 19, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.21 + scored_by: 72177 + rank: 9887 + popularity: 1542 + members: 179298 + favorites: 872 + synopsis: |- + The battle against the forces of evil is nearing its end as the Undead King Leonis Death Magnus remains the sole survivor of the Dark Lords. Standing no chance alone against his enemies, Leonis seals himself deep underground with the goal of reincarnating a thousand years later and rebuilding his demonic army. + + Within the span of a millennium, however, everything has changed. People no longer remember the great war that led to Leonis' defeat and instead face a new threat—the monstrous creatures known as Voids. Magical devices have replaced sorcery, and humans with special powers—manifested in the form of weapons called Holy Swords—train at the Excalibur Academy to fight the Voids. + + Reborn as a 10-year-old human boy, Leonis meets Riselia Ray Crystalia, a dutiful girl who stumbles upon the ruins of his hibernation chamber. Believing that Leonis has amnesia, Riselia offers him guidance and enrolls him at the Excalibur Academy. Leonis still intends to take over the world, but he must first familiarize himself with a reality completely different from all he knows. + + [Written by MAL Rewrite] + background: Seiken Gakuin no Makentsukai was released on Blu-ray in two volumes by Nippon Colombia from December 27, + 2023, to February 28, 2024. The anime adapts material from the light novel series beginning from the first chapter. + season: fall + year: 2023 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + - mal_id: 2843 + type: anime + name: Plus Seven + url: https://myanimelist.net/anime/producer/2843/Plus_Seven + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 54852 + url: https://myanimelist.net/anime/54852/Kikansha_no_Mahou_wa_Tokubetsu_desu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1222/145668.jpg + small_image_url: https://myanimelist.net/images/anime/1222/145668t.jpg + large_image_url: https://myanimelist.net/images/anime/1222/145668l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1222/145668.webp + small_image_url: https://myanimelist.net/images/anime/1222/145668t.webp + large_image_url: https://myanimelist.net/images/anime/1222/145668l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rfIbLBCso4s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kikansha no Mahou wa Tokubetsu desu + - type: Synonym + title: Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida + - type: Synonym + title: 귀환자의 마법은 특별해야 합니다 + - type: Japanese + title: 帰還者の魔法は特別です + - type: English + title: A Returner's Magic Should Be Special + title: Kikansha no Mahou wa Tokubetsu desu + title_english: A Returner's Magic Should Be Special + title_japanese: 帰還者の魔法は特別です + title_synonyms: + - Gwihwanja-ui Mabeop-eun Teukbyeol-haeya Hamnida + - 귀환자의 마법은 특별해야 합니다 + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-08T00:00:00+00:00' + to: '2023-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2023 + to: + day: 24 + month: 12 + year: 2023 + string: Oct 8, 2023 to Dec 24, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.05 + scored_by: 84650 + rank: 4854 + popularity: 1570 + members: 176345 + favorites: 500 + synopsis: |- + After a decade spent fighting monsters in the Shadow Labyrinth—a growing dark cloud of magic that threatens to engulf the world and destroy all life—mage Desir Herrman and his five companions finally face their last foe: the dragon of destruction Boromir Napolitan. Although the group of heroes manages to slay this formidable opponent, the tremendous amount of mana stored within the dragon's body is released in an unstoppable explosion that annihilates the rest of the world. + + However, instead of dying, Desir is sent back 10 years into the past with complete memories of events to come. He enrolls at Hebrion Academy, determined to put an end to the classist prejudice plaguing the magical world that will ultimately lead to the demise of humanity. Unfortunately, his struggle begins early on during the entrance exams; although he is ranked first of his group, Desir is assigned to the Beta Class, the default class for commoners. + + Now, Desir's next objective is to rally someone to his cause that he could not save in his previous life: the wind mage Romantica Eru. Then, Desir will have to show his worth to the Alpha Class with his newly formed party if he wants to ultimately save as many lives as possible. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2023 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2740 + type: anime + name: D&C WEBTOON Biz + url: https://myanimelist.net/anime/producer/2740/D_C_WEBTOON_Biz + - mal_id: 2839 + type: anime + name: Kakao piccoma + url: https://myanimelist.net/anime/producer/2839/Kakao_piccoma + licensors: [] + studios: + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 53879 + url: https://myanimelist.net/anime/53879/Kamonohashi_Ron_no_Kindan_Suiri + images: + jpg: + image_url: https://myanimelist.net/images/anime/1799/137123.jpg + small_image_url: https://myanimelist.net/images/anime/1799/137123t.jpg + large_image_url: https://myanimelist.net/images/anime/1799/137123l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1799/137123.webp + small_image_url: https://myanimelist.net/images/anime/1799/137123t.webp + large_image_url: https://myanimelist.net/images/anime/1799/137123l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MtU08sDf4SM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kamonohashi Ron no Kindan Suiri + - type: Synonym + title: 'Ron Kamonohashi: Deranged Detective' + - type: Japanese + title: 鴨乃橋ロンの禁断推理 + - type: English + title: Ron Kamonohashi's Forbidden Deductions + title: Kamonohashi Ron no Kindan Suiri + title_english: Ron Kamonohashi's Forbidden Deductions + title_japanese: 鴨乃橋ロンの禁断推理 + title_synonyms: + - 'Ron Kamonohashi: Deranged Detective' + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2023-10-02T00:00:00+00:00' + to: '2023-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2023 + to: + day: 25 + month: 12 + year: 2023 + string: Oct 2, 2023 to Dec 25, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 59671 + rank: 2195 + popularity: 1647 + members: 166069 + favorites: 1052 + synopsis: |- + Ron Kamonohashi, the best student in the history of the elite Detective Training Academy BLUE, has been living as a recluse since BLUE expelled him five years ago. Moreover, he is forbidden to work as a detective, having barely escaped execution after getting involved in a murder case while he was still attending the school. Ron's situation changes drastically when police detective Totomaru Isshiki, following the advice of a senior colleague, seeks him out for help with a criminal case that has remained unsolved for months. Ron reluctantly agrees to help Totomaru and uses his phenomenal intuition to discover the culprit in less than a day. However, it appears that Ron suffers from a mysterious condition that can cause those around him to lose their lives. To Ron's great surprise, Totomaru manages to save the life of someone whom Ron put in jeopardy. + + As the unlikely duo starts solving crimes one after another, BLUE sends operatives after its former student to find out if he has resumed investigative work. Fighting against murderers, rogue detectives, and the Metropolitan Police Department, Ron and Totomaru must join forces if they want to survive and see justice prevail. + + [Written by MAL Rewrite] + background: Kamonohashi Ron no Kindan Suiri was released on Blu-ray and DVD in three volumes from January 24, 2024, + to March 27, 2024. + season: fall + year: 2023 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 51 + type: anime + name: Diomedéa + url: https://myanimelist.net/anime/producer/51/Diomed%C3%A9a + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 39 + type: anime + name: Detective + url: https://myanimelist.net/anime/genre/39/Detective + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53833 + url: https://myanimelist.net/anime/53833/Watashi_no_Oshi_wa_Akuyaku_Reijou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1531/137711.jpg + small_image_url: https://myanimelist.net/images/anime/1531/137711t.jpg + large_image_url: https://myanimelist.net/images/anime/1531/137711l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1531/137711.webp + small_image_url: https://myanimelist.net/images/anime/1531/137711t.webp + large_image_url: https://myanimelist.net/images/anime/1531/137711l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s6Z8TDNdE0c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi no Oshi wa Akuyaku Reijou. + - type: Synonym + title: I'm in Love with the Villainess + - type: Synonym + title: WataOshi + - type: Japanese + title: 私の推しは悪役令嬢。 + - type: English + title: I'm in Love with the Villainess + title: Watashi no Oshi wa Akuyaku Reijou. + title_english: I'm in Love with the Villainess + title_japanese: 私の推しは悪役令嬢。 + title_synonyms: + - I'm in Love with the Villainess + - WataOshi + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-03T00:00:00+00:00' + to: '2023-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2023 + to: + day: 19 + month: 12 + year: 2023 + string: Oct 3, 2023 to Dec 19, 2023 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 73052 + rank: 2897 + popularity: 1735 + members: 154135 + favorites: 1442 + synopsis: |- + Rei Oohashi is a burned-out office worker by day but otome game heroine Rae Taylor by night. After her long workdays, Rei immerses herself in the world of her favorite dating sim, Revolution, as a student at Bauer Kingdom's prestigious Royal Academy. Instead of focusing on the male love interests, Rei obsesses over the romantic rival: the game's villainess, Claire François. One evening, however, Rei's exhaustion catches up with her and she passes away. + + When Rei opens her eyes again, she finds herself reincarnated as Rae and in the presence of her beloved Claire. Given this miraculous opportunity, she wastes no time declaring her love for the golden-haired villainess and her endearing attempts at bullying. Winning Claire's heart is no easy feat, especially as the game persistently throws the three male leads at Rae—but she has no intention of allowing the dating sim logic to come between her and the one she truly loves. + + [Written by MAL Rewrite] + background: Watashi no Oshi wa Akuyaku Reijou. was released on Blu-ray on February 14, 2024. + season: fall + year: 2023 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1582 + type: anime + name: Ichijinsha + url: https://myanimelist.net/anime/producer/1582/Ichijinsha + licensors: [] + studios: + - mal_id: 1471 + type: anime + name: Platinum Vision + url: https://myanimelist.net/anime/producer/1471/Platinum_Vision + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: [] + - mal_id: 50664 + url: https://myanimelist.net/anime/50664/Saihate_no_Paladin__Tetsusabi_no_Yama_no_Ou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1031/138515.jpg + small_image_url: https://myanimelist.net/images/anime/1031/138515t.jpg + large_image_url: https://myanimelist.net/images/anime/1031/138515l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1031/138515.webp + small_image_url: https://myanimelist.net/images/anime/1031/138515t.webp + large_image_url: https://myanimelist.net/images/anime/1031/138515l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_JWp8QPFymQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Saihate no Paladin: Tetsusabi no Yama no Ou' + - type: Synonym + title: Saihate no Paladin 2nd Season + - type: Japanese + title: 最果てのパラディン 鉄錆の山の王 + - type: English + title: 'The Faraway Paladin: The Lord of the Rust Mountains' + title: 'Saihate no Paladin: Tetsusabi no Yama no Ou' + title_english: 'The Faraway Paladin: The Lord of the Rust Mountains' + title_japanese: 最果てのパラディン 鉄錆の山の王 + title_synonyms: + - Saihate no Paladin 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-07T00:00:00+00:00' + to: '2023-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2023 + to: + day: 23 + month: 12 + year: 2023 + string: Oct 7, 2023 to Dec 23, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 51546 + rank: 2544 + popularity: 1812 + members: 146257 + favorites: 386 + synopsis: |- + Two years had passed since he left the City of the Dead, and Will was seventeen by count. As a lord, he developed "Torch Port, a river port of light", and gradually the people's activities and smiles returned to "Beast Woods". However, out-of-season flowers bloom profusely, and an abnormality is discovered in the forest. Will and his friends head into the depths of the forest to solve this problem, and receive an ominous prophecy from the king of the forest. + + "In the Iron Rust Mountains, the 'Fire of Black Calamity' will occur. The fire will spread, or it will burn everything in this land." + + What is the calamity that sleeps in the ruined dwarven city of Tetsusabi Sanmyaku...!? + + (Source: Crunchyroll) + background: '' + season: fall + year: 2023 + broadcast: + day: Saturdays + time: '22:00' + timezone: Asia/Tokyo + string: Saturdays at 22:00 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 2004 + type: anime + name: Sunrise Beyond + url: https://myanimelist.net/anime/producer/2004/Sunrise_Beyond + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 54743 + url: https://myanimelist.net/anime/54743/Dead_Mount_Death_Play_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1005/139809.jpg + small_image_url: https://myanimelist.net/images/anime/1005/139809t.jpg + large_image_url: https://myanimelist.net/images/anime/1005/139809l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1005/139809.webp + small_image_url: https://myanimelist.net/images/anime/1005/139809t.webp + large_image_url: https://myanimelist.net/images/anime/1005/139809l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/e3-0Fe5tdCM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dead Mount Death Play Part 2 + - type: Synonym + title: Dead Mount Death Play 2nd Season + - type: Japanese + title: デッドマウント・デスプレイ + title: Dead Mount Death Play Part 2 + title_english: null + title_japanese: デッドマウント・デスプレイ + title_synonyms: + - Dead Mount Death Play 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-10T00:00:00+00:00' + to: '2023-12-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 10 + year: 2023 + to: + day: 26 + month: 12 + year: 2023 + string: Oct 10, 2023 to Dec 26, 2023 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.44 + scored_by: 64076 + rank: 2513 + popularity: 1818 + members: 145841 + favorites: 378 + synopsis: |- + Polka Shinoyama's life takes a dramatic turn after being forced to use his magical powers in public. His divination cabinet attracts the attention of several people hellbent on exposing his true nature as the reincarnation of Corpse God, a necromancer from the Other World. To make matters worse, Polka and his friends are framed for the murder of one of their protector's employees. + + When group member Takumi Kuruya is abducted by his former boss, Kuon Higuro, Polka sends his most trustworthy ally Misaki Sakimiya to their friend's rescue. It turns out that some of the recent incidents the group finds themselves caught up in are interconnected, and Polka needs to be twice as careful if he wants to make it out alive from this maze of pitfalls. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2023 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1289 + type: anime + name: F.M.F + url: https://myanimelist.net/anime/producer/1289/FMF + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 2670 + type: anime + name: Geek Pictures + url: https://myanimelist.net/anime/producer/2670/Geek_Pictures + licensors: [] + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52934 + url: https://myanimelist.net/anime/52934/Konyaku_Haki_sareta_Reijou_wo_Hirotta_Ore_ga_Ikenai_Koto_wo_Oshiekomu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1720/139131.jpg + small_image_url: https://myanimelist.net/images/anime/1720/139131t.jpg + large_image_url: https://myanimelist.net/images/anime/1720/139131l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1720/139131.webp + small_image_url: https://myanimelist.net/images/anime/1720/139131t.webp + large_image_url: https://myanimelist.net/images/anime/1720/139131l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ViXrE3SbST4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu + - type: Synonym + title: Ikenaikyo + - type: Japanese + title: 婚約破棄された令嬢を拾った俺が、イケナイことを教え込む + - type: English + title: I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness + title: Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu + title_english: I'm Giving the Disgraced Noble Lady I Rescued a Crash Course in Naughtiness + title_japanese: 婚約破棄された令嬢を拾った俺が、イケナイことを教え込む + title_synonyms: + - Ikenaikyo + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2023-10-04T00:00:00+00:00' + to: '2023-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2023 + to: + day: 20 + month: 12 + year: 2023 + string: Oct 4, 2023 to Dec 20, 2023 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 54566 + rank: 4279 + popularity: 1883 + members: 139277 + favorites: 550 + synopsis: |- + On the run for crimes she did not commit, disgraced noblewoman Charlotte Evans collapses deep in the forest. A sorcerer named Allen Crawford—also known as the "Demon Lord"—finds and defends Charlotte from her pursuers. Since she has no place left to go, Allen takes pity on Charlotte and offers to hire her as a live-in maid. + + Allen quickly realizes that Charlotte has faced ridicule and hatred all her life from her so-called noble family, and she has never known what true freedom feels like. He decides to teach her about all the naughty things the world has to offer and enables her to surrender to her whims and impulses. Charlotte's sweet innocence proves an obstacle to his plans, but Allen is determined to show her the kind of life her family has denied her. + + Although he despises being social, Allen begins to open himself up to Charlotte. The longer they live together, the more they discover their similarities. Though most people have abandoned them, the duo promises to stay together, oblivious to their budding feelings for each other. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2023 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1720 + type: anime + name: Aoni Production + url: https://myanimelist.net/anime/producer/1720/Aoni_Production + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2730 + type: anime + name: Shufu to Seikatsusha + url: https://myanimelist.net/anime/producer/2730/Shufu_to_Seikatsusha + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + - mal_id: 1796 + type: anime + name: Digital Network Animation + url: https://myanimelist.net/anime/producer/1796/Digital_Network_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/57-2024-winter.yaml b/test/fixtures/jikan/season_matrix/57-2024-winter.yaml new file mode 100644 index 0000000..3cf9b74 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/57-2024-winter.yaml @@ -0,0 +1,3445 @@ +metadata: + captured_at: '2026-05-11T11:35:00Z' + label: 2024-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2024/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:34:59 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:eb1a0aa926b6cf346bfb7c6960cc9c42646b497b + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 303 + per_page: 25 + data: + - mal_id: 52299 + url: https://myanimelist.net/anime/52299/Ore_dake_Level_Up_na_Ken + images: + jpg: + image_url: https://myanimelist.net/images/anime/1801/142390.jpg + small_image_url: https://myanimelist.net/images/anime/1801/142390t.jpg + large_image_url: https://myanimelist.net/images/anime/1801/142390l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1801/142390.webp + small_image_url: https://myanimelist.net/images/anime/1801/142390t.webp + large_image_url: https://myanimelist.net/images/anime/1801/142390l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1kQwjK4rGYg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore dake Level Up na Ken + - type: Synonym + title: Na Honjaman Level Up + - type: Synonym + title: 나 혼자만 레벨업 + - type: Synonym + title: I Level Up Alone + - type: Japanese + title: 俺だけレベルアップな件 + - type: English + title: Solo Leveling + title: Ore dake Level Up na Ken + title_english: Solo Leveling + title_japanese: 俺だけレベルアップな件 + title_synonyms: + - Na Honjaman Level Up + - 나 혼자만 레벨업 + - I Level Up Alone + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-07T00:00:00+00:00' + to: '2024-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2024 + to: + day: 31 + month: 3 + year: 2024 + string: Jan 7, 2024 to Mar 31, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.16 + scored_by: 707566 + rank: 510 + popularity: 152 + members: 1139023 + favorites: 20013 + synopsis: |- + Humanity was caught at a precipice a decade ago when the first gates—portals linked with other dimensions that harbor monsters immune to conventional weaponry—emerged around the world. Alongside the appearance of the gates, various humans were transformed into hunters and bestowed superhuman abilities. Responsible for entering the gates and clearing the dungeons within, many hunters chose to form guilds to secure their livelihoods. + + Sung Jin-Woo is an E-rank hunter dubbed as the weakest hunter of all mankind. While exploring a supposedly safe dungeon, he and his party encounter an unusual tunnel leading to a deeper area. Enticed by the prospect of treasure, the group presses forward, only to be confronted with horrors beyond their imagination. Miraculously, Jin-Woo survives the incident and soon finds that he now has access to an interface visible only to him. This mysterious system promises him the power he has long dreamed of—but everything comes at a price. + + [Written by MAL Rewrite] + background: Ore dake Level Up na Ken was released on Blu-ray & DVD in four volumes from March 27, 2024, to June 26, + 2024. + season: winter + year: 2024 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2837 + type: anime + name: Netmarble + url: https://myanimelist.net/anime/producer/2837/Netmarble + - mal_id: 2839 + type: anime + name: Kakao piccoma + url: https://myanimelist.net/anime/producer/2839/Kakao_piccoma + - mal_id: 2872 + type: anime + name: D&C Media + url: https://myanimelist.net/anime/producer/2872/D_C_Media + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 52701 + url: https://myanimelist.net/anime/52701/Dungeon_Meshi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1711/142478.jpg + small_image_url: https://myanimelist.net/images/anime/1711/142478t.jpg + large_image_url: https://myanimelist.net/images/anime/1711/142478l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1711/142478.webp + small_image_url: https://myanimelist.net/images/anime/1711/142478t.webp + large_image_url: https://myanimelist.net/images/anime/1711/142478l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MUJFsL_rE6E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dungeon Meshi + - type: Synonym + title: Dungeon Food + - type: Synonym + title: Dungeon Dining + - type: Japanese + title: ダンジョン飯 + - type: English + title: Delicious in Dungeon + title: Dungeon Meshi + title_english: Delicious in Dungeon + title_japanese: ダンジョン飯 + title_synonyms: + - Dungeon Food + - Dungeon Dining + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2024-01-04T00:00:00+00:00' + to: '2024-06-13T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2024 + to: + day: 13 + month: 6 + year: 2024 + string: Jan 4, 2024 to Jun 13, 2024 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.59 + scored_by: 300766 + rank: 116 + popularity: 432 + members: 583742 + favorites: 12682 + synopsis: |- + Adventuring knight Laios Touden leads a small party through a seemingly endless dungeon, a subterranean maze full of dangerous monsters and precarious traps. Through the use of advanced magic, an explorer can sometimes be resurrected, allowing them to learn from past mistakes and give traversing the dungeon another go. However, when a powerful dragon eats Falin, Laios' spellcasting sister, she sends her brother and his companions back to the beginning to save them from permanent ends. + + Though strapped for cash and equipment, Laios resolves to fight his way through the dungeon and rescue Falin before she can be digested by the dragon. Despite some of Laios' allies abandoning him, two remain by his side: elven mage Marcille Donato and halfling locksmith Chilchuck Tims. Due to their lack of funds, the party faces the daunting prospect of starving before being able to complete their quest. However, they find salvation in Senshi, a dwarven warrior with a penchant for cooking and safely eating defeated monsters. + + With Senshi's culinary expertise, Laios and his companions struggle through the dungeon while learning about gourmet dining—and each other—along the way. + + [Written by MAL Rewrite] + background: Dungeon Meshi was released on Blu-ray and DVD in four volumes from April 24, 2024, to July 24, 2024. + season: winter + year: 2024 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 803 + type: anime + name: Trigger + url: https://myanimelist.net/anime/producer/803/Trigger + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: [] + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 51180 + url: https://myanimelist.net/anime/51180/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1332/139318.jpg + small_image_url: https://myanimelist.net/images/anime/1332/139318t.jpg + large_image_url: https://myanimelist.net/images/anime/1332/139318l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1332/139318.webp + small_image_url: https://myanimelist.net/images/anime/1332/139318t.webp + large_image_url: https://myanimelist.net/images/anime/1332/139318l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0yOULRwyp2o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season + - type: Synonym + title: Welcome to the Classroom of the Elite + - type: Synonym + title: You-jitsu 3rd Season + - type: Synonym + title: You-zitsu 3rd Season + - type: Japanese + title: ようこそ実力至上主義の教室へ 3rd Season + - type: English + title: Classroom of the Elite III + title: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season + title_english: Classroom of the Elite III + title_japanese: ようこそ実力至上主義の教室へ 3rd Season + title_synonyms: + - Welcome to the Classroom of the Elite + - You-jitsu 3rd Season + - You-zitsu 3rd Season + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-01-03T00:00:00+00:00' + to: '2024-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2024 + to: + day: 27 + month: 3 + year: 2024 + string: Jan 3, 2024 to Mar 27, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.93 + scored_by: 276719 + rank: 885 + popularity: 474 + members: 534289 + favorites: 4528 + synopsis: Third season of Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e. + background: Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 3rd Season was released on Blu-ray & DVD in four volumes + from April 24, 2024, to July 24, 2024. + season: winter + year: 2024 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 55813 + url: https://myanimelist.net/anime/55813/Mashle__Shinkakusha_Kouho_Senbatsu_Shiken-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1912/140804.jpg + small_image_url: https://myanimelist.net/images/anime/1912/140804t.jpg + large_image_url: https://myanimelist.net/images/anime/1912/140804l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1912/140804.webp + small_image_url: https://myanimelist.net/images/anime/1912/140804t.webp + large_image_url: https://myanimelist.net/images/anime/1912/140804l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kKPEaart14E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mashle: Shinkakusha Kouho Senbatsu Shiken-hen' + - type: Synonym + title: Mashle 2nd Season + - type: Japanese + title: マッシュル-MASHLE- 神覚者候補選抜試験編 + - type: English + title: 'Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc' + title: 'Mashle: Shinkakusha Kouho Senbatsu Shiken-hen' + title_english: 'Mashle: Magic and Muscles - The Divine Visionary Candidate Exam Arc' + title_japanese: マッシュル-MASHLE- 神覚者候補選抜試験編 + title_synonyms: + - Mashle 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-06T00:00:00+00:00' + to: '2024-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2024 + to: + day: 30 + month: 3 + year: 2024 + string: Jan 6, 2024 to Mar 30, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.78 + scored_by: 279379 + rank: 1243 + popularity: 504 + members: 511412 + favorites: 2100 + synopsis: |- + After Mash Burnedead's clash with Magia Lupus, the secret about his powers is now out in the open. The short-lived celebration ends when the Bureau of Magic summons Mash before an audience of Divine Visionaries, who collectively decree Mash should reap the consequences and die. However, an evil shadow organization called Innocent Zero hijacks the inquiry to demand that Mash be kept alive. + + Mash proves that he is capable of dealing with Innocent Zero, but the Divine Visionaries' verdict remains unchanged. Luckily, Mash finds unexpected allies in Divine Visionary Rayne Ames and Headmaster Wahlberg Baigan, and they successfully defer his execution until Innocent Zero is defeated. Mash is now allowed to live under one condition: he must be selected as the Divine Visionary candidate by the year's end. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2101 + type: anime + name: ADK + url: https://myanimelist.net/anime/producer/2101/ADK + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 55866 + url: https://myanimelist.net/anime/55866/Yubisaki_to_Renren + images: + jpg: + image_url: https://myanimelist.net/images/anime/1478/140828.jpg + small_image_url: https://myanimelist.net/images/anime/1478/140828t.jpg + large_image_url: https://myanimelist.net/images/anime/1478/140828l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1478/140828.webp + small_image_url: https://myanimelist.net/images/anime/1478/140828t.webp + large_image_url: https://myanimelist.net/images/anime/1478/140828l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XDGIzU0D_Pg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yubisaki to Renren + - type: Japanese + title: ゆびさきと恋々 + - type: English + title: A Sign of Affection + title: Yubisaki to Renren + title_english: A Sign of Affection + title_japanese: ゆびさきと恋々 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-06T00:00:00+00:00' + to: '2024-03-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2024 + to: + day: 23 + month: 3 + year: 2024 + string: Jan 6, 2024 to Mar 23, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.2 + scored_by: 161204 + rank: 456 + popularity: 799 + members: 346987 + favorites: 4630 + synopsis: |- + For hearing-impaired university student Yuki Itose, silence has been a natural part of life since birth. Her world is small and isolated; she commutes to campus, interacts with her best friend Rin Fujishiro, and communicates through writing and text messages—a lifestyle that offers little to no change. One day, during her commute, Yuki meets fellow student Itsuomi Nagi, a multilingual travel enthusiast and friend of Rin. When Itsuomi learns of Yuki's condition, he takes it in stride, moving Yuki's heart. From this one simple gesture, Yuki and Itsuomi's lives start changing day by day as they let each other into their own worlds. + + [Written by MAL Rewrite] + background: Yubisaki to Renren was released on Blu-ray in four volumes from April 26, 2024, to July 26, 2024. + season: winter + year: 2024 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 2045 + type: anime + name: Myrica Music + url: https://myanimelist.net/anime/producer/2045/Myrica_Music + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 49889 + url: https://myanimelist.net/anime/49889/Tsuki_ga_Michibiku_Isekai_Douchuu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1794/142621.jpg + small_image_url: https://myanimelist.net/images/anime/1794/142621t.jpg + large_image_url: https://myanimelist.net/images/anime/1794/142621l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1794/142621.webp + small_image_url: https://myanimelist.net/images/anime/1794/142621t.webp + large_image_url: https://myanimelist.net/images/anime/1794/142621l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0DHG0By_iaY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsuki ga Michibiku Isekai Douchuu 2nd Season + - type: Japanese + title: 月が導く異世界道中 第二幕 + - type: English + title: Tsukimichi -Moonlit Fantasy- Season 2 + title: Tsuki ga Michibiku Isekai Douchuu 2nd Season + title_english: Tsukimichi -Moonlit Fantasy- Season 2 + title_japanese: 月が導く異世界道中 第二幕 + title_synonyms: [] + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-01-08T00:00:00+00:00' + to: '2024-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2024 + to: + day: 24 + month: 6 + year: 2024 + string: Jan 8, 2024 to Jun 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.85 + scored_by: 159213 + rank: 1066 + popularity: 843 + members: 333910 + favorites: 2386 + synopsis: |- + Despite a rough start, Makoto Misumi's life in another world takes a positive turn when he meets more demihumans who recognize his presence. Now as the leader of a fast-growing demihuman community, Makoto wishes to make human society more accepting of them and thus builds a business showcasing the demihumans' abilities. To extend his reach further, Makoto enrolls at the Rotsgard Academy to learn magic and expand his business venture there. + + Meanwhile, the goddess who summoned and forsaken Makoto had brought two other people to her world shortly after sending him away, making them heroes of their respective nations. Given enough time, Makoto's path will intertwine with both of these heroes, which may cause the world to take a drastic direction. + + [Written by MAL Rewrite] + background: Tsuki ga Michibiku Isekai Douchuu 2nd Season was released on Blu-ray in four volumes from April 24, 2024, + to August 28, 2024. + season: winter + year: 2024 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 49613 + url: https://myanimelist.net/anime/49613/Chiyu_Mahou_no_Machigatta_Tsukaikata + images: + jpg: + image_url: https://myanimelist.net/images/anime/1733/140802.jpg + small_image_url: https://myanimelist.net/images/anime/1733/140802t.jpg + large_image_url: https://myanimelist.net/images/anime/1733/140802l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1733/140802.webp + small_image_url: https://myanimelist.net/images/anime/1733/140802t.webp + large_image_url: https://myanimelist.net/images/anime/1733/140802l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WMBLLOa3Ldw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chiyu Mahou no Machigatta Tsukaikata + - type: Japanese + title: 治癒魔法の間違った使い方 + - type: English + title: The Wrong Way to Use Healing Magic + title: Chiyu Mahou no Machigatta Tsukaikata + title_english: The Wrong Way to Use Healing Magic + title_japanese: 治癒魔法の間違った使い方 + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-01-06T00:00:00+00:00' + to: '2024-03-30T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2024 + to: + day: 30 + month: 3 + year: 2024 + string: Jan 6, 2024 to Mar 30, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.53 + scored_by: 175875 + rank: 2095 + popularity: 859 + members: 327227 + favorites: 1491 + synopsis: |- + Ken Usato, an ordinary high schooler, wishes for something fantastical to occur in his unremarkable life. Such an opportunity arrives when he is transported to another world alongside Kazuki Ryuusen and Suzune Inukami, two prodigious members of his school's student council. Arriving in Llinger Kingdom, the three are deemed to be the heroes tasked with stopping the impending invasion by the Demon Lord's army. However, this is a misunderstanding—Usato was summoned by accident and, unlike his two friends, is not one of the heroes. + + Despite this disheartening revelation, Usato learns that he has an aptitude for the extremely rare healing magic. This catches the attention of Rose, the intimidating captain of the kingdom's Rescue Team, who forcibly takes custody of Usato to mold him into a full-fledged healer. As he undergoes grueling training under Rose's supervision, Usato resolves to become capable enough to protect his friends from the dangers of this world. + + [Written by MAL Rewrite] + background: Chiyu Mahou no Machigatta Tsukaikata was released on Blu-ray on April 24, 2024. + season: winter + year: 2024 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2869 + type: anime + name: Capibara + url: https://myanimelist.net/anime/producer/2869/Capibara + licensors: [] + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + - mal_id: 2760 + type: anime + name: Studio Add + url: https://myanimelist.net/anime/producer/2760/Studio_Add + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 55690 + url: https://myanimelist.net/anime/55690/Boku_no_Kokoro_no_Yabai_Yatsu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1643/138581.jpg + small_image_url: https://myanimelist.net/images/anime/1643/138581t.jpg + large_image_url: https://myanimelist.net/images/anime/1643/138581l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1643/138581.webp + small_image_url: https://myanimelist.net/images/anime/1643/138581t.webp + large_image_url: https://myanimelist.net/images/anime/1643/138581l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/DAbLNzr4cC8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Kokoro no Yabai Yatsu 2nd Season + - type: Synonym + title: Bokuyaba + - type: Japanese + title: 僕の心のヤバイやつ 第2期 + - type: English + title: The Dangers in My Heart Season 2 + title: Boku no Kokoro no Yabai Yatsu 2nd Season + title_english: The Dangers in My Heart Season 2 + title_japanese: 僕の心のヤバイやつ 第2期 + title_synonyms: + - Bokuyaba + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-01-07T00:00:00+00:00' + to: '2024-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2024 + to: + day: 31 + month: 3 + year: 2024 + string: Jan 7, 2024 to Mar 31, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.69 + scored_by: 177678 + rank: 70 + popularity: 907 + members: 311077 + favorites: 6151 + synopsis: |- + After an eventful winter break, Kyoutarou Ichikawa and Anna Yamada reunite with a stronger bond. They continue to grow in their own ways, with Yamada taking on more challenging photoshoots and Ichikawa maturing both physically and emotionally as he tackles his affections for Yamada. However, spending time together outside of school allows for their relationship to deepen, and it becomes increasingly difficult to deny their budding romantic feelings. + + Grappling with these unexpected and new emotions, Ichikawa and Yamada realize that, with the passage of time, their relationship is bound to change—and they must ultimately decide whether they wish to remain close friends or finally become a couple. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2234 + type: anime + name: TV Asahi Music + url: https://myanimelist.net/anime/producer/2234/TV_Asahi_Music + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 247 + type: anime + name: Shin-Ei Animation + url: https://myanimelist.net/anime/producer/247/Shin-Ei_Animation + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50392 + url: https://myanimelist.net/anime/50392/Mato_Seihei_no_Slave + images: + jpg: + image_url: https://myanimelist.net/images/anime/1114/140805.jpg + small_image_url: https://myanimelist.net/images/anime/1114/140805t.jpg + large_image_url: https://myanimelist.net/images/anime/1114/140805l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1114/140805.webp + small_image_url: https://myanimelist.net/images/anime/1114/140805t.webp + large_image_url: https://myanimelist.net/images/anime/1114/140805l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VRtgogamuyI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mato Seihei no Slave + - type: Synonym + title: Slave of the Magic Capital's Elite Troops + - type: Synonym + title: Mabotai + - type: Japanese + title: 魔都精兵のスレイブ + - type: English + title: Chained Soldier + title: Mato Seihei no Slave + title_english: Chained Soldier + title_japanese: 魔都精兵のスレイブ + title_synonyms: + - Slave of the Magic Capital's Elite Troops + - Mabotai + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-04T00:00:00+00:00' + to: '2024-03-21T00:00:00+00:00' + prop: + from: + day: 4 + month: 1 + year: 2024 + to: + day: 21 + month: 3 + year: 2024 + string: Jan 4, 2024 to Mar 21, 2024 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.88 + scored_by: 110600 + rank: 5806 + popularity: 1033 + members: 272783 + favorites: 1893 + synopsis: |- + As his school days draw to an end, Yuuki Wakura worries about his future. While lamenting the prospect of living an ordinary life, he is suddenly drawn into the world of Mato: an alternate dimension filled with dangerous monsters called Shuuki. Over the years since the existence of Mato was first confirmed, incidents of people accidentally wandering into the other world have become commonplace. To combat the threat of the Shuuki and rescue victims like Yuuki, the all-female Demon Defense Force was established. Its members have been blessed with the power of "Peaches"—Mato fruits that grant supernatural abilities only to women. + + Though Yuuki's situation is dire, he is saved in the nick of time by Kyouka Uzen, the chief of the Demon Defense Force's seventh unit. Despite Kyouka's impeccable skills in battle, she has long been held back by her Peach-granted ability, Slave. Slave allows Kyouka to put a living being under her control and draw out its strength, but the Shuuki that she had enslaved until now had all proven to be exceedingly weak. + + When Yuuki and Kyouka become surrounded by a horde of Shuuki, Kyouka resorts to something she has never tried before: using her ability on a man. To her surprise, Yuuki's slave form is much more powerful than she could have imagined. Believing the young man to be the key to unlocking her true potential, Kyouka invites Yuuki to join the Demon Defense Force—but not as a regular member. + + [Written by MAL Rewrite] + background: Mato Seihei no Slave was released on Blu-ray in three volumes from April 17, 2024, to June 19, 2024. + season: winter + year: 2024 + broadcast: + day: Thursdays + time: '23:00' + timezone: Asia/Tokyo + string: Thursdays at 23:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2634 + type: anime + name: Yostar + url: https://myanimelist.net/anime/producer/2634/Yostar + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 56352 + url: https://myanimelist.net/anime/56352/Loop_7-kaime_no_Akuyaku_Reijou_wa_Moto_Tekikoku_de_Jiyuu_Kimama_na_Hanayome_Seikatsu_wo_Mankitsu_suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1533/140617.jpg + small_image_url: https://myanimelist.net/images/anime/1533/140617t.jpg + large_image_url: https://myanimelist.net/images/anime/1533/140617l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1533/140617.webp + small_image_url: https://myanimelist.net/images/anime/1533/140617t.webp + large_image_url: https://myanimelist.net/images/anime/1533/140617l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Cw0J_9_bwYc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru + - type: Synonym + title: The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop! + - type: Synonym + title: The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country + - type: Japanese + title: ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する + - type: English + title: '7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!' + title: Loop 7-kaime no Akuyaku Reijou wa, Moto Tekikoku de Jiyuu Kimama na Hanayome Seikatsu wo Mankitsu suru + title_english: '7th Time Loop: The Villainess Enjoys a Carefree Life Married to Her Worst Enemy!' + title_japanese: ループ7回目の悪役令嬢は、元敵国で自由気ままな花嫁生活を満喫する + title_synonyms: + - The Villainess Wants to Enjoy a Carefree Married Life in a Former Enemy Country in Her Seventh Loop! + - The Villainess of 7th Time Loop Enjoys Free-Spirited Bride Life in the Former Hostile Country + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-07T00:00:00+00:00' + to: '2024-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2024 + to: + day: 24 + month: 3 + year: 2024 + string: Jan 7, 2024 to Mar 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.54 + scored_by: 121835 + rank: 2066 + popularity: 1198 + members: 236403 + favorites: 1958 + synopsis: |- + Rishe Irmgard Weitzner finds herself in a familiar situation: her fiancé is publicly breaking off their engagement, and her ducal family is about to disown her in shame. However, Rishe is not distraught; she has already had six chances to rebuild her life and chase a different passion each time. But she would always get swept up in a war and die, so now she wishes for her seventh reincarnation to be easygoing and uneventful. + + What Rishe does not take into account is the presence of Arnold Hein, the crown prince of the Galkhein Kingdom. He is destined to usurp the throne and become a tyrant who starts a large-scale invasion of neighboring countries. To make their encounter worse, Arnold is the one who killed Rishe in her previous life. That is why it is all the more shocking when he proposes to Rishe on the spot. In pursuit of her desired life, Rishe must consider accepting Arnold's proposal and discover the reasons behind his brutal actions to stop the war from ever happening. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 1997 + type: anime + name: Studio KAI + url: https://myanimelist.net/anime/producer/1997/Studio_KAI + - mal_id: 2097 + type: anime + name: HORNETS + url: https://myanimelist.net/anime/producer/2097/HORNETS + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: [] + - mal_id: 52742 + url: https://myanimelist.net/anime/52742/Haikyuu_Movie__Gomisuteba_no_Kessen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1665/140360.jpg + small_image_url: https://myanimelist.net/images/anime/1665/140360t.jpg + large_image_url: https://myanimelist.net/images/anime/1665/140360l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1665/140360.webp + small_image_url: https://myanimelist.net/images/anime/1665/140360t.webp + large_image_url: https://myanimelist.net/images/anime/1665/140360l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MqVA0dl36bc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Haikyuu!! Movie: Gomisuteba no Kessen' + - type: Synonym + title: Haikyu!! Final Movie + - type: Japanese + title: 劇場版ハイキュー!! ゴミ捨て場の決戦 + - type: English + title: 'Haikyu!! Movie: The Dumpster Battle' + title: 'Haikyuu!! Movie: Gomisuteba no Kessen' + title_english: 'Haikyu!! Movie: The Dumpster Battle' + title_japanese: 劇場版ハイキュー!! ゴミ捨て場の決戦 + title_synonyms: + - Haikyu!! Final Movie + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2024-02-16T00:00:00+00:00' + to: null + prop: + from: + day: 16 + month: 2 + year: 2024 + to: + day: null + month: null + year: null + string: Feb 16, 2024 + duration: 1 hr 24 min + rating: PG-13 - Teens 13 or older + score: 8.62 + scored_by: 108386 + rank: 99 + popularity: 1239 + members: 228139 + favorites: 1745 + synopsis: |- + Kenma Kozume has never considered volleyball fun or thrilling: it is merely something he is good at. But now Nekoma High School's volleyball team has qualified for the Spring Nationals and prepares to battle their long-standing rivals—Karasuno. Now, Kenma has to analyze the most confounding and resilient team and lead Nekoma to victory against them. Moreover, he will play against his friend Shouyou Hinata, Karasuno's short but incredibly proficient middle blocker. + + Karasuno has never been able to beat Nekoma in practice matches. Even so, despite his usual indifference, Kenma feels a tinge of excitement at the prospect of facing Karasuno in a high-stakes official game with no do-overs. To advance to the semifinals and ultimately restore their team's former glory, Karasuno must find a way to overcome Kenma's brilliant strategy and defeat Nekoma in their own territory. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 51648 + url: https://myanimelist.net/anime/51648/Nozomanu_Fushi_no_Boukensha + images: + jpg: + image_url: https://myanimelist.net/images/anime/1008/140287.jpg + small_image_url: https://myanimelist.net/images/anime/1008/140287t.jpg + large_image_url: https://myanimelist.net/images/anime/1008/140287l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1008/140287.webp + small_image_url: https://myanimelist.net/images/anime/1008/140287t.webp + large_image_url: https://myanimelist.net/images/anime/1008/140287l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XEaW9p7LXvc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nozomanu Fushi no Boukensha + - type: Japanese + title: 望まぬ不死の冒険者 + - type: English + title: The Unwanted Undead Adventurer + title: Nozomanu Fushi no Boukensha + title_english: The Unwanted Undead Adventurer + title_japanese: 望まぬ不死の冒険者 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-08T00:00:00+00:00' + to: '2024-03-25T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2024 + to: + day: 25 + month: 3 + year: 2024 + string: Jan 8, 2024 to Mar 25, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.44 + scored_by: 119637 + rank: 2538 + popularity: 1241 + members: 227040 + favorites: 949 + synopsis: |- + While exploring a labyrinth, Rentt Faina, an adventurer with lots of experience but little to show for it, is killed by a dragon upon discovering its lair. Shockingly, he wakes up to find himself turned into a skeleton, the lowest class of undead monsters. As Rentt fights against the other monsters of the labyrinth, he discovers that slaying them gains him experience towards higher stages of undead evolution—even ones with flesh! With this revelation in hand, Rentt obtains a new objective in his undeath: keep evolving in the hope of eventually becoming a vampire, the highest form of undead that is nearly indistinguishable from human beings. + + Despite being forced to hide his past identity and monstrous nature under an unremovable mask, Rentt manages to return to a semblance of his former life. Granted shelter by Lorraine Vivier, an elite researcher and retired adventurer, Rentt assumes her surname and starts over from scratch as a rookie. Determined to pursue his childhood dream and become a mithril-class adventurer, Rentt must be cautious not to disclose his new bodily circumstances, lest the adventurers’ guild seek to exterminate the monster he has become. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Mondays + time: '21:00' + timezone: Asia/Tokyo + string: Mondays at 21:00 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2868 + type: anime + name: Natsume Atari + url: https://myanimelist.net/anime/producer/2868/Natsume_Atari + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 957 + type: anime + name: Connect + url: https://myanimelist.net/anime/producer/957/Connect + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 53421 + url: https://myanimelist.net/anime/53421/Dosanko_Gal_wa_Namara_Menkoi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1937/136906.jpg + small_image_url: https://myanimelist.net/images/anime/1937/136906t.jpg + large_image_url: https://myanimelist.net/images/anime/1937/136906l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1937/136906.webp + small_image_url: https://myanimelist.net/images/anime/1937/136906t.webp + large_image_url: https://myanimelist.net/images/anime/1937/136906l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Slv7WZ_4vS8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dosanko Gal wa Namara Menkoi + - type: Synonym + title: Dosanko Gyaru Is Mega Cute + - type: Japanese + title: 道産子ギャルはなまらめんこい + - type: English + title: Hokkaido Gals Are Super Adorable! + title: Dosanko Gal wa Namara Menkoi + title_english: Hokkaido Gals Are Super Adorable! + title_japanese: 道産子ギャルはなまらめんこい + title_synonyms: + - Dosanko Gyaru Is Mega Cute + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-09T00:00:00+00:00' + to: '2024-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2024 + to: + day: 26 + month: 3 + year: 2024 + string: Jan 9, 2024 to Mar 26, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.05 + scored_by: 102700 + rank: 4841 + popularity: 1253 + members: 224904 + favorites: 1139 + synopsis: |- + Having just moved from Tokyo to Hokkaido, high school student Tsubasa Shiki decides to explore the picturesque winter landscape he could never experience in the nation's capital. It only takes a moment for Tsubasa's idealized view of Japan's northernmost prefecture to crumble, as the sheer cold and frigid air quickly overwhelm him. While trying to find the way to his new home, Tsubasa runs into Minami Fuyuki—a talkative and friendly Hokkaido native who, despite the cold, is wearing a short skirt. The girl wastes no time in striking up a conversation, and Tsubasa comes to realize that the winter weather is not all that is too much for him to handle. + + The next day, Tsubasa is shocked to learn that not only is Fuyuki in his class, but her seat is also right next to his. Swept along by Fuyuki's persistent advances, the young man soon becomes captivated by both life in Hokkaido and the beautiful girl determined to get closer to him. As he deepens his relationship with Fuyuki and meets other fashionable girls from his school, Tsubasa finds out that Hokkaido gals truly are adorable. + + [Written by MAL Rewrite] + background: Dosanko Gal wa Namara Menkoi was released on Blu-ray in three volumes from April 3, 2024, to June 5, 2024. + season: winter + year: 2024 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2874 + type: anime + name: Television Hokkaido Broadcasting + url: https://myanimelist.net/anime/producer/2874/Television_Hokkaido_Broadcasting + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 1547 + type: anime + name: Blade + url: https://myanimelist.net/anime/producer/1547/Blade + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54837 + url: https://myanimelist.net/anime/54837/Akuyaku_Reijou_Level_99__Watashi_wa_Ura-Boss_desu_ga_Maou_dewa_Arimasen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1150/140028.jpg + small_image_url: https://myanimelist.net/images/anime/1150/140028t.jpg + large_image_url: https://myanimelist.net/images/anime/1150/140028l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1150/140028.webp + small_image_url: https://myanimelist.net/images/anime/1150/140028t.webp + large_image_url: https://myanimelist.net/images/anime/1150/140028l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ODtKada4LM0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen' + - type: Japanese + title: 悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~ + - type: English + title: 'Villainess Level 99: I May Be the Hidden Boss but I''m Not the Demon Lord' + title: 'Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen' + title_english: 'Villainess Level 99: I May Be the Hidden Boss but I''m Not the Demon Lord' + title_japanese: 悪役令嬢レベル99 ~私は裏ボスですが魔王ではありません~ + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-09T00:00:00+00:00' + to: '2024-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2024 + to: + day: 26 + month: 3 + year: 2024 + string: Jan 9, 2024 to Mar 26, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 110243 + rank: 4250 + popularity: 1341 + members: 209091 + favorites: 966 + synopsis: |- + The beginning of Light Magic and the Hero, an otome RPG, unfolds fairly normally: the heroine, Alicia Ehnleit, meets her three love interests one after another and then inevitably comes face-to-face with the villainess. Yumiella Dolkness may be of noble descent, but her dark hair and rare dark-type magic—both associated with the Demon Lord—spark fear in anyone who sees her. When she is five years old, Yumiella regains memories of her previous life in modern Japan, also realizing that her fate is to become the hidden boss that appears after Alicia and her suitors defeat the Demon Lord. + + Yumiella refuses to live as the game dictates and, as she prefers the game's fantasy elements over its romance, she decides to cultivate her magical skills and level up in secret. However, everything falls apart on the day of the Royal Academy's entrance ceremony. Yumiella's powers are measured at level 99—something thought impossible even for the royal knights, let alone a 15-year-old girl. With the royal family requesting her help, and everyone else insisting that she prove her strength, Yumiella realizes that her dream of a quiet life is no longer an option. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 755 + type: anime + name: Jumondou + url: https://myanimelist.net/anime/producer/755/Jumondou + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: [] + - mal_id: 54722 + url: https://myanimelist.net/anime/54722/Mahou_Shoujo_ni_Akogarete + images: + jpg: + image_url: https://myanimelist.net/images/anime/1525/139345.jpg + small_image_url: https://myanimelist.net/images/anime/1525/139345t.jpg + large_image_url: https://myanimelist.net/images/anime/1525/139345l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1525/139345.webp + small_image_url: https://myanimelist.net/images/anime/1525/139345t.webp + large_image_url: https://myanimelist.net/images/anime/1525/139345l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LCaj7BiyDI4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahou Shoujo ni Akogarete + - type: Synonym + title: Mahoako + - type: Synonym + title: Looking up to Magical Girls + - type: Synonym + title: I Admire Magical Girls + - type: Synonym + title: and... + - type: Japanese + title: 魔法少女にあこがれて + - type: English + title: Gushing over Magical Girls + title: Mahou Shoujo ni Akogarete + title_english: Gushing over Magical Girls + title_japanese: 魔法少女にあこがれて + title_synonyms: + - Mahoako + - Looking up to Magical Girls + - I Admire Magical Girls + - and... + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-01-03T00:00:00+00:00' + to: '2024-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2024 + to: + day: 27 + month: 3 + year: 2024 + string: Jan 3, 2024 to Mar 27, 2024 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 7.61 + scored_by: 95002 + rank: 1782 + popularity: 1362 + members: 205217 + favorites: 2370 + synopsis: |- + A team of three magical girls known as Tres Magia protects the town where Utena Hiiragi lives. Like many others, Utena loves these magical girls who valiantly fight in the name of justice. One day, a mysterious black mascot character appears before Utena and grants her the opportunity of a lifetime: a chance to transform into a magical girl. + + However, the offer is not what it seems, as Utena has been recruited for an evil organization to fight the magical girls she has always admired. Utena is then forced to confront Tres Magia in battle; but instead of feeling remorse, she unexpectedly finds pleasure in inflicting pain on the magical girls. Completely giving in to her desires, Utena embraces her role as a villain, slowly transforming her adoration for magical girls into a new sadistic obsession. + + [Written by MAL Rewrite] + background: Mahou Shoujo ni Akogarete was released on Blu-ray and DVD in three volumes from March 27, 2024, to May 29, + 2024. + season: winter + year: 2024 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 332 + type: anime + name: Takeshobo + url: https://myanimelist.net/anime/producer/332/Takeshobo + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: [] + - mal_id: 56285 + url: https://myanimelist.net/anime/56285/Ninja_Kamui + images: + jpg: + image_url: https://myanimelist.net/images/anime/1142/141351.jpg + small_image_url: https://myanimelist.net/images/anime/1142/141351t.jpg + large_image_url: https://myanimelist.net/images/anime/1142/141351l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1142/141351.webp + small_image_url: https://myanimelist.net/images/anime/1142/141351t.webp + large_image_url: https://myanimelist.net/images/anime/1142/141351l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CeVGFh8_PHY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ninja Kamui + title: Ninja Kamui + title_english: null + title_japanese: null + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-02-11T00:00:00+00:00' + to: '2024-05-05T00:00:00+00:00' + prop: + from: + day: 11 + month: 2 + year: 2024 + to: + day: 5 + month: 5 + year: 2024 + string: Feb 11, 2024 to May 5, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.53 + scored_by: 78267 + rank: 7995 + popularity: 1408 + members: 198510 + favorites: 1100 + synopsis: |- + Seemingly an average man, Joe Logan leads a peaceful life in the countryside with his wife and child. However, the Logan family have actually assumed false identities to escape from Joe's past as a fearsome ninja assassin. Despite a string of high-profile murders of his former peers, Joe is sure that his new life is secure—but his tranquil bliss is soon shattered when his family is slaughtered by members of his former clan. + + Left for dead, Joe wakes up in a hospital, unsure of how he survived the wounds that should have killed him. Police detectives Emma Samanda and Mike Moriss, assigned to investigate the Logan family's deaths, witness another attempt on Joe's life. However, this time Joe is prepared. Unleashing secret techniques, he easily dispatches his enemies, shedding his new identity in the process. + + Embracing his old ways, Joe shrouds himself in his former persona, cutting through the organization he once served in the name of cold-blooded revenge. Assisted in his hunt by the detective duo, Joe will stop at nothing to kill his past and the demons hailing from it. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Sundays + time: 08:30 + timezone: Asia/Tokyo + string: Sundays at 08:30 (JST) + producers: + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + licensors: [] + studios: + - mal_id: 2642 + type: anime + name: E&H Production + url: https://myanimelist.net/anime/producer/2642/E_H_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 53730 + url: https://myanimelist.net/anime/53730/Sokushi_Cheat_ga_Saikyou_sugite_Isekai_no_Yatsura_ga_Marude_Aite_ni_Naranai_n_desu_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1734/139673.jpg + small_image_url: https://myanimelist.net/images/anime/1734/139673t.jpg + large_image_url: https://myanimelist.net/images/anime/1734/139673l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1734/139673.webp + small_image_url: https://myanimelist.net/images/anime/1734/139673t.webp + large_image_url: https://myanimelist.net/images/anime/1734/139673l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/izwiek6ZT7Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga. + - type: Synonym + title: The other world doesn't stand a chance against the power of instant death + - type: Japanese + title: 即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。 + - type: English + title: My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me! + title: Sokushi Cheat ga Saikyou sugite, Isekai no Yatsura ga Marude Aite ni Naranai n desu ga. + title_english: My Instant Death Ability is So Overpowered, No One in This Other World Stands a Chance Against Me! + title_japanese: 即死チートが最強すぎて、異世界のやつらがまるで相手にならないんですが。 + title_synonyms: + - The other world doesn't stand a chance against the power of instant death + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-05T00:00:00+00:00' + to: '2024-03-22T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2024 + to: + day: 22 + month: 3 + year: 2024 + string: Jan 5, 2024 to Mar 22, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.36 + scored_by: 91609 + rank: 9028 + popularity: 1437 + members: 193320 + favorites: 668 + synopsis: |- + During a school trip, a bus full of students is suddenly transported to another world by a sage named Sion. She bestows most of the students with powers called Gifts, seeking to recruit them to become sages as well. However, a few are excluded from receiving a Gift, resulting in the others leaving them behind. + + Yogiri Takatou, one of the students who did not receive a Gift, wakes up to find a dragon attacking the bus. Amidst the chaos, he executes the dragon using his innate ability to instantly put anything to death. Alongside fellow survivor Tomochika Dannoura, Takatou sets out to find a way back to Earth, all while eliminating anyone who dares to underestimate him—including his former classmates. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Fridays + time: 00:30 + timezone: Asia/Tokyo + string: Fridays at 00:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 2037 + type: anime + name: Okuruto Noboru + url: https://myanimelist.net/anime/producer/2037/Okuruto_Noboru + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 52816 + url: https://myanimelist.net/anime/52816/Majo_to_Yajuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1380/139745.jpg + small_image_url: https://myanimelist.net/images/anime/1380/139745t.jpg + large_image_url: https://myanimelist.net/images/anime/1380/139745l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1380/139745.webp + small_image_url: https://myanimelist.net/images/anime/1380/139745t.webp + large_image_url: https://myanimelist.net/images/anime/1380/139745l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fixrPjPnOw4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Majo to Yajuu + - type: Synonym + title: Witch and the Beast + - type: Japanese + title: 魔女と野獣 + - type: English + title: The Witch and the Beast + title: Majo to Yajuu + title_english: The Witch and the Beast + title_japanese: 魔女と野獣 + title_synonyms: + - Witch and the Beast + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-12T00:00:00+00:00' + to: '2024-04-05T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2024 + to: + day: 5 + month: 4 + year: 2024 + string: Jan 12, 2024 to Apr 5, 2024 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.47 + scored_by: 69728 + rank: 2381 + popularity: 1452 + members: 190823 + favorites: 1158 + synopsis: |- + Cursed by a witch, the feral and tempestuous Guideau tenaciously searches for the culprit so she can exact revenge. To this end, she joins the Order of Magical Resonance, an organization that deals with everything connected to magic. The Order agrees to work with Guideau in return for her help solving the myriad of magic-related cases occurring across the world. + + The Order's suave and mysterious mage Ashaf accompanies Guideau for the sake of successfully completing missions. As the pair traverses the land in search of that unknown witch, their experience with the fantastical world of magic grows ever more peculiar the further they advance in their journey. + + [Written by MAL Rewrite] + background: Majo to Yajuu was released on Blu-ray in two volumes from May 29, 2024, to June 26, 2024. + season: winter + year: 2024 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 53889 + url: https://myanimelist.net/anime/53889/Ao_no_Exorcist__Shimane_Illuminati-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1239/140803.jpg + small_image_url: https://myanimelist.net/images/anime/1239/140803t.jpg + large_image_url: https://myanimelist.net/images/anime/1239/140803l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1239/140803.webp + small_image_url: https://myanimelist.net/images/anime/1239/140803t.webp + large_image_url: https://myanimelist.net/images/anime/1239/140803l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eFtUkrxqRaM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ao no Exorcist: Shimane Illuminati-hen' + - type: Synonym + title: Blue Exorcist Season 3 + - type: Synonym + title: Ao no Futsumashi + - type: Japanese + title: 青の祓魔師 島根啓明結社篇 + - type: English + title: 'Blue Exorcist: Shimane Illuminati Saga' + title: 'Ao no Exorcist: Shimane Illuminati-hen' + title_english: 'Blue Exorcist: Shimane Illuminati Saga' + title_japanese: 青の祓魔師 島根啓明結社篇 + title_synonyms: + - Blue Exorcist Season 3 + - Ao no Futsumashi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-07T00:00:00+00:00' + to: '2024-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2024 + to: + day: 24 + month: 3 + year: 2024 + string: Jan 7, 2024 to Mar 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.13 + scored_by: 60579 + rank: 4375 + popularity: 1502 + members: 184578 + favorites: 621 + synopsis: |- + At True Cross Academy, Rin Okumura unknowingly comes across the first signs that something is amiss; ordinary people have been gaining the ability to perceive the invisible creatures that roam the human realm, Assiah. While Rin sees this as an opportunity to make a new friend, his twin brother, Yukio, is more burdened than ever. Swamped with his education, exorcist duties, and teaching position, Yukio has remained silent about his awakened powers, unable to understand their scale or significance. + + While Rin and his friends prepare for the annual Exorcist Certification Exam, the True Cross Order has uncovered the first artificial gate to the demonic realm of Gehenna. Witnessing its size and the advanced technology that made it possible, the exorcists realize they are now dealing with the Illuminati, an extremely wealthy and powerful organization. Moreover, the inscrutable Illuminati have planted three spies in the True Cross Order—and one may be hiding among the aspiring exorcists sworn to protect mankind from the demonic threat. + + [Written by MAL Rewrite] + background: 'Ao no Exorcist: Shimane Illuminati-hen was released on Blu-ray and DVD in two volumes from April 24, 2024, + to May 29, 2024. It adapts chapters 38-68 of the original manga.' + season: winter + year: 2024 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53488 + url: https://myanimelist.net/anime/53488/Shin_no_Nakama_ja_Nai_to_Yuusha_no_Party_wo_Oidasareta_node_Henkyou_de_Slow_Life_suru_Koto_ni_Shimashita_2nd + images: + jpg: + image_url: https://myanimelist.net/images/anime/1873/139792.jpg + small_image_url: https://myanimelist.net/images/anime/1873/139792t.jpg + large_image_url: https://myanimelist.net/images/anime/1873/139792l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1873/139792.webp + small_image_url: https://myanimelist.net/images/anime/1873/139792t.webp + large_image_url: https://myanimelist.net/images/anime/1873/139792l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JaRvWJr_E_I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd + - type: Synonym + title: Banished from the Hero's Party + - type: Synonym + title: I Decided to Live a Quiet Life in the Countryside + - type: Synonym + title: I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at + the Frontier 2 + - type: Japanese + title: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd + - type: English + title: Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2 + title: Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita 2nd + title_english: Banished From The Hero's Party, I Decided To Live A Quiet Life In The Countryside Season 2 + title_japanese: 真の仲間じゃないと勇者のパーティーを追い出されたので、辺境でスローライフすることにしました 2nd + title_synonyms: + - Banished from the Hero's Party + - I Decided to Live a Quiet Life in the Countryside + - I Was Kicked out of the Hero's Party Because I Wasn't a True Companion so I Decided to Have a Slow Life at the Frontier + 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-07T00:00:00+00:00' + to: '2024-03-24T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2024 + to: + day: 24 + month: 3 + year: 2024 + string: Jan 7, 2024 to Mar 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.77 + scored_by: 60447 + rank: 6500 + popularity: 1711 + members: 156889 + favorites: 394 + synopsis: |- + Finally free of her Blessing's impulses, former Hero Ruti has settled into her idyllic slow life with assassin housemate Tisse in the border town of Zoltan. She's happy to once again be close to her apothecary brother Red, the former Guide of her previous Hero's Party, while he's living his best loved-up life with his partner (and soon-to-be fiancee) Princess Rit. Unfortunately, there's a new Hero on the scene whose fundamentalist interpretation of his Blessing's urges will bring conflict and despair to sleepy Zoltan… + + (Source: ANN) + background: '' + season: winter + year: 2024 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2545 + type: anime + name: Kyoto Broadcasting System + url: https://myanimelist.net/anime/producer/2545/Kyoto_Broadcasting_System + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1693 + type: anime + name: Studio Flad + url: https://myanimelist.net/anime/producer/1693/Studio_Flad + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 50803 + url: https://myanimelist.net/anime/50803/Jaku-Chara_Tomozaki-kun_2nd_Stage + images: + jpg: + image_url: https://myanimelist.net/images/anime/1143/140807.jpg + small_image_url: https://myanimelist.net/images/anime/1143/140807t.jpg + large_image_url: https://myanimelist.net/images/anime/1143/140807l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1143/140807.webp + small_image_url: https://myanimelist.net/images/anime/1143/140807t.webp + large_image_url: https://myanimelist.net/images/anime/1143/140807l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wHhwkIv0lhs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jaku-Chara Tomozaki-kun 2nd Stage + - type: Japanese + title: 弱キャラ友崎くん 2nd STAGE + - type: English + title: Bottom-Tier Character Tomozaki 2nd Stage + title: Jaku-Chara Tomozaki-kun 2nd Stage + title_english: Bottom-Tier Character Tomozaki 2nd Stage + title_japanese: 弱キャラ友崎くん 2nd STAGE + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-01-03T00:00:00+00:00' + to: '2024-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2024 + to: + day: 27 + month: 3 + year: 2024 + string: Jan 3, 2024 to Mar 27, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.05 + scored_by: 63519 + rank: 4849 + popularity: 1753 + members: 152613 + favorites: 624 + synopsis: |- + Fumiya Tomozaki is now cruising through the game of life—all thanks to the guidance of Aoi Hinami, his popular classmate and rival in the online game Attack Families, widely known as "Tackfam." As the summer holiday draws to a close and a new term commences, Tomozaki reunites with Aoi, who reminds him of his ultimate goals: to become well-liked among his peers and find himself a girlfriend. + + However, Tomozaki puts his ambitions on hold when his innocent friend, Hanabi Natsubayashi, starts being bullied. To make matters worse, Aoi is characteristically out of touch with the situation. But Tomozaki is not alone in resolving this issue—he now has a group of loyal friends who are all determined to help Hanabi and ensure they enjoy their youths together to the fullest. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 55129 + url: https://myanimelist.net/anime/55129/Oroka_na_Tenshi_wa_Akuma_to_Odoru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1902/139271.jpg + small_image_url: https://myanimelist.net/images/anime/1902/139271t.jpg + large_image_url: https://myanimelist.net/images/anime/1902/139271l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1902/139271.webp + small_image_url: https://myanimelist.net/images/anime/1902/139271t.webp + large_image_url: https://myanimelist.net/images/anime/1902/139271l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3fBQ9LS1hQY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Oroka na Tenshi wa Akuma to Odoru + - type: Synonym + title: The Foolish Angel Dances with Demons + - type: Synonym + title: Kanaten + - type: Japanese + title: 愚かな天使は悪魔と踊る + - type: English + title: The Foolish Angel Dances with the Devil + title: Oroka na Tenshi wa Akuma to Odoru + title_english: The Foolish Angel Dances with the Devil + title_japanese: 愚かな天使は悪魔と踊る + title_synonyms: + - The Foolish Angel Dances with Demons + - Kanaten + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-09T00:00:00+00:00' + to: '2024-03-26T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2024 + to: + day: 26 + month: 3 + year: 2024 + string: Jan 9, 2024 to Mar 26, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.91 + scored_by: 57137 + rank: 5652 + popularity: 1783 + members: 149796 + favorites: 451 + synopsis: |- + Losing their war against Heaven's angel army, the demons of Hell are on the cusp of collapse. As a last ditch attempt to turn the tides of the war, the demons send Akutsu Masatora to the mortal plane on Earth to save their homeland from the angels. Disguising himself as a high school student, Akutsu seeks to recruit someone with the capability to lead the demons to victory. + + Akutsu does not have to look far: among his classmates is the magnificent Lily Amane, a transfer student who seems like the perfect candidate for Akutsu's plans. But as luck would have it, Lily is one of the very angels that Akutsu is meant to be fighting against, and his attempt to recruit her might end up being the biggest blunder in the failing war. Worse yet, Akutsu may fall in love with his own worst enemy. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1314 + type: anime + name: Gaina + url: https://myanimelist.net/anime/producer/1314/Gaina + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1720 + type: anime + name: Aoni Production + url: https://myanimelist.net/anime/producer/1720/Aoni_Production + - mal_id: 2219 + type: anime + name: Nihon Keizai Koukokusha + url: https://myanimelist.net/anime/producer/2219/Nihon_Keizai_Koukokusha + - mal_id: 2800 + type: anime + name: ANLA + url: https://myanimelist.net/anime/producer/2800/ANLA + licensors: [] + studios: + - mal_id: 1407 + type: anime + name: Children's Playground Entertainment + url: https://myanimelist.net/anime/producer/1407/Childrens_Playground_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 54265 + url: https://myanimelist.net/anime/54265/Kekkon_Yubiwa_Monogatari + images: + jpg: + image_url: https://myanimelist.net/images/anime/1452/139991.jpg + small_image_url: https://myanimelist.net/images/anime/1452/139991t.jpg + large_image_url: https://myanimelist.net/images/anime/1452/139991l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1452/139991.webp + small_image_url: https://myanimelist.net/images/anime/1452/139991t.webp + large_image_url: https://myanimelist.net/images/anime/1452/139991l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/S238Ng-DseE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kekkon Yubiwa Monogatari + - type: Japanese + title: 結婚指輪物語 + - type: English + title: Tales of Wedding Rings + title: Kekkon Yubiwa Monogatari + title_english: Tales of Wedding Rings + title_japanese: 結婚指輪物語 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-06T00:00:00+00:00' + to: '2024-03-23T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2024 + to: + day: 23 + month: 3 + year: 2024 + string: Jan 6, 2024 to Mar 23, 2024 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.07 + scored_by: 57615 + rank: 10656 + popularity: 1827 + members: 145026 + favorites: 402 + synopsis: |- + A decade ago, princess Krystal Novaty “Hime” Nokanatika traveled from another world to escape assassination attempts by an evil force. When she arrives in modern-day Japan, she encounters Haruto Satou. With him she shares a promise: he must forget what he has just witnessed, and the two will become friends. Now heading back to the Nokanatika Kingdom to fulfill her royal duties, Hime bids farewell to Haruto. However, when the young man suddenly remembers his first meeting with Hime, he rushes to the location where she first appeared and crosses the dimensional portal to be reunited with her. + + His arrival disrupts the marriage ceremony between Hime and prince Marmarugias Gisaras. The wedding is brutally interrupted by the attack of an abyss monster who threatens the princess' life. Acting impulsively, Hime decides to exchange rings with Haruto, which grants her new husband light powers that permit him to slay the monster. Now dubbed as the Ring King, Haruto must marry four other princesses to acquire new magical powers and have a chance to prevail in his fight against the enemy of the world: the Abyss King. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Saturdays + time: '21:30' + timezone: Asia/Tokyo + string: Saturdays at 21:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1883 + type: anime + name: APDREAM + url: https://myanimelist.net/anime/producer/1883/APDREAM + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2405 + type: anime + name: Staple Entertainment + url: https://myanimelist.net/anime/producer/2405/Staple_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 53590 + url: https://myanimelist.net/anime/53590/Saijaku_Tamer_wa_Gomi_Hiroi_no_Tabi_wo_Hajimemashita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1280/138474.jpg + small_image_url: https://myanimelist.net/images/anime/1280/138474t.jpg + large_image_url: https://myanimelist.net/images/anime/1280/138474l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1280/138474.webp + small_image_url: https://myanimelist.net/images/anime/1280/138474t.webp + large_image_url: https://myanimelist.net/images/anime/1280/138474l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LtwLjXQ3p1A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita. + - type: Japanese + title: 最弱テイマーはゴミ拾いの旅を始めました。 + - type: English + title: The Weakest Tamer Began a Journey to Pick Up Trash + title: Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita. + title_english: The Weakest Tamer Began a Journey to Pick Up Trash + title_japanese: 最弱テイマーはゴミ拾いの旅を始めました。 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-12T00:00:00+00:00' + to: '2024-03-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2024 + to: + day: 29 + month: 3 + year: 2024 + string: Jan 12, 2024 to Mar 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 68623 + rank: 1896 + popularity: 1847 + members: 142547 + favorites: 771 + synopsis: |- + Born into a loving family, Femicia appears to have a bright future ahead of her. When she finally turns five, the time comes to go to the church to have her skills appraised. However, while she does receive a monster tamer skill, it turns out that Femicia has zero stars for that ability. To make matters worse, society considers those who have zero stars to be harbingers of misfortune; as a result, Femicia is shunned by everyone—including her family. + + Soon enough, Femicia is chased out of her village and is constantly on the run. Fearing for her life, she decides to masquerade as a boy and change her name to Ivy. With a goal given to her by a fortune teller to reach the royal capital, Ivy meets and successfully tames a slime, starting an unlikely friendship that may provide a means to get the destiny she deserves. + + [Written by MAL Rewrite] + background: Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita. was released on Blu-ray on June 5, 2024. + season: winter + year: 2024 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2548 + type: anime + name: ABC Frontier + url: https://myanimelist.net/anime/producer/2548/ABC_Frontier + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2411 + type: anime + name: Studio Massket + url: https://myanimelist.net/anime/producer/2411/Studio_Massket + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 81 + type: anime + name: Crossdressing + url: https://myanimelist.net/anime/genre/81/Crossdressing + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 54449 + url: https://myanimelist.net/anime/54449/Ishura + images: + jpg: + image_url: https://myanimelist.net/images/anime/1364/140875.jpg + small_image_url: https://myanimelist.net/images/anime/1364/140875t.jpg + large_image_url: https://myanimelist.net/images/anime/1364/140875l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1364/140875.webp + small_image_url: https://myanimelist.net/images/anime/1364/140875t.webp + large_image_url: https://myanimelist.net/images/anime/1364/140875l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/6YF46W0xpuI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ishura + - type: Japanese + title: 異修羅 + - type: English + title: Ishura + title: Ishura + title_english: Ishura + title_japanese: 異修羅 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-01-03T00:00:00+00:00' + to: '2024-03-20T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2024 + to: + day: 20 + month: 3 + year: 2024 + string: Jan 3, 2024 to Mar 20, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.75 + scored_by: 42711 + rank: 6599 + popularity: 1936 + members: 135076 + favorites: 477 + synopsis: |- + After the demise of the demon king, the resulting power vacuum has broken the balance of the world. Eager to claim this power for themselves, self-proclaimed demon kings from various worlds assemble in the New Principality of Lithia to fight for it. Among them, master swordsman Soujirou Yagyuu seeks to take this coveted position for himself. Joined by Tooi Kagizume no Yuno, a young girl he saved from an army of golems that destroyed her city, Soujirou enters Lithia to battle his way to the title. + + At the same time, the leaders of the Aureatia Kingdom seek to destabilize Lithia by launching bandits after the convoys of merchandise transiting through the principality. Enraged, Imashime of Taren, the founder of Lithia and defector from Aureatia, sends vicious thief Kasasagi no Dakai to investigate the origin of these attacks. With war on the brink of eruption, no one can predict what influence the contenders for the demon king's throne will have on the coming conflict. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2024 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2435 + type: anime + name: Aiming + url: https://myanimelist.net/anime/producer/2435/Aiming + licensors: [] + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/58-2024-spring.yaml b/test/fixtures/jikan/season_matrix/58-2024-spring.yaml new file mode 100644 index 0000000..ff6e6ed --- /dev/null +++ b/test/fixtures/jikan/season_matrix/58-2024-spring.yaml @@ -0,0 +1,3362 @@ +metadata: + captured_at: '2026-05-11T11:35:04Z' + label: 2024-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2024/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:03 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:9b06ec13fb15773e10281635499b8ab92a20016f + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: HIT + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 276 + per_page: 25 + data: + - mal_id: 55701 + url: https://myanimelist.net/anime/55701/Kimetsu_no_Yaiba__Hashira_Geiko-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1565/142711.jpg + small_image_url: https://myanimelist.net/images/anime/1565/142711t.jpg + large_image_url: https://myanimelist.net/images/anime/1565/142711l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1565/142711.webp + small_image_url: https://myanimelist.net/images/anime/1565/142711t.webp + large_image_url: https://myanimelist.net/images/anime/1565/142711l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Tf31dGdlWxE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba: Hashira Geiko-hen' + - type: Japanese + title: 鬼滅の刃 柱稽古編 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba Hashira Training Arc' + title: 'Kimetsu no Yaiba: Hashira Geiko-hen' + title_english: 'Demon Slayer: Kimetsu no Yaiba Hashira Training Arc' + title_japanese: 鬼滅の刃 柱稽古編 + title_synonyms: [] + type: TV + source: Manga + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2024-05-12T00:00:00+00:00' + to: '2024-06-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 5 + year: 2024 + to: + day: 30 + month: 6 + year: 2024 + string: May 12, 2024 to Jun 30, 2024 + duration: 29 min per ep + rating: R - 17+ (violence & profanity) + score: 8.02 + scored_by: 453379 + rank: 722 + popularity: 299 + members: 774924 + favorites: 4958 + synopsis: |- + After a series of mighty clashes with Upper Rank Demons, the Ubuyashiki clan prepares for one last battle with the hellish forces of Muzan Kibutsuji. In order to finally defeat the Demon leader once and for all, the clan devises a training camp for the Demon Slayer Corps, one led by the remaining Hashira—the most elite warriors in the organization. Each Hashira forms a specialized exercise that will hone both their own abilities and the skills of the ordinary soldiers. + + Tanjirou Kamado, a boy at the heart of the brewing conflict, recovers from wounds received in a recent fight. While his half-Demon sister Nezuko is studied by researchers like Shinobu Kochou, Tanjirou embarks to train with the Hashira, seeking mastery in each of their assigned areas of expertise to be best prepared for the coming war—skills vital to Tanjirou, as he has vowed to be the very warrior who will eliminate Muzan for good. + + [Written by MAL Rewrite] + background: 'Kimetsu no Yaiba: Hashira Geiko-hen adapts chapters 128 to 139 of the original manga. The series was released + on Blu-ray and DVD in four volumes from July 3, 2024, to October 2, 2024.' + season: spring + year: 2024 + broadcast: + day: Sundays + time: '23:15' + timezone: Asia/Tokyo + string: Sundays at 23:15 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52588 + url: https://myanimelist.net/anime/52588/Kaijuu_8-gou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1370/140362.jpg + small_image_url: https://myanimelist.net/images/anime/1370/140362t.jpg + large_image_url: https://myanimelist.net/images/anime/1370/140362l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1370/140362.webp + small_image_url: https://myanimelist.net/images/anime/1370/140362t.webp + large_image_url: https://myanimelist.net/images/anime/1370/140362l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7n_mFVPeApw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaijuu 8-gou + - type: Synonym + title: 8Kaijuu + - type: Synonym + title: 'Monster #8' + - type: Synonym + title: Kaiju No. Eight + - type: Synonym + title: 'Kaiju #8' + - type: Japanese + title: 怪獣8号 + - type: English + title: Kaiju No. 8 + title: Kaijuu 8-gou + title_english: Kaiju No. 8 + title_japanese: 怪獣8号 + title_synonyms: + - 8Kaijuu + - 'Monster #8' + - Kaiju No. Eight + - 'Kaiju #8' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-13T00:00:00+00:00' + to: '2024-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2024 + to: + day: 29 + month: 6 + year: 2024 + string: Apr 13, 2024 to Jun 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 421278 + rank: 432 + popularity: 321 + members: 729099 + favorites: 6638 + synopsis: |- + After the destruction of their hometown, childhood friends Kafka Hibino and Mina Ashiro make a pact to become officers in the Defense Force—a militarized organization tasked with protecting Japan from colossal monsters known as "kaijuu." Decades later, the 32-year-old Kafka has all but given up on his dreams of heroism. Instead, he cleans up the remains of the slaughtered kaijuu after they are defeated by valiant soldiers—including Mina, who has successfully achieved their shared goal. + + Upon meeting his new coworker, Reno Ichikawa, Kafka faces a mirror of his past self: an ambitious young man whose one desire is to fight as a member of the Defense Force. Unfortunately, the two are soon involved in a freak encounter with a rogue kaijuu. Though Kafka demonstrates his innate heroic nature and rescues Reno from certain doom, he is left gravely injured. + + While both men recover in a hospital, Kafka is seemingly attacked by another one of the beasts. As a result, he gains the ability to transform into a humanoid kaijuu with the strength and powers of the massive monsters menacing Japan. Dubbed "Kaijuu No. 8" by the military, Kafka resolves to use his newfound gifts for the greater good. Tied together by mutual respect, Kafka and Reno set out to join warriors like Mina at the forefront of the Defense Force. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 47 + type: anime + name: Khara + url: https://myanimelist.net/anime/producer/47/Khara + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 55888 + url: https://myanimelist.net/anime/55888/Mushoku_Tensei_II__Isekai_Ittara_Honki_Dasu_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1876/141251.jpg + small_image_url: https://myanimelist.net/images/anime/1876/141251t.jpg + large_image_url: https://myanimelist.net/images/anime/1876/141251l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1876/141251.webp + small_image_url: https://myanimelist.net/images/anime/1876/141251t.webp + large_image_url: https://myanimelist.net/images/anime/1876/141251l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/L5broLUI1m4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2' + - type: Synonym + title: 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - type: Synonym + title: 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2' + - type: Japanese + title: 無職転生 II ~異世界行ったら本気だす~ (第2クール) + - type: English + title: 'Mushoku Tensei: Jobless Reincarnation Season 2 Part 2' + title: 'Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2' + title_english: 'Mushoku Tensei: Jobless Reincarnation Season 2 Part 2' + title_japanese: 無職転生 II ~異世界行ったら本気だす~ (第2クール) + title_synonyms: + - 'Jobless Reincarnation: I Will Seriously Try If I Go To Another World' + - 'Mushoku Tensei: Isekai Ittara Honki Dasu 2nd Season Part 2' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-08T00:00:00+00:00' + to: '2024-07-01T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2024 + to: + day: 1 + month: 7 + year: 2024 + string: Apr 8, 2024 to Jul 1, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.39 + scored_by: 330881 + rank: 238 + popularity: 436 + members: 573347 + favorites: 4655 + synopsis: |- + Following the faceless god Hitogami's advice seems to have worked wonders for Rudeus Greyrat. After enrolling into the University of Magic as he was told, Rudeus reunites with his childhood friend Sylphiette, who put a valiant effort into curing his condition. The two grow ever closer together and decide to host a wedding party, inviting the friends they have made over the years to announce and formalize their relationship. + + For all his recent blessings, however, Rudeus' troubles are far from over. The research he is helping Shizuka Nanahoshi conduct hits a bottleneck, sending her into a deep slump much like he experienced in his previous life. Furthermore, a letter from his father, Paul, brings complications to Rudeus' relationships, and Sylphiette still knows next to nothing about his real background. In the face of these issues, Rudeus will have to apply the lessons he has learned in this new world to navigate through the challenges that come with living a life to its fullest. + + [Written by MAL Rewrite] + background: 'Mushoku Tensei II: Isekai Ittara Honki Dasu Part 2 was released on Blu-ray in two volumes from July 17, + 2024, to September 18, 2024.' + season: spring + year: 2024 + broadcast: + day: Mondays + time: 00:00 + timezone: Asia/Tokyo + string: Mondays at 00:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 49458 + url: https://myanimelist.net/anime/49458/Kono_Subarashii_Sekai_ni_Shukufuku_wo_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1758/141268.jpg + small_image_url: https://myanimelist.net/images/anime/1758/141268t.jpg + large_image_url: https://myanimelist.net/images/anime/1758/141268l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1758/141268.webp + small_image_url: https://myanimelist.net/images/anime/1758/141268t.webp + large_image_url: https://myanimelist.net/images/anime/1758/141268l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Meo3mO98huE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Subarashii Sekai ni Shukufuku wo! 3 + - type: Japanese + title: この素晴らしい世界に祝福を!3 + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! 3' + title: Kono Subarashii Sekai ni Shukufuku wo! 3 + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! 3' + title_japanese: この素晴らしい世界に祝福を!3 + title_synonyms: [] + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2024-04-10T00:00:00+00:00' + to: '2024-06-19T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2024 + to: + day: 19 + month: 6 + year: 2024 + string: Apr 10, 2024 to Jun 19, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.34 + scored_by: 240653 + rank: 287 + popularity: 457 + members: 551619 + favorites: 5606 + synopsis: |- + Kazuma Satou, former NEET and current reincarnated adventurer, finally returns home after the incident at the Crimson Demon village. He is joined by his ever-reliable companions: self-absorbed goddess Aqua, one-trick pony arch-wizard Megumin, and masochistic crusader Lalatina Ford "Darkness" Dustiness. Following their recent exploits, the party is one step closer to vanquishing the Demon King and his armies—a terrifying task that Kazuma is eager to ignore for as long as possible. Things, however, are not going as smoothly as the group would like; they are constantly racking up debt, getting sidetracked during missions, and falling into traps due to their recklessness and eccentricities. + + As the party struggles with their perennial issues, they receive an invitation from a princess interested in hearing tales of the group's "heroic" deeds. Darkness' pleas to refuse the invitation only fire the others up to accept it, marking the start of yet another uncanny adventure with unforeseen consequences. + + [Written by MAL Rewrite] + background: Kono Subarashii Sekai ni Shukufuku wo! 3 was released on Blu-ray and DVD in four volumes from July 24, 2024, + to October 25, 2024. + season: spring + year: 2024 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1967 + type: anime + name: Drive + url: https://myanimelist.net/anime/producer/1967/Drive + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 54789 + url: https://myanimelist.net/anime/54789/Boku_no_Hero_Academia_7th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1573/157212.jpg + small_image_url: https://myanimelist.net/images/anime/1573/157212t.jpg + large_image_url: https://myanimelist.net/images/anime/1573/157212l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1573/157212.webp + small_image_url: https://myanimelist.net/images/anime/1573/157212t.webp + large_image_url: https://myanimelist.net/images/anime/1573/157212l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E5pcEwi6ynk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Boku no Hero Academia 7th Season + - type: Synonym + title: My Hero Academia 7 + - type: Japanese + title: 僕のヒーローアカデミア 第7期 + - type: English + title: My Hero Academia Season 7 + title: Boku no Hero Academia 7th Season + title_english: My Hero Academia Season 7 + title_japanese: 僕のヒーローアカデミア 第7期 + title_synonyms: + - My Hero Academia 7 + type: TV + source: Manga + episodes: 21 + status: Finished Airing + airing: false + aired: + from: '2024-05-04T00:00:00+00:00' + to: '2024-10-12T00:00:00+00:00' + prop: + from: + day: 4 + month: 5 + year: 2024 + to: + day: 12 + month: 10 + year: 2024 + string: May 4, 2024 to Oct 12, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 226647 + rank: 543 + popularity: 543 + members: 480408 + favorites: 3082 + synopsis: |- + Following an all-out battle with the Paranormal Liberation Front, it is difficult for the people of Japan to continue placing faith in their heroes. To combat the combined power of Tomura Shigaraki and All For One, All Might calls for his ally from the West—the strongest woman on the planet, Star and Stripe. + + However, All For One decides to intercept Star and her fleet to get his hands on her overpowered quirk before she can enter Japanese airspace. Although Endeavor, Hawks, and Best Jeanist are headed to the rendezvous point, Star makes a gamble in the present to save her comrades. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53580 + url: https://myanimelist.net/anime/53580/Tensei_shitara_Slime_Datta_Ken_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1211/143476.jpg + small_image_url: https://myanimelist.net/images/anime/1211/143476t.jpg + large_image_url: https://myanimelist.net/images/anime/1211/143476l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1211/143476.webp + small_image_url: https://myanimelist.net/images/anime/1211/143476t.webp + large_image_url: https://myanimelist.net/images/anime/1211/143476l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kM2m7GcF6W0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Slime Datta Ken 3rd Season + - type: Synonym + title: Tensura 3 + - type: Japanese + title: 転生したらスライムだった件 第3期 + - type: English + title: That Time I Got Reincarnated as a Slime Season 3 + title: Tensei shitara Slime Datta Ken 3rd Season + title_english: That Time I Got Reincarnated as a Slime Season 3 + title_japanese: 転生したらスライムだった件 第3期 + title_synonyms: + - Tensura 3 + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2024-04-05T00:00:00+00:00' + to: '2024-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2024 + to: + day: 27 + month: 9 + year: 2024 + string: Apr 5, 2024 to Sep 27, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.71 + scored_by: 216401 + rank: 1439 + popularity: 547 + members: 478584 + favorites: 4428 + synopsis: |- + Rimuru Tempest is victorious following his climactic showdown with Demon Lord Clayman. With Diablo's aid, the war with the Falmuth Kingdom ends decisively in Rimuru's favor. Fueled by increased migration and the integration of Jura Forest, the nation of Tempest undergoes rapid growth. + + Rimuru's victory shifts the balance of power, giving rise to a renewed period of peace—but whether that peace will last is another matter. Yuuki Kagurazaka and Kazalim are conspiring with the Harlequin Alliance to bring about Rimuru's downfall. Furthermore, the Western Holy Church continues its intolerant crusade against Rimuru and his non-human subordinates. Both allies and enemies engage in a battle of wits, carefully advancing their agendas without shattering the delicate status quo. But once the first domino inevitably falls, the race to supremacy begins. + + [Written by MAL Rewrite] + background: Tensei shitara Slime Datta Ken 3rd Season was released on Blu-ray and DVD in four volumes from July 24, + 2024, to October 30, 2024. + season: spring + year: 2024 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54900 + url: https://myanimelist.net/anime/54900/Wind_Breaker + images: + jpg: + image_url: https://myanimelist.net/images/anime/1438/141816.jpg + small_image_url: https://myanimelist.net/images/anime/1438/141816t.jpg + large_image_url: https://myanimelist.net/images/anime/1438/141816l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1438/141816.webp + small_image_url: https://myanimelist.net/images/anime/1438/141816t.webp + large_image_url: https://myanimelist.net/images/anime/1438/141816l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/k5qM1PoLmUc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Wind Breaker + - type: Synonym + title: Winbre + - type: Synonym + title: WBK + - type: Japanese + title: WIND BREAKER + - type: English + title: Wind Breaker + title: Wind Breaker + title_english: Wind Breaker + title_japanese: WIND BREAKER + title_synonyms: + - Winbre + - WBK + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-04-05T00:00:00+00:00' + to: '2024-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2024 + to: + day: 28 + month: 6 + year: 2024 + string: Apr 5, 2024 to Jun 28, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.71 + scored_by: 238097 + rank: 1443 + popularity: 565 + members: 464226 + favorites: 3717 + synopsis: |- + From an early age, Haruka Sakura was made an outcast due to his unconventional appearance and lack of social skills. However, the rough treatment turned him into a proficient fighter, which is now the only thing he prides himself on. Starting at Furin High School, where it is rumored that strength is valued over academics, Sakura has only one goal—taking the top spot. + + Involved in a street brawl the day before his enrollment, Sakura happens to meet a group of his future schoolmates. Instead of the usual rejection, they fight alongside him, demonstrating that what the school actually cares about is protecting the town of Makochi from any harm—hence why the students call themselves "Bofurin." Surprised by the support and appreciation of the townspeople, Sakura has a hard time accepting their goodwill. + + Though unfamiliar with kindness being shown to him, Sakura must learn to push past his discomfort when Bofurin is pitted against formidable enemies. After experiencing the feeling of acceptance, he finds himself fighting for the sake of others for the first time. + + [Written by MAL Rewrite] + background: Wind Breaker aired on MBS and TBS' Super Animeism Turbo block. + season: spring + year: 2024 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 53516 + url: https://myanimelist.net/anime/53516/Tensei_shitara_Dainana_Ouji_Datta_node_Kimama_ni_Majutsu_wo_Kiwamemasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1580/141243.jpg + small_image_url: https://myanimelist.net/images/anime/1580/141243t.jpg + large_image_url: https://myanimelist.net/images/anime/1580/141243l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1580/141243.webp + small_image_url: https://myanimelist.net/images/anime/1580/141243t.webp + large_image_url: https://myanimelist.net/images/anime/1580/141243l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aK8Gtxw-9bE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu + - type: Synonym + title: Dainanaoji + - type: Synonym + title: I Was Reincarnated as the 7th Prince + - type: Synonym + title: so I Will Perfect My Magic as I Please + - type: Japanese + title: 転生したら第七王子だったので、気ままに魔術を極めます + - type: English + title: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability + title: Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu + title_english: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability + title_japanese: 転生したら第七王子だったので、気ままに魔術を極めます + title_synonyms: + - Dainanaoji + - I Was Reincarnated as the 7th Prince + - so I Will Perfect My Magic as I Please + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-02T00:00:00+00:00' + to: '2024-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2024 + to: + day: 18 + month: 6 + year: 2024 + string: Apr 2, 2024 to Jun 18, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.41 + scored_by: 141479 + rank: 2704 + popularity: 1061 + members: 266298 + favorites: 1208 + synopsis: |- + In his past life, Prince Lloyd de Saloum was a commoner who could not become adept at magic, no matter how knowledgeable or obsessed he was about it. Now reincarnated into his current royal lineage, he receives a body with seemingly endless mana, making his desire to master all things arcane attainable. Moreover, as the seventh prince of the kingdom, Lloyd has no claim to the throne, allowing him to nurture his abilities as freely as he wants. + + Unfortunately for Lloyd, ancient seals that imprison powerful demons begin to break down and release the horrors within, endangering the peace. With these monstrosities roaming around, Lloyd's overwhelming magical prowess is the ultimate weapon that can neutralize these threats before all things descend to chaos. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 102 + type: anime + name: Funimation + url: https://myanimelist.net/anime/producer/102/Funimation + studios: + - mal_id: 2212 + type: anime + name: Tsumugi Akita Animation Lab + url: https://myanimelist.net/anime/producer/2212/Tsumugi_Akita_Animation_Lab + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 51122 + url: https://myanimelist.net/anime/51122/Ookami_to_Koushinryou__Merchant_Meets_the_Wise_Wolf + images: + jpg: + image_url: https://myanimelist.net/images/anime/1059/142414.jpg + small_image_url: https://myanimelist.net/images/anime/1059/142414t.jpg + large_image_url: https://myanimelist.net/images/anime/1059/142414l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1059/142414.webp + small_image_url: https://myanimelist.net/images/anime/1059/142414t.webp + large_image_url: https://myanimelist.net/images/anime/1059/142414l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PUPnNDgRtzo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ookami to Koushinryou: Merchant Meets the Wise Wolf' + - type: Synonym + title: Spice and Wolf + - type: Japanese + title: 狼と香辛料 MERCHANT MEETS THE WISE WOLF + - type: English + title: 'Spice and Wolf: Merchant Meets the Wise Wolf' + title: 'Ookami to Koushinryou: Merchant Meets the Wise Wolf' + title_english: 'Spice and Wolf: Merchant Meets the Wise Wolf' + title_japanese: 狼と香辛料 MERCHANT MEETS THE WISE WOLF + title_synonyms: + - Spice and Wolf + type: TV + source: Light novel + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-04-02T00:00:00+00:00' + to: '2024-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2024 + to: + day: 24 + month: 9 + year: 2024 + string: Apr 2, 2024 to Sep 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.13 + scored_by: 86268 + rank: 555 + popularity: 1075 + members: 262274 + favorites: 2268 + synopsis: |- + With a cartload of fur pelts in tow, traveling merchant Kraft Lawrence stops by the village of Pasloe. According to local folklore, centuries ago, one of the villagers made a promise with the wolf deity Holo, who swore to bless Pasloe with bountiful harvests of wheat. Yet, as time passed, such stories became little more than relics of the past. + + After quickly finishing his business in the village, Lawrence sets out to his next destination. His journey, however, takes an unexpected turn when he discovers a nude, animal-eared girl sleeping among his pelts. Even more surprisingly, the youthful-looking woman claims to be Holo—the wolf of legend. + + Holo wishes to return to her hometown in the north, and though their first encounter is rocky, she convinces Lawrence to accompany her on her travels. In return, she vows to earn her keep, using her quick wits and lifetime of experience to help her newfound companion in his dealings. As they continue their journey, Lawrence and Holo take advantage of whatever economic opportunities they come across, often landing in situations that put both their business skills and their relationship to the test. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1991 + type: anime + name: Enishiya + url: https://myanimelist.net/anime/producer/1991/Enishiya + - mal_id: 2370 + type: anime + name: Hayabusa Film + url: https://myanimelist.net/anime/producer/2370/Hayabusa_Film + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: [] + - mal_id: 56923 + url: https://myanimelist.net/anime/56923/Lv2_kara_Cheat_datta_Motoyuusha_Kouho_no_Mattari_Isekai_Life + images: + jpg: + image_url: https://myanimelist.net/images/anime/1103/142513.jpg + small_image_url: https://myanimelist.net/images/anime/1103/142513t.jpg + large_image_url: https://myanimelist.net/images/anime/1103/142513l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1103/142513.webp + small_image_url: https://myanimelist.net/images/anime/1103/142513t.webp + large_image_url: https://myanimelist.net/images/anime/1103/142513l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MUn_fypkCfU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life + - type: Synonym + title: The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2 + - type: Synonym + title: Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2 + - type: Japanese + title: Lv2からチートだった元勇者候補のまったり異世界ライフ + - type: English + title: Chillin' in Another World with Level 2 Super Cheat Powers + title: Lv2 kara Cheat datta Motoyuusha Kouho no Mattari Isekai Life + title_english: Chillin' in Another World with Level 2 Super Cheat Powers + title_japanese: Lv2からチートだった元勇者候補のまったり異世界ライフ + title_synonyms: + - The Laid-back Life in Another World of the Ex-Hero Candidate Who Turned out to be a Cheat from Level 2 + - Chillin Different World Life of the Ex-Brave Candidate was Cheat from Lv2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-08T00:00:00+00:00' + to: '2024-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2024 + to: + day: 24 + month: 6 + year: 2024 + string: Apr 8, 2024 to Jun 24, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.83 + scored_by: 130919 + rank: 6103 + popularity: 1115 + members: 253379 + favorites: 1080 + synopsis: |- + When a humble merchant named Banaza is summoned to the magical kingdom of Klyrode in another world, the citizens hope he will become the hero who can take down the threatening Dark Army. Unfortunately, Banaza does not gain any exceptional powers at level one as hero candidates usually do, and he has no way of returning to his old world. As compensation, he is sent to live in a faraway forest. Upon arriving, Banaza levels up once and suddenly gains limitless powers that he now has no idea what to do with. + + To avoid drawing attention, Banaza changes his appearance and assumes the name Flio. While away from home, he stumbles across a young demi-human girl named Fenrys, who is seemingly searching for the same forest Flio was sent to. However, she attacks him and reveals her true identity—a lupine demon. Luckily, Filo's unrivaled magic overpowers Fenrys, and she swears undying loyalty to him. However, Flio refuses to hold power over her; the two instead begin pretending to be a married couple and embark on a new life together. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 58125 + url: https://myanimelist.net/anime/58125/Look_Back + images: + jpg: + image_url: https://myanimelist.net/images/anime/1716/142633.jpg + small_image_url: https://myanimelist.net/images/anime/1716/142633t.jpg + large_image_url: https://myanimelist.net/images/anime/1716/142633l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1716/142633.webp + small_image_url: https://myanimelist.net/images/anime/1716/142633t.webp + large_image_url: https://myanimelist.net/images/anime/1716/142633l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gH6zVJVHEaM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Look Back + - type: Japanese + title: ルックバック + title: Look Back + title_english: null + title_japanese: ルックバック + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2024-06-28T00:00:00+00:00' + to: null + prop: + from: + day: 28 + month: 6 + year: 2024 + to: + day: null + month: null + year: null + string: Jun 28, 2024 + duration: 57 min + rating: PG-13 - Teens 13 or older + score: 8.62 + scored_by: 139591 + rank: 101 + popularity: 1168 + members: 244238 + favorites: 5036 + synopsis: |- + Ayumu Fujino may only be in the fourth grade, but she already basks in high praise for her hand-drawn four-panel comics featured in the school's newspaper. However, when she is asked to share the page with Kyoumoto—a reclusive student she has never met—Fujino feels inadequate for the first time: her free-spirited drawings look embarrassingly amateurish next to Kyoumoto's breathtakingly detailed art. + + For a year, Fujino shuts out the world, obsessively studying manga creation and drawing tirelessly to catch up to her faceless competition. But Kyoumoto's talent far exceeds hers, and Fujino quits it all. Another year passes, and on the day of their graduation, Fujino finally meets Kyoumoto. This unkempt, shy, and stuttering girl has actually been Fujino's biggest fan all along. Their encounter reignites Fujino's passion for art and sparks the beginning of a years-long friendship built on rivalry, admiration, and their shared love of manga. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 3021 + type: anime + name: Amazon MGM Studios + url: https://myanimelist.net/anime/producer/3021/Amazon_MGM_Studios + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 2196 + type: anime + name: Studio DURIAN + url: https://myanimelist.net/anime/producer/2196/Studio_DURIAN + genres: + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53434 + url: https://myanimelist.net/anime/53434/Maou_no_Ore_ga_Dorei_Elf_wo_Yome_ni_Shitanda_ga_Dou_Medereba_Ii + images: + jpg: + image_url: https://myanimelist.net/images/anime/1346/141203.jpg + small_image_url: https://myanimelist.net/images/anime/1346/141203t.jpg + large_image_url: https://myanimelist.net/images/anime/1346/141203l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1346/141203.webp + small_image_url: https://myanimelist.net/images/anime/1346/141203t.webp + large_image_url: https://myanimelist.net/images/anime/1346/141203l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/M3lb8-qaaTk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii? + - type: Synonym + title: I + - type: Synonym + title: the Demon Lord + - type: Synonym + title: Took a Slave Elf as My Wife + - type: Synonym + title: but How Do I Love Her? + - type: Synonym + title: Madome + - type: Japanese + title: 魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい? + - type: English + title: 'An Archdemon''s Dilemma: How to Love Your Elf Bride' + title: Maou no Ore ga Dorei Elf wo Yome ni Shitanda ga, Dou Medereba Ii? + title_english: 'An Archdemon''s Dilemma: How to Love Your Elf Bride' + title_japanese: 魔王の俺が奴隷エルフを嫁にしたんだが、どう愛でればいい? + title_synonyms: + - I + - the Demon Lord + - Took a Slave Elf as My Wife + - but How Do I Love Her? + - Madome + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-05T00:00:00+00:00' + to: '2024-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2024 + to: + day: 21 + month: 6 + year: 2024 + string: Apr 5, 2024 to Jun 21, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 103531 + rank: 3288 + popularity: 1324 + members: 210987 + favorites: 823 + synopsis: |- + The young but feared sorcerer Zagan is a candidate to become a member of the 13 Archdemons—a group of the strongest sorcerers in the world—following the death of their eldest member, Marchosias. When attending the deceased Archdemon's estate auction, Zagan finds something he did not expect: love at first sight. The sorcerer impulsively spends all his money to take Nephelia, a rare elf slave, back to his castle. Given the girl's mysterious and troubling past, there is a lot for Zagan to uncover about his new companion. + + However, Zagan's lack of experience with the unfamiliar feeling of love leads to many awkward moments between him and Nephelia, whom he calls by the nickname "Nephy." As the two grow closer and get more comfortable around each other, it becomes increasingly evident that Nephy's feelings might not be so different from Zagan's. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Fridays + time: 01:30 + timezone: Asia/Tokyo + string: Fridays at 01:30 (JST) + producers: + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2867 + type: anime + name: Unlimited Produce by TMS + url: https://myanimelist.net/anime/producer/2867/Unlimited_Produce_by_TMS + licensors: [] + studios: + - mal_id: 112 + type: anime + name: Brain's Base + url: https://myanimelist.net/anime/producer/112/Brains_Base + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 48418 + url: https://myanimelist.net/anime/48418/Maou_Gakuin_no_Futekigousha_II__Shijou_Saikyou_no_Maou_no_Shiso_Tensei_shite_Shison-tachi_no_Gakkou_e_Kayou_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1399/141651.jpg + small_image_url: https://myanimelist.net/images/anime/1399/141651t.jpg + large_image_url: https://myanimelist.net/images/anime/1399/141651l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1399/141651.webp + small_image_url: https://myanimelist.net/images/anime/1399/141651t.webp + large_image_url: https://myanimelist.net/images/anime/1399/141651l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/NvD4Qg2DgJc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou + Part 2' + - type: Synonym + title: Maou Gakuin no Futekigousha 2nd Season + - type: Synonym + title: The Misfit of Demon King Academy 2nd Season + - type: Japanese + title: 魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール + - type: English + title: The Misfit of Demon King Academy II Part 2 + title: 'Maou Gakuin no Futekigousha II: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e Kayou + Part 2' + title_english: The Misfit of Demon King Academy II Part 2 + title_japanese: 魔王学院の不適合者 II ~史上最強の魔王の始祖、転生して子孫たちの学校へ通う~ 第2クール + title_synonyms: + - Maou Gakuin no Futekigousha 2nd Season + - The Misfit of Demon King Academy 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-12T00:00:00+00:00' + to: '2024-07-25T00:00:00+00:00' + prop: + from: + day: 12 + month: 4 + year: 2024 + to: + day: 25 + month: 7 + year: 2024 + string: Apr 12, 2024 to Jul 25, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.49 + scored_by: 56665 + rank: 8225 + popularity: 1337 + members: 209187 + favorites: 829 + synopsis: 'Part two of Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou + e Kayou II.' + background: '' + season: spring + year: 2024 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2840 + type: anime + name: qooop + url: https://myanimelist.net/anime/producer/2840/qooop + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 53770 + url: https://myanimelist.net/anime/53770/Sentai_Daishikkaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1183/141489.jpg + small_image_url: https://myanimelist.net/images/anime/1183/141489t.jpg + large_image_url: https://myanimelist.net/images/anime/1183/141489l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1183/141489.webp + small_image_url: https://myanimelist.net/images/anime/1183/141489t.webp + large_image_url: https://myanimelist.net/images/anime/1183/141489l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/WA9Q4MBxD3s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sentai Daishikkaku + - type: Synonym + title: Ranger Reject + - type: Japanese + title: 戦隊大失格 + - type: English + title: Go! Go! Loser Ranger! + title: Sentai Daishikkaku + title_english: Go! Go! Loser Ranger! + title_japanese: 戦隊大失格 + title_synonyms: + - Ranger Reject + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-07T00:00:00+00:00' + to: '2024-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2024 + to: + day: 30 + month: 6 + year: 2024 + string: Apr 7, 2024 to Jun 30, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.3 + scored_by: 81654 + rank: 3303 + popularity: 1391 + members: 200637 + favorites: 844 + synopsis: |- + For the past 13 years, the Nefarious Monster Army have appeared beneath their floating fortress every Sunday to advance their goal of conquering Earth. Luckily, the Dragon Keepers are here to save the day! Having defeated the majority of the monsters during their initial invasion, the heroes now routinely show up to clear away any remnants of resistance. Unbeknownst to the public, however, every fight beyond the first has been a deliberate show put on by both sides: the Dragon Keepers reap the fame and prestige from fighting imaginary enemies, while the surviving weakest monsters, altogether called Dusters, are allowed to live for another day. + + Sentouin D, a Duster tired of living this life of shame, leaves the fortress in an attempt to overturn his fate. With the unexpected help of the mysterious ranger Yumeko Suzukiri, he discovers the key to defeating the Dragon Keepers lies in their Divine Artifacts—ultimate weapons crucial to the rangers' transformation and unique powers. Teaming up with Suzukiri to infiltrate the garrison of Red Keeper Sousei Akabane, Sentouin D must defy all expectations to save his species from the cruel hands of humans. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Sundays + time: '16:30' + timezone: Asia/Tokyo + string: Sundays at 16:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 2634 + type: anime + name: Yostar + url: https://myanimelist.net/anime/producer/2634/Yostar + licensors: [] + studios: + - mal_id: 2009 + type: anime + name: Yostar Pictures + url: https://myanimelist.net/anime/producer/2009/Yostar_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 55265 + url: https://myanimelist.net/anime/55265/Tensei_Kizoku_Kantei_Skill_de_Nariagaru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1763/139538.jpg + small_image_url: https://myanimelist.net/images/anime/1763/139538t.jpg + large_image_url: https://myanimelist.net/images/anime/1763/139538l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1763/139538.webp + small_image_url: https://myanimelist.net/images/anime/1763/139538t.webp + large_image_url: https://myanimelist.net/images/anime/1763/139538l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9-wiCnir-xQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei Kizoku, Kantei Skill de Nariagaru + - type: Synonym + title: Reincarnated as an Aristocrat with an Appraisal Skill + - type: Japanese + title: 転生貴族、鑑定スキルで成り上がる + - type: English + title: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World + title: Tensei Kizoku, Kantei Skill de Nariagaru + title_english: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World + title_japanese: 転生貴族、鑑定スキルで成り上がる + title_synonyms: + - Reincarnated as an Aristocrat with an Appraisal Skill + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-07T00:00:00+00:00' + to: '2024-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2024 + to: + day: 23 + month: 6 + year: 2024 + string: Apr 7, 2024 to Jun 23, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 99328 + rank: 4182 + popularity: 1418 + members: 196292 + favorites: 447 + synopsis: |- + After passing away, a Japanese office worker finds himself reincarnated in another world as Ars, the newborn son of the noble Louvent family. The Summerforth Empire, where the Louvents rule over a small territory of a few thousand people, is a medieval-like land plagued by social inequality and political instability. As Ars grows older and learns more and more about his new environment, he becomes convinced that war will soon erupt. + + Fortunately, though Ars was not blessed with unrivaled strength or extraordinary magical aptitude, he does possess Appraisal: a seemingly unique skill that allows him to instantly grasp someone's current abilities and latent talents merely by looking at them. In an effort to prepare his domain for the imminent strife, Ars resolves to enlist the most exceptional people he can find, paying no attention to superficial qualities like race or social status. + + [Written by MAL Rewrite] + background: Tensei Kizoku, Kantei Skill de Nariagaru was released on Blu-ray in three volumes from July 24, 2024, to + September 25, 2024. The series aired on CBC and TBS' Agaru Anime block. + season: spring + year: 2024 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 146 + type: anime + name: CBC Television + url: https://myanimelist.net/anime/producer/146/CBC_Television + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 2246 + type: anime + name: studio MOTHER + url: https://myanimelist.net/anime/producer/2246/studio_MOTHER + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 56690 + url: https://myanimelist.net/anime/56690/Re_Monster + images: + jpg: + image_url: https://myanimelist.net/images/anime/1523/141680.jpg + small_image_url: https://myanimelist.net/images/anime/1523/141680t.jpg + large_image_url: https://myanimelist.net/images/anime/1523/141680l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1523/141680.webp + small_image_url: https://myanimelist.net/images/anime/1523/141680t.webp + large_image_url: https://myanimelist.net/images/anime/1523/141680l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Eks6OyQNoEU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Monster + - type: Synonym + title: ReMonster + - type: Japanese + title: Re:Monster + - type: English + title: Re:Monster + title: Re:Monster + title_english: Re:Monster + title_japanese: Re:Monster + title_synonyms: + - ReMonster + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-05T00:00:00+00:00' + to: '2024-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2024 + to: + day: 21 + month: 6 + year: 2024 + string: Apr 5, 2024 to Jun 21, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.54 + scored_by: 98327 + rank: 7939 + popularity: 1476 + members: 188423 + favorites: 563 + synopsis: |- + Tomokui Kanata has been re-incarnated in the weakest goblin, named Goburou, after having undergone an unfortunate death. However Goburou has retained his previous life's memories, an unusual evolution, as well as becoming strong enough to gain status boosts from eating. + + In this alternate world of survival of the fittest, events unfold with competent subordinates and comrades, delightful case of the tail-wagging dog... + background: '' + season: spring + year: 2024 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + - mal_id: 2739 + type: anime + name: HIAN + url: https://myanimelist.net/anime/producer/2739/HIAN + - mal_id: 2866 + type: anime + name: Studio Tronc + url: https://myanimelist.net/anime/producer/2866/Studio_Tronc + - mal_id: 2869 + type: anime + name: Capibara + url: https://myanimelist.net/anime/producer/2869/Capibara + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 53865 + url: https://myanimelist.net/anime/53865/Yozakura-san_Chi_no_Daisakusen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1674/143715.jpg + small_image_url: https://myanimelist.net/images/anime/1674/143715t.jpg + large_image_url: https://myanimelist.net/images/anime/1674/143715l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1674/143715.webp + small_image_url: https://myanimelist.net/images/anime/1674/143715t.webp + large_image_url: https://myanimelist.net/images/anime/1674/143715l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xT3AryUklAk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yozakura-san Chi no Daisakusen + - type: Synonym + title: Mission of Yozakura Family + - type: Japanese + title: 夜桜さんちの大作戦 + - type: English + title: 'Mission: Yozakura Family' + title: Yozakura-san Chi no Daisakusen + title_english: 'Mission: Yozakura Family' + title_japanese: 夜桜さんちの大作戦 + title_synonyms: + - Mission of Yozakura Family + type: TV + source: Manga + episodes: 27 + status: Finished Airing + airing: false + aired: + from: '2024-04-07T00:00:00+00:00' + to: '2024-10-06T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2024 + to: + day: 6 + month: 10 + year: 2024 + string: Apr 7, 2024 to Oct 6, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.59 + scored_by: 50816 + rank: 1869 + popularity: 1660 + members: 163559 + favorites: 832 + synopsis: "After losing his entire family in a car crash, Taiyou Asano tries to pull away from his childhood friend,\ + \ Mutsumi Yozakura, but she assures him she is not going anywhere. Nevertheless, Taiyou becomes socially awkward,\ + \ struggling to make friends at school despite the efforts of his persistent classmates.\n\nOne day, the vice principal\ + \ calls Taiyou to his office, only to begin threatening the boy's life. Taiyou is swept away by a stranger and eventually\ + \ awakens to Mutsumi, who introduces him to her siblings—a family of spies who harbor superhuman abilities. Every\ + \ generation produces one ordinary human who becomes the family head. Mutsumi is one of these, and the family's mission\ + \ is to protect her with their lives. \n\nThe vice principal's real name is Kyoichiro Yozakura, and he is the eldest\ + \ son of the family. As Kyouichiro believes that Taiyou is a threat to Mutsumi's life, the only way to keep both Taiyou\ + \ and Mutsumi safe is for them to get married; the family has a rule that prevents them from killing within the Yozakura\ + \ household. Though at first reluctant, Taiyou agrees in order to protect Mutsumi. Now he must train as a Yozakura\ + \ spy to ward off the constant threats on the lives of both Mutsumi and himself.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2024 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50713 + url: https://myanimelist.net/anime/50713/Mahouka_Koukou_no_Rettousei_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1100/142255.jpg + small_image_url: https://myanimelist.net/images/anime/1100/142255t.jpg + large_image_url: https://myanimelist.net/images/anime/1100/142255l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1100/142255.webp + small_image_url: https://myanimelist.net/images/anime/1100/142255t.webp + large_image_url: https://myanimelist.net/images/anime/1100/142255l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BFTlxoD1Szw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mahouka Koukou no Rettousei 3rd Season + - type: Japanese + title: 魔法科高校の劣等生 第3シーズン + - type: English + title: The Irregular at Magic High School Season 3 + title: Mahouka Koukou no Rettousei 3rd Season + title_english: The Irregular at Magic High School Season 3 + title_japanese: 魔法科高校の劣等生 第3シーズン + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-04-05T00:00:00+00:00' + to: '2024-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2024 + to: + day: 28 + month: 6 + year: 2024 + string: Apr 5, 2024 to Jun 28, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 54797 + rank: 4809 + popularity: 1696 + members: 158680 + favorites: 485 + synopsis: |- + Driven by conflicting interest groups, the anti-magic movement is gaining dangerous momentum. Warned by the Yotsuba family, Tatsuya Shiba takes countermeasures to foil the plans of crooked politicians and corrupt journalists. He repels the first attack, which framed First High School as an unofficial venue for military education, but his most formidable enemies have yet to act. If Tatsuya wants to preserve his peaceful life with his sister, Miyuki, he must demonstrate once more that no one in the world can outsmart him. + + [Written by MAL Rewrite] + background: Mahouka Koukou no Rettousei 3rd Season was released on Blu-ray and DVD in six volumes from July 31, 2024, + to December 25, 2024. + season: spring + year: 2024 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 53835 + url: https://myanimelist.net/anime/53835/Unnamed_Memory + images: + jpg: + image_url: https://myanimelist.net/images/anime/1143/142439.jpg + small_image_url: https://myanimelist.net/images/anime/1143/142439t.jpg + large_image_url: https://myanimelist.net/images/anime/1143/142439l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1143/142439.webp + small_image_url: https://myanimelist.net/images/anime/1143/142439t.webp + large_image_url: https://myanimelist.net/images/anime/1143/142439l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/jKNscVwATwI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Unnamed Memory + - type: Japanese + title: Unnamed Memory + - type: English + title: Unnamed Memory + title: Unnamed Memory + title_english: Unnamed Memory + title_japanese: Unnamed Memory + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-09T00:00:00+00:00' + to: '2024-06-25T00:00:00+00:00' + prop: + from: + day: 9 + month: 4 + year: 2024 + to: + day: 25 + month: 6 + year: 2024 + string: Apr 9, 2024 to Jun 25, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.82 + scored_by: 58997 + rank: 6194 + popularity: 1694 + members: 158500 + favorites: 734 + synopsis: |- + As a young boy, Prince Oscar Lyeth Increatos Loz Farsas was cursed by the Witch of Silence, rendering it all but impossible for any woman to bear him a child. After 15 years of fruitlessly seeking a way to lift the spell, Oscar resorts to enlisting the help of a different witch. To this end, he heads to the Azure Tower, home of the Witch of the Azure Moon. Ascending the tower is no easy task; for decades, no one has overcome the array of traps, puzzles, and enemies designed to repulse any challengers. Oscar, however, easily climbs to the top, where he meets the fabled witch, Tinasha. To the prince's surprise, despite being hundreds of years old, Tinasha looks like a beautiful young woman in her late teens. + + Oscar explains his circumstances to the witch, who quickly perceives the true nature of his affliction. Though she claims that undoing the spell would be tremendously difficult, Tinasha proposes a workaround—to find Oscar a partner capable of withstanding the curse's effects. + + Realizing that such a woman is right in front of his eyes, Oscar boldly tells the witch to marry him. Though he is promptly rejected, the young prince refuses to back down, and the two eventually reach an agreement: Tinasha will leave the tower and live with Oscar for the next year. As the two continue searching for a way to lift Oscar's curse, word of Tinasha's emergence from isolation spreads, catching the attention of all sorts of old acquaintances. + + [Written by MAL Rewrite] + background: Unnamed Memory was initially scheduled to air in 2023 but was delayed due to production reasons. The series + was released on Blu-ray and DVD in two box sets from August 28, 2024, to September 25, 2024. + season: spring + year: 2024 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2147 + type: anime + name: Heart Company + url: https://myanimelist.net/anime/producer/2147/Heart_Company + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 57100 + url: https://myanimelist.net/anime/57100/The_New_Gate + images: + jpg: + image_url: https://myanimelist.net/images/anime/1898/141857.jpg + small_image_url: https://myanimelist.net/images/anime/1898/141857t.jpg + large_image_url: https://myanimelist.net/images/anime/1898/141857l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1898/141857.webp + small_image_url: https://myanimelist.net/images/anime/1898/141857t.webp + large_image_url: https://myanimelist.net/images/anime/1898/141857l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3XUJOkFXRiw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: The New Gate + - type: Japanese + title: THE NEW GATE + - type: English + title: The New Gate + title: The New Gate + title_english: The New Gate + title_japanese: THE NEW GATE + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-14T00:00:00+00:00' + to: '2024-06-30T00:00:00+00:00' + prop: + from: + day: 14 + month: 4 + year: 2024 + to: + day: 30 + month: 6 + year: 2024 + string: Apr 14, 2024 to Jun 30, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.47 + scored_by: 70455 + rank: 8365 + popularity: 1751 + members: 152531 + favorites: 422 + synopsis: |- + Trapped with thousands of people in The New Gate, a virtual reality game, the elite player Shinya Kiritani resolves to clear the game and finally return home. However, after he manages to single-handedly defeat the final boss, Shinya is transported to a new world—seemingly indistinguishable from the one he just escaped. + + Shinya discovers that as long as the game menu and his skills are unchanged, he cannot leave this oddly familiar world. In his search of a way to break out from this new dimensional prison, Shinya encounters Tiera Lucent, a hotel receptionist who happens to be a protégée of Schnee Raizar—one of Shinya's former party members. With this glimmer of hope, Shinya strives to reunite with Schnee and find out the truth about The New Gate. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + - mal_id: 2918 + type: anime + name: Studio Bus + url: https://myanimelist.net/anime/producer/2918/Studio_Bus + licensors: [] + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + - mal_id: 2600 + type: anime + name: Cloud Hearts + url: https://myanimelist.net/anime/producer/2600/Cloud_Hearts + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 56230 + url: https://myanimelist.net/anime/56230/Jiisan_Baasan_Wakagaeru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1676/141714.jpg + small_image_url: https://myanimelist.net/images/anime/1676/141714t.jpg + large_image_url: https://myanimelist.net/images/anime/1676/141714l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1676/141714.webp + small_image_url: https://myanimelist.net/images/anime/1676/141714t.webp + large_image_url: https://myanimelist.net/images/anime/1676/141714l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QKo-d7pmPRM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jiisan Baasan Wakagaeru + - type: Synonym + title: Ojiisan to Obaasan ga Wakagaetta Hanashi + - type: Synonym + title: A Story About a Grandpa and Grandma Who Returned Back to Their Youth + - type: Japanese + title: じいさんばあさん若返る + - type: English + title: Grandpa and Grandma Turn Young Again + title: Jiisan Baasan Wakagaeru + title_english: Grandpa and Grandma Turn Young Again + title_japanese: じいさんばあさん若返る + title_synonyms: + - Ojiisan to Obaasan ga Wakagaetta Hanashi + - A Story About a Grandpa and Grandma Who Returned Back to Their Youth + type: TV + source: Web manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2024-04-07T00:00:00+00:00' + to: '2024-06-16T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2024 + to: + day: 16 + month: 6 + year: 2024 + string: Apr 7, 2024 to Jun 16, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.46 + scored_by: 52812 + rank: 2438 + popularity: 1766 + members: 151226 + favorites: 587 + synopsis: |- + Shouzou Saitou and his wife, Ine, have been married for nearly sixty years. Though they have not become wealthy or been able to go on a honeymoon in all that time, their love has remained steadfast. The couple spend their days peacefully tending to an orchard of apple trees and receiving visits from their loving family. + + While tending to the apple tree they planted on their wedding day, which had snapped in half during a typhoon, the couple notices a golden apple hanging from one of the branches. They decide to eat the apple back at home, and the next morning, the couple awakens to find that they have become young again! + + In their new but familiar bodies, Shouzou and Ine are able to live life as they never had before: they engage in more modern activities together, such as participating in a sports festival and playing video games. As they revisit the memories of their young love, the romance between them is rekindled, inspiring similar feelings in the younger members of their family. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1600 + type: anime + name: On-Lead + url: https://myanimelist.net/anime/producer/1600/On-Lead + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 2554 + type: anime + name: Gekkou + url: https://myanimelist.net/anime/producer/2554/Gekkou + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 52196 + url: https://myanimelist.net/anime/52196/Date_A_Live_V + images: + jpg: + image_url: https://myanimelist.net/images/anime/1659/141438.jpg + small_image_url: https://myanimelist.net/images/anime/1659/141438t.jpg + large_image_url: https://myanimelist.net/images/anime/1659/141438l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1659/141438.webp + small_image_url: https://myanimelist.net/images/anime/1659/141438t.webp + large_image_url: https://myanimelist.net/images/anime/1659/141438l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/UMkwpQ8eIuo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Date A Live V + - type: Synonym + title: Date A Live 5 + - type: Synonym + title: Date A Live Fifth Season + - type: Synonym + title: DAL 5 + - type: Japanese + title: デート・ア・ライブⅤ + - type: English + title: Date A Live V + title: Date A Live V + title_english: Date A Live V + title_japanese: デート・ア・ライブⅤ + title_synonyms: + - Date A Live 5 + - Date A Live Fifth Season + - DAL 5 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-10T00:00:00+00:00' + to: '2024-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2024 + to: + day: 26 + month: 6 + year: 2024 + string: Apr 10, 2024 to Jun 26, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.71 + scored_by: 51018 + rank: 1424 + popularity: 1839 + members: 143327 + favorites: 1444 + synopsis: |- + Shidou Itsuka faces greater peril than ever due to his continued involvement with Ratatoskr. He has already sealed 10 Spirits, and Isaac Westcott, leader of Deus Ex Machina Industries, has finally decided to kill Shidou and plunder the Spirits' powers for himself. + + To achieve his goal, Isaac declares an all-out war against Ratatoskr, forcing the organization to exhaust its resources to ensure Shidou's survival. Despite being severely outnumbered and outmatched, a glimmer of hope exists in the form of the Spirit of Time, Kurumi Tokisaki. Shidou must seal and acquire Kurumi's power to travel to the past and confront the Spirit of Origin—the catalyst that started it all. + + [Written by MAL Rewrite] + background: Date A Live V adapts novels 17-19 of Koushi Tachibana's light novel series of the same name. The series + was released on Blu-ray and DVD in two volumes from July 24, 2024, to August 28, 2024. + season: spring + year: 2024 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2670 + type: anime + name: Geek Pictures + url: https://myanimelist.net/anime/producer/2670/Geek_Pictures + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 55597 + url: https://myanimelist.net/anime/55597/Hananoi-kun_to_Koi_no_Yamai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1646/141411.jpg + small_image_url: https://myanimelist.net/images/anime/1646/141411t.jpg + large_image_url: https://myanimelist.net/images/anime/1646/141411l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1646/141411.webp + small_image_url: https://myanimelist.net/images/anime/1646/141411t.webp + large_image_url: https://myanimelist.net/images/anime/1646/141411l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SYyAFIImIdA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hananoi-kun to Koi no Yamai + - type: Synonym + title: I'm Addicted to You. + - type: Japanese + title: 花野井くんと恋の病 + - type: English + title: A Condition Called Love + title: Hananoi-kun to Koi no Yamai + title_english: A Condition Called Love + title_japanese: 花野井くんと恋の病 + title_synonyms: + - I'm Addicted to You. + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-04T00:00:00+00:00' + to: '2024-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2024 + to: + day: 20 + month: 6 + year: 2024 + string: Apr 4, 2024 to Jun 20, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.78 + scored_by: 53000 + rank: 6399 + popularity: 1872 + members: 140459 + favorites: 567 + synopsis: |- + Hotaru Hinase has lived nearly sixteen years without romance. She is satisfied alone as long as she can enjoy the little things in life with her beloved friends and family. In her mind, she is not meant to fall in love, nor does she understand the concept. + + While out with a friend, Hotaru witnesses the severe breakup of her schoolmate Hananoi, to whom she has never spoken. Afterward, she sees him sitting in the snow and holds her umbrella over him. To her surprise, this gesture results in him confessing his feelings for her at school the next day. Though Hotaru rejects him, Hananoi insists on letting her get to know him. He does whatever he can to woo her, from changing his hairstyle to finding her lost hairpin in the snow. + + Although she has no romantic feelings towards him, Hotaru believes that by spending more time with him, she will learn how to love. She agrees to date him and slowly begins to navigate what being a girlfriend entails, including how to reciprocate the kind gestures that Hananoi continues to perform for her. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Thursdays + time: '23:56' + timezone: Asia/Tokyo + string: Thursdays at 23:56 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + licensors: [] + studios: + - mal_id: 2455 + type: anime + name: East Fish Studio + url: https://myanimelist.net/anime/producer/2455/East_Fish_Studio + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 55102 + url: https://myanimelist.net/anime/55102/Girls_Band_Cry + images: + jpg: + image_url: https://myanimelist.net/images/anime/1711/140515.jpg + small_image_url: https://myanimelist.net/images/anime/1711/140515t.jpg + large_image_url: https://myanimelist.net/images/anime/1711/140515l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1711/140515.webp + small_image_url: https://myanimelist.net/images/anime/1711/140515t.webp + large_image_url: https://myanimelist.net/images/anime/1711/140515l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eIFTnaPXnRM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Girls Band Cry + - type: Japanese + title: ガールズバンドクライ + title: Girls Band Cry + title_english: null + title_japanese: ガールズバンドクライ + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-04-06T00:00:00+00:00' + to: '2024-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2024 + to: + day: 29 + month: 6 + year: 2024 + string: Apr 6, 2024 to Jun 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.37 + scored_by: 55087 + rank: 254 + popularity: 1914 + members: 137518 + favorites: 3191 + synopsis: |- + Everyone yearns to find their true purpose in life. This is also true for Nina Iseri, a 17-year-old girl looking to enroll in a good university, but the world always seems to work against her. On her very first day in Tokyo, she gets lost, ignored, and locked out of her new apartment. However, an unexpected opportunity arises when Nina meets Momoka Kawaragi, one of her favorite guitarists. + + After Nina joins Momoka for a street performance, Momoka decides they should start a band together. While Nina initially hesitates, her determination grows as they start acquiring more bandmates—the beautiful drummer Subaru Awa, the aloof keyboardist Tomo Ebizuka, and the intelligent bassist Rupa. The five girls face challenges both in the music industry and within themselves, but their shared passion for music never lets them give up on their dreams. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 2930 + type: anime + name: agehasprings + url: https://myanimelist.net/anime/producer/2930/agehasprings + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + demographics: [] + - mal_id: 53407 + url: https://myanimelist.net/anime/53407/Bartender__Kami_no_Glass + images: + jpg: + image_url: https://myanimelist.net/images/anime/1462/142547.jpg + small_image_url: https://myanimelist.net/images/anime/1462/142547t.jpg + large_image_url: https://myanimelist.net/images/anime/1462/142547l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1462/142547.webp + small_image_url: https://myanimelist.net/images/anime/1462/142547t.webp + large_image_url: https://myanimelist.net/images/anime/1462/142547l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JlIqRNxdTIs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bartender: Kami no Glass' + - type: Japanese + title: バーテンダー 神のグラス + - type: English + title: Bartender Glass of God + title: 'Bartender: Kami no Glass' + title_english: Bartender Glass of God + title_japanese: バーテンダー 神のグラス + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-04-04T00:00:00+00:00' + to: '2024-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2024 + to: + day: 20 + month: 6 + year: 2024 + string: Apr 4, 2024 to Jun 20, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.38 + scored_by: 52942 + rank: 2815 + popularity: 1915 + members: 137285 + favorites: 542 + synopsis: |- + Miwa Kurushima and her colleague Yukari Higuchi hunt for a skilled individual to run the counter bar at the famous Hotel Cardinal. The chairman of the hotel demands only one thing of the potential hire: the bartender must be able to craft the ultimate drink known as the "Glass of God." Because Miwa does not fully understand the requirement, her search runs dry after everyone she has scouted cannot get past the chairman's scrutiny. + + Nestled in a quiet and secluded place among the bustling alleys of Ginza is Eden Hall. This cozy bar is maintained by Ryuu Sasakura, a prodigy mixologist who knows exactly what drink will ease his customers' worries at any given time. Every glass that he serves is garnished with humility, providing much-needed solace to people from all walks of life in their time of need. + + In a chance encounter, the chairman is left speechless by Ryuu's astute bartending skills and is determined to have him join Hotel Cardinal. He becomes one of Ryuu's regulars, attempting daily to convince Ryuu to leave Eden Hall. But even with the assistance of Miwa, it is more difficult than expected to recruit this particular bartender. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2024 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 2527 + type: anime + name: Liber + url: https://myanimelist.net/anime/producer/2527/Liber + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/59-2024-summer.yaml b/test/fixtures/jikan/season_matrix/59-2024-summer.yaml new file mode 100644 index 0000000..b490960 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/59-2024-summer.yaml @@ -0,0 +1,3307 @@ +metadata: + captured_at: '2026-05-11T11:35:06Z' + label: 2024-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2024/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:06 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:7c3f482546b3ba0f5b7251f27253553bf0825d41 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 309 + per_page: 25 + data: + - mal_id: 55791 + url: https://myanimelist.net/anime/55791/Oshi_no_Ko_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1006/143302.jpg + small_image_url: https://myanimelist.net/images/anime/1006/143302t.jpg + large_image_url: https://myanimelist.net/images/anime/1006/143302l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1006/143302.webp + small_image_url: https://myanimelist.net/images/anime/1006/143302t.webp + large_image_url: https://myanimelist.net/images/anime/1006/143302l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QMuajQlx64c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: '[Oshi no Ko] 2nd Season' + - type: Synonym + title: My Star Season 2 + - type: Japanese + title: 【推しの子】第2期 + - type: English + title: '[Oshi No Ko] Season 2' + title: '[Oshi no Ko] 2nd Season' + title_english: '[Oshi No Ko] Season 2' + title_japanese: 【推しの子】第2期 + title_synonyms: + - My Star Season 2 + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-07-03T00:00:00+00:00' + to: '2024-10-06T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2024 + to: + day: 6 + month: 10 + year: 2024 + string: Jul 3, 2024 to Oct 6, 2024 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.51 + scored_by: 260646 + rank: 162 + popularity: 492 + members: 519681 + favorites: 6077 + synopsis: |- + With the help of producer Masaya Kaburagi, Aquamarine "Aqua" Hoshino and Kana Arima have landed the roles of Touki and Tsurugi in Lala Lai Theatrical Company's stage adaptation of the popular manga series Tokyo Blade. Co-starring with them is Aqua's girlfriend, Akane Kurokawa, who plays Touki's fiancée, Princess Saya. Due to the fanbase preferring Tsurugi as Touki's love interest, Saya has made fewer and fewer appearances in the manga, making it difficult for Akane to fully immerse herself in the role. Her struggles are compounded by differences between the play's script and the original work—differences that also frustrate Tokyo Blade's author, Abiko Samejima. + + Aqua, however, is more concerned with his personal goals than he is with the play. He has only one objective in mind: to grow closer to director Toshirou Kindaichi and find out what he knows about Aqua's mother, Ai. + + [Written by MAL Rewrite] + background: '[Oshi no Ko] 2nd Season was released on Blu-ray and DVD in six volumes from October 25, 2024, to March + 26, 2025.' + season: summer + year: 2024 + broadcast: + day: Wednesdays + time: '23:00' + timezone: Asia/Tokyo + string: Wednesdays at 23:00 (JST) + producers: + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 75 + type: anime + name: Showbiz + url: https://myanimelist.net/anime/genre/75/Showbiz + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 54744 + url: https://myanimelist.net/anime/54744/Tokidoki_Bosotto_Russia-go_de_Dereru_Tonari_no_Alya-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1596/152806.jpg + small_image_url: https://myanimelist.net/images/anime/1596/152806t.jpg + large_image_url: https://myanimelist.net/images/anime/1596/152806l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1596/152806.webp + small_image_url: https://myanimelist.net/images/anime/1596/152806t.webp + large_image_url: https://myanimelist.net/images/anime/1596/152806l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pBX6TtOlYow?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san + - type: Synonym + title: Roshidere + - type: Synonym + title: Alya-san + - type: Synonym + title: who sits besides me and sometimes murmurs affectionately in Russian. + - type: Synonym + title: Arya Next Door Sometimes Lapses into Russian + - type: Japanese + title: 時々ボソッとロシア語でデレる隣のアーリャさん + - type: English + title: Alya Sometimes Hides Her Feelings in Russian + title: Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san + title_english: Alya Sometimes Hides Her Feelings in Russian + title_japanese: 時々ボソッとロシア語でデレる隣のアーリャさん + title_synonyms: + - Roshidere + - Alya-san + - who sits besides me and sometimes murmurs affectionately in Russian. + - Arya Next Door Sometimes Lapses into Russian + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-03T00:00:00+00:00' + to: '2024-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2024 + to: + day: 18 + month: 9 + year: 2024 + string: Jul 3, 2024 to Sep 18, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.54 + scored_by: 273293 + rank: 2083 + popularity: 517 + members: 503659 + favorites: 5744 + synopsis: |- + Seirei Academy is a prestigious school attended by the very best students in Japan. Alisa Mikhailovna "Alya" Kujou, the half-Russian and half-Japanese treasurer of the school's student council, is known for her intelligence, stunning looks, and rigid personality. Contrasting her near-flawless persona, Alya's unmotivated classmate Masachika Kuze slacks off during lessons and seems to show no interest in her. + + Initially irritated, Alya gradually becomes more intrigued by Masachika and starts expressing her affection for him in Russian. However, she is oblivious to his secret—he understands the language fluently! Due to a childhood friend who was temporarily staying in Japan, Masachika has been studying Russian in hopes of reuniting with her. + + As the two spend more time together, the playful and eccentric relationship between them quickly deepens. In the meantime, both must learn to navigate their new growing feelings for one another. + + [Written by MAL Rewrite] + background: The series was released on Blu-ray and DVD in three volumes from September 25, 2024, to November 27, 2024. + season: summer + year: 2024 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 167 + type: anime + name: Sega + url: https://myanimelist.net/anime/producer/167/Sega + - mal_id: 711 + type: anime + name: Delfi Sound + url: https://myanimelist.net/anime/producer/711/Delfi_Sound + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 58059 + url: https://myanimelist.net/anime/58059/Tsue_to_Tsurugi_no_Wistoria + images: + jpg: + image_url: https://myanimelist.net/images/anime/1281/144104.jpg + small_image_url: https://myanimelist.net/images/anime/1281/144104t.jpg + large_image_url: https://myanimelist.net/images/anime/1281/144104l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1281/144104.webp + small_image_url: https://myanimelist.net/images/anime/1281/144104t.webp + large_image_url: https://myanimelist.net/images/anime/1281/144104l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xR6hV_dVHIc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tsue to Tsurugi no Wistoria + - type: Synonym + title: Wistoria's Wand and Sword + - type: Japanese + title: 杖と剣のウィストリア + - type: English + title: 'Wistoria: Wand and Sword' + title: Tsue to Tsurugi no Wistoria + title_english: 'Wistoria: Wand and Sword' + title_japanese: 杖と剣のウィストリア + title_synonyms: + - Wistoria's Wand and Sword + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-07T00:00:00+00:00' + to: '2024-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2024 + to: + day: 29 + month: 9 + year: 2024 + string: Jul 7, 2024 to Sep 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.86 + scored_by: 199225 + rank: 1047 + popularity: 732 + members: 374584 + favorites: 2032 + synopsis: |- + When humanity was oppressed by mysterious foes known as the Celestial Hosts, five exceptional mages joined forces to defeat them. In fear that these formidable enemies would return, the five most powerful mages, known as the Magia Vander, built a magical dome and a tower to contain them. Since then, the five strongest mages of every generation are tasked with monitoring the dome from the top of the Wizard's Tower. + + Inspired by this story, childhood friends Will Serfort and Elfaria Albis Serfort promised each other that they would climb to the top of the Wizard's Tower. However, now a sixth-year student at Regarden Magic Academy, Will's future looks bleak. Although Elfaria managed to join the ranks of the Magia Vander five years prior thanks to her unparalleled magical power, Will has no magical abilities whatsoever, attracting the ire of teachers and students alike. + + However, blessed with an exceptional physique, Will is able to slay monsters in the labyrinth and prevail against skilled magicians with the only aid of his sword and a few magical items. Determined to climb the Wizard's Tower at all cost, Will is determined to not let anyone or anything prevent him from keeping the promise he made to Elfaria. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Sundays + time: '16:30' + timezone: Asia/Tokyo + string: Sundays at 16:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 60 + type: anime + name: Actas + url: https://myanimelist.net/anime/producer/60/Actas + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57524 + url: https://myanimelist.net/anime/57524/Make_Heroine_ga_Oosugiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1332/143513.jpg + small_image_url: https://myanimelist.net/images/anime/1332/143513t.jpg + large_image_url: https://myanimelist.net/images/anime/1332/143513l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1332/143513.webp + small_image_url: https://myanimelist.net/images/anime/1332/143513t.webp + large_image_url: https://myanimelist.net/images/anime/1332/143513l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/uytJ6_KTCZI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Make Heroine ga Oosugiru! + - type: Synonym + title: Makeine + - type: Japanese + title: 負けヒロインが多すぎる! + - type: English + title: 'Makeine: Too Many Losing Heroines!' + title: Make Heroine ga Oosugiru! + title_english: 'Makeine: Too Many Losing Heroines!' + title_japanese: 負けヒロインが多すぎる! + title_synonyms: + - Makeine + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-14T00:00:00+00:00' + to: '2024-09-29T00:00:00+00:00' + prop: + from: + day: 14 + month: 7 + year: 2024 + to: + day: 29 + month: 9 + year: 2024 + string: Jul 14, 2024 to Sep 29, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.08 + scored_by: 175562 + rank: 632 + popularity: 844 + members: 333517 + favorites: 3605 + synopsis: "Despite not understanding much about fleeting teen romance, first-year high school student Kazuhiko Nukumizu\ + \ still wonders how he would react if his life were to be turned into a love story. Regardless, as a self-proclaimed\ + \ \"background character,\" Nukumizu is satisfied continuing his life as an introvert with a negligible social life.\ + \ However, he suddenly finds himself too close to the spotlight when he witnesses his popular classmate Anna Yanami\ + \ be rejected by her childhood friend in the middle of a family restaurant. \n\nWhile Nukumizu wishes he could just\ + \ forget what he saw and move on, Anna ends up forcefully confiding herself in Nukumizu, lamenting her status as a\ + \ childhood friend fated to have her beloved stolen. As he becomes dragged into Anna's situation, Nukumizu soon gets\ + \ caught up in the relationship drama of two more girls: Lemon Yakishio, an outgoing member of the track and field\ + \ club; and Chika Komari, a shy member of the literature club. Now thrust out of his comfort zone, Nukumizu finds\ + \ himself a major character in the lives of too many losing heroines. \n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2024 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + - mal_id: 2976 + type: anime + name: JR Tokai Agency + url: https://myanimelist.net/anime/producer/2976/JR_Tokai_Agency + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 52635 + url: https://myanimelist.net/anime/52635/Kami_no_Tou__Ouji_no_Kikan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1218/143537.jpg + small_image_url: https://myanimelist.net/images/anime/1218/143537t.jpg + large_image_url: https://myanimelist.net/images/anime/1218/143537l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1218/143537.webp + small_image_url: https://myanimelist.net/images/anime/1218/143537t.webp + large_image_url: https://myanimelist.net/images/anime/1218/143537l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JHUeY2QwBi0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kami no Tou: Ouji no Kikan' + - type: Synonym + title: Sin-ui Tap + - type: Synonym + title: 신의 탑 + - type: Synonym + title: 'Tower of God: Return of the Prince' + - type: Synonym + title: Kami no Tou 2nd Season + - type: Japanese + title: 神之塔 -Tower of God- 王子の帰還 + - type: English + title: 'Tower of God Season 2: Return of the Prince' + title: 'Kami no Tou: Ouji no Kikan' + title_english: 'Tower of God Season 2: Return of the Prince' + title_japanese: 神之塔 -Tower of God- 王子の帰還 + title_synonyms: + - Sin-ui Tap + - 신의 탑 + - 'Tower of God: Return of the Prince' + - Kami no Tou 2nd Season + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-07-07T00:00:00+00:00' + to: '2024-09-29T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2024 + to: + day: 29 + month: 9 + year: 2024 + string: Jul 7, 2024 to Sep 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.66 + scored_by: 116056 + rank: 7193 + popularity: 962 + members: 292192 + favorites: 1298 + synopsis: |- + On the 20th floor of the Tower, the "Regulars" who have been permitted to enter have to undertake arduous and extremely expensive tests to rank up. Most abandon hope and choose to stay where they are—but not Ja Wangnan. + + Wangnan is determined to reach the top and become the king of the Tower. However, he is weak and has repeatedly failed the exam, with debt collectors tailing him. In desperation, he attempts the exam one more time, only to encounter a mysterious and powerful individual: Jyu Viole Grace, a member of the crime syndicate FUG. + + Cursing his rotten luck, Wangnan has no choice but to form alliances with strong people, including Viole—who still refuses to be part of any team. Amid a dire situation, Wangnan must find a way to change Viole's mind to finally advance past the 20th floor, or he will never get a chance to build his legacy. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2876 + type: anime + name: Line Digital Frontier + url: https://myanimelist.net/anime/producer/2876/Line_Digital_Frontier + licensors: [] + studios: + - mal_id: 229 + type: anime + name: The Answer Studio + url: https://myanimelist.net/anime/producer/229/The_Answer_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 58426 + url: https://myanimelist.net/anime/58426/Shikanoko_Nokonoko_Koshitantan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1094/143324.jpg + small_image_url: https://myanimelist.net/images/anime/1094/143324t.jpg + large_image_url: https://myanimelist.net/images/anime/1094/143324l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1094/143324.webp + small_image_url: https://myanimelist.net/images/anime/1094/143324t.webp + large_image_url: https://myanimelist.net/images/anime/1094/143324l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Bf4XTzeUBHo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shikanoko Nokonoko Koshitantan + - type: Japanese + title: しかのこのこのここしたんたん + - type: English + title: My Deer Friend Nokotan + title: Shikanoko Nokonoko Koshitantan + title_english: My Deer Friend Nokotan + title_japanese: しかのこのこのここしたんたん + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-07T00:00:00+00:00' + to: '2024-09-22T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2024 + to: + day: 22 + month: 9 + year: 2024 + string: Jul 7, 2024 to Sep 22, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.95 + scored_by: 118145 + rank: 5431 + popularity: 1009 + members: 278530 + favorites: 1713 + synopsis: |- + Torako Koshi is the epitome of perfection. With her peerless beauty, top-notch grades, and position as student council president, her popularity in school is unrivaled. However, she harbors a dark secret—she was a delinquent back in middle school—and this is something she conceals to the best of her abilities. + + Unfortunately, when she meets the mysterious deer girl Noko Shikanoko, Torako's hidden shame is constantly on the precipice of being exposed due to Shikanoko's rather weird antics. To maintain the reputation she worked so hard for, Torako must go along with Shikanoko's whims, even going so far as to become president of the newly established Deer Club. All her efforts will be rewarded if she can prevent the menacing doe from accidentally blurting out damaging details about her personal history that will undoubtedly unleash Torako's greatest nightmare. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52367 + url: https://myanimelist.net/anime/52367/Isekai_Shikkaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1252/143457.jpg + small_image_url: https://myanimelist.net/images/anime/1252/143457t.jpg + large_image_url: https://myanimelist.net/images/anime/1252/143457l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1252/143457.webp + small_image_url: https://myanimelist.net/images/anime/1252/143457t.webp + large_image_url: https://myanimelist.net/images/anime/1252/143457l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/lBFHDt7E7RA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Shikkaku + - type: Synonym + title: No Longer Human...In Another World + - type: Japanese + title: 異世界失格 + - type: English + title: No Longer Allowed in Another World + title: Isekai Shikkaku + title_english: No Longer Allowed in Another World + title_japanese: 異世界失格 + title_synonyms: + - No Longer Human...In Another World + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-09T00:00:00+00:00' + to: '2024-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2024 + to: + day: 24 + month: 9 + year: 2024 + string: Jul 9, 2024 to Sep 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 100439 + rank: 3624 + popularity: 1185 + members: 238985 + favorites: 862 + synopsis: |- + Just as the famous writer Sensei is about to accomplish his life ambition and commit double suicide with his lover Sacchan, he is hit by a truck and transported to another world. Deemed an adventurer by the local priestess Annette, Sensei is given the daunting mission of slaying the demon king. Refusing to play into his new role, Sensei decides his efforts are better served looking for Sacchan in the hope that she is somewhere in this new world. + + Early on in his journey, Sensei crosses paths with the martial artist Tama and unexpectedly saves her from mortal peril. Grateful for his actions, Tama decides to escort him. The pair are soon joined by Annette who, seduced by the writer's strong personality, has sworn to protect Sensei's life. + + As the unlikely trio wander the dangerous, monster-infested lands, they soon realize that human beings might be the true threats to the peace of the world—and Sensei might be the only one with the power to stop them. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 2298 + type: anime + name: Atelier Pontdarc + url: https://myanimelist.net/anime/producer/2298/Atelier_Pontdarc + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + - mal_id: 57892 + url: https://myanimelist.net/anime/57892/Hazurewaku_no_Joutai_Ijou_Skill_de_Saikyou_ni_Natta_Ore_ga_Subete_wo_Juurin_suru_made + images: + jpg: + image_url: https://myanimelist.net/images/anime/1914/143630.jpg + small_image_url: https://myanimelist.net/images/anime/1914/143630t.jpg + large_image_url: https://myanimelist.net/images/anime/1914/143630l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1914/143630.webp + small_image_url: https://myanimelist.net/images/anime/1914/143630t.webp + large_image_url: https://myanimelist.net/images/anime/1914/143630l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/oxaZZk3G30Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hazurewaku no "Joutai Ijou Skill" de Saikyou ni Natta Ore ga Subete wo Juurin suru made + - type: Synonym + title: I became the strongest with the failure frame "Abnormal State Skill" as I devastated everything + - type: Synonym + title: 'Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells' + - type: Japanese + title: ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで + - type: English + title: 'Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells' + title: Hazurewaku no "Joutai Ijou Skill" de Saikyou ni Natta Ore ga Subete wo Juurin suru made + title_english: 'Failure Frame: I Became the Strongest and Annihilated Everything With Low-Level Spells' + title_japanese: ハズレ枠の【状態異常スキル】で最強になった俺がすべてを蹂躙するまで + title_synonyms: + - I became the strongest with the failure frame "Abnormal State Skill" as I devastated everything + - 'Failure Frame: I Became the Strongest and Annihilated Everything with Low-Level Spells' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-05T00:00:00+00:00' + to: '2024-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2024 + to: + day: 27 + month: 9 + year: 2024 + string: Jul 5, 2024 to Sep 27, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.47 + scored_by: 119683 + rank: 8334 + popularity: 1223 + members: 231082 + favorites: 875 + synopsis: |- + When loner Touka Mimori is summoned to another world alongside his classmates, he obtains the power to inflict status ailments, such as paralysis or poison, on his enemies. Unfortunately for him, skills of this nature are considered useless due to their low success rate, and Touka is thus assigned the title of E-rank hero. Things take a further turn for the worse when Vicius, the goddess who summoned the class, reveals that the lowest-ranked hero will be disposed of so that they do not hinder those with greater talent. + + Banished to a notoriously dangerous area, Touka comes face-to-face with death after being cornered by a minotaur-like creature. In a desperate attempt to survive, he uses his supposedly worthless skill—only to quickly realize that it works almost every time. Armed with the ability to render the monsters standing in his way completely helpless, Touka resolves to track down the goddess that tossed him aside and exact his revenge. + + [Written by MAL Rewrite] + background: Hazurewaku no "Joutai Ijou Skill" de Saikyou ni Natta Ore ga Subete wo Juurin suru made was released on + Blu-ray in three volumes from September 18, 2024, to November 20, 2024. + season: summer + year: 2024 + broadcast: + day: Fridays + time: 00:59 + timezone: Asia/Tokyo + string: Fridays at 00:59 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + licensors: [] + studios: + - mal_id: 35 + type: anime + name: Seven Arcs + url: https://myanimelist.net/anime/producer/35/Seven_Arcs + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 54968 + url: https://myanimelist.net/anime/54968/Giji_Harem + images: + jpg: + image_url: https://myanimelist.net/images/anime/1607/143547.jpg + small_image_url: https://myanimelist.net/images/anime/1607/143547t.jpg + large_image_url: https://myanimelist.net/images/anime/1607/143547l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1607/143547.webp + small_image_url: https://myanimelist.net/images/anime/1607/143547t.webp + large_image_url: https://myanimelist.net/images/anime/1607/143547l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g_59WnHpSPY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Giji Harem + - type: Japanese + title: 疑似ハーレム + - type: English + title: Pseudo Harem + title: Giji Harem + title_english: Pseudo Harem + title_japanese: 疑似ハーレム + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-05T00:00:00+00:00' + to: '2024-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2024 + to: + day: 20 + month: 9 + year: 2024 + string: Jul 5, 2024 to Sep 20, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.83 + scored_by: 96382 + rank: 1103 + popularity: 1234 + members: 228583 + favorites: 1761 + synopsis: |- + Eiji Kitahama has a dream shared by many high school guys: to be popular and have a harem of girls fawning over him. Luckily for him, his new junior in the drama club, Rin Nanakura, has decided to help him realize this wish. Using her impressive acting abilities, she takes on many personalities, from teasing to calm and collected, to play characters in Eiji's simulated harem. + + As her connection with Eiji deepens, Rin expands her repertoire, quickly swapping between characters while enjoying high school life together in the club. Through her acting, the real Rin Nanakura tries her best to win Eiji's heart. + + [Written by MAL Rewrite] + background: Giji Harem was released on Blu-ray in a box set on November 22, 2024. + season: summer + year: 2024 + broadcast: + day: Fridays + time: 00:30 + timezone: Asia/Tokyo + string: Fridays at 00:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: [] + studios: + - mal_id: 70 + type: anime + name: Nomad + url: https://myanimelist.net/anime/producer/70/Nomad + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57058 + url: https://myanimelist.net/anime/57058/Ore_wa_Subete_wo_Parry_suru__Gyaku_Kanchigai_no_Sekai_Saikyou_wa_Boukensha_ni_Naritai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1747/143101.jpg + small_image_url: https://myanimelist.net/images/anime/1747/143101t.jpg + large_image_url: https://myanimelist.net/images/anime/1747/143101l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1747/143101.webp + small_image_url: https://myanimelist.net/images/anime/1747/143101t.webp + large_image_url: https://myanimelist.net/images/anime/1747/143101l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/F6RmPmdpazw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ore wa Subete wo "Parry" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai' + - type: Synonym + title: 'I Will "Parry" All: The World''s Strongest Man Wanna Be an Adventurer' + - type: Synonym + title: 'I Parry Everything: What Do You Mean I''m the Strongest? I''m Not Even an Adventurer Yet!' + - type: Japanese + title: 俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~ + - type: English + title: I Parry Everything + title: 'Ore wa Subete wo "Parry" suru: Gyaku Kanchigai no Sekai Saikyou wa Boukensha ni Naritai' + title_english: I Parry Everything + title_japanese: 俺は全てを【パリイ】する ~逆勘違いの世界最強は冒険者になりたい~ + title_synonyms: + - 'I Will "Parry" All: The World''s Strongest Man Wanna Be an Adventurer' + - 'I Parry Everything: What Do You Mean I''m the Strongest? I''m Not Even an Adventurer Yet!' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-05T00:00:00+00:00' + to: '2024-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2024 + to: + day: 20 + month: 9 + year: 2024 + string: Jul 5, 2024 to Sep 20, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 108699 + rank: 5877 + popularity: 1291 + members: 218165 + favorites: 717 + synopsis: |- + The Kingdom of Clays faces a dire crisis: an assassination attempt has just been made on its own Princess Lynneburg, and its neighboring countries eye the aftermath like starving vultures, plotting the Kingdom's downfall. The ensuing conflict will shape the face of the continent for centuries to come...but Noor doesn't have a clue about any of that! Having freshly arrived at the royal capital after over a decade of rigorous, isolated training at his mountain home, he's dead set on achieving his childhood dream of becoming an adventurer, even if the only skills he possesses are useless ones. Sure, he can "Parry" thousands of swords in the span of a single breath, but everybody knows you need more than that if you want to be an adventurer! Our hero's road to making his dream come true will be long(?) and arduous(?)—but if there's one thing Noor's not afraid of, it's some good ol' fashioned hard work! + + (Source: J-Novel Club) + background: '' + season: summer + year: 2024 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 52481 + url: https://myanimelist.net/anime/52481/Gimai_Seikatsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1420/143707.jpg + small_image_url: https://myanimelist.net/images/anime/1420/143707t.jpg + large_image_url: https://myanimelist.net/images/anime/1420/143707l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1420/143707.webp + small_image_url: https://myanimelist.net/images/anime/1420/143707t.webp + large_image_url: https://myanimelist.net/images/anime/1420/143707l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RRwt3t98bUA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gimai Seikatsu + - type: Japanese + title: 義妹生活 + - type: English + title: Days with My Stepsister + title: Gimai Seikatsu + title_english: Days with My Stepsister + title_japanese: 義妹生活 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-04T00:00:00+00:00' + to: '2024-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2024 + to: + day: 19 + month: 9 + year: 2024 + string: Jul 4, 2024 to Sep 19, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 90167 + rank: 3220 + popularity: 1329 + members: 210084 + favorites: 1601 + synopsis: |- + Yuuta Asamura gets a new stepsister after his father remarries, Saki Ayase, who happens to be the number one beauty of the school year. They promise each other not to be too close, not to be too opposing, and to simply keep a vague and comfortable distance, having learned important values about men and women relationships from their parents' previous ones. + + Saki, who has worked alone for the sake of her family, doesn't know how to properly rely on others, whereas Yuuta is unsure of how to truly treat her. Standing on fairly equal ground, these two gradually learn the comfort of living together. + + Their relationship progresses from strangers to friends as the days pass. This is a story that may one day lead to love. + + (Source: MAL News) + background: '' + season: summer + year: 2024 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2696 + type: anime + name: 100studio + url: https://myanimelist.net/anime/producer/2696/100studio + - mal_id: 2920 + type: anime + name: One Cushion + url: https://myanimelist.net/anime/producer/2920/One_Cushion + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 54913 + url: https://myanimelist.net/anime/54913/Shinmai_Ossan_Boukensha_Saikyou_Party_ni_Shinu_hodo_Kitaerarete_Muteki_ni_Naru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1212/144711.jpg + small_image_url: https://myanimelist.net/images/anime/1212/144711t.jpg + large_image_url: https://myanimelist.net/images/anime/1212/144711l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1212/144711.webp + small_image_url: https://myanimelist.net/images/anime/1212/144711t.webp + large_image_url: https://myanimelist.net/images/anime/1212/144711l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/juYfh7xTYdo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru. + - type: Synonym + title: The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible + - type: Japanese + title: 新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。 + - type: English + title: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible + title: Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru. + title_english: The Ossan Newbie Adventurer, Trained to Death by the Most Powerful Party, Became Invincible + title_japanese: 新米オッサン冒険者、最強パーティに死ぬほど鍛えられて無敵になる。 + title_synonyms: + - The Rookie Middle-Aged Adventurer Was Trained to Death by the Most Powerful Party to Become Invincible + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-02T00:00:00+00:00' + to: '2024-09-24T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2024 + to: + day: 24 + month: 9 + year: 2024 + string: Jul 2, 2024 to Sep 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 109805 + rank: 3013 + popularity: 1336 + members: 209356 + favorites: 721 + synopsis: |- + Determined to pursue his glorious childhood dreams, 30-year-old Rick Gladiatol, a modest clerk in the adventurers' guild, is offered a once-in-a-lifetime opportunity after he fatefully encounters the dark elf Reanette Elfelt. Reanette happens to be an elite adventurer of the legendary party Orichalcum Fist, whose members welcome Rick under the condition that he follow a Spartan training. + + Two years later, Rick is finally ready to take the E-Rank exam officially qualifying him as an adventurer. However, raw magical power can only be developed until one turns 20. As such, Rick faces the general hostility of fellow participants and examiners alike, leaving him no choice but to show the world that his hellish training has turned him into an invincible warrior. + + [Written by MAL Rewrite] + background: Shinmai Ossan Boukensha, Saikyou Party ni Shinu hodo Kitaerarete Muteki ni Naru. was released on Blu-ray + as a two-disc box set on September 25, 2024. + season: summer + year: 2024 + broadcast: + day: Tuesdays + time: 02:00 + timezone: Asia/Tokyo + string: Tuesdays at 02:00 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 96 + type: anime + name: Yumeta Company + url: https://myanimelist.net/anime/producer/96/Yumeta_Company + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 54724 + url: https://myanimelist.net/anime/54724/Nige_Jouzu_no_Wakagimi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1386/140401.jpg + small_image_url: https://myanimelist.net/images/anime/1386/140401t.jpg + large_image_url: https://myanimelist.net/images/anime/1386/140401l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1386/140401.webp + small_image_url: https://myanimelist.net/images/anime/1386/140401t.webp + large_image_url: https://myanimelist.net/images/anime/1386/140401l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JjOLjAB0bcI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nige Jouzu no Wakagimi + - type: Synonym + title: Nigewaka + - type: Japanese + title: 逃げ上手の若君 + - type: English + title: The Elusive Samurai + title: Nige Jouzu no Wakagimi + title_english: The Elusive Samurai + title_japanese: 逃げ上手の若君 + title_synonyms: + - Nigewaka + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-06T00:00:00+00:00' + to: '2024-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2024 + to: + day: 28 + month: 9 + year: 2024 + string: Jul 6, 2024 to Sep 28, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.79 + scored_by: 84549 + rank: 1217 + popularity: 1360 + members: 205979 + favorites: 858 + synopsis: |- + Tokiyuki Houjou, a carefree eight-year-old noble, is content with the serene life in Kamakura and shows little regard for the serious responsibilities that come with his eventually succeeding his father as the next shogun. Instead of dedicating himself to rigorous training in swordsmanship or archery, Tokiyuki excels in the art of evasion, skillfully dodging his advisors and discovering perfect hiding spots. However, his peaceful existence is shattered when a sudden coup brutally wipes out his clan. + + Overwhelmed with guilt for being the sole survivor, Tokiyuki contemplates joining his family in death. However, his fate takes an abrupt turn when the enigmatic priest Yorishige Suwa suddenly shoves him onto a battlefield. Yorishige, who prophesies that Tokiyuki will one day become a great hero, leaves the boy with no choice but to navigate his way free of enemy soldiers. As Tokiyuki struggles to survive against these foes, he finds a new thrill in raising the stakes of his usual hide-and-seek games. + + With a renewed sense of purpose and the promise of powerful allies from Yorishige, Tokiyuki vows to avenge his family—not through his capability to fight, but through his extraordinary talent for running away. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 21 + type: anime + name: Samurai + url: https://myanimelist.net/anime/genre/21/Samurai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49785 + url: https://myanimelist.net/anime/49785/Fairy_Tail__100-nen_Quest + images: + jpg: + image_url: https://myanimelist.net/images/anime/1087/144083.jpg + small_image_url: https://myanimelist.net/images/anime/1087/144083t.jpg + large_image_url: https://myanimelist.net/images/anime/1087/144083l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1087/144083.webp + small_image_url: https://myanimelist.net/images/anime/1087/144083t.webp + large_image_url: https://myanimelist.net/images/anime/1087/144083l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/EYrJDrCBVAE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Fairy Tail: 100-nen Quest' + - type: Japanese + title: FAIRY TAIL 100年クエスト + - type: English + title: 'Fairy Tail: 100 Years Quest' + title: 'Fairy Tail: 100-nen Quest' + title_english: 'Fairy Tail: 100 Years Quest' + title_japanese: FAIRY TAIL 100年クエスト + title_synonyms: [] + type: TV + source: Web manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-07-07T00:00:00+00:00' + to: '2025-01-05T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2024 + to: + day: 5 + month: 1 + year: 2025 + string: Jul 7, 2024 to Jan 5, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 43727 + rank: 1758 + popularity: 1592 + members: 173247 + favorites: 1723 + synopsis: |- + For over one hundred years, a special quest has been waiting for a wizard skilled enough to complete it. On the northern continent of Guiltina, there are five immensely powerful Dragon Gods who possess great destructive force that can only be quelled by sealing them away. Natsu Dragneel and his friends from the Fairy Tail guild—Lucy Heartfilia, Gray Fullbuster, Erza Scarlet, Wendy Marvell, and the exceeds Happy and Charlés—consider this the perfect challenge to take on. + + The Fairy Tail mages are not the only ones searching for the Dragon Gods. Diabolos, a guild exclusive for "Dragon Eaters," seeks to enhance their Dragon Slayer magic by devouring the dragons. Meanwhile, Fairy Tail's newest addition, Touka, appears to be hiding something sinister from her new companions—and her secrets may bring disaster to the guild while its strongest wizards are away. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Sundays + time: '17:30' + timezone: Asia/Tokyo + string: Sundays at 17:30 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 3065 + type: anime + name: Gloria + url: https://myanimelist.net/anime/producer/3065/Gloria + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53802 + url: https://myanimelist.net/anime/53802/25-jigen_no_Ririsa + images: + jpg: + image_url: https://myanimelist.net/images/anime/1779/143584.jpg + small_image_url: https://myanimelist.net/images/anime/1779/143584t.jpg + large_image_url: https://myanimelist.net/images/anime/1779/143584l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1779/143584.webp + small_image_url: https://myanimelist.net/images/anime/1779/143584t.webp + large_image_url: https://myanimelist.net/images/anime/1779/143584l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qZw4qxjKOiU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 2.5-jigen no Ririsa + - type: Synonym + title: Nigoriri + - type: Synonym + title: 2.5-jigen no Yuuwaku + - type: Synonym + title: Ririsa of 2.5 Dimension + - type: Japanese + title: 2.5次元の誘惑 + - type: English + title: 2.5 Dimensional Seduction + title: 2.5-jigen no Ririsa + title_english: 2.5 Dimensional Seduction + title_japanese: 2.5次元の誘惑 + title_synonyms: + - Nigoriri + - 2.5-jigen no Yuuwaku + - Ririsa of 2.5 Dimension + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2024-07-05T00:00:00+00:00' + to: '2024-12-13T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2024 + to: + day: 13 + month: 12 + year: 2024 + string: Jul 5, 2024 to Dec 13, 2024 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 54760 + rank: 2595 + popularity: 1671 + members: 162034 + favorites: 993 + synopsis: |- + After a disastrous romantic confession, Masamune Okumura finds solace in the fictional world of anime and manga. Now a second-year high school student and the president of the Manga Research Club, Masamune spends a peaceful existence watching the adventures of the angel Liliel, his favorite character. + + In the beginning of the academic year, Masamune’s life is turned upside down when he meets first-year student Ririsa Amano, a passionate cosplay practitioner. Despite Masamune's initial reluctance, the determined young woman manages to convince him to become her personal photographer for the production of a collection dedicated to their common favorite character: Liliel. + + As Masamune enthusiastically discovers the world of cosplay and photo editing, he is unexpectedly reunited with his childhood friend Mikari Tachibana, who has become a model in the hope of impressing her beloved upperclassman. Realizing that modeling is not enough to intrigue the hopeless otaku, Mikari decides to join the club and become a cosplayer herself, all to finally have a chance at winning Masamune's heart. However, Masamune's love for fictional characters may not be capable of extending to those who impersonate them. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2118 + type: anime + name: ADK Emotions + url: https://myanimelist.net/anime/producer/2118/ADK_Emotions + - mal_id: 2435 + type: anime + name: Aiming + url: https://myanimelist.net/anime/producer/2435/Aiming + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 55848 + url: https://myanimelist.net/anime/55848/Isekai_Suicide_Squad + images: + jpg: + image_url: https://myanimelist.net/images/anime/1644/142052.jpg + small_image_url: https://myanimelist.net/images/anime/1644/142052t.jpg + large_image_url: https://myanimelist.net/images/anime/1644/142052l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1644/142052.webp + small_image_url: https://myanimelist.net/images/anime/1644/142052t.webp + large_image_url: https://myanimelist.net/images/anime/1644/142052l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PqEAMgMeLDg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isekai Suicide Squad + - type: Japanese + title: 異世界スーサイド・スクワッド + - type: English + title: Suicide Squad Isekai + title: Isekai Suicide Squad + title_english: Suicide Squad Isekai + title_japanese: 異世界スーサイド・スクワッド + title_synonyms: [] + type: TV + source: Other + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2024-07-06T00:00:00+00:00' + to: '2024-09-07T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2024 + to: + day: 7 + month: 9 + year: 2024 + string: Jul 6, 2024 to Sep 7, 2024 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.36 + scored_by: 51718 + rank: 9004 + popularity: 1683 + members: 160656 + favorites: 557 + synopsis: |- + The Joker and his best girl, Harley Quinn, are tearing through the streets of Gotham with sacks full of cash and the law in hot pursuit. Unfortunately for them, though the jester manages to escape, the night ends with Harley being captured by a mysterious, katana-wielding woman. + + Meanwhile, Amanda Waller, the head of the government security organization A.R.G.U.S., has commandeered a team of supervillains for a ruthless mission into another world. After losing contact with the first suicide squad sent through the portal, Amanda sends Deadshot, Peacemaker, Clayface, King Shark, and Harley as replacements. However, shortly after entering the portal, their helicopter crashes in the middle of a battle between horse-mounted troops and vicious orcs. + + With all of the accompanying A.R.G.U.S. members dead on impact, the villains break free of their shackles and rampage through the army of orcs, unwittingly aiding the human soldiers—only to be rewarded with imprisonment. Now bound by magic-infused shackles, Harley and company must hurry back to the portal they came from, or else the bombs A.R.G.U.S. implanted in their necks will detonate. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 1783 + type: anime + name: ONEMUSIC + url: https://myanimelist.net/anime/producer/1783/ONEMUSIC + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 57876 + url: https://myanimelist.net/anime/57876/Maougun_Saikyou_no_Majutsushi_wa_Ningen_datta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1814/143744.jpg + small_image_url: https://myanimelist.net/images/anime/1814/143744t.jpg + large_image_url: https://myanimelist.net/images/anime/1814/143744l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1814/143744.webp + small_image_url: https://myanimelist.net/images/anime/1814/143744t.webp + large_image_url: https://myanimelist.net/images/anime/1814/143744l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t61LyG6ZUYU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maougun Saikyou no Majutsushi wa Ningen datta + - type: Synonym + title: The Maou Army's Strongest Magician Was a Human + - type: Japanese + title: 魔王軍最強の魔術師は人間だった + - type: English + title: The Strongest Magician in the Demon Lord's Army Was a Human + title: Maougun Saikyou no Majutsushi wa Ningen datta + title_english: The Strongest Magician in the Demon Lord's Army Was a Human + title_japanese: 魔王軍最強の魔術師は人間だった + title_synonyms: + - The Maou Army's Strongest Magician Was a Human + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-03T00:00:00+00:00' + to: '2024-09-18T00:00:00+00:00' + prop: + from: + day: 3 + month: 7 + year: 2024 + to: + day: 18 + month: 9 + year: 2024 + string: Jul 3, 2024 to Sep 18, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.4 + scored_by: 64810 + rank: 8780 + popularity: 1747 + members: 153237 + favorites: 423 + synopsis: |- + Under the tutelage of the great demon warlock Romberg, Ike grew up with knowledge regarding an ancient advanced civilization that once ruled the land. Coupled with his innate talent in magical arts, this upbringing allows Ike to quickly rise in the Demon Lord's army ranks, leading his brigade to consecutive victories against humans. + + However, Ike has a secret—he is a human himself. Despite knowing all too well the consequences if this information is ever to leak, Ike is willing to face such immense danger to achieve his goal: find a way for humans and demons to coexist and stop the war that has been carried on for far too long. + + [Written by MAL Rewrite] + background: Maougun Saikyou no Majutsushi wa Ningen datta was released on Blu-ray and DVD as a box set on November 29, + 2024. + season: summer + year: 2024 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1209 + type: anime + name: Studio A-CAT + url: https://myanimelist.net/anime/producer/1209/Studio_A-CAT + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 57810 + url: https://myanimelist.net/anime/57810/Shoushimin_Series + images: + jpg: + image_url: https://myanimelist.net/images/anime/1164/143459.jpg + small_image_url: https://myanimelist.net/images/anime/1164/143459t.jpg + large_image_url: https://myanimelist.net/images/anime/1164/143459l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1164/143459.webp + small_image_url: https://myanimelist.net/images/anime/1164/143459t.webp + large_image_url: https://myanimelist.net/images/anime/1164/143459l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5GTiAYZ19D4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shoushimin Series + - type: Japanese + title: 小市民シリーズ + - type: English + title: 'Shoshimin: How to Become Ordinary' + title: Shoushimin Series + title_english: 'Shoshimin: How to Become Ordinary' + title_japanese: 小市民シリーズ + title_synonyms: [] + type: TV + source: Novel + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2024-07-07T00:00:00+00:00' + to: '2024-09-15T00:00:00+00:00' + prop: + from: + day: 7 + month: 7 + year: 2024 + to: + day: 15 + month: 9 + year: 2024 + string: Jul 7, 2024 to Sep 15, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 48361 + rank: 2887 + popularity: 1841 + members: 142863 + favorites: 711 + synopsis: |- + Jougorou Kobato has a habit of inserting himself into other people's problems. After realizing his detective skills are neither wanted nor appreciated, he makes an agreement with his shy friend Yuki Osanai to become ordinary together. Now entering high school, they aim to be perceived as regular people, yet Kobato cannot help but fall back into his deductive ways when faced with everyday mysteries. + + Unfortunately, mundane occurrences are not all the duo stumbles across. As they go through their school days trying to avoid drawing attention to themselves, Kobato and Osanai at times get caught up in incidents that put their plan of a peaceful, average life at risk. + + [Written by MAL Rewrite] + background: Shoushimin Series aired on TV Asahi's NUMAnimation block. The series was released on Blu-ray in three volumes + from October 30, 2024, to December 27, 2024. + season: summer + year: 2024 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1659 + type: anime + name: AbemaTV + url: https://myanimelist.net/anime/producer/1659/AbemaTV + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2234 + type: anime + name: TV Asahi Music + url: https://myanimelist.net/anime/producer/2234/TV_Asahi_Music + - mal_id: 3108 + type: anime + name: Tokyo Sogensha + url: https://myanimelist.net/anime/producer/3108/Tokyo_Sogensha + licensors: [] + studios: + - mal_id: 1828 + type: anime + name: Lapin Track + url: https://myanimelist.net/anime/producer/1828/Lapin_Track + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 56062 + url: https://myanimelist.net/anime/56062/Naze_Boku_no_Sekai_wo_Daremo_Oboeteinai_no_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1664/144272.jpg + small_image_url: https://myanimelist.net/images/anime/1664/144272t.jpg + large_image_url: https://myanimelist.net/images/anime/1664/144272l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1664/144272.webp + small_image_url: https://myanimelist.net/images/anime/1664/144272t.webp + large_image_url: https://myanimelist.net/images/anime/1664/144272l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/JGOKdkWUIAA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Naze Boku no Sekai wo Daremo Oboeteinai no ka? + - type: Synonym + title: Why Nobody Remembers My World? + - type: Synonym + title: NazeBoku + - type: Japanese + title: なぜ僕の世界を誰も覚えていないのか? + - type: English + title: Why Does Nobody Remember Me in This World? + title: Naze Boku no Sekai wo Daremo Oboeteinai no ka? + title_english: Why Does Nobody Remember Me in This World? + title_japanese: なぜ僕の世界を誰も覚えていないのか? + title_synonyms: + - Why Nobody Remembers My World? + - NazeBoku + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-13T00:00:00+00:00' + to: '2024-09-28T00:00:00+00:00' + prop: + from: + day: 13 + month: 7 + year: 2024 + to: + day: 28 + month: 9 + year: 2024 + string: Jul 13, 2024 to Sep 28, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.23 + scored_by: 54038 + rank: 9759 + popularity: 1868 + members: 140534 + favorites: 389 + synopsis: |- + In a war against four overpowered races—angels, demons, undeads, and humanoid beasts—humanity could only prevail thanks to its champion Sid, who defeated the other races' champions and sealed away their armies in four pyramids. In an age where Sid's existence has become but a legend of the past, Kai Sakura Vento is one of the many conscripts tasked with monitoring the pyramids in fear that these old foes would escape. + + On a peaceful day while spending time with his friend Jeanne E. Anise, the world is suddenly "overwritten," transporting Kai to an alternate reality where humanity has nearly been annihilated by the demons and forced into hiding. To make matters worse, his very existence has been erased from this world; all of his friends, including Jeanne, who leads the local resistance efforts in this world, have forgotten about him. + + Trying to investigate the remains of his former world, Kai encounters Rinne, an enigmatic young woman trapped in a pyramid. Mysteriously inheriting Sid's legendary sword Codeholder, Kai manages to free Rinne from her imprisonment. Determined to fix this reality, Kai joins forces with Rinne and Jeanne to free humanity from demonic rule. But if the valiant soldier wants to have a chance at returning to his original world, he will first have to uncover the cause behind the mysterious alteration of reality. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2128 + type: anime + name: Fabtone + url: https://myanimelist.net/anime/producer/2128/Fabtone + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2441 + type: anime + name: Bergamo + url: https://myanimelist.net/anime/producer/2441/Bergamo + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 48896 + url: https://myanimelist.net/anime/48896/Overlord_Movie_3__Sei_Oukoku-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1954/144101.jpg + small_image_url: https://myanimelist.net/images/anime/1954/144101t.jpg + large_image_url: https://myanimelist.net/images/anime/1954/144101l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1954/144101.webp + small_image_url: https://myanimelist.net/images/anime/1954/144101t.webp + large_image_url: https://myanimelist.net/images/anime/1954/144101l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vniS5g48wHA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Overlord Movie 3: Sei Oukoku-hen' + - type: Synonym + title: 'Gekijouban Overlord: Sei Oukoku-hen' + - type: Japanese + title: 劇場版「オーバーロード」聖王国編 + - type: English + title: 'Overlord: The Sacred Kingdom' + title: 'Overlord Movie 3: Sei Oukoku-hen' + title_english: 'Overlord: The Sacred Kingdom' + title_japanese: 劇場版「オーバーロード」聖王国編 + title_synonyms: + - 'Gekijouban Overlord: Sei Oukoku-hen' + type: Movie + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2024-09-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 9 + year: 2024 + to: + day: null + month: null + year: null + string: Sep 20, 2024 + duration: 2 hr 12 min + rating: R - 17+ (violence & profanity) + score: 7.77 + scored_by: 46296 + rank: 1266 + popularity: 2125 + members: 119606 + favorites: 434 + synopsis: |- + The Sacred Kingdom has enjoyed a great many years without war thanks to a colossal wall constructed after a historic tragedy. They understand best how fragile peace can be. When the terrible demon Jaldabaoth takes to the field at the head of a united army of monstrous tribes, the Sacred Kingdom's leaders know their defenses are not enough. With the very existence of the country at stake, the pious have no choice but to seek help wherever they can get it, even if it means breaking taboo and parlaying with the undead king of the Nation of Darkness! + + (Source: Yen Press) + background: 'Overlord Movie 3: Sei Oukoku-hen adapts novels 12 and 13.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1916 + type: anime + name: Kadokawa Animation + url: https://myanimelist.net/anime/producer/1916/Kadokawa_Animation + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 56538 + url: https://myanimelist.net/anime/56538/Kimi_ni_Todoke_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1617/142448.jpg + small_image_url: https://myanimelist.net/images/anime/1617/142448t.jpg + large_image_url: https://myanimelist.net/images/anime/1617/142448l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1617/142448.webp + small_image_url: https://myanimelist.net/images/anime/1617/142448t.webp + large_image_url: https://myanimelist.net/images/anime/1617/142448l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tJbJI5GE0jg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi ni Todoke 3rd Season + - type: Japanese + title: 君に届け3RD SEASON + - type: English + title: 'Kimi ni Todoke: From Me to You Season 3' + title: Kimi ni Todoke 3rd Season + title_english: 'Kimi ni Todoke: From Me to You Season 3' + title_japanese: 君に届け3RD SEASON + title_synonyms: [] + type: ONA + source: Manga + episodes: 5 + status: Finished Airing + airing: false + aired: + from: '2024-08-01T00:00:00+00:00' + to: null + prop: + from: + day: 1 + month: 8 + year: 2024 + to: + day: null + month: null + year: null + string: Aug 1, 2024 + duration: 1 hr 6 min per ep + rating: PG-13 - Teens 13 or older + score: 8.43 + scored_by: 42937 + rank: 201 + popularity: 2180 + members: 114781 + favorites: 798 + synopsis: "Summer is in full swing, and so is the love between Sawako Kuronuma and Shouta Kazehaya. From attending summer\ + \ school together to meeting each other's parents, the two enjoy quality time together while tackling the feelings\ + \ of self-doubt and emotional strain that come with their newfound love.\n\nMeanwhile, Sawako's close friends, Chizuru\ + \ Yoshida and Ayane Yano, struggle through their own romantic dilemmas as their past experiences with relationships\ + \ clash with their present feelings. Full of inner turmoil, the youngsters' desire for intimacy persists through their\ + \ second year of high school as they weave through the labyrinth of indecision and insecurity that is love. \n\n[Written\ + \ by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 49981 + url: https://myanimelist.net/anime/49981/Kimi_to_Boku_no_Saigo_no_Senjou_Aruiwa_Sekai_ga_Hajimaru_Seisen_Season_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1660/143460.jpg + small_image_url: https://myanimelist.net/images/anime/1660/143460t.jpg + large_image_url: https://myanimelist.net/images/anime/1660/143460l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1660/143460.webp + small_image_url: https://myanimelist.net/images/anime/1660/143460t.webp + large_image_url: https://myanimelist.net/images/anime/1660/143460l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8WB-WILLip4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II + - type: Synonym + title: Our Last Crusade or the Rise of a New World 2nd Season + - type: Synonym + title: The Last Battlefield Between You and I + - type: Synonym + title: or Perhaps the Beginning of the World's Holy War 2nd Season + - type: Synonym + title: Kimisen + - type: Japanese + title: キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ + - type: English + title: Our Last Crusade or the Rise of a New World Season 2 + title: Kimi to Boku no Saigo no Senjou, Aruiwa Sekai ga Hajimaru Seisen Season II + title_english: Our Last Crusade or the Rise of a New World Season 2 + title_japanese: キミと僕の最後の戦場、あるいは世界が始まる聖戦 Season Ⅱ + title_synonyms: + - Our Last Crusade or the Rise of a New World 2nd Season + - The Last Battlefield Between You and I + - or Perhaps the Beginning of the World's Holy War 2nd Season + - Kimisen + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-10T00:00:00+00:00' + to: '2025-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2024 + to: + day: 26 + month: 6 + year: 2025 + string: Jul 10, 2024 to Jun 26, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.81 + scored_by: 24373 + rank: 6235 + popularity: 2205 + members: 112477 + favorites: 573 + synopsis: |- + Over a century ago, astral mages under persecution from the Empire banded together and established the Nebulis Sovereignty under three founding families: Lou, Hydra, and Zoa. With the leadership of Millavair Lou Nebulis VIII, the Sovereignty aims to minimize casualties in their conflict with the Empire—a stance the extremist Zoas disagree with. Tensions rise between the families as the upcoming election to decide the next leader approaches. The Zoas are willing to do anything to achieve success; however, a world-ending war may ensue should they be victorious. + + Princess Aliceliese "Alice" Lou Nebulis XI has no choice but to cooperate with any potential allies in order to advance towards her ultimate goal of ending the conflict that has long tormented everyone involved. This includes Iska—one of the Empire's greatest warriors and her greatest rival. + + [Written by MAL Rewrite] + background: The broadcast was put on hiatus on August 7, 2024, in order to maintain the quality of the production. Broadcasting + resumed, starting from episode 1, on April 10, 2025. + season: summer + year: 2024 + broadcast: + day: Thursdays + time: '20:30' + timezone: Asia/Tokyo + string: Thursdays at 20:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2290 + type: anime + name: A3 + url: https://myanimelist.net/anime/producer/2290/A3 + licensors: [] + studios: + - mal_id: 300 + type: anime + name: SILVER LINK. + url: https://myanimelist.net/anime/producer/300/SILVER_LINK + - mal_id: 2201 + type: anime + name: Studio Palette + url: https://myanimelist.net/anime/producer/2201/Studio_Palette + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + demographics: [] + - mal_id: 56063 + url: https://myanimelist.net/anime/56063/NieR_Automata_Ver11a_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1364/143539.jpg + small_image_url: https://myanimelist.net/images/anime/1364/143539t.jpg + large_image_url: https://myanimelist.net/images/anime/1364/143539l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1364/143539.webp + small_image_url: https://myanimelist.net/images/anime/1364/143539t.webp + large_image_url: https://myanimelist.net/images/anime/1364/143539l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/441v-JXm0CE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: NieR:Automata Ver1.1a Part 2 + - type: Japanese + title: NieR:Automata Ver1.1a 第2クール + - type: English + title: NieR:Automata Ver1.1a (Cour 2) + title: NieR:Automata Ver1.1a Part 2 + title_english: NieR:Automata Ver1.1a (Cour 2) + title_japanese: NieR:Automata Ver1.1a 第2クール + title_synonyms: [] + type: TV + source: Game + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-05T00:00:00+00:00' + to: '2024-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2024 + to: + day: 27 + month: 9 + year: 2024 + string: Jul 5, 2024 to Sep 27, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.07 + scored_by: 39055 + rank: 648 + popularity: 2221 + members: 111433 + favorites: 577 + synopsis: |- + As the machine war progresses, YoRHa Command and the Resistance prepare for a final decisive assault against the "Machine Lifeforms," the militarized robots who roam the earth's surface. While preparations are underway, YoRHa 9-gou S-gata "9S" and YoRHa 2-gou B-gata "2B" continue their advanced scouting mission. However, 9S and 2B struggle with their respective roles, their loyalty to each other, and their loyalty toward Command. + + Although the nefarious Adam and Eve have been defeated, it appears the machines are not down for the count. An ominous presence in the form of the "Red Girl" continues to observe the androids from afar, waiting for the perfect opportunity to attack them. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 57217 + url: https://myanimelist.net/anime/57217/Katsute_Mahou_Shoujo_to_Aku_wa_Tekitai_shiteita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1653/143959.jpg + small_image_url: https://myanimelist.net/images/anime/1653/143959t.jpg + large_image_url: https://myanimelist.net/images/anime/1653/143959l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1653/143959.webp + small_image_url: https://myanimelist.net/images/anime/1653/143959t.webp + large_image_url: https://myanimelist.net/images/anime/1653/143959l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/39_TsQt-_9Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Katsute Mahou Shoujo to Aku wa Tekitai shiteita. + - type: Synonym + title: Mahoaku + - type: Synonym + title: The Former Magical Girl & Evil Enemy + - type: Synonym + title: The Magical Girl and Evil Officer + - type: Synonym + title: Beauty and the Beast + - type: Japanese + title: かつて魔法少女と悪は敵対していた。 + - type: English + title: The Magical Girl and the Evil Lieutenant Used to Be Archenemies + title: Katsute Mahou Shoujo to Aku wa Tekitai shiteita. + title_english: The Magical Girl and the Evil Lieutenant Used to Be Archenemies + title_japanese: かつて魔法少女と悪は敵対していた。 + title_synonyms: + - Mahoaku + - The Former Magical Girl & Evil Enemy + - The Magical Girl and Evil Officer + - Beauty and the Beast + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-07-09T00:00:00+00:00' + to: '2024-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2024 + to: + day: 24 + month: 9 + year: 2024 + string: Jul 9, 2024 to Sep 24, 2024 + duration: 12 min per ep + rating: PG-13 - Teens 13 or older + score: 7.56 + scored_by: 39141 + rank: 1970 + popularity: 2300 + members: 105986 + favorites: 492 + synopsis: |- + An evil army is leading a ground invasion against Earth, and their Lieutenant Shun Miller is determined to wreak havoc upon the populace. Miller's ruthless reputation strikes fear even into the hearts of his own subordinates, making him the perfect leader of a charge against a city protected by a powerful magical girl, Byakuya Mimori. However, his attack comes to a halt on the day of their first encounter—because he unexpectedly falls in love with Byakuya at first sight! + + Overcome by Byakuya's adorably delicate innocence, Miller begins to shower her with gifts and kindness. But Miller soon learns that Byakuya's Angel—the cat-like familiar who turned her into a magical girl—has been exploiting and manipulating her all along. This discovery solidifies Miller's resolve to ensure Byakuya goes on to lead a happier life, but as the war continues, they wonder if their blossoming affection can overcome the reality of their differences. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2024 + broadcast: + day: Tuesdays + time: '22:45' + timezone: Asia/Tokyo + string: Tuesdays at 22:45 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: [] + studios: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 66 + type: anime + name: Mahou Shoujo + url: https://myanimelist.net/anime/genre/66/Mahou_Shoujo + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57864 + url: https://myanimelist.net/anime/57864/Monogatari_Series__Off___Monster_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1142/146776.jpg + small_image_url: https://myanimelist.net/images/anime/1142/146776t.jpg + large_image_url: https://myanimelist.net/images/anime/1142/146776l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1142/146776.webp + small_image_url: https://myanimelist.net/images/anime/1142/146776t.webp + large_image_url: https://myanimelist.net/images/anime/1142/146776l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wMQY20isBQs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Monogatari Series: Off & Monster Season' + - type: Synonym + title: Orokamonogatari + - type: Synonym + title: Wazamonogatari + - type: Synonym + title: Nademonogatari + - type: Synonym + title: Shinobumonogatari + - type: Japanese + title: 〈物語〉シリーズ オフ&モンスターシーズン + - type: English + title: 'Monogatari Series: Off & Monster Season' + title: 'Monogatari Series: Off & Monster Season' + title_english: 'Monogatari Series: Off & Monster Season' + title_japanese: 〈物語〉シリーズ オフ&モンスターシーズン + title_synonyms: + - Orokamonogatari + - Wazamonogatari + - Nademonogatari + - Shinobumonogatari + type: ONA + source: Light novel + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2024-07-06T00:00:00+00:00' + to: '2024-10-19T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2024 + to: + day: 19 + month: 10 + year: 2024 + string: Jul 6, 2024 to Oct 19, 2024 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.65 + scored_by: 39852 + rank: 85 + popularity: 2340 + members: 103855 + favorites: 897 + synopsis: |- + Koyomi Araragi spent his last year of high school helping girls in his town resolve various supernatural afflictions. But now Araragi has departed for university, leaving his friends to fend for themselves against new problems and curses that plague them. Yotsugi Ononoki, once a human corpse and now a living doll, takes residence in Araragi's home, keeping watch over his sister Tsukihi, a girl harboring a mystical secret of her own. As part of her duties, Yotsugi fills Araragi's vacated role as occult expert, assisting others in town with their issues. + + One of these girls, middle school student Nadeko Sengoku, slowly recovers from her own recent brushes with the paranormal. She avoids returning to school, instead spending time alone in her room and pursuing her dream of becoming a professional manga artist. In order to speed up Nadeko's quest for mastery of her craft, Yotsugi convinces her to create four copies of herself, each representing a distinct aspect of Nadeko's personality. However, the clones refuse to help Nadeko, instead escaping into the town and creating a chaotic mess. Now forced to grapple with her own fractured sense of identity, Nadeko sets out to capture them and resolve her inner conflict. + + [Written by MAL Rewrite] + background: 'Monogatari Series: Off & Monster Season was released on Blu-ray and DVD in seven volumes from December + 11, 2024, to June 4, 2025.' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 44 + type: anime + name: Shaft + url: https://myanimelist.net/anime/producer/44/Shaft + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/60-2024-fall.yaml b/test/fixtures/jikan/season_matrix/60-2024-fall.yaml new file mode 100644 index 0000000..fe65abe --- /dev/null +++ b/test/fixtures/jikan/season_matrix/60-2024-fall.yaml @@ -0,0 +1,3330 @@ +metadata: + captured_at: '2026-05-11T11:35:10Z' + label: 2024-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2024/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:09 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:774c204e723819ea7dcf2889e79a78f33ede2029 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 13 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 313 + per_page: 25 + data: + - mal_id: 57334 + url: https://myanimelist.net/anime/57334/Dandadan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1584/143719.jpg + small_image_url: https://myanimelist.net/images/anime/1584/143719t.jpg + large_image_url: https://myanimelist.net/images/anime/1584/143719l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1584/143719.webp + small_image_url: https://myanimelist.net/images/anime/1584/143719t.webp + large_image_url: https://myanimelist.net/images/anime/1584/143719l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/V3xNYDFsnN8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dandadan + - type: Japanese + title: ダンダダン + - type: English + title: Dan Da Dan + title: Dandadan + title_english: Dan Da Dan + title_japanese: ダンダダン + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-04T00:00:00+00:00' + to: '2024-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2024 + to: + day: 20 + month: 12 + year: 2024 + string: Oct 4, 2024 to Dec 20, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.41 + scored_by: 593968 + rank: 219 + popularity: 201 + members: 972891 + favorites: 15625 + synopsis: |- + Reeling from her recent breakup, Momo Ayase, a popular high schooler, shows kindness to her socially awkward schoolmate, Ken Takakura, by standing up to his bullies. Takakura misunderstands her intentions, believing he has made a new friend who shares his obsession with aliens and UFOs. However, Momo's own eccentric occult beliefs lie in the supernatural realm; she thinks aliens do not exist. A rivalry quickly brews as each becomes determined to prove the other wrong. + + Despite their initial clash over their opposing beliefs, Momo and Takakura form an unexpected but intimate friendship, a bond forged in a series of supernatural battles and bizarre encounters with urban legends and paranormal entities. As both develop unique superhuman abilities, they learn to supplement each other's weaknesses, leading them to wonder if their newfound partnership may be about more than just survival. + + [Written by MAL Rewrite] + background: Dandadan aired on MBS and TBS' Super Animeism Turbo block. + season: fall + year: 2024 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 54857 + url: https://myanimelist.net/anime/54857/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_3rd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1706/144725.jpg + small_image_url: https://myanimelist.net/images/anime/1706/144725t.jpg + large_image_url: https://myanimelist.net/images/anime/1706/144725l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1706/144725.webp + small_image_url: https://myanimelist.net/images/anime/1706/144725t.webp + large_image_url: https://myanimelist.net/images/anime/1706/144725l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qMJNdQFPaHk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season + - type: Synonym + title: 'Re: Life in a different world from zero 3rd Season' + - type: Synonym + title: ReZero 3rd Season + - type: Synonym + title: Re:Zero - Starting Life in Another World 3 + - type: Japanese + title: Re:ゼロから始める異世界生活 3rd season + - type: English + title: Re:ZERO -Starting Life in Another World- Season 3 + title: Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season + title_english: Re:ZERO -Starting Life in Another World- Season 3 + title_japanese: Re:ゼロから始める異世界生活 3rd season + title_synonyms: + - 'Re: Life in a different world from zero 3rd Season' + - ReZero 3rd Season + - Re:Zero - Starting Life in Another World 3 + type: TV + source: Light novel + episodes: 16 + status: Finished Airing + airing: false + aired: + from: '2024-10-02T00:00:00+00:00' + to: '2025-03-26T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2024 + to: + day: 26 + month: 3 + year: 2025 + string: Oct 2, 2024 to Mar 26, 2025 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 8.42 + scored_by: 232815 + rank: 213 + popularity: 518 + members: 503158 + favorites: 6576 + synopsis: |- + One year after the events at the Sanctuary, Subaru Natsuki trains hard to better face future challenges. The peaceful days come to an end when Emilia receives an invitation to a meeting in the Watergate City of Priestella from none other than Anastasia Hoshin, one of her rivals in the royal selection. Considering the meeting's significance and the potential dangers Emilia could face, Subaru and his friends accompany her. + + However, as Subaru reconnects with old associates and companions in Priestella, new formidable foes emerge. Driven by fanatical motivations and engaging in ruthless methods to achieve their ambitions, the new enemy targets Emilia and threaten the very existence of the city. Rallying his allies, Subaru must give his all once more to stop their nefarious goals from becoming a concrete reality. + + [Written by MAL Rewrite] + background: Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season is comprised of two arcs. The first eight episodes are + subtitled Shuugeki-hen (Attack Arc). The latter eight, subtitled Hangeki-hen (Counterattack Arc), began airing on + February 5, 2025. The series was released on Blu-ray and DVD in five volumes from January 24, 2025, to June 25, 2025. + season: fall + year: 2024 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 647 + type: anime + name: Memory-Tech + url: https://myanimelist.net/anime/producer/647/Memory-Tech + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2927 + type: anime + name: DAXEL + url: https://myanimelist.net/anime/producer/2927/DAXEL + licensors: [] + studios: + - mal_id: 314 + type: anime + name: White Fox + url: https://myanimelist.net/anime/producer/314/White_Fox + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: [] + - mal_id: 54865 + url: https://myanimelist.net/anime/54865/Blue_Lock_vs_U-20_Japan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1584/144860.jpg + small_image_url: https://myanimelist.net/images/anime/1584/144860t.jpg + large_image_url: https://myanimelist.net/images/anime/1584/144860l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1584/144860.webp + small_image_url: https://myanimelist.net/images/anime/1584/144860t.webp + large_image_url: https://myanimelist.net/images/anime/1584/144860l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g9gB5OCtIT4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Blue Lock vs. U-20 Japan + - type: Synonym + title: Blue Lock 2nd Season + - type: Japanese + title: ブルーロック VS. U-20 JAPAN + - type: English + title: Blue Lock Season 2 + title: Blue Lock vs. U-20 Japan + title_english: Blue Lock Season 2 + title_japanese: ブルーロック VS. U-20 JAPAN + title_synonyms: + - Blue Lock 2nd Season + type: TV + source: Manga + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2024-10-06T00:00:00+00:00' + to: '2024-12-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2024 + to: + day: 28 + month: 12 + year: 2024 + string: Oct 6, 2024 to Dec 28, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.5 + scored_by: 178234 + rank: 2232 + popularity: 830 + members: 338130 + favorites: 2350 + synopsis: |- + The next phase of the controversial Blue Lock project is underway with the candidate pool being dwindled down to just 35. Out of the remaining strikers, only a select few will be chosen to play in an upcoming exhibition game against the current U-20 Japanese soccer team. Playing in this match comes with a caveat: winning will grant the players the right to represent the nation as the new U-20 team, but losing will bring an end to Blue Lock in its entirety. Among the ones left in the running is Yoichi Isagi, who is coming to terms with his own abilities. + + To further complicate matters, the six best players in the pool have already been named to the starting lineup and the remaining 29 will have to duke it out to claim a coveted spot. Each candidate must select a top six pairing to team up with for the selection to prove their competence. But if this mishmash of strikers wants to overthrow the current U-20 team, they will need to find a way to combine their playstyles effectively. + + [Written by MAL Rewrite] + background: Blue Lock vs. U-20 Japan aired on TV Asahi's IMAnimation block. It was released on Blu-ray in two volumes + from March 26, 2025, to May 28, 2025. + season: fall + year: 2024 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1639 + type: anime + name: Chiptune + url: https://myanimelist.net/anime/producer/1639/Chiptune + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 441 + type: anime + name: 8bit + url: https://myanimelist.net/anime/producer/441/8bit + genres: + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57181 + url: https://myanimelist.net/anime/57181/Ao_no_Hako + images: + jpg: + image_url: https://myanimelist.net/images/anime/1341/145349.jpg + small_image_url: https://myanimelist.net/images/anime/1341/145349t.jpg + large_image_url: https://myanimelist.net/images/anime/1341/145349l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1341/145349.webp + small_image_url: https://myanimelist.net/images/anime/1341/145349t.webp + large_image_url: https://myanimelist.net/images/anime/1341/145349l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ySnAsuFOH28?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ao no Hako + - type: Japanese + title: アオのハコ + - type: English + title: Blue Box + title: Ao no Hako + title_english: Blue Box + title_japanese: アオのハコ + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-10-03T00:00:00+00:00' + to: '2025-03-27T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2024 + to: + day: 27 + month: 3 + year: 2025 + string: Oct 3, 2024 to Mar 27, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.16 + scored_by: 153492 + rank: 501 + popularity: 845 + members: 332791 + favorites: 4475 + synopsis: |- + Every morning, incoming first-year Taiki Inomata hurries to his high school gym in order to further refine his badminton skills. However, his true motivation stems from sharing the otherwise empty gym with second-year Chinatsu Kano, Taiki's crush and the star player of the girls' basketball team. Although Chinatsu seems unapproachable, Taiki gradually finds opportunities to get to know her little by little. + + Unbeknownst to Taiki, his tireless work ethic and admiration motivate Chinatsu to work harder and strive to achieve her greatest ambitions. When her family must suddenly move overseas for work, Chinatsu decides to remain in Japan and shoot for victory at the national level. With nowhere to stay, she is taken in by Taiki's mother, who is longtime friends with Chinatsu's own. Overwhelmed with the new reality of living alongside the girl he loves, Taiki resolves to join Chinatsu at the national level in his own sport—and grow closer to her in the process. + + Still, despite being good enough to catch his coach's eye, Taiki must fight an uphill battle to qualify for a spot on the starting team. Cheered on by both Chinatsu and gymnast Hina Chouno, his childhood friend, Taiki aims to make a name for himself among his powerful upperclassmen. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Thursdays + time: '23:56' + timezone: Asia/Tokyo + string: Thursdays at 23:56 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2867 + type: anime + name: Unlimited Produce by TMS + url: https://myanimelist.net/anime/producer/2867/Unlimited_Produce_by_TMS + licensors: [] + studios: + - mal_id: 94 + type: anime + name: Telecom Animation Film + url: https://myanimelist.net/anime/producer/94/Telecom_Animation_Film + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 64 + type: anime + name: Love Polygon + url: https://myanimelist.net/anime/genre/64/Love_Polygon + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 77 + type: anime + name: Team Sports + url: https://myanimelist.net/anime/genre/77/Team_Sports + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 56784 + url: https://myanimelist.net/anime/56784/Bleach__Sennen_Kessen-hen_-_Soukoku-tan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1595/144074.jpg + small_image_url: https://myanimelist.net/images/anime/1595/144074t.jpg + large_image_url: https://myanimelist.net/images/anime/1595/144074l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1595/144074.webp + small_image_url: https://myanimelist.net/images/anime/1595/144074t.webp + large_image_url: https://myanimelist.net/images/anime/1595/144074l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tShYCQALuH8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Bleach: Sennen Kessen-hen - Soukoku-tan' + - type: Synonym + title: 'Bleach: Thousand-Year Blood War Arc Part 3' + - type: Japanese + title: BLEACH 千年血戦篇-相剋譚- + - type: English + title: 'Bleach: Thousand-Year Blood War - The Conflict' + title: 'Bleach: Sennen Kessen-hen - Soukoku-tan' + title_english: 'Bleach: Thousand-Year Blood War - The Conflict' + title_japanese: BLEACH 千年血戦篇-相剋譚- + title_synonyms: + - 'Bleach: Thousand-Year Blood War Arc Part 3' + type: TV + source: Manga + episodes: 14 + status: Finished Airing + airing: false + aired: + from: '2024-10-05T00:00:00+00:00' + to: '2024-12-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2024 + to: + day: 28 + month: 12 + year: 2024 + string: Oct 5, 2024 to Dec 28, 2024 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.67 + scored_by: 158305 + rank: 78 + popularity: 941 + members: 297496 + favorites: 3718 + synopsis: |- + After an awe-inspiring battle with Ichibei Hyousube—leader of the Soul Society's Royal Guard—the powerful Yhwach moves into the final stage of his master plan. He aims to slay the Soul King, the being whose very existence maintains the status quo of three worlds: Hueco Mundo, the Soul Society, and the realm of humans that Ichigo Kurosaki and his closest friends hail from. Conquering his own bout with the remainder of the Royal Guard, Uryuu Ishida joins Yhwach in his efforts to create a new world in his image. + + With a flood of resolution and newfound power, Ichigo rushes to stop Yhwach from accomplishing his ultimate goal and save the countless lives within the three existing realms. But Ichigo has a complicated lineage, one that leaves him susceptible to Yhwach's sinister influence. + + Meanwhile, in a final desperate gambit, Jirou Sakuranosuke Shunsui Kyouraku, the newly promoted head captain of the Soul Society's combat corps, enlists the help of an old enemy whose immense power may turn the tide of battle. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1392 + type: anime + name: Zack Promotion + url: https://myanimelist.net/anime/producer/1392/Zack_Promotion + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 2951 + type: anime + name: Pierrot Films + url: https://myanimelist.net/anime/producer/2951/Pierrot_Films + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 52215 + url: https://myanimelist.net/anime/52215/Chi_Chikyuu_no_Undou_ni_Tsuite + images: + jpg: + image_url: https://myanimelist.net/images/anime/1749/145922.jpg + small_image_url: https://myanimelist.net/images/anime/1749/145922t.jpg + large_image_url: https://myanimelist.net/images/anime/1749/145922l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1749/145922.webp + small_image_url: https://myanimelist.net/images/anime/1749/145922t.webp + large_image_url: https://myanimelist.net/images/anime/1749/145922l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Aju1yusWVKo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chi. Chikyuu no Undou ni Tsuite + - type: Synonym + title: About the Movement of the Earth + - type: Japanese + title: チ。―地球の運動について― + - type: English + title: 'Orb: On the Movements of the Earth' + title: Chi. Chikyuu no Undou ni Tsuite + title_english: 'Orb: On the Movements of the Earth' + title_japanese: チ。―地球の運動について― + title_synonyms: + - About the Movement of the Earth + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-10-05T00:00:00+00:00' + to: '2025-03-15T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2024 + to: + day: 15 + month: 3 + year: 2025 + string: Oct 5, 2024 to Mar 15, 2025 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 8.72 + scored_by: 119314 + rank: 57 + popularity: 947 + members: 295269 + favorites: 7641 + synopsis: |- + Twelve-year-old prodigy Rafal believes in living rationally, so as to earn praise and respect from society while not being led astray by his emotions. To this end, he publicly states his intention to study theology—the academic field held in highest regard in early 15th century Poland. However, an encounter with a mysterious man upends Rafal's life, sparking an illogical desire to instead pursue his passion for astronomy. + + Rafal is determined to prove the beauty and rationality of heliocentrism—the theory that the Earth revolves around the Sun. This belief is considered heretical by the powerful Church, which promotes geocentrism—the Sun revolving around the Earth—as the sole truth of the universe. Those whose beliefs do not align with the will of the Church suffer unfathomably gruesome consequences. + + In pursuit of evidence for a heliocentric model of the universe, Rafal grapples with obtaining precise calculations and building empirical theories. His greatest challenge, however, lies in conducting this research discreetly—lest he wish to meet the same fate as other heretics. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Saturdays + time: '23:45' + timezone: Asia/Tokyo + string: Saturdays at 23:45 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + - mal_id: 3020 + type: anime + name: SKY Perfect Pictures + url: https://myanimelist.net/anime/producer/3020/SKY_Perfect_Pictures + licensors: [] + studios: + - mal_id: 11 + type: anime + name: Madhouse + url: https://myanimelist.net/anime/producer/11/Madhouse + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 58572 + url: https://myanimelist.net/anime/58572/Shangri-La_Frontier__Kusoge_Hunter_Kamige_ni_Idoman_to_su_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1996/147601.jpg + small_image_url: https://myanimelist.net/images/anime/1996/147601t.jpg + large_image_url: https://myanimelist.net/images/anime/1996/147601l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1996/147601.webp + small_image_url: https://myanimelist.net/images/anime/1996/147601t.webp + large_image_url: https://myanimelist.net/images/anime/1996/147601l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7HSDKDCAHX8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season' + - type: Synonym + title: 'Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game' + - type: Synonym + title: Shanfro + - type: Japanese + title: シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season + - type: English + title: Shangri-La Frontier Season 2 + title: 'Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su 2nd Season' + title_english: Shangri-La Frontier Season 2 + title_japanese: シャングリラ・フロンティア~クソゲーハンター、神ゲーに挑まんとす~ 2nd season + title_synonyms: + - 'Shangri-La Frontier: Crappy Game Hunter Challenges God-Tier Game' + - Shanfro + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2024-10-13T00:00:00+00:00' + to: '2025-03-30T00:00:00+00:00' + prop: + from: + day: 13 + month: 10 + year: 2024 + to: + day: 30 + month: 3 + year: 2025 + string: Oct 13, 2024 to Mar 30, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.26 + scored_by: 133043 + rank: 373 + popularity: 1065 + members: 265234 + favorites: 1561 + synopsis: |- + Ever since Rakurou "Sunraku" Hizutome started to play the extremely popular virtual reality game Shangri-La Frontier, he has truly fallen in love with it. Sunraku has quickly made a big name for himself by fighting two of the seven unique, nearly unbeatable monsters, which is unthinkable for most players. To progress the game's story, he sets out on an adventure with his leporine guide, Emul, to acquire a magic operation unit from an ancient workshop. + + Though Sunraku breezes through this quest alongside his clanmates Towa "Arthur Pencilgon" Amane and Kei "OiKatzo" Uomi, there seems to be an ulterior motive as to why the two of them decided to help Sunraku in the first place. Nevertheless, Sunraku gains valuable knowledge and allies, critical for his advancement in the game. By seeking out powerful enemies and unraveling the inner workings of the game's world, Sunraku may just change Shangri-La Frontier forever. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1880 + type: anime + name: Tencent Games + url: https://myanimelist.net/anime/producer/1880/Tencent_Games + - mal_id: 2837 + type: anime + name: Netmarble + url: https://myanimelist.net/anime/producer/2837/Netmarble + licensors: [] + studios: + - mal_id: 605 + type: anime + name: C2C + url: https://myanimelist.net/anime/producer/605/C2C + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 40333 + url: https://myanimelist.net/anime/40333/Uzumaki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1207/146272.jpg + small_image_url: https://myanimelist.net/images/anime/1207/146272t.jpg + large_image_url: https://myanimelist.net/images/anime/1207/146272l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1207/146272.webp + small_image_url: https://myanimelist.net/images/anime/1207/146272t.webp + large_image_url: https://myanimelist.net/images/anime/1207/146272l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2ivmweJQaco?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Uzumaki + - type: Synonym + title: The Spiral + - type: Japanese + title: うずまき + - type: English + title: 'Uzumaki: Spiral Into Horror' + title: Uzumaki + title_english: 'Uzumaki: Spiral Into Horror' + title_japanese: うずまき + title_synonyms: + - The Spiral + type: TV + source: Manga + episodes: 4 + status: Finished Airing + airing: false + aired: + from: '2024-09-28T00:00:00+00:00' + to: '2024-10-19T00:00:00+00:00' + prop: + from: + day: 28 + month: 9 + year: 2024 + to: + day: 19 + month: 10 + year: 2024 + string: Sep 28, 2024 to Oct 19, 2024 + duration: 28 min per ep + rating: R - 17+ (violence & profanity) + score: 5.67 + scored_by: 76765 + rank: 12646 + popularity: 1165 + members: 244720 + favorites: 1238 + synopsis: |- + In the town of Kurouzu-cho, Kirie Goshima lives a fairly normal life with her family. As she walks to the train station one day to meet her boyfriend, Shuuichi Saito, she sees his father staring at a snail shell in an alley. Thinking nothing of it, she mentions the incident to Shuuichi, who says that his father has been acting weird lately. Shuuichi reveals his rising desire to leave the town with Kirie, saying that the town is infected with spirals. + + But his father's obsession with the shape soon proves deadly, beginning a chain of horrific and unexplainable events that causes the residents of Kurouzu-cho to spiral into madness. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: null + time: null + timezone: null + string: Unknown + producers: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 2034 + type: anime + name: Akatsuki + url: https://myanimelist.net/anime/producer/2034/Akatsuki + - mal_id: 2821 + type: anime + name: Fugaku + url: https://myanimelist.net/anime/producer/2821/Fugaku + genres: + - mal_id: 5 + type: anime + name: Avant Garde + url: https://myanimelist.net/anime/genre/5/Avant_Garde + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 57066 + url: https://myanimelist.net/anime/57066/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_V__Houjou_no_Megami-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1299/144738.jpg + small_image_url: https://myanimelist.net/images/anime/1299/144738t.jpg + large_image_url: https://myanimelist.net/images/anime/1299/144738l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1299/144738.webp + small_image_url: https://myanimelist.net/images/anime/1299/144738t.webp + large_image_url: https://myanimelist.net/images/anime/1299/144738l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/8UJbzK14gto?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen' + - type: Synonym + title: DanMachi 5th Season + - type: Synonym + title: Is It Wrong That I Want to Meet You in a Dungeon 5th Season + - type: Japanese + title: ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇 + - type: English + title: Is It Wrong to Try to Pick Up Girls in a Dungeon? V + title: 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka V: Houjou no Megami-hen' + title_english: Is It Wrong to Try to Pick Up Girls in a Dungeon? V + title_japanese: ダンジョンに出会いを求めるのは間違っているだろうかV 豊穣の女神篇 + title_synonyms: + - DanMachi 5th Season + - Is It Wrong That I Want to Meet You in a Dungeon 5th Season + type: TV + source: Light novel + episodes: 15 + status: Finished Airing + airing: false + aired: + from: '2024-10-05T00:00:00+00:00' + to: '2025-03-07T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2024 + to: + day: 7 + month: 3 + year: 2025 + string: Oct 5, 2024 to Mar 7, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.9 + scored_by: 93585 + rank: 935 + popularity: 1285 + members: 219392 + favorites: 1189 + synopsis: |- + Goddess Festival—A fruit festival that brings the labyrinth city of Orario to life. Goddesses symbolizing fertility are enshrined on the altar, and among them is the Goddess of Beauty. Bell Cranel, who has survived and returned to his daily life from the dead depths of the dungeon, is here and ready to enjoy the bustle of the Goddess Festival until he receives a letter from a girl at a small bar in a corner of Orario—"To Mr. Bell, please go on a date with just the two of us at the upcoming Goddess Festival. From Syr." Syr's single-minded determination will drive both Bell and the labyrinth city crazy. Meanwhile, the Einherjar, the warriors who claim to be the "strongest," are now suddenly on the move... + + (Source: HIDIVE) + background: '' + season: fall + year: 2024 + broadcast: + day: Saturdays + time: 00:30 + timezone: Asia/Tokyo + string: Saturdays at 00:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 415 + type: anime + name: Warner Bros. Japan + url: https://myanimelist.net/anime/producer/415/Warner_Bros_Japan + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 52995 + url: https://myanimelist.net/anime/52995/Arifureta_Shokugyou_de_Sekai_Saikyou_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1553/145597.jpg + small_image_url: https://myanimelist.net/images/anime/1553/145597t.jpg + large_image_url: https://myanimelist.net/images/anime/1553/145597l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1553/145597.webp + small_image_url: https://myanimelist.net/images/anime/1553/145597t.webp + large_image_url: https://myanimelist.net/images/anime/1553/145597l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/b4HY4UX-EFY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Arifureta Shokugyou de Sekai Saikyou Season 3 + - type: Synonym + title: From Common Job Class to the Strongest in the World Season 3 + - type: Japanese + title: ありふれた職業で世界最強 season 3 + - type: English + title: 'Arifureta: From Commonplace to World''s Strongest Season 3' + title: Arifureta Shokugyou de Sekai Saikyou Season 3 + title_english: 'Arifureta: From Commonplace to World''s Strongest Season 3' + title_japanese: ありふれた職業で世界最強 season 3 + title_synonyms: + - From Common Job Class to the Strongest in the World Season 3 + type: TV + source: Light novel + episodes: 16 + status: Finished Airing + airing: false + aired: + from: '2024-10-14T00:00:00+00:00' + to: '2025-02-17T00:00:00+00:00' + prop: + from: + day: 14 + month: 10 + year: 2024 + to: + day: 17 + month: 2 + year: 2025 + string: Oct 14, 2024 to Feb 17, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.02 + scored_by: 70531 + rank: 4998 + popularity: 1376 + members: 203611 + favorites: 1103 + synopsis: |- + En route to conquer a Great Labyrinth with his allies and former classmates, Hajime Nagumo is sidetracked by a tragedy that befalls his party member Shea Haulia. After encountering a group of rabbitmen caught in an ambush, Nagumo learns that members of Shea's Haulia Tribe have been abducted by soldiers of the Hoelscher Empire. To alleviate the anxiety of Shea, whose father may be in mortal danger, Nagumo decides to head toward the empire and rescue the missing Haulias. + + After arriving at his destination, Hajime is caught up in political turmoil between the empire and the Heiligh Kingdom. As princess Liliana S. B. Heiligh tries to formalize an alliance with the empire to protect her weakened kingdom against demon attacks, the Haulia Tribe plans to assassinate Emperor Gahard D. Hoelscher to free all rabbitmen from the empire's threat. Determined to protect his allies at any cost, Hajime will need to ignore all political considerations and unleash his unstoppable power on anyone who may stand in his way. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 882 + type: anime + name: Toranoana + url: https://myanimelist.net/anime/producer/882/Toranoana + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2106 + type: anime + name: Sony Music Solutions + url: https://myanimelist.net/anime/producer/2106/Sony_Music_Solutions + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 163 + type: anime + name: asread. + url: https://myanimelist.net/anime/producer/163/asread + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 50306 + url: https://myanimelist.net/anime/50306/Seirei_Gensouki_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1087/144583.jpg + small_image_url: https://myanimelist.net/images/anime/1087/144583t.jpg + large_image_url: https://myanimelist.net/images/anime/1087/144583l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1087/144583.webp + small_image_url: https://myanimelist.net/images/anime/1087/144583t.webp + large_image_url: https://myanimelist.net/images/anime/1087/144583l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dBXaDjFhOC0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seirei Gensouki 2 + - type: Japanese + title: 精霊幻想記2 + - type: English + title: 'Seirei Gensouki: Spirit Chronicles Season 2' + title: Seirei Gensouki 2 + title_english: 'Seirei Gensouki: Spirit Chronicles Season 2' + title_japanese: 精霊幻想記2 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-08T00:00:00+00:00' + to: '2024-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2024 + to: + day: 24 + month: 12 + year: 2024 + string: Oct 8, 2024 to Dec 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.87 + scored_by: 71913 + rank: 5887 + popularity: 1391 + members: 200819 + favorites: 1293 + synopsis: |- + After Rio escapes the capital of the Beltrum Kingdom with his former teacher Celia Claire and his bond spirit, Aishia, he finds himself in a dire situation once again. As it turns out, multiple people from his past life in Japan are suddenly scattered around the new world. Rio rushes to their help, saving a small group and taking them under his wing. To his surprise, one of the rescuees is his old self's childhood friend Miharu Ayase. + + The newcomers were not the only ones summoned. With old friends and new allies by his side, Rio sets out to locate the other abductees while searching for a way to send them back to Japan. However, Rio never loses sight of his main goal: avenging his mother's death. + + [Written by MAL Rewrite] + background: Seirei Gensouki 2 was released on Blu-ray and DVD in two volumes from January 29, 2025, to February 26, + 2025. + season: fall + year: 2024 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 884 + type: anime + name: Strawberry Meets Pictures + url: https://myanimelist.net/anime/producer/884/Strawberry_Meets_Pictures + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 1589 + type: anime + name: NichiNare + url: https://myanimelist.net/anime/producer/1589/NichiNare + - mal_id: 1821 + type: anime + name: Melonbooks + url: https://myanimelist.net/anime/producer/1821/Melonbooks + - mal_id: 2174 + type: anime + name: TMS Music + url: https://myanimelist.net/anime/producer/2174/TMS_Music + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 59145 + url: https://myanimelist.net/anime/59145/Ranma_½_2024 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1155/144299.jpg + small_image_url: https://myanimelist.net/images/anime/1155/144299t.jpg + large_image_url: https://myanimelist.net/images/anime/1155/144299l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1155/144299.webp + small_image_url: https://myanimelist.net/images/anime/1155/144299t.webp + large_image_url: https://myanimelist.net/images/anime/1155/144299l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ux3HwkNff8Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ranma ½ (2024) + - type: Synonym + title: Ranma 1/2 (2024) + - type: Japanese + title: らんま1/2 + - type: English + title: Ranma ½ (2024) + title: Ranma ½ (2024) + title_english: Ranma ½ (2024) + title_japanese: らんま1/2 + title_synonyms: + - Ranma 1/2 (2024) + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-06T00:00:00+00:00' + to: '2024-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2024 + to: + day: 22 + month: 12 + year: 2024 + string: Oct 6, 2024 to Dec 22, 2024 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.98 + scored_by: 85239 + rank: 791 + popularity: 1621 + members: 169999 + favorites: 1289 + synopsis: |- + During their martial arts training expedition in China, Ranma Saotome and his father Genma suffered an accident, which in turn, afflicted them with a curse—whenever they are doused with cold water, Ranma transforms into a girl, while his father turns into a panda! Only hot water can reverse these changes, but any further contact with cold water opens the can of worms once more. + + Unfortunately, the trouble does not end there, as Ranma finds out about his betrothal to one of the daughters of Soun Tendou, his father's closest friend. During the families' first meeting, it is decided that Ranma is to be married to Akane, the youngest daughter, a decision that is met with vehement protests from both sides. The two are simply not compatible, yet they are forced to live under one roof. Ranma's status quo further adds to the chaos, leading him to a series of comedic situations and misunderstandings that, in the grand scheme of things, may just be what he needs to work with Akane. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Sundays + time: 00:55 + timezone: Asia/Tokyo + string: Sundays at 00:55 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58172 + url: https://myanimelist.net/anime/58172/Nageki_no_Bourei_wa_Intai_shitai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1679/145660.jpg + small_image_url: https://myanimelist.net/images/anime/1679/145660t.jpg + large_image_url: https://myanimelist.net/images/anime/1679/145660l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1679/145660.webp + small_image_url: https://myanimelist.net/images/anime/1679/145660t.webp + large_image_url: https://myanimelist.net/images/anime/1679/145660l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/g_DvFLdgBFI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nageki no Bourei wa Intai shitai + - type: Synonym + title: Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party + - type: Japanese + title: 嘆きの亡霊は引退したい + - type: English + title: Let This Grieving Soul Retire + title: Nageki no Bourei wa Intai shitai + title_english: Let This Grieving Soul Retire + title_japanese: 嘆きの亡霊は引退したい + title_synonyms: + - Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-10-01T00:00:00+00:00' + to: '2024-12-24T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2024 + to: + day: 24 + month: 12 + year: 2024 + string: Oct 1, 2024 to Dec 24, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 81091 + rank: 4759 + popularity: 1626 + members: 169351 + favorites: 575 + synopsis: |- + As dungeon-like treasure vaults started appearing throughout the land, more and more people began signing up as treasure hunters—risking their lives to obtain the vast riches and ancient relics inside. In the imperial capital of Zebrudia, the top hunter party is the Grieving Souls—a group of six childhood friends led by Krai Andrey, who is thought to be the strongest of them due to having a reputed wide array of skills. + + However, Krai actually has no special talent. His accomplishments are actually the result of his friends being overpowered. Krai has repeatedly attempted to leave the party out of fear his lack of aptitudes would one day cause his companions' downfall. Nevertheless, everyone around Krai thinks differently, making him feel obligated to remain the group's leader. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60022 + url: https://myanimelist.net/anime/60022/One_Piece_Fan_Letter + images: + jpg: + image_url: https://myanimelist.net/images/anime/1455/146229.jpg + small_image_url: https://myanimelist.net/images/anime/1455/146229t.jpg + large_image_url: https://myanimelist.net/images/anime/1455/146229l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1455/146229.webp + small_image_url: https://myanimelist.net/images/anime/1455/146229t.webp + large_image_url: https://myanimelist.net/images/anime/1455/146229l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/MewJ5bEM-5U?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: One Piece Fan Letter + - type: Japanese + title: ONE PIECE FAN LETTER + title: One Piece Fan Letter + title_english: null + title_japanese: ONE PIECE FAN LETTER + title_synonyms: [] + type: TV Special + source: Light novel + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2024-10-20T00:00:00+00:00' + to: null + prop: + from: + day: 20 + month: 10 + year: 2024 + to: + day: null + month: null + year: null + string: Oct 20, 2024 + duration: 24 min + rating: PG-13 - Teens 13 or older + score: 9.01 + scored_by: 111782 + rank: 13 + popularity: 1728 + members: 155268 + favorites: 2579 + synopsis: "Although the golden age of piracy is about to reach new heights, most people do not seek the glory of finding\ + \ the elusive One Piece—a treasure signifying a new conqueror of all seas that was once embodied by the legendary\ + \ King of the Pirates, Gol D. Roger. However, even if civilians generally despise pirates, they secretly cheer for\ + \ at least one of them. \n\nOne red-headed girl from Sabaody Archipelago is no exception: She reveres Nami, the ingenious\ + \ female navigator of Monkey D. Luffy's Straw Hat crew. Determined to deliver a fan letter to her idol, the Sabaody\ + \ child is prepared to challenge forces of authority who strive to prevent Luffy and his friends from departing for\ + \ their next destination: the New World. But to succeed, Nami's fan may need to risk her life and interfere with the\ + \ Marines' plans, potentially causing devastating consequences for the wider world.\n\n[Written by MAL Rewrite]" + background: This work serves to commemorate the 25th anniversary of the One Piece anime. + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 56964 + url: https://myanimelist.net/anime/56964/Raise_wa_Tanin_ga_Ii + images: + jpg: + image_url: https://myanimelist.net/images/anime/1428/143773.jpg + small_image_url: https://myanimelist.net/images/anime/1428/143773t.jpg + large_image_url: https://myanimelist.net/images/anime/1428/143773l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1428/143773.webp + small_image_url: https://myanimelist.net/images/anime/1428/143773t.webp + large_image_url: https://myanimelist.net/images/anime/1428/143773l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/QpdoydykBOA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Raise wa Tanin ga Ii + - type: Japanese + title: 来世は他人がいい + - type: English + title: 'Yakuza Fiancé: Raise wa Tanin ga Ii' + title: Raise wa Tanin ga Ii + title_english: 'Yakuza Fiancé: Raise wa Tanin ga Ii' + title_japanese: 来世は他人がいい + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-07T00:00:00+00:00' + to: '2024-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2024 + to: + day: 23 + month: 12 + year: 2024 + string: Oct 7, 2024 to Dec 23, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.18 + scored_by: 64121 + rank: 4100 + popularity: 1728 + members: 155182 + favorites: 808 + synopsis: |- + After years of animosity, the leaders of Osaka's Somei and Tokyo's Miyama yakuza groups have called a truce—by arranging an engagement between their respective grandchildren, Yoshino Somei and Kirishima Miyama. To this end, 17-year-old Yoshino moves to Tokyo to live with the Miyama family and attend school with her new fiancé. Although Kirishima is all smiles and perfectly polite, there is something unsettling about his demeanor that Yoshino cannot put her finger on. + + Yoshino's suspicions are soon confirmed: despite his manners, Kirishima is a masochistic maniac. He hurts people without batting an eye and also revels in being punished verbally and physically himself. What he wants most is a spoiled and arrogant fiancée who will ruin his life. When Yoshino does not quite meet his expectations, he reveals his true colors and openly insults her. However, instead of running away in fear, Yoshino decides to take revenge by making Kirishima fall in love with her and then ruthlessly breaking his heart. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 3020 + type: anime + name: SKY Perfect Pictures + url: https://myanimelist.net/anime/producer/3020/SKY_Perfect_Pictures + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 57891 + url: https://myanimelist.net/anime/57891/Hitoribocchi_no_Isekai_Kouryaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1714/145320.jpg + small_image_url: https://myanimelist.net/images/anime/1714/145320t.jpg + large_image_url: https://myanimelist.net/images/anime/1714/145320l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1714/145320.webp + small_image_url: https://myanimelist.net/images/anime/1714/145320t.webp + large_image_url: https://myanimelist.net/images/anime/1714/145320l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aLrRmw4hlUM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hitoribocchi no Isekai Kouryaku + - type: Synonym + title: Lonely Attack on the Different World + - type: Japanese + title: ひとりぼっちの異世界攻略 + - type: English + title: Loner Life in Another World + title: Hitoribocchi no Isekai Kouryaku + title_english: Loner Life in Another World + title_japanese: ひとりぼっちの異世界攻略 + title_synonyms: + - Lonely Attack on the Different World + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-04T00:00:00+00:00' + to: '2024-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2024 + to: + day: 20 + month: 12 + year: 2024 + string: Oct 4, 2024 to Dec 20, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 72154 + rank: 7844 + popularity: 1767 + members: 151160 + favorites: 536 + synopsis: |- + High school student Haruka has always been a content loner. One day, he and his class are abruptly transported to another world and given skill points to use when choosing from an assortment of abilities and magical powers. Unfortunately, Haruka arrives last, and he can only use his points on the seemingly impractical abilities the others had no interest in. Although he is on his own again and must adjust to his new life by himself, he much prefers it that way. + + However, Haruka's peaceful solitude is short-lived, as he runs into some of his classmates. Weak to their pleas for help, he ends up sheltering and helping them reunite with the others. But the different cliques struggle to see eye to eye, forcing Haruka to find a way to end the infighting and restore harmony between them to survive the unfamiliar world. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Fridays + time: 00:00 + timezone: Asia/Tokyo + string: Fridays at 00:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + - mal_id: 2370 + type: anime + name: Hayabusa Film + url: https://myanimelist.net/anime/producer/2370/Hayabusa_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 58714 + url: https://myanimelist.net/anime/58714/Saikyou_no_Shienshoku_Wajutsushi_de_Aru_Ore_wa_Sekai_Saikyou_Clan_wo_Shitagaeru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1683/145446.jpg + small_image_url: https://myanimelist.net/images/anime/1683/145446t.jpg + large_image_url: https://myanimelist.net/images/anime/1683/145446l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1683/145446.webp + small_image_url: https://myanimelist.net/images/anime/1683/145446t.webp + large_image_url: https://myanimelist.net/images/anime/1683/145446l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/A1kcb7MUczM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saikyou no Shienshoku "Wajutsushi" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru + - type: Japanese + title: 最凶の支援職【話術士】である俺は世界最強クランを従える + - type: English + title: The Most Notorious "Talker" Runs the World's Greatest Clan + title: Saikyou no Shienshoku "Wajutsushi" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru + title_english: The Most Notorious "Talker" Runs the World's Greatest Clan + title_japanese: 最凶の支援職【話術士】である俺は世界最強クランを従える + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-07T00:00:00+00:00' + to: '2024-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2024 + to: + day: 23 + month: 12 + year: 2024 + string: Oct 7, 2024 to Dec 23, 2024 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.58 + scored_by: 76796 + rank: 1897 + popularity: 1772 + members: 150710 + favorites: 695 + synopsis: |- + Two years ago, Noel Stollen's village was cruelly attacked by beasts when an Abyss, a gate to the demonic realm, opened. The invasion was eventually halted by his grandfather, a Seeker, whose job is to hunt monsters and purify lands tainted by the Abyss. As his heroic grandfather took his last breath, Noel promised him that he would become the ultimate Seeker—despite him being a Talker, which is widely considered the weakest class. + + After becoming a certified Seeker, Noel joins a party called Blue Beyond, where his main duties are to support his teammates by boosting their abilities and giving them orders. One day, Noel makes a proposal for the group: he wants to create a clan that will enable them to rise even higher in society. As everyone accepts the plan and all is going well, the worst happens—two members betray him by embezzling the entirety of their shared funds. That does not discourage Noel, however, as he sells the traitors to a slave trader, earning his money back. + + Now alone, Noel endeavors to rebuild Blue Beyond from scratch. In order to become the greatest Seeker in the world, Noel must forcibly carve his own path by recruiting new members and using his notorious ways to eliminate any enemies in his way. + + [Written by MAL Rewrite] + background: Saikyou no Shienshoku "Wajutsushi" de Aru Ore wa Sekai Saikyou Clan wo Shitagaeru was released on Blu-ray + and DVD in two box sets from January 31, 2025, to February 28, 2025. + season: fall + year: 2024 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + - mal_id: 2387 + type: anime + name: Ga-Crew + url: https://myanimelist.net/anime/producer/2387/Ga-Crew + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 57611 + url: https://myanimelist.net/anime/57611/Kimi_wa_Meido-sama + images: + jpg: + image_url: https://myanimelist.net/images/anime/1909/144684.jpg + small_image_url: https://myanimelist.net/images/anime/1909/144684t.jpg + large_image_url: https://myanimelist.net/images/anime/1909/144684l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1909/144684.webp + small_image_url: https://myanimelist.net/images/anime/1909/144684t.webp + large_image_url: https://myanimelist.net/images/anime/1909/144684l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kRL2nBz7Z6E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi wa Meido-sama. + - type: Japanese + title: 君は冥土様。 + - type: English + title: You are Ms. Servant. + title: Kimi wa Meido-sama. + title_english: You are Ms. Servant. + title_japanese: 君は冥土様。 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-06T00:00:00+00:00' + to: '2024-12-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2024 + to: + day: 22 + month: 12 + year: 2024 + string: Oct 6, 2024 to Dec 22, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.06 + scored_by: 53534 + rank: 4803 + popularity: 1854 + members: 141644 + favorites: 504 + synopsis: "One day, Hitoyoshi Yokoya wakes up to a mysterious nameless girl dressed as a maid ringing his doorbell,\ + \ asking to be his servant. With her former master referring her to the Yokoya household, she offers her expertise\ + \ as an assassin. Intimidated by her background, Hitoyoshi tries to send her away; but when she leaves something behind,\ + \ he rushes to return it to her and is nearly hit by a truck in the process. With her fast reflexes, the girl saves\ + \ him just in time, and Hitoyoshi ends up taking her in. \n\nIronically, the maid lacks any skills apart from the\ + \ art of killing she has perfected since childhood. Nevertheless, Hitoyoshi welcomes the girl with open arms, encouraging\ + \ her to leave her monochromatic past behind and experience a normal life. To seal the deal, Hitoyoshi names her Yuki,\ + \ marking the beginning of her path to redemption and happiness.\n\n[Written by MAL Rewrite]" + background: Kimi wa Meido-sama. aired on TV Asahi's NUMAnimation block. The series was released on Blu-ray in a box + set on March 26, 2025. + season: fall + year: 2024 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1659 + type: anime + name: AbemaTV + url: https://myanimelist.net/anime/producer/1659/AbemaTV + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2234 + type: anime + name: TV Asahi Music + url: https://myanimelist.net/anime/producer/2234/TV_Asahi_Music + licensors: [] + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59989 + url: https://myanimelist.net/anime/59989/Kami_no_Tou__Koubou-sen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1877/145819.jpg + small_image_url: https://myanimelist.net/images/anime/1877/145819t.jpg + large_image_url: https://myanimelist.net/images/anime/1877/145819l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1877/145819.webp + small_image_url: https://myanimelist.net/images/anime/1877/145819t.webp + large_image_url: https://myanimelist.net/images/anime/1877/145819l.webp + trailer: + youtube_id: null + url: null + embed_url: null + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kami no Tou: Koubou-sen' + - type: Synonym + title: Sin-ui Tap + - type: Synonym + title: 신의 탑 + - type: Synonym + title: Kami no Tou 2nd Season + - type: Synonym + title: 'Tower of God: Workshop Battle' + - type: Japanese + title: 神之塔 -Tower of God- 工房戦 + - type: English + title: 'Tower of God Season 2: Workshop Battle' + title: 'Kami no Tou: Koubou-sen' + title_english: 'Tower of God Season 2: Workshop Battle' + title_japanese: 神之塔 -Tower of God- 工房戦 + title_synonyms: + - Sin-ui Tap + - 신의 탑 + - Kami no Tou 2nd Season + - 'Tower of God: Workshop Battle' + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-10-06T00:00:00+00:00' + to: '2024-12-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2024 + to: + day: 29 + month: 12 + year: 2024 + string: Oct 6, 2024 to Dec 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.88 + scored_by: 68315 + rank: 5805 + popularity: 1870 + members: 140737 + favorites: 280 + synopsis: Second part of Tower of God Season 2. + background: '' + season: fall + year: 2024 + broadcast: + day: Sundays + time: '23:00' + timezone: Asia/Tokyo + string: Sundays at 23:00 (JST) + producers: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2876 + type: anime + name: Line Digital Frontier + url: https://myanimelist.net/anime/producer/2876/Line_Digital_Frontier + licensors: [] + studios: + - mal_id: 229 + type: anime + name: The Answer Studio + url: https://myanimelist.net/anime/producer/229/The_Answer_Studio + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 54853 + url: https://myanimelist.net/anime/54853/Maou_2099 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1675/144605.jpg + small_image_url: https://myanimelist.net/images/anime/1675/144605t.jpg + large_image_url: https://myanimelist.net/images/anime/1675/144605l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1675/144605.webp + small_image_url: https://myanimelist.net/images/anime/1675/144605t.webp + large_image_url: https://myanimelist.net/images/anime/1675/144605l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/eZnTZ05dsKs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Maou 2099 + - type: Synonym + title: Ken to Maou no Cyberpunk + - type: Synonym + title: The Lord Of Immortals Blooming in The Abyss F.E. 2099 + - type: Japanese + title: 魔王2099 + - type: English + title: Demon Lord 2099 + title: Maou 2099 + title_english: Demon Lord 2099 + title_japanese: 魔王2099 + title_synonyms: + - Ken to Maou no Cyberpunk + - The Lord Of Immortals Blooming in The Abyss F.E. 2099 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-13T00:00:00+00:00' + to: '2024-12-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 10 + year: 2024 + to: + day: 29 + month: 12 + year: 2024 + string: Oct 13, 2024 to Dec 29, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.41 + scored_by: 61462 + rank: 2691 + popularity: 1877 + members: 140069 + favorites: 406 + synopsis: |- + Five hundred years ago, the fantasy world of Alneath was torn apart by a war between magically gifted immortals and mortals armed with magical artifacts. The conflict came to an end when mortals' hero, Gram, slayed the Demon Lord Veltol Velvet Velsvolt. In 2099, the world looks a bit different. Alneath and technologically advanced Earth have fused in an event known as Fantasion. Immortals have been hunted down to near extinction, and technological implants called Familia allow mortals to use magic. + + As the new world slowly recovers, Veltol's vassal Machina Solege resurrects him in Shinjuku, a techno-magical city constructed in the middle of devastated lands. However, Veltol's magic is severely weakened, and his former ally Marcus has betrayed him. To regain his fame and magical abilities, Veltol follows the advice of Takahashi—Machina's friend and a professional hacker—to start an unusual career: live streaming. His sharp tongue and comically poor gaming skills quickly secure him followers, but to dominate the world once again, Veltol must first uncover Shinjuku's secrets and thwart Marcus' vile plans. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 56894 + url: https://myanimelist.net/anime/56894/Dragon_Ball_Daima + images: + jpg: + image_url: https://myanimelist.net/images/anime/1723/145231.jpg + small_image_url: https://myanimelist.net/images/anime/1723/145231t.jpg + large_image_url: https://myanimelist.net/images/anime/1723/145231l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1723/145231.webp + small_image_url: https://myanimelist.net/images/anime/1723/145231t.webp + large_image_url: https://myanimelist.net/images/anime/1723/145231l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ezbYAglQoxI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dragon Ball Daima + - type: Japanese + title: ドラゴンボール ダイマ + - type: English + title: Dragon Ball Daima + title: Dragon Ball Daima + title_english: Dragon Ball Daima + title_japanese: ドラゴンボール ダイマ + title_synonyms: [] + type: TV + source: Manga + episodes: 20 + status: Finished Airing + airing: false + aired: + from: '2024-10-11T00:00:00+00:00' + to: '2025-02-28T00:00:00+00:00' + prop: + from: + day: 11 + month: 10 + year: 2024 + to: + day: 28 + month: 2 + year: 2025 + string: Oct 11, 2024 to Feb 28, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.57 + scored_by: 65096 + rank: 1921 + popularity: 1900 + members: 138271 + favorites: 945 + synopsis: |- + After saving the world from the destructive might of Majin Buu, Gokuu Son and his allies look forward to a well-earned rest. However, unbeknownst to them, their battle was recorded and observed by Gomah, an evil being who assumes the title of King in the Demon Realm, filling the void left behind with the death of former ruler Dabura. + + At Gomah's side is Degesu, the younger brother of Higashi no Kaioshin, a being who lords over the universe. Jealous of his brother's power, Degesu works alongside Gomah to steal Earth's Dragon Balls and preemptively subdue any potential future enemies. Calling upon the power of the legendary dragon Shenron, Gomah wishes for Gokuu and his friends to be reverted into children, intending to rob them of the limitless power that defeated Buu. With Earth's greatest warriors shrunken down, Gomah abducts Dende, the planet's acting god. + + But Gokuu refuses to be set back by his new body, working to master his younger form to fight as proficiently as he could as an adult. Joined by Kaioshin and Glorio—a mysterious but seemingly rebellious demon—Gokuu pursues Gomah to the Demon Realm in order to rescue Dende and restore his friends to their natural ages. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Fridays + time: '23:40' + timezone: Asia/Tokyo + string: Fridays at 23:40 (JST) + producers: [] + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 18 + type: anime + name: Toei Animation + url: https://myanimelist.net/anime/producer/18/Toei_Animation + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 56228 + url: https://myanimelist.net/anime/56228/Rekishi_ni_Nokoru_Akujo_ni_Naru_zo + images: + jpg: + image_url: https://myanimelist.net/images/anime/1005/145339.jpg + small_image_url: https://myanimelist.net/images/anime/1005/145339t.jpg + large_image_url: https://myanimelist.net/images/anime/1005/145339l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1005/145339.webp + small_image_url: https://myanimelist.net/images/anime/1005/145339t.webp + large_image_url: https://myanimelist.net/images/anime/1005/145339l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1BhTUhaugxo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rekishi ni Nokoru Akujo ni Naru zo + - type: Synonym + title: Rekiaku + - type: Synonym + title: 'I''ll Become a Villainess That Will Go Down in History: The More of a Villainess I Become' + - type: Synonym + title: the More the Prince will Dote on Me + - type: Japanese + title: 歴史に残る悪女になるぞ + - type: English + title: I'll Become a Villainess Who Goes Down in History + title: Rekishi ni Nokoru Akujo ni Naru zo + title_english: I'll Become a Villainess Who Goes Down in History + title_japanese: 歴史に残る悪女になるぞ + title_synonyms: + - Rekiaku + - 'I''ll Become a Villainess That Will Go Down in History: The More of a Villainess I Become' + - the More the Prince will Dote on Me + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2024-10-02T00:00:00+00:00' + to: '2024-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2024 + to: + day: 25 + month: 12 + year: 2024 + string: Oct 2, 2024 to Dec 25, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.35 + scored_by: 69000 + rank: 3009 + popularity: 1917 + members: 137007 + favorites: 722 + synopsis: |- + The kind and compassionate heroine of an otome game may be as flawless as she is admirable, but a certain young woman from Japan much prefers the villainess, Alicia Williams. She sees sense in Alicia's ruthless verbal abuse and values her discipline and fortitude. On the other hand, aside from always toying with Prince Duke Seeker's emotions, the commoner heroine seems to only spout lip service. + + Given the choice, the young woman would love to be reincarnated as Alicia—and her wish suddenly comes true! Seven-year-old Alicia awakens with the memories of her past life, now aware of all the future events, outcomes, and the world's secrets. She has no fear; to outsmart the heroine and avoid a bad ending, all Alicia needs is hard work, mastery of her noble family's dark magic, and the determination to become the greatest villainess in history. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Wednesdays + time: 00:30 + timezone: Asia/Tokyo + string: Wednesdays at 00:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 59131 + url: https://myanimelist.net/anime/59131/Tensei_Kizoku_Kantei_Skill_de_Nariagaru_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1280/143705.jpg + small_image_url: https://myanimelist.net/images/anime/1280/143705t.jpg + large_image_url: https://myanimelist.net/images/anime/1280/143705l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1280/143705.webp + small_image_url: https://myanimelist.net/images/anime/1280/143705t.webp + large_image_url: https://myanimelist.net/images/anime/1280/143705l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7YbYh1WMmxM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season + - type: Synonym + title: Reincarnated as an Aristocrat with an Appraisal Skill Season 2 + - type: Japanese + title: 転生貴族、鑑定スキルで成り上がる 第2期 + - type: English + title: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2 + title: Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season + title_english: As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World Season 2 + title_japanese: 転生貴族、鑑定スキルで成り上がる 第2期 + title_synonyms: + - Reincarnated as an Aristocrat with an Appraisal Skill Season 2 + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-09-29T00:00:00+00:00' + to: '2024-12-22T00:00:00+00:00' + prop: + from: + day: 29 + month: 9 + year: 2024 + to: + day: 22 + month: 12 + year: 2024 + string: Sep 29, 2024 to Dec 22, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.43 + scored_by: 61656 + rank: 2586 + popularity: 2012 + members: 127927 + favorites: 321 + synopsis: Second season of Tensei Kizoku, Kantei Skill de Nariagaru. + background: Tensei Kizoku, Kantei Skill de Nariagaru 2nd Season aired on CBC and TBS' Agaru Anime block. + season: fall + year: 2024 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 146 + type: anime + name: CBC Television + url: https://myanimelist.net/anime/producer/146/CBC_Television + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1617 + type: anime + name: Tencent Japan + url: https://myanimelist.net/anime/producer/1617/Tencent_Japan + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 2246 + type: anime + name: studio MOTHER + url: https://myanimelist.net/anime/producer/2246/studio_MOTHER + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 55887 + url: https://myanimelist.net/anime/55887/Kekkon_suru_tte_Hontou_desu_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1123/154179.jpg + small_image_url: https://myanimelist.net/images/anime/1123/154179t.jpg + large_image_url: https://myanimelist.net/images/anime/1123/154179l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1123/154179.webp + small_image_url: https://myanimelist.net/images/anime/1123/154179t.webp + large_image_url: https://myanimelist.net/images/anime/1123/154179l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KQGbXUOZTPg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kekkon suru tte, Hontou desu ka + - type: Synonym + title: Are You Really Getting Married? + - type: Japanese + title: 結婚するって、本当ですか 365 Days To The Wedding + - type: English + title: 365 Days to the Wedding + title: Kekkon suru tte, Hontou desu ka + title_english: 365 Days to the Wedding + title_japanese: 結婚するって、本当ですか 365 Days To The Wedding + title_synonyms: + - Are You Really Getting Married? + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-03T00:00:00+00:00' + to: '2024-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2024 + to: + day: 19 + month: 12 + year: 2024 + string: Oct 3, 2024 to Dec 19, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.11 + scored_by: 52220 + rank: 4522 + popularity: 2070 + members: 123744 + favorites: 372 + synopsis: |- + As introverted colleagues at a travel agency in Tokyo, Takuya Oohara and Rika Honjouji both cherish their happily single lives. After work, home is where they feel most at ease: Takuya unwinds with his cat, while Rika studies various maps. However, an uncertain future looms over their treasured tranquility when their company plans to open a branch office in Alaska within one year and transfer an unmarried employee there. + + During a day off, Takuya and Rika accidentally meet and, despite never having spoken before, open up to each other about their relocation fears. Feeling encouraged by Takuya facing the same predicament, Rika suddenly proposes a daring solution—to pretend to be engaged for 365 days. Takuya accepts, but little do the two know that the path to marriage may, in many ways, change forever the very lifestyles they struggle to preserve. + + [Written by MAL Rewrite] + background: Kekkon suru tte, Hontou desu ka was released on Blu-ray and DVD in two volumes from December 25, 2024, to + January 29, 2025. + season: fall + year: 2024 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1817 + type: anime + name: Rakuten + url: https://myanimelist.net/anime/producer/1817/Rakuten + licensors: [] + studios: + - mal_id: 242 + type: anime + name: Ashi Productions + url: https://myanimelist.net/anime/producer/242/Ashi_Productions + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 55994 + url: https://myanimelist.net/anime/55994/Sword_Art_Online_Alternative__Gun_Gale_Online_II + images: + jpg: + image_url: https://myanimelist.net/images/anime/1360/153020.jpg + small_image_url: https://myanimelist.net/images/anime/1360/153020t.jpg + large_image_url: https://myanimelist.net/images/anime/1360/153020l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1360/153020.webp + small_image_url: https://myanimelist.net/images/anime/1360/153020t.webp + large_image_url: https://myanimelist.net/images/anime/1360/153020l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/y0v2lH6IRrc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Sword Art Online Alternative: Gun Gale Online II' + - type: Synonym + title: SAO Alternative Gun Gale Online II + - type: Japanese + title: ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ + - type: English + title: 'Sword Art Online Alternative: Gun Gale Online II' + title: 'Sword Art Online Alternative: Gun Gale Online II' + title_english: 'Sword Art Online Alternative: Gun Gale Online II' + title_japanese: ソードアート・オンライン オルタナティブ ガンゲイル・オンラインⅡ + title_synonyms: + - SAO Alternative Gun Gale Online II + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2024-10-05T00:00:00+00:00' + to: '2024-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2024 + to: + day: 21 + month: 12 + year: 2024 + string: Oct 5, 2024 to Dec 21, 2024 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.16 + scored_by: 37002 + rank: 4241 + popularity: 2107 + members: 120764 + favorites: 332 + synopsis: |- + A new tournament, Squad Jam 3, has been announced in the popular VR game Gun Gale Online. This time, Pitohui, one of the best performers in the previous competition, offers to team up with Karen Kohiruimaki, better known in-game as LLENN, the "Pink Devil." Despite her initial reluctance, Karen agrees to join Pitohui's team, LPFM, since she looks forward to facing SHINC, her rivals from the previous Squad Jam. + + The newly formed LPFM enrolls in the tournament and is quickly recognized as the favorite to win due to the caliber of its players. As they strive to come out on top and win Squad Jam 3, LLENN, Pitohui, and the other members of LPFM battle against other competitors and tackle unexpected challenges. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2024 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1233 + type: anime + name: Bandai Namco Entertainment + url: https://myanimelist.net/anime/producer/1233/Bandai_Namco_Entertainment + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: + - mal_id: 493 + type: anime + name: Aniplex of America + url: https://myanimelist.net/anime/producer/493/Aniplex_of_America + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 79 + type: anime + name: Video Game + url: https://myanimelist.net/anime/genre/79/Video_Game + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/61-2025-winter.yaml b/test/fixtures/jikan/season_matrix/61-2025-winter.yaml new file mode 100644 index 0000000..93f57ba --- /dev/null +++ b/test/fixtures/jikan/season_matrix/61-2025-winter.yaml @@ -0,0 +1,3337 @@ +metadata: + captured_at: '2026-05-11T11:35:12Z' + label: 2025-winter + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2025/winter?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:12 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:cf43aa88903461cb51b719b148e368676e02a166 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 266 + per_page: 25 + data: + - mal_id: 58567 + url: https://myanimelist.net/anime/58567/Ore_dake_Level_Up_na_Ken_Season_2__Arise_from_the_Shadow + images: + jpg: + image_url: https://myanimelist.net/images/anime/1448/147351.jpg + small_image_url: https://myanimelist.net/images/anime/1448/147351t.jpg + large_image_url: https://myanimelist.net/images/anime/1448/147351l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1448/147351.webp + small_image_url: https://myanimelist.net/images/anime/1448/147351t.webp + large_image_url: https://myanimelist.net/images/anime/1448/147351l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GDMXGzjJzS4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ore dake Level Up na Ken Season 2: Arise from the Shadow' + - type: Synonym + title: Solo Leveling Second Season + - type: Japanese + title: 俺だけレベルアップな件 Season 2 -Arise from the Shadow- + - type: English + title: 'Solo Leveling Season 2: Arise from the Shadow' + title: 'Ore dake Level Up na Ken Season 2: Arise from the Shadow' + title_english: 'Solo Leveling Season 2: Arise from the Shadow' + title_japanese: 俺だけレベルアップな件 Season 2 -Arise from the Shadow- + title_synonyms: + - Solo Leveling Second Season + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-01-05T00:00:00+00:00' + to: '2025-03-30T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2025 + to: + day: 30 + month: 3 + year: 2025 + string: Jan 5, 2025 to Mar 30, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 8.54 + scored_by: 499620 + rank: 144 + popularity: 296 + members: 780107 + favorites: 11441 + synopsis: |- + Sung Jin-Woo, dubbed the weakest hunter of all mankind, grows stronger by the day with the supernatural powers he has gained. However, keeping his skills hidden becomes more difficult as dungeon-related incidents pile up around him. + + When Jin-Woo and a few other low-ranked hunters are the only survivors of a dungeon that turns out to be a bigger challenge than initially expected, he draws attention once again, and hunter guilds take an increased interest in him. Meanwhile, a strange hunter who has been lost for ten years returns with a dire warning about an upcoming catastrophic event. As the calamity looms closer, Jin-Woo must continue leveling up to make sure nothing stops him from reaching his ultimate goal—saving the life of his mother. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + - mal_id: 2837 + type: anime + name: Netmarble + url: https://myanimelist.net/anime/producer/2837/Netmarble + - mal_id: 2839 + type: anime + name: Kakao piccoma + url: https://myanimelist.net/anime/producer/2839/Kakao_piccoma + - mal_id: 2872 + type: anime + name: D&C Media + url: https://myanimelist.net/anime/producer/2872/D_C_Media + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: [] + - mal_id: 58939 + url: https://myanimelist.net/anime/58939/Sakamoto_Days + images: + jpg: + image_url: https://myanimelist.net/images/anime/1026/146459.jpg + small_image_url: https://myanimelist.net/images/anime/1026/146459t.jpg + large_image_url: https://myanimelist.net/images/anime/1026/146459l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1026/146459.webp + small_image_url: https://myanimelist.net/images/anime/1026/146459t.webp + large_image_url: https://myanimelist.net/images/anime/1026/146459l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/CdnMoPIgC5s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakamoto Days + - type: Japanese + title: SAKAMOTO DAYS + - type: English + title: Sakamoto Days + title: Sakamoto Days + title_english: Sakamoto Days + title_japanese: SAKAMOTO DAYS + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2025-01-11T00:00:00+00:00' + to: '2025-03-22T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2025 + to: + day: 22 + month: 3 + year: 2025 + string: Jan 11, 2025 to Mar 22, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.59 + scored_by: 236749 + rank: 1855 + popularity: 515 + members: 505157 + favorites: 2732 + synopsis: |- + The name Tarou Sakamoto once instilled fear in every villain. No other professional hitman matched his prowess, and fellow assassins revered him. However, Sakamoto fell in love. In five short years, he married, became a father, put on some weight, and traded his weapons for an apron as he became the owner of a humble convenience store. + + Although Sakamoto is decidedly retired, he finds his old life of crime hard to shake off. His former partner, Shin Asakura, reappears and resolves to stay with Sakamoto's family under their strict no-kill rule. To make matters worse, a large bounty is placed on Sakamoto's head. Numerous assassins now pursue him—but they are in for a surprise. Sakamoto has not lost his edge, and no matter what tricks his enemies pull, he will fight off every last one to protect his dear family. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58514 + url: https://myanimelist.net/anime/58514/Kusuriya_no_Hitorigoto_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1025/147458.jpg + small_image_url: https://myanimelist.net/images/anime/1025/147458t.jpg + large_image_url: https://myanimelist.net/images/anime/1025/147458l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1025/147458.webp + small_image_url: https://myanimelist.net/images/anime/1025/147458t.webp + large_image_url: https://myanimelist.net/images/anime/1025/147458l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3BYutu3Pf_0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kusuriya no Hitorigoto 2nd Season + - type: Synonym + title: The Pharmacist's Monologue + - type: Synonym + title: Drugstore Soliloquy + - type: Japanese + title: 薬屋のひとりごと 第2期 + - type: English + title: The Apothecary Diaries Season 2 + title: Kusuriya no Hitorigoto 2nd Season + title_english: The Apothecary Diaries Season 2 + title_japanese: 薬屋のひとりごと 第2期 + title_synonyms: + - The Pharmacist's Monologue + - Drugstore Soliloquy + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-01-10T00:00:00+00:00' + to: '2025-07-04T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2025 + to: + day: 4 + month: 7 + year: 2025 + string: Jan 10, 2025 to Jul 4, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.91 + scored_by: 261550 + rank: 22 + popularity: 519 + members: 503156 + favorites: 7779 + synopsis: |- + Using her wit and vast knowledge of medicines and poisons alike, Maomao played a pivotal role in solving a series of mysteries and conspiracies that plagued the imperial court. Having recently come to terms with the secrets of her parents, she returns to fulfill her normal duties on behalf of the emperor's highest-ranking consorts. Maomao also works alongside the eunuch Jinshi to better the consorts' many ladies-in-waiting, including helping them learn to read. + + However, with the arrival of a merchant caravan comes a new wave of intrigue. A pattern of strange coincidences involving the visitors and their wares unsettles Maomao, driving her to investigate the puzzling circumstances behind the convoy. As dangers from both outside and within threaten the balance between the imperial concubines, Maomao continues to utilize her cunning and medical expertise to keep the women safe from harm. + + [Written by MAL Rewrite] + background: Kusuriya no Hitorigoto 2nd Season aired on Nippon TV's Friday Anime Night block. It was released on Blu-ray + in four volumes by Toho from April 16, 2025, to October 15, 2025. The series adapts the third and fourth volume of + the light novel. + season: winter + year: 2025 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 2844 + type: anime + name: Imagica Infos + url: https://myanimelist.net/anime/producer/2844/Imagica_Infos + licensors: [] + studios: + - mal_id: 28 + type: anime + name: OLM + url: https://myanimelist.net/anime/producer/28/OLM + - mal_id: 2705 + type: anime + name: TOHO animation STUDIO + url: https://myanimelist.net/anime/producer/2705/TOHO_animation_STUDIO + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: [] + - mal_id: 57592 + url: https://myanimelist.net/anime/57592/Dr_Stone__Science_Future + images: + jpg: + image_url: https://myanimelist.net/images/anime/1403/146479.jpg + small_image_url: https://myanimelist.net/images/anime/1403/146479t.jpg + large_image_url: https://myanimelist.net/images/anime/1403/146479l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1403/146479.webp + small_image_url: https://myanimelist.net/images/anime/1403/146479t.webp + large_image_url: https://myanimelist.net/images/anime/1403/146479l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/zjBQrDy5wLU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: Science Future' + - type: Synonym + title: Dr. Stone 4th Season + - type: Japanese + title: Dr.STONE SCIENCE FUTURE + - type: English + title: 'Dr. Stone: Science Future' + title: 'Dr. Stone: Science Future' + title_english: 'Dr. Stone: Science Future' + title_japanese: Dr.STONE SCIENCE FUTURE + title_synonyms: + - Dr. Stone 4th Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-09T00:00:00+00:00' + to: '2025-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2025 + to: + day: 27 + month: 3 + year: 2025 + string: Jan 9, 2025 to Mar 27, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.25 + scored_by: 149534 + rank: 376 + popularity: 918 + members: 307142 + favorites: 1291 + synopsis: |- + Having resolved the crisis in the Petrification Kingdom, Senkuu and his companions gear up to deal directly with the mastermind behind the petrification phenomenon—who supposedly resides on the moon. The ambitious spaceship project, however, requires immense manpower and critical resources scattered across the world. Thus, the Kingdom of Science exploration team kick-starts its transcontinental journey on the ship Perseus to gather them all. + + Equipped with modern technology and bolstered by the new, capable members in their ranks, the exploration team feels confident about setting sail to their first destination: America. They soon realize that the region now hosts adversaries controlling the resources they need, doing so with scientific technology which rivals and even exceeds their own. In a battle of science versus science, Senkuu and his team must outsmart their rivals if they are to have any chance of ensuring the continued survival and rejuvenation of humanity. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57616 + url: https://myanimelist.net/anime/57616/Kimi_no_Koto_ga_Daidaidaidaidaisuki_na_100-nin_no_Kanojo_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1093/145470.jpg + small_image_url: https://myanimelist.net/images/anime/1093/145470t.jpg + large_image_url: https://myanimelist.net/images/anime/1093/145470l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1093/145470.webp + small_image_url: https://myanimelist.net/images/anime/1093/145470t.webp + large_image_url: https://myanimelist.net/images/anime/1093/145470l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PoZVtpW5vjQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season + - type: Synonym + title: Hyakkano 2nd Season + - type: Japanese + title: 君のことが大大大大大好きな100人の彼女 2期 + - type: English + title: The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2 + title: Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo 2nd Season + title_english: The 100 Girlfriends Who Really, Really, Really, Really, Really Love You Season 2 + title_japanese: 君のことが大大大大大好きな100人の彼女 2期 + title_synonyms: + - Hyakkano 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-12T00:00:00+00:00' + to: '2025-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2025 + to: + day: 30 + month: 3 + year: 2025 + string: Jan 12, 2025 to Mar 30, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.89 + scored_by: 85499 + rank: 962 + popularity: 1559 + members: 177427 + favorites: 1335 + synopsis: |- + Ever since Rentarou Aijou found out that he would meet a total of one hundred soulmates in high school, his life has been anything but boring. Now with six girlfriends—each with their own unique quirks—Rentarou has never been happier. + + The group expands once again when Rentarou meets Kurumi Haraga, a girl with a never-ending appetite; and Mei Meido, the maid of the Hanazono family. As he encounters more of his soulmates, Rentarou has to juggle ways to date them all, since failure results in a grim fate. Fortunately, Rentarou has no shortage of love to give to each of his girlfriends! + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 3063 + type: anime + name: Anici + url: https://myanimelist.net/anime/producer/3063/Anici + licensors: [] + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 58502 + url: https://myanimelist.net/anime/58502/Zenshuu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1003/146841.jpg + small_image_url: https://myanimelist.net/images/anime/1003/146841t.jpg + large_image_url: https://myanimelist.net/images/anime/1003/146841l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1003/146841.webp + small_image_url: https://myanimelist.net/images/anime/1003/146841t.webp + large_image_url: https://myanimelist.net/images/anime/1003/146841l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/tt_ci57IszQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Zenshuu. + - type: Japanese + title: 全修。 + - type: English + title: Zenshu + title: Zenshuu. + title_english: Zenshu + title_japanese: 全修。 + title_synonyms: [] + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-05T00:00:00+00:00' + to: '2025-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2025 + to: + day: 23 + month: 3 + year: 2025 + string: Jan 5, 2025 to Mar 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 71750 + rank: 1906 + popularity: 1589 + members: 173243 + favorites: 949 + synopsis: |- + Since Natsuko Hirose became a professional animator, she has quickly risen to stardom and even debuted as the director of her own anime series. Everyone expects her next project to be another masterpiece; but Natsuko struggles to meet deadlines, micromanaging every aspect of the work until one day, she collapses from food poisoning. + + When Natsuko wakes up, she finds herself in an unfamiliar place, immediately pursued by a monster called a Void. However, she is saved just in time by the members of the honored Nine Soldiers: Luke Braveheart, Memmeln, QJ, and Unio. Natsuko is suspicious at first, but soon realizes that she has been summoned to the world of her favorite childhood movie—A Tale of Perishing. As familiar events begin to line up, she seeks to avert the tragic outcome of the upcoming Void invasion. + + Much to her surprise, Natsuko gains the power to turn her drawings into reality when her animation peg bar lights up. She begins eliminating the Voids as they come, changing the story and joining the Nine Soldiers. Using her new ability and vast knowledge of the movie, Natsuko wants to change the events to her desire and find a way back home. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Sundays + time: '23:45' + timezone: Asia/Tokyo + string: Sundays at 23:45 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + - mal_id: 1817 + type: anime + name: Rakuten + url: https://myanimelist.net/anime/producer/1817/Rakuten + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59135 + url: https://myanimelist.net/anime/59135/Class_no_Daikirai_na_Joshi_to_Kekkon_suru_Koto_ni_Natta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1775/147330.jpg + small_image_url: https://myanimelist.net/images/anime/1775/147330t.jpg + large_image_url: https://myanimelist.net/images/anime/1775/147330l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1775/147330.webp + small_image_url: https://myanimelist.net/images/anime/1775/147330t.webp + large_image_url: https://myanimelist.net/images/anime/1775/147330l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RgyqkGLsZ2M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. + - type: Synonym + title: Kurakon + - type: Synonym + title: I Got Married to the Girl I Hate Most in Class + - type: Japanese + title: クラスの大嫌いな女子と結婚することになった。 + - type: English + title: I'm Getting Married to a Girl I Hate in My Class + title: Class no Daikirai na Joshi to Kekkon suru Koto ni Natta. + title_english: I'm Getting Married to a Girl I Hate in My Class + title_japanese: クラスの大嫌いな女子と結婚することになった。 + title_synonyms: + - Kurakon + - I Got Married to the Girl I Hate Most in Class + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-03T00:00:00+00:00' + to: '2025-03-21T00:00:00+00:00' + prop: + from: + day: 3 + month: 1 + year: 2025 + to: + day: 21 + month: 3 + year: 2025 + string: Jan 3, 2025 to Mar 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.74 + scored_by: 80492 + rank: 6644 + popularity: 1638 + members: 166884 + favorites: 874 + synopsis: |- + There is only one person that high school student Saito Houjou truly cannot stand—and that is his temperamental classmate, Akane Sakuramori. The two have always been on bad terms; their contrasting views and personalities only lead to endless fighting. However, everything changes when Saito's grandfather and Akane's grandmother arrange a sudden meeting and insist that the two get married! + + Walking down the aisle is the last thing Saito and Akane want, but they are quickly coerced into accepting the ridiculous plan and soon move into a shared house as husband and wife. Although Saito and Akane despise each other, navigating life together under the same roof may just turn their bitter hatred into everlasting love. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + - mal_id: 1299 + type: anime + name: AXsiZ + url: https://myanimelist.net/anime/producer/1299/AXsiZ + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 56701 + url: https://myanimelist.net/anime/56701/Watashi_no_Shiawase_na_Kekkon_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1946/146770.jpg + small_image_url: https://myanimelist.net/images/anime/1946/146770t.jpg + large_image_url: https://myanimelist.net/images/anime/1946/146770l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1946/146770.webp + small_image_url: https://myanimelist.net/images/anime/1946/146770t.webp + large_image_url: https://myanimelist.net/images/anime/1946/146770l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZifkkwGBegE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi no Shiawase na Kekkon 2nd Season + - type: Synonym + title: My Blissful Marriage + - type: Japanese + title: わたしの幸せな結婚 + - type: English + title: My Happy Marriage Season 2 + title: Watashi no Shiawase na Kekkon 2nd Season + title_english: My Happy Marriage Season 2 + title_japanese: わたしの幸せな結婚 + title_synonyms: + - My Blissful Marriage + type: TV + source: Novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-01-06T00:00:00+00:00' + to: '2025-04-09T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2025 + to: + day: 9 + month: 4 + year: 2025 + string: Jan 6, 2025 to Apr 9, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.42 + scored_by: 53017 + rank: 2647 + popularity: 1746 + members: 153482 + favorites: 677 + synopsis: |- + Following the awakening of her Dream-Sight ability, Miyo Saimori reunites with her fiancé, Kiyoka Kudou, the captain of the special forces protecting the country against ill-intended individuals gifted with exceptional powers. However, the couple's blissful life is suddenly interrupted when Takaihito, the top contender for the imperial throne, sends Kiyoka on a dangerous mission. + + Traveling with Miyo to the remote household of his parents, Kiyoka must investigate unusual reports of demons in the region. Meanwhile, Miyo tries to gain the approbation of her callous mother-in-law, Fuyu, who refuses to recognize her as a family member. + + After Kiyoka repels an attack by the Gifted Communion, a subversive sect of special abilities wielders, he returns to the capital alongside his fiancée. As the looming threat against the imperial authority intensifies, Kiyoka must thwart the Gifted Communion's plans to protect Miyo and everyone he holds dear. + + [Written by MAL Rewrite] + background: Watashi no Shiawase na Kekkon 2nd Season was released on Blu-ray and DVD in three volumes by Kadokawa from + April 25, 2025, to June 25, 2025. The series adapts the novel starting from the third volume. + season: winter + year: 2025 + broadcast: + day: Mondays + time: '22:30' + timezone: Asia/Tokyo + string: Mondays at 22:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1406 + type: anime + name: Miracle Bus + url: https://myanimelist.net/anime/producer/1406/Miracle_Bus + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 55997 + url: https://myanimelist.net/anime/55997/Guild_no_Uketsukejou_desu_ga_Zangyou_wa_Iya_nanode_Boss_wo_Solo_Toubatsu_Shiyou_to_Omoimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1904/144608.jpg + small_image_url: https://myanimelist.net/images/anime/1904/144608t.jpg + large_image_url: https://myanimelist.net/images/anime/1904/144608l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1904/144608.webp + small_image_url: https://myanimelist.net/images/anime/1904/144608t.webp + large_image_url: https://myanimelist.net/images/anime/1904/144608l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_EnIDvUykhQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu + - type: Synonym + title: Girumasu + - type: Japanese + title: ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います + - type: English + title: I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time + title: Guild no Uketsukejou desu ga, Zangyou wa Iya nanode Boss wo Solo Toubatsu Shiyou to Omoimasu + title_english: I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time + title_japanese: ギルドの受付嬢ですが、残業は嫌なのでボスをソロ討伐しようと思います + title_synonyms: + - Girumasu + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-11T00:00:00+00:00' + to: '2025-03-29T00:00:00+00:00' + prop: + from: + day: 11 + month: 1 + year: 2025 + to: + day: 29 + month: 3 + year: 2025 + string: Jan 11, 2025 to Mar 29, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.65 + scored_by: 66537 + rank: 7239 + popularity: 1790 + members: 149241 + favorites: 414 + synopsis: |- + Alina Clover becomes an adventurers' guild receptionist, believing that—unlike the adventurers who risk their lives every day to conquer dungeons—she will enjoy a safe and comfortable career with plenty of benefits. She hates overtime work more than anything, longing for the day when she can finally clock out on time. Sadly, that day has yet to come, as she must constantly trudge through piles upon piles of paperwork. + + To make matters worse, when adventurers take too long to subjugate a dungeon boss, the backlog only grows, forcing Alina into even more overtime. Whenever her patience runs thin, she dons a disguise and takes care of the boss herself, soon gaining infamy as the enigmatic "Executioner." Alina has managed to keep this secret for two years—until she finishes off a boss assigned to the high-ranking party Silver Sword. Unfortunately for her, the party's eagle-eyed leader, Jade Scrade, deduces her identity, jeopardizing the receptionist's dream of a carefree life. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59361 + url: https://myanimelist.net/anime/59361/Kono_Kaisha_ni_Suki_na_Hito_ga_Imasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1123/146384.jpg + small_image_url: https://myanimelist.net/images/anime/1123/146384t.jpg + large_image_url: https://myanimelist.net/images/anime/1123/146384l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1123/146384.webp + small_image_url: https://myanimelist.net/images/anime/1123/146384t.webp + large_image_url: https://myanimelist.net/images/anime/1123/146384l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OWEzSDduLps?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kono Kaisha ni Suki na Hito ga Imasu + - type: Synonym + title: Can You Keep a Secret? + - type: Japanese + title: この会社に好きな人がいます + - type: English + title: I Have a Crush at Work + title: Kono Kaisha ni Suki na Hito ga Imasu + title_english: I Have a Crush at Work + title_japanese: この会社に好きな人がいます + title_synonyms: + - Can You Keep a Secret? + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-06T00:00:00+00:00' + to: '2025-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2025 + to: + day: 24 + month: 3 + year: 2025 + string: Jan 6, 2025 to Mar 24, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 45407 + rank: 2197 + popularity: 1906 + members: 137753 + favorites: 562 + synopsis: |- + Coworkers Yui Mitsuya and Masugu Tateishi are the last people anyone would expect to get along—especially with their constant office quarrels. However, looks can be deceiving: they are actually dating! Afraid to lose the peace of their professional lives, Yui and Masugu play up their discord even more to ensure nobody discovers their secret. + + As awkward situations and close calls pile up, the risk of Yui and Masugu's coworkers catching on increases. Keeping up the pretense is not easy, but with each new day, their relationship only grows stronger. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 29 + type: anime + name: VAP + url: https://myanimelist.net/anime/producer/29/VAP + - mal_id: 75 + type: anime + name: Imagin + url: https://myanimelist.net/anime/producer/75/Imagin + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + licensors: [] + studios: + - mal_id: 1547 + type: anime + name: Blade + url: https://myanimelist.net/anime/producer/1547/Blade + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 59144 + url: https://myanimelist.net/anime/59144/Fuguushoku_Kanteishi_ga_Jitsu_wa_Saikyou_Datta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1683/146293.jpg + small_image_url: https://myanimelist.net/images/anime/1683/146293t.jpg + large_image_url: https://myanimelist.net/images/anime/1683/146293l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1683/146293.webp + small_image_url: https://myanimelist.net/images/anime/1683/146293t.webp + large_image_url: https://myanimelist.net/images/anime/1683/146293l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3ZDbVRlCI4o?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fuguushoku "Kanteishi" ga Jitsu wa Saikyou Datta + - type: Synonym + title: The Unfavorable Job "Appraiser" Is Actually the Strongest + - type: Synonym + title: Fugukan + - type: Japanese + title: 不遇職【鑑定士】が実は最強だった + - type: English + title: Even Given the Worthless "Appraiser" Class, I’m Actually the Strongest + title: Fuguushoku "Kanteishi" ga Jitsu wa Saikyou Datta + title_english: Even Given the Worthless "Appraiser" Class, I’m Actually the Strongest + title_japanese: 不遇職【鑑定士】が実は最強だった + title_synonyms: + - The Unfavorable Job "Appraiser" Is Actually the Strongest + - Fugukan + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-09T00:00:00+00:00' + to: '2025-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2025 + to: + day: 27 + month: 3 + year: 2025 + string: Jan 9, 2025 to Mar 27, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.33 + scored_by: 62338 + rank: 9163 + popularity: 1956 + members: 133287 + favorites: 330 + synopsis: |- + In a world where strong classes are preferred, Ein has always been treated with disdain due to his mere Appraiser job, which allows him to appraise anything. During a dungeon expedition—where Ein usually only watches from the sidelines—a dangerous enemy appears, and Ein's allies use him as bait to escape the dire situation. + + Prepared to die, Ein falls into the abyss, where he is miraculously saved by Yuri, the spirit of the long-lost World Tree, and Ursula, her fierce guardian. The two utilize their marvelous abilities to heal Ein's grave injuries and bestow him with the prosthetic "Spirit Eye," which lets him predict his opponents' moves and receive an infinite number of skills. + + To help Ein leave the dungeon depths, Ursula decides to train him. After weeks of hard training, Ein's body is enchanted even further, and he takes Yuri and Ursula back to the surface with him. As the trio begins their journey together, Ein aims to reunite Yuri with her family and become a hero who will never be forgotten. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 64 + type: anime + name: Sotsu + url: https://myanimelist.net/anime/producer/64/Sotsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1598 + type: anime + name: Exa International + url: https://myanimelist.net/anime/producer/1598/Exa_International + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2965 + type: anime + name: Kotowari + url: https://myanimelist.net/anime/producer/2965/Kotowari + - mal_id: 3059 + type: anime + name: West Japan Marketing Communications + url: https://myanimelist.net/anime/producer/3059/West_Japan_Marketing_Communications + licensors: [] + studios: + - mal_id: 2037 + type: anime + name: Okuruto Noboru + url: https://myanimelist.net/anime/producer/2037/Okuruto_Noboru + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 58271 + url: https://myanimelist.net/anime/58271/Honey_Lemon_Soda + images: + jpg: + image_url: https://myanimelist.net/images/anime/1382/144602.jpg + small_image_url: https://myanimelist.net/images/anime/1382/144602t.jpg + large_image_url: https://myanimelist.net/images/anime/1382/144602l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1382/144602.webp + small_image_url: https://myanimelist.net/images/anime/1382/144602t.webp + large_image_url: https://myanimelist.net/images/anime/1382/144602l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rthRd2y7Y9s?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Honey Lemon Soda + - type: Japanese + title: ハニーレモンソーダ + - type: English + title: Honey Lemon Soda + title: Honey Lemon Soda + title_english: Honey Lemon Soda + title_japanese: ハニーレモンソーダ + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-09T00:00:00+00:00' + to: '2025-03-27T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2025 + to: + day: 27 + month: 3 + year: 2025 + string: Jan 9, 2025 to Mar 27, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.17 + scored_by: 51343 + rank: 4145 + popularity: 1964 + members: 132305 + favorites: 610 + synopsis: |- + First-year high school student Uka Ishimori wants a fresh start. In middle school, Uka was given the nickname "Rocky" by her peers, being misunderstood as having no emotions when she was actually shy and introverted. As a result, Uka was relentlessly bullied and experienced a lonely, isolated school life. Now, Uka is determined to change. + + During the first week of school, Uka accidentally gets drenched in lemon soda by her classmate Kai Miura—whose cool personality is the complete opposite of hers. After the incident, Uka is surprised when Kai performs small acts of kindness for her, encouraging her to gradually break out of her shell. Like a lemon soda, bubbly and exciting feelings are beginning to stir. + + [Written by MAL Rewrite] + background: Honey Lemon Soda was released on Blu-ray in a box set on June 25, 2025. + season: winter + year: 2025 + broadcast: + day: Thursdays + time: 00:55 + timezone: Asia/Tokyo + string: Thursdays at 00:55 (JST) + producers: + - mal_id: 1 + type: anime + name: Studio Pierrot + url: https://myanimelist.net/anime/producer/1/Studio_Pierrot + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2867 + type: anime + name: Unlimited Produce by TMS + url: https://myanimelist.net/anime/producer/2867/Unlimited_Produce_by_TMS + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 25 + type: anime + name: Shoujo + url: https://myanimelist.net/anime/genre/25/Shoujo + - mal_id: 58853 + url: https://myanimelist.net/anime/58853/Kuroiwa_Medaka_ni_Watashi_no_Kawaii_ga_Tsuujinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1792/146404.jpg + small_image_url: https://myanimelist.net/images/anime/1792/146404t.jpg + large_image_url: https://myanimelist.net/images/anime/1792/146404l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1792/146404.webp + small_image_url: https://myanimelist.net/images/anime/1792/146404t.webp + large_image_url: https://myanimelist.net/images/anime/1792/146404l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pl8FYawHdh0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai + - type: Synonym + title: Medakawa + - type: Synonym + title: My Charms Are Wasted On Kuroiwa Medaka + - type: Synonym + title: Kuroiwa Medaka is Proof Against My Cuteness. + - type: Japanese + title: 黒岩メダカに私の可愛いが通じない + - type: English + title: Medaka Kuroiwa is Impervious to My Charms + title: Kuroiwa Medaka ni Watashi no Kawaii ga Tsuujinai + title_english: Medaka Kuroiwa is Impervious to My Charms + title_japanese: 黒岩メダカに私の可愛いが通じない + title_synonyms: + - Medakawa + - My Charms Are Wasted On Kuroiwa Medaka + - Kuroiwa Medaka is Proof Against My Cuteness. + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-07T00:00:00+00:00' + to: '2025-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2025 + to: + day: 25 + month: 3 + year: 2025 + string: Jan 7, 2025 to Mar 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 54012 + rank: 7858 + popularity: 2013 + members: 127815 + favorites: 448 + synopsis: |- + There is not a single room that Mona Kawai enters where she does not become the center of attention—dealing with this everlasting spotlight is but a fact of her daily life. Mona's absolute confidence in her own charms, however, is shaken when she meets Medaka Kuroiwa, a recent transfer student to her highschool. Unlike all other classmates who constantly fawn over her, Medaka frowns every time they interact. Seeing his disinterest as something to be rectified, Mona pulls out all the stops in the hopes of winning Medaka over, only to be met with one stern face after another. + + Turns out, Medaka's indifference to Mona stems from his wish to one day become a monk, and hence must leave all worldly desires behind. As the unknowing Mona ramps up her attacks on Medaka, all her antics might lead her into falling for him instead. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1635 + type: anime + name: A-Sketch + url: https://myanimelist.net/anime/producer/1635/A-Sketch + - mal_id: 1671 + type: anime + name: DMM pictures + url: https://myanimelist.net/anime/producer/1671/DMM_pictures + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58822 + url: https://myanimelist.net/anime/58822/Izure_Saikyou_no_Renkinjutsushi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1431/146222.jpg + small_image_url: https://myanimelist.net/images/anime/1431/146222t.jpg + large_image_url: https://myanimelist.net/images/anime/1431/146222l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1431/146222.webp + small_image_url: https://myanimelist.net/images/anime/1431/146222t.webp + large_image_url: https://myanimelist.net/images/anime/1431/146222l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1_KLp1C_lAQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Izure Saikyou no Renkinjutsushi? + - type: Synonym + title: Someday Will I Be the Greatest Alchemist? + - type: Japanese + title: いずれ最強の錬金術師? + - type: English + title: Possibly the Greatest Alchemist of All Time + title: Izure Saikyou no Renkinjutsushi? + title_english: Possibly the Greatest Alchemist of All Time + title_japanese: いずれ最強の錬金術師? + title_synonyms: + - Someday Will I Be the Greatest Alchemist? + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-08T00:00:00+00:00' + to: '2025-03-26T00:00:00+00:00' + prop: + from: + day: 8 + month: 1 + year: 2025 + to: + day: 26 + month: 3 + year: 2025 + string: Jan 8, 2025 to Mar 26, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.62 + scored_by: 64383 + rank: 7417 + popularity: 2046 + members: 125512 + favorites: 315 + synopsis: |- + A salaryman is surprised to find himself summoned to another world by accident. With no way of returning to Earth, he receives the name Takumi Iruma, a different younger body, magic powers, and a fresh start in an unfamiliar land. To preserve his quiet life, Takumi settles in a local village and assumes the job of an alchemist, allowing him to create almost anything he desires. Making the most of his time, he explores his new abilities and even tames an unlikely pet. + + However, Takumi decides to move on to a big city in hopes of improving his alchemy skills and business. As he keeps learning about his profession and gaining new connections, Takumi might just be able to become the greatest alchemist of all time. + + [Written by MAL Rewrite] + background: Izure Saikyou no Renkinjutsushi? was released on Blu-ray and DVD in one volume by Happinet Media Marketing + on May 30, 2025. + season: winter + year: 2025 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + studios: + - mal_id: 126 + type: anime + name: Studio Comet + url: https://myanimelist.net/anime/producer/126/Studio_Comet + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59349 + url: https://myanimelist.net/anime/59349/Salaryman_ga_Isekai_ni_Ittara_Shitennou_ni_Natta_Hanashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1668/144352.jpg + small_image_url: https://myanimelist.net/images/anime/1668/144352t.jpg + large_image_url: https://myanimelist.net/images/anime/1668/144352l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1668/144352.webp + small_image_url: https://myanimelist.net/images/anime/1668/144352t.webp + large_image_url: https://myanimelist.net/images/anime/1668/144352l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/RDD90k_jRz0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi + - type: Japanese + title: サラリーマンが異世界に行ったら四天王になった話 + - type: English + title: 'Headhunted to Another World: From Salaryman to Big Four!' + title: Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi + title_english: 'Headhunted to Another World: From Salaryman to Big Four!' + title_japanese: サラリーマンが異世界に行ったら四天王になった話 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-06T00:00:00+00:00' + to: '2025-03-24T00:00:00+00:00' + prop: + from: + day: 6 + month: 1 + year: 2025 + to: + day: 24 + month: 3 + year: 2025 + string: Jan 6, 2025 to Mar 24, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.58 + scored_by: 54565 + rank: 7697 + popularity: 2091 + members: 122069 + favorites: 257 + synopsis: |- + Suffering years of workplace abuse and shuffling between different countries to take on jobs no one else wants, Dennosuke Uchimura never expected his next transfer to be to another world. After all, his tireless efforts catch the Demon Lord's attention; he deems Uchimura the perfect candidate to fill the vacant spot among the Four Heavenly Generals. + + Despite Uchimura being an ordinary human, he earns the Demon Lord's recognition through his knack for solving impossible situations—a skill he honed through years as an overseas manager. With rising dissension among the demon army and failing negotiations with other tribes, it is up to Uchimura to justify the faith bestowed upon him and bring one final push for the Demon Lord's vision of dominance and perfection. + + [Written by MAL Rewrite] + background: Salaryman ga Isekai ni Ittara Shitennou ni Natta Hanashi was released on Blu-ray and DVD in a box set on + April 25, 2025. + season: winter + year: 2025 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2099 + type: anime + name: GRANTdesign + url: https://myanimelist.net/anime/producer/2099/GRANTdesign + licensors: [] + studios: + - mal_id: 1857 + type: anime + name: Geek Toys + url: https://myanimelist.net/anime/producer/1857/Geek_Toys + - mal_id: 2725 + type: anime + name: CompTown + url: https://myanimelist.net/anime/producer/2725/CompTown + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59730 + url: https://myanimelist.net/anime/59730/A-Rank_Party_wo_Ridatsu_shita_Ore_wa_Moto_Oshiego-tachi_to_Meikyuu_Shinbu_wo_Mezasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1897/149800.jpg + small_image_url: https://myanimelist.net/images/anime/1897/149800t.jpg + large_image_url: https://myanimelist.net/images/anime/1897/149800l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1897/149800.webp + small_image_url: https://myanimelist.net/images/anime/1897/149800t.webp + large_image_url: https://myanimelist.net/images/anime/1897/149800l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LvzfKjNjJeg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu. + - type: Synonym + title: Aparida + - type: Japanese + title: Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。 + - type: English + title: I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths! + title: A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu. + title_english: I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths! + title_japanese: Aランクパーティを離脱した俺は、元教え子たちと迷宮深部を目指す。 + title_synonyms: + - Aparida + type: TV + source: Light novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-01-12T00:00:00+00:00' + to: '2025-06-29T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2025 + to: + day: 29 + month: 6 + year: 2025 + string: Jan 12, 2025 to Jun 29, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 6.55 + scored_by: 49288 + rank: 7826 + popularity: 2171 + members: 115422 + favorites: 303 + synopsis: |- + "I can't do this anymore!" Yuke Feldio, a red mage, just left his adventurer A-Rank party. After being mistreated as a handyman and ridiculed for five years, he finally snapped! And so began his desolate, unemployed life... or so he thought! Through a stroke of luck, Yuke is welcomed into an all-female adventurer party comprised of his former students!! As they defeat dungeons one after another, Yuke's true strength is gradually revealed! As it turns out, this red mage wields extraordinary magic and skills?! + + (Source: Kodansha USA) + background: A-Rank Party wo Ridatsu shita Ore wa, Moto Oshiego-tachi to Meikyuu Shinbu wo Mezasu. was released on Blu-ray + in three volumes from May 28, 2025, to September 24, 2025. + season: winter + year: 2025 + broadcast: + day: Sundays + time: 00:55 + timezone: Asia/Tokyo + string: Sundays at 00:55 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: [] + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: [] + - mal_id: 57719 + url: https://myanimelist.net/anime/57719/Akuyaku_Reijou_Tensei_Ojisan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1255/146484.jpg + small_image_url: https://myanimelist.net/images/anime/1255/146484t.jpg + large_image_url: https://myanimelist.net/images/anime/1255/146484l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1255/146484.webp + small_image_url: https://myanimelist.net/images/anime/1255/146484t.webp + large_image_url: https://myanimelist.net/images/anime/1255/146484l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5ex0opawjII?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akuyaku Reijou Tensei Ojisan + - type: Synonym + title: Middle-Aged Man's Noble Daughter Reincarnation + - type: Synonym + title: The Old Man Reincarnated as a Villainess + - type: Japanese + title: 悪役令嬢転生おじさん + - type: English + title: 'From Bureaucrat to Villainess: Dad''s Been Reincarnated!' + title: Akuyaku Reijou Tensei Ojisan + title_english: 'From Bureaucrat to Villainess: Dad''s Been Reincarnated!' + title_japanese: 悪役令嬢転生おじさん + title_synonyms: + - Middle-Aged Man's Noble Daughter Reincarnation + - The Old Man Reincarnated as a Villainess + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-10T00:00:00+00:00' + to: '2025-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2025 + to: + day: 28 + month: 3 + year: 2025 + string: Jan 10, 2025 to Mar 28, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 49362 + rank: 2907 + popularity: 2328 + members: 104523 + favorites: 329 + synopsis: |- + Although Kenzaburou Tondabayashi is a 52-year-old bureaucrat, he is well versed in reincarnation stories where a protagonist suddenly awakens in a fantasy world. After being hit by a truck, Kenzaburou lands in that exact situation. However, what baffles him is the fact he wound up in the world of an otome game—as the young villainess and the daughter of a duke, Grace Auvergne. + + Fortunately for Kenzaburou, he is somewhat familiar with his new world, as it is based on the game called Magical Academy: Love & Beast. He was a proud father in his previous life, and he often listened to his daughter rave about the game's setting and characters. Armed with background knowledge and a lifetime's worth of dad skills, Kenzaburou strives to make the most of his new life, though his kind-hearted nature makes it difficult to fully embrace the role of a villainess. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 513 + type: anime + name: Nikkatsu + url: https://myanimelist.net/anime/producer/513/Nikkatsu + - mal_id: 1553 + type: anime + name: Shounen Gahousha + url: https://myanimelist.net/anime/producer/1553/Shounen_Gahousha + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 59002 + url: https://myanimelist.net/anime/59002/Hazure_Skill_Kinomi_Master__Skill_no_Mi_Tabetara_Shinu_wo_Mugen_ni_Taberareru_You_ni_Natta_Ken_ni_Tsuite + images: + jpg: + image_url: https://myanimelist.net/images/anime/1703/146128.jpg + small_image_url: https://myanimelist.net/images/anime/1703/146128t.jpg + large_image_url: https://myanimelist.net/images/anime/1703/146128l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1703/146128.webp + small_image_url: https://myanimelist.net/images/anime/1703/146128t.webp + large_image_url: https://myanimelist.net/images/anime/1703/146128l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0XT-ygHUdBw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Hazure Skill "Kinomi Master": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite' + - type: Synonym + title: 'Failure Skill "Nut Master": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You + Would Normally Die)' + - type: Japanese + title: 外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~ + - type: English + title: 'Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)' + title: 'Hazure Skill "Kinomi Master": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite' + title_english: 'Bogus Skill : About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)' + title_japanese: 外れスキル《木の実マスター》 ~スキルの実(食べたら死ぬ)を無限に食べられるようになった件について~ + title_synonyms: + - 'Failure Skill "Nut Master": It Became Now Possible to Eat as Many Skill Fruits as You Want (From Which You Would + Normally Die)' + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-07T00:00:00+00:00' + to: '2025-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2025 + to: + day: 25 + month: 3 + year: 2025 + string: Jan 7, 2025 to Mar 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 5.77 + scored_by: 45944 + rank: 12141 + popularity: 2366 + members: 102181 + favorites: 284 + synopsis: |- + It is said that the sole way to gain skills is to eat a fruit called Skill Fruit. Each person may eat only one during their life, as ingesting a second would result in instant death. Light Underwood wishes for a powerful skill that would allow him to become an adventurer with his childhood friend Lena Floria. When the day of selection arrives, the excited boy regrettably acquires Fruitmaster, a skill which merely improves his cultivation of fruits. Even worse, he is separated from Lena when she obtains an exceptional ability. + + Although disappointed by the result, Light begins his life as a farmer and takes in a young girl named Ayla Lawrence. One day, due to a misunderstanding, the two consume Skill Fruits. However, instead of dying, Light miraculously receives a second skill, suited for combat, with his original ability. Now seemingly the only person who can gain multiple skills, Light wants to catch up to Lena and make history as the strongest adventurer. + + [Written by MAL Rewrite] + background: 'Hazure Skill "Kinomi Master": Skill no Mi (Tabetara Shinu) wo Mugen ni Taberareru You ni Natta Ken ni Tsuite + was released on Blu-ray as a box set on June 25, 2025.' + season: winter + year: 2025 + broadcast: + day: Tuesdays + time: '23:30' + timezone: Asia/Tokyo + string: Tuesdays at 23:30 (JST) + producers: + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1682 + type: anime + name: MusicRay’n + url: https://myanimelist.net/anime/producer/1682/MusicRay%E2%80%99n + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2146 + type: anime + name: NetEase + url: https://myanimelist.net/anime/producer/2146/NetEase + licensors: [] + studios: + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 53924 + url: https://myanimelist.net/anime/53924/Jibaku_Shounen_Hanako-kun_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1878/146291.jpg + small_image_url: https://myanimelist.net/images/anime/1878/146291t.jpg + large_image_url: https://myanimelist.net/images/anime/1878/146291l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1878/146291.webp + small_image_url: https://myanimelist.net/images/anime/1878/146291t.webp + large_image_url: https://myanimelist.net/images/anime/1878/146291l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GBfnAfkU-bk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Jibaku Shounen Hanako-kun 2 + - type: Japanese + title: 地縛少年花子くん2 + - type: English + title: Toilet-Bound Hanako-kun Season 2 + title: Jibaku Shounen Hanako-kun 2 + title_english: Toilet-Bound Hanako-kun Season 2 + title_japanese: 地縛少年花子くん2 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-12T00:00:00+00:00' + to: '2025-03-30T00:00:00+00:00' + prop: + from: + day: 12 + month: 1 + year: 2025 + to: + day: 30 + month: 3 + year: 2025 + string: Jan 12, 2025 to Mar 30, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.96 + scored_by: 31346 + rank: 823 + popularity: 2375 + members: 101874 + favorites: 700 + synopsis: |- + There is a rumor in Kamome Academy that somewhere within the school premises lies a clock that governs the passage of time in the academy. That clock is overseen by three clock keepers—each representing the past, present, and future. Despite this, an unforeseen event causes mayhem, with students rapidly aging and the academy's infrastructure falling apart. + + Nene Yashiro and Kou Minamoto seek help from Hanako-kun, embarking on a new adventure to find those responsible for this mess. However, what they uncover is more than just the culprits' identity. As hidden truths are revealed and new vows are established, the academy students and its apparitions find themselves in a game of fate, where the living fight to free themselves from its grasp. + + [Written by MAL Rewrite] + background: Jibaku Shounen Hanako-kun 2 was released on Blu-ray and DVD in a box set on June 25, 2025. + season: winter + year: 2025 + broadcast: + day: Sundays + time: '16:30' + timezone: Asia/Tokyo + string: Sundays at 16:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1554 + type: anime + name: Contents Seed + url: https://myanimelist.net/anime/producer/1554/Contents_Seed + - mal_id: 3065 + type: anime + name: Gloria + url: https://myanimelist.net/anime/producer/3065/Gloria + licensors: [] + studios: + - mal_id: 456 + type: anime + name: Lerche + url: https://myanimelist.net/anime/producer/456/Lerche + genres: + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59561 + url: https://myanimelist.net/anime/59561/Around_40_Otoko_no_Isekai_Tsuuhan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1887/146512.jpg + small_image_url: https://myanimelist.net/images/anime/1887/146512t.jpg + large_image_url: https://myanimelist.net/images/anime/1887/146512l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1887/146512.webp + small_image_url: https://myanimelist.net/images/anime/1887/146512t.webp + large_image_url: https://myanimelist.net/images/anime/1887/146512l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/T0MqIIIC5yQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Around 40 Otoko no Isekai Tsuuhan + - type: Synonym + title: Arafoo Otoko no Isekai Tsuuhan Seikatsu + - type: Synonym + title: The Mail Order Life of a Man Around 40 in Another World + - type: Japanese + title: アラフォー男の異世界通販 + - type: English + title: The Daily Life of a Middle-Aged Online Shopper in Another World + title: Around 40 Otoko no Isekai Tsuuhan + title_english: The Daily Life of a Middle-Aged Online Shopper in Another World + title_japanese: アラフォー男の異世界通販 + title_synonyms: + - Arafoo Otoko no Isekai Tsuuhan Seikatsu + - The Mail Order Life of a Man Around 40 in Another World + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-01-09T00:00:00+00:00' + to: '2025-04-03T00:00:00+00:00' + prop: + from: + day: 9 + month: 1 + year: 2025 + to: + day: 3 + month: 4 + year: 2025 + string: Jan 9, 2025 to Apr 3, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.34 + scored_by: 49335 + rank: 9091 + popularity: 2387 + members: 100978 + favorites: 219 + synopsis: |- + From nowhere, middle-aged illustrator Kenichi Hamada finds himself summoned to another world. Despite arriving in an unfamiliar land, he realizes he can still connect to an online shop named Shangri-La, which he frequented back in Japan, to order almost anything. Not long after, Kenichi comes across a town and, using Shangri-La, decides to become a merchant in the settlement. + + By selling products from Earth, he is quickly able to make a living for himself while gaining acquaintances and the attention of local companies. However, the man just wants to live a quiet life without nuisances and leaves the town to build a cabin in a nearby forest. Though interrupted from time to time, there is nothing that can stop Kenichi from having his peaceful days. + + [Written by MAL Rewrite] + background: Around 40 Otoko no Isekai Tsuuhan was released on Blu-ray in two box sets from April 25, 2025, to May 28, + 2025. + season: winter + year: 2025 + broadcast: + day: Thursdays + time: '21:00' + timezone: Asia/Tokyo + string: Thursdays at 21:00 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 3058 + type: anime + name: AniTone + url: https://myanimelist.net/anime/producer/3058/AniTone + licensors: [] + studios: + - mal_id: 2455 + type: anime + name: East Fish Studio + url: https://myanimelist.net/anime/producer/2455/East_Fish_Studio + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58600 + url: https://myanimelist.net/anime/58600/Ameku_Takao_no_Suiri_Karte + images: + jpg: + image_url: https://myanimelist.net/images/anime/1096/147327.jpg + small_image_url: https://myanimelist.net/images/anime/1096/147327t.jpg + large_image_url: https://myanimelist.net/images/anime/1096/147327l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1096/147327.webp + small_image_url: https://myanimelist.net/images/anime/1096/147327t.webp + large_image_url: https://myanimelist.net/images/anime/1096/147327l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ccpgz748urI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ameku Takao no Suiri Karte + - type: Synonym + title: Ameku Takao's Detective Karte + - type: Japanese + title: 天久鷹央の推理カルテ + - type: English + title: 'Ameku M.D.: Doctor Detective' + title: Ameku Takao no Suiri Karte + title_english: 'Ameku M.D.: Doctor Detective' + title_japanese: 天久鷹央の推理カルテ + title_synonyms: + - Ameku Takao's Detective Karte + type: TV + source: Novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-02T00:00:00+00:00' + to: '2025-04-03T00:00:00+00:00' + prop: + from: + day: 2 + month: 1 + year: 2025 + to: + day: 3 + month: 4 + year: 2025 + string: Jan 2, 2025 to Apr 3, 2025 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.15 + scored_by: 37587 + rank: 4251 + popularity: 2403 + members: 99531 + favorites: 285 + synopsis: |- + Nestled away on the rooftop of Tenikai General Hospital is the unconventional Department of Investigative Pathology headed by the eccentric Dr. Takao Ameku. The tiny department, consisting of Takao and her sole resident Yuu "Kotori" Takanashi, treats complex cases that most other departments within the hospital cannot resolve on their own. + + The mystery-obsessed Takao always tries to insert herself into cases that capture her fancy—much to the dismay of her colleagues and the police. Even if her meddling creates more problems for the hospital and those around her, none can deny the brilliance that the young department head exhibits as she weaves a diagnosis together. No matter the specialty, no case is impossible for Takao and a somewhat reluctant Takanashi to solve. + + [Written by MAL Rewrite] + background: '' + season: winter + year: 2025 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1683 + type: anime + name: Straight Edge + url: https://myanimelist.net/anime/producer/1683/Straight_Edge + - mal_id: 3056 + type: anime + name: Jitsugyo no Nihon Sha + url: https://myanimelist.net/anime/producer/3056/Jitsugyo_no_Nihon_Sha + licensors: [] + studios: + - mal_id: 439 + type: anime + name: Project No.9 + url: https://myanimelist.net/anime/producer/439/Project_No9 + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 67 + type: anime + name: Medical + url: https://myanimelist.net/anime/genre/67/Medical + demographics: [] + - mal_id: 57648 + url: https://myanimelist.net/anime/57648/Nihon_e_Youkoso_Elf-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1650/146113.jpg + small_image_url: https://myanimelist.net/images/anime/1650/146113t.jpg + large_image_url: https://myanimelist.net/images/anime/1650/146113l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1650/146113.webp + small_image_url: https://myanimelist.net/images/anime/1650/146113t.webp + large_image_url: https://myanimelist.net/images/anime/1650/146113l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kpGFj-DxOZY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nihon e Youkoso Elf-san. + - type: Japanese + title: 日本へようこそエルフさん。 + - type: English + title: Welcome to Japan, Ms. Elf! + title: Nihon e Youkoso Elf-san. + title_english: Welcome to Japan, Ms. Elf! + title_japanese: 日本へようこそエルフさん。 + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-10T00:00:00+00:00' + to: '2025-03-28T00:00:00+00:00' + prop: + from: + day: 10 + month: 1 + year: 2025 + to: + day: 28 + month: 3 + year: 2025 + string: Jan 10, 2025 to Mar 28, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.31 + scored_by: 38820 + rank: 3236 + popularity: 2447 + members: 96485 + favorites: 276 + synopsis: |- + Since childhood, Kazuhiro Kitase has been able to dream of a different world. He can return to reality by falling asleep or dying, and he can pick up where he left off by sleeping again. For years, he has had many adventures alongside Mariabelle, a beautiful elf who works for the Sorcery Guild. + + On one of their escapades, they come across the lair of a dragon taking care of its eggs. They inadvertently wake the slumbering beast, who promptly reduces them to ashes. For Kazuhiro, it is merely a temporary setback, as he can simply go back. However, he is shocked to find Mariabelle herself safe and sound asleep next to him. + + Kazuhiro realizes that his dream world is an alternate reality altogether. In the meantime, he makes the most of this bizarre circumstance, introducing Mariabelle to the sights and wonders of Japan. Now, with their time together spanning two worlds, their real adventures have just begun! + + [Written by MAL Rewrite] + background: Nihon e Youkoso Elf-san. was released on Blu-ray as a complete box set on June 11, 2025. + season: winter + year: 2025 + broadcast: + day: Fridays + time: '22:00' + timezone: Asia/Tokyo + string: Fridays at 22:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2840 + type: anime + name: qooop + url: https://myanimelist.net/anime/producer/2840/qooop + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 55318 + url: https://myanimelist.net/anime/55318/Medalist + images: + jpg: + image_url: https://myanimelist.net/images/anime/1029/146850.jpg + small_image_url: https://myanimelist.net/images/anime/1029/146850t.jpg + large_image_url: https://myanimelist.net/images/anime/1029/146850l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1029/146850.webp + small_image_url: https://myanimelist.net/images/anime/1029/146850t.webp + large_image_url: https://myanimelist.net/images/anime/1029/146850l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sCOZVBN0vC0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Medalist + - type: Japanese + title: メダリスト + title: Medalist + title_english: null + title_japanese: メダリスト + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-01-05T00:00:00+00:00' + to: '2025-03-30T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2025 + to: + day: 30 + month: 3 + year: 2025 + string: Jan 5, 2025 to Mar 30, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.39 + scored_by: 39036 + rank: 237 + popularity: 2520 + members: 92530 + favorites: 703 + synopsis: "Tsukasa Akeuraji always dreamed of becoming a competitive solo figure skater, but starting too late in life\ + \ meant his ambitions never got off the ground. Now barely scraping by, he takes on an assistant coach job, resigned\ + \ to a future far from the one he once imagined.\n\nBefore his first day, Tsukasa meets Inori Yuitsuka, a shy fifth\ + \ grader sneaking into the rink to practice. Captivated by figure skating, but held back by her mother's overprotectiveness\ + \ and her own self-doubt, Inori has never been encouraged to pursue her passion until she encounters Tsukasa. Beneath\ + \ her personality lies great potential, waiting to be unlocked with the right guidance.\n\nMoved by Inori's determination\ + \ to change and reminded of his own struggles, Tsukasa offers to coach and help her chase the dream she has been too\ + \ afraid to voice. While the road ahead is long and filled with unfamiliar challenges and rival skaters, Inori dedicates\ + \ herself to the art and strives to one day reach the Olympics and become a medalist. \n\n[Written by MAL Rewrite]" + background: Medalist aired on TV Asahi's NUMAnimation block. + season: winter + year: 2025 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1974 + type: anime + name: ENGI + url: https://myanimelist.net/anime/producer/1974/ENGI + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 70 + type: anime + name: Performing Arts + url: https://myanimelist.net/anime/genre/70/Performing_Arts + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 58437 + url: https://myanimelist.net/anime/58437/Botsuraku_Yotei_no_Kizoku_dakedo_Hima_Datta_kara_Mahou_wo_Kiwametemita + images: + jpg: + image_url: https://myanimelist.net/images/anime/1245/147612.jpg + small_image_url: https://myanimelist.net/images/anime/1245/147612t.jpg + large_image_url: https://myanimelist.net/images/anime/1245/147612l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1245/147612.webp + small_image_url: https://myanimelist.net/images/anime/1245/147612t.webp + large_image_url: https://myanimelist.net/images/anime/1245/147612l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Yk3NCsGyOeE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita + - type: Synonym + title: I Am a Noble about to Be Ruined + - type: Synonym + title: but Reached the Summit of Magic Because I Had a Lot of Free Time. + - type: Japanese + title: 没落予定の貴族だけど、暇だったから魔法を極めてみた + - type: English + title: I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic + title: Botsuraku Yotei no Kizoku dakedo, Hima Datta kara Mahou wo Kiwametemita + title_english: I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic + title_japanese: 没落予定の貴族だけど、暇だったから魔法を極めてみた + title_synonyms: + - I Am a Noble about to Be Ruined + - but Reached the Summit of Magic Because I Had a Lot of Free Time. + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-07T00:00:00+00:00' + to: '2025-03-25T00:00:00+00:00' + prop: + from: + day: 7 + month: 1 + year: 2025 + to: + day: 25 + month: 3 + year: 2025 + string: Jan 7, 2025 to Mar 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.09 + scored_by: 42355 + rank: 10509 + popularity: 2613 + members: 87160 + favorites: 161 + synopsis: |- + What's a guy to do when his life suddenly changes while innocently enjoying a nice, cold drink after work? And I mean really changes. This middle-aged commoner now finds himself in the body of Liam Hamilton, the young son of a noble house teetering on the brink of collapse. Between his fervidly desperate father and his utterly apathetic brothers, the only bright side to his new situation is that Liam can finally try learning magic like he's always wanted. Little does he know his hobby of choice may be about to turn his life upside-down yet again! Will Liam be able to master the craft of magic? And will it be enough to save him from the shadow looming over his family...? + + (Source: J-Novel Club) + background: Beginning with episode 2, each episode was streamed one week in advance of the TV broadcast on U-NEXT, Crunchyroll, + and Anime Houdai. + season: winter + year: 2025 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + licensors: [] + studios: + - mal_id: 37 + type: anime + name: Studio Deen + url: https://myanimelist.net/anime/producer/37/Studio_Deen + - mal_id: 553 + type: anime + name: Marvy Jack + url: https://myanimelist.net/anime/producer/553/Marvy_Jack + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59226 + url: https://myanimelist.net/anime/59226/Ao_no_Exorcist__Yosuga-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1390/147040.jpg + small_image_url: https://myanimelist.net/images/anime/1390/147040t.jpg + large_image_url: https://myanimelist.net/images/anime/1390/147040l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1390/147040.webp + small_image_url: https://myanimelist.net/images/anime/1390/147040t.webp + large_image_url: https://myanimelist.net/images/anime/1390/147040l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/OJEcRFdvfss?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Ao no Exorcist: Yosuga-hen' + - type: Synonym + title: Blue Exorcist Season 5 + - type: Japanese + title: 青の祓魔師 終夜篇 + - type: English + title: 'Blue Exorcist: The Blue Night Saga' + title: 'Ao no Exorcist: Yosuga-hen' + title_english: 'Blue Exorcist: The Blue Night Saga' + title_japanese: 青の祓魔師 終夜篇 + title_synonyms: + - Blue Exorcist Season 5 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-01-05T00:00:00+00:00' + to: '2025-03-23T00:00:00+00:00' + prop: + from: + day: 5 + month: 1 + year: 2025 + to: + day: 23 + month: 3 + year: 2025 + string: Jan 5, 2025 to Mar 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8 + scored_by: 31741 + rank: 748 + popularity: 2616 + members: 86992 + favorites: 281 + synopsis: |- + Unlike his twin brother, Yukio, Rin Okumura never wished to know about their parents and the circumstances surrounding his own birth. Yet the master of time, Mephisto Pheles, gives Rin a key that transports him 40 years into the past when his late mother, Yuri Frederick Egin, was merely a child. With Mephisto's guidance, Rin leaps through the years of Yuri's childhood and her adolescence as an exorcist-in-training. + + Early on, Yuri meets Shirou Fujimoto, Rin and Yukio's adoptive father. As Rin follows Yuri and Shirou's lives, he witnesses firsthand the initial appearances of Satan, his true father, and the horrors unfolding at the True Cross Order's special Section 13. Yuri's unique connection to Satan eventually leads Rin to the truth behind the most horrific event in exorcist history and the day he and Yukio were born—the Blue Night. + + [Written by MAL Rewrite] + background: 'Ao no Exorcist: Yosuga-hen was released on Blu-ray and DVD in two volumes from April 23, 2025, to May 28, + 2025.' + season: winter + year: 2025 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 211 + type: anime + name: Rakuonsha + url: https://myanimelist.net/anime/producer/211/Rakuonsha + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1244 + type: anime + name: Studio VOLN + url: https://myanimelist.net/anime/producer/1244/Studio_VOLN + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/62-2025-spring.yaml b/test/fixtures/jikan/season_matrix/62-2025-spring.yaml new file mode 100644 index 0000000..a3b44f2 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/62-2025-spring.yaml @@ -0,0 +1,3284 @@ +metadata: + captured_at: '2026-05-11T11:35:15Z' + label: 2025-spring + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2025/spring?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:14 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:95eee01ce5fc8cf6ca50fb8a4662582c2949f9a9 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 11 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 270 + per_page: 25 + data: + - mal_id: 51818 + url: https://myanimelist.net/anime/51818/Enen_no_Shouboutai__San_no_Shou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1527/146836.jpg + small_image_url: https://myanimelist.net/images/anime/1527/146836t.jpg + large_image_url: https://myanimelist.net/images/anime/1527/146836l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1527/146836.webp + small_image_url: https://myanimelist.net/images/anime/1527/146836t.webp + large_image_url: https://myanimelist.net/images/anime/1527/146836l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nz-VCl7yUAw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Enen no Shouboutai: San no Shou' + - type: Synonym + title: Enen no Shouboutai 3rd Season + - type: Japanese + title: 炎炎ノ消防隊 参ノ章 + - type: English + title: Fire Force Season 3 + title: 'Enen no Shouboutai: San no Shou' + title_english: Fire Force Season 3 + title_japanese: 炎炎ノ消防隊 参ノ章 + title_synonyms: + - Enen no Shouboutai 3rd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-05T00:00:00+00:00' + to: '2025-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2025 + to: + day: 21 + month: 6 + year: 2025 + string: Apr 5, 2025 to Jun 21, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 117920 + rank: 1388 + popularity: 889 + members: 318474 + favorites: 1871 + synopsis: |- + After undergoing Benimaru Shinmon's hellish training, Shinra Kusakabe and Arthur Boyle return to Special Fire Force Company 8. However, there is no time to rest: Captain Akitaru Oubi is arrested by the military police under the influence of the White-Clad cult. Moreover, the White-Clad member Haumea—one of the eight pillars who possess Adolla Burst—has successfully brainwashed the leadership of the Tokyo Empire and infiltrated the heart of the firefighting organization. As a result, Shinra and the rest of the Company 8 squad are branded as rebels after they launch a rescue mission to save their captain and ultimately liberate Tokyo. + + [Written by MAL Rewrite] + background: 'Enen no Shouboutai: San no Shou aired on MBS'' Animeism block.' + season: spring + year: 2025 + broadcast: + day: Saturdays + time: 01:53 + timezone: Asia/Tokyo + string: Saturdays at 01:53 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2680 + type: anime + name: Sankyo + url: https://myanimelist.net/anime/producer/2680/Sankyo_ + licensors: [] + studios: + - mal_id: 287 + type: anime + name: David Production + url: https://myanimelist.net/anime/producer/287/David_Production + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 60489 + url: https://myanimelist.net/anime/60489/Takopii_no_Genzai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1182/149879.jpg + small_image_url: https://myanimelist.net/images/anime/1182/149879t.jpg + large_image_url: https://myanimelist.net/images/anime/1182/149879l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1182/149879.webp + small_image_url: https://myanimelist.net/images/anime/1182/149879t.webp + large_image_url: https://myanimelist.net/images/anime/1182/149879l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/SUhYB0W7gM0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Takopii no Genzai + - type: Japanese + title: タコピーの原罪 + - type: English + title: Takopi's Original Sin + title: Takopii no Genzai + title_english: Takopi's Original Sin + title_japanese: タコピーの原罪 + title_synonyms: [] + type: ONA + source: Manga + episodes: 6 + status: Finished Airing + airing: false + aired: + from: '2025-06-28T00:00:00+00:00' + to: '2025-08-02T00:00:00+00:00' + prop: + from: + day: 28 + month: 6 + year: 2025 + to: + day: 2 + month: 8 + year: 2025 + string: Jun 28, 2025 to Aug 2, 2025 + duration: 26 min per ep + rating: R - 17+ (violence & profanity) + score: 8.75 + scored_by: 176356 + rank: 51 + popularity: 891 + members: 318185 + favorites: 6711 + synopsis: |- + A squid-like creature, known as a Happian, leaves his home planet with the desire to spread happiness across the universe. He lands on Earth, but quickly finds himself in danger of captivity by its inhabitants. Fortunately, he is found by an unsmiling little girl named Shizuka Kuze, who feeds him and names him Takopii. Feeling indebted, Takopii decides to do everything in his power to bring a smile to her face. + + The task is easier said than done, however. Shizuka is bullied by her classmates, she does not have a father, and her mother is never home—though the gravity of these issues flies over the naive Takopii's head. Even so, Shizuka does have one source of happiness: her dog Chappy. The connection Shizuka and Chappy share only increases Takopii's desire to make the girl smile. + + While Takopii's attempts to lift Shizuka's spirits lead to unintended consequences, he is determined to take things into his own tentacles, test his understanding of human beings, and achieve his goal of spreading happiness. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 1991 + type: anime + name: Enishiya + url: https://myanimelist.net/anime/producer/1991/Enishiya + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 40 + type: anime + name: Psychological + url: https://myanimelist.net/anime/genre/40/Psychological + - mal_id: 78 + type: anime + name: Time Travel + url: https://myanimelist.net/anime/genre/78/Time_Travel + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 56038 + url: https://myanimelist.net/anime/56038/Lazarus + images: + jpg: + image_url: https://myanimelist.net/images/anime/1098/150300.jpg + small_image_url: https://myanimelist.net/images/anime/1098/150300t.jpg + large_image_url: https://myanimelist.net/images/anime/1098/150300l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1098/150300.webp + small_image_url: https://myanimelist.net/images/anime/1098/150300t.webp + large_image_url: https://myanimelist.net/images/anime/1098/150300l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/7d2ot3PQBMs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Lazarus + - type: Japanese + title: ラザロ + title: Lazarus + title_english: null + title_japanese: ラザロ + title_synonyms: [] + type: TV + source: Original + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 29 + month: 6 + year: 2025 + string: Apr 6, 2025 to Jun 29, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.19 + scored_by: 77996 + rank: 4024 + popularity: 1132 + members: 249467 + favorites: 1611 + synopsis: "In the year 2048, Dr. Deniz Skinner, a scientific genius dubbed second only to Einstein, developed the revolutionary\ + \ painkiller Hapna. Being cheap with no reported side effects, the drug gained widespread acceptance, even though\ + \ Skinner himself silently vanished one year after launching the drug. Everyone revelled in the heaven of relief and\ + \ ecstasy provided by Hapna, but they would suddenly come crashing down to Earth. It is now 2052, and Skinner reappears,\ + \ giving the shocking announcement that Hapna was designed to mutate into a lethal toxin, killing anyone who had consumed\ + \ it. While he claims to have a cure, he will only hand it over if he is physically found within 30 days. \n\nAxel\ + \ Gilberto, a maverick youngster serving a sentence of 888 years in a high-security prison, is unwillingly recruited\ + \ by a group calling themselves Lazarus. Composed of eccentric misfits, the group has only one task—to find Skinner.\ + \ With no means to escape and their lives on the line, Lazarus begins the hunt to find Skinner before the countdown\ + \ to the end of humanity ends.\n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2025 + broadcast: + day: Sundays + time: '23:45' + timezone: Asia/Tokyo + string: Sundays at 23:45 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2019 + type: anime + name: Sola Entertainment + url: https://myanimelist.net/anime/producer/2019/Sola_Entertainment + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 53447 + url: https://myanimelist.net/anime/53447/Tu_Bian_Yingxiong_X + images: + jpg: + image_url: https://myanimelist.net/images/anime/1492/150628.jpg + small_image_url: https://myanimelist.net/images/anime/1492/150628t.jpg + large_image_url: https://myanimelist.net/images/anime/1492/150628l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1492/150628.webp + small_image_url: https://myanimelist.net/images/anime/1492/150628t.webp + large_image_url: https://myanimelist.net/images/anime/1492/150628l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4-e9BXNbDlc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tu Bian Yingxiong X + - type: Japanese + title: 凸变英雄X + - type: English + title: To Be Hero X + title: Tu Bian Yingxiong X + title_english: To Be Hero X + title_japanese: 凸变英雄X + title_synonyms: [] + type: ONA + source: Original + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-09-14T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 14 + month: 9 + year: 2025 + string: Apr 6, 2025 to Sep 14, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.68 + scored_by: 111055 + rank: 77 + popularity: 1131 + members: 249283 + favorites: 5253 + synopsis: |- + This is a world where heroes are created by people's trust, and the hero who has received the most trust is known as "X." In this world, people's trust can be calculated by data, and these values will be reflected on everyone's wrist. As long as enough trust points are obtained, ordinary people can also have superpowers and become superheroes that save the world. However, the ever-changing trust value makes the hero's path full of unknowns... + + (Source: Bilibili, translated) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 2357 + type: anime + name: BeDream + url: https://myanimelist.net/anime/producer/2357/BeDream + licensors: [] + studios: + - mal_id: 1771 + type: anime + name: Pb Animation + url: https://myanimelist.net/anime/producer/1771/Pb_Animation + - mal_id: 1774 + type: anime + name: LAN Studio + url: https://myanimelist.net/anime/producer/1774/LAN_Studio + - mal_id: 2310 + type: anime + name: Paper Plane Animation Studio + url: https://myanimelist.net/anime/producer/2310/Paper_Plane_Animation_Studio + - mal_id: 3251 + type: anime + name: B.COOL STUDIO + url: https://myanimelist.net/anime/producer/3251/BCOOL_STUDIO + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: [] + - mal_id: 59160 + url: https://myanimelist.net/anime/59160/Wind_Breaker_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1526/148873.jpg + small_image_url: https://myanimelist.net/images/anime/1526/148873t.jpg + large_image_url: https://myanimelist.net/images/anime/1526/148873l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1526/148873.webp + small_image_url: https://myanimelist.net/images/anime/1526/148873t.webp + large_image_url: https://myanimelist.net/images/anime/1526/148873l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qaR2_4tYhq8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Wind Breaker Season 2 + - type: Synonym + title: Winbre + - type: Synonym + title: WBK + - type: Japanese + title: WIND BREAKER Season 2 + - type: English + title: Wind Breaker Season 2 + title: Wind Breaker Season 2 + title_english: Wind Breaker Season 2 + title_japanese: WIND BREAKER Season 2 + title_synonyms: + - Winbre + - WBK + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-04T00:00:00+00:00' + to: '2025-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2025 + to: + day: 20 + month: 6 + year: 2025 + string: Apr 4, 2025 to Jun 20, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.64 + scored_by: 107204 + rank: 1678 + popularity: 1231 + members: 230491 + favorites: 1161 + synopsis: |- + Ever since Haruka Sakura joined Furin High School, where its students call themselves Bofurin and protect the town of Makochi, he has gained new friends despite his initial skepticism. Now starting to learn how to fight alongside his classmates and slowly growing out of his solitary past, Sakura has become the grade captain of the first-years. + + Sakura's skills are put to the test when he and his classmates are faced with KEEL—a delinquent group known for its ruthless violence and coercion. While KEEL seems to be another rowdy group at first glance, their sudden appearance and strength in numbers might just be hiding a greater evil behind it. With all the odds against the Bofurin members, Sakura must accept that recognizing his shortcomings and receiving help from his upperclassmen will be necessary to preserve the peace in Makochi. + + [Written by MAL Rewrite] + background: Wind Breaker Season 2 aired on MBS and TBS' Super Animeism Turbo block. The series was released on Blu-ray + and DVD in six volumes from June 18, 2025, to November 26, 2025. + season: spring + year: 2025 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + - mal_id: 2435 + type: anime + name: Aiming + url: https://myanimelist.net/anime/producer/2435/Aiming + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 55 + type: anime + name: Delinquents + url: https://myanimelist.net/anime/genre/55/Delinquents + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59597 + url: https://myanimelist.net/anime/59597/Witch_Watch + images: + jpg: + image_url: https://myanimelist.net/images/anime/1526/150689.jpg + small_image_url: https://myanimelist.net/images/anime/1526/150689t.jpg + large_image_url: https://myanimelist.net/images/anime/1526/150689l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1526/150689.webp + small_image_url: https://myanimelist.net/images/anime/1526/150689t.webp + large_image_url: https://myanimelist.net/images/anime/1526/150689l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mLOi_84AlOg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Witch Watch + - type: Japanese + title: ウィッチウォッチ + - type: English + title: Witch Watch + title: Witch Watch + title_english: Witch Watch + title_japanese: ウィッチウォッチ + title_synonyms: [] + type: TV + source: Manga + episodes: 25 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-10-05T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 5 + month: 10 + year: 2025 + string: Apr 6, 2025 to Oct 5, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.37 + scored_by: 69854 + rank: 2896 + popularity: 1328 + members: 210054 + favorites: 795 + synopsis: "In ancient times, some witches married their familiars, who had taken human form, giving birth to a lineage\ + \ of ogres. One such ogre is Morihito Otogi, who while appearing completely human, still retains the inhuman strength\ + \ of his bloodline. Nico Wakatsuki is a young witch and Morihito's childhood friend, but as part of her education,\ + \ she had to go to the Witches' Holy Land to train and part ways with Morihito.\n\nYears later, just before Morihito's\ + \ first year of high school, Nico returns home with one goal in mind: to claim him as her familiar. While most witches\ + \ choose a cat or a bat, Nico has her heart set on Morihito in more ways than one. Although seemingly oblivious to\ + \ her true feelings, Morihito and Nico end up living together under the same roof with both of Morihito's parents\ + \ elsewhere. While reluctant at first, Morihito accepts his new role, determined to help Nico seamlessly fit back\ + \ in with human society and protect her from fated disaster. \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2025 + broadcast: + day: Sundays + time: '17:00' + timezone: Asia/Tokyo + string: Sundays at 17:00 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 2045 + type: anime + name: Myrica Music + url: https://myanimelist.net/anime/producer/2045/Myrica_Music + - mal_id: 2071 + type: anime + name: AQUA ARIS + url: https://myanimelist.net/anime/producer/2071/AQUA_ARIS + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 783 + type: anime + name: GKIDS + url: https://myanimelist.net/anime/producer/783/GKIDS + studios: + - mal_id: 1722 + type: anime + name: Bibury Animation Studios + url: https://myanimelist.net/anime/producer/1722/Bibury_Animation_Studios + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 49818 + url: https://myanimelist.net/anime/49818/Guimi_Zhi_Zhu__Xiaochou_Pian + images: + jpg: + image_url: https://myanimelist.net/images/anime/1952/149229.jpg + small_image_url: https://myanimelist.net/images/anime/1952/149229t.jpg + large_image_url: https://myanimelist.net/images/anime/1952/149229l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1952/149229.webp + small_image_url: https://myanimelist.net/images/anime/1952/149229t.webp + large_image_url: https://myanimelist.net/images/anime/1952/149229l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/BVP0ld7BB4A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Guimi Zhi Zhu: Xiaochou Pian' + - type: Synonym + title: 'Lord of Mysteries: Clown Arc' + - type: Synonym + title: Lord of the Mysteries + - type: Synonym + title: LOTM + - type: Japanese + title: 诡秘之主 小丑篇 + - type: English + title: Lord of Mysteries + title: 'Guimi Zhi Zhu: Xiaochou Pian' + title_english: Lord of Mysteries + title_japanese: 诡秘之主 小丑篇 + title_synonyms: + - 'Lord of Mysteries: Clown Arc' + - Lord of the Mysteries + - LOTM + type: ONA + source: Web novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-06-28T00:00:00+00:00' + to: '2025-08-16T00:00:00+00:00' + prop: + from: + day: 28 + month: 6 + year: 2025 + to: + day: 16 + month: 8 + year: 2025 + string: Jun 28, 2025 to Aug 16, 2025 + duration: 35 min per ep + rating: R - 17+ (violence & profanity) + score: 8.61 + scored_by: 75603 + rank: 106 + popularity: 1360 + members: 205555 + favorites: 4252 + synopsis: |- + In a Victorian world of steam, dreadnoughts, and occult horrors, Zhou Mingrui awakens as Klein Moretti. He walks a razor's edge between light and darkness, entangled with warring Churches. This is the legend of unlimited potential...and unspeakable danger. + + (Source: Crunchyroll) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 1727 + type: anime + name: Tencent Video + url: https://myanimelist.net/anime/producer/1727/Tencent_Video + - mal_id: 1728 + type: anime + name: China Literature Limited + url: https://myanimelist.net/anime/producer/1728/China_Literature_Limited + licensors: [] + studios: + - mal_id: 1350 + type: anime + name: B.CMAY PICTURES + url: https://myanimelist.net/anime/producer/1350/BCMAY_PICTURES + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 41 + type: anime + name: Suspense + url: https://myanimelist.net/anime/genre/41/Suspense + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59452 + url: https://myanimelist.net/anime/59452/Katainaka_no_Ossan_Kensei_ni_Naru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1069/148148.jpg + small_image_url: https://myanimelist.net/images/anime/1069/148148t.jpg + large_image_url: https://myanimelist.net/images/anime/1069/148148l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1069/148148.webp + small_image_url: https://myanimelist.net/images/anime/1069/148148t.webp + large_image_url: https://myanimelist.net/images/anime/1069/148148l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IFjmH1TPpNk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Katainaka no Ossan, Kensei ni Naru + - type: Japanese + title: 片田舎のおっさん、剣聖になる + - type: English + title: From Old Country Bumpkin to Master Swordsman + title: Katainaka no Ossan, Kensei ni Naru + title_english: From Old Country Bumpkin to Master Swordsman + title_japanese: 片田舎のおっさん、剣聖になる + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-05T00:00:00+00:00' + to: '2025-06-22T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2025 + to: + day: 22 + month: 6 + year: 2025 + string: Apr 5, 2025 to Jun 22, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.97 + scored_by: 86894 + rank: 5281 + popularity: 1495 + members: 185485 + favorites: 602 + synopsis: |- + For 20 years, Beryl Gardenant has taught various people as the master of his father's sword-fighting dojo in a backwater village. Many have become astounding swordsmen themselves, but Beryl remains quite humble, referring to himself as an old man. His former disciples all disagree, including Allucia Citrus, a girl who graduated from Beryl's training over 10 years ago and is currently the commander of the Royal Order of Knights. + + Wishing to reveal her cherished teacher's true greatness, Allucia recommends Beryl to her superiors, leading to his appointment as a special instructor for the Order by imperial command. She delivers the news herself—though Beryl has yet to realize her deeper motive. Pressured by his aging parents, Beryl reluctantly accepts the job and moves to the capital. There, he meets more of his past students, such as Surena Lysandra, now a black-rank adventurer, and Ficelle Harbeller, a prominent member of the Magic Corps. Before long, word begins to spread: not even the strongest warriors can match the "old man" from the countryside. + + [Written by MAL Rewrite] + background: Katainaka no Ossan, Kensei ni Naru aired on TV Asahi's IMAnimation block. The series was released on Blu-ray + in two volumes from December 3, 2025, to January 9, 2026. + season: spring + year: 2025 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1714 + type: anime + name: Fujishouji + url: https://myanimelist.net/anime/producer/1714/Fujishouji + - mal_id: 1799 + type: anime + name: Drecom + url: https://myanimelist.net/anime/producer/1799/Drecom + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 3106 + type: anime + name: NK Animation + url: https://myanimelist.net/anime/producer/3106/NK_Animation + licensors: [] + studios: + - mal_id: 911 + type: anime + name: Passione + url: https://myanimelist.net/anime/producer/911/Passione + - mal_id: 2370 + type: anime + name: Hayabusa Film + url: https://myanimelist.net/anime/producer/2370/Hayabusa_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60146 + url: https://myanimelist.net/anime/60146/Saikyou_no_Ousama_Nidome_no_Jinsei_wa_Nani_wo_Suru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1712/148299.jpg + small_image_url: https://myanimelist.net/images/anime/1712/148299t.jpg + large_image_url: https://myanimelist.net/images/anime/1712/148299l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1712/148299.webp + small_image_url: https://myanimelist.net/images/anime/1712/148299t.webp + large_image_url: https://myanimelist.net/images/anime/1712/148299l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xlRCC8SXT3Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru? + - type: Synonym + title: TBATE + - type: Japanese + title: 最強の王様、二度目の人生は何をする? + - type: English + title: The Beginning After the End + title: Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru? + title_english: The Beginning After the End + title_japanese: 最強の王様、二度目の人生は何をする? + title_synonyms: + - TBATE + type: TV + source: Other + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-02T00:00:00+00:00' + to: '2025-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2025 + to: + day: 18 + month: 6 + year: 2025 + string: Apr 2, 2025 to Jun 18, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 6.19 + scored_by: 88462 + rank: 9991 + popularity: 1499 + members: 185021 + favorites: 1177 + synopsis: |- + The story follows the strongest king in history, Grey. Although he possesses unparalleled power, wealth, and fame, there is no one who stands by his side…and he trusts no one. One day, Grey suddenly meets his death and is reincarnated as a powerless infant named Arthur in a world of magic. Surrounded by a loving family and companions, Arthur starts to experience joys in this new life that he never knew in his previous one. However, during a journey, his family is attacked by bandits... + + Thus begins his second life, filled with love and adventure! + + (Source: Official site) + background: Saikyou no Ousama, Nidome no Jinsei wa Nani wo Suru? is an adaptation of the English vertical scroll comic + The Beginning After the End, written by TurtleMe and illustrated by Fuyuki23. The anime aired on Fuji TV's +Ultra + block. + season: spring + year: 2025 + broadcast: + day: Wednesdays + time: '23:30' + timezone: Asia/Tokyo + string: Wednesdays at 23:30 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 735 + type: anime + name: Slow Curve + url: https://myanimelist.net/anime/producer/735/Slow_Curve + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1563 + type: anime + name: Hakuhodo + url: https://myanimelist.net/anime/producer/1563/Hakuhodo + licensors: [] + studios: + - mal_id: 1209 + type: anime + name: Studio A-CAT + url: https://myanimelist.net/anime/producer/1209/Studio_A-CAT + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 60593 + url: https://myanimelist.net/anime/60593/Vigilante__Boku_no_Hero_Academia_Illegals + images: + jpg: + image_url: https://myanimelist.net/images/anime/1538/148604.jpg + small_image_url: https://myanimelist.net/images/anime/1538/148604t.jpg + large_image_url: https://myanimelist.net/images/anime/1538/148604l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1538/148604.webp + small_image_url: https://myanimelist.net/images/anime/1538/148604t.webp + large_image_url: https://myanimelist.net/images/anime/1538/148604l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/84F2-8QExiY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Vigilante: Boku no Hero Academia Illegals' + - type: Japanese + title: ヴィジランテ -僕のヒーローアカデミア ILLEGALS- + - type: English + title: 'My Hero Academia: Vigilantes' + title: 'Vigilante: Boku no Hero Academia Illegals' + title_english: 'My Hero Academia: Vigilantes' + title_japanese: ヴィジランテ -僕のヒーローアカデミア ILLEGALS- + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-04-07T00:00:00+00:00' + to: '2025-06-30T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2025 + to: + day: 30 + month: 6 + year: 2025 + string: Apr 7, 2025 to Jun 30, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.58 + scored_by: 75840 + rank: 1905 + popularity: 1577 + members: 175370 + favorites: 514 + synopsis: |- + In a world filled with superpowered Quirk users, college student Kouichi Haimawari's dream is to become a hero just like the ones he so admires. Unfortunately for him, he finds out that there is only so much he can do with a sliding ability that gives him about as much speed as a bicycle. Thus, he is drawn to extra-legal, simpler work and takes on various local tasks beyond the grasp of the police and licensed heroes. + + However, a chance encounter with two misfits, a brash brawler vigilante who goes by Knuckleduster and the online sensation Pop☆Step, gives Kouichi the opportunity he has always dreamed about. With a dangerous new Quirk-enhancing drug turning ordinary people into instant villains, Kouichi finds himself accompanying the two in a quest to stop the drug from spreading. As the trio tries to get to the bottom of the case, the chaotic team looks to put a stop to wrongdoers that go overlooked by the law. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Mondays + time: '23:00' + timezone: Asia/Tokyo + string: Mondays at 23:00 (JST) + producers: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 3045 + type: anime + name: Bones Film + url: https://myanimelist.net/anime/producer/3045/Bones_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58359 + url: https://myanimelist.net/anime/58359/Isshun_de_Chiryou_shiteita_noni_Yakutatazu_to_Tsuihou_sareta_Tensai_Chiyushi_Yami_Healer_toshite_Tanoshiku_Ikiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1211/147335.jpg + small_image_url: https://myanimelist.net/images/anime/1211/147335t.jpg + large_image_url: https://myanimelist.net/images/anime/1211/147335l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1211/147335.webp + small_image_url: https://myanimelist.net/images/anime/1211/147335t.webp + large_image_url: https://myanimelist.net/images/anime/1211/147335l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/3E5gmPGu238?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku + Ikiru + - type: Synonym + title: Yami Healer + - type: Japanese + title: 一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる + - type: English + title: The Brilliant Healer's New Life in the Shadows + title: Isshun de Chiryou shiteita noni Yakutatazu to Tsuihou sareta Tensai Chiyushi, Yami Healer toshite Tanoshiku Ikiru + title_english: The Brilliant Healer's New Life in the Shadows + title_japanese: 一瞬で治療していたのに役立たずと追放された天才治癒師、闇ヒーラーとして楽しく生きる + title_synonyms: + - Yami Healer + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-03T00:00:00+00:00' + to: '2025-06-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2025 + to: + day: 19 + month: 6 + year: 2025 + string: Apr 3, 2025 to Jun 19, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.83 + scored_by: 80314 + rank: 6090 + popularity: 1655 + members: 164766 + favorites: 456 + synopsis: |- + Healers have always been a pivotal part of the Kingdom of Herzeth, but becoming one requires an official license, which demands years of studying. Despite growing up poor, a pragmatic young man, Zenos, taught himself everything about healing. As an exceptional healer, Zenos was even recruited by an adventurer party but eventually kicked out. When he meets and helps an elf slave named Lily, he realizes his new ambition: he wants to open a clinic in the shadows, serving those who may otherwise be cast aside. + + Zenos starts his underground practice alongside Lily, but he is immediately pulled into a conflict between lizardmen, werewolves, and orcs—which he quickly resolves and unites the races, thanks to his healing abilities. However, when the royal knights hear rumors of his recent accomplishments and are less than pleased, Zenos must find a way to continue his operations without compromising his principles. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Thursdays + time: '23:30' + timezone: Asia/Tokyo + string: Thursdays at 23:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2681 + type: anime + name: Mixi + url: https://myanimelist.net/anime/producer/2681/Mixi + licensors: [] + studios: + - mal_id: 2622 + type: anime + name: Makaria + url: https://myanimelist.net/anime/producer/2622/Makaria + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60083 + url: https://myanimelist.net/anime/60083/Kowloon_Generic_Romance + images: + jpg: + image_url: https://myanimelist.net/images/anime/1719/150050.jpg + small_image_url: https://myanimelist.net/images/anime/1719/150050t.jpg + large_image_url: https://myanimelist.net/images/anime/1719/150050l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1719/150050.webp + small_image_url: https://myanimelist.net/images/anime/1719/150050t.webp + large_image_url: https://myanimelist.net/images/anime/1719/150050l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wIrH_z2TLqQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kowloon Generic Romance + - type: Japanese + title: 九龍ジェネリックロマンス + - type: English + title: Kowloon Generic Romance + title: Kowloon Generic Romance + title_english: Kowloon Generic Romance + title_japanese: 九龍ジェネリックロマンス + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-04-05T00:00:00+00:00' + to: '2025-06-28T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2025 + to: + day: 28 + month: 6 + year: 2025 + string: Apr 5, 2025 to Jun 28, 2025 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.34 + scored_by: 52449 + rank: 3044 + popularity: 1712 + members: 156879 + favorites: 550 + synopsis: |- + With its flickering streetlights, moldy back alleys, and noisy populace, the Second Kowloon Walled City, despite the squalor of its already-demolished predecessor, evokes a special kind of nostalgia that its residents find endearing. Amidst the walls of this fading yet beloved landscape lives Reiko Kujirai, a 32-year-old realtor deeply in love with her coworker, Hajime Kudou, who is two years her junior. Though they have their differences, the two get along well enough to experience the joys of the walled city together. + + However, everything starts to fall apart when Kudou, half-asleep, suddenly kisses Kujirai—seemingly reciprocating the feelings she has yet to confess. But when Kudou explains that he had mistaken her for someone else, Kujirai finds herself drawn into a series of events that lead her to a past she cannot remember. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 1874 + type: anime + name: Arvo Animation + url: https://myanimelist.net/anime/producer/1874/Arvo_Animation + genres: + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 52709 + url: https://myanimelist.net/anime/52709/Danjo_no_Yuujou_wa_Seiritsu_suru_Iya_Shinai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1429/150067.jpg + small_image_url: https://myanimelist.net/images/anime/1429/150067t.jpg + large_image_url: https://myanimelist.net/images/anime/1429/150067l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1429/150067.webp + small_image_url: https://myanimelist.net/images/anime/1429/150067t.webp + large_image_url: https://myanimelist.net/images/anime/1429/150067l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fZH5jDK5qV8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!) + - type: Synonym + title: Can a Boy and Girl Friendship Hold Up? (No + - type: Synonym + title: It Can't!!) + - type: Synonym + title: Danjoru + - type: Japanese + title: 男女の友情は成立する?(いや、しないっ!!) + - type: English + title: Can a Boy-Girl Friendship Survive? + title: Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!) + title_english: Can a Boy-Girl Friendship Survive? + title_japanese: 男女の友情は成立する?(いや、しないっ!!) + title_synonyms: + - Can a Boy and Girl Friendship Hold Up? (No + - It Can't!!) + - Danjoru + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-04T00:00:00+00:00' + to: '2025-06-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 4 + year: 2025 + to: + day: 20 + month: 6 + year: 2025 + string: Apr 4, 2025 to Jun 20, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.52 + scored_by: 66928 + rank: 8029 + popularity: 1725 + members: 155298 + favorites: 738 + synopsis: |- + Yuu Natsume met Himari Inuzuka in middle school while trying to sell his accessories made with preserved flowers. When Yuu told her about his dream to open a shop to sell his creations, Himari decided to help him. Now, in their second year of high school, Yuu sells his accessories online thanks to Himari modeling and promoting them. As Yuu's best friend, Himari declares that if his ambition does not come to fruition by the time they turn thirty, she will have to marry him herself. + + Then, Yuu meets Rin Enomoto, a girl wearing one of his first designs. Yuu and Rin met as children years ago, and she was his first love. Himari pushes them together, hoping to help Yuu out of his creative slump and find a wife for him in the process. For the first time, another person understands Yuu's talent and wants to be friends with him. As Rin and Yuu get closer, however, Himari struggles to keep her feelings for her best friend in check. + + [Written by MAL Rewrite] + background: Danjo no Yuujou wa Seiritsu suru? (Iya, Shinai!!) was released on Blu-ray and DVD in two box sets from July + 25, 2025, to August 29, 2025. + season: spring + year: 2025 + broadcast: + day: Fridays + time: '22:30' + timezone: Asia/Tokyo + string: Fridays at 22:30 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1817 + type: anime + name: Rakuten + url: https://myanimelist.net/anime/producer/1817/Rakuten + - mal_id: 2090 + type: anime + name: Dream Shift + url: https://myanimelist.net/anime/producer/2090/Dream_Shift + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59457 + url: https://myanimelist.net/anime/59457/Haite_Kudasai_Takamine-san + images: + jpg: + image_url: https://myanimelist.net/images/anime/1521/148809.jpg + small_image_url: https://myanimelist.net/images/anime/1521/148809t.jpg + large_image_url: https://myanimelist.net/images/anime/1521/148809l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1521/148809.webp + small_image_url: https://myanimelist.net/images/anime/1521/148809t.webp + large_image_url: https://myanimelist.net/images/anime/1521/148809l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XQABbjkXMB4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Haite Kudasai, Takamine-san + - type: Synonym + title: Let Me Put Your Panties On + - type: Synonym + title: Takamine-san + - type: Synonym + title: Please Put These On + - type: Synonym + title: Takamine-san + - type: Japanese + title: 履いてください、鷹峰さん + - type: English + title: Please Put Them On, Takamine-san + title: Haite Kudasai, Takamine-san + title_english: Please Put Them On, Takamine-san + title_japanese: 履いてください、鷹峰さん + title_synonyms: + - Let Me Put Your Panties On + - Takamine-san + - Please Put These On + - Takamine-san + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-02T00:00:00+00:00' + to: '2025-06-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 4 + year: 2025 + to: + day: 18 + month: 6 + year: 2025 + string: Apr 2, 2025 to Jun 18, 2025 + duration: 23 min per ep + rating: R+ - Mild Nudity + score: 6.19 + scored_by: 46840 + rank: 9961 + popularity: 1990 + members: 129837 + favorites: 922 + synopsis: "Mild-mannered Koushi Shirota is left utterly stunned when he witnesses the perfect student council president,\ + \ Takane Takamine, ever so brazenly strip her panties off in front of the entire class after receiving an uncharacteristic\ + \ test score of 98%. Even stranger, the imperfect score suddenly becomes a perfect 100% right before his eyes. Wanting\ + \ to make sure what happened was not just a hallucination, he confronts her about it.\n\nSeemingly unbothered, Takamine\ + \ reveals to him that she has an ability called Eternal Virgin Road, which allows her to undo any mistake she makes\ + \ by taking off a piece of underwear, thus keeping up her prodigious facade. With Shirota being the only one aware\ + \ of the truth, Takamine coerces him into becoming her closet—a carrier of spare panties—so that she can use Eternal\ + \ Virgin Road as many times as she wants. With his already weak will being constantly put to the test, Shirota's life\ + \ is flipped upside down as he finds himself too close for comfort with the unpredictable student council president.\ + \ \n\n[Written by MAL Rewrite]" + background: '' + season: spring + year: 2025 + broadcast: + day: Wednesdays + time: '22:30' + timezone: Asia/Tokyo + string: Wednesdays at 22:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2927 + type: anime + name: DAXEL + url: https://myanimelist.net/anime/producer/2927/DAXEL + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 50738 + url: https://myanimelist.net/anime/50738/Slime_Taoshite_300-nen_Shiranai_Uchi_ni_Level_Max_ni_Nattemashita__Sono_Ni + images: + jpg: + image_url: https://myanimelist.net/images/anime/1074/147339.jpg + small_image_url: https://myanimelist.net/images/anime/1074/147339t.jpg + large_image_url: https://myanimelist.net/images/anime/1074/147339l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1074/147339.webp + small_image_url: https://myanimelist.net/images/anime/1074/147339t.webp + large_image_url: https://myanimelist.net/images/anime/1074/147339l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IzJFJt3bos8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni' + - type: Synonym + title: Slime Taoshite 300-nen + - type: Synonym + title: Shiranai Uchi ni Level Max ni Nattemashita 2nd Season + - type: Japanese + title: スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~ + - type: English + title: I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2 + title: 'Slime Taoshite 300-nen, Shiranai Uchi ni Level Max ni Nattemashita: Sono Ni' + title_english: I've Been Killing Slimes for 300 Years and Maxed Out My Level Season 2 + title_japanese: スライム倒して300年、知らないうちにレベルMAXになってました ~そのに~ + title_synonyms: + - Slime Taoshite 300-nen + - Shiranai Uchi ni Level Max ni Nattemashita 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-05T00:00:00+00:00' + to: '2025-06-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 4 + year: 2025 + to: + day: 21 + month: 6 + year: 2025 + string: Apr 5, 2025 to Jun 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.71 + scored_by: 33552 + rank: 6889 + popularity: 2017 + members: 127579 + favorites: 586 + synopsis: |- + Three hundred years ago, the newly reincarnated Azusa Aizawa had resolved to live a slow life forever. At that point, she would have never even thought of reaching level 99 through only killing slimes, let alone becoming the strongest being in the continent. Nevertheless, it is due to her strength and kindness that many girls from different backgrounds—including the dragon Laika, the elf Halkara, the demon queen Pecora, and even the anthropomorphized slime girls Falfa and Shalsha—are all drawn to her. With her ever-growing circle of companions, Azusa's laid-back adventures are far from over—and with even more girls appearing on her doorstep, her already enjoyable life is slated to become even livelier! + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Saturdays + time: '21:30' + timezone: Asia/Tokyo + string: Saturdays at 21:30 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 775 + type: anime + name: Bushiroad + url: https://myanimelist.net/anime/producer/775/Bushiroad + - mal_id: 1333 + type: anime + name: Hakuhodo DY Music & Pictures + url: https://myanimelist.net/anime/producer/1333/Hakuhodo_DY_Music___Pictures + - mal_id: 1337 + type: anime + name: Medicos Entertainment + url: https://myanimelist.net/anime/producer/1337/Medicos_Entertainment + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + licensors: [] + studios: + - mal_id: 2909 + type: anime + name: Teddy + url: https://myanimelist.net/anime/producer/2909/Teddy + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 58131 + url: https://myanimelist.net/anime/58131/Shiunji-ke_no_Kodomotachi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1955/148360.jpg + small_image_url: https://myanimelist.net/images/anime/1955/148360t.jpg + large_image_url: https://myanimelist.net/images/anime/1955/148360l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1955/148360.webp + small_image_url: https://myanimelist.net/images/anime/1955/148360t.webp + large_image_url: https://myanimelist.net/images/anime/1955/148360l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4XVwQr0t_zU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shiunji-ke no Kodomotachi + - type: Synonym + title: The Children of Shiunji Family + - type: Synonym + title: The Shiunji Siblings + - type: Japanese + title: 紫雲寺家の子供たち + - type: English + title: The Shiunji Family Children + title: Shiunji-ke no Kodomotachi + title_english: The Shiunji Family Children + title_japanese: 紫雲寺家の子供たち + title_synonyms: + - The Children of Shiunji Family + - The Shiunji Siblings + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-08T00:00:00+00:00' + to: '2025-06-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 4 + year: 2025 + to: + day: 24 + month: 6 + year: 2025 + string: Apr 8, 2025 to Jun 24, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.05 + scored_by: 56012 + rank: 4873 + popularity: 2084 + members: 122283 + favorites: 440 + synopsis: |- + The wealthy and esteemed Shiunji family consists of seven siblings: Banri, Seiha, Ouka, Arata, Shion, Minami, and Kotono. Arata, the family heir, is constantly teased by his sisters for his inability to find love. However, during Kotono's 15th birthday, the siblings learn a shocking, long-hidden secret—all of them are adopted! + + The siblings all agree that their relationship will remain the same. But that promise does not last long, as each of the girls begins to approach Arata with intentions that go beyond sibling affection. Arata, who cherishes his family more than anything, must now find a way to protect their precious bonds and ensure that the Shiunji family never changes. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Tuesdays + time: '22:30' + timezone: Asia/Tokyo + string: Tuesdays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 95 + type: anime + name: Doga Kobo + url: https://myanimelist.net/anime/producer/95/Doga_Kobo + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 49778 + url: https://myanimelist.net/anime/49778/Kijin_Gentoushou + images: + jpg: + image_url: https://myanimelist.net/images/anime/1722/148906.jpg + small_image_url: https://myanimelist.net/images/anime/1722/148906t.jpg + large_image_url: https://myanimelist.net/images/anime/1722/148906l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1722/148906.webp + small_image_url: https://myanimelist.net/images/anime/1722/148906t.webp + large_image_url: https://myanimelist.net/images/anime/1722/148906l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4cOlvgk4UTs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kijin Gentoushou + - type: Synonym + title: Sword of the Demon Hunter + - type: Japanese + title: 鬼人幻燈抄 + - type: English + title: 'Sword of the Demon Hunter: Kijin Gentosho' + title: Kijin Gentoushou + title_english: 'Sword of the Demon Hunter: Kijin Gentosho' + title_japanese: 鬼人幻燈抄 + title_synonyms: + - Sword of the Demon Hunter + type: TV + source: Novel + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-03-31T00:00:00+00:00' + to: '2025-09-30T00:00:00+00:00' + prop: + from: + day: 31 + month: 3 + year: 2025 + to: + day: 30 + month: 9 + year: 2025 + string: Mar 31, 2025 to Sep 30, 2025 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.29 + scored_by: 33564 + rank: 3340 + popularity: 2086 + members: 122209 + favorites: 595 + synopsis: |- + After Jinta and Suzune ran away from their home as children, they were taken in by Motoharu—the virtuous sentinel of Kadono Village—and his daughter, Shirayuki. The settlement was ruled by its shrine maiden, Itsukihime, whom only a select few were allowed to interact with. When Itsukihime passed away, Shirayuki was appointed in her place. Wishing to stay in contact with her, Jinta worked diligently for years and was finally selected as the next sentinel. + + As the protector of the village, Jinta's duty is to eliminate any threats. One day, he encounters a demon in a nearby forest. At the end of the battle, the demon makes a proclamation about the destined ruler of all demonkind. He attaches his severed arm to Jinta, turning him into an unaging demon man. By the time Jinta comes to, Kadono is on fire. Suzune has transformed into the demon from the divination, and due to a series of misunderstandings, she murders Shirayuki and flees. + + Devastated, Jinta cannot forgive Suzune for her actions; he departs on a journey to find her. As Jinta travels around Japan across the eras, he endeavors to protect as many people as possible from aggressive demons. In his quiet moments, he contemplates what he should do when he once again faces his childhood friend. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1687 + type: anime + name: Yokohama Animation Lab + url: https://myanimelist.net/anime/producer/1687/Yokohama_Animation_Lab + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: [] + - mal_id: 59636 + url: https://myanimelist.net/anime/59636/Uma_Musume__Cinderella_Gray + images: + jpg: + image_url: https://myanimelist.net/images/anime/1626/148097.jpg + small_image_url: https://myanimelist.net/images/anime/1626/148097t.jpg + large_image_url: https://myanimelist.net/images/anime/1626/148097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1626/148097.webp + small_image_url: https://myanimelist.net/images/anime/1626/148097t.webp + large_image_url: https://myanimelist.net/images/anime/1626/148097l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Gw8j8-m1gVk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Uma Musume: Cinderella Gray' + - type: Japanese + title: ウマ娘 シンデレラグレイ + - type: English + title: 'Umamusume: Cinderella Gray' + title: 'Uma Musume: Cinderella Gray' + title_english: 'Umamusume: Cinderella Gray' + title_japanese: ウマ娘 シンデレラグレイ + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-06-29T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 29 + month: 6 + year: 2025 + string: Apr 6, 2025 to Jun 29, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.59 + scored_by: 51275 + rank: 120 + popularity: 2373 + members: 101838 + favorites: 1658 + synopsis: |- + Tokyo is the home of national-level horse girls and the next generation of running prodigies. Jou Kitahara, a rookie trainer with big dreams and modest expectations, does not expect to find talent in the quiet town of Kasamatsu—until he meets an ash-gray-haired girl with a wild, unconventional stride. + + As a child with bad knees, Oguri Cap spent much of her early life in pain, struggling to stand. But through relentless perseverance, she overcame her limits and found liberation in the very thing that once seemed impossible: running. While the other horse girls at Kasamatsu chase victory and fame, Oguri runs without ambition, driven only by the joy of movement. + + Fujimasa March, a rising regional star, commands attention with her discipline, talent, and tenacity. For her, running is a matter of pride. But when a school-organized race brings her face-to-face with Oguri's raw, unpolished stride, March's confidence begins to waver. In turn, something in Oguri shifts after racing March. For the first time, a spark of ambition ignites within her—a desire to win that will take her beyond the confines of her hometown to the grand stages waiting on the horizon. + + [Written by MAL Rewrite] + background: 'Uma Musume: Cinderella Gray was released on Blu-ray in four volumes from September 17, 2025, to December + 17, 2025.' + season: spring + year: 2025 + broadcast: + day: Sundays + time: '16:30' + timezone: Asia/Tokyo + string: Sundays at 16:30 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 1397 + type: anime + name: Universal Music Japan + url: https://myanimelist.net/anime/producer/1397/Universal_Music_Japan + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 60140 + url: https://myanimelist.net/anime/60140/Kanchigai_no_Atelier_Meister__Eiyuu_Party_no_Moto_Zatsuyougakari_ga_Jitsu_wa_Sentou_Igai_ga_SSS_Rank_Datta_to_Iu_Yoku_Aru_Hanashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1743/148272.jpg + small_image_url: https://myanimelist.net/images/anime/1743/148272t.jpg + large_image_url: https://myanimelist.net/images/anime/1743/148272l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1743/148272.webp + small_image_url: https://myanimelist.net/images/anime/1743/148272t.webp + large_image_url: https://myanimelist.net/images/anime/1743/148272l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mBb-M6HFGp8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta + to Iu Yoku Aru Hanashi' + - type: Synonym + title: Kanchigai no Koubou Nushi + - type: Synonym + title: The Unaware Atelier Master + - type: Japanese + title: 勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話 + - type: English + title: The Unaware Atelier Meister + title: 'Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyougakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta + to Iu Yoku Aru Hanashi' + title_english: The Unaware Atelier Meister + title_japanese: 勘違いの工房主~英雄パーティの元雑用係が、実は戦闘以外がSSSランクだったというよくある話 + title_synonyms: + - Kanchigai no Koubou Nushi + - The Unaware Atelier Master + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 22 + month: 6 + year: 2025 + string: Apr 6, 2025 to Jun 22, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.41 + scored_by: 49882 + rank: 8708 + popularity: 2385 + members: 100893 + favorites: 235 + synopsis: |- + Despite having no real combat talent, kind 15-year-old Kurt Rockhans belongs to the famous party Flaming Dragon Fang. He is perfectly satisfied as the party's helper—until the other members kick him out and replace him with a stronger ally. Left without a way to provide for himself, Kurt begins searching for a job. + + With his job prospects limited by his lack of combat ability, Kurt gladly accepts any work that comes his way. During one such job, he meets Yulishia, an adventurer formerly employed by the royal family. Surprised by Kurt's impressive work, Yulishia discovers that he is no ordinary boy: Kurt possesses an astonishingly high aptitude in a variety of non-combat fields. Due to these talents, a court official tells Yulishia to offer Kurt a high status in the kingdom that would allow him to live in peace for the rest of his life. + + When Yulishia informs Kurt about his potential rank, he brushes off the offer, refusing to think of himself as above other people. Still unaware of his real power, Kurt continues taking as many odd jobs as possible, which might just make him a pivotal part of the kingdom before he even notices it. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Sundays + time: '22:00' + timezone: Asia/Tokyo + string: Sundays at 22:00 (JST) + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: [] + studios: + - mal_id: 1264 + type: anime + name: EMT Squared + url: https://myanimelist.net/anime/producer/1264/EMT_Squared + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60154 + url: https://myanimelist.net/anime/60154/Ore_wa_Seikan_Kokka_no_Akutoku_Ryoushu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1703/148600.jpg + small_image_url: https://myanimelist.net/images/anime/1703/148600t.jpg + large_image_url: https://myanimelist.net/images/anime/1703/148600l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1703/148600.webp + small_image_url: https://myanimelist.net/images/anime/1703/148600t.webp + large_image_url: https://myanimelist.net/images/anime/1703/148600l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/bwOH4WJ_rDk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ore wa Seikan Kokka no Akutoku Ryoushu! + - type: Synonym + title: I am the Villainous Lord of the Interstellar Nation + - type: Synonym + title: OreAku + - type: Japanese + title: 俺は星間国家の悪徳領主! + - type: English + title: I'm the Evil Lord of an Intergalactic Empire! + title: Ore wa Seikan Kokka no Akutoku Ryoushu! + title_english: I'm the Evil Lord of an Intergalactic Empire! + title_japanese: 俺は星間国家の悪徳領主! + title_synonyms: + - I am the Villainous Lord of the Interstellar Nation + - OreAku + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-06T00:00:00+00:00' + to: '2025-06-22T00:00:00+00:00' + prop: + from: + day: 6 + month: 4 + year: 2025 + to: + day: 22 + month: 6 + year: 2025 + string: Apr 6, 2025 to Jun 22, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.01 + scored_by: 43267 + rank: 5096 + popularity: 2472 + members: 94828 + favorites: 319 + synopsis: |- + In his last life, Liam lived as a moral, responsible person...but died deep in debt and betrayed by his wife. Reborn into the ruling family of a vast interstellar empire, Liam knows that life is divided between the downtrodden and the ones who do the stomping, so this time he's going to take what he wants and live for himself. But somehow, things refuse to work out that way. Despite doing his best to become a tyrant, Liam's decisions lead to nothing but peace and prosperity for the empire under his rule, and he just gets more and more popular! + + (Source: Seven Seas Entertainment) + background: Ore wa Seikan Kokka no Akutoku Ryoushu! aired on ABC TV and TV Asahi's ANiMAZiNG!!! block. + season: spring + year: 2025 + broadcast: + day: Sundays + time: 02:00 + timezone: Asia/Tokyo + string: Sundays at 02:00 (JST) + producers: + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2871 + type: anime + name: Procen Studio + url: https://myanimelist.net/anime/producer/2871/Procen_Studio + licensors: [] + studios: + - mal_id: 2314 + type: anime + name: Quad + url: https://myanimelist.net/anime/producer/2314/Quad + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 18 + type: anime + name: Mecha + url: https://myanimelist.net/anime/genre/18/Mecha + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + - mal_id: 29 + type: anime + name: Space + url: https://myanimelist.net/anime/genre/29/Space + demographics: [] + - mal_id: 60157 + url: https://myanimelist.net/anime/60157/Kanpekisugite_Kawaige_ga_Nai_to_Konyaku_Haki_sareta_Seijo_wa_Ringoku_ni_Urareru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1263/148318.jpg + small_image_url: https://myanimelist.net/images/anime/1263/148318t.jpg + large_image_url: https://myanimelist.net/images/anime/1263/148318l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1263/148318.webp + small_image_url: https://myanimelist.net/images/anime/1263/148318t.webp + large_image_url: https://myanimelist.net/images/anime/1263/148318l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E3oJTL-D4zE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru + - type: Synonym + title: Kanpekiseijo + - type: Japanese + title: 完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる + - type: English + title: 'The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom' + title: Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru + title_english: 'The Too-Perfect Saint: Tossed Aside by My Fiancé and Sold to Another Kingdom' + title_japanese: 完璧すぎて可愛げがないと婚約破棄された聖女は隣国に売られる + title_synonyms: + - Kanpekiseijo + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-10T00:00:00+00:00' + to: '2025-06-26T00:00:00+00:00' + prop: + from: + day: 10 + month: 4 + year: 2025 + to: + day: 26 + month: 6 + year: 2025 + string: Apr 10, 2025 to Jun 26, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.25 + scored_by: 45390 + rank: 3630 + popularity: 2526 + members: 92021 + favorites: 268 + synopsis: |- + In the kingdom of Girtonia, the Adenauer family has been giving birth to saints for centuries. Two sisters form the newest generation of holy women who protect the lands from monsters and calamities. The eldest, Philia, is considered a prodigy in the field, capable of solving any problem in no time. Meanwhile, the youngest, Mia, is not as extraordinary as her older sister but has charmed the entire country with her lovely personality. Despite their striking differences, Philia and Mia share an unbreakable bond. + + Sadly, Mia is the only person who truly cares for Philia. Because of Philia's expressionless face and aloof demeanor, their parents always scold her, and the citizens complain about her. Moreover, Julius Girtonia, the second prince and Philia's fiancé, would rather have a more amicable girl as his wife-to-be. For that reason, he cancels the engagement and sells Philia off to the neighboring kingdom, Parnacorta, which has recently lost its own saint. + + Having no say on the matter, Philia immediately goes to serve Parnacorta. As a foreigner, she presumes that she will not be treated much better than in Girtonia. Contrary to her expectations, Philia might have finally found a place with people worth smiling for. + + [Written by MAL Rewrite] + background: Kanpekisugite Kawaige ga Nai to Konyaku Haki sareta Seijo wa Ringoku ni Urareru was released on Blu-ray + in two volumes from July 30, 2025, to August 27, 2025. + season: spring + year: 2025 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1355 + type: anime + name: TV Aichi + url: https://myanimelist.net/anime/producer/1355/TV_Aichi + - mal_id: 1390 + type: anime + name: Toy's Factory + url: https://myanimelist.net/anime/producer/1390/Toys_Factory + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 3103 + type: anime + name: REMOW + url: https://myanimelist.net/anime/producer/3103/REMOW + licensors: [] + studios: + - mal_id: 1103 + type: anime + name: TROYCA + url: https://myanimelist.net/anime/producer/1103/TROYCA + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59466 + url: https://myanimelist.net/anime/59466/Aharen-san_wa_Hakarenai_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1501/148355.jpg + small_image_url: https://myanimelist.net/images/anime/1501/148355t.jpg + large_image_url: https://myanimelist.net/images/anime/1501/148355l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1501/148355.webp + small_image_url: https://myanimelist.net/images/anime/1501/148355t.webp + large_image_url: https://myanimelist.net/images/anime/1501/148355l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/5-nbw77_Bss?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Aharen-san wa Hakarenai Season 2 + - type: Synonym + title: Aharen Is Indecipherable 2nd Season + - type: Japanese + title: 阿波連さんははかれない season2 + - type: English + title: Aharen-san wa Hakarenai Season 2 + title: Aharen-san wa Hakarenai Season 2 + title_english: Aharen-san wa Hakarenai Season 2 + title_japanese: 阿波連さんははかれない season2 + title_synonyms: + - Aharen Is Indecipherable 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-07T00:00:00+00:00' + to: '2025-06-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 4 + year: 2025 + to: + day: 23 + month: 6 + year: 2025 + string: Apr 7, 2025 to Jun 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.49 + scored_by: 33290 + rank: 2273 + popularity: 2568 + members: 89441 + favorites: 292 + synopsis: |- + Ever since the quiet and timid Reina Aharen enrolled in high school, she has made new friends and even started dating her classmate Raidou. When the two begin their second year, everything seems to be going well, as they are seatmates once more. + + Soon after, a transfer student named Riku Tamanaha joins their class. Unbeknownst to Reina, the outgoing and stylish girl is actually a childhood friend she separated from years ago. With Raidou's support, Reina is able to rekindle their friendship. + + Although they have grown closer, Raidou and Reina still struggle to communicate due to his overactive imagination and her difficulty with expressing herself. Nevertheless, the eccentric couple continues to brighten up the lives of people around them as they enjoy each other's company to the fullest. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Mondays + time: '22:00' + timezone: Asia/Tokyo + string: Mondays at 22:00 (JST) + producers: + - mal_id: 1414 + type: anime + name: bilibili + url: https://myanimelist.net/anime/producer/1414/bilibili + licensors: [] + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 74 + type: anime + name: Love Status Quo + url: https://myanimelist.net/anime/genre/74/Love_Status_Quo + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59189 + url: https://myanimelist.net/anime/59189/Sentai_Daishikkaku_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1405/147694.jpg + small_image_url: https://myanimelist.net/images/anime/1405/147694t.jpg + large_image_url: https://myanimelist.net/images/anime/1405/147694l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1405/147694.webp + small_image_url: https://myanimelist.net/images/anime/1405/147694t.webp + large_image_url: https://myanimelist.net/images/anime/1405/147694l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LBOJnYuMBgM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sentai Daishikkaku 2nd Season + - type: Synonym + title: Ranger Reject Season 2 + - type: Japanese + title: 戦隊大失格 2nd Season + - type: English + title: Go! Go! Loser Ranger! Season 2 + title: Sentai Daishikkaku 2nd Season + title_english: Go! Go! Loser Ranger! Season 2 + title_japanese: 戦隊大失格 2nd Season + title_synonyms: + - Ranger Reject Season 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-04-13T00:00:00+00:00' + to: '2025-06-29T00:00:00+00:00' + prop: + from: + day: 13 + month: 4 + year: 2025 + to: + day: 29 + month: 6 + year: 2025 + string: Apr 13, 2025 to Jun 29, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.07 + scored_by: 31664 + rank: 4771 + popularity: 2684 + members: 83654 + favorites: 277 + synopsis: |- + After Sentouin D successfully infiltrated the Ranger Force in the disguise of Hibiki Sakurama, he is closer than ever to defeating the heroic Dragon Keepers. While strategizing his ideal placement in the Force, he discovers that he is assigned to the Green Squadron, whose main duty is to search and eradicate long-lost boss monsters. + + Joined by another new member, Angel Usukubo; their senior, Kanon Hisui; and a mysterious informant, Chidori, Sentouin D is first tasked with identifying suspicious activity in an abandoned school frequented by delinquents. During their investigation, they fall into a trap, and the group soon realizes that a boss monster is behind it all. Sentouin D must now find a way to escape alongside the others if he wants to continue pursuing his ultimate goal—achieving his ideal world free from boss monsters and the Dragon Keepers. + + [Written by MAL Rewrite] + background: Sentai Daishikkaku 2nd Season aired on CBC and TBS' Agaru Anime block. The series was released on Blu-ray + in three volumes from September 24, 2025, to November 26, 2025. + season: spring + year: 2025 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 1626 + type: anime + name: Shochiku Music Publishing + url: https://myanimelist.net/anime/producer/1626/Shochiku_Music_Publishing + licensors: [] + studios: + - mal_id: 2009 + type: anime + name: Yostar Pictures + url: https://myanimelist.net/anime/producer/2009/Yostar_Pictures + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59360 + url: https://myanimelist.net/anime/59360/Rock_wa_Lady_no_Tashinami_deshite + images: + jpg: + image_url: https://myanimelist.net/images/anime/1781/150071.jpg + small_image_url: https://myanimelist.net/images/anime/1781/150071t.jpg + large_image_url: https://myanimelist.net/images/anime/1781/150071l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1781/150071.webp + small_image_url: https://myanimelist.net/images/anime/1781/150071t.webp + large_image_url: https://myanimelist.net/images/anime/1781/150071l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/aqoJPh1uk74?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Rock wa Lady no Tashinami deshite + - type: Japanese + title: ロックは淑女の嗜みでして + - type: English + title: Rock Is a Lady's Modesty + title: Rock wa Lady no Tashinami deshite + title_english: Rock Is a Lady's Modesty + title_japanese: ロックは淑女の嗜みでして + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-04-03T00:00:00+00:00' + to: '2025-06-26T00:00:00+00:00' + prop: + from: + day: 3 + month: 4 + year: 2025 + to: + day: 26 + month: 6 + year: 2025 + string: Apr 3, 2025 to Jun 26, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.91 + scored_by: 32563 + rank: 918 + popularity: 2712 + members: 82516 + favorites: 529 + synopsis: |- + Oushin Girls' Academy is a respected institution reserved only for wealthy young ladies. Very few of its students excel enough to earn the title of Noble Maiden, awarded to those who embody the ideal Japanese woman of culture and refinement. Lilisa Suzunomiya, a girl of common roots, has suddenly found herself as the daughter of a newly remarried real estate mogul and seeks to become a Noble Maiden to prove that commoners like her can be noble as well. + + The most difficult challenge Lilisa has faced in pursuit of this goal is abandoning her love of rock music to keep up the rich girl facade she must now wear. But her resolve crumbles once she happens upon Otoha Kurogane, the daughter of a prominent politician, skillfully playing the drums while rocking out in an abandoned school building. Despite initially being at odds, they embrace their passion for music together while leading a double life. + + [Written by MAL Rewrite] + background: '' + season: spring + year: 2025 + broadcast: + day: Thursdays + time: '23:56' + timezone: Asia/Tokyo + string: Thursdays at 23:56 (JST) + producers: + - mal_id: 109 + type: anime + name: Shochiku + url: https://myanimelist.net/anime/producer/109/Shochiku + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 148 + type: anime + name: Hakusensha + url: https://myanimelist.net/anime/producer/148/Hakusensha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1817 + type: anime + name: Rakuten + url: https://myanimelist.net/anime/producer/1817/Rakuten + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1258 + type: anime + name: Bandai Namco Pictures + url: https://myanimelist.net/anime/producer/1258/Bandai_Namco_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 19 + type: anime + name: Music + url: https://myanimelist.net/anime/genre/19/Music + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 59833 + url: https://myanimelist.net/anime/59833/Kono_Subarashii_Sekai_ni_Shukufuku_wo_3__Bonus_Stage + images: + jpg: + image_url: https://myanimelist.net/images/anime/1482/146928.jpg + small_image_url: https://myanimelist.net/images/anime/1482/146928t.jpg + large_image_url: https://myanimelist.net/images/anime/1482/146928l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1482/146928.webp + small_image_url: https://myanimelist.net/images/anime/1482/146928t.webp + large_image_url: https://myanimelist.net/images/anime/1482/146928l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/GJb28oUxOPw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kono Subarashii Sekai ni Shukufuku wo! 3: Bonus Stage' + - type: Japanese + title: この素晴らしい世界に祝福を!3ーBONUS STAGEー + - type: English + title: 'KonoSuba: God''s Blessing on This Wonderful World! 3 OVA' + title: 'Kono Subarashii Sekai ni Shukufuku wo! 3: Bonus Stage' + title_english: 'KonoSuba: God''s Blessing on This Wonderful World! 3 OVA' + title_japanese: この素晴らしい世界に祝福を!3ーBONUS STAGEー + title_synonyms: [] + type: OVA + source: Light novel + episodes: 2 + status: Finished Airing + airing: false + aired: + from: '2025-04-25T00:00:00+00:00' + to: null + prop: + from: + day: 25 + month: 4 + year: 2025 + to: + day: null + month: null + year: null + string: Apr 25, 2025 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 8.14 + scored_by: 34462 + rank: 534 + popularity: 2719 + members: 82232 + favorites: 109 + synopsis: Original video anime episodes of Kono Subarashii Sekai ni Shukufuku wo!. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1175 + type: anime + name: Atelier Musa + url: https://myanimelist.net/anime/producer/1175/Atelier_Musa + - mal_id: 1185 + type: anime + name: 81 Produce + url: https://myanimelist.net/anime/producer/1185/81_Produce + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1967 + type: anime + name: Drive + url: https://myanimelist.net/anime/producer/1967/Drive + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + demographics: [] + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/63-2025-summer.yaml b/test/fixtures/jikan/season_matrix/63-2025-summer.yaml new file mode 100644 index 0000000..50c82de --- /dev/null +++ b/test/fixtures/jikan/season_matrix/63-2025-summer.yaml @@ -0,0 +1,3252 @@ +metadata: + captured_at: '2026-05-11T11:35:17Z' + label: 2025-summer + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2025/summer?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:17 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:649b8fc02c95df7d882b575622d9e060d302a62d + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 283 + per_page: 25 + data: + - mal_id: 60543 + url: https://myanimelist.net/anime/60543/Dandadan_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1721/149001.jpg + small_image_url: https://myanimelist.net/images/anime/1721/149001t.jpg + large_image_url: https://myanimelist.net/images/anime/1721/149001l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1721/149001.webp + small_image_url: https://myanimelist.net/images/anime/1721/149001t.webp + large_image_url: https://myanimelist.net/images/anime/1721/149001l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/dwilf3OGe-A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Dandadan 2nd Season + - type: Japanese + title: ダンダダン 第2期 + - type: English + title: Dan Da Dan Season 2 + title: Dandadan 2nd Season + title_english: Dan Da Dan Season 2 + title_japanese: ダンダダン 第2期 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-04T00:00:00+00:00' + to: '2025-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2025 + to: + day: 19 + month: 9 + year: 2025 + string: Jul 4, 2025 to Sep 19, 2025 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 8.4 + scored_by: 292877 + rank: 228 + popularity: 459 + members: 550138 + favorites: 3812 + synopsis: |- + While the mission to exorcise Jin "Jiji" Enjouji's family home is underway, things are not going as expected. Momo Ayase narrowly evades an attempted abduction while Ken "Okarun" Takakura and Jiji are ambushed by the Kitou family—the unsettling landlords of the cursed estate. The trio's efforts threaten the foundation of this enigmatic town shrouded in legends and mysteries. + + As Momo, Okarun, and Jiji are drawn deeper into the maze of folklore and supernatural entities, they must each utilize their unique powers if they want to survive and unravel the secrets of the uncanny town. + + [Written by MAL Rewrite] + background: Dandadan 2nd Season aired on MBS and TBS' Super Animeism Turbo block. + season: summer + year: 2025 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59062 + url: https://myanimelist.net/anime/59062/Gachiakuta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1682/150432.jpg + small_image_url: https://myanimelist.net/images/anime/1682/150432t.jpg + large_image_url: https://myanimelist.net/images/anime/1682/150432l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1682/150432.webp + small_image_url: https://myanimelist.net/images/anime/1682/150432t.webp + large_image_url: https://myanimelist.net/images/anime/1682/150432l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/yeRvDchyo44?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Gachiakuta + - type: Japanese + title: ガチアクタ + - type: English + title: Gachiakuta + title: Gachiakuta + title_english: Gachiakuta + title_japanese: ガチアクタ + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-12-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 21 + month: 12 + year: 2025 + string: Jul 6, 2025 to Dec 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.22 + scored_by: 216593 + rank: 417 + popularity: 526 + members: 495119 + favorites: 5830 + synopsis: |- + The inhabitants of a certain wealthy town think nothing of throwing objects away. However, their waste is priceless to Rudo, a resident of the town's slums. Despite the constant warnings from his adoptive father Regto, Rudo spends his days searching for reusable materials that would otherwise be sent to the giant disposal area known as the Pit. Due to its vastness, the Pit doubles as a means of criminal punishment; those dropped in are never to return again. + + When Regto is murdered by a mysterious assailant, Rudo is falsely accused of the crime and thrown into the Pit. To his surprise, he awakens in a trash-filled area inhabited by enormous monsters formed from the junk. As the toxic air and Trash Beasts push Rudo to the brink of death, he is saved by Enjin, one of the Cleaners who wield weapons known as Vital Instruments to fight the monstrosities. Having gained his own Vital Instrument, Rudo soon joins the Cleaners in the hopes of finding a way to escape the Pit and avenge his father. + + [Written by MAL Rewrite] + background: Gachiakuta aired on CBC and TBS' Agaru Anime block. + season: summer + year: 2025 + broadcast: + day: Sundays + time: '23:30' + timezone: Asia/Tokyo + string: Sundays at 23:30 (JST) + producers: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 3155 + type: anime + name: Team-MAX + url: https://myanimelist.net/anime/producer/3155/Team-MAX + licensors: [] + studios: + - mal_id: 3045 + type: anime + name: Bones Film + url: https://myanimelist.net/anime/producer/3045/Bones_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57555 + url: https://myanimelist.net/anime/57555/Chainsaw_Man_Movie__Reze-hen + images: + jpg: + image_url: https://myanimelist.net/images/anime/1763/150638.jpg + small_image_url: https://myanimelist.net/images/anime/1763/150638t.jpg + large_image_url: https://myanimelist.net/images/anime/1763/150638l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1763/150638.webp + small_image_url: https://myanimelist.net/images/anime/1763/150638t.webp + large_image_url: https://myanimelist.net/images/anime/1763/150638l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/pv8A7eubPQQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Chainsaw Man Movie: Reze-hen' + - type: Synonym + title: 'Gekijouban Chainsaw Man: Reze-hen' + - type: Japanese + title: 劇場版 チェンソーマン レゼ篇 + - type: English + title: 'Chainsaw Man – The Movie: Reze Arc' + title: 'Chainsaw Man Movie: Reze-hen' + title_english: 'Chainsaw Man – The Movie: Reze Arc' + title_japanese: 劇場版 チェンソーマン レゼ篇 + title_synonyms: + - 'Gekijouban Chainsaw Man: Reze-hen' + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2025-09-19T00:00:00+00:00' + to: null + prop: + from: + day: 19 + month: 9 + year: 2025 + to: + day: null + month: null + year: null + string: Sep 19, 2025 + duration: 1 hr 39 min + rating: R - 17+ (violence & profanity) + score: 9.08 + scored_by: 301350 + rank: 4 + popularity: 554 + members: 473913 + favorites: 13575 + synopsis: "Despite the immediate challenges following becoming a devil hunter with the Public Safety Bureau, Denji has\ + \ quickly adapted to his new life and responsibilities. As the chaos of Denji's first ordeal with Public Safety settles\ + \ down, the elite devil hunter Makima decides to take Denji out on a date. Although the date strengthens his affection\ + \ for Makima and he swears to not fall in love with anyone else, Denji soon finds himself in a tricky situation when\ + \ he meets a seemingly innocent cafe worker named Reze.\n\nWith her forward and flirty demeanor, Reze immediately\ + \ captures Denji's heart, driving him to frequent the cafe where she works and deepen his relationship with her. However,\ + \ Denji is completely oblivious to the fact that meeting Reze might have grave consequences beyond simply deciding\ + \ which woman his heart belongs to. \n\n[Written by MAL Rewrite]" + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: [] + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 58 + type: anime + name: Gore + url: https://myanimelist.net/anime/genre/58/Gore + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 53065 + url: https://myanimelist.net/anime/53065/Sono_Bisque_Doll_wa_Koi_wo_Suru_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1024/150787.jpg + small_image_url: https://myanimelist.net/images/anime/1024/150787t.jpg + large_image_url: https://myanimelist.net/images/anime/1024/150787l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1024/150787.webp + small_image_url: https://myanimelist.net/images/anime/1024/150787t.webp + large_image_url: https://myanimelist.net/images/anime/1024/150787l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/Gx1QvE0wtgw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sono Bisque Doll wa Koi wo Suru Season 2 + - type: Synonym + title: KiseKoi + - type: Japanese + title: その着せ替え人形は恋をする Season 2 + - type: English + title: My Dress-Up Darling Season 2 + title: Sono Bisque Doll wa Koi wo Suru Season 2 + title_english: My Dress-Up Darling Season 2 + title_japanese: その着せ替え人形は恋をする Season 2 + title_synonyms: + - KiseKoi + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-09-21T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 21 + month: 9 + year: 2025 + string: Jul 6, 2025 to Sep 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 205947 + rank: 489 + popularity: 562 + members: 469132 + favorites: 4438 + synopsis: |- + After Marin Kitagawa introduced Wakana Gojou to the world of cosplay, he has been creating her outfits with ease. Even so, he still has a lot to learn, and every new lesson seems to strengthen his love for sewing and for the hina dolls his grandfather taught him to make. + + Meanwhile, Kitagawa finds it harder and harder to hide her feelings for Gojou. Friends and strangers alike constantly mistake them for a couple, much to Gojou's embarrassment. After all, in his eyes, their worlds are far too different for anyone to think they could be romantically linked. However, as Gojou spends more time with Kitagawa and realizes that his passions are not ridiculed by other people, a relationship between the two no longer seems so far-fetched. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Sundays + time: 00:00 + timezone: Asia/Tokyo + string: Sundays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 69 + type: anime + name: Otaku Culture + url: https://myanimelist.net/anime/genre/69/Otaku_Culture + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 59845 + url: https://myanimelist.net/anime/59845/Kaoru_Hana_wa_Rin_to_Saku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1744/150433.jpg + small_image_url: https://myanimelist.net/images/anime/1744/150433t.jpg + large_image_url: https://myanimelist.net/images/anime/1744/150433l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1744/150433.webp + small_image_url: https://myanimelist.net/images/anime/1744/150433t.webp + large_image_url: https://myanimelist.net/images/anime/1744/150433l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1FcVJxxPWh4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaoru Hana wa Rin to Saku + - type: Synonym + title: The Fragrant Flowers Bloom with Dignity + - type: Japanese + title: 薫る花は凛と咲く + - type: English + title: The Fragrant Flower Blooms with Dignity + title: Kaoru Hana wa Rin to Saku + title_english: The Fragrant Flower Blooms with Dignity + title_japanese: 薫る花は凛と咲く + title_synonyms: + - The Fragrant Flowers Bloom with Dignity + type: TV + source: Web manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 28 + month: 9 + year: 2025 + string: Jul 6, 2025 to Sep 28, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.52 + scored_by: 223693 + rank: 154 + popularity: 587 + members: 454216 + favorites: 8657 + synopsis: |- + The all-girls Kikyo Private Academy and Chidori Public High School are polar opposites. With its prestigious history, Kikyo is attended by noble young ladies from distinguished families, while Chidori is infamously full of simple-minded delinquents. It is no surprise that their students clash with their differences. + + Having a tall stature and fierce appearance, Chidori student Rintarou Tsumugi is often avoided by others despite his gentle heart. One day, while helping out at his family's patisserie, he meets a customer who, after a brief moment, runs away from him. The next day, the customer returns to apologize to Rintarou, introducing herself as the cheerful Kaoruko Waguri. + + After spending time with Kaoruko, Rintarou appreciates that she does not judge him based on his appearance and looks forward to when they will meet again. However, when Rintarou discovers Kaoruko attends Kikyo, their relationship will challenge the social expectations and dynamics around them. + + [Written by MAL Rewrite] + background: Kaoru Hana wa Rin to Saku was released on Blu-ray and DVD from August 27, 2025, to February 25, 2026. + season: summer + year: 2025 + broadcast: + day: Sundays + time: 00:30 + timezone: Asia/Tokyo + string: Sundays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1800 + type: anime + name: Marui Group + url: https://myanimelist.net/anime/producer/1800/Marui_Group + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59192 + url: https://myanimelist.net/anime/59192/Kimetsu_no_Yaiba_Movie_1__Mugenjou-hen_-_Akaza_Sairai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1681/148216.jpg + small_image_url: https://myanimelist.net/images/anime/1681/148216t.jpg + large_image_url: https://myanimelist.net/images/anime/1681/148216l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1681/148216.webp + small_image_url: https://myanimelist.net/images/anime/1681/148216t.webp + large_image_url: https://myanimelist.net/images/anime/1681/148216l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wPFeBxt7VXI?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai' + - type: Japanese + title: 劇場版 鬼滅の刃 無限城編 第一章 猗窩座再来 + - type: English + title: 'Demon Slayer: Kimetsu no Yaiba - The Movie: Infinity Castle - Part 1: Akaza Returns' + title: 'Kimetsu no Yaiba Movie 1: Mugenjou-hen - Akaza Sairai' + title_english: 'Demon Slayer: Kimetsu no Yaiba - The Movie: Infinity Castle - Part 1: Akaza Returns' + title_japanese: 劇場版 鬼滅の刃 無限城編 第一章 猗窩座再来 + title_synonyms: [] + type: Movie + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2025-07-18T00:00:00+00:00' + to: null + prop: + from: + day: 18 + month: 7 + year: 2025 + to: + day: null + month: null + year: null + string: Jul 18, 2025 + duration: 2 hr 35 min + rating: R - 17+ (violence & profanity) + score: 8.67 + scored_by: 192635 + rank: 81 + popularity: 732 + members: 374425 + favorites: 3467 + synopsis: First anime movie of the trilogy adaptation of the Infinity Castle Arc. + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 43 + type: anime + name: ufotable + url: https://myanimelist.net/anime/producer/43/ufotable + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 46 + type: anime + name: Award Winning + url: https://myanimelist.net/anime/genre/46/Award_Winning + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 13 + type: anime + name: Historical + url: https://myanimelist.net/anime/genre/13/Historical + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59177 + url: https://myanimelist.net/anime/59177/Kaijuu_8-gou_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1177/150344.jpg + small_image_url: https://myanimelist.net/images/anime/1177/150344t.jpg + large_image_url: https://myanimelist.net/images/anime/1177/150344l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1177/150344.webp + small_image_url: https://myanimelist.net/images/anime/1177/150344t.webp + large_image_url: https://myanimelist.net/images/anime/1177/150344l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/1ry0cE8Gr0k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kaijuu 8-gou 2nd Season + - type: Synonym + title: 8Kaijuu + - type: Synonym + title: 'Monster #8' + - type: Synonym + title: Kaiju No. Eight + - type: Synonym + title: 'Kaiju #8' + - type: Japanese + title: 怪獣8号 第2期 + - type: English + title: Kaiju No. 8 Season 2 + title: Kaijuu 8-gou 2nd Season + title_english: Kaiju No. 8 Season 2 + title_japanese: 怪獣8号 第2期 + title_synonyms: + - 8Kaijuu + - 'Monster #8' + - Kaiju No. Eight + - 'Kaiju #8' + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2025-07-19T00:00:00+00:00' + to: '2025-09-27T00:00:00+00:00' + prop: + from: + day: 19 + month: 7 + year: 2025 + to: + day: 27 + month: 9 + year: 2025 + string: Jul 19, 2025 to Sep 27, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.79 + scored_by: 169483 + rank: 1207 + popularity: 754 + members: 365644 + favorites: 1698 + synopsis: |- + Following the massive operation that led to the confinement of recent recruit Kafka Hibino, otherwise known as Kaijuu No. 8, the Defense Force has been puzzled by how to deal with him. Kafka is the first kaijuu to side with humans, and after careful consideration, he is eventually transferred to the Defense Force's First Division in the hope of adding his power to the strongest division, capable of handling any threat. However, some people are still doubtful about Kafka, and he must prove his worth in the next mission. + + Kafka and the First Division are soon dispatched when a massive horde of ant-like kaijuu begins wreaking havoc. Thanks to the combined strength of Kafka's friend Kikoru Shinomiya and their captain, Gen Narumi, the mission seems to progress as it should. However, when Kafka fails to transform into his kaijuu form, the dreadful Kaijuu No. 9 joins the battle with only one goal—to eliminate him and steal his power. Although the situation is looking grim, Kafka must overcome his most difficult trial yet with the others if he wants to keep pursuing his dream: fighting side by side with his childhood friend and Third Division captain, Mina Ashiro. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 47 + type: anime + name: Khara + url: https://myanimelist.net/anime/producer/47/Khara + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1858 + type: anime + name: Sonilude + url: https://myanimelist.net/anime/producer/1858/Sonilude + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 10 + type: anime + name: Production I.G + url: https://myanimelist.net/anime/producer/10/Production_IG + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 38 + type: anime + name: Military + url: https://myanimelist.net/anime/genre/38/Military + - mal_id: 82 + type: anime + name: Urban Fantasy + url: https://myanimelist.net/anime/genre/82/Urban_Fantasy + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58913 + url: https://myanimelist.net/anime/58913/Hikaru_ga_Shinda_Natsu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1104/148614.jpg + small_image_url: https://myanimelist.net/images/anime/1104/148614t.jpg + large_image_url: https://myanimelist.net/images/anime/1104/148614l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1104/148614.webp + small_image_url: https://myanimelist.net/images/anime/1104/148614t.webp + large_image_url: https://myanimelist.net/images/anime/1104/148614l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sFaO07LwAVg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Hikaru ga Shinda Natsu + - type: Synonym + title: Hikanatsu + - type: Japanese + title: 光が死んだ夏 + - type: English + title: The Summer Hikaru Died + title: Hikaru ga Shinda Natsu + title_english: The Summer Hikaru Died + title_japanese: 光が死んだ夏 + title_synonyms: + - Hikanatsu + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 28 + month: 9 + year: 2025 + string: Jul 6, 2025 to Sep 28, 2025 + duration: 22 min per ep + rating: R - 17+ (violence & profanity) + score: 8.02 + scored_by: 112279 + rank: 719 + popularity: 937 + members: 298314 + favorites: 4240 + synopsis: |- + It has been six months since Yoshiki Tsujinaka's best friend, Hikaru Indou, went missing in the mountains and returned a week later with no recollection of what had transpired. Certain that it is not the Hikaru he knows who came back, Yoshiki finally asks Hikaru about it. Suddenly, "Hikaru" reveals his true monstrous form and begs Yoshiki to keep it a secret, as he does not want to kill him. + + Despite his paranormal nature, "Hikaru" seems almost innocent, full of childlike wonder and eager to experience the summer heat, the countryside, and all kinds of other things in a human body for the first time. And for Yoshiki, it matters little if "Hikaru" is a fake relying on stolen memories—as long as he never leaves again. As Yoshiki desperately clings to "Hikaru" in his intense grief, it becomes increasingly clear that something dangerous and supernatural may have descended from the mountains into their village. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Sundays + time: 00:55 + timezone: Asia/Tokyo + string: Sundays at 00:55 (JST) + producers: + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: [] + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 14 + type: anime + name: Horror + url: https://myanimelist.net/anime/genre/14/Horror + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60285 + url: https://myanimelist.net/anime/60285/Sakamoto_Days_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1758/148719.jpg + small_image_url: https://myanimelist.net/images/anime/1758/148719t.jpg + large_image_url: https://myanimelist.net/images/anime/1758/148719l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1758/148719.webp + small_image_url: https://myanimelist.net/images/anime/1758/148719t.webp + large_image_url: https://myanimelist.net/images/anime/1758/148719l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/ZCHwvfQlQ4M?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sakamoto Days Part 2 + - type: Japanese + title: SAKAMOTO DAYS 第2クール + - type: English + title: Sakamoto Days Part 2 + title: Sakamoto Days Part 2 + title_english: Sakamoto Days Part 2 + title_japanese: SAKAMOTO DAYS 第2クール + title_synonyms: [] + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2025-07-15T00:00:00+00:00' + to: '2025-09-23T00:00:00+00:00' + prop: + from: + day: 15 + month: 7 + year: 2025 + to: + day: 23 + month: 9 + year: 2025 + string: Jul 15, 2025 to Sep 23, 2025 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.91 + scored_by: 115814 + rank: 919 + popularity: 1113 + members: 253708 + favorites: 851 + synopsis: |- + The legendary former hitman Tarou Sakamoto has thwarted numerous assassins after an enormous bounty on his head was issued. But he cannot seem to catch a break and simply take it easy with his beloved family. A mysterious and infamous figure known as Slur has brought a group of insane death row inmates to Japan, who hold back from nothing to eliminate their targets. + + Sakamoto is not the only target—the criminals have been assigned to kill various other people, including the new hires at Sakamoto's convenience store, Shin Asakura and Lu Shaotang. The situation escalates even further when the Order, a group of the most skilled Japanese assassins, becomes involved. As the inmates begin wreaking havoc, Sakamoto and his allies must remain vigilant for the sake of everything they hold dear. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 68 + type: anime + name: Organized Crime + url: https://myanimelist.net/anime/genre/68/Organized_Crime + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 58390 + url: https://myanimelist.net/anime/58390/Yofukashi_no_Uta_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1509/148453.jpg + small_image_url: https://myanimelist.net/images/anime/1509/148453t.jpg + large_image_url: https://myanimelist.net/images/anime/1509/148453l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1509/148453.webp + small_image_url: https://myanimelist.net/images/anime/1509/148453t.webp + large_image_url: https://myanimelist.net/images/anime/1509/148453l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m3yAIWZQ6gM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yofukashi no Uta Season 2 + - type: Japanese + title: よふかしのうた Season2 + - type: English + title: Call of the Night Season 2 + title: Yofukashi no Uta Season 2 + title_english: Call of the Night Season 2 + title_japanese: よふかしのうた Season2 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-04T00:00:00+00:00' + to: '2025-09-19T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2025 + to: + day: 19 + month: 9 + year: 2025 + string: Jul 4, 2025 to Sep 19, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 8.34 + scored_by: 93775 + rank: 290 + popularity: 1163 + members: 245001 + favorites: 1756 + synopsis: |- + A human may become a vampire only if they fall in love with one—and 14-year-old Kou Yamori wishes for nothing more. Kou has decided to fall in love with a vampire named Nazuna Nanakusa, and he has only 10 months of nightly rendezvous left to realize his goal. + + Kou's friends, Mahiru Seki and Akira Asai, are slowly coming to terms with the existence of vampires and Kou's decision to become one. As Kou realizes that a woman close to Mahiru is a vampire, he is unsure whether to support this relationship. + + Meanwhile, Anko Uguisu, the human detective bent on killing vampires, closes in on Nazuna and her coven. When an encounter leaves one of the vampires seriously injured, they learn that their human memories hold the key to a weakness that can be their demise—and to protect Nazuna, Kou must find out about her past. + + [Written by MAL Rewrite] + background: Yofukashi no Uta Season 2 aired on Fuji TV's noitaminA block. + season: summer + year: 2025 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 169 + type: anime + name: Fuji TV + url: https://myanimelist.net/anime/producer/169/Fuji_TV + - mal_id: 539 + type: anime + name: Ultra Super Pictures + url: https://myanimelist.net/anime/producer/539/Ultra_Super_Pictures + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 769 + type: anime + name: Fujipacific Music + url: https://myanimelist.net/anime/producer/769/Fujipacific_Music + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1556 + type: anime + name: Fuji Creative + url: https://myanimelist.net/anime/producer/1556/Fuji_Creative + - mal_id: 1734 + type: anime + name: Tohan Corporation + url: https://myanimelist.net/anime/producer/1734/Tohan_Corporation + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 32 + type: anime + name: Vampire + url: https://myanimelist.net/anime/genre/32/Vampire + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 61322 + url: https://myanimelist.net/anime/61322/Dr_Stone__Science_Future_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1785/151710.jpg + small_image_url: https://myanimelist.net/images/anime/1785/151710t.jpg + large_image_url: https://myanimelist.net/images/anime/1785/151710l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1785/151710.webp + small_image_url: https://myanimelist.net/images/anime/1785/151710t.webp + large_image_url: https://myanimelist.net/images/anime/1785/151710l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qbthdPHU8FQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Dr. Stone: Science Future Part 2' + - type: Synonym + title: Dr. Stone 4th Season Part 2 + - type: Japanese + title: Dr.STONE SCIENCE FUTURE 第2クール + - type: English + title: 'Dr. Stone: Science Future Part 2' + title: 'Dr. Stone: Science Future Part 2' + title_english: 'Dr. Stone: Science Future Part 2' + title_japanese: Dr.STONE SCIENCE FUTURE 第2クール + title_synonyms: + - Dr. Stone 4th Season Part 2 + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-10T00:00:00+00:00' + to: '2025-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2025 + to: + day: 25 + month: 9 + year: 2025 + string: Jul 10, 2025 to Sep 25, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.52 + scored_by: 113202 + rank: 153 + popularity: 1252 + members: 225281 + favorites: 909 + synopsis: |- + After a strategic maneuver, Senkuu Ishigami's team stalls Dr. Xeno's more scientifically advanced forces. A ceasefire between the two factions allows for the establishment of Corn City in North America, a hope for a future thriving population. Meanwhile, Senkuu and some of his teammates rush toward the Amazon in South America—the epicenter of the petrification beam's impact—to create Superalloy City and progress their spaceship project. + + With dangerous enemies still pursuing Senkuu and his companions, it is a race against time to reach the heart of the dense Amazon. As unexpected allies and scientific creations further fuel this leg of their journey, Senkuu is closer than ever to finally uncovering the mystery behind the petrification phenomenon. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59459 + url: https://myanimelist.net/anime/59459/Silent_Witch__Chinmoku_no_Majo_no_Kakushigoto + images: + jpg: + image_url: https://myanimelist.net/images/anime/1669/149732.jpg + small_image_url: https://myanimelist.net/images/anime/1669/149732t.jpg + large_image_url: https://myanimelist.net/images/anime/1669/149732l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1669/149732.webp + small_image_url: https://myanimelist.net/images/anime/1669/149732t.webp + large_image_url: https://myanimelist.net/images/anime/1669/149732l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/0OBF29HoV4A?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Silent Witch: Chinmoku no Majo no Kakushigoto' + - type: Japanese + title: サイレント・ウィッチ 沈黙の魔女の隠しごと + - type: English + title: Secrets of the Silent Witch + title: 'Silent Witch: Chinmoku no Majo no Kakushigoto' + title_english: Secrets of the Silent Witch + title_japanese: サイレント・ウィッチ 沈黙の魔女の隠しごと + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-07-05T00:00:00+00:00' + to: '2025-10-05T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2025 + to: + day: 5 + month: 10 + year: 2025 + string: Jul 5, 2025 to Oct 5, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.11 + scored_by: 108114 + rank: 587 + popularity: 1294 + members: 217412 + favorites: 1817 + synopsis: |- + In the Kingdom of Ridill lives a genius magician known to be the first person to ever use chantless magic. With this amazing skill, Monica Everett joins the Seven Sages as a hero who can defeat powerful dragons, such as the legendary black dragon, all on her own. However, the truth is that the Silent Witch developed chantless magic due to being too shy—preferring to live on a mountain top, far from society. + + Her secluded lifestyle changes, though, when a fellow sage tasks her to covertly defend the second prince, Felix Arc Ridill, from attempts on his life. Unfortunately, that means she will have to go undercover as a student at Serendia Academy. Between guard duty and her social anxiety, Monica is facing her most difficult mission to date. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 418 + type: anime + name: Studio Gokumi + url: https://myanimelist.net/anime/producer/418/Studio_Gokumi + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 57433 + url: https://myanimelist.net/anime/57433/Seishun_Buta_Yarou_wa_Santa_Claus_no_Yume_wo_Minai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1823/149858.jpg + small_image_url: https://myanimelist.net/images/anime/1823/149858t.jpg + large_image_url: https://myanimelist.net/images/anime/1823/149858l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1823/149858.webp + small_image_url: https://myanimelist.net/images/anime/1823/149858t.webp + large_image_url: https://myanimelist.net/images/anime/1823/149858l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/H6TPUB0OvyM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Seishun Buta Yarou wa Santa Claus no Yume wo Minai + - type: Synonym + title: 'Seishun Buta Yarou: Daigakusei-hen' + - type: Japanese + title: 青春ブタ野郎はサンタクロースの夢を見ない + - type: English + title: Rascal Does Not Dream of Santa Claus + title: Seishun Buta Yarou wa Santa Claus no Yume wo Minai + title_english: Rascal Does Not Dream of Santa Claus + title_japanese: 青春ブタ野郎はサンタクロースの夢を見ない + title_synonyms: + - 'Seishun Buta Yarou: Daigakusei-hen' + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-07-05T00:00:00+00:00' + to: '2025-09-27T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2025 + to: + day: 27 + month: 9 + year: 2025 + string: Jul 5, 2025 to Sep 27, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.18 + scored_by: 70226 + rank: 488 + popularity: 1307 + members: 214384 + favorites: 1126 + synopsis: |- + After surviving the entrance exams, Sakuta Azusagawa has finally enrolled in the same university as his girlfriend, Mai Sakurajima. He is gradually getting used to the unfamiliar environment as he attends student gatherings and makes new acquaintances. Everything seems to be going smoothly until Sakuta's friend and Sweet Bullet idol group member Uzuki Hirokawa begins acting out. + + With fellow Sweet Bullet member Nodoka Toyohama pleading for his help, Sakuta realizes that he has stumbled upon another case of the inexplicable Puberty Syndrome—Uzuki is feeling pressured by the sudden surge of popularity and rumors of a potential solo career. While Sakuta searches for a solution, another occurrence of Puberty Syndrome gradually emerges from the shadows. + + [Written by MAL Rewrite] + background: Seishun Buta Yarou wa Santa Claus no Yume wo Minai was released on Blu-ray and DVD in four volumes from + September 17, 2025, to December 24, 2025. + season: summer + year: 2025 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1366 + type: anime + name: Nagoya Broadcasting Network + url: https://myanimelist.net/anime/producer/1366/Nagoya_Broadcasting_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1500 + type: anime + name: ABC Animation + url: https://myanimelist.net/anime/producer/1500/ABC_Animation + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59986 + url: https://myanimelist.net/anime/59986/Grand_Blue_Season_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1108/150583.jpg + small_image_url: https://myanimelist.net/images/anime/1108/150583t.jpg + large_image_url: https://myanimelist.net/images/anime/1108/150583l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1108/150583.webp + small_image_url: https://myanimelist.net/images/anime/1108/150583t.webp + large_image_url: https://myanimelist.net/images/anime/1108/150583l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/rQ119Lo7aF8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Grand Blue Season 2 + - type: Japanese + title: ぐらんぶる Season 2 + - type: English + title: Grand Blue Dreaming Season 2 + title: Grand Blue Season 2 + title_english: Grand Blue Dreaming Season 2 + title_japanese: ぐらんぶる Season 2 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-08T00:00:00+00:00' + to: '2025-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2025 + to: + day: 23 + month: 9 + year: 2025 + string: Jul 8, 2025 to Sep 23, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 8.5 + scored_by: 89015 + rank: 163 + popularity: 1405 + members: 199292 + favorites: 1314 + synopsis: |- + Three months have passed since Iori Kitahara began living above Grand Blue, his uncle's scuba diving shop, and joined his university's Diving Club. Alongside the other members, he has spent his days drinking and recklessly having fun. However, when Iori's sister, Shiori, hears about his behavior, she decides to take matters into her own hands—and bring him back home to make him take over their family's inn. + + Despite her best efforts, Shiori temporarily gives up as she sees how Iori has grown attached to Grand Blue and his friends. As Iori and the rest of the Diving Club continue to party like there is no tomorrow, they end up in all kinds of bizarrely amusing situations, still somehow managing to hone their scuba diving skills! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Tuesdays + time: 00:30 + timezone: Asia/Tokyo + string: Tuesdays at 00:30 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + - mal_id: 2840 + type: anime + name: qooop + url: https://myanimelist.net/anime/producer/2840/qooop + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + - mal_id: 2527 + type: anime + name: Liber + url: https://myanimelist.net/anime/producer/2527/Liber + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 57 + type: anime + name: Gag Humor + url: https://myanimelist.net/anime/genre/57/Gag_Humor + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 60732 + url: https://myanimelist.net/anime/60732/Mizu_Zokusei_no_Mahoutsukai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1383/151072.jpg + small_image_url: https://myanimelist.net/images/anime/1383/151072t.jpg + large_image_url: https://myanimelist.net/images/anime/1383/151072l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1383/151072.webp + small_image_url: https://myanimelist.net/images/anime/1383/151072t.webp + large_image_url: https://myanimelist.net/images/anime/1383/151072l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/4E6zDMwB1rw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mizu Zokusei no Mahoutsukai + - type: Synonym + title: 'The Water Magician: The Central Provinces Arc' + - type: Synonym + title: 'Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen' + - type: Japanese + title: 水属性の魔法使い + - type: English + title: The Water Magician + title: Mizu Zokusei no Mahoutsukai + title_english: The Water Magician + title_japanese: 水属性の魔法使い + title_synonyms: + - 'The Water Magician: The Central Provinces Arc' + - 'Mizu Zokusei no Mahoutsukai Daiichibu: Chuuou Shokoku-hen' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-04T00:00:00+00:00' + to: '2025-09-26T00:00:00+00:00' + prop: + from: + day: 4 + month: 7 + year: 2025 + to: + day: 26 + month: 9 + year: 2025 + string: Jul 4, 2025 to Sep 26, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.06 + scored_by: 103702 + rank: 4810 + popularity: 1412 + members: 197717 + favorites: 722 + synopsis: |- + After getting caught up in an accident, Ryou Mihara is reincarnated in the world of Phi as a water magician. Waking up in a remote forest, he sets out to achieve his ideal slow life by living off monsters and refining his magic. Unbeknownst to Ryou, in his second life he has gained the hidden trait "Eternal Youth." + + One day, Ryou stumbles across a shipwrecked adventurer named Abel. As Abel requests Ryou to accompany him to the town of Lune, they embark on a journey through mountains infested with monsters. Upon arriving at the town and registering as an adventurer, Ryou's powerful water magic and equipment are unlike anything anyone has ever seen before. Although his prowess piques the interest of many, Ryou is eager to begin his own adventure and hone his magic even further! + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1397 + type: anime + name: Universal Music Japan + url: https://myanimelist.net/anime/producer/1397/Universal_Music_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 1988 + type: anime + name: TO Books + url: https://myanimelist.net/anime/producer/1988/TO_Books + licensors: [] + studios: + - mal_id: 1340 + type: anime + name: Typhoon Graphics + url: https://myanimelist.net/anime/producer/1340/Typhoon_Graphics + - mal_id: 3060 + type: anime + name: WonderLand + url: https://myanimelist.net/anime/producer/3060/WonderLand + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 59205 + url: https://myanimelist.net/anime/59205/Clevatess__Majuu_no_Ou_to_Akago_to_Shikabane_no_Yuusha + images: + jpg: + image_url: https://myanimelist.net/images/anime/1255/150593.jpg + small_image_url: https://myanimelist.net/images/anime/1255/150593t.jpg + large_image_url: https://myanimelist.net/images/anime/1255/150593l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1255/150593.webp + small_image_url: https://myanimelist.net/images/anime/1255/150593t.webp + large_image_url: https://myanimelist.net/images/anime/1255/150593l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sX4o5OODMqQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha' + - type: Synonym + title: 'Clevatess: The King of Devil Beasts' + - type: Synonym + title: The Baby and the Brave of Undead + - type: Japanese + title: クレバテス-魔獣の王と赤子と屍の勇者- + - type: English + title: Clevatess + title: 'Clevatess: Majuu no Ou to Akago to Shikabane no Yuusha' + title_english: Clevatess + title_japanese: クレバテス-魔獣の王と赤子と屍の勇者- + title_synonyms: + - 'Clevatess: The King of Devil Beasts' + - The Baby and the Brave of Undead + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-02T00:00:00+00:00' + to: '2025-09-17T00:00:00+00:00' + prop: + from: + day: 2 + month: 7 + year: 2025 + to: + day: 17 + month: 9 + year: 2025 + string: Jul 2, 2025 to Sep 17, 2025 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.81 + scored_by: 97529 + rank: 1143 + popularity: 1427 + members: 195084 + favorites: 811 + synopsis: "Surrounded by four armies of dark beasts, five humanoid races strive to push the known boundaries of the\ + \ world. Unfortunately, the 13 heroes dispatched to the southern region are easily wiped out by Clevatess, one of\ + \ the Lords of Dark Beasts. Determined to get revenge against humanity, Clevatess bursts into the capital of the Kingdom\ + \ of Hiden, leaving a trail of death and destruction behind him.\n\nAlthough the situation looks desperate, humanity\ + \ still has a chance to appease Clevatess' anger. Alicia Glenfall, one of the 13 heroes, is revived by Clevatess to\ + \ help him raise a newborn infant, Luna, whose choices shall shape the fate of the human world. Although reluctant\ + \ to help the dark beast at first, Alicia understands that Luna is the only thing that stands between humanity and\ + \ complete annihilation. \n\nHiding himself by taking on a human form, Clevatess sets out in search for a wet nurse\ + \ with Alicia and Luna. With Clevatess unwilling to reveal his identity, it falls on Alicia to slay all enemies that\ + \ stand in their way. Meanwhile, the neighboring countries prepare to advance on the weakened Hiden, aiming to control\ + \ the only forge capable of producing the heroes' weapons.\n\n[Written by MAL Rewrite]" + background: '' + season: summer + year: 2025 + broadcast: + day: Wednesdays + time: '20:30' + timezone: Asia/Tokyo + string: Wednesdays at 20:30 (JST) + producers: + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2017 + type: anime + name: Culture Entertainment + url: https://myanimelist.net/anime/producer/2017/Culture_Entertainment + - mal_id: 2640 + type: anime + name: INSPION Edge + url: https://myanimelist.net/anime/producer/2640/INSPION_Edge + - mal_id: 2876 + type: anime + name: Line Digital Frontier + url: https://myanimelist.net/anime/producer/2876/Line_Digital_Frontier + licensors: [] + studios: + - mal_id: 1087 + type: anime + name: Lay-duce + url: https://myanimelist.net/anime/producer/1087/Lay-duce + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 57907 + url: https://myanimelist.net/anime/57907/Tate_no_Yuusha_no_Nariagari_Season_4 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1638/150592.jpg + small_image_url: https://myanimelist.net/images/anime/1638/150592t.jpg + large_image_url: https://myanimelist.net/images/anime/1638/150592l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1638/150592.webp + small_image_url: https://myanimelist.net/images/anime/1638/150592t.webp + large_image_url: https://myanimelist.net/images/anime/1638/150592l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/XNzt2ER1o4k?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tate no Yuusha no Nariagari Season 4 + - type: Synonym + title: Tate no Yuusha no Nariagari 4th Season + - type: Synonym + title: The Rising of the Shield Hero 4th Season + - type: Japanese + title: 盾の勇者の成り上がり Season 4 + - type: English + title: The Rising of the Shield Hero Season 4 + title: Tate no Yuusha no Nariagari Season 4 + title_english: The Rising of the Shield Hero Season 4 + title_japanese: 盾の勇者の成り上がり Season 4 + title_synonyms: + - Tate no Yuusha no Nariagari 4th Season + - The Rising of the Shield Hero 4th Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-09T00:00:00+00:00' + to: '2025-09-24T00:00:00+00:00' + prop: + from: + day: 9 + month: 7 + year: 2025 + to: + day: 24 + month: 9 + year: 2025 + string: Jul 9, 2025 to Sep 24, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.89 + scored_by: 66171 + rank: 5761 + popularity: 1540 + members: 179764 + favorites: 563 + synopsis: |- + Aiming to protect Raphtalia from the assassins of Q'ten Lo, Naofumi Iwatani travels with his friends to the eastern isolationist kingdom. On his way, Naofumi stops over in Siltvelt, a kingdom built by a former shield hero, where he is revered as a god and is offered a chance to rule the country. + + Naofumi is unwilling to accept the position, preferring to continue his journey before the next wave of monsters threatens to destroy the world. Nevertheless, he finds himself embroiled in local political feuds. After he escapes from an assassination attempt, Naofumi decides to confront the leaders of Siltvelt, and this time, he is determined to show that old grudges and petty ambitions are nothing compared to his resolve to save the world. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Wednesdays + time: '21:00' + timezone: Asia/Tokyo + string: Wednesdays at 21:00 (JST) + producers: + - mal_id: 61 + type: anime + name: Frontier Works + url: https://myanimelist.net/anime/producer/61/Frontier_Works + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 323 + type: anime + name: Nippon Columbia + url: https://myanimelist.net/anime/producer/323/Nippon_Columbia + - mal_id: 689 + type: anime + name: NTT Docomo + url: https://myanimelist.net/anime/producer/689/NTT_Docomo + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1345 + type: anime + name: Sammy + url: https://myanimelist.net/anime/producer/1345/Sammy + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + licensors: [] + studios: + - mal_id: 290 + type: anime + name: Kinema Citrus + url: https://myanimelist.net/anime/producer/290/Kinema_Citrus + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 58811 + url: https://myanimelist.net/anime/58811/Tougen_Anki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1474/150666.jpg + small_image_url: https://myanimelist.net/images/anime/1474/150666t.jpg + large_image_url: https://myanimelist.net/images/anime/1474/150666l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1474/150666.webp + small_image_url: https://myanimelist.net/images/anime/1474/150666t.webp + large_image_url: https://myanimelist.net/images/anime/1474/150666l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/fndHzp7EaUw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tougen Anki + - type: Japanese + title: 桃源暗鬼 + - type: English + title: Tougen Anki + title: Tougen Anki + title_english: Tougen Anki + title_japanese: 桃源暗鬼 + title_synonyms: [] + type: TV + source: Manga + episodes: 24 + status: Finished Airing + airing: false + aired: + from: '2025-07-11T00:00:00+00:00' + to: '2025-12-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2025 + to: + day: 26 + month: 12 + year: 2025 + string: Jul 11, 2025 to Dec 26, 2025 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 6.87 + scored_by: 47777 + rank: 5891 + popularity: 1748 + members: 152947 + favorites: 691 + synopsis: |- + Long ago, demon-like creatures known as Oni butchered humans and brought on destruction solely for their own delight. A lone man named Momotarou opposed these gruesome, near-invincible monsters, but the war against them was just beginning. + + Thousands of years in the future, temperamental gun enthusiast Shiki Ichinose leads a carefree life. However, after his expulsion from school, everything changes. Shiki is suddenly attacked by a man and is rescued by his adoptive father, Tsuyoshi. As the two flee, Tsuyoshi reveals that Shiki is actually a descendant of the Oni, while both he and their pursuer are from the Momotarou lineage. + + The two Momotarou soon clash in a fierce battle, and Tsuyoshi sacrifices himself to protect Shiki. Devastated, Shiki awakens to his Oni blood that grants him immense strength at the cost of going berserk. Although the enemy escapes, Naito Mudano, an Oni teacher at Rasetsu Academy, takes an interest in Shiki. Under Mudano's guidance, Shiki must learn to control the Oni blood—if he ever hopes to avenge his father. + + [Written by MAL Rewrite] + background: Tougen Anki aired on Nippon TV's Friday Anime Night block. + season: summer + year: 2025 + broadcast: + day: Fridays + time: '23:00' + timezone: Asia/Tokyo + string: Fridays at 23:00 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: [] + studios: + - mal_id: 101 + type: anime + name: Studio Hibari + url: https://myanimelist.net/anime/producer/101/Studio_Hibari + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59095 + url: https://myanimelist.net/anime/59095/Tensei_shitara_Dainana_Ouji_Datta_node_Kimama_ni_Majutsu_wo_Kiwamemasu_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1154/149614.jpg + small_image_url: https://myanimelist.net/images/anime/1154/149614t.jpg + large_image_url: https://myanimelist.net/images/anime/1154/149614l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1154/149614.webp + small_image_url: https://myanimelist.net/images/anime/1154/149614t.webp + large_image_url: https://myanimelist.net/images/anime/1154/149614l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/_wN2sC9Pq1c?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season + - type: Synonym + title: Dainanaoji + - type: Synonym + title: I Was Reincarnated as the 7th Prince + - type: Synonym + title: so I Will Perfect My Magic as I Please 2nd Season + - type: Japanese + title: 転生したら第七王子だったので、気ままに魔術を極めます 第2期 + - type: English + title: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2 + title: Tensei shitara Dainana Ouji Datta node, Kimama ni Majutsu wo Kiwamemasu 2nd Season + title_english: I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability Season 2 + title_japanese: 転生したら第七王子だったので、気ままに魔術を極めます 第2期 + title_synonyms: + - Dainanaoji + - I Was Reincarnated as the 7th Prince + - so I Will Perfect My Magic as I Please 2nd Season + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-10T00:00:00+00:00' + to: '2025-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2025 + to: + day: 25 + month: 9 + year: 2025 + string: Jul 10, 2025 to Sep 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.61 + scored_by: 68650 + rank: 1791 + popularity: 1865 + members: 141055 + favorites: 417 + synopsis: |- + Prince Lloyd de Saloum—once a commoner who could never grasp magic—is now blessed with inexhaustible mana and has all the time in the world to master it, as he has no claim to the throne. After mastering demonic magic, he sets his sights on the Church to learn the secrets of divine magic that will bring him one step closer to completing his arsenal. However, due to his fondness for unholy magic, he draws the scrutiny of divine beings who see him as little more than a demonic spawn. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Thursdays + time: 00:00 + timezone: Asia/Tokyo + string: Thursdays at 00:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1255 + type: anime + name: Glovision + url: https://myanimelist.net/anime/producer/1255/Glovision + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: [] + studios: + - mal_id: 2212 + type: anime + name: Tsumugi Akita Animation Lab + url: https://myanimelist.net/anime/producer/2212/Tsumugi_Akita_Animation_Lab + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 59130 + url: https://myanimelist.net/anime/59130/Isekai_Mokushiroku_Mynoghra__Hametsu_no_Bunmei_de_Hajimeru_Sekai_Seifuku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1782/150383.jpg + small_image_url: https://myanimelist.net/images/anime/1782/150383t.jpg + large_image_url: https://myanimelist.net/images/anime/1782/150383l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1782/150383.webp + small_image_url: https://myanimelist.net/images/anime/1782/150383t.webp + large_image_url: https://myanimelist.net/images/anime/1782/150383l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/opdYBjcm8oo?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku' + - type: Japanese + title: 異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~ + - type: English + title: 'Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin' + title: 'Isekai Mokushiroku Mynoghra: Hametsu no Bunmei de Hajimeru Sekai Seifuku' + title_english: 'Apocalypse Bringer Mynoghra: World Conquest Starts with the Civilization of Ruin' + title_japanese: 異世界黙示録マイノグーラ ~破滅の文明で始める世界征服~ + title_synonyms: [] + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 28 + month: 9 + year: 2025 + string: Jul 6, 2025 to Sep 28, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.62 + scored_by: 59434 + rank: 7416 + popularity: 2053 + members: 124940 + favorites: 377 + synopsis: |- + Takuto Ira spent his short life confined to a hospital bed, with the civilization-building game Eternal Nations as his only form of entertainment. His favorite faction within the game—Mynoghra—was infamously complex to navigate and skewed toward evil; moreover, he insisted on playing at the highest difficulty. + + After his untimely death, Takuto awakens in a world uncannily reminiscent of Eternal Nations. He is reincarnated as the King of Ruin, sovereign of Mynoghra itself. At his side stands Odei no Atou, the default hero unit of his chosen nation. Remembering every battle they fought together, she pledges unwavering loyalty to Takuto once more. + + As Takuto begins to build Mynoghra from scratch in this new world, his early-game strategy remains unchanged: lie low, avoid war, and ensure survival at all costs—ironic for an evil ruler meant to conquer the world. When he offers refuge to persecuted Dark Elves fleeing destruction, a fledgling empire born of a darkness the world has yet to understand begins to take shape. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Sundays + time: '22:30' + timezone: Asia/Tokyo + string: Sundays at 22:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 1978 + type: anime + name: Maho Film + url: https://myanimelist.net/anime/producer/1978/Maho_Film + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + - mal_id: 72 + type: anime + name: Reincarnation + url: https://myanimelist.net/anime/genre/72/Reincarnation + demographics: [] + - mal_id: 59207 + url: https://myanimelist.net/anime/59207/Mikadono_Sanshimai_wa_Angai_Choroi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1949/150965.jpg + small_image_url: https://myanimelist.net/images/anime/1949/150965t.jpg + large_image_url: https://myanimelist.net/images/anime/1949/150965l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1949/150965.webp + small_image_url: https://myanimelist.net/images/anime/1949/150965t.webp + large_image_url: https://myanimelist.net/images/anime/1949/150965l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/m9eFOwi1JOM?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mikadono Sanshimai wa Angai, Choroi. + - type: Japanese + title: 帝乃三姉妹は案外、チョロい。 + - type: English + title: Dealing with Mikadono Sisters Is a Breeze + title: Mikadono Sanshimai wa Angai, Choroi. + title_english: Dealing with Mikadono Sisters Is a Breeze + title_japanese: 帝乃三姉妹は案外、チョロい。 + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-10T00:00:00+00:00' + to: '2025-09-25T00:00:00+00:00' + prop: + from: + day: 10 + month: 7 + year: 2025 + to: + day: 25 + month: 9 + year: 2025 + string: Jul 10, 2025 to Sep 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.64 + scored_by: 52109 + rank: 1664 + popularity: 2231 + members: 110634 + favorites: 474 + synopsis: |- + The Mikadono sisters—Miwa, Niko, and Kazuki—stand at the pinnacle of Saika Academy as its Three Royals, renowned respectively as prodigies in shogi, karate, and theater. Unfortunately, they have drifted apart from each other due to their overwhelming dedication to their fields, effectively turning them into strangers living under the same roof. + + Enter Yuu Ayase, the son of the late Subaru Ayase, a legendary actress who graduated from Saika. Unlike his mother, Yuu lacks any extraordinary talent whatsoever, much to the disappointment of those who knew her. Still, he transfers to her alma mater with one quiet promise in his heart: to fulfill her final wish that he build a true and happy family. + + It just so happens that the Mikadono patriarch is also Subaru's longtime friend and benefactor, and he offers Yuu both a place to stay and a fresh start. Thrust into the lives of three estranged sisters who act cold toward him, Yuu may not be a genius himself, but the clumsy sincerity he brings might be what they all need to start anew. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Thursdays + time: 00:30 + timezone: Asia/Tokyo + string: Thursdays at 00:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2680 + type: anime + name: Sankyo + url: https://myanimelist.net/anime/producer/2680/Sankyo_ + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 60326 + url: https://myanimelist.net/anime/60326/Watashi_ga_Koibito_ni_Nareru_Wake_Nai_jan_Muri_Muri_※Muri_ja_Nakatta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1887/150496.jpg + small_image_url: https://myanimelist.net/images/anime/1887/150496t.jpg + large_image_url: https://myanimelist.net/images/anime/1887/150496l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1887/150496.webp + small_image_url: https://myanimelist.net/images/anime/1887/150496t.webp + large_image_url: https://myanimelist.net/images/anime/1887/150496l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/nEj2X9x9M7Q?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?) + - type: Synonym + title: Watanare + - type: Japanese + title: わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?) + - type: English + title: There's No Freaking Way I'll be Your Lover! Unless... + title: Watashi ga Koibito ni Nareru Wake Nai jan, Muri Muri! (※Muri ja Nakatta!?) + title_english: There's No Freaking Way I'll be Your Lover! Unless... + title_japanese: わたしが恋人になれるわけないじゃん、ムリムリ! (※ムリじゃなかった!?) + title_synonyms: + - Watanare + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-08T00:00:00+00:00' + to: '2025-09-23T00:00:00+00:00' + prop: + from: + day: 8 + month: 7 + year: 2025 + to: + day: 23 + month: 9 + year: 2025 + string: Jul 8, 2025 to Sep 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.72 + scored_by: 39201 + rank: 1418 + popularity: 2324 + members: 104500 + favorites: 1055 + synopsis: |- + Seeing everyone else enjoying their youth, socially anxious Renako Amaori is dead set on becoming an extroverted girl. Despite her reclusive past, she changes her appearance, practices conversation, and enrolls in a high school free of anyone that would know her. While she is quickly able to befriend the famous model Mai Ouzuka, after Renako joins her friend group, she realizes pretending to be a completely different person is no easy feat. + + Soon, Renako and Mai have a heart-to-heart and share their troubles with each other. After the sincere discussion, Renako truly believes they could become best friends. The very next day, however, the unthinkable happens—Mai confesses her love to Renako! Although Renako is not interested in dating, Mai insists the two begin hanging out alternately as friends and a couple, while figuring out which type of relationship suits them better. + + Determined to create a blissful friendship, Renako tries her best to convince the stubborn Mai. However, Renako herself might have a change of heart as Mai's advances continue to get bolder. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Tuesdays + time: 01:00 + timezone: Asia/Tokyo + string: Tuesdays at 01:00 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 3103 + type: anime + name: REMOW + url: https://myanimelist.net/anime/producer/3103/REMOW + - mal_id: 3156 + type: anime + name: Shueisha DeNA Projects + url: https://myanimelist.net/anime/producer/3156/Shueisha_DeNA_Projects + licensors: [] + studios: + - mal_id: 2246 + type: anime + name: studio MOTHER + url: https://myanimelist.net/anime/producer/2246/studio_MOTHER + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59277 + url: https://myanimelist.net/anime/59277/Kanojo_Okarishimasu_4th_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1071/150808.jpg + small_image_url: https://myanimelist.net/images/anime/1071/150808t.jpg + large_image_url: https://myanimelist.net/images/anime/1071/150808l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1071/150808.webp + small_image_url: https://myanimelist.net/images/anime/1071/150808t.webp + large_image_url: https://myanimelist.net/images/anime/1071/150808l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/VC226h0ivYg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Kanojo, Okarishimasu 4th Season + - type: Synonym + title: Kanokari + - type: Japanese + title: 彼女、お借りします 第4期 + - type: English + title: Rent-a-Girlfriend Season 4 + title: Kanojo, Okarishimasu 4th Season + title_english: Rent-a-Girlfriend Season 4 + title_japanese: 彼女、お借りします 第4期 + title_synonyms: + - Kanokari + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-05T00:00:00+00:00' + to: '2025-09-20T00:00:00+00:00' + prop: + from: + day: 5 + month: 7 + year: 2025 + to: + day: 20 + month: 9 + year: 2025 + string: Jul 5, 2025 to Sep 20, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 6.16 + scored_by: 35263 + rank: 10138 + popularity: 2481 + members: 94614 + favorites: 405 + synopsis: |- + After the success of his crowdfunded movie featuring the woman of his dreams, Chizuru Ichinose, university student Kazuya Kinoshita resumes his life of lies and deception. Although he pretends that he has been in an ideal relationship with Chizuru for more than a year, Kazuya still mostly sees her through a rental girlfriend company's services. + + However, after Kazuya attends a private party with Chizuru, he reaches the decision to finally confess his feelings to her. Unfortunately for him, his trial girlfriend Ruka Sarashina and his ex-girlfriend Mami Nanami continue to complicate his already messy attempts at romance. While he is forced to keep up his facade, Kazuya is under pressure to find a solution to his ever chaotic love life. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Saturdays + time: 02:23 + timezone: Asia/Tokyo + string: Saturdays at 02:23 (JST) + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1542 + type: anime + name: DMM.com + url: https://myanimelist.net/anime/producer/1542/DMMcom + licensors: [] + studios: + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 59424 + url: https://myanimelist.net/anime/59424/Yuusha_Party_wo_Tsuihou_sareta_Shiromadoushi_S-Rank_Boukensha_ni_Hirowareru__Kono_Shiromadoushi_ga_Kikakugai_Sugiru + images: + jpg: + image_url: https://myanimelist.net/images/anime/1072/149889.jpg + small_image_url: https://myanimelist.net/images/anime/1072/149889t.jpg + large_image_url: https://myanimelist.net/images/anime/1072/149889l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1072/149889.webp + small_image_url: https://myanimelist.net/images/anime/1072/149889t.webp + large_image_url: https://myanimelist.net/images/anime/1072/149889l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/IhPn6uz_gKs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Yuusha Party wo Tsuihou sareta Shiromadoushi, S-Rank Boukensha ni Hirowareru: Kono Shiromadoushi ga Kikakugai + Sugiru' + - type: Synonym + title: 'The White Mage Who Was Banished From the Hero''s Party Is Picked Up By an S-Rank Adventurer: This White Mage + Is Too Out of the Ordinary!' + - type: Japanese + title: 勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~ + - type: English + title: Scooped Up by an S-Rank Adventurer! + title: 'Yuusha Party wo Tsuihou sareta Shiromadoushi, S-Rank Boukensha ni Hirowareru: Kono Shiromadoushi ga Kikakugai + Sugiru' + title_english: Scooped Up by an S-Rank Adventurer! + title_japanese: 勇者パーティーを追放された白魔導師、Sランク冒険者に拾われる ~この白魔導師が規格外すぎる~ + title_synonyms: + - 'The White Mage Who Was Banished From the Hero''s Party Is Picked Up By an S-Rank Adventurer: This White Mage Is Too + Out of the Ordinary!' + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-07-11T00:00:00+00:00' + to: '2025-09-26T00:00:00+00:00' + prop: + from: + day: 11 + month: 7 + year: 2025 + to: + day: 26 + month: 9 + year: 2025 + string: Jul 11, 2025 to Sep 26, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.13 + scored_by: 42438 + rank: 10347 + popularity: 2564 + members: 89688 + favorites: 143 + synopsis: |- + As a white mage, Lloyd is constantly looked down on by the hero party's arrogant leader, Allen, who eventually expels him on a whim. Despite being the former student of a legendary mage, Lloyd wanders the city helplessly for days, unable to find a new party in need of a supporting member. + + However, Lloyd's fate takes an unexpected turn when Yui, the leader of a S-rank group of adventurers, pleads with him to join her party on a mission dear to Yui's heart. Although Lloyd keeps downplaying his abilities, he eventually accepts Yui's aggressive offer. Warmly welcomed by his new allies, Lloyd may have just found the perfect place where his magical prowess will be rightfully valued. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Fridays + time: 01:00 + timezone: Asia/Tokyo + string: Fridays at 01:00 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1377 + type: anime + name: Futabasha + url: https://myanimelist.net/anime/producer/1377/Futabasha + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1581 + type: anime + name: RAY + url: https://myanimelist.net/anime/producer/1581/RAY + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 1440 + type: anime + name: Felix Film + url: https://myanimelist.net/anime/producer/1440/Felix_Film + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59791 + url: https://myanimelist.net/anime/59791/Ruri_no_Houseki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1431/148742.jpg + small_image_url: https://myanimelist.net/images/anime/1431/148742t.jpg + large_image_url: https://myanimelist.net/images/anime/1431/148742l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1431/148742.webp + small_image_url: https://myanimelist.net/images/anime/1431/148742t.webp + large_image_url: https://myanimelist.net/images/anime/1431/148742l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/kdh0ucpJEH8?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ruri no Houseki + - type: Synonym + title: Introduction to Mineralogy + - type: Japanese + title: 瑠璃の宝石 + - type: English + title: Ruri Rocks + title: Ruri no Houseki + title_english: Ruri Rocks + title_japanese: 瑠璃の宝石 + title_synonyms: + - Introduction to Mineralogy + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-07-06T00:00:00+00:00' + to: '2025-09-28T00:00:00+00:00' + prop: + from: + day: 6 + month: 7 + year: 2025 + to: + day: 28 + month: 9 + year: 2025 + string: Jul 6, 2025 to Sep 28, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.01 + scored_by: 30025 + rank: 739 + popularity: 2583 + members: 88770 + favorites: 454 + synopsis: |- + While shopping, high school student Ruri Tanigawa is captivated by a crystal necklace. Due to its high price, she can only dream of owning one—until her mother tells her about a mountainous area where Ruri's grandfather used to discover numerous minerals. As she makes her way to the location in the hope of finding materials to make her own accessories, Ruri meets Nagi Arato, a graduate student, who gladly shows her the way. + + Soon, Ruri is left smitten when they arrive at an enormous quartz formation. More motivated than ever, she convinces Nagi to teach her more about mineralogy. With each new discovery and Nagi's lessons deepening her love, Ruri learns that there is more to minerals than just their price. + + [Written by MAL Rewrite] + background: '' + season: summer + year: 2025 + broadcast: + day: Sundays + time: '21:30' + timezone: Asia/Tokyo + string: Sundays at 21:30 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1444 + type: anime + name: Egg Firm + url: https://myanimelist.net/anime/producer/1444/Egg_Firm + - mal_id: 1590 + type: anime + name: FuRyu + url: https://myanimelist.net/anime/producer/1590/FuRyu + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + licensors: [] + studios: + - mal_id: 1993 + type: anime + name: Studio Bind + url: https://myanimelist.net/anime/producer/1993/Studio_Bind + genres: + - mal_id: 36 + type: anime + name: Slice of Life + url: https://myanimelist.net/anime/genre/36/Slice_of_Life + explicit_genres: [] + themes: + - mal_id: 52 + type: anime + name: CGDCT + url: https://myanimelist.net/anime/genre/52/CGDCT + - mal_id: 56 + type: anime + name: Educational + url: https://myanimelist.net/anime/genre/56/Educational + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/fixtures/jikan/season_matrix/64-2025-fall.yaml b/test/fixtures/jikan/season_matrix/64-2025-fall.yaml new file mode 100644 index 0000000..fdf39c7 --- /dev/null +++ b/test/fixtures/jikan/season_matrix/64-2025-fall.yaml @@ -0,0 +1,3507 @@ +metadata: + captured_at: '2026-05-11T11:35:20Z' + label: 2025-fall + backend: jikan + path_slug: season_matrix +request: + method: GET + url: https://api.jikan.moe/v4/seasons/2025/fall?limit=25 + headers: + User-Agent: animedex/0.0.1 + params: null + json_body: null + raw_body_b64: null +response: + status: 200 + headers: + Server: nginx/1.24.0 + Date: Mon, 11 May 2026 11:35:20 GMT + Content-Type: application/json + Transfer-Encoding: chunked + Connection: keep-alive + Cache-Control: public, s-maxage=86400 + x-request-fingerprint: request:seasons:6ab535e2b4c94cfee1dd3cf2f6df78ab045db873 + expires: Fri, 02 Jan 1970 00:00:00 GMT + last-modified: Thu, 01 Jan 1970 00:00:00 GMT + access-control-allow-origin: '*' + Content-Encoding: gzip + Vary: Accept-Encoding + X-Cache-Status: MISS + X-Powered-By: the-power-of-friendship + body_json: + pagination: + last_visible_page: 12 + has_next_page: true + current_page: 1 + items: + count: 25 + total: 282 + per_page: 25 + data: + - mal_id: 52807 + url: https://myanimelist.net/anime/52807/One_Punch_Man_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1168/148347.jpg + small_image_url: https://myanimelist.net/images/anime/1168/148347t.jpg + large_image_url: https://myanimelist.net/images/anime/1168/148347l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1168/148347.webp + small_image_url: https://myanimelist.net/images/anime/1168/148347t.webp + large_image_url: https://myanimelist.net/images/anime/1168/148347l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/2GU7Ye78h6E?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: One Punch Man 3 + - type: Synonym + title: One Punch Man 3rd Season + - type: Synonym + title: OPM 3 + - type: Japanese + title: ワンパンマン 3 + - type: English + title: One-Punch Man Season 3 + title: One Punch Man 3 + title_english: One-Punch Man Season 3 + title_japanese: ワンパンマン 3 + title_synonyms: + - One Punch Man 3rd Season + - OPM 3 + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-12T00:00:00+00:00' + to: '2025-12-28T00:00:00+00:00' + prop: + from: + day: 12 + month: 10 + year: 2025 + to: + day: 28 + month: 12 + year: 2025 + string: Oct 12, 2025 to Dec 28, 2025 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 4.76 + scored_by: 114367 + rank: 14594 + popularity: 611 + members: 439006 + favorites: 7443 + synopsis: |- + Earth is saved by heroes for now, but the large-scale battle between the Hero Association and the Monster Association is far from over. The dangerous hero hunter Garou is still on the loose despite the efforts to capture him, and the Monster Association has abducted a notable figure, leaving the Hero Association in turmoil. With a strict deadline for the rescue, the heroes set out in search of the monsters' hideout. + + Though he is heavily injured, Garou is recruited by the Monster Association in the hope of making him a part of the leadership. In order to ascend the ranks, the hero hunter must first prove that he is ready to give up on his humanity by killing a hero. It does not take long for Garou to find his victim, but that very person is the oblivious Saitama, who effortlessly knocks him out. + + This humiliating defeat causes Garou to be branded as a traitor by the monsters. Moreover, the next clash between the two associations approaches rapidly. As both sides are ready to engage in any tactics and use any pawns at their disposal, the safety of the world is at their mercy. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Sundays + time: '23:45' + timezone: Asia/Tokyo + string: Sundays at 23:45 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + - mal_id: 1992 + type: anime + name: Bandai Spirits + url: https://myanimelist.net/anime/producer/1992/Bandai_Spirits + - mal_id: 2232 + type: anime + name: ADK Marketing Solutions + url: https://myanimelist.net/anime/producer/2232/ADK_Marketing_Solutions + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + licensors: + - mal_id: 119 + type: anime + name: VIZ Media + url: https://myanimelist.net/anime/producer/119/VIZ_Media + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 20 + type: anime + name: Parody + url: https://myanimelist.net/anime/genre/20/Parody + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 59027 + url: https://myanimelist.net/anime/59027/Spy_x_Family_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1697/151793.jpg + small_image_url: https://myanimelist.net/images/anime/1697/151793t.jpg + large_image_url: https://myanimelist.net/images/anime/1697/151793l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1697/151793.webp + small_image_url: https://myanimelist.net/images/anime/1697/151793t.webp + large_image_url: https://myanimelist.net/images/anime/1697/151793l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9-JreaprnO0?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Spy x Family Season 3 + - type: Japanese + title: SPY×FAMILY Season 3 + - type: English + title: Spy x Family Season 3 + title: Spy x Family Season 3 + title_english: Spy x Family Season 3 + title_japanese: SPY×FAMILY Season 3 + title_synonyms: [] + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 27 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 27, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.21 + scored_by: 130618 + rank: 439 + popularity: 805 + members: 345346 + favorites: 1869 + synopsis: |- + Despite occasional setbacks, Operation Strix has remained on track to extract sensitive information from the enigmatic politician Donovan Desmond. To this end, spy Loid Forger has managed to maintain his pretend family consisting of his telepathic daughter, Anya; assassin wife, Yor; and their clairvoyant dog, Bond. Still the only one aware of everyone's true identities, Anya tries to sustain the family's cohesion while working to befriend Donovan's son Damian, her Eden Academy classmate. + + However, Anya's efforts instead earn her another Tonitrus Bolt, bringing her closer to getting expelled and jeopardizing the operation's success. Hearing the news, Loid faints from shock. In his unconsciousness, he reminisces about his tragic past and his journey to becoming a spy. Realizing what Operation Strix means to him and the world, Loid finds renewed motivation. Although they each work toward their own covert goals, the Forgers continue to cherish their chaotic yet blissful family life. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Saturdays + time: '23:00' + timezone: Asia/Tokyo + string: Saturdays at 23:00 (JST) + producers: + - mal_id: 16 + type: anime + name: TV Tokyo + url: https://myanimelist.net/anime/producer/16/TV_Tokyo + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + - mal_id: 3210 + type: anime + name: Verygoo + url: https://myanimelist.net/anime/producer/3210/Verygoo + licensors: [] + studios: + - mal_id: 858 + type: anime + name: Wit Studio + url: https://myanimelist.net/anime/producer/858/Wit_Studio + - mal_id: 1835 + type: anime + name: CloverWorks + url: https://myanimelist.net/anime/producer/1835/CloverWorks + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + explicit_genres: [] + themes: + - mal_id: 53 + type: anime + name: Childcare + url: https://myanimelist.net/anime/genre/53/Childcare + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 60098 + url: https://myanimelist.net/anime/60098/Boku_no_Hero_Academia__Final_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1959/151055.jpg + small_image_url: https://myanimelist.net/images/anime/1959/151055t.jpg + large_image_url: https://myanimelist.net/images/anime/1959/151055l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1959/151055.webp + small_image_url: https://myanimelist.net/images/anime/1959/151055t.webp + large_image_url: https://myanimelist.net/images/anime/1959/151055l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wQgQij8Ry4g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Boku no Hero Academia: Final Season' + - type: Synonym + title: My Hero Academia 8 + - type: Japanese + title: 僕のヒーローアカデミア FINAL SEASON + - type: English + title: My Hero Academia Final Season + title: 'Boku no Hero Academia: Final Season' + title_english: My Hero Academia Final Season + title_japanese: 僕のヒーローアカデミア FINAL SEASON + title_synonyms: + - My Hero Academia 8 + type: TV + source: Manga + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-13T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 13 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 13, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.71 + scored_by: 158864 + rank: 63 + popularity: 916 + members: 308176 + favorites: 2973 + synopsis: |- + The final stages of an all-out war between heroes and villains unfold as the world watches its symbols of peace and destruction collide. When All Might is critically injured, global fear takes hold as the fate of society hangs in the balance, and the threat of All For One and Tomura Shigaraki makes it clear that the conflict is far from over. + + As hope begins to fade, Izuku "Deku" Midoriya stands at the forefront, refusing to let the war end in despair. Pushed beyond his limits and supported by Katsuki Bakugou and other heroes fighting beside him, Deku becomes the central force opposing collapse. The conflict becomes a defining turning point for society—one where the future will be entrusted to the victorious side. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Saturdays + time: '17:30' + timezone: Asia/Tokyo + string: Saturdays at 17:30 (JST) + producers: + - mal_id: 4 + type: anime + name: Bones + url: https://myanimelist.net/anime/producer/4/Bones + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 76 + type: anime + name: Yomiuri Telecasting + url: https://myanimelist.net/anime/producer/76/Yomiuri_Telecasting + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 757 + type: anime + name: Sony Music Entertainment + url: https://myanimelist.net/anime/producer/757/Sony_Music_Entertainment + - mal_id: 1143 + type: anime + name: TOHO animation + url: https://myanimelist.net/anime/producer/1143/TOHO_animation + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1499 + type: anime + name: Techno Sound + url: https://myanimelist.net/anime/producer/1499/Techno_Sound + - mal_id: 2229 + type: anime + name: Toho Music + url: https://myanimelist.net/anime/producer/2229/Toho_Music + licensors: [] + studios: + - mal_id: 3045 + type: anime + name: Bones Film + url: https://myanimelist.net/anime/producer/3045/Bones_Film + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + - mal_id: 31 + type: anime + name: Super Power + url: https://myanimelist.net/anime/genre/31/Super_Power + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 61026 + url: https://myanimelist.net/anime/61026/Ansatsusha_de_Aru_Ore_no_Status_ga_Yuusha_yori_mo_Akiraka_ni_Tsuyoi_no_da_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1276/151118.jpg + small_image_url: https://myanimelist.net/images/anime/1276/151118t.jpg + large_image_url: https://myanimelist.net/images/anime/1276/151118l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1276/151118.webp + small_image_url: https://myanimelist.net/images/anime/1276/151118t.webp + large_image_url: https://myanimelist.net/images/anime/1276/151118l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/y6JhkExwfrs?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga + - type: Synonym + title: Sutetsuyo + - type: Japanese + title: 暗殺者である俺のステータスが勇者よりも明らかに強いのだが + - type: English + title: My Status as an Assassin Obviously Exceeds the Hero's + title: Ansatsusha de Aru Ore no Status ga Yuusha yori mo Akiraka ni Tsuyoi no da ga + title_english: My Status as an Assassin Obviously Exceeds the Hero's + title_japanese: 暗殺者である俺のステータスが勇者よりも明らかに強いのだが + title_synonyms: + - Sutetsuyo + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-07T00:00:00+00:00' + to: '2025-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2025 + to: + day: 23 + month: 12 + year: 2025 + string: Oct 7, 2025 to Dec 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.56 + scored_by: 83916 + rank: 7762 + popularity: 1598 + members: 172583 + favorites: 491 + synopsis: |- + Oda Akira is the kind of guy who people forget is even there. His unassuming nature pays off, though, when his entire class is swept away to a fantasy world, and he slips easily into his new role as a silent assassin. Between his suspiciously high starting stats and too many details that don't fit, Akira is sure something is wrong. But digging into royal secrets is a dangerous game, and when Akira uncovers an evil scheme, he also makes a powerful enemy—the very king who brought him to this world! With the help of the elven spirit medium Amelia, can he find the power to set things right, and get his revenge? + + (Source: Seven Seas Entertainment) + background: '' + season: fall + year: 2025 + broadcast: + day: Tuesdays + time: 01:30 + timezone: Asia/Tokyo + string: Tuesdays at 01:30 (JST) + producers: + - mal_id: 15 + type: anime + name: Sony Pictures Entertainment + url: https://myanimelist.net/anime/producer/15/Sony_Pictures_Entertainment + - mal_id: 73 + type: anime + name: TMS Entertainment + url: https://myanimelist.net/anime/producer/73/TMS_Entertainment + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 140 + type: anime + name: Animax + url: https://myanimelist.net/anime/producer/140/Animax + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 1011 + type: anime + name: Warner Music Japan + url: https://myanimelist.net/anime/producer/1011/Warner_Music_Japan + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1443 + type: anime + name: Overlap + url: https://myanimelist.net/anime/producer/1443/Overlap + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1494 + type: anime + name: Kanon Sound + url: https://myanimelist.net/anime/producer/1494/Kanon_Sound + - mal_id: 2236 + type: anime + name: CTW + url: https://myanimelist.net/anime/producer/2236/CTW + licensors: [] + studios: + - mal_id: 14 + type: anime + name: Sunrise + url: https://myanimelist.net/anime/producer/14/Sunrise + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59846 + url: https://myanimelist.net/anime/59846/Saigo_ni_Hitotsu_dake_Onegai_shitemo_Yoroshii_deshou_ka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1190/151754.jpg + small_image_url: https://myanimelist.net/images/anime/1190/151754t.jpg + large_image_url: https://myanimelist.net/images/anime/1190/151754l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1190/151754.webp + small_image_url: https://myanimelist.net/images/anime/1190/151754t.webp + large_image_url: https://myanimelist.net/images/anime/1190/151754l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/E-txbaNATrU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka + - type: Synonym + title: Saihito + - type: Japanese + title: 最後にひとつだけお願いしてもよろしいでしょうか + - type: English + title: May I Ask for One Final Thing? + title: Saigo ni Hitotsu dake Onegai shitemo Yoroshii deshou ka + title_english: May I Ask for One Final Thing? + title_japanese: 最後にひとつだけお願いしてもよろしいでしょうか + title_synonyms: + - Saihito + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-27T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 27 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 27, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.36 + scored_by: 69655 + rank: 2954 + popularity: 1631 + members: 167931 + favorites: 767 + synopsis: |- + Ever since childhood, Scarlet El Vandimion has preferred to deal with wrongdoers by using her fists. However, to preserve her family's image, she suppresses her instincts and tolerates the abuse inflicted by her childish fiancé, Second Prince Kyle Von Pallistan. Only Kyle's brother, First Prince Julius, is aware that there is more to Scarlet than meets the eye, but she cares little about his growing interest. + + In the middle of a ball, Kyle accuses Scarlet of harassing Terenezza Hopkins, a commoner that has taken his heart. Scarlet's engagement to Kyle is nullified, leaving her outraged that all of her efforts to endure thus far have amounted to nothing. Scarlet dons her studded leather gloves, once again becoming the "Mad Dog Princess." Joined by Julius and werebeast Nanaka, Scarlet is ready to give filthy nobles a taste of their own medicine—one punch at a time. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Saturdays + time: 00:00 + timezone: Asia/Tokyo + string: Saturdays at 00:00 (JST) + producers: + - mal_id: 17 + type: anime + name: Aniplex + url: https://myanimelist.net/anime/producer/17/Aniplex + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: [] + studios: + - mal_id: 839 + type: anime + name: LIDENFILMS + url: https://myanimelist.net/anime/producer/839/LIDENFILMS + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 83 + type: anime + name: Villainess + url: https://myanimelist.net/anime/genre/83/Villainess + demographics: [] + - mal_id: 54703 + url: https://myanimelist.net/anime/54703/Fumetsu_no_Anata_e_Season_3 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1140/152364.jpg + small_image_url: https://myanimelist.net/images/anime/1140/152364t.jpg + large_image_url: https://myanimelist.net/images/anime/1140/152364l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1140/152364.webp + small_image_url: https://myanimelist.net/images/anime/1140/152364t.webp + large_image_url: https://myanimelist.net/images/anime/1140/152364l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/t9Tte_80-mE?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fumetsu no Anata e Season 3 + - type: Japanese + title: 不滅のあなたへ Season3 + - type: English + title: To Your Eternity Season 3 + title: Fumetsu no Anata e Season 3 + title_english: To Your Eternity Season 3 + title_japanese: 不滅のあなたへ Season3 + title_synonyms: [] + type: TV + source: Manga + episodes: 22 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2026-03-28T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 28 + month: 3 + year: 2026 + string: Oct 4, 2025 to Mar 28, 2026 + duration: 25 min per ep + rating: R - 17+ (violence & profanity) + score: 7.45 + scored_by: 34583 + rank: 2473 + popularity: 1744 + members: 153627 + favorites: 582 + synopsis: |- + Hundreds of years after the large-scale battle against the Nokkers in the city of Renril, the world is unrecognizable. Thanks to the immortal Fushi's efforts in dormancy, he has successfully created a world with modern infrastructure where he and every living species can live in peace. When he finally awakens from his slumber, Fushi is elated to try everything this new world has to offer and revive his friends from the past. + + While exploring, Fushi runs into Yuuki Aoki, a lively middle school student, who is quick to welcome him and his friends into the house. As the group settles into their new home and learns more about the modern world, Fushi meets Mizuha, Yuuki's friend, who resembles someone familiar to him. + + It turns out that Mizuha is the descendant of the Guardians: the people whose only goal is to keep Fushi safe. Like her ancestors, she grows fond of Fushi, which brightens up her life. However, as bizarre events occur when Mizuha approaches Fushi, it becomes clear that this new world is far from perfect. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Saturdays + time: '23:45' + timezone: Asia/Tokyo + string: Saturdays at 23:45 (JST) + producers: + - mal_id: 213 + type: anime + name: Half H.P Studio + url: https://myanimelist.net/anime/producer/213/Half_HP_Studio + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1797 + type: anime + name: NHK Enterprises + url: https://myanimelist.net/anime/producer/1797/NHK_Enterprises + licensors: [] + studios: + - mal_id: 1967 + type: anime + name: Drive + url: https://myanimelist.net/anime/producer/1967/Drive + - mal_id: 2411 + type: anime + name: Studio Massket + url: https://myanimelist.net/anime/producer/2411/Studio_Massket + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: [] + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 57025 + url: https://myanimelist.net/anime/57025/Tondemo_Skill_de_Isekai_Hourou_Meshi_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1206/151772.jpg + small_image_url: https://myanimelist.net/images/anime/1206/151772t.jpg + large_image_url: https://myanimelist.net/images/anime/1206/151772l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1206/151772.webp + small_image_url: https://myanimelist.net/images/anime/1206/151772t.webp + large_image_url: https://myanimelist.net/images/anime/1206/151772l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/mJ1M8RyVFp4?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tondemo Skill de Isekai Hourou Meshi 2 + - type: Synonym + title: Regarding the Display of an Outrageous Skill Which Has Incredible Powers + - type: Synonym + title: Tonsuki + - type: Japanese + title: とんでもスキルで異世界放浪メシ2 + - type: English + title: Campfire Cooking in Another World with My Absurd Skill Season 2 + title: Tondemo Skill de Isekai Hourou Meshi 2 + title_english: Campfire Cooking in Another World with My Absurd Skill Season 2 + title_japanese: とんでもスキルで異世界放浪メシ2 + title_synonyms: + - Regarding the Display of an Outrageous Skill Which Has Incredible Powers + - Tonsuki + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-08T00:00:00+00:00' + to: '2025-12-24T00:00:00+00:00' + prop: + from: + day: 8 + month: 10 + year: 2025 + to: + day: 24 + month: 12 + year: 2025 + string: Oct 8, 2025 to Dec 24, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.68 + scored_by: 61507 + rank: 1535 + popularity: 1910 + members: 137528 + favorites: 548 + synopsis: |- + After being summoned to another world, ordinary salaryman Tsuyoshi Mukouda has made a name for himself with his fabulous cooking. During his journey throughout different lands, he has even befriended the mythical wolf Fel and a slime named Sui. While enjoying a meal one day, the trio is interrupted by a tiny but rare pixie dragon who also wants a bite of their food. Like Fel and Sui, the dragon immediately falls in love with Mukouda's cooking and decides to become the man's familiar, receiving the name Dora-chan. + + However, cooking is not Mukouda's only forte. His familiars' incredible strength constantly attracts the attention of guilds who ask for their help on different quests. In exchange, the guilds are able to process the game Mukouda and his familiars hunt, enabling their growing party to sample various kinds of monster meat. Continuing to travel around the world with his familiars, Mukouda always comes up with new mouth-watering recipes that will leave everyone hoping for a second serving. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Wednesdays + time: 00:00 + timezone: Asia/Tokyo + string: Wednesdays at 00:00 (JST) + producers: + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 60303 + url: https://myanimelist.net/anime/60303/Shinjiteita_Nakama-tachi_ni_Dungeon_Okuchi_de_Korosarekaketa_ga_Gift_Mugen_Gacha_de_Level_9999_no_Nakama-tachi_wo_Te_ni_Irete_Moto_Party_Member_to_Sekai_ni_Fukushuu___Zamaa_Shimasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1163/151246.jpg + small_image_url: https://myanimelist.net/images/anime/1163/151246t.jpg + large_image_url: https://myanimelist.net/images/anime/1163/151246l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1163/151246.webp + small_image_url: https://myanimelist.net/images/anime/1163/151246t.webp + large_image_url: https://myanimelist.net/images/anime/1163/151246l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/vAyP2z4FqQY?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Shinjiteita Nakama-tachi ni Dungeon Okuchi de Korosarekaketa ga Gift "Mugen Gacha" de Level 9999 no Nakama-tachi + wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & "Zamaa!" Shimasu! + - type: Synonym + title: 'Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me' + - type: Synonym + title: But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends and Am Out For Revenge on My Former Party + Members and the World + - type: Japanese + title: 信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します! + - type: English + title: 'My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I''m Out for Revenge!' + title: Shinjiteita Nakama-tachi ni Dungeon Okuchi de Korosarekaketa ga Gift "Mugen Gacha" de Level 9999 no Nakama-tachi + wo Te ni Irete Moto Party Member to Sekai ni Fukushuu & "Zamaa!" Shimasu! + title_english: 'My Gift Lvl 9999 Unlimited Gacha: Backstabbed in a Backwater Dungeon, I''m Out for Revenge!' + title_japanese: 信じていた仲間達にダンジョン奥地で殺されかけたがギフト『無限ガチャ』でレベル9999の仲間達を手に入れて元パーティーメンバーと世界に復讐&『ざまぁ!』します! + title_synonyms: + - 'Backstabbed in a Backwater Dungeon: My Trusted Companions Tried to Kill Me' + - But Thanks to the Gift of an Unlimited Gacha I Got LVL 9999 Friends and Am Out For Revenge on My Former Party Members + and the World + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-03T00:00:00+00:00' + to: '2025-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2025 + to: + day: 19 + month: 12 + year: 2025 + string: Oct 3, 2025 to Dec 19, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 7.08 + scored_by: 65767 + rank: 4727 + popularity: 2034 + members: 126189 + favorites: 448 + synopsis: |- + In a world where nine different races coexist, humans ended up at the bottom of the hierarchy. Despite facing discrimination daily, a young human named Light leaves his family in hopes of becoming a great adventurer. While registering as one, however, Light ends up becoming a mere F-Rank adventurer due to his unimpressive skill, Unlimited Gacha, which allows him to materialize a randomly rolled card into existence. + + Light is soon recruited to become the human representative of the Concord of the Tribes, a party that intends to represent all of the nine races. As the party ventures out to the Abyss, the world's toughest dungeon, his party suddenly decides to abandon him in its depths. Just as his death seems certain, Light rolls a Level 9999 card that summons a beautiful and strong maid named Mei. + + Swearing her loyalty to Light, Mei sets out to eliminate his betrayers. Now nearly invincible with Mei, alongside other incredible summons, Light sets out to get his revenge. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Fridays + time: '23:30' + timezone: Asia/Tokyo + string: Fridays at 23:30 (JST) + producers: + - mal_id: 104 + type: anime + name: Lantis + url: https://myanimelist.net/anime/producer/104/Lantis + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 306 + type: anime + name: Magic Capsule + url: https://myanimelist.net/anime/producer/306/Magic_Capsule + - mal_id: 547 + type: anime + name: Hobby Japan + url: https://myanimelist.net/anime/producer/547/Hobby_Japan + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 2424 + type: anime + name: Bandai Namco Filmworks + url: https://myanimelist.net/anime/producer/2424/Bandai_Namco_Filmworks + - mal_id: 2425 + type: anime + name: Bandai Namco Music Live + url: https://myanimelist.net/anime/producer/2425/Bandai_Namco_Music_Live + - mal_id: 2741 + type: anime + name: Daito Giken + url: https://myanimelist.net/anime/producer/2741/Daito_Giken + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 7 + type: anime + name: J.C.Staff + url: https://myanimelist.net/anime/producer/7/JCStaff + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 47158 + url: https://myanimelist.net/anime/47158/Tomodachi_no_Imouto_ga_Ore_ni_dake_Uzai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1699/151694.jpg + small_image_url: https://myanimelist.net/images/anime/1699/151694t.jpg + large_image_url: https://myanimelist.net/images/anime/1699/151694l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1699/151694.webp + small_image_url: https://myanimelist.net/images/anime/1699/151694t.webp + large_image_url: https://myanimelist.net/images/anime/1699/151694l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/s8ihe-Mb1Po?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Tomodachi no Imouto ga Ore ni dake Uzai + - type: Synonym + title: My friend's sister annoying only me. + - type: Synonym + title: Imouza + - type: Japanese + title: 友達の妹が俺にだけウザい + - type: English + title: My Friend's Little Sister Has It In for Me! + title: Tomodachi no Imouto ga Ore ni dake Uzai + title_english: My Friend's Little Sister Has It In for Me! + title_japanese: 友達の妹が俺にだけウザい + title_synonyms: + - My friend's sister annoying only me. + - Imouza + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-05T00:00:00+00:00' + to: '2025-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2025 + to: + day: 21 + month: 12 + year: 2025 + string: Oct 5, 2025 to Dec 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.5 + scored_by: 31467 + rank: 8187 + popularity: 2204 + members: 112616 + favorites: 459 + synopsis: |- + Akiteru Ooboshi lives by one principle—efficiency above all. As the producer of the 05th Floor Alliance, a small game development circle composed of his fellow apartment tenants, he oversees the release of their latest title, The Night the Black Goat Screamed, which unexpectedly surpasses a million downloads. Thus, to secure the circle's future and steer their next projects toward even greater success, Akiteru turns to Honeyplace Works, a major company run by his uncle, Makoto Tsukinomori. + + However, his uncle presents an unusual condition before accepting their partnership: Akiteru must pose as the boyfriend of his cousin, Mashiro. Seeing no reason to refuse—after all, it is the most efficient solution—Akiteru agrees for the sake of his team. + + Unfortunately, adding to his troubles is Iroha Kohinata, the younger sister of his fellow developer and best friend, Ozuma. A relentless tease, Iroha takes special pleasure in breaking Akiteru's composure. Yet as the lines between work, school, and personal life begin to blur, Akiteru finds himself entangled between two girls who might just as well decide his entire future. + + [Written by MAL Rewrite] + background: Tomodachi no Imouto ga Ore ni dake Uzai aired on TV Asahi's NUMAnimation block. The series was released + on Blu-ray in a box set on February 4, 2026. + season: fall + year: 2025 + broadcast: + day: Sundays + time: 01:30 + timezone: Asia/Tokyo + string: Sundays at 01:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1517 + type: anime + name: Jinnan Studio + url: https://myanimelist.net/anime/producer/1517/Jinnan_Studio + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + - mal_id: 2111 + type: anime + name: Pia + url: https://myanimelist.net/anime/producer/2111/Pia + - mal_id: 2117 + type: anime + name: SB Creative + url: https://myanimelist.net/anime/producer/2117/SB_Creative + - mal_id: 2234 + type: anime + name: TV Asahi Music + url: https://myanimelist.net/anime/producer/2234/TV_Asahi_Music + - mal_id: 3106 + type: anime + name: NK Animation + url: https://myanimelist.net/anime/producer/3106/NK_Animation + licensors: [] + studios: + - mal_id: 1547 + type: anime + name: Blade + url: https://myanimelist.net/anime/producer/1547/Blade + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 59644 + url: https://myanimelist.net/anime/59644/Yasei_no_Last_Boss_ga_Arawareta + images: + jpg: + image_url: https://myanimelist.net/images/anime/1599/155164.jpg + small_image_url: https://myanimelist.net/images/anime/1599/155164t.jpg + large_image_url: https://myanimelist.net/images/anime/1599/155164l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1599/155164.webp + small_image_url: https://myanimelist.net/images/anime/1599/155164t.webp + large_image_url: https://myanimelist.net/images/anime/1599/155164l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/KVT_ODZn9Ys?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yasei no Last Boss ga Arawareta! + - type: Japanese + title: 野生のラスボスが現れた! + - type: English + title: A Wild Last Boss Appeared! + title: Yasei no Last Boss ga Arawareta! + title_english: A Wild Last Boss Appeared! + title_japanese: 野生のラスボスが現れた! + title_synonyms: [] + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 20 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 20, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.48 + scored_by: 53471 + rank: 2353 + popularity: 2248 + members: 109440 + favorites: 412 + synopsis: |- + Lufas Maphaahl, the Black-Winged Tyrant, was the Great Conqueror who once forged the world of Exgate into a single country. Her reign, supposedly one of fear, ended only when seven heroes rose to cast her down, bringing the player-driven event to a triumphant close—or so the player behind Lufas' avatar thought until a strange message from the goddess of Exgate summoned him into the game world. + + The player then suddenly awakens in the body of Lufas two hundred years after her defeat, finding Exgate on the brink of extinction at the hands of the Devil King. Now, he must travel the world as Lufas to find her most loyal subjects, the Twelve Heavenly Stars, and discover the reason behind his summoning. + + [Written by MAL Rewrite] + background: Each episode was streamed one week in advance of the TV broadcast starting on September 27, 2025, on ABEMA + and U-NEXT. Regular broadcasting began on October 4, 2025. + season: fall + year: 2025 + broadcast: + day: Saturdays + time: '22:30' + timezone: Asia/Tokyo + string: Saturdays at 22:30 (JST) + producers: + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + - mal_id: 1113 + type: anime + name: NBCUniversal Entertainment Japan + url: https://myanimelist.net/anime/producer/1113/NBCUniversal_Entertainment_Japan + - mal_id: 1412 + type: anime + name: Kansai TV + url: https://myanimelist.net/anime/producer/1412/Kansai_TV + - mal_id: 2185 + type: anime + name: BS Asahi + url: https://myanimelist.net/anime/producer/2185/BS_Asahi + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + - mal_id: 2408 + type: anime + name: WOWMAX + url: https://myanimelist.net/anime/producer/2408/WOWMAX + licensors: [] + studios: + - mal_id: 318 + type: anime + name: WAO World + url: https://myanimelist.net/anime/producer/318/WAO_World + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 59267 + url: https://myanimelist.net/anime/59267/Sanda + images: + jpg: + image_url: https://myanimelist.net/images/anime/1364/151767.jpg + small_image_url: https://myanimelist.net/images/anime/1364/151767t.jpg + large_image_url: https://myanimelist.net/images/anime/1364/151767l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1364/151767.webp + small_image_url: https://myanimelist.net/images/anime/1364/151767t.webp + large_image_url: https://myanimelist.net/images/anime/1364/151767l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/PG9F1afLT-Y?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sanda + - type: Japanese + title: SANDA + - type: English + title: Sanda + title: Sanda + title_english: Sanda + title_japanese: SANDA + title_synonyms: [] + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 20 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 20, 2025 + duration: 24 min per ep + rating: R - 17+ (violence & profanity) + score: 7.45 + scored_by: 36715 + rank: 2490 + popularity: 2283 + members: 107236 + favorites: 318 + synopsis: |- + In a future where children are few and regarded as Japan's most valuable assets, Christmas has become a mere legend of the past. For the students of Daikoku Welfare Academy—a boarding school where they are educated, protected, and monitored—the mythical Santa Claus is a forgotten character of fiction. For the adults, Santa Claus is a very real menace that needs to be neutralized by the Saint Nick Pursuit Unit in case he makes an appearance. + + Shiori Fuyumura, a student of Daikoku Welfare Academy, is determined to find her best friend, Ichie Ono, who has been declared dead after being missing for six months. One morning, Fuyumura summons her fellow class representative, Kazushige Sanda, only to attack the unknowing boy. She is convinced that Sanda is the descendant of the infamous Santa Claus—the only person who can make her wish of finding Ono come true—and is determined to force out his dormant true self by any means necessary. + + [Written by MAL Rewrite] + background: Sanda was released on Blu-ray in two volumes from December 24, 2025, to January 28, 2026. + season: fall + year: 2025 + broadcast: + day: Saturdays + time: 01:53 + timezone: Asia/Tokyo + string: Saturdays at 01:53 (JST) + producers: + - mal_id: 53 + type: anime + name: Dentsu + url: https://myanimelist.net/anime/producer/53/Dentsu + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1373 + type: anime + name: Akita Shoten + url: https://myanimelist.net/anime/producer/1373/Akita_Shoten + licensors: [] + studios: + - mal_id: 1591 + type: anime + name: Science SARU + url: https://myanimelist.net/anime/producer/1591/Science_SARU + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 7 + type: anime + name: Mystery + url: https://myanimelist.net/anime/genre/7/Mystery + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 61903 + url: https://myanimelist.net/anime/61903/Kaguya-sama_wa_Kokurasetai__Otona_e_no_Kaidan + images: + jpg: + image_url: https://myanimelist.net/images/anime/1112/150697.jpg + small_image_url: https://myanimelist.net/images/anime/1112/150697t.jpg + large_image_url: https://myanimelist.net/images/anime/1112/150697l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1112/150697.webp + small_image_url: https://myanimelist.net/images/anime/1112/150697t.webp + large_image_url: https://myanimelist.net/images/anime/1112/150697l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/LyHTqu5Yg7I?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Kaguya-sama wa Kokurasetai: Otona e no Kaidan' + - type: Japanese + title: かぐや様は告らせたい 大人への階段 + - type: English + title: 'Kaguya-sama: Love Is War - Stairway to Adulthood' + title: 'Kaguya-sama wa Kokurasetai: Otona e no Kaidan' + title_english: 'Kaguya-sama: Love Is War - Stairway to Adulthood' + title_japanese: かぐや様は告らせたい 大人への階段 + title_synonyms: [] + type: TV Special + source: Manga + episodes: 1 + status: Finished Airing + airing: false + aired: + from: '2025-12-31T00:00:00+00:00' + to: null + prop: + from: + day: 31 + month: 12 + year: 2025 + to: + day: null + month: null + year: null + string: Dec 31, 2025 + duration: 52 min + rating: PG-13 - Teens 13 or older + score: 8.54 + scored_by: 49329 + rank: 142 + popularity: 2344 + members: 103825 + favorites: 328 + synopsis: |- + Years after graduating from high school, Kaguya Shinomiya finds her old photo album and reminisces about when she was a part of Shuuchiin Academy's student council. At the time, Kaguya had just started dating the president Miyuki Shirogane, and the two were hopelessly in love. With each wholesome and silly memory from their past, Kaguya is filled with bliss. + + [Written by MAL Rewrite] + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1501 + type: anime + name: JR East Marketing & Communications + url: https://myanimelist.net/anime/producer/1501/JR_East_Marketing___Communications + licensors: [] + studios: + - mal_id: 56 + type: anime + name: A-1 Pictures + url: https://myanimelist.net/anime/producer/56/A-1_Pictures + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 56854 + url: https://myanimelist.net/anime/56854/Mushoku_no_Eiyuu__Betsu_ni_Skill_Nanka_Iranakatta_n_da_ga + images: + jpg: + image_url: https://myanimelist.net/images/anime/1721/151097.jpg + small_image_url: https://myanimelist.net/images/anime/1721/151097t.jpg + large_image_url: https://myanimelist.net/images/anime/1721/151097l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1721/151097.webp + small_image_url: https://myanimelist.net/images/anime/1721/151097t.webp + large_image_url: https://myanimelist.net/images/anime/1721/151097l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/64uDqGvA-ss?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga' + - type: Synonym + title: The Hero Who Has No Class. No Need Any Skills + - type: Synonym + title: It's Okay. + - type: Synonym + title: 'The Classless Hero: I Didn''t Need Skills Anyway' + - type: Japanese + title: 無職の英雄 別にスキルなんか要らなかったんだが + - type: English + title: 'Hero Without a Class: Who Even Needs Skills?!' + title: 'Mushoku no Eiyuu: Betsu ni Skill Nanka Iranakatta n da ga' + title_english: 'Hero Without a Class: Who Even Needs Skills?!' + title_japanese: 無職の英雄 別にスキルなんか要らなかったんだが + title_synonyms: + - The Hero Who Has No Class. No Need Any Skills + - It's Okay. + - 'The Classless Hero: I Didn''t Need Skills Anyway' + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-01T00:00:00+00:00' + to: '2025-12-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2025 + to: + day: 17 + month: 12 + year: 2025 + string: Oct 1, 2025 to Dec 17, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.27 + scored_by: 45215 + rank: 9540 + popularity: 2453 + members: 96104 + favorites: 191 + synopsis: |- + In a ritual, the Goddess bestows upon 10-year-old children a "class" that shapes their entire future. As the son of the legendary Sword Princess Fara and Archmage Leon—two of the highest-ranked individuals in their respective classes—Arel seemed destined for greatness. Unfortunately, he is branded as classless and thus unable to naturally inherit any kind of specific skill. + + However, Arel soon discovers that he can replicate the abilities of any class he desires—though doing so demands significantly more effort than it does for the naturally gifted. Eager to test his unprecedented skills even more by finding stronger opponents, Arel sets out to defy the limits imposed upon him and prove that perseverance can surpass even divinely appointed talent. + + [Written by MAL Rewrite] + background: Each episode was streamed one week in advance of the TV broadcast starting on September 24, 2025, on HIDIVE, + d-anime Store, ABEMA, U-NEXT, and Anime Houdai. Regular broadcasting began on October 1, 2025. + season: fall + year: 2025 + broadcast: + day: Wednesdays + time: '22:00' + timezone: Asia/Tokyo + string: Wednesdays at 22:00 (JST) + producers: + - mal_id: 315 + type: anime + name: DAX Production + url: https://myanimelist.net/anime/producer/315/DAX_Production + - mal_id: 843 + type: anime + name: BS Fuji + url: https://myanimelist.net/anime/producer/843/BS_Fuji + - mal_id: 925 + type: anime + name: Earth Star Entertainment + url: https://myanimelist.net/anime/producer/925/Earth_Star_Entertainment + - mal_id: 1334 + type: anime + name: Docomo Anime Store + url: https://myanimelist.net/anime/producer/1334/Docomo_Anime_Store + - mal_id: 1492 + type: anime + name: Yomiuri TV Enterprise + url: https://myanimelist.net/anime/producer/1492/Yomiuri_TV_Enterprise + - mal_id: 1996 + type: anime + name: MAGNET + url: https://myanimelist.net/anime/producer/1996/MAGNET + - mal_id: 2017 + type: anime + name: Culture Entertainment + url: https://myanimelist.net/anime/producer/2017/Culture_Entertainment + - mal_id: 2228 + type: anime + name: Bushiroad Move + url: https://myanimelist.net/anime/producer/2228/Bushiroad_Move + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 1209 + type: anime + name: Studio A-CAT + url: https://myanimelist.net/anime/producer/1209/Studio_A-CAT + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 59517 + url: https://myanimelist.net/anime/59517/Chitose-kun_wa_Ramune_Bin_no_Naka + images: + jpg: + image_url: https://myanimelist.net/images/anime/1015/151233.jpg + small_image_url: https://myanimelist.net/images/anime/1015/151233t.jpg + large_image_url: https://myanimelist.net/images/anime/1015/151233l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1015/151233.webp + small_image_url: https://myanimelist.net/images/anime/1015/151233t.webp + large_image_url: https://myanimelist.net/images/anime/1015/151233l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wC7FYPFHLeQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Chitose-kun wa Ramune Bin no Naka + - type: Synonym + title: Chiramune + - type: Synonym + title: Chitose-kun is Inside a Ramune Bottle + - type: Synonym + title: Ramune no Bin ni Shizunda Biidama no Tsuki + - type: Japanese + title: 千歳くんはラムネ瓶のなか + - type: English + title: Chitose Is in the Ramune Bottle + title: Chitose-kun wa Ramune Bin no Naka + title_english: Chitose Is in the Ramune Bottle + title_japanese: 千歳くんはラムネ瓶のなか + title_synonyms: + - Chiramune + - Chitose-kun is Inside a Ramune Bottle + - Ramune no Bin ni Shizunda Biidama no Tsuki + type: TV + source: Light novel + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-10-07T00:00:00+00:00' + to: '2026-03-31T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2025 + to: + day: 31 + month: 3 + year: 2026 + string: Oct 7, 2025 to Mar 31, 2026 + duration: 25 min per ep + rating: PG-13 - Teens 13 or older + score: 7.46 + scored_by: 27210 + rank: 2418 + popularity: 2563 + members: 89600 + favorites: 613 + synopsis: |- + Saku Chitose appears to lead an enviable high school life. Extraordinarily charismatic, tremendously confident, and effortlessly friendly, he is the kind of person others naturally look up to. But his popularity carries its own burdens; not everyone views him kindly, and whispers of cynicism follow wherever he shines too brightly. To Saku, living an ugly life is worse than death—a belief that drives his need to maintain his perfect reputation. + + At the start of his second year, Saku's homeroom teacher asks him to help bring back a classmate who has stopped attending school. Initially hoping to resolve the matter quickly, Saku finds out that the shut-in Kenta Yamazaki harbors open contempt for him and everything he represents. A simple favor instead exposes the distance between those who live within the social light and those who were never given a chance to shine. + + Surrounded by the expectant gazes of those who both admire and despise him, Saku treads the delicate line between sincerity and performance—searching for what it truly means to live beautifully in a world that sees only the surface. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Tuesdays + time: '23:00' + timezone: Asia/Tokyo + string: Tuesdays at 23:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1261 + type: anime + name: Good Smile Company + url: https://myanimelist.net/anime/producer/1261/Good_Smile_Company + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1779 + type: anime + name: NewGin + url: https://myanimelist.net/anime/producer/1779/NewGin + - mal_id: 1899 + type: anime + name: Good Smile Film + url: https://myanimelist.net/anime/producer/1899/Good_Smile_Film + - mal_id: 2903 + type: anime + name: Studio Tenjin + url: https://myanimelist.net/anime/producer/2903/Studio_Tenjin + - mal_id: 3103 + type: anime + name: REMOW + url: https://myanimelist.net/anime/producer/3103/REMOW + licensors: [] + studios: + - mal_id: 91 + type: anime + name: feel. + url: https://myanimelist.net/anime/producer/91/feel + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 35 + type: anime + name: Harem + url: https://myanimelist.net/anime/genre/35/Harem + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 60619 + url: https://myanimelist.net/anime/60619/Nageki_no_Bourei_wa_Intai_shitai_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1651/152063.jpg + small_image_url: https://myanimelist.net/images/anime/1651/152063t.jpg + large_image_url: https://myanimelist.net/images/anime/1651/152063l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1651/152063.webp + small_image_url: https://myanimelist.net/images/anime/1651/152063t.webp + large_image_url: https://myanimelist.net/images/anime/1651/152063l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f9iNG9he4bg?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Nageki no Bourei wa Intai shitai Part 2 + - type: Synonym + title: Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party + - type: Japanese + title: 嘆きの亡霊は引退したい 第2クール + - type: English + title: Let This Grieving Soul Retire Part 2 + title: Nageki no Bourei wa Intai shitai Part 2 + title_english: Let This Grieving Soul Retire Part 2 + title_japanese: 嘆きの亡霊は引退したい 第2クール + title_synonyms: + - Let This Grieving Soul Retire! Woe Is the Weakling Who Leads the Strongest Party + type: TV + source: Light novel + episodes: 11 + status: Finished Airing + airing: false + aired: + from: '2025-10-06T00:00:00+00:00' + to: '2025-12-15T00:00:00+00:00' + prop: + from: + day: 6 + month: 10 + year: 2025 + to: + day: 15 + month: 12 + year: 2025 + string: Oct 6, 2025 to Dec 15, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.51 + scored_by: 39973 + rank: 2205 + popularity: 2634 + members: 86130 + favorites: 259 + synopsis: |- + Despite being one of Zebrudia's few level 8 treasure hunters and the leader of the capital's top party, Grieving Souls, Krai Andrey does not deserve his prominent reputation. Everything he says somehow turns prophetic, which convinces everyone around him that he possesses unfathomable wisdom regardless of his utter incompetence. Krai knows his success is only a series of coincidences, but the weight of those expectations grows heavier as time goes by. Unfortunately, as the other members of the Grieving Souls continue to shock the world with their achievements, Krai's wish for a peaceful retirement drifts ever further out of reach. + + [Written by MAL Rewrite] + background: Each episode was streamed two days in advance of the TV broadcast starting on October 4, 2025, on ABEMA + and d-anime Store. Regular broadcasting began on October 6, 2025. + season: fall + year: 2025 + broadcast: + day: Mondays + time: '23:30' + timezone: Asia/Tokyo + string: Mondays at 23:30 (JST) + producers: + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1896 + type: anime + name: Micro Magazine Publishing + url: https://myanimelist.net/anime/producer/1896/Micro_Magazine_Publishing + - mal_id: 2289 + type: anime + name: GREE Entertainment + url: https://myanimelist.net/anime/producer/2289/GREE_Entertainment + - mal_id: 2671 + type: anime + name: Saber Links + url: https://myanimelist.net/anime/producer/2671/Saber_Links + licensors: [] + studios: + - mal_id: 1379 + type: anime + name: Zero-G + url: https://myanimelist.net/anime/producer/1379/Zero-G + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 62405 + url: https://myanimelist.net/anime/62405/Fujimoto_Tatsuki_17-26 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1864/151837.jpg + small_image_url: https://myanimelist.net/images/anime/1864/151837t.jpg + large_image_url: https://myanimelist.net/images/anime/1864/151837l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1864/151837.webp + small_image_url: https://myanimelist.net/images/anime/1864/151837t.webp + large_image_url: https://myanimelist.net/images/anime/1864/151837l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/xDsN2cmAlhQ?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Fujimoto Tatsuki 17-26 + - type: Synonym + title: Niwa ni wa Niwa Niwatori ga Ita. + - type: Synonym + title: Sasaki-kun ga Juudan Tometa + - type: Synonym + title: Koi wa Moumoku + - type: Synonym + title: Shikaku + - type: Synonym + title: Ningyo Rhapsody + - type: Synonym + title: Me ga Sametara Onnanoko ni Natteita Yamai + - type: Synonym + title: Yogen no Nayuta + - type: Synonym + title: Imouto no Ane + - type: Japanese + title: 藤本タツキ17-26 + - type: English + title: Tatsuki Fujimoto 17-26 + title: Fujimoto Tatsuki 17-26 + title_english: Tatsuki Fujimoto 17-26 + title_japanese: 藤本タツキ17-26 + title_synonyms: + - Niwa ni wa Niwa Niwatori ga Ita. + - Sasaki-kun ga Juudan Tometa + - Koi wa Moumoku + - Shikaku + - Ningyo Rhapsody + - Me ga Sametara Onnanoko ni Natteita Yamai + - Yogen no Nayuta + - Imouto no Ane + type: ONA + source: Manga + episodes: 8 + status: Finished Airing + airing: false + aired: + from: '2025-11-08T00:00:00+00:00' + to: null + prop: + from: + day: 8 + month: 11 + year: 2025 + to: + day: null + month: null + year: null + string: Nov 8, 2025 + duration: 17 min per ep + rating: R+ - Mild Nudity + score: 8.07 + scored_by: 36500 + rank: 639 + popularity: 2651 + members: 85687 + favorites: 370 + synopsis: |- + 1. Niwa ni wa Niwa Niwatori ga Ita. (A Couple Clucking Chickens Were Still Kickin' in the Schoolyard) + 2. Sasaki-kun ga Juudan Tometa (Sasaki Stopped a Bullet) + 3. Koi wa Moumoku (Love Is Blind) + 4. Shikaku + 5. Ningyo Rhapsody (Mermaid Rhapsody) + 6. Me ga Sametara Onnanoko ni Natteita Yamai (Woke-Up-as-a-Girl Syndrome) + 7. Yogen no Nayuta (Nayuta of the Prophecy) + 8. Imouto no Ane (Sisters) + background: '' + season: null + year: null + broadcast: + day: null + time: null + timezone: null + string: null + producers: + - mal_id: 75 + type: anime + name: Imagin + url: https://myanimelist.net/anime/producer/75/Imagin + - mal_id: 577 + type: anime + name: Tohokushinsha Film Corporation + url: https://myanimelist.net/anime/producer/577/Tohokushinsha_Film_Corporation + - mal_id: 1284 + type: anime + name: Avex Pictures + url: https://myanimelist.net/anime/producer/1284/Avex_Pictures + - mal_id: 1294 + type: anime + name: Sound Team Don Juan + url: https://myanimelist.net/anime/producer/1294/Sound_Team_Don_Juan + - mal_id: 1365 + type: anime + name: Shueisha + url: https://myanimelist.net/anime/producer/1365/Shueisha + - mal_id: 1747 + type: anime + name: Twin Engine + url: https://myanimelist.net/anime/producer/1747/Twin_Engine + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2249 + type: anime + name: Flagship Line + url: https://myanimelist.net/anime/producer/2249/Flagship_Line + - mal_id: 2369 + type: anime + name: IRMA LA DOUCE + url: https://myanimelist.net/anime/producer/2369/IRMA_LA_DOUCE + - mal_id: 3021 + type: anime + name: Amazon MGM Studios + url: https://myanimelist.net/anime/producer/3021/Amazon_MGM_Studios + - mal_id: 3227 + type: anime + name: Aube + url: https://myanimelist.net/anime/producer/3227/Aube + licensors: [] + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + - mal_id: 218 + type: anime + name: Zexcs + url: https://myanimelist.net/anime/producer/218/Zexcs + - mal_id: 1828 + type: anime + name: Lapin Track + url: https://myanimelist.net/anime/producer/1828/Lapin_Track + - mal_id: 2205 + type: anime + name: Studio Kafka + url: https://myanimelist.net/anime/producer/2205/Studio_Kafka + - mal_id: 2696 + type: anime + name: 100studio + url: https://myanimelist.net/anime/producer/2696/100studio + - mal_id: 3192 + type: anime + name: Studio Graph77 + url: https://myanimelist.net/anime/producer/3192/Studio_Graph77 + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 61917 + url: https://myanimelist.net/anime/61917/Towa_no_Yuugure + images: + jpg: + image_url: https://myanimelist.net/images/anime/1294/151734.jpg + small_image_url: https://myanimelist.net/images/anime/1294/151734t.jpg + large_image_url: https://myanimelist.net/images/anime/1294/151734l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1294/151734.webp + small_image_url: https://myanimelist.net/images/anime/1294/151734t.webp + large_image_url: https://myanimelist.net/images/anime/1294/151734l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/f02Yho-c-Pw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Towa no Yuugure + - type: Synonym + title: Towa no Yugure + - type: Japanese + title: 永久のユウグレ + - type: English + title: Dusk Beyond the End of the World + title: Towa no Yuugure + title_english: Dusk Beyond the End of the World + title_japanese: 永久のユウグレ + title_synonyms: + - Towa no Yugure + type: TV + source: Original + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-03T00:00:00+00:00' + to: '2025-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2025 + to: + day: 19 + month: 12 + year: 2025 + string: Oct 3, 2025 to Dec 19, 2025 + duration: 23 min per ep + rating: R - 17+ (violence & profanity) + score: 6.56 + scored_by: 24025 + rank: 7820 + popularity: 2744 + members: 80491 + favorites: 224 + synopsis: |- + In an era trembling on the edge of an AI revolution, Towasa Oumagi stands out as a prodigy. Her adopted brother, Akira Himegami, is one of the few who understands the heart behind her code and stands unwaveringly by her side against the prejudice she often faces as an AI pioneer. During a shareholders meeting meant to unveil a breakthrough that could reshape humanity, chaos erupts when a shooter guns down Towasa and Akira in rejection of their ideals. + + With the attack being his last memory, Akira opens his eyes, only to realize centuries have passed. He finds himself in a deserted laboratory among a city in ruins, with no idea what became of Towasa or the world. A father and daughter find him and take him into their modest home, where he is shocked to discover that civilization has regressed. + + His peaceful days are shattered when he is captured by OWEL, a global organization that now governs the world and controls access to knowledge from the old era. When his captors decide to execute him, a mysterious figure appears and lays waste to the entire squadron with her terrifying inhuman abilities. After rescuing him, she introduces herself as Yuugure—an android—and asks Akira to marry her. If things were not already unbelievable, Yuugure's face is a perfect reflection of Towasa's. + + [Written by MAL Rewrite] + background: Towa no Yuugure aired on MBS and TBS' Super Animeism Turbo block. The series was released on Blu-ray in + three volumes from February 4, 2026, to April 8, 2026. + season: fall + year: 2025 + broadcast: + day: Fridays + time: 00:26 + timezone: Asia/Tokyo + string: Fridays at 00:26 (JST) + producers: + - mal_id: 135 + type: anime + name: MediaNet + url: https://myanimelist.net/anime/producer/135/MediaNet + - mal_id: 143 + type: anime + name: Mainichi Broadcasting System + url: https://myanimelist.net/anime/producer/143/Mainichi_Broadcasting_System + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + - mal_id: 2045 + type: anime + name: Myrica Music + url: https://myanimelist.net/anime/producer/2045/Myrica_Music + - mal_id: 2680 + type: anime + name: Sankyo + url: https://myanimelist.net/anime/producer/2680/Sankyo_ + licensors: + - mal_id: 376 + type: anime + name: Sentai Filmworks + url: https://myanimelist.net/anime/producer/376/Sentai_Filmworks + studios: + - mal_id: 132 + type: anime + name: P.A. Works + url: https://myanimelist.net/anime/producer/132/PA_Works + genres: + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 24 + type: anime + name: Sci-Fi + url: https://myanimelist.net/anime/genre/24/Sci-Fi + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60168 + url: https://myanimelist.net/anime/60168/Watashi_wo_Tabetai_Hitodenashi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1191/152368.jpg + small_image_url: https://myanimelist.net/images/anime/1191/152368t.jpg + large_image_url: https://myanimelist.net/images/anime/1191/152368l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1191/152368.webp + small_image_url: https://myanimelist.net/images/anime/1191/152368t.webp + large_image_url: https://myanimelist.net/images/anime/1191/152368l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/sGCfgvjn4CU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Watashi wo Tabetai, Hitodenashi + - type: Synonym + title: A Monster Wants to Eat Me + - type: Synonym + title: WataTabe + - type: Japanese + title: 私を喰べたい、ひとでなし + - type: English + title: This Monster Wants to Eat Me + title: Watashi wo Tabetai, Hitodenashi + title_english: This Monster Wants to Eat Me + title_japanese: 私を喰べたい、ひとでなし + title_synonyms: + - A Monster Wants to Eat Me + - WataTabe + type: TV + source: Manga + episodes: 13 + status: Finished Airing + airing: false + aired: + from: '2025-10-02T00:00:00+00:00' + to: '2025-12-25T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2025 + to: + day: 25 + month: 12 + year: 2025 + string: Oct 2, 2025 to Dec 25, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.47 + scored_by: 25455 + rank: 2406 + popularity: 2767 + members: 79406 + favorites: 502 + synopsis: |- + After an accident sent her family to their deaths in the ocean, Hinako Yaotose keeps returning to the thought of sinking forever into the sea herself. With Miko Yashiro as her only friend, Hinako manages to keep up a semi-happy facade, but whenever Miko leaves her side, she slips into despair. Everything changes one summer when she meets a mysterious girl with eyes as deep and clear as the sea, drawing Hinako in like nothing else has in a long time. + + During her absent-minded search for the girl, Hinako is suddenly pulled underwater by a beastly deep-sea creature, only to awaken to the presence of the girl—Shiori Oumi—who takes on a monstrous form and kills Hinako's attacker. Despite this heroic act, Shiori's intentions are no different from any other monster's: she wants to eat Hinako. + + The following morning, Shiori walks into Hinako's class as a transfer student, and Hinako cannot help but smile—at last, someone who could fulfill her quiet wish for death has appeared before her. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Thursdays + time: '22:30' + timezone: Asia/Tokyo + string: Thursdays at 22:30 (JST) + producers: + - mal_id: 141 + type: anime + name: Toei Video + url: https://myanimelist.net/anime/producer/141/Toei_Video + - mal_id: 144 + type: anime + name: Pony Canyon + url: https://myanimelist.net/anime/producer/144/Pony_Canyon + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 719 + type: anime + name: Studio Mausu + url: https://myanimelist.net/anime/producer/719/Studio_Mausu + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1386 + type: anime + name: Infinite + url: https://myanimelist.net/anime/producer/1386/Infinite + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1696 + type: anime + name: Kadokawa + url: https://myanimelist.net/anime/producer/1696/Kadokawa + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + licensors: [] + studios: + - mal_id: 1813 + type: anime + name: Studio Lings + url: https://myanimelist.net/anime/producer/1813/Studio_Lings + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 26 + type: anime + name: Girls Love + url: https://myanimelist.net/anime/genre/26/Girls_Love + - mal_id: 37 + type: anime + name: Supernatural + url: https://myanimelist.net/anime/genre/37/Supernatural + explicit_genres: [] + themes: + - mal_id: 6 + type: anime + name: Mythology + url: https://myanimelist.net/anime/genre/6/Mythology + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 60564 + url: https://myanimelist.net/anime/60564/Ranma_½_2024_2nd_Season + images: + jpg: + image_url: https://myanimelist.net/images/anime/1011/152084.jpg + small_image_url: https://myanimelist.net/images/anime/1011/152084t.jpg + large_image_url: https://myanimelist.net/images/anime/1011/152084l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1011/152084.webp + small_image_url: https://myanimelist.net/images/anime/1011/152084t.webp + large_image_url: https://myanimelist.net/images/anime/1011/152084l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qf_pRksXtTw?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Ranma ½ (2024) 2nd Season + - type: Synonym + title: Ranma 1/2 (2024) 2nd Season + - type: Japanese + title: らんま1/2 第2期 + - type: English + title: Ranma ½ (2024) Season 2 + title: Ranma ½ (2024) 2nd Season + title_english: Ranma ½ (2024) Season 2 + title_japanese: らんま1/2 第2期 + title_synonyms: + - Ranma 1/2 (2024) 2nd Season + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-05T00:00:00+00:00' + to: '2025-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2025 + to: + day: 21 + month: 12 + year: 2025 + string: Oct 5, 2025 to Dec 21, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.75 + scored_by: 34432 + rank: 1318 + popularity: 2800 + members: 78018 + favorites: 234 + synopsis: |- + Things have been lively ever since Ranma Saotome took up residence in the Tendou household. He still turns into a girl whenever doused with cold water, but that has not stopped his unrelenting martial arts training and meeting countless new individuals. Moreover, Ranma and his fiancée, Akane Tendou, have grown closer despite their rocky start and constant quarreling. + + However, some people are not pleased with Ranma and Akane's engagement. A Chinese girl, Shampoo, is set on marrying Ranma, while he is also targeted by other men infatuated with Akane, who resort to anything to defeat him. Nevertheless, Ranma is determined to take on any challenger while navigating through his chaotic life with Akane. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Sundays + time: 00:55 + timezone: Asia/Tokyo + string: Sundays at 00:55 (JST) + producers: + - mal_id: 62 + type: anime + name: Shogakukan-Shueisha Productions + url: https://myanimelist.net/anime/producer/62/Shogakukan-Shueisha_Productions + - mal_id: 474 + type: anime + name: Shogakukan Music & Digital Entertainment + url: https://myanimelist.net/anime/producer/474/Shogakukan_Music___Digital_Entertainment + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1430 + type: anime + name: Shogakukan + url: https://myanimelist.net/anime/producer/1430/Shogakukan + - mal_id: 1856 + type: anime + name: dugout + url: https://myanimelist.net/anime/producer/1856/dugout + licensors: [] + studios: + - mal_id: 569 + type: anime + name: MAPPA + url: https://myanimelist.net/anime/producer/569/MAPPA + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + - mal_id: 9 + type: anime + name: Ecchi + url: https://myanimelist.net/anime/genre/9/Ecchi + explicit_genres: [] + themes: + - mal_id: 65 + type: anime + name: Magical Sex Shift + url: https://myanimelist.net/anime/genre/65/Magical_Sex_Shift + - mal_id: 17 + type: anime + name: Martial Arts + url: https://myanimelist.net/anime/genre/17/Martial_Arts + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: + - mal_id: 27 + type: anime + name: Shounen + url: https://myanimelist.net/anime/genre/27/Shounen + - mal_id: 61174 + url: https://myanimelist.net/anime/61174/Sozai_Saishuka_no_Isekai_Ryokouki + images: + jpg: + image_url: https://myanimelist.net/images/anime/1289/151136.jpg + small_image_url: https://myanimelist.net/images/anime/1289/151136t.jpg + large_image_url: https://myanimelist.net/images/anime/1289/151136l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1289/151136.webp + small_image_url: https://myanimelist.net/images/anime/1289/151136t.webp + large_image_url: https://myanimelist.net/images/anime/1289/151136l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/gzr-d0k_AsU?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Sozai Saishuka no Isekai Ryokouki + - type: Synonym + title: Material Collector's Another World Travels + - type: Japanese + title: 素材採取家の異世界旅行記 + - type: English + title: A Gatherer's Adventure in Isekai + title: Sozai Saishuka no Isekai Ryokouki + title_english: A Gatherer's Adventure in Isekai + title_japanese: 素材採取家の異世界旅行記 + title_synonyms: + - Material Collector's Another World Travels + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-07T00:00:00+00:00' + to: '2025-12-23T00:00:00+00:00' + prop: + from: + day: 7 + month: 10 + year: 2025 + to: + day: 23 + month: 12 + year: 2025 + string: Oct 7, 2025 to Dec 23, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.12 + scored_by: 36905 + rank: 10385 + popularity: 2814 + members: 77493 + favorites: 125 + synopsis: |- + Living in constant monotone, Takeru Kamishiro longs for a change in his life. His wish is seemingly granted when a god reincarnates him in Madeus, a world trapped in a cycle of collapse. Hoping that Takeru's presence might finally save the world, the god grants him invaluable gifts: a new body with potent magic, a bottomless bag, and a skill that allows him to locate and appraise materials and treasures. + + Thrust into a new adventure, Takeru begins his new life exploring freely and collecting valuables to sell. However, as he journeys alongside a newly hatched dragon, his quiet actions start to send ripples across the world—subtly changing its future toward the unseen. + + [Written by MAL Rewrite] + background: Each episode was streamed one week in advance of the TV broadcast starting on September 30, 2025, on U-NEXT. + Regular broadcasting began on October 7, 2025. + season: fall + year: 2025 + broadcast: + day: Tuesdays + time: 00:00 + timezone: Asia/Tokyo + string: Tuesdays at 00:00 (JST) + producers: + - mal_id: 79 + type: anime + name: Genco + url: https://myanimelist.net/anime/producer/79/Genco + - mal_id: 82 + type: anime + name: Marvelous Entertainment + url: https://myanimelist.net/anime/producer/82/Marvelous_Entertainment + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1583 + type: anime + name: U-NEXT + url: https://myanimelist.net/anime/producer/1583/U-NEXT + - mal_id: 1786 + type: anime + name: Muse Communication + url: https://myanimelist.net/anime/producer/1786/Muse_Communication + - mal_id: 2592 + type: anime + name: AlphaPolis + url: https://myanimelist.net/anime/producer/2592/AlphaPolis + licensors: [] + studios: + - mal_id: 103 + type: anime + name: Tatsunoko Production + url: https://myanimelist.net/anime/producer/103/Tatsunoko_Production + - mal_id: 118 + type: anime + name: SynergySP + url: https://myanimelist.net/anime/producer/118/SynergySP + genres: + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: + - mal_id: 62 + type: anime + name: Isekai + url: https://myanimelist.net/anime/genre/62/Isekai + demographics: [] + - mal_id: 61276 + url: https://myanimelist.net/anime/61276/Mikata_ga_Yowasugite_Hojo_Mahou_ni_Tesshiteita_Kyuutei_Mahoushi_Tsuihou_sarete_Saikyou_wo_Mezasu + images: + jpg: + image_url: https://myanimelist.net/images/anime/1732/153360.jpg + small_image_url: https://myanimelist.net/images/anime/1732/153360t.jpg + large_image_url: https://myanimelist.net/images/anime/1732/153360l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1732/153360.webp + small_image_url: https://myanimelist.net/images/anime/1732/153360t.webp + large_image_url: https://myanimelist.net/images/anime/1732/153360l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/b4aXha_osxc?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu + - type: Synonym + title: A Court Magician + - type: Synonym + title: Who Was Focused on Supportive Magic Because His Allies Were too Weak + - type: Synonym + title: Aims to Become the Strongest After Being Banished + - type: Synonym + title: Story of Lasting Period + - type: Japanese + title: 味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す + - type: English + title: The Banished Court Magician Aims to Become the Strongest + title: Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu + title_english: The Banished Court Magician Aims to Become the Strongest + title_japanese: 味方が弱すぎて補助魔法に徹していた宮廷魔法師、追放されて最強を目指す + title_synonyms: + - A Court Magician + - Who Was Focused on Supportive Magic Because His Allies Were too Weak + - Aims to Become the Strongest After Being Banished + - Story of Lasting Period + type: TV + source: Light novel + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-04T00:00:00+00:00' + to: '2025-12-20T00:00:00+00:00' + prop: + from: + day: 4 + month: 10 + year: 2025 + to: + day: 20 + month: 12 + year: 2025 + string: Oct 4, 2025 to Dec 20, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 6.33 + scored_by: 33481 + rank: 9187 + popularity: 2841 + members: 75710 + favorites: 84 + synopsis: |- + "This party doesn't need an incompetent magician who can only use supportive magic. You're fired, Alec Ygret." + + Suddenly, Alec, a court magician who had joined the crown prince's party to help him conquer dungeons—was banished from the party. And not just the party, but the crown prince's harassment has banished him from the royal palace as well, and a friend from the "magic academy" approached Alec, who was at his wit's end. + + "Hey, Alec. Do you want to try to conquer the dungeon with us again?" + + And so, together with the friends he used to party with, Alec begins his second journey in life. This is the adventure story of a former court magician who had been abandoned. + + Four years ago, the "Lasting Period," a party of four that had been called "legendary," has gradually spread its name around the world. + + (Source: Kodansha, translated) + background: Mikata ga Yowasugite Hojo Mahou ni Tesshiteita Kyuutei Mahoushi, Tsuihou sarete Saikyou wo Mezasu aired + on TV Asahi's IMAnimation block. + season: fall + year: 2025 + broadcast: + day: Saturdays + time: '23:30' + timezone: Asia/Tokyo + string: Saturdays at 23:30 (JST) + producers: + - mal_id: 55 + type: anime + name: TV Asahi + url: https://myanimelist.net/anime/producer/55/TV_Asahi + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 1422 + type: anime + name: CyberAgent + url: https://myanimelist.net/anime/producer/1422/CyberAgent + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1600 + type: anime + name: On-Lead + url: https://myanimelist.net/anime/producer/1600/On-Lead + - mal_id: 2741 + type: anime + name: Daito Giken + url: https://myanimelist.net/anime/producer/2741/Daito_Giken + licensors: [] + studios: + - mal_id: 2554 + type: anime + name: Gekkou + url: https://myanimelist.net/anime/producer/2554/Gekkou + genres: + - mal_id: 1 + type: anime + name: Action + url: https://myanimelist.net/anime/genre/1/Action + - mal_id: 2 + type: anime + name: Adventure + url: https://myanimelist.net/anime/genre/2/Adventure + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60531 + url: https://myanimelist.net/anime/60531/Bukiyou_na_Senpai + images: + jpg: + image_url: https://myanimelist.net/images/anime/1257/152233.jpg + small_image_url: https://myanimelist.net/images/anime/1257/152233t.jpg + large_image_url: https://myanimelist.net/images/anime/1257/152233l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1257/152233.webp + small_image_url: https://myanimelist.net/images/anime/1257/152233t.webp + large_image_url: https://myanimelist.net/images/anime/1257/152233l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/qXfwtywmeQA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Bukiyou na Senpai. + - type: Synonym + title: Awkward Senpai + - type: Japanese + title: 不器用な先輩。 + - type: English + title: My Awkward Senpai + title: Bukiyou na Senpai. + title_english: My Awkward Senpai + title_japanese: 不器用な先輩。 + title_synonyms: + - Awkward Senpai + type: TV + source: Manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-02T00:00:00+00:00' + to: '2025-12-18T00:00:00+00:00' + prop: + from: + day: 2 + month: 10 + year: 2025 + to: + day: 18 + month: 12 + year: 2025 + string: Oct 2, 2025 to Dec 18, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 7.06 + scored_by: 25699 + rank: 4788 + popularity: 2947 + members: 71545 + favorites: 198 + synopsis: |- + Azusa Kannawa, ace of the publicity department, is known for her unmatched reliability. Her coworkers, on the other hand, find her no-nonsense demeanor intimidating. Yet, unbeknownst to them, a socially awkward woman hides underneath the facade, simply struggling with casual communication and masking it with a strong attitude. However, her mask begins to crack when a promising rookie, Yuu Kamegawa, joins the team and Azusa gets assigned as his mentor. + + Determined to guide Kamegawa just like how her senior once trained her, Kannawa puts utmost effort into showing him the ropes. But as they grow closer, she slowly lowers her guard, gradually revealing that the seemingly rigid department ace might actually be far kinder than anyone initially thought. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Thursdays + time: '22:00' + timezone: Asia/Tokyo + string: Thursdays at 22:00 (JST) + producers: + - mal_id: 58 + type: anime + name: Square Enix + url: https://myanimelist.net/anime/producer/58/Square_Enix + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1211 + type: anime + name: Tokyo MX + url: https://myanimelist.net/anime/producer/1211/Tokyo_MX + - mal_id: 1344 + type: anime + name: King Records + url: https://myanimelist.net/anime/producer/1344/King_Records + - mal_id: 1551 + type: anime + name: Kadokawa Media House + url: https://myanimelist.net/anime/producer/1551/Kadokawa_Media_House + - mal_id: 1680 + type: anime + name: BS NTV + url: https://myanimelist.net/anime/producer/1680/BS_NTV + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 1521 + type: anime + name: Studio Elle + url: https://myanimelist.net/anime/producer/1521/Studio_Elle + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 50 + type: anime + name: Adult Cast + url: https://myanimelist.net/anime/genre/50/Adult_Cast + - mal_id: 48 + type: anime + name: Workplace + url: https://myanimelist.net/anime/genre/48/Workplace + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + - mal_id: 60162 + url: https://myanimelist.net/anime/60162/Akujiki_Reijou_to_Kyouketsu_Koushaku + images: + jpg: + image_url: https://myanimelist.net/images/anime/1264/152012.jpg + small_image_url: https://myanimelist.net/images/anime/1264/152012t.jpg + large_image_url: https://myanimelist.net/images/anime/1264/152012l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1264/152012.webp + small_image_url: https://myanimelist.net/images/anime/1264/152012t.webp + large_image_url: https://myanimelist.net/images/anime/1264/152012l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/wvutMIYKa2g?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Akujiki Reijou to Kyouketsu Koushaku + - type: Japanese + title: 悪食令嬢と狂血公爵 + - type: English + title: Pass the Monster Meat, Milady! + title: Akujiki Reijou to Kyouketsu Koushaku + title_english: Pass the Monster Meat, Milady! + title_japanese: 悪食令嬢と狂血公爵 + title_synonyms: [] + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-03T00:00:00+00:00' + to: '2025-12-19T00:00:00+00:00' + prop: + from: + day: 3 + month: 10 + year: 2025 + to: + day: 19 + month: 12 + year: 2025 + string: Oct 3, 2025 to Dec 19, 2025 + duration: 24 min per ep + rating: PG-13 - Teens 13 or older + score: 7.12 + scored_by: 28404 + rank: 4430 + popularity: 2997 + members: 69774 + favorites: 222 + synopsis: |- + Melphiera Marchalrayd, the daughter of a count, dedicates her time to researching the culinary possibilities of monster meat—a peculiar endeavor started by her late mother. By teaching the people of the Marchalrayd lands to prepare such exotic ingredients, Melphiera hopes to help stave off famine. Unfortunately, her unique tastes and intimate knowledge of monsters have led to her social isolation: few nobles interact with her willingly, disdainfully calling her the "Voracious Villainess." + + When a monster attack erupts at a royal banquet—where Melphiera has been sent to find a husband—Aristide Rogier du Galbraith, the younger brother of the crown prince, leaps to her aid. Due to his terrifying skill in slaying monsters, Aristide has earned the title of "Blood-Man Duke." Charmed by Melphiera's fearlessness and intriguing culinary prowess, Aristide soon declares his intent to propose. + + Together, Melphiera and Aristide, high society's most eccentric couple, strive to see beyond the cruel rumors and encourage each other's fascination with monsters and the art of preparing them. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Fridays + time: 01:28 + timezone: Asia/Tokyo + string: Fridays at 01:28 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 159 + type: anime + name: Kodansha + url: https://myanimelist.net/anime/producer/159/Kodansha + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 1041 + type: anime + name: Ai Addiction + url: https://myanimelist.net/anime/producer/1041/Ai_Addiction + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1468 + type: anime + name: Crunchyroll + url: https://myanimelist.net/anime/producer/1468/Crunchyroll + - mal_id: 1585 + type: anime + name: Nichion + url: https://myanimelist.net/anime/producer/1585/Nichion + licensors: [] + studios: + - mal_id: 406 + type: anime + name: Asahi Production + url: https://myanimelist.net/anime/producer/406/Asahi_Production + genres: + - mal_id: 10 + type: anime + name: Fantasy + url: https://myanimelist.net/anime/genre/10/Fantasy + - mal_id: 47 + type: anime + name: Gourmet + url: https://myanimelist.net/anime/genre/47/Gourmet + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: [] + demographics: [] + - mal_id: 60254 + url: https://myanimelist.net/anime/60254/Yano-kun_no_Futsuu_no_Hibi + images: + jpg: + image_url: https://myanimelist.net/images/anime/1388/152332.jpg + small_image_url: https://myanimelist.net/images/anime/1388/152332t.jpg + large_image_url: https://myanimelist.net/images/anime/1388/152332l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1388/152332.webp + small_image_url: https://myanimelist.net/images/anime/1388/152332t.webp + large_image_url: https://myanimelist.net/images/anime/1388/152332l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/AVcXFW1fqAk?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: Yano-kun no Futsuu no Hibi + - type: Synonym + title: Mr. Yano's Ordinary Days + - type: Japanese + title: 矢野くんの普通の日々 + - type: English + title: Yano-kun's Ordinary Days + title: Yano-kun no Futsuu no Hibi + title_english: Yano-kun's Ordinary Days + title_japanese: 矢野くんの普通の日々 + title_synonyms: + - Mr. Yano's Ordinary Days + type: TV + source: Web manga + episodes: 12 + status: Finished Airing + airing: false + aired: + from: '2025-10-01T00:00:00+00:00' + to: '2025-12-17T00:00:00+00:00' + prop: + from: + day: 1 + month: 10 + year: 2025 + to: + day: 17 + month: 12 + year: 2025 + string: Oct 1, 2025 to Dec 17, 2025 + duration: 22 min per ep + rating: PG-13 - Teens 13 or older + score: 7.32 + scored_by: 22890 + rank: 3205 + popularity: 3082 + members: 66040 + favorites: 171 + synopsis: |- + For as long as he can remember, the klutzy Tsuyoshi Yano has been prone to injury. Constantly showing up to school with fresh scrapes and bruises, he has long become accustomed to the pain and to the sight of his face covered in bandages. However, Yano's days begin to change for the better when he is transferred to a new class and meets Kiyoko Yoshida, the class president known for her reliability and kindheartedness. + + Through Yoshida's efforts to learn more about him, Yano starts to experience the kind of high school life he has always wished for—one filled with laughter and camaraderie. Between casual conversations and countless small accidents, the two gradually grow closer, and their relationship may bloom into something more than just friendship. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Wednesdays + time: 01:29 + timezone: Asia/Tokyo + string: Wednesdays at 01:29 (JST) + producers: + - mal_id: 166 + type: anime + name: Movic + url: https://myanimelist.net/anime/producer/166/Movic + - mal_id: 238 + type: anime + name: AT-X + url: https://myanimelist.net/anime/producer/238/AT-X + - mal_id: 460 + type: anime + name: KlockWorx + url: https://myanimelist.net/anime/producer/460/KlockWorx + - mal_id: 517 + type: anime + name: Asmik Ace + url: https://myanimelist.net/anime/producer/517/Asmik_Ace + - mal_id: 1003 + type: anime + name: Nippon Television Network + url: https://myanimelist.net/anime/producer/1003/Nippon_Television_Network + - mal_id: 1416 + type: anime + name: BS11 + url: https://myanimelist.net/anime/producer/1416/BS11 + - mal_id: 1418 + type: anime + name: Nippon Television Music + url: https://myanimelist.net/anime/producer/1418/Nippon_Television_Music + - mal_id: 1986 + type: anime + name: arma bianca + url: https://myanimelist.net/anime/producer/1986/arma_bianca + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2431 + type: anime + name: Happinet Phantom Studios + url: https://myanimelist.net/anime/producer/2431/Happinet_Phantom_Studios + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + - mal_id: 3206 + type: anime + name: LDH Japan + url: https://myanimelist.net/anime/producer/3206/LDH_Japan + licensors: [] + studios: + - mal_id: 30 + type: anime + name: Ajia-do + url: https://myanimelist.net/anime/producer/30/Ajia-do + genres: + - mal_id: 4 + type: anime + name: Comedy + url: https://myanimelist.net/anime/genre/4/Comedy + - mal_id: 22 + type: anime + name: Romance + url: https://myanimelist.net/anime/genre/22/Romance + explicit_genres: [] + themes: + - mal_id: 23 + type: anime + name: School + url: https://myanimelist.net/anime/genre/23/School + demographics: [] + - mal_id: 61930 + url: https://myanimelist.net/anime/61930/Uma_Musume__Cinderella_Gray_Part_2 + images: + jpg: + image_url: https://myanimelist.net/images/anime/1120/152280.jpg + small_image_url: https://myanimelist.net/images/anime/1120/152280t.jpg + large_image_url: https://myanimelist.net/images/anime/1120/152280l.jpg + webp: + image_url: https://myanimelist.net/images/anime/1120/152280.webp + small_image_url: https://myanimelist.net/images/anime/1120/152280t.webp + large_image_url: https://myanimelist.net/images/anime/1120/152280l.webp + trailer: + youtube_id: null + url: null + embed_url: https://www.youtube-nocookie.com/embed/9xGGAYRtDAA?enablejsapi=1&wmode=opaque&autoplay=1 + images: + image_url: null + small_image_url: null + medium_image_url: null + large_image_url: null + maximum_image_url: null + approved: true + titles: + - type: Default + title: 'Uma Musume: Cinderella Gray Part 2' + - type: Japanese + title: ウマ娘 シンデレラグレイ 第2クール + - type: English + title: 'Umamusume: Cinderella Gray Part 2' + title: 'Uma Musume: Cinderella Gray Part 2' + title_english: 'Umamusume: Cinderella Gray Part 2' + title_japanese: ウマ娘 シンデレラグレイ 第2クール + title_synonyms: [] + type: TV + source: Manga + episodes: 10 + status: Finished Airing + airing: false + aired: + from: '2025-10-05T00:00:00+00:00' + to: '2025-12-21T00:00:00+00:00' + prop: + from: + day: 5 + month: 10 + year: 2025 + to: + day: 21 + month: 12 + year: 2025 + string: Oct 5, 2025 to Dec 21, 2025 + duration: 23 min per ep + rating: PG-13 - Teens 13 or older + score: 8.69 + scored_by: 33668 + rank: 74 + popularity: 3090 + members: 65673 + favorites: 651 + synopsis: |- + Ever since horse girl Oguri Cap left the small town of Kasamatsu to chase greater heights in Tokyo, she has rapidly gained attention with her remarkable results. Her goal to become the best horse girl in Japan seems within reach, but there is a rival in her way—another running prodigy named Tamamo Cross. + + However, Tamamo is not the only threat to Oguri: several world-class racers from overseas are joining the Japan Cup, pushing the renowned race's competition to unprecedented levels. With the support from the people close to her and her intense desire to win, Oguri will do anything to conquer the Japan Cup and continue sprinting for the top. + + [Written by MAL Rewrite] + background: '' + season: fall + year: 2025 + broadcast: + day: Sundays + time: '16:30' + timezone: Asia/Tokyo + string: Sundays at 16:30 (JST) + producers: + - mal_id: 145 + type: anime + name: TBS + url: https://myanimelist.net/anime/producer/145/TBS + - mal_id: 1397 + type: anime + name: Universal Music Japan + url: https://myanimelist.net/anime/producer/1397/Universal_Music_Japan + - mal_id: 1587 + type: anime + name: Cygames + url: https://myanimelist.net/anime/producer/1587/Cygames + - mal_id: 2074 + type: anime + name: Bit grooove promotion + url: https://myanimelist.net/anime/producer/2074/Bit_grooove_promotion + - mal_id: 2751 + type: anime + name: Happinet Media Marketing + url: https://myanimelist.net/anime/producer/2751/Happinet_Media_Marketing + licensors: [] + studios: + - mal_id: 1893 + type: anime + name: CygamesPictures + url: https://myanimelist.net/anime/producer/1893/CygamesPictures + genres: + - mal_id: 8 + type: anime + name: Drama + url: https://myanimelist.net/anime/genre/8/Drama + - mal_id: 30 + type: anime + name: Sports + url: https://myanimelist.net/anime/genre/30/Sports + explicit_genres: [] + themes: + - mal_id: 51 + type: anime + name: Anthropomorphic + url: https://myanimelist.net/anime/genre/51/Anthropomorphic + - mal_id: 3 + type: anime + name: Racing + url: https://myanimelist.net/anime/genre/3/Racing + demographics: + - mal_id: 42 + type: anime + name: Seinen + url: https://myanimelist.net/anime/genre/42/Seinen + body_text: null + body_b64: null diff --git a/test/render/test_json_renderer.py b/test/render/test_json_renderer.py index 9866a1e..1190249 100644 --- a/test/render/test_json_renderer.py +++ b/test/render/test_json_renderer.py @@ -108,6 +108,17 @@ class Merged(AnimedexModel): decoded = json.loads(render_json(merged, include_source=True)) assert decoded["_meta"]["sources_consulted"] == ["anilist", "jikan"] + def test_aggregate_sources_dict_aggregates_into_meta(self): + from animedex.models.common import AnimedexModel + from animedex.render.json_renderer import render_json + + class MergedDict(AnimedexModel): + sources: dict + + result = MergedDict(sources={"anilist": {"backend": "anilist", "status": "ok"}, "legacy": {"status": "ok"}}) + decoded = json.loads(render_json(result, include_source=True)) + assert decoded["_meta"]["sources_consulted"] == ["anilist", "legacy"] + class TestRichModelSourceAttribution: """Reviewer review B1 (PR #6). diff --git a/test/render/test_tty.py b/test/render/test_tty.py index f10aec9..61b561b 100644 --- a/test/render/test_tty.py +++ b/test/render/test_tty.py @@ -9,7 +9,8 @@ from __future__ import annotations -from datetime import datetime, timezone +import io +from datetime import date, datetime, time, timezone import pytest @@ -96,6 +97,454 @@ def test_includes_score_and_streaming(self): assert "Streaming:" in out and "X:" in out +class TestRenderAiringScheduleRow: + def test_renders_schedule_row(self): + from animedex.models.anime import AiringScheduleRow + from animedex.render.tty import render_tty + + row = AiringScheduleRow( + title="Shin Nippon History", + weekday="monday", + local_time="01:00", + source=SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + out = render_tty(row) + assert "Shin Nippon History" in out + assert "[src: jikan]" in out + assert "Schedule: monday" in out + + def test_renders_airing_instant_and_episode(self): + from animedex.models.anime import AiringScheduleRow + from animedex.render.tty import render_tty + + row = AiringScheduleRow( + title="Exact Airing", + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + episode=3, + details={"score": 8.2, "source_material": "Manga", "genres": ["Action"]}, + source=SourceTag(backend="anilist", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + out = render_tty(row) + assert "Airing:" in out + assert "Episode: 3" in out + assert "Info:" in out + assert "Source material: Manga" in out + assert "Score: 8.2" in out + + def test_renders_schedule_ids(self): + from animedex.models.anime import AiringScheduleRow + from animedex.render.tty import render_tty + + row = AiringScheduleRow( + title="Exact Airing", + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + episode=3, + core={"media_id": 181284}, + details={"schedule_id": 12345, "media_id": 181284, "mal_id": 999}, + source_payload={"id": 12345, "media": {"id": 181284, "idMal": 999}}, + source=SourceTag(backend="anilist", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + out = render_tty(row) + assert "IDs:" in out + assert "AniList airing: 12345" in out + assert "AniList media: 181284" in out + assert "MAL: 999" in out + + def test_renders_schedule_ids_from_core_and_unknown_backend(self): + from animedex.models.anime import AiringScheduleRow + from animedex.render.tty import render_tty + + core = render_tty( + AiringScheduleRow( + title="Core IDs", + core={"ids": {"jikan": "777"}}, + source=SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + ) + custom = render_tty( + AiringScheduleRow( + title="Custom IDs", + details={"id": "custom-1"}, + source=SourceTag(backend="custom_backend", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)), + ) + ) + + assert "Jikan: 777" in core + assert "Custom backend: custom-1" in custom + + def test_renders_nested_tree_values_and_limits(self): + from animedex.render import tty + + out = io.StringIO() + list_out = io.StringIO() + tty._render_tree( + out, + "", + { + "": "fallback label", + "date": date(2026, 5, 11), + "time": time(1, 2), + "flag": True, + "empty": "", + "nested": {"alpha": "a", "empty": None}, + "list": [{"name": "one"}, ["two"], "three", "", "four"], + "extra": "hidden", + }, + indent=0, + limit=6, + ) + tty._render_tree(list_out, "Items", [["nested"], "plain", "extra"], indent=0, limit=2) + compact = tty._compact_tree({"empty": "", "items": [{"name": "one"}, "two", {}], "nested": {"value": False}}) + + text = out.getvalue() + list_text = list_out.getvalue() + + assert "Value: fallback label" in text + assert "Date: 2026-05-11" in text + assert "Time: 01:02:00" in text + assert "Flag: true" in text + assert "Nested:" in text + assert "List:" in text + assert "(+1 more)" in text + assert "- nested" in list_text + assert "- plain" in list_text + assert "- (+1 more)" in list_text + assert compact == {"items": [{"name": "one"}, "two"], "nested": {"value": False}} + + def test_tree_and_summary_helpers_cover_empty_and_non_list_inputs(self): + from animedex.render import tty + + out = io.StringIO() + tty._render_tree(out, "Empty", "", indent=0) + + assert out.getvalue() == "" + assert tty._limited_unique("not-a-list") == [] + assert tty._filtered_tags("not-a-list") == [] + assert tty._join_summary("ready") == "ready" + assert tty._join_summary(object()) is None + assert tty._first_text(["", " first "]) == "first" + + +class TestRenderAggregateResult: + def test_empty_aggregate_renders_empty_string(self): + from animedex.models.aggregate import AggregateResult + from animedex.render.tty import render_tty + + assert render_tty(AggregateResult()) == "" + + def test_aggregate_renders_plain_non_model_items(self): + from animedex.models.aggregate import AggregateResult + from animedex.render.tty import render_tty + + assert render_tty(AggregateResult(items=["plain"])) == "plain" + + +class TestRenderScheduleCalendar: + def test_empty_calendar_renders_header_only(self): + from animedex.models.aggregate import ScheduleCalendarResult + from animedex.render.tty import render_tty + + out = render_tty( + ScheduleCalendarResult( + items=[], + sources={}, + timezone="UTC", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + + assert out == "Schedule (UTC)\nWindow: 2026-05-11 to 2026-05-12 (exclusive)\n" + + def test_calendar_renders_offsets_iana_unknowns_rich_rows_and_floating_items(self): + from animedex.models.aggregate import ScheduleCalendarResult + from animedex.models.anime import AiringScheduleRow + from animedex.models.common import BackendRichModel + from animedex.render.tty import render_tty + + src = SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + + class _RichSchedule(BackendRichModel): + source_tag: SourceTag + + def to_common(self): + return AiringScheduleRow(title="Rich Row", weekday="monday", local_time="02:30", source=src) + + class _BrokenRichSchedule(BackendRichModel): + source_tag: SourceTag + + def to_common(self): + raise RuntimeError("bad mapper") + + offset = render_tty( + ScheduleCalendarResult( + items=[ + AiringScheduleRow( + title="Episode Row", + weekday="monday", + local_time="01:00", + episode=7, + source=src, + details={"source_material": "Original", "rating": "G"}, + ), + AiringScheduleRow(title="Bad Clock", weekday="monday", local_time="bad", source=src), + _RichSchedule(source_tag=src), + _BrokenRichSchedule(source_tag=src), + "floating text", + ], + sources={}, + timezone="-02:30", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + + assert "Monday, 2026-05-11" in offset + assert "01:00 \u2502 Episode Row ep 7 [src: jikan]" in offset + assert " \u2502 Info:" in offset + assert " \u2502\n02:30 \u2502 Rich Row [src: jikan]" in offset + assert "Info:" in offset + assert "Source material: Original" in offset + assert "Rating: G" in offset + assert "02:30 \u2502 Rich Row [src: jikan]" in offset + assert "Unscheduled" in offset + assert "bad \u2502 Bad Clock [src: jikan]" in offset + assert '"source_tag"' in offset + assert "floating text" in offset + + iana = render_tty( + ScheduleCalendarResult( + items=[ + AiringScheduleRow( + title="Instant Row", + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + source=src, + ) + ], + sources={}, + timezone="Asia/Tokyo", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + assert "10:00 \u2502 Instant Row [src: jikan]" in iana + + utc = render_tty( + ScheduleCalendarResult( + items=[ + AiringScheduleRow( + title="UTC Row", + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + source=src, + ) + ], + sources={}, + timezone="UTC", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + assert "01:00 \u2502 UTC Row [src: jikan]" in utc + + unknown = render_tty( + ScheduleCalendarResult( + items=[ + AiringScheduleRow( + title="Naive Fallback", + airing_at=datetime(2026, 5, 11, 1, tzinfo=timezone.utc), + source=src, + ) + ], + sources={}, + timezone="No/Such_Zone", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + assert "01:00 \u2502 Naive Fallback [src: jikan]" in unknown + + unscheduled = render_tty( + ScheduleCalendarResult( + items=[AiringScheduleRow(title="Loose Row", source=src)], + sources={}, + timezone="UTC", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ) + ) + assert "Unscheduled" in unscheduled + assert "--:-- \u2502 Loose Row [src: jikan]" in unscheduled + + def test_calendar_falls_back_to_ascii_timeline_when_stream_cannot_encode_unicode(self): + from animedex.models.aggregate import ScheduleCalendarResult + from animedex.models.anime import AiringScheduleRow + from animedex.render.tty import render_tty + + class AsciiStream: + encoding = "ascii" + + src = SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + out = render_tty( + ScheduleCalendarResult( + items=[ + AiringScheduleRow(title="First Row", weekday="monday", local_time="01:00", source=src), + AiringScheduleRow(title="Second Row", weekday="monday", local_time="02:00", source=src), + ], + sources={}, + timezone="UTC", + window_start=date(2026, 5, 11), + window_end=date(2026, 5, 12), + ), + stream=AsciiStream(), + ) + + assert "01:00 | First Row [src: jikan]" in out + assert " |\n02:00 | Second Row [src: jikan]" in out + assert "\u2502" not in out + + +class TestRenderMergedAnime: + def test_renders_source_details(self): + from animedex.models.aggregate import MergedAnime + from animedex.models.anime import Anime, AnimeRating, AnimeTitle + from animedex.render.tty import render_tty + + src = SourceTag(backend="anilist", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + anime = Anime( + id="anilist:1", + title=AnimeTitle(romaji="Merged"), + score=AnimeRating(score=81.0, scale=100.0), + ids={"anilist": "1"}, + source=src, + ) + out = render_tty( + MergedAnime( + title=AnimeTitle(romaji="Merged"), + sources=[src], + records={"anilist": anime}, + source_details={ + "anilist": { + "title": "Merged", + "titles": { + "romaji": "Merged", + "english": "Merged English", + "native": "\u7d71\u5408", + "by_language": { + "japanese": ["\u7d71\u5408"], + "chinese": ["\u6574\u5408"], + "korean": ["\ud1b5\ud569"], + }, + }, + "score": {"score": 81.0, "scale": 100.0}, + "format": "TV", + "episodes": 12, + "season": "SPRING", + "season_year": 2024, + "studios": ["Studio A"], + "genres": ["Action", "Fantasy"], + } + }, + ) + ) + + assert "Names:" in out + assert "Japanese:" in out + assert "Chinese:" in out + assert "Korean:" in out + assert "IDs:" in out + assert "AniList: 1" in out + assert "Info:" in out + assert "Season: SPRING 2024" in out + assert "Scores:" in out + assert "Anilist:" in out and "81.0/100.0" in out + + def test_renders_ids_from_records_and_source_details(self): + from animedex.models.aggregate import MergedAnime + from animedex.render.tty import render_tty + + anilist_src = SourceTag(backend="anilist", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + jikan_src = SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + anilist = Anime( + id="anilist:10", + title=AnimeTitle(romaji="Merged"), + ids={"mal": "20"}, + source=anilist_src, + ) + jikan = Anime(id="plain-jikan", title=AnimeTitle(romaji="Merged"), ids={}, source=jikan_src) + out = render_tty( + MergedAnime.model_construct( + title=AnimeTitle(romaji="Merged"), + sources=[anilist_src, jikan_src], + records={"anilist": anilist, "jikan": jikan}, + core={"ids": {"kitsu": "40"}}, + source_details={ + "anilist": {"id": "anilist:10", "ids": {"ann": "30"}}, + "jikan": {"id": "detail-jikan"}, + "broken": "not-a-dict", + }, + ) + ) + + assert "AniList: 10" in out + assert "MAL: 20" in out + assert "Jikan: plain-jikan" in out + assert "ANN: 30" in out + assert "Kitsu: 40" in out + + def test_renders_fallback_titles_and_airing_detail_shapes(self): + from animedex.models.aggregate import MergedAnime + from animedex.render.tty import render_tty + + src = SourceTag(backend="jikan", fetched_at=datetime(2026, 5, 7, tzinfo=timezone.utc)) + anime = Anime(id="jikan:1", title=AnimeTitle(romaji="Merged"), ids={"mal": "1"}, source=src) + out = render_tty( + MergedAnime.model_construct( + title=AnimeTitle(romaji="Merged"), + sources=[src], + records={"jikan": anime}, + core={"airing": {"season": "FALL", "aired_from": "2026-10-01"}}, + source_details={ + "skip": "not-a-dict", + "jikan": { + "titles": { + "english": "Merged English", + "by_language": {"english": ["Merged English"], "japanese": ["\u7d71\u5408"]}, + "native": "\u7d71\u5408", + }, + "airing": {"season": "FALL"}, + "aired_from": "2026-10-01", + "type_tags": ["TV", "finished", "Manga", "PG-13", "School"], + "genres": ["Drama"], + "score": {"score": 8.0}, + }, + }, + ) + ) + + assert "Names:" in out + assert "English: Merged English" in out + assert "Japanese: \u7d71\u5408" in out + assert "Season: FALL" in out + assert "Aired: 2026-10-01 to ongoing" in out + assert "Scores:" in out + assert "Jikan: 8.0" in out + assert "Tags:" in out + + def test_airing_summary_helpers_cover_detail_fallbacks(self): + from animedex.render import tty + + detail_values = { + "one": {"genres": ["A", "B"]}, + "skip": "not-a-dict", + "two": {"genres": ["C", "D"]}, + } + + assert tty._first_source_details({"skip": "not-a-dict"}) == {} + assert tty._collect_source_detail_values(detail_values, "genres", limit=3) == ["A", "B", "C"] + assert tty._season_text({}, {"season": "FALL"}) == "FALL" + assert tty._date_range_text({"aired_from": "2026-10-01"}) == "2026-10-01 to ongoing" + + class TestRenderTtyNonAnime: def test_falls_back_with_source_marker(self): from animedex.models.quote import Quote diff --git a/test/tools/test_generate_spec.py b/test/tools/test_generate_spec.py new file mode 100644 index 0000000..8110278 --- /dev/null +++ b/test/tools/test_generate_spec.py @@ -0,0 +1,17 @@ +"""Tests for the PyInstaller spec generator.""" + +from __future__ import annotations + +import pytest + +pytestmark = pytest.mark.unittest + + +def test_transliterator_runtime_tables_are_collected_for_freezing(): + from tools import generate_spec + + assert "anyascii._data" in generate_spec.HIDDEN_IMPORTS + assert "unidecode" in generate_spec.HIDDEN_IMPORTS + assert "unidecode.util" in generate_spec.HIDDEN_IMPORTS + assert "anyascii" in generate_spec.PACKAGE_DATAS + assert "unidecode" in generate_spec.PACKAGE_DATAS diff --git a/test/utils/__init__.py b/test/utils/__init__.py new file mode 100644 index 0000000..3b0cf1e --- /dev/null +++ b/test/utils/__init__.py @@ -0,0 +1 @@ +"""Tests for shared utility helpers.""" diff --git a/test/utils/test_timezone.py b/test/utils/test_timezone.py new file mode 100644 index 0000000..20e53c8 --- /dev/null +++ b/test/utils/test_timezone.py @@ -0,0 +1,71 @@ +"""Tests for :mod:`animedex.utils.timezone`.""" + +from __future__ import annotations + +from datetime import datetime, timedelta, timezone, tzinfo + +import pytest + +pytestmark = pytest.mark.unittest + + +class NamedOnlyTimezone(tzinfo): + def utcoffset(self, dt): + return None + + def tzname(self, dt): + return "named-only" + + def dst(self, dt): + return None + + +def test_parse_timezone_accepts_flexible_user_inputs(): + from animedex.utils.timezone import parse_timezone + + assert parse_timezone("UTC").label == "UTC" + assert parse_timezone("Z").label == "UTC" + assert parse_timezone("+8").label == "+08:00" + assert parse_timezone("-0230").label == "-02:30" + assert parse_timezone("UTC+8").label == "+08:00" + assert parse_timezone("GMT-05:00").label == "-05:00" + assert parse_timezone("Asia/Tokyo").label == "Asia/Tokyo" + assert parse_timezone("CST-8").tzinfo.utcoffset(datetime(2026, 1, 1)).total_seconds() == 8 * 3600 + + +def test_parse_timezone_handles_local_and_errors(): + from animedex.utils.timezone import parse_timezone + + local_tz = timezone(timedelta(hours=-5), name="fixed-local") + resolved = parse_timezone(None, local_now=datetime(2026, 5, 11, tzinfo=local_tz)) + + assert resolved.label == "-05:00" + with pytest.raises(ValueError): + parse_timezone("+24:00") + with pytest.raises(ValueError): + parse_timezone("UTC+25") + with pytest.raises(ValueError): + parse_timezone("No/Such_Zone") + + +def test_timezone_label_falls_back_to_name(): + from animedex.utils.timezone import timezone_label + + class Keyed(tzinfo): + key = "Etc/Test" + + def utcoffset(self, dt): + return timedelta(hours=3) + + def dst(self, dt): + return None + + assert timezone_label(timezone(timedelta(hours=2), name="custom")) == "+02:00" + assert timezone_label(Keyed()) == "Etc/Test" + assert timezone_label(NamedOnlyTimezone()) == "named-only" + + +def test_selftest_runs(): + from animedex.utils import timezone + + assert timezone.selftest() is True diff --git a/tools/fixtures/prewarm_aggregate_cache.py b/tools/fixtures/prewarm_aggregate_cache.py new file mode 100644 index 0000000..f81f458 --- /dev/null +++ b/tools/fixtures/prewarm_aggregate_cache.py @@ -0,0 +1,147 @@ +"""Prewarm the local cache for the aggregate calendar demo. + +This helper exists for documentation captures. It lets +``docs/source/_static/gifs/aggregate.tape`` render the real +``animedex season`` and ``animedex schedule`` commands without +depending on live AniList or Jikan availability. +""" + +from __future__ import annotations + +import json +from pathlib import Path +from typing import Any, Dict, Optional, Tuple + +import yaml + +from animedex.api._dispatch import resolve_base_url +from animedex.api._dispatch import _signature +from animedex.backends.anilist._queries import Q_SCHEDULE +from animedex.cache.sqlite import SqliteCache, default_ttl_seconds + + +REPO_ROOT = Path(__file__).resolve().parents[2] +FIXTURES = REPO_ROOT / "test" / "fixtures" + +FixtureSpec = Tuple[str, str, str, str, Optional[Dict[str, Any]], Optional[Dict[str, Any]], Optional[int]] + + +def _crop_json_body(body_json: Dict[str, Any], *, backend: str, kind: str, limit: int) -> Dict[str, Any]: + out = json.loads(json.dumps(body_json)) + if backend == "anilist" and kind == "season": + page = out.get("data", {}).get("Page") or {} + media = page.get("media") + if isinstance(media, list): + page["media"] = media[:limit] + elif backend == "jikan" and kind == "season": + data = out.get("data") + if isinstance(data, list): + out["data"] = data[:limit] + pagination = out.get("pagination") + if isinstance(pagination, dict): + items = pagination.get("items") + if isinstance(items, dict): + items["count"] = min(int(items.get("count", limit) or limit), limit) + items["per_page"] = limit + elif backend == "jikan" and kind == "schedules": + data = out.get("data") + if isinstance(data, list): + out["data"] = data[:limit] + pagination = out.get("pagination") + if isinstance(pagination, dict): + items = pagination.get("items") + if isinstance(items, dict): + items["count"] = min(int(items.get("count", limit) or limit), limit) + items["per_page"] = limit + return out + + +def _load_fixture(rel_path: str) -> Dict[str, Any]: + return yaml.safe_load((FIXTURES / rel_path).read_text(encoding="utf-8")) + + +SPECS: Tuple[FixtureSpec, ...] = ( + ( + "anilist/season_matrix/58-2024-spring.yaml", + "anilist", + "season", + "/", + None, + {"query": Q_SCHEDULE, "variables": {"year": 2024, "season": "SPRING", "perPage": 5}}, + 5, + ), + ( + "jikan/season_matrix/58-2024-spring.yaml", + "jikan", + "season", + "/seasons/2024/spring", + {"limit": 5}, + None, + 5, + ), + ( + "jikan/schedules/03-schedule-sunday.yaml", + "jikan", + "schedules", + "/schedules", + {"filter": "sunday", "limit": 3}, + None, + 3, + ), + ( + "jikan/schedules/01-schedule-monday.yaml", + "jikan", + "schedules", + "/schedules", + {"filter": "monday", "limit": 3}, + None, + 3, + ), + ( + "jikan/schedules/04-schedule-tuesday.yaml", + "jikan", + "schedules", + "/schedules", + {"filter": "tuesday", "limit": 3}, + None, + 3, + ), +) + + +def main() -> int: + """Write aggregate demo fixtures into the platform cache.""" + cache = SqliteCache() + try: + count = 0 + for rel_path, backend, kind, path, params, json_body, limit in SPECS: + fixture = _load_fixture(rel_path) + body_json = fixture["response"]["body_json"] + if limit is not None: + body_json = _crop_json_body(body_json, backend=backend, kind=kind, limit=limit) + body = json.dumps(body_json, ensure_ascii=False).encode("utf-8") + full_url = resolve_base_url(backend).rstrip("/") + path + signature = _signature( + "POST" if backend == "anilist" else "GET", + full_url, + params, + json_body, + None, + ) + cache.set_with_meta( + backend, + signature, + body, + response_headers=fixture["response"].get("headers") or {}, + ttl_seconds=default_ttl_seconds("list" if kind == "season" else "schedule"), + ) + count += 1 + finally: + cache_path = cache.path + cache.close() + print(f"prewarmed {count} aggregate fixtures into {cache_path}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/fixtures/run_season_matrix.py b/tools/fixtures/run_season_matrix.py new file mode 100644 index 0000000..1725334 --- /dev/null +++ b/tools/fixtures/run_season_matrix.py @@ -0,0 +1,80 @@ +"""Capture AniList and Jikan season fixtures for merge evaluation. + +The matrix covers every anime convention season from 2010 through +2025. It stores the fixtures under backend-specific ``season_matrix`` +directories so they do not collide with the smaller smoke fixtures +used by existing tests. +""" + +from __future__ import annotations + +import argparse +import sys + +from animedex.backends.anilist import _queries as anilist_queries +from tools.fixtures.capture import capture + + +ANILIST_URL = "https://graphql.anilist.co/" +JIKAN_BASE = "https://api.jikan.moe/v4" +SEASONS = ("winter", "spring", "summer", "fall") + + +def _label(year: int, season: str) -> str: + return f"{year}-{season}" + + +def _capture_anilist(year: int, season: str, *, limit: int, overwrite: bool) -> None: + capture( + backend="anilist", + path_slug="season_matrix", + label=_label(year, season), + method="POST", + url=ANILIST_URL, + headers={"Content-Type": "application/json"}, + json_body={ + "query": anilist_queries.Q_SCHEDULE, + "variables": {"year": year, "season": season.upper(), "perPage": limit}, + }, + pace_seconds=0.0, + overwrite=overwrite, + ) + + +def _capture_jikan(year: int, season: str, *, limit: int, overwrite: bool) -> None: + capture( + backend="jikan", + path_slug="season_matrix", + label=_label(year, season), + method="GET", + url=f"{JIKAN_BASE}/seasons/{year}/{season}?limit={limit}", + pace_seconds=0.0, + overwrite=overwrite, + ) + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Capture 2010-2025 season merge matrix fixtures.") + parser.add_argument("--start-year", type=int, default=2010) + parser.add_argument("--end-year", type=int, default=2025) + parser.add_argument("--limit", type=int, default=25) + parser.add_argument("--backend", choices=("all", "anilist", "jikan"), default="all") + parser.add_argument("--overwrite", action="store_true") + args = parser.parse_args(argv) + + total = (args.end_year - args.start_year + 1) * len(SEASONS) + print(f"Capturing {total} season slots per selected backend.") + for year in range(args.start_year, args.end_year + 1): + for season in SEASONS: + label = _label(year, season) + if args.backend in ("all", "anilist"): + _capture_anilist(year, season, limit=args.limit, overwrite=args.overwrite) + print(f"anilist {label}") + if args.backend in ("all", "jikan"): + _capture_jikan(year, season, limit=args.limit, overwrite=args.overwrite) + print(f"jikan {label}") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/tools/generate_spec.py b/tools/generate_spec.py index db6bf1c..749dc53 100644 --- a/tools/generate_spec.py +++ b/tools/generate_spec.py @@ -8,9 +8,10 @@ * The Python entry point (``animedex_cli.py``). * The data files collected by :mod:`tools.resources`. -* The hidden imports that PyInstaller's static scanner cannot reach, - most notably ``animedex.config.build_info`` (loaded via try/except - so that animedex still works when the file has not been generated). +* The hidden imports and package data that PyInstaller's static scanner + cannot reach, most notably ``animedex.config.build_info`` (loaded via + try/except so that animedex still works when the file has not been + generated). * An aggressive *exclude* list that drops the data-science, GUI, and test/packaging stacks Python pulls in by default but which animedex does not need at runtime; this keeps the binary small and the @@ -93,6 +94,27 @@ # local ``import jq`` only at first call site, which the static # analyser misses. "jq", + # ``anyascii`` keeps transliteration tables under a resource-only + # package that is loaded through importlib.resources at runtime. + "anyascii._data", + # ``unidecode`` lazy-loads per-codepoint transliteration blocks via + # dynamic imports. Keep the package explicit so frozen builds do not + # depend on PyInstaller's current collection heuristics. + "unidecode", + "unidecode.util", +] + +PACKAGE_DATAS = [ + # Required by ``anyascii.anyascii`` after freezing; without these + # resource files the binary imports successfully but selftest fails + # when a non-ASCII title is transliterated. + "anyascii", + # Required by ``unidecode.unidecode`` after freezing; the package's + # transliteration tables are loaded lazily by code-point block. + "unidecode", + # Required by ``zoneinfo.ZoneInfo`` on platforms that do not ship an + # IANA timezone database, most notably Windows. + "tzdata", ] @@ -126,19 +148,22 @@ def collect_datas() -> list: # Auto-generated by tools/generate_spec.py. DO NOT EDIT BY HAND; # any change here will be overwritten on the next `make build`. -from PyInstaller.utils.hooks import collect_submodules +from PyInstaller.utils.hooks import collect_data_files, collect_submodules # Walk the animedex package and pick up every importable submodule. # This is necessary because animedex/diag/selftest.py uses # importlib.import_module() to smoke-test the substrate, and the # static analyser cannot follow dynamic imports. _animedex_hidden = collect_submodules('animedex') +_package_datas = [] +for _package in {package_datas!r}: + _package_datas += collect_data_files(_package) a = Analysis( ['animedex_cli.py'], pathex=[], binaries=[], - datas={datas!r}, + datas={datas!r} + _package_datas, hiddenimports={hidden!r} + _animedex_hidden, hookspath=[], hooksconfig={{}}, @@ -184,6 +209,7 @@ def generate_spec() -> tuple: content = _SPEC_TEMPLATE.format( datas=datas, hidden=HIDDEN_IMPORTS, + package_datas=PACKAGE_DATAS, excludes=EXCLUDED_MODULES, ) return content, len(datas) diff --git a/tools/merge_eval/__init__.py b/tools/merge_eval/__init__.py new file mode 100644 index 0000000..038b880 --- /dev/null +++ b/tools/merge_eval/__init__.py @@ -0,0 +1 @@ +"""Utilities for aggregate season merge evaluation.""" diff --git a/tools/merge_eval/build_adjudication_inputs.py b/tools/merge_eval/build_adjudication_inputs.py new file mode 100644 index 0000000..a7bf610 --- /dev/null +++ b/tools/merge_eval/build_adjudication_inputs.py @@ -0,0 +1,60 @@ +"""Build compact inputs for season merge adjudication.""" + +from __future__ import annotations + +import argparse +import json +from pathlib import Path + + +ROOT = Path(__file__).resolve().parents[2] +CANDIDATES = ROOT / "test" / "fixtures" / "aggregate" / "season_matrix" / "candidates" +OUT_DIR = ROOT / "test" / "fixtures" / "aggregate" / "season_matrix" / "adjudication_inputs" + + +def _compact_row(row: dict) -> dict: + return { + "index": row.get("index"), + "id": row.get("id"), + "mal_id": row.get("mal_id"), + "title": row.get("title"), + "english": row.get("english"), + "native": row.get("native"), + "synonyms": row.get("synonyms") or [], + "format": row.get("format"), + "episodes": row.get("episodes"), + "season": row.get("season"), + "year": row.get("year"), + "start_date": row.get("start_date"), + "status": row.get("status"), + } + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Build compact codex adjudication shard inputs.") + parser.add_argument("--shards", type=int, default=8) + args = parser.parse_args(argv) + + paths = sorted(CANDIDATES.glob("*.json")) + OUT_DIR.mkdir(parents=True, exist_ok=True) + for shard in range(args.shards): + seasons = [] + for path in paths[shard:: args.shards]: + payload = json.loads(path.read_text(encoding="utf-8")) + seasons.append( + { + "year": payload["year"], + "season": payload["season"], + "anilist": [_compact_row(row) for row in payload["anilist"]], + "jikan": [_compact_row(row) for row in payload["jikan"]], + } + ) + out = {"shard": shard, "seasons": seasons} + out_path = OUT_DIR / f"shard-{shard:02d}.json" + out_path.write_text(json.dumps(out, ensure_ascii=False, separators=(",", ":")) + "\n", encoding="utf-8") + print(out_path.relative_to(ROOT)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/merge_eval/build_candidates.py b/tools/merge_eval/build_candidates.py new file mode 100644 index 0000000..b69ea5d --- /dev/null +++ b/tools/merge_eval/build_candidates.py @@ -0,0 +1,191 @@ +"""Build season merge candidate files from captured fixtures. + +The output is a compact JSON document per year/season containing +AniList and Jikan rows plus likely candidate pairs. Human or model +adjudicators can review these files without loading the full fixture +payloads. +""" + +from __future__ import annotations + +import argparse +import json +import re +from difflib import SequenceMatcher +from pathlib import Path +from typing import Any, Dict, Iterable, List, Optional + +import yaml + + +ROOT = Path(__file__).resolve().parents[2] +FIXTURES = ROOT / "test" / "fixtures" +OUT_DIR = FIXTURES / "aggregate" / "season_matrix" / "candidates" +SEASONS = ("winter", "spring", "summer", "fall") +TITLE_KEY_RE = re.compile(r"[^0-9a-z]+") + + +def _load(path: Path) -> dict: + return yaml.safe_load(path.read_text(encoding="utf-8")) + + +def _fixture_by_label(backend: str, label: str) -> Path: + matches = sorted((FIXTURES / backend / "season_matrix").glob(f"*-{label}.yaml")) + if len(matches) != 1: + raise FileNotFoundError(f"expected one {backend} season_matrix fixture for {label}, found {len(matches)}") + return matches[0] + + +def _title_key(value: Optional[str]) -> Optional[str]: + if not value: + return None + lowered = value.casefold().replace("&", " and ").replace("×", " x ") + collapsed = TITLE_KEY_RE.sub(" ", lowered).strip() + return " ".join(collapsed.split()) or None + + +def _title_values(row: dict, backend: str) -> List[str]: + if backend == "anilist": + title = row.get("title") or {} + values = [title.get("romaji"), title.get("english"), title.get("native")] + values.extend(row.get("synonyms") or []) + return [value for value in values if value] + values = [row.get("title"), row.get("title_english"), row.get("title_japanese")] + values.extend(row.get("title_synonyms") or []) + for title in row.get("titles") or []: + if isinstance(title, dict) and title.get("title"): + values.append(title["title"]) + return [value for value in values if value] + + +def _title_keys(row: dict, backend: str) -> List[str]: + keys = [] + for value in _title_values(row, backend): + key = _title_key(value) + if key and key not in keys: + keys.append(key) + return keys + + +def _best_ratio(left_keys: Iterable[str], right_keys: Iterable[str]) -> float: + best = 0.0 + for left in left_keys: + for right in right_keys: + best = max(best, SequenceMatcher(None, left, right).ratio()) + return best + + +def _anilist_rows(payload: dict) -> List[dict]: + return payload["response"]["body_json"]["data"]["Page"]["media"] + + +def _jikan_rows(payload: dict) -> List[dict]: + return payload["response"]["body_json"]["data"] + + +def _anime_row(row: dict, backend: str, idx: int) -> Dict[str, Any]: + if backend == "anilist": + title = row.get("title") or {} + return { + "backend": "anilist", + "index": idx, + "id": row.get("id"), + "mal_id": row.get("idMal"), + "title": title.get("romaji") or title.get("english") or title.get("native"), + "english": title.get("english"), + "native": title.get("native"), + "synonyms": row.get("synonyms") or [], + "format": row.get("format"), + "episodes": row.get("episodes"), + "season": row.get("season"), + "year": row.get("seasonYear"), + "start_date": row.get("startDate"), + "status": row.get("status"), + } + return { + "backend": "jikan", + "index": idx, + "id": row.get("mal_id"), + "mal_id": row.get("mal_id"), + "title": row.get("title"), + "english": row.get("title_english"), + "native": row.get("title_japanese"), + "synonyms": row.get("title_synonyms") or [], + "format": row.get("type"), + "episodes": row.get("episodes"), + "season": (row.get("season") or "").upper() or None, + "year": row.get("year"), + "start_date": ((row.get("aired") or {}).get("prop") or {}).get("from"), + "status": row.get("status"), + } + + +def _candidate_score(left: dict, right: dict) -> float: + if left.get("idMal") and left.get("idMal") == right.get("mal_id"): + return 10.0 + left_keys = _title_keys(left, "anilist") + right_keys = _title_keys(right, "jikan") + overlap = set(left_keys) & set(right_keys) + ratio = _best_ratio(left_keys, right_keys) + score = ratio + if overlap: + score += 2.0 + if left.get("seasonYear") == right.get("year"): + score += 0.2 + if (left.get("season") or "").upper() == (right.get("season") or "").upper(): + score += 0.2 + if left.get("format") and right.get("type") and left.get("format") == str(right.get("type")).upper().replace(" ", "_"): + score += 0.1 + return score + + +def build_one(year: int, season: str) -> Dict[str, Any]: + label = f"{year}-{season}" + anilist_fixture = _load(_fixture_by_label("anilist", label)) + jikan_fixture = _load(_fixture_by_label("jikan", label)) + anilist = _anilist_rows(anilist_fixture) + jikan = _jikan_rows(jikan_fixture) + candidates = [] + for ai, left in enumerate(anilist): + scored = [] + for ji, right in enumerate(jikan): + score = _candidate_score(left, right) + if score >= 0.86: + scored.append((score, ji, right)) + for score, ji, right in sorted(scored, reverse=True)[:5]: + candidates.append( + { + "anilist_index": ai, + "jikan_index": ji, + "score": round(score, 4), + "anilist": _anime_row(left, "anilist", ai), + "jikan": _anime_row(right, "jikan", ji), + } + ) + return { + "year": year, + "season": season, + "anilist": [_anime_row(row, "anilist", idx) for idx, row in enumerate(anilist)], + "jikan": [_anime_row(row, "jikan", idx) for idx, row in enumerate(jikan)], + "candidates": candidates, + } + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Build season merge candidate JSON files.") + parser.add_argument("--start-year", type=int, default=2010) + parser.add_argument("--end-year", type=int, default=2025) + args = parser.parse_args(argv) + + OUT_DIR.mkdir(parents=True, exist_ok=True) + for year in range(args.start_year, args.end_year + 1): + for season in SEASONS: + payload = build_one(year, season) + path = OUT_DIR / f"{year}-{season}.json" + path.write_text(json.dumps(payload, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") + print(path.relative_to(ROOT)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/merge_eval/combine_adjudication.py b/tools/merge_eval/combine_adjudication.py new file mode 100644 index 0000000..c84a2dd --- /dev/null +++ b/tools/merge_eval/combine_adjudication.py @@ -0,0 +1,59 @@ +"""Combine codex adjudication shard outputs into one expected file.""" + +from __future__ import annotations + +import argparse +import json +from pathlib import Path + + +ROOT = Path(__file__).resolve().parents[2] +DEFAULT_OUT = ROOT / "test" / "fixtures" / "aggregate" / "season_matrix" / "expected_matches.json" + + +def _season_key(season: dict) -> str: + return f"{season['year']}-{season['season']}" + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Combine adjudicated season match shards.") + parser.add_argument("inputs", nargs="+") + parser.add_argument("--output", type=Path, default=DEFAULT_OUT) + args = parser.parse_args(argv) + + seasons = {} + for input_path in args.inputs: + payload = json.loads(Path(input_path).read_text(encoding="utf-8")) + for season in payload.get("seasons", []): + key = _season_key(season) + if key in seasons: + raise ValueError(f"duplicate adjudicated season: {key}") + seen_anilist = set() + seen_jikan = set() + for match in season.get("matches", []): + pair = (match["anilist_index"], match["jikan_index"]) + if match["anilist_index"] in seen_anilist: + raise ValueError(f"{key} has duplicate AniList index {match['anilist_index']}") + if match["jikan_index"] in seen_jikan: + raise ValueError(f"{key} has duplicate Jikan index {match['jikan_index']}") + seen_anilist.add(match["anilist_index"]) + seen_jikan.add(match["jikan_index"]) + if pair[0] < 0 or pair[1] < 0: + raise ValueError(f"{key} has negative index pair {pair}") + seasons[key] = { + "year": season["year"], + "season": season["season"], + "matches": sorted(season.get("matches", []), key=lambda item: (item["anilist_index"], item["jikan_index"])), + } + if len(seasons) != 64: + raise ValueError(f"expected 64 adjudicated seasons, got {len(seasons)}") + output = {"seasons": [seasons[key] for key in sorted(seasons)]} + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_text(json.dumps(output, ensure_ascii=False, indent=2) + "\n", encoding="utf-8") + print(args.output.relative_to(ROOT)) + print(f"seasons={len(output['seasons'])} matches={sum(len(s['matches']) for s in output['seasons'])}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/merge_eval/evaluate_rule.py b/tools/merge_eval/evaluate_rule.py new file mode 100644 index 0000000..fa9558f --- /dev/null +++ b/tools/merge_eval/evaluate_rule.py @@ -0,0 +1,101 @@ +"""Evaluate the deterministic season merge rule against adjudication.""" + +from __future__ import annotations + +import argparse +import json +from pathlib import Path + +import yaml + +from animedex.agg import calendar +from animedex.backends.anilist import _mapper as anilist_mapper +from animedex.backends.jikan.models import JikanAnime +from animedex.models.common import SourceTag + + +ROOT = Path(__file__).resolve().parents[2] +FIXTURES = ROOT / "test" / "fixtures" +EXPECTED = FIXTURES / "aggregate" / "season_matrix" / "expected_matches.json" + + +def _load_yaml(path: Path) -> dict: + return yaml.safe_load(path.read_text(encoding="utf-8")) + + +def _fixture_by_label(backend: str, label: str) -> Path: + matches = sorted((FIXTURES / backend / "season_matrix").glob(f"*-{label}.yaml")) + if len(matches) != 1: + raise FileNotFoundError(f"expected one {backend} fixture for {label}, found {len(matches)}") + return matches[0] + + +def _src(backend: str, payload: dict) -> SourceTag: + from datetime import datetime, timezone + + captured_at = payload.get("metadata", {}).get("captured_at") + if isinstance(captured_at, str): + fetched_at = datetime.fromisoformat(captured_at.replace("Z", "+00:00")) + else: + fetched_at = datetime.now(timezone.utc) + return SourceTag(backend=backend, fetched_at=fetched_at) + + +def _rows(label: str): + anilist_payload = _load_yaml(_fixture_by_label("anilist", label)) + jikan_payload = _load_yaml(_fixture_by_label("jikan", label)) + anilist_rows = anilist_mapper.map_media_list(anilist_payload["response"]["body_json"], _src("anilist", anilist_payload)) + jikan_rows = [ + JikanAnime.model_validate({**row, "source_tag": _src("jikan", jikan_payload)}) + for row in jikan_payload["response"]["body_json"]["data"] + ] + return [row.to_common() for row in anilist_rows], [row.to_common() for row in jikan_rows] + + +def _predicted_pairs(anilist_rows, jikan_rows): + pairs = set() + for ai, left in enumerate(anilist_rows): + best = None + best_score = 0 + for ji, right in enumerate(jikan_rows): + score = calendar._anime_match_score(left, right) + if score > best_score: + best = ji + best_score = score + if best is not None and best_score > 0: + pairs.add((ai, best)) + return pairs + + +def main(argv: list[str] | None = None) -> int: + parser = argparse.ArgumentParser(description="Evaluate season merge scoring against expected matches.") + parser.add_argument("--limit-details", type=int, default=40) + args = parser.parse_args(argv) + + expected_payload = json.loads(EXPECTED.read_text(encoding="utf-8")) + false_negative = [] + false_positive = [] + total_expected = 0 + total_predicted = 0 + for season in expected_payload["seasons"]: + label = f"{season['year']}-{season['season']}" + anilist_rows, jikan_rows = _rows(label) + expected = {(match["anilist_index"], match["jikan_index"]) for match in season["matches"]} + predicted = _predicted_pairs(anilist_rows, jikan_rows) + total_expected += len(expected) + total_predicted += len(predicted) + for pair in sorted(expected - predicted): + false_negative.append((label, pair, anilist_rows[pair[0]].title.romaji, jikan_rows[pair[1]].title.romaji)) + for pair in sorted(predicted - expected): + false_positive.append((label, pair, anilist_rows[pair[0]].title.romaji, jikan_rows[pair[1]].title.romaji)) + print(f"expected={total_expected} predicted={total_predicted}") + print(f"false_negative={len(false_negative)} false_positive={len(false_positive)}") + for label, pair, left, right in false_negative[: args.limit_details]: + print(f"FN {label} {pair}: {left!r} <> {right!r}") + for label, pair, left, right in false_positive[: args.limit_details]: + print(f"FP {label} {pair}: {left!r} <> {right!r}") + return 0 if not false_negative and not false_positive else 1 + + +if __name__ == "__main__": + raise SystemExit(main())